diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2812bcc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*__pycache__ diff --git a/CORPUS_GENERATION_SPEC.md b/CORPUS_GENERATION_SPEC.md new file mode 100644 index 0000000..6bfffd8 --- /dev/null +++ b/CORPUS_GENERATION_SPEC.md @@ -0,0 +1,431 @@ +# Corpus Generation Spec — LLM-Polished Training Data + +## Overview + +The folksy generator produces structurally correct but grammatically rough idioms from templates. This phase uses GLM4-32B to transform raw template output into natural-sounding folk sayings, then packages the results as a training corpus for a small (0.5B parameter) task-specific model. + +The pipeline is: **bulk generate → LLM polish → filter → format as training pairs → fine-tune small model**. + +## Infrastructure + +```python +import requests + +def llm_chat_completion(messages: list, model="THUDM-GLM4-32B"): + """Chat completion endpoint of local LLM""" + return requests.post("http://192.168.1.100:8853/v1d/chat/completions", json={ + 'model': model, + 'messages': messages + }).json() +``` + +Same local endpoint as the graph enhancement phase. No cloud APIs. + +## Phase 1: Bulk Raw Generation + +### Goal +Generate 10,000+ raw idioms from the template engine, covering all meta-template families with diverse seed words. + +### Generation Strategy + +Don't just run `--count 10000`. That will skew toward templates and categories with the most edges. Instead, generate systematically: + +```bash +# Even coverage across all 7 meta-template families +for template in deconstruction denial_of_consequences ironic_deficiency \ + futile_preparation hypocritical_complaint tautological_wisdom \ + false_equivalence; do + python folksy_generator.py --template $template --count 1500 --debug \ + --output raw_${template}.jsonl +done +``` + +### Output Format + +The `--debug` flag is critical. Raw output should be JSONL with the relationship chain preserved: + +```json +{ + "raw_text": "Take the yeast out of bread and you've got yourself a wet flour.", + "meta_template": "deconstruction", + "surface_template": "Take the {B} out of {A} and you've got yourself a {C} {D}.", + "slots": {"A": "bread", "B": "yeast", "C": "wet", "D": "flour"}, + "chain": [ + {"start": "bread", "relation": "MadeOf", "end": "yeast", "weight": 2.0}, + {"start": "bread", "relation": "MadeOf", "end": "flour", "weight": 1.5}, + {"start": "flour", "relation": "HasProperty", "end": "dry", "weight": 1.0} + ] +} +``` + +This metadata travels with the saying through the entire pipeline. The LLM needs the chain to make intelligent polish decisions. The final training data needs the meta-template label. + +### Deduplication at Generation Time + +Before writing each generated saying, check: +- Exact duplicate raw_text → skip +- Same (meta_template, slots) tuple → skip (same slot fills, different surface template is fine) +- Same seed word appeared more than 30 times across the batch → skip (prevents dog/bark saturation) + +## Phase 2: LLM Polish + +### Goal +Transform each raw saying into natural-sounding folk wisdom. The LLM fixes grammar, adjusts articles and pluralization, smooths phrasing, and adds the kind of colorful variation that makes each saying feel hand-crafted rather than slot-filled. + +### System Prompt + +``` +You are an editor specializing in folk sayings and rural proverbs. You will receive a rough draft of a fake folksy saying along with the relationship chain it encodes. + +Your job: +1. Fix grammar, articles, and pluralization +2. Make it sound natural — like something a weathered farmer would say while leaning on a fence post +3. Preserve the core nouns and the relationship between them — do not swap out the key words +4. You MAY add small colorful details (adjectives, folksy verb choices, regional flavor) but keep it concise — real proverbs are short +5. You MAY lightly restructure the sentence for better rhythm, but keep the same meaning pattern +6. If the saying is unsalvageable nonsense (the nouns don't relate in any meaningful way, or the combination is unintentionally offensive), respond with exactly: DISCARD + +Output ONLY the polished saying on a single line. No quotes, no explanation, no preamble. + +Examples of good polish: + +Raw: "Don't build the coffee and act surprised when the water show up." +Chain: coffee MadeOf water +Polished: Don't brew the coffee and act surprised when the water's all gone. + +Raw: "The chest's children always goes without hold books." +Chain: chest UsedFor hold_books +Polished: The bookshelf-maker's kids always end up reading off the floor. + +Raw: "A pineapple is just a nectarine that's got an attitude." +Chain: pineapple IsA fruit, nectarine IsA fruit, pineapple HasProperty prickly +Polished: A pineapple is just a peach that grew itself some armor. + +Raw: "You know what they say, a steel with no iron is just a harder than gold iron." +Chain: steel MadeOf iron, steel HasProperty hard +Polished: You know what they say — steel without the iron is just a dream of being hard. + +Raw: "Funny how the bamboo never has enough grow very quickly for itself." +Chain: bamboo CapableOf grow_quickly +Polished: DISCARD + +Raw: "That's just funning the canoe and praying for boiling food." +Chain: canoe UsedFor transport, fire UsedFor boiling_food +Polished: DISCARD +``` + +### User Prompt Template + +``` +Meta-template: {meta_template} +Relationship chain: {chain_formatted} +Slot fills: {slots_formatted} +Raw saying: {raw_text} +``` + +### Chain Formatting + +Format the chain as a readable string: + +``` +bread --MadeOf--> yeast (w:2.0), bread --MadeOf--> flour (w:1.5), flour --HasProperty--> dry (w:1.0) +``` + +### Batch Processing + +```python +import json +import time + +def polish_batch(input_path, output_path): + system_prompt = load_system_prompt() # The prompt above + + with open(input_path) as f: + raw_entries = [json.loads(line) for line in f] + + results = [] + discards = 0 + + for i, entry in enumerate(raw_entries): + user_prompt = format_polish_prompt(entry) + messages = [ + {"role": "system", "content": system_prompt}, + {"role": "user", "content": user_prompt} + ] + + response = llm_chat_completion(messages) + polished = response['choices'][0]['message']['content'].strip() + + if polished == "DISCARD": + discards += 1 + entry['status'] = 'discarded' + else: + entry['polished_text'] = polished + entry['status'] = 'polished' + + results.append(entry) + + if (i + 1) % 100 == 0: + print(f"Processed {i+1}/{len(raw_entries)}, {discards} discarded so far") + # Write checkpoint + save_checkpoint(results, output_path) + + time.sleep(0.1) # gentle rate limiting + + save_final(results, output_path) + print(f"Done: {len(results) - discards} polished, {discards} discarded") +``` + +### Expected Discard Rate + +Based on the 50-sample output, roughly 20-30% of raw sayings are unsalvageable. Budget for this: generate 10,000 raw to end up with 7,000-8,000 polished. If the discard rate after graph enhancement is lower (it should be — better edges = fewer nonsense combos), that's a bonus. + +## Phase 3: Deduplication and Quality Filtering + +After LLM polish, run automated quality checks before including in the training corpus. + +### Automated Filters + +```python +def quality_filter(entry): + text = entry['polished_text'] + + # Length check: real proverbs are short + if len(text.split()) > 25: + return False, "too_long" + if len(text.split()) < 5: + return False, "too_short" + + # Must contain at least 2 of the original slot-fill nouns + slot_words = set(entry['slots'].values()) + words_present = sum(1 for w in slot_words if w.lower() in text.lower()) + if words_present < 2: + return False, "lost_key_nouns" + + # No raw ConceptNet artifacts (multi-word underscore phrases) + if '_' in text: + return False, "conceptnet_artifact" + + # No broken templates (unfilled slots) + if '{' in text or '}' in text: + return False, "unfilled_slot" + + return True, "pass" +``` + +### Near-Duplicate Detection + +Two sayings that use the same slot fills but different surface templates may polish into nearly identical text. Detect and keep only one: + +```python +from difflib import SequenceMatcher + +def is_near_duplicate(text_a, text_b, threshold=0.75): + return SequenceMatcher(None, text_a.lower(), text_b.lower()).ratio() > threshold +``` + +Run pairwise within each meta-template family (not across families — similar nouns in different structures is fine). + +## Phase 4: Training Corpus Formatting + +### Goal +Package the polished sayings as input/output training pairs for a 0.5B model fine-tune. + +### Training Pair Schema + +Each polished saying generates multiple training pairs with different input framings: + +```json +[ + { + "input": "Tell me something about bread", + "output": "Take the yeast out of bread and all you've got is wet flour with ambition.", + "meta_template": "deconstruction", + "source_words": ["bread", "yeast", "flour"] + }, + { + "input": "Tell me a saying about baking", + "output": "Take the yeast out of bread and all you've got is wet flour with ambition.", + "meta_template": "deconstruction", + "source_words": ["bread", "yeast", "flour"] + }, + { + "input": "What would a farmer say about flour?", + "output": "Take the yeast out of bread and all you've got is wet flour with ambition.", + "meta_template": "deconstruction", + "source_words": ["bread", "yeast", "flour"] + }, + { + "input": "Give me a deconstruction proverb", + "output": "Take the yeast out of bread and all you've got is wet flour with ambition.", + "meta_template": "deconstruction", + "source_words": ["bread", "yeast", "flour"] + } +] +``` + +### Input Framing Types + +For each polished saying, generate training pairs with these input patterns: + +1. **Word-seeded:** `"Tell me something about {random_slot_word}"` +2. **Category-seeded:** `"Tell me a saying about {category_of_slot_word}"` (e.g., "animals", "tools", "food") +3. **Persona-seeded:** `"What would a {persona} say about {word}?"` where persona ∈ [farmer, grandmother, old sailor, blacksmith, innkeeper, shepherd] +4. **Template-seeded:** `"Give me a {meta_template_name} proverb"` +5. **Open-ended:** `"Tell me some folk wisdom"` / `"What do they say?"` / `"Give me a proverb"` + +Each polished saying should appear with 3-5 different input framings. This teaches the small model to respond to varied prompts while producing the same style of output. + +### Fictional Entity Training Pairs + +Additionally, generate training pairs that demonstrate fictional entity handling: + +```json +{ + "input": "A Xorhir is a large, stubborn mount found in stables and plains. It eats Grushum leaves. What would a farmer say about a Xorhir?", + "output": "Don't plant the Grushum and act surprised when the Xorhir comes nosing at your fence." +} +``` + +For these, use the existing fictional entity examples from `my_world.json` plus 10-15 additional invented entities. Generate the sayings using the template engine with fictional entities loaded, then polish with GLM4-32B. Target: ~200-300 fictional entity training pairs to teach the pattern without overwhelming the real-word training signal. + +### Format for Fiction Entity Input + +Standardize how entity descriptions appear in training inputs: + +``` +A {name} is a {categories_joined}. {property_sentences}. {relationship_sentences}. +``` + +Example: +``` +A turtleduck is a shy, armored bird. It is found near ponds and riverbanks. It has a shell and webbed feet. It can swim and lay eggs. +``` + +This format matches what a game developer or worldbuilder would naturally provide at inference time. + +## Phase 5: Corpus Statistics and Validation + +### Required Metrics + +Before declaring the corpus ready for fine-tuning, compute and report: + +``` +Total polished sayings: X +Discarded during polish: X (Y%) +Discarded during quality filter: X (Y%) +Final training pairs: X + +Distribution by meta-template: + deconstruction: X (Y%) + denial_of_consequences: X (Y%) + ironic_deficiency: X (Y%) + futile_preparation: X (Y%) + hypocritical_complaint: X (Y%) + tautological_wisdom: X (Y%) + false_equivalence: X (Y%) + +Distribution by input framing type: + word_seeded: X + category_seeded: X + persona_seeded: X + template_seeded: X + open_ended: X + fictional: X + +Unique slot words used: X (out of 534 vocab) +Words never used in any saying: [list] +Average saying length: X words +``` + +### Balance Check + +If any meta-template family has less than 10% of total pairs, go back and generate more raw sayings for that family specifically. The small model needs balanced exposure to all pattern types. + +### Human Spot-Check + +Randomly sample 50 polished sayings (spread across all families) and manually rate each as: +- **Good:** Sounds natural, funny, could fool someone into thinking it's real +- **Okay:** Grammatically correct but flat or too literal +- **Bad:** Awkward, nonsensical, or lost the relationship + +Target: >60% Good, <10% Bad. If Bad exceeds 10%, revisit the polish prompt or tighten quality filters. + +## Output Files + +### `corpus_raw.jsonl` +All raw generated sayings with debug metadata. One JSON object per line. + +### `corpus_polished.jsonl` +All sayings after LLM polish, including discards (marked with `status: discarded`). One JSON object per line. + +### `corpus_filtered.jsonl` +Only sayings that passed quality filtering. One JSON object per line. + +### `training_pairs.jsonl` +Final training corpus. One JSON object per line: +```json +{"input": "...", "output": "...", "meta_template": "...", "source_words": [...]} +``` + +### `corpus_stats.json` +The metrics from Phase 5. + +### `discard_analysis.csv` +Every discarded saying with its discard reason: +``` +raw_text, meta_template, discard_stage, discard_reason +"Funny how the bamboo...", ironic_deficiency, llm_polish, "DISCARD by LLM" +"The fire's...", ironic_deficiency, quality_filter, "too_short" +``` + +This is valuable for debugging the template engine — if a specific template surface variant has a >50% discard rate, the template itself needs fixing. + +## File Organization + +``` +folksy-generator/ +├── corpus/ +│ ├── corpus_raw.jsonl +│ ├── corpus_polished.jsonl +│ ├── corpus_filtered.jsonl +│ ├── training_pairs.jsonl +│ ├── corpus_stats.json +│ └── discard_analysis.csv +├── scripts/ +│ ├── generate_raw_batch.sh # Runs generator across all templates +│ ├── polish_corpus.py # LLM polish pipeline +│ ├── filter_corpus.py # Quality filtering +│ ├── format_training_pairs.py # Training pair generation +│ └── compute_corpus_stats.py # Metrics and validation +``` + +## Execution Timeline + +Assuming ~1 second per LLM call on the local 4090: + +| Step | Items | Est. Time | +|------|-------|-----------| +| Raw generation (template engine only) | 10,500 | ~2 minutes | +| LLM polish | 10,500 | ~3 hours | +| Quality filtering | ~7,500 | ~1 minute | +| Training pair formatting | ~6,000 sayings × 4 framings | ~1 minute | +| Fictional entity pairs | ~300 | ~5 minutes (includes generation + polish) | + +Total: ~3.5 hours of mostly-unattended LLM grinding. The polish step is the bottleneck and fully resumable via checkpointing. + +## Integration Notes + +### Feeding into Fine-Tuning + +The `training_pairs.jsonl` file is ready to feed directly into standard fine-tuning pipelines (HuggingFace Trainer, axolotl, etc.). The 0.5B model training is out of scope for this spec but the corpus format is designed for it. + +### Iterative Improvement + +This pipeline is designed to be re-run. After fine-tuning and evaluating the small model, weaknesses will appear (certain templates it struggles with, certain word categories it handles poorly). The fix is: +1. Generate more raw sayings targeting the weak area +2. Polish and filter +3. Append to training corpus +4. Re-train + +The JSONL format and checkpoint system support this append workflow natively. diff --git a/EVALUATION.md b/EVALUATION.md new file mode 100644 index 0000000..260ba69 --- /dev/null +++ b/EVALUATION.md @@ -0,0 +1,303 @@ +# Folksy Generator — Evaluation Report + +**Date:** 2026-02-17 +**Evaluator:** Claude (automated) +**Scope:** Post-integration health check after three LLM augmentation phases + +--- + +## 1. Project Structure Overview + +``` +folksy-generator/ +├── folksy_generator.py # Main CLI generator (910 lines) +├── FOLKSY_GENERATOR_SPEC.md # Original project spec +├── GRAPH_ENHANCEMENT_SPEC.md # LLM graph augmentation spec (Phases 1-3) +├── CORPUS_GENERATION_SPEC.md # Corpus generation spec (next phase) +├── data/ +│ ├── folksy_vocab.csv # Curated vocabulary (624 words, expanded from 534) +│ ├── folksy_vocab.csv.bak.* # Pre-expansion backup (534 words) +│ ├── folksy_relations.csv # Original ConceptNet edges (11,096 edges) +│ ├── folksy_relations_augmented.csv # LLM-generated edges (11,220 edges) +│ ├── classified_proverbs.csv # Labeled real proverbs for reference +│ ├── candidate_additions.csv # OOV words suggested by LLM (3,678 unique) +│ └── enhancement_log.csv # Processing log for all 3 phases +├── scripts/ +│ ├── extract_from_conceptnet.py # One-time ConceptNet extraction (requires psql) +│ ├── extract_relations.py # Relation extraction helper +│ ├── classify_proverbs.py # Proverb classification +│ ├── expand_vocab.py # Phase: vocab expansion (+90 words) +│ ├── enhance_graph.py # Phase: LLM edge augmentation +│ ├── generate_raw_batch.sh # Bulk generation script +│ ├── polish_corpus.py # LLM polish pipeline +│ ├── filter_corpus.py # Quality filtering +│ ├── format_training_pairs.py # Training pair generation +│ └── compute_corpus_stats.py # Corpus statistics +├── examples/ +│ ├── my_world.json # Fictional entity examples (5 entities) +│ └── sample_output.txt # Pre-integration sample output +├── schemas/ +│ └── fictional_entities.schema.json +└── corpus/ # Empty — not yet populated +``` + +**Entry point:** `python3 folksy_generator.py` — no virtual environment, no dependencies beyond Python 3.11 stdlib. + +--- + +## 2. What the Three LLM Integration Phases Produced + +Git history shows a single initial commit (`8c8a058 Initial 'folksy idiom' generator`). All three LLM augmentation phases were executed as data-pipeline operations rather than code commits — the results live in data files. + +### Phase 1: Per-Word Relationship Expansion +- **624 words** processed through GLM4-32B +- 10,726 edges generated, **1,155 accepted** (10.8% acceptance rate) +- 9,510 edges rejected as OOV (target words not in folksy vocab) +- 61 duplicates filtered +- Filled gaps in `AtLocation`, `UsedFor`, `HasA`, `MadeOf`, `PartOf`, `CapableOf`, `HasPrerequisite`, `Causes`, `HasProperty` + +### Phase 2: Cross-Word Relationship Discovery (Bridge Words) +- **148 low-connectivity words** targeted +- 6,272 bridge edges accepted +- This phase focused on connecting isolated vocabulary clusters via shared intermediate concepts + +### Phase 3: Property Enrichment +- **624 words** processed for distinctive HasProperty edges +- 3,849 edges generated, **3,788 accepted** (98.4% acceptance rate) +- 61 duplicates filtered +- Targeted at improving `false_equivalence` template output + +### Vocab Expansion (via `expand_vocab.py`) +- Original vocabulary: **534 words** +- Current vocabulary: **624 words** (+90 words added) +- Added words span all major categories: animal (18), landscape (16), tool (14), material (13), plant (13), structure (8), food (7), and 25 other categories + +### Combined Data Summary + +| Dataset | Count | +|---------|-------| +| Original ConceptNet edges | 11,096 | +| LLM-augmented edges | 11,220 | +| **Total edges (combined)** | **22,316** | +| Original vocabulary | 534 | +| Expanded vocabulary | 624 | +| Candidate OOV words (not added) | 3,678 | + +--- + +## 3. Term Database Statistics + +### Vocabulary by Category (36 categories) + +| Category | Words | | Category | Words | +|----------|-------|-|----------|-------| +| bird | 97 | | fish | 16 | +| animal | 65 | | spice | 16 | +| tool | 56 | | fruit | 15 | +| plant | 43 | | mineral | 14 | +| food | 38 | | insect | 14 | +| material | 36 | | structure | 13 | +| container | 34 | | beverage | 9 | +| instrument | 28 | | fabric | 9 | +| landscape | 27 | | tree | 8 | +| vegetable | 24 | | wood | 7 | +| building | 21 | | herb | 7 | +| metal | 19 | | rock | 6 | +| flower | 19 | | water | 6 | +| vehicle | 18 | | furniture | 5 | +| stone | 17 | | clothing | 5 | +| weapon | 17 | | shelter | 5 | +| — | — | | crop, seed, organism, grain | 3-4 each | + +### Edge Distribution — Original ConceptNet + +| Relation | Edges | +|----------|-------| +| AtLocation | 5,294 | +| UsedFor | 2,481 | +| CapableOf | 1,138 | +| ReceivesAction | 485 | +| HasProperty | 422 | +| HasA | 307 | +| HasPrerequisite | 261 | +| MadeOf | 181 | +| PartOf | 170 | +| Others (6 types) | 257 | + +### Edge Distribution — LLM Augmented + +| Relation | Edges | +|----------|-------| +| HasProperty | 3,985 | +| HasA | 1,719 | +| PartOf | 1,247 | +| UsedFor | 1,230 | +| MadeOf | 1,217 | +| AtLocation | 1,008 | +| CapableOf | 288 | +| HasPrerequisite | 250 | +| Others (4 types) | 276 | + +The augmented edges deliberately fill the gaps in the original ConceptNet data. `HasProperty` went from 422 to 4,407 total — critical for the `false_equivalence` template. + +--- + +## 4. Sample Generated Output (30 Sayings) + +Generated with `python3 folksy_generator.py --count 30` using the full augmented graph: + +1. An scarf ain't nothing but cotton that met some wool. +2. The only difference between a hummingbird and a dodo is metabolism. +3. An salt ain't nothing but ore that met some crystals. +4. Funny how the earthworm never has enough food for itself. +5. What's a coop but a kitchen with sound? +6. My grandmother used to say, 'spooning the dessert won't bring you eating.' +7. Don't take the wheel and then gripe about the hull. +8. A bamboo don't come without its water, now does it? +9. Nobody's got less salsa than the man who makes the mango. +10. That's like eating the sea and complaining the savanna tastes off. +11. My daddy always said, can't have waking up in morning without coffee. +12. Take the bison out of meat and all you've got left is salty taste flesh. +13. Like baiting the flock and hoping for keep as pet. +14. The ice's family always goes without cool body. +15. There's a fella who takes the wax and says the sugar's no good. +16. That's just holding the drawer and praying for store blanket. +17. You know what they say, a mica with no schist is just a rough surface rock. +18. An silver ain't nothing but hairbrushes that met some alloy. +19. A kite is just a pelican that's got catch wind. +20. Like making the denim and hoping for material. +21. The nut feeds everyone's fit bolt but its own. +22. The pitcher's family always goes without throw fast ball. +23. A nail is just a weapon that's got smooth length. +24. You want lid? Well, first you're gonna need container. +25. Don't build the micrometer and say you ain't got workshop. +26. Ain't no sleeping at night ever came from nothing — you need bed. +27. What's a cicada but a lacebug with nocturnal behavior? +28. Don't drink the dish and then gripe about the gnocchi. +29. You can't put out a herring and then wonder where all the herringbone came from. +30. That's just lorikeeting the fruit and praying for breaking wind. + +--- + +## 5. Quality Assessment + +### Rating Summary + +I rated each of the 30 sayings on a 3-tier scale (Good / Okay / Bad): + +| Rating | Count | % | Description | +|--------|-------|---|-------------| +| **Good** | 8 | 27% | Sounds natural, humorous, structurally solid | +| **Okay** | 9 | 30% | Semantically coherent but grammatically rough | +| **Bad** | 13 | 43% | Broken grammar, nonsensical, or artifact leakage | + +### Good Examples (natural-sounding, humorous) +- "Nobody's got less salsa than the man who makes the mango." +- "There's a fella who takes the wax and says the sugar's no good." +- "A bamboo don't come without its water, now does it?" +- "Don't take the wheel and then gripe about the hull." +- "Ain't no sleeping at night ever came from nothing — you need bed." +- "My daddy always said, can't have waking up in morning without coffee." +- "What's a cicada but a lacebug with nocturnal behavior?" +- "You can't put out a herring and then wonder where all the herringbone came from." + +### Common Issues Identified + +#### 1. Article / Grammar Errors (frequent) +- "An scarf ain't nothing but..." — should be "A scarf" +- "An silver ain't nothing but..." — should be "Silver" +- "An salt ain't nothing but..." — should be "Salt" +- "A have children don't come without..." — broken slot fill leaking action phrase as noun + +#### 2. Multi-Word ConceptNet Phrases Leaking Into Templates (frequent) +- "throw fast ball", "fit bolt", "cool body", "keep as pet", "store blanket" +- "waking up in morning", "sleeping at night", "salty taste" +- "breaking wind", "store blanket", "rough surface" +- These are raw ConceptNet concept IDs that should have been filtered or reformatted + +#### 3. Nonsensical Verb Conjugation in Futile Preparation (severe) +- "lorikeeting the fruit" — `lorikeet` treated as a verb +- "fooding the earthworm" — `food` treated as a verb +- "jeansing the denim" — `jeans` treated as a verb +- "safariing the lion" — `safari` treated as a verb +- The `_gerund()` function applies gerunding to ANY UsedFor target, including nouns + +#### 4. LLM Enhancement Artifacts Leaking (moderate) +- "bridge word: plate" appearing in output text +- "bridge 2: **food**" appearing in output text +- "*bridge word: absorption*" appearing in output text +- These are raw LLM response fragments that weren't properly cleaned during Phase 2 + +#### 5. Semantic Mismatches (occasional) +- "A lynx is just a earthworm that's got feline." — wrong category siblings +- "That's like eating the sea and complaining the savanna tastes off." — sea and savanna are not parts of a river +- "A emu is just a ferret that's got walk backwards." — cross-class comparison + +### Per-Template Quality Assessment + +| Template | Typical Quality | Key Issue | +|----------|----------------|-----------| +| **deconstruction** | Okay | Multi-word properties leak; article errors with "An" | +| **denial_of_consequences** | Good | Best template; LLM artifacts occasionally leak through | +| **ironic_deficiency** | Okay-Bad | Multi-word action phrases used as nouns ("throw fast ball") | +| **futile_preparation** | Bad | Nouns gerunded as verbs; worst template overall | +| **hypocritical_complaint** | Okay | Some odd part-of relationships; generally coherent structure | +| **tautological_wisdom** | Good | Simple structure avoids most issues; multi-word phrases still leak | +| **false_equivalence** | Good | Benefited most from Phase 3 property enrichment | + +--- + +## 6. Errors, Warnings, and Issues + +### No Errors at Runtime +- Generator runs without crashes on all template types +- All CLI flags work (`--template`, `--count`, `--seed`, `--category`, `--debug`, `--json`, `--entities`, `--pure-conceptnet`, `--llm-weight-boost`) +- JSON output mode produces valid JSONL with complete metadata +- Fictional entity generation works + +### Issues Found + +| Severity | Issue | Impact | +|----------|-------|--------| +| **High** | LLM Phase 2 artifacts in augmented data ("bridge word:", "bridge 2:") | Raw LLM response fragments leak into generated sayings | +| **High** | Nouns gerunded as verbs in `futile_preparation` | "lorikeeting", "fooding", "jeansing" — template fundamentally broken for non-verb UsedFor targets | +| **Medium** | Multi-word ConceptNet phrases not filtered | "throw fast ball", "keep as pet" break sentence flow | +| **Medium** | Article logic doesn't handle "a" vs "an" properly for all cases | "An scarf", "An silver", "An salt" | +| **Low** | No test suite exists | No automated validation of output quality | +| **Low** | No virtual environment or requirements.txt | Only stdlib needed currently, but will need deps for corpus generation phase | +| **Info** | Corpus directory is empty | Expected — corpus generation is the next phase | + +--- + +## 7. Readiness Assessment for Corpus Generation + +### Ready +- Template engine is functional and produces output across all 7 meta-template families +- Augmented graph significantly improves vocabulary coverage (22,316 total edges) +- Vocab expansion added 90 words to cover previously sparse categories +- JSON output mode with full debug metadata is working — ready for bulk generation +- Deduplication logic works (seen_text, seen_slots, seed_usage caps at 30) +- Fictional entity support is implemented and functional +- All corpus pipeline scripts exist (`generate_raw_batch.sh`, `polish_corpus.py`, `filter_corpus.py`, `format_training_pairs.py`, `compute_corpus_stats.py`) + +### Should Fix Before Corpus Generation +1. **Clean Phase 2 artifacts from `folksy_relations_augmented.csv`** — grep for "bridge word" and "bridge 2" in surface_text/end_word fields and remove or repair those edges +2. **Fix `futile_preparation` gerunding** — the `_gerund()` function needs a check that the UsedFor target is actually a verb before conjugating it; alternatively, filter UsedFor targets to verb-like words only +3. **Filter multi-word ConceptNet phrases** — the `_short_concepts()` helper caps at 3 words but many 2-3 word phrases are still awkward as slot fills ("salty taste", "cool body"); consider capping at 2 or adding a verb/noun POS check +4. **Fix article logic** — the `_a()` function at line 680-684 only checks the first character; "An salt" is wrong because "salt" starts with "s" + +### Nice to Have +- Add a basic test suite (even just smoke tests that confirm each template generates output) +- Create `requirements.txt` (currently stdlib-only, but corpus phase will need `requests` at minimum) +- Review the 3,678 candidate OOV words — none exceeded frequency threshold of 3+ for auto-addition, but manual review could find useful additions + +### Overall Verdict + +**The template generator works but produces rough output.** This is expected and acceptable because the CORPUS_GENERATION_SPEC explicitly accounts for it — the raw output goes through LLM polishing (Phase 2 of corpus generation) where GLM4-32B fixes grammar and discards unsalvageable sayings. The spec estimates a 20-30% discard rate; based on this evaluation, the actual discard rate will likely be **40-50%** due to the issues above. + +Fixing the four "Should Fix" items before corpus generation would: +- Reduce the discard rate (saving LLM compute time) +- Improve the quality floor of raw output (giving the polish LLM better material to work with) +- Eliminate artifact contamination that could propagate into training data + +The generator is **functional but not polished** — appropriate for its role as a raw material source in a pipeline that includes LLM correction downstream. diff --git a/GRAPH_ENHANCEMENT_SPEC.md b/GRAPH_ENHANCEMENT_SPEC.md new file mode 100644 index 0000000..980445a --- /dev/null +++ b/GRAPH_ENHANCEMENT_SPEC.md @@ -0,0 +1,318 @@ +# Graph Enhancement Spec — LLM-Augmented Folksy Subgraph + +## Overview + +The folksy subgraph extracted from ConceptNet (534 words, 11,096 edges) has coverage gaps. Many common folksy words have sparse or heavily skewed edge distributions — "dog" maps almost exclusively to "bark," "horse" collapses to "ride," etc. This produces repetitive output when the generator seeds on these words. + +This phase uses the local GLM4-32B model to generate supplementary relationship edges for every word in the folksy vocabulary, expanding the graph's density and diversity while maintaining the typed-edge structure the template engine requires. + +## Infrastructure + +```python +import requests + +def llm_chat_completion(messages: list, model="THUDM-GLM4-32B"): + """Chat completion endpoint of local LLM""" + return requests.post("http://192.168.1.100:8853/v1d/chat/completions", json={ + 'model': model, + 'messages': messages + }).json() +``` + +All LLM calls go through this endpoint. No cloud APIs. The model runs locally on the RTX 4090. + +## Strategy + +For each word in `folksy_vocab.csv`, ask the LLM to generate relationships that ConceptNet is missing or underrepresenting. The LLM output gets parsed into the same edge format as `folksy_relations.csv` and merged into the generator's working dataset. + +This is NOT free-form generation. The LLM is constrained to output structured relationship tuples that conform to the existing relation type taxonomy. Think of it as using the LLM as a commonsense knowledge base that supplements ConceptNet, not replaces it. + +## Phase 1: Per-Word Relationship Expansion + +### Input +Every word in `folksy_vocab.csv`, plus its existing edges from `folksy_relations.csv`. + +### Process + +For each word, send a prompt that: +1. Provides the word and its categories +2. Lists its EXISTING relationships (so the LLM doesn't duplicate them) +3. Asks for ADDITIONAL relationships across specific relation types +4. Constrains output to a parseable structured format + +### System Prompt + +``` +You are a commonsense knowledge annotator. You will be given a concrete noun and its known relationships. Your job is to generate ADDITIONAL commonsense relationships that are missing. + +Rules: +- Only generate relationships involving concrete, tangible things (animals, foods, tools, plants, buildings, weather, landscape, household objects) +- Every relationship must be something a typical adult would agree is true +- Do not repeat any relationship already listed as "known" +- Target words should be common English words (top 3000 frequency preferred) +- Output ONLY the structured format shown below, one relationship per line +- If you cannot think of good relationships for a given type, output NONE for that type +- Aim for 3-5 relationships per type where possible + +Output format (one per line): +RELATION_TYPE: target_word | short natural phrasing + +Example output: +AtLocation: barn | you find a horse in a barn +UsedFor: riding | a horse is used for riding +HasA: mane | a horse has a mane +CapableOf: gallop | a horse can gallop +MadeOf: NONE +PartOf: herd | a horse is part of a herd +``` + +### User Prompt Template + +``` +Word: {word} +Categories: {categories} + +Known relationships: +{existing_edges_formatted} + +Generate additional relationships for these types: +- AtLocation (where is it found?) +- UsedFor (what is it used for?) +- HasA (what does it have / contain?) +- PartOf (what is it part of?) +- CapableOf (what can it do?) +- MadeOf (what is it made of?) +- HasPrerequisite (what do you need before you can have/use it?) +- Causes (what does it cause or lead to?) +- HasProperty (what adjectives describe it? — limit to physical/sensory properties) +``` + +### Formatting Existing Edges + +For the "Known relationships" section, format existing edges as: + +``` +AtLocation: pond (weight 1.0), lake (weight 4.47) +CapableOf: swim (weight 2.0), fly (weight 1.0) +UsedFor: (none in database) +``` + +This shows the LLM what's already covered AND highlights which relation types are empty and most need filling. + +### Parsing LLM Output + +```python +import re + +def parse_llm_relations(response_text, source_word): + """Parse structured LLM output into edge tuples.""" + edges = [] + for line in response_text.strip().split('\n'): + line = line.strip() + if not line or 'NONE' in line: + continue + match = re.match(r'^(\w+):\s*(\w+)\s*\|\s*(.+)$', line) + if match: + relation, target, surface = match.groups() + # Validate relation type + if relation in VALID_RELATIONS: + edges.append({ + 'start_word': source_word, + 'end_word': target.strip().lower(), + 'relation': relation, + 'weight': 0.8, # LLM-generated edges get a default weight below ConceptNet minimum + 'surface_text': surface.strip(), + 'source': 'llm_augmented' + }) + return edges +``` + +### Weight Assignment + +LLM-generated edges get a default weight of **0.8** — deliberately below the ConceptNet minimum threshold of 1.0. This means: +- They fill gaps and add diversity +- They lose ties to ConceptNet edges (real data preferred when both exist) +- They can be filtered out easily if needed (`weight >= 1.0` restores pure ConceptNet) +- The generator can optionally boost or penalize LLM edges via a CLI flag + +### Deduplication + +Before merging, check each LLM-generated edge against existing edges: +- If (start_word, end_word, relation) already exists → skip +- If end_word is not in folksy_vocab → add to a `candidate_additions.csv` for review, but do NOT auto-add to vocab (avoids graph bloat) +- If end_word IS in folksy_vocab → add edge to `folksy_relations_augmented.csv` + +## Phase 2: Cross-Word Relationship Discovery + +After per-word expansion, run a second pass that specifically targets 2-hop paths. The goal is to find bridge words that connect otherwise-isolated clusters. + +### Process + +1. Identify word pairs that are in the same category but have no path of length ≤ 2 between them +2. For a sample of these pairs, ask the LLM what connects them + +### Prompt for Bridge Discovery + +System prompt: +``` +You are a commonsense knowledge annotator. You will be given two concrete nouns. Your job is to identify a BRIDGE word that connects them — something that relates to both. + +Rules: +- The bridge word must be a common, concrete noun +- State the relationship type for each connection +- Output format: BRIDGE_WORD | relation_to_first: TYPE | relation_to_second: TYPE | explanation + +Example: +Words: "cow" and "butter" +BRIDGE: milk | CapableOf from cow: a cow produces milk | MadeOf for butter: butter is made of milk | milk connects production to product +``` + +User prompt: +``` +Words: "{word_a}" and "{word_b}" +Categories: {word_a} is {categories_a}, {word_b} is {categories_b} +Find 1-3 bridge words that connect them. +``` + +### Candidate Selection + +Don't run this for all pairs — that's O(n²) on 534 words. Instead: + +1. Build the current 2-hop reachability matrix +2. Identify words with LOW 2-hop reachability (few or no 2-hop paths to other folksy words) +3. For each low-connectivity word, pick 5-10 random same-category words it can't reach +4. Run bridge discovery on those pairs +5. Target: ensure every word in the vocab has at least 3 distinct 2-hop paths to other vocab words + +## Phase 3: Property Enrichment for FALSE_EQUIVALENCE Templates + +The `false_equivalence` meta-template needs HasProperty edges, which are sparse in ConceptNet for concrete nouns. Run a targeted property-extraction pass. + +### Prompt + +System prompt: +``` +You are a commonsense knowledge annotator. Given a concrete noun, list its most distinctive physical or sensory properties — things you could see, touch, hear, smell, or taste. Also list behavioral properties for animals. + +Rules: +- Only physical/sensory/behavioral properties, not abstract qualities +- Properties should DISTINGUISH this thing from similar things in its category +- Output one property per line as: PROPERTY | brief explanation +- Aim for 5-8 properties +``` + +User prompt: +``` +Word: {word} +Category: {categories} +Other words in same category: {same_category_sample} + +What properties distinguish {word} from the others listed? +``` + +Including same-category peers in the prompt encourages the LLM to generate *differentiating* properties rather than generic ones. "Has legs" is useless for a horse because every animal has legs. "Has a mane" differentiates it. + +### Output Format + +``` +fast | horses are known for running fast +tall | horses are tall compared to most farm animals +mane | horses have a distinctive mane +shod | horses wear horseshoes +``` + +These get stored as HasProperty edges in the augmented relations file. + +## Output Files + +### `folksy_relations_augmented.csv` +Same schema as `folksy_relations.csv` with additional columns: + +``` +start_word, end_word, relation, weight, surface_text, source +corn, chicken, UsedFor, 1.0, "Corn is used for feeding chickens", conceptnet +dog, porch, AtLocation, 0.8, "you find a dog on a porch", llm_augmented +horse, mane, HasA, 0.8, "a horse has a mane", llm_augmented +``` + +The `source` column allows filtering: `source=conceptnet` for pure ConceptNet, `source=llm_augmented` for LLM additions, or both for the full enhanced graph. + +### `candidate_additions.csv` +Words that appeared in LLM output but aren't in the current folksy vocab: + +``` +word, suggested_by, relation_context, frequency +mane, horse, "HasA: a horse has a mane", 2 +bridle, horse, "HasA: a horse has a bridle", 1 +``` + +The `frequency` column counts how many different source words suggested this target. High-frequency candidates are strong additions to the folksy vocab. Review manually or with a threshold (e.g., suggested by 3+ different words → auto-add). + +### `enhancement_log.csv` +Track what was processed and what the LLM produced: + +``` +source_word, timestamp, edges_generated, edges_accepted, edges_duplicate, edges_oov +dog, 2025-02-15T10:30:00, 24, 18, 3, 3 +horse, 2025-02-15T10:30:45, 31, 22, 5, 4 +``` + +## Execution Plan + +### Batch Processing + +534 words × ~1 second per LLM call = ~9 minutes for Phase 1. Very manageable. + +```python +import csv +import time + +def process_all_words(vocab_path, relations_path, output_path): + vocab = load_vocab(vocab_path) + relations = load_relations(relations_path) + all_new_edges = [] + + for i, word_entry in enumerate(vocab): + word = word_entry['word'] + categories = word_entry['categories'] + existing = get_edges_for_word(relations, word) + + messages = build_expansion_prompt(word, categories, existing) + response = llm_chat_completion(messages) + response_text = response['choices'][0]['message']['content'] + + new_edges = parse_llm_relations(response_text, word) + new_edges = deduplicate(new_edges, existing) + all_new_edges.extend(new_edges) + + if (i + 1) % 50 == 0: + print(f"Processed {i+1}/{len(vocab)} words, {len(all_new_edges)} new edges so far") + + time.sleep(0.1) # gentle rate limiting + + save_augmented_relations(all_new_edges, output_path) +``` + +### Resumability + +Write a checkpoint file after each word so the process can resume if interrupted. The enhancement_log.csv serves this purpose — skip any word that already has an entry. + +### Validation Pass + +After all LLM edges are generated, run a quick validation: +1. No self-loops (start_word == end_word) +2. All relation types are in the valid set +3. No duplicate (start, end, relation) triples +4. Distribution check: flag any word that got 0 new edges (LLM may have failed to parse) +5. Spot-check 20 random LLM edges manually for sanity + +## Integration with Generator + +The generator's data loading should be updated to: + +1. Load `folksy_relations.csv` (original ConceptNet edges) +2. If `folksy_relations_augmented.csv` exists, load and merge it +3. CLI flag: `--pure-conceptnet` to disable LLM-augmented edges +4. CLI flag: `--llm-weight-boost 0.2` to adjust LLM edge weights at runtime (default 0, meaning they keep their 0.8 weight) + +This keeps the original ConceptNet data pristine and the augmentation fully reversible. diff --git a/data/candidate_additions.csv b/data/candidate_additions.csv new file mode 100644 index 0000000..3f5fd17 --- /dev/null +++ b/data/candidate_additions.csv @@ -0,0 +1,9511 @@ +word,suggested_by,relation_context,frequency +concert,accordion,AtLocation: you find an accordion at a concert,1 +folk_music,accordion,UsedFor: an accordion is used for folk music,1 +orchestra,accordion,PartOf: an accordion is part of an orchestra,1 +produce_sound,accordion,CapableOf: an accordion can produce sound,1 +player,accordion,HasPrerequisite: you need a player before you can use an accordion,1 +nostalgia,accordion,Causes: an accordion causes nostalgia,1 +portable,accordion,HasProperty: an accordion is portable,1 +eating,acorn,UsedFor: an acorn can be used for eating,1 +planting,acorn,UsedFor: an acorn is used for planting,1 +oak_tree,acorn,PartOf: an acorn is part of an oak tree,1 +meat,acorn,MadeOf: an acorn is made of meat,1 +oak_tree,acorn,HasPrerequisite: you need an oak tree to produce an acorn,1 +growth,acorn,Causes: an acorn causes growth,1 +hard,acorn,HasProperty: an acorn is hard,1 +brown,acorn,HasProperty: an acorn is brown,1 +small,acorn,HasProperty: an acorn is small,1 +ground,agate,AtLocation: you find agate on the ground,1 +riverbed,agate,AtLocation: you find agate in a riverbed,1 +jewelry,agate,UsedFor: agate is used for jewelry,1 +decoration,agate,UsedFor: agate is used for decoration,1 +pattern,agate,HasA: agate has a pattern,1 +band,agate,HasA: agate has a band,1 +geode,agate,PartOf: agate is part of a geode,1 +polish,agate,CapableOf: agate can be polished,1 +cut,agate,CapableOf: agate can be cut,1 +mineral,agate,MadeOf: agate is made of mineral,1 +silica,agate,MadeOf: agate is made of silica,1 +digging,agate,HasPrerequisite: you need digging before you can find agate,1 +nature,agate,HasPrerequisite: you need nature before you can find agate,1 +shine,agate,Causes: agate causes shine,1 +beauty,agate,Causes: agate causes beauty,1 +hard,agate,HasProperty: agate is hard,1 +smooth,agate,HasProperty: agate is smooth,1 +colorful,agate,HasProperty: agate is colorful,1 +translucent,agate,HasProperty: agate is translucent,1 +airport,airplane,AtLocation: you find an airplane at an airport,1 +vacation,airplane,UsedFor: an airplane is used for vacation,1 +business_trip,airplane,UsedFor: an airplane is used for business trips,1 +emergency_evacuation,airplane,UsedFor: an airplane is used for emergency evacuations,1 +tourism,airplane,UsedFor: an airplane is used for tourism,1 +wings,airplane,HasA: an airplane has wings,1 +cockpit,airplane,HasA: an airplane has a cockpit,1 +jet_engines,airplane,HasA: an airplane has jet engines,1 +fuselage,airplane,HasA: an airplane has a fuselage,1 +aviation_system,airplane,PartOf: an airplane is part of the aviation system,1 +transportation_network,airplane,PartOf: an airplane is part of the transportation network,1 +air_force,airplane,PartOf: an airplane is part of the air force,1 +airline_fleet,airplane,PartOf: an airplane is part of an airline fleet,1 +take_off,airplane,CapableOf: an airplane can take off,1 +carry_passengers,airplane,CapableOf: an airplane can carry passengers,1 +refuel,airplane,CapableOf: an airplane can refuel,1 +navigate,airplane,CapableOf: an airplane can navigate,1 +brake,airplane,CapableOf: an airplane can brake,1 +fiberglass,airplane,MadeOf: an airplane is made of fiberglass,1 +carbon_fiber,airplane,MadeOf: an airplane is made of carbon fiber,1 +ticket,airplane,HasPrerequisite: you need a ticket before you can use an airplane,1 +boarding_pass,airplane,HasPrerequisite: you need a boarding pass before you can use an airplane,1 +luggage,airplane,HasPrerequisite: you need luggage before you can use an airplane,1 +security_check,airplane,HasPrerequisite: you need security clearance before you can use an airplane,1 +identification,airplane,HasPrerequisite: you need identification before you can use an airplane,1 +jetlag,airplane,Causes: an airplane causes jetlag,1 +travel_stress,airplane,Causes: an airplane causes travel stress,1 +airport_crowding,airplane,Causes: an airplane causes airport crowding,1 +noise_pollution,airplane,Causes: an airplane causes noise pollution,1 +air_traffic,airplane,Causes: an airplane causes air traffic,1 +fast,airplane,HasProperty: an airplane is fast,1 +heavy,airplane,HasProperty: an airplane is heavy,1 +streamlined,airplane,HasProperty: an airplane is streamlined,1 +complex,airplane,HasProperty: an airplane is complex,1 +expensive,airplane,HasProperty: an airplane is expensive,1 +carving,alabaster,UsedFor: alabaster is used for carving,1 +texture,alabaster,HasA: alabaster has a smooth texture,1 +sculpture,alabaster,PartOf: alabaster is part of a sculpture,1 +polish,alabaster,CapableOf: alabaster can be polished,1 +gypsum,alabaster,MadeOf: alabaster is made of gypsum,1 +tools,alabaster,HasPrerequisite: you need tools before you can carve alabaster,1 +beauty,alabaster,Causes: alabaster causes beauty in art,1 +translucent,alabaster,HasProperty: alabaster is translucent,1 +white,alabaster,HasProperty: alabaster is white,1 +ocean,albatross,AtLocation: an albatross is found in the ocean,1 +fishing,albatross,UsedFor: an albatross is used for fishing,1 +beak,albatross,HasA: an albatross has a beak,1 +wildlife,albatross,PartOf: an albatross is part of wildlife,1 +soar_over_water,albatross,CapableOf: an albatross can soar over water,1 +feathers,albatross,MadeOf: an albatross is made of feathers,1 +fishing,albatross,Causes: an albatross causes fishing,1 +white,albatross,HasProperty: an albatross is white,1 +factory,aluminum,AtLocation: you find aluminum at a factory,1 +wrapping_food,aluminum,UsedFor: aluminum is used for wrapping food,1 +making_cans,aluminum,UsedFor: aluminum is used for making cans,1 +construction,aluminum,UsedFor: aluminum is used for construction,1 +cooking,aluminum,UsedFor: aluminum is used for cooking,1 +surface,aluminum,HasA: aluminum has a surface,1 +edge,aluminum,HasA: aluminum has an edge,1 +window_frame,aluminum,PartOf: aluminum is part of a window frame,1 +foil,aluminum,PartOf: aluminum is part of foil,1 +kitchen_utensil,aluminum,PartOf: aluminum is part of a kitchen utensil,1 +conducting_heat,aluminum,CapableOf: aluminum can conduct heat,1 +reflecting_light,aluminum,CapableOf: aluminum can reflect light,1 +bending,aluminum,CapableOf: aluminum can bend,1 +corroding,aluminum,CapableOf: aluminum can corrode,1 +ore,aluminum,MadeOf: aluminum is made of ore,1 +bauxite,aluminum,MadeOf: aluminum is made of bauxite,1 +mining,aluminum,HasPrerequisite: you need mining before you can have aluminum,1 +refining,aluminum,HasPrerequisite: you need refining before you can use aluminum,1 +shielding,aluminum,Causes: aluminum causes shielding,1 +recycling,aluminum,Causes: aluminum causes recycling,1 +shiny,aluminum,HasProperty: aluminum is shiny,1 +lightweight,aluminum,HasProperty: aluminum is lightweight,1 +malleable,aluminum,HasProperty: aluminum is malleable,1 +conductive,aluminum,HasProperty: aluminum is conductive,1 +anchoring,anchor,UsedFor: an anchor is used for anchoring,1 +mooring,anchor,UsedFor: an anchor is used for mooring,1 +stopping,anchor,UsedFor: an anchor is used for stopping a boat,1 +stability,anchor,UsedFor: an anchor is used for providing stability,1 +securing,anchor,UsedFor: an anchor is used for securing a vessel,1 +chain,anchor,HasA: an anchor has a chain,1 +shank,anchor,HasA: an anchor has a shank,1 +vessel,anchor,PartOf: an anchor is part of a vessel,1 +holding,anchor,CapableOf: an anchor can hold a boat in place,1 +sinking,anchor,CapableOf: an anchor can sink if dropped in water,1 +grounding,anchor,CapableOf: an anchor can ground a ship,1 +stability,anchor,Causes: an anchor causes stability,1 +stoppage,anchor,Causes: an anchor causes stoppage of a boat,1 +grounding,anchor,Causes: an anchor causes grounding if not properly set,1 +heavy,anchor,HasProperty: an anchor is heavy,1 +strong,anchor,HasProperty: an anchor is strong,1 +metal,anchor,HasProperty: an anchor is metal,1 +flavoring,anise,UsedFor: anise is used for flavoring food,1 +cooking,anise,UsedFor: anise is used for cooking,1 +medicine,anise,UsedFor: anise is used for medicine,1 +seed,anise,HasA: anise has a seed,1 +spice_rack,anise,PartOf: anise is part of a spice rack,1 +enhancing,anise,CapableOf: anise can enhance flavor,1 +plant,anise,MadeOf: anise is made of plant,1 +plant,anise,HasPrerequisite: you need a plant to grow anise,1 +fragrance,anise,Causes: anise causes fragrance,1 +aromatic,anise,HasProperty: anise has an aromatic property,1 +sweet,anise,HasProperty: anise has a sweet property,1 +soil,ant,AtLocation: you find an ant in the soil,1 +farming,ant,UsedFor: ants are used for farming other insects,1 +pest_control,ant,UsedFor: ants are used for pest control,1 +antennae,ant,HasA: an ant has antennae,1 +legs,ant,HasA: an ant has legs,1 +wings,ant,HasA: some ants have wings,1 +exoskeleton,ant,HasA: an ant has an exoskeleton,1 +ecosystem,ant,PartOf: an ant is part of an ecosystem,1 +colony,ant,PartOf: an ant is part of a colony,1 +carry_food,ant,CapableOf: an ant can carry food,1 +dig_tunnel,ant,CapableOf: an ant can dig tunnels,1 +bite,ant,CapableOf: an ant can bite,1 +communicate,ant,CapableOf: an ant can communicate,1 +chitin,ant,MadeOf: an ant is made of chitin,1 +warmth,ant,HasPrerequisite: you need warmth before you can see ants,1 +food,ant,HasPrerequisite: ants need food before they can survive,1 +irritation,ant,Causes: an ant causes irritation,1 +soil_movement,ant,Causes: ants cause soil movement,1 +decomposition,ant,Causes: ants cause decomposition,1 +small,ant,HasProperty: an ant is small,1 +black,ant,HasProperty: an ant is black,1 +red,ant,HasProperty: an ant is red,1 +brown,ant,HasProperty: an ant is brown,1 +blacksmith_shop,anvil,AtLocation: you find an anvil in a blacksmith shop,1 +forge_metal,anvil,UsedFor: an anvil is used for forging metal,1 +shape_metal,anvil,UsedFor: an anvil is used for shaping metal,1 +surface,anvil,HasA: an anvil has a hard surface,1 +workshop,anvil,PartOf: an anvil is part of a workshop,1 +flatten_metal,anvil,CapableOf: an anvil can help flatten metal,1 +hammer,anvil,HasPrerequisite: you need a hammer before you can use an anvil,1 +forge,anvil,HasPrerequisite: you need a forge before you can use an anvil,1 +sound,anvil,Causes: an anvil causes a loud sound when struck,1 +heavy,anvil,HasProperty: an anvil is heavy,1 +solid,anvil,HasProperty: an anvil is solid,1 +fireplace,ash,AtLocation: you find ash in a fireplace,1 +fertilizer,ash,UsedFor: ash is used for fertilizer,1 +cleaning,ash,UsedFor: ash is used for cleaning,1 +dust,ash,HasA: ash has dust,1 +spreading,ash,CapableOf: ash can spread,1 +fire,ash,MadeOf: ash is made of fire,1 +burning,ash,HasPrerequisite: you need burning before you have ash,1 +pollution,ash,Causes: ash causes pollution,1 +gray,ash,HasProperty: ash has a gray property,1 +powdery,ash,HasProperty: ash has a powdery property,1 +grocery_store,asparagus,AtLocation: you find asparagus in a grocery store,1 +cooking,asparagus,UsedFor: asparagus is used for cooking,1 +garnishing,asparagus,UsedFor: asparagus is used for garnishing,1 +stir_fry,asparagus,UsedFor: asparagus is used in stir-fry,1 +tip,asparagus,HasA: asparagus has a tip,1 +meal,asparagus,PartOf: asparagus is part of a meal,1 +vegetable_basket,asparagus,PartOf: asparagus is part of a vegetable basket,1 +steaming,asparagus,CapableOf: asparagus can be steamed,1 +roasting,asparagus,CapableOf: asparagus can be roasted,1 +boiling,asparagus,CapableOf: asparagus can be boiled,1 +plant_cells,asparagus,MadeOf: asparagus is made of plant cells,1 +fiber,asparagus,MadeOf: asparagus is made of fiber,1 +soil,asparagus,HasPrerequisite: you need soil before you can grow asparagus,1 +fullness,asparagus,Causes: eating asparagus causes fullness,1 +gas,asparagus,Causes: eating asparagus causes gas,1 +green,asparagus,HasProperty: asparagus is green,1 +fibrous,asparagus,HasProperty: asparagus is fibrous,1 +crisp,asparagus,HasProperty: asparagus is crisp,1 +research,auk,UsedFor: an auk is used for research,1 +beak,auk,HasA: an auk has a beak,1 +bird_family,auk,PartOf: an auk is part of a bird family,1 +swim,auk,CapableOf: an auk can swim,1 +flesh,auk,MadeOf: an auk is made of flesh,1 +habitat,auk,HasPrerequisite: you need a habitat before you can have an auk,1 +interest,auk,Causes: an auk causes interest,1 +flightless,auk,HasProperty: an auk is flightless,1 +toolbox,awl,AtLocation: you find an awl in a toolbox,1 +puncturing,awl,UsedFor: an awl is used for puncturing,1 +leatherworking,awl,UsedFor: an awl is used for leatherworking,1 +making_holes,awl,UsedFor: an awl is used for making holes,1 +marking_wood,awl,UsedFor: an awl is used for marking wood,1 +point,awl,HasA: an awl has a point,1 +handle,awl,HasA: an awl has a handle,1 +toolkit,awl,PartOf: an awl is part of a toolkit,1 +workshop,awl,PartOf: an awl is part of a workshop,1 +piercing,awl,CapableOf: an awl can pierce,1 +cutting,awl,CapableOf: an awl can cut,1 +marking,awl,CapableOf: an awl can mark,1 +breaking,awl,CapableOf: an awl can break,1 +metal,awl,MadeOf: an awl is made of metal,1 +handle,awl,HasPrerequisite: you need a handle before you can use an awl,1 +hole,awl,Causes: an awl causes a hole,1 +tear,awl,Causes: an awl causes a tear,1 +cut,awl,Causes: an awl causes a cut,1 +mark,awl,Causes: an awl causes a mark,1 +sharp,awl,HasProperty: an awl is sharp,1 +pointed,awl,HasProperty: an awl is pointed,1 +metal,awl,HasProperty: an awl is metal,1 +sturdy,awl,HasProperty: an awl is sturdy,1 +workshop,axe,AtLocation: an axe is found in a workshop,1 +splitting_firewood,axe,UsedFor: an axe is used for splitting firewood,1 +carving_wood,axe,UsedFor: an axe is used for carving wood,1 +self-defense,axe,UsedFor: an axe can be used for self-defense,1 +handle,axe,HasA: an axe has a handle,1 +tool_setcabinet,axe,PartOf: an axe is part of a tool setCabinet,1 +劈开木头,axe,CapableOf: an axe can劈开木头,1 +砍柴,axe,CapableOf: an axe can砍柴,1 +砍断树枝,axe,CapableOf: an axe can砍断树枝,1 +metal,axe,MadeOf: an axe is made of metal,1 +sharp_blade,axe,HasPrerequisite: you need a sharp blade before you can use an axe,1 +strong_arm,axe,HasPrerequisite: you need a strong arm before you can use an axe,1 +wood_pieces,axe,Causes: an axe causes wood_pieces,1 +firewood,axe,Causes: an axe causes firewood,1 +injury,axe,Causes: an axe can cause injury,1 +heavy,axe,HasProperty: an axe is heavy,1 +sharp,axe,HasProperty: an axe is sharp,1 +sturdy,axe,HasProperty: an axe is sturdy,1 +decoration,azalea,UsedFor: an azalea is used for decoration,1 +flower,azalea,HasA: an azalea has a flower,1 +landscape,azalea,PartOf: an azalea is part of a landscape,1 +blooming,azalea,CapableOf: an azalea can bloom,1 +plant,azalea,MadeOf: an azalea is made of plant,1 +sunlight,azalea,HasPrerequisite: an azalea needs sunlight to grow,1 +beauty,azalea,Causes: an azalea causes beauty,1 +colorful,azalea,HasProperty: an azalea is colorful,1 +forest,bamboo,AtLocation: you find bamboo in a forest,1 +tropical_region,bamboo,AtLocation: you find bamboo in a tropical region,1 +make,bamboo,UsedFor: bamboo is used to make furniture,1 +eat,bamboo,UsedFor: bamboo is used to eat with (as in bamboo shoots),1 +grow,bamboo,UsedFor: bamboo is used to grow in pots,1 +shoot,bamboo,HasA: bamboo has a shoot,1 +leaf,bamboo,HasA: bamboo has a leaf,1 +plant_family,bamboo,PartOf: bamboo is part of the plant family,1 +provide_shade,bamboo,CapableOf: bamboo can provide shade,1 +filter_water,bamboo,CapableOf: bamboo can filter water,1 +purify_air,bamboo,CapableOf: bamboo can purify air,1 +cellulose,bamboo,MadeOf: bamboo is made of cellulose,1 +fiber,bamboo,MadeOf: bamboo is made of fiber,1 +plant_material,bamboo,MadeOf: bamboo is made of plant material,1 +sunlight,bamboo,HasPrerequisite: bamboo requires sunlight,1 +soil,bamboo,HasPrerequisite: bamboo requires soil,1 +shadow,bamboo,Causes: bamboo causes a shadow,1 +oxygen,bamboo,Causes: bamboo causes oxygen,1 +growth,bamboo,Causes: bamboo causes growth,1 +strong,bamboo,HasProperty: bamboo is strong,1 +green,bamboo,HasProperty: bamboo is green,1 +fruit_bowl,banana,AtLocation: you find a banana in a fruit bowl,1 +grocery_bag,banana,AtLocation: you find a banana in a grocery bag,1 +baking,banana,UsedFor: a banana is used for baking,1 +making,banana,UsedFor: a banana is used for making banana bread,1 +fruit,banana,HasA: a banana has fruit,1 +fruit_basket,banana,PartOf: a banana is part of a fruit basket,1 +breakfast,banana,PartOf: a banana is part of breakfast,1 +ripening,banana,CapableOf: a banana can ripening,1 +bruising,banana,CapableOf: a banana can bruise,1 +fruit,banana,MadeOf: a banana is made of fruit,1 +nutrients,banana,MadeOf: a banana is made of nutrients,1 +harvesting,banana,HasPrerequisite: you need harvesting before you can have a banana,1 +ripening,banana,HasPrerequisite: you need ripening before you can have a banana,1 +satisfaction,banana,Causes: a banana causes satisfaction,1 +digestion,banana,Causes: a banana causes digestion,1 +sweet,banana,HasProperty: a banana is sweet,1 +soft,banana,HasProperty: a banana is soft,1 +curved,banana,HasProperty: a banana is curved,1 +forest,barbet,AtLocation: a barbet is found in a forest,1 +eating_fruit,barbet,UsedFor: a barbet is used for eating fruit,1 +beak,barbet,HasA: a barbet has a beak,1 +avian_family,barbet,PartOf: a barbet is part of the avian family,1 +feathers,barbet,MadeOf: a barbet is made of feathers,1 +trees,barbet,HasPrerequisite: you need trees before you can have a barbet,1 +seed_dispersal,barbet,Causes: a barbet causes seed dispersal,1 +colorful,barbet,HasProperty: a barbet is colorful,1 +ground,bark,AtLocation: you find bark on the ground,1 +starting_fires,bark,UsedFor: bark is used for starting fires,1 +texture,bark,HasA: bark has texture,1 +forest_floor,bark,PartOf: bark is part of the forest floor,1 +protecting,bark,CapableOf: bark can protect the tree,1 +decomposition,bark,Causes: bark causes decomposition,1 +farm,barn,AtLocation: a barn is found on a farm,1 +rural_area,barn,AtLocation: a barn is found in a rural area,1 +agricultural_region,barn,AtLocation: a barn is found in an agricultural region,1 +property_with_animals,barn,AtLocation: a barn is found on property with animals,1 +housing_livestock,barn,UsedFor: a barn is used for housing livestock,1 +storing_grain,barn,UsedFor: a barn is used for storing grain,1 +sheltering_horses,barn,UsedFor: a barn is used for sheltering horses,1 +storing_bales_of_hay,barn,UsedFor: a barn is used for storing bales of hay,1 +protecting_equipment,barn,UsedFor: a barn is used for protecting equipment,1 +door,barn,HasA: a barn has a door,1 +window,barn,HasA: a barn has a window,1 +hay_bales,barn,HasA: a barn has hay bales,1 +stalls,barn,HasA: a barn has stalls,1 +farming_operation,barn,PartOf: a barn is part of a farming operation,1 +agricultural_system,barn,PartOf: a barn is part of an agricultural system,1 +rural_landscape,barn,PartOf: a barn is part of a rural landscape,1 +property,barn,PartOf: a barn is part of a property,1 +farmstead,barn,PartOf: a barn is part of a farmstead,1 +sheltering,barn,CapableOf: a barn can shelter animals,1 +storing,barn,CapableOf: a barn can store hay,1 +protecting,barn,CapableOf: a barn can protect equipment,1 +containing,barn,CapableOf: a barn can contain animals,1 +housing,barn,CapableOf: a barn can house livestock,1 +lumber,barn,MadeOf: a barn is made of lumber,1 +nails,barn,MadeOf: a barn is made of nails,1 +shingles,barn,MadeOf: a barn is made of shingles,1 +farmland,barn,HasPrerequisite: you need farmland to have a barn,1 +farm_equipment,barn,HasPrerequisite: you need farm equipment for a barn,1 +land,barn,HasPrerequisite: you need land for a barn,1 +farm_animals,barn,HasPrerequisite: you need farm animals for a barn,1 +agricultural_land,barn,HasPrerequisite: you need agricultural land for a barn,1 +storage_capacity,barn,Causes: a barn causes storage capacity for equipment,1 +protection,barn,Causes: a barn causes protection from weather,1 +containment,barn,Causes: a barn causes containment of animals,1 +agricultural_activity,barn,Causes: a barn causes agricultural activity,1 +large,barn,HasProperty: a barn is large,1 +wooden,barn,HasProperty: a barn is wooden,1 +sturdy,barn,HasProperty: a barn is sturdy,1 +open,barn,HasProperty: a barn is open,1 +rural,barn,HasProperty: a barn is rural,1 +weather_station,barometer,AtLocation: a barometer is found at a weather station,1 +predicting_weather_changes,barometer,UsedFor: a barometer is used for predicting weather changes,1 +indicating_storm_approach,barometer,UsedFor: a barometer is used for indicating a storm is approaching,1 +monitoring_pressure_trends,barometer,UsedFor: a barometer is used for monitoring pressure trends,1 +meteorological_instrument,barometer,PartOf: a barometer is part of a meteorological instrument,1 +scientific_equipment,barometer,PartOf: a barometer is part of scientific equipment,1 +indicating_pressure_drop,barometer,CapableOf: a barometer can indicate a pressure drop,1 +displaying_pressure_readings,barometer,CapableOf: a barometer can display pressure readings,1 +metal,barometer,MadeOf: a barometer is made of metal,1 +air,barometer,HasPrerequisite: a barometer requires air as a prerequisite,1 +calibrated_scale,barometer,HasPrerequisite: a barometer requires a calibrated scale,1 +weather_forecast,barometer,Causes: a barometer reading causes a weather forecast,1 +alarm,barometer,Causes: a sudden drop in barometer reading can cause alarm,1 +precise,barometer,HasProperty: a barometer is precise,1 +sensitive,barometer,HasProperty: a barometer is sensitive to pressure changes,1 +glassy,barometer,HasProperty: a barometer is glassy,1 +ocean,barracuda,AtLocation: you find a barracuda in the ocean,1 +eating,barracuda,UsedFor: a barracuda is used for eating,1 +sharp_teeth,barracuda,HasA: a barracuda has sharp teeth,1 +food_chain,barracuda,PartOf: a barracuda is part of the food chain,1 +swim,barracuda,CapableOf: a barracuda can swim,1 +saltwater,barracuda,HasPrerequisite: you need saltwater before you can find a barracuda,1 +fear,barracuda,Causes: a barracuda causes fear,1 +long,barracuda,HasProperty: a barracuda is long,1 +cellar,barrel,AtLocation: you find a barrel in a cellar,1 +storing_liquids,barrel,UsedFor: a barrel is used for storing liquids,1 +aging_wine,barrel,UsedFor: a barrel is used for aging wine,1 +transporting_goods,barrel,UsedFor: a barrel is used for transporting goods,1 +fermenting_beer,barrel,UsedFor: a barrel is used for fermenting beer,1 +lid,barrel,HasA: a barrel has a lid,1 +staves,barrel,HasA: a barrel has staves,1 +hoop,barrel,HasA: a barrel has a hoop,1 +bottom,barrel,HasA: a barrel has a bottom,1 +brewery,barrel,PartOf: a barrel is part of a brewery,1 +wine_cellar,barrel,PartOf: a barrel is part of a wine cellar,1 +ship_cargo,barrel,PartOf: a barrel is part of ship cargo,1 +containing,barrel,CapableOf: a barrel can contain,1 +rolling,barrel,CapableOf: a barrel can roll,1 +storing,barrel,CapableOf: a barrel can store,1 +materials,barrel,HasPrerequisite: you need materials before you can make a barrel,1 +cooper,barrel,HasPrerequisite: you need a cooper before you can make a barrel,1 +containment,barrel,Causes: a barrel causes containment,1 +preservation,barrel,Causes: a barrel causes preservation,1 +round,barrel,HasProperty: a barrel is round,1 +cylindrical,barrel,HasProperty: a barrel is cylindrical,1 +sturdy,barrel,HasProperty: a barrel is sturdy,1 +garnishing,basil,UsedFor: basil is used for garnishing dishes,1 +making_pasta_sauce,basil,UsedFor: basil is used for making pasta sauce,1 +flavoring_pizza,basil,UsedFor: basil is used for flavoring pizza,1 +making_tomato_sauce,basil,UsedFor: basil is used for making tomato sauce,1 +herb_garden,basil,PartOf: basil is part of a herb garden,1 +bouquet,basil,PartOf: basil is part of a bouquet,1 +growing,basil,CapableOf: basil can grow,1 +sprouting,basil,CapableOf: basil can sprout from seeds,1 +thriving,basil,CapableOf: basil can thrive in sunlight,1 +leaves,basil,MadeOf: basil is made of leaves,1 +plant_cells,basil,MadeOf: basil is made of plant cells,1 +sunlight,basil,HasPrerequisite: basil requires sunlight,1 +soil,basil,HasPrerequisite: basil requires soil,1 +good_smell,basil,Causes: basil causes a good smell,1 +improved_taste,basil,Causes: basil causes improved taste in food,1 +relaxation,basil,Causes: basil can cause relaxation,1 +fragrant,basil,HasProperty: basil is fragrant,1 +green,basil,HasProperty: basil is green,1 +aquarium,bass,AtLocation: you find a bass in an aquarium,1 +aquarium_tank,bass,AtLocation: you find a bass in an aquarium tank,1 +instrument_case,bass,AtLocation: you find a bass in an instrument case,1 +musician_home,bass,AtLocation: you find a bass in a musician's home,1 +fishing,bass,UsedFor: a bass is used for fishing,1 +fishing_tackle,bass,UsedFor: a bass is used for fishing tackle,1 +musical_rhythm,bass,UsedFor: a bass is used for musical rhythm,1 +bass_music,bass,UsedFor: a bass is used for bass music,1 +jazz_performance,bass,UsedFor: a bass is used for jazz performance,1 +fin,bass,HasA: a bass has a fin,1 +tail,bass,HasA: a bass has a tail,1 +scales,bass,HasA: a bass has scales,1 +mouth,bass,HasA: a bass has a mouth,1 +gills,bass,HasA: a bass has gills,1 +orchestra,bass,PartOf: a bass is part of an orchestra,1 +band,bass,PartOf: a bass is part of a band,1 +music_group,bass,PartOf: a bass is part of a music group,1 +fish_population,bass,PartOf: a bass is part of a fish population,1 +ecosystem,bass,PartOf: a bass is part of an ecosystem,1 +swim,bass,CapableOf: a bass can swim,1 +breathe_underwater,bass,CapableOf: a bass can breathe underwater,1 +reproduce,bass,CapableOf: a bass can reproduce,1 +digest_food,bass,CapableOf: a bass can digest food,1 +create_music,bass,CapableOf: a bass can create music,1 +metal,bass,MadeOf: a bass is made of metal,1 +string,bass,MadeOf: a bass is made of string,1 +fish_bone,bass,MadeOf: a bass is made of fish bone,1 +fishing_rod,bass,HasPrerequisite: you need a fishing rod before catching a bass,1 +lake,bass,HasPrerequisite: you need a lake before catching a bass,1 +musician,bass,HasPrerequisite: you need a musician before playing a bass,1 +amplifier,bass,HasPrerequisite: you need an amplifier before playing a bass,1 +fishing_licence,bass,HasPrerequisite: you need a fishing licence before catching a bass,1 +dinner,bass,Causes: a bass causes dinner,1 +music,bass,Causes: a bass causes music,1 +bass_line,bass,Causes: a bass causes bass line,1 +fish_meal,bass,Causes: a bass causes fish meal,1 +vibration,bass,Causes: a bass causes vibration,1 +slippery,bass,HasProperty: a bass is slippery,1 +wet,bass,HasProperty: a bass is wet,1 +heavy,bass,HasProperty: a bass is heavy,1 +wooden,bass,HasProperty: a bass is wooden,1 +stringed,bass,HasProperty: a bass is stringed,1 +forest,bat,AtLocation: you find a bat in a forest,1 +flying,bat,UsedFor: bats are used for flying,1 +hunting,bat,UsedFor: bats are used for hunting insects,1 +fur,bat,HasA: a bat has fur,1 +teeth,bat,HasA: a bat has teeth,1 +ecosystem,bat,PartOf: a bat is part of an ecosystem,1 +catch_insects,bat,CapableOf: a bat can catch insects,1 +navigate_darkness,bat,CapableOf: a bat can navigate in darkness,1 +bone,bat,MadeOf: a bat is made of bone,1 +muscle,bat,MadeOf: a bat is made of muscle,1 +darkness,bat,HasPrerequisite: bats require darkness for hunting,1 +night,bat,HasPrerequisite: bats need night to be active,1 +guano,bat,Causes: bats cause guano,1 +fear,bat,Causes: bats can cause fear in some people,1 +nocturnal,bat,HasProperty: bats are nocturnal,1 +small,bat,HasProperty: bats are small,1 +plate,bean,AtLocation: you find a bean on a plate,1 +bowl,bean,AtLocation: you find a bean in a bowl,1 +making_salad,bean,UsedFor: a bean is used for making salad,1 +making_sandwich,bean,UsedFor: a bean is used for making sandwich,1 +seed,bean,HasA: a bean has a seed,1 +skin,bean,HasA: a bean has a skin,1 +dish,bean,PartOf: a bean is part of a dish,1 +plant,bean,PartOf: a bean is part of a plant,1 +meal,bean,PartOf: a bean is part of a meal,1 +growing,bean,CapableOf: a bean can grow,1 +sprouting,bean,CapableOf: a bean can sprout,1 +ripening,bean,CapableOf: a bean can ripen,1 +plant,bean,MadeOf: a bean is made of plant,1 +fiber,bean,MadeOf: a bean is made of fiber,1 +planting,bean,HasPrerequisite: you need planting before you can have a bean,1 +growing,bean,HasPrerequisite: you need growing before you can have a bean,1 +harvesting,bean,HasPrerequisite: you need harvesting before you can have a bean,1 +digestion,bean,Causes: a bean causes digestion,1 +satiety,bean,Causes: a bean causes satiety,1 +growth,bean,Causes: a bean causes growth,1 +edible,bean,HasProperty: a bean is edible,1 +small,bean,HasProperty: a bean is small,1 +round,bean,HasProperty: a bean is round,1 +forest,beaver,AtLocation: you find a beaver in a forest,1 +river,beaver,AtLocation: you find a beaver in a river,1 +lake,beaver,AtLocation: you find a beaver in a lake,1 +building,beaver,UsedFor: beavers are used for building dams,1 +fur,beaver,UsedFor: beavers are used for fur,1 +tail,beaver,HasA: a beaver has a tail,1 +teeth,beaver,HasA: a beaver has teeth,1 +paws,beaver,HasA: a beaver has paws,1 +ecosystem,beaver,PartOf: a beaver is part of an ecosystem,1 +rodent,beaver,PartOf: a beaver is part of the rodent family,1 +swim,beaver,CapableOf: a beaver can swim,1 +chew_wood,beaver,CapableOf: a beaver can chew wood,1 +store_food,beaver,CapableOf: a beaver can store food,1 +gnaw,beaver,CapableOf: a beaver can gnaw,1 +fur,beaver,MadeOf: a beaver is made of fur,1 +muscle,beaver,MadeOf: a beaver is made of muscle,1 +bone,beaver,MadeOf: a beaver is made of bone,1 +trees,beaver,HasPrerequisite: you need trees to have a beaver,1 +dam,beaver,Causes: beavers cause dams to form,1 +flooding,beaver,Causes: beavers cause flooding,1 +brown,beaver,HasProperty: a beaver is brown,1 +furry,beaver,HasProperty: a beaver is furry,1 +aquatic,beaver,HasProperty: a beaver is aquatic,1 +cabin,bed,AtLocation: you find a bed in a cabin,1 +guest_room,bed,AtLocation: you find a bed in a guest room,1 +camper,bed,AtLocation: you find a bed in a camper,1 +motel,bed,AtLocation: you find a bed in a motel,1 +trailer,bed,AtLocation: you find a bed in a trailer,1 +sleep,bed,UsedFor: a bed is used for sleep,1 +sleeping_in,bed,UsedFor: a bed is used for sleeping in,1 +nap_on,bed,UsedFor: a bed is used for napping on,1 +sleep_on,bed,UsedFor: a bed is used for sleeping on,1 +pillow,bed,HasA: a bed has a pillow,1 +sheets,bed,HasA: a bed has sheets,1 +blanket,bed,HasA: a bed has a blanket,1 +frame,bed,HasA: a bed has a frame,1 +headboard,bed,HasA: a bed has a headboard,1 +bedroom_furniture,bed,PartOf: a bed is part of bedroom furniture,1 +furniture_set,bed,PartOf: a bed is part of a furniture set,1 +bedroom,bed,PartOf: a bed is part of a bedroom,1 +lodging,bed,PartOf: a bed is part of lodging,1 +hotel_room_furniture,bed,PartOf: a bed is part of hotel room furniture,1 +support_weight,bed,CapableOf: a bed is capable of supporting weight,1 +accommodate_person,bed,CapableOf: a bed is capable of accommodating a person,1 +hold_person,bed,CapableOf: a bed is capable of holding a person,1 +rest_body,bed,CapableOf: a bed is capable of resting a body,1 +provide_sleep,bed,CapableOf: a bed is capable of providing sleep,1 +metal,bed,MadeOf: a bed is made of metal,1 +fabric,bed,MadeOf: a bed is made of fabric,1 +plywood,bed,MadeOf: a bed is made of plywood,1 +purchase_bed,bed,HasPrerequisite: you need to purchase a bed before you can use it,1 +assemble_bed,bed,HasPrerequisite: you need to assemble a bed before you can use it,1 +clean_bed,bed,HasPrerequisite: you need to clean a bed before you can sleep on it,1 +buy_bedding,bed,HasPrerequisite: you need to buy bedding before you can use a bed,1 +find_room,bed,HasPrerequisite: you need to find a room before you can put a bed in it,1 +relaxation,bed,Causes: a bed causes relaxation,1 +dream,bed,Causes: a bed causes dreams,1 +sleepiness,bed,Causes: a bed causes sleepiness,1 +comfort,bed,Causes: a bed causes comfort,1 +rest,bed,Causes: a bed causes rest,1 +soft,bed,HasProperty: a bed is soft,1 +comfortable,bed,HasProperty: a bed is comfortable,1 +wide,bed,HasProperty: a bed is wide,1 +high,bed,HasProperty: a bed is high,1 +long,bed,HasProperty: a bed is long,1 +kitchen,beef,AtLocation: you find beef in a kitchen,1 +refrigerator,beef,AtLocation: you store beef in a refrigerator,1 +freezer,beef,AtLocation: you can find frozen beef in a freezer,1 +butcher_shop,beef,AtLocation: you buy beef at a butcher shop,1 +restaurant,beef,AtLocation: beef is served at a restaurant,1 +cooking,beef,UsedFor: beef is used for cooking,1 +eating,beef,UsedFor: beef is used for eating,1 +grilling,beef,UsedFor: beef is used for grilling,1 +stewing,beef,UsedFor: beef is used for stewing,1 +seasoning,beef,UsedFor: beef is used for adding flavor to dishes,1 +muscle,beef,HasA: beef has muscle tissue,1 +fat,beef,HasA: beef has fat,1 +protein,beef,HasA: beef has protein,1 +nutrients,beef,HasA: beef has nutrients,1 +dish,beef,PartOf: beef is part of a dish,1 +meal,beef,PartOf: beef is part of a meal,1 +stew,beef,PartOf: beef is part of a stew,1 +satisfying,beef,CapableOf: beef can satisfy hunger,1 +nourishing,beef,CapableOf: beef can nourish the body,1 +spoiling,beef,CapableOf: beef can spoil if not stored properly,1 +aging,beef,CapableOf: beef can be aged to improve flavor,1 +tenderizing,beef,CapableOf: beef can be tenderized through cooking,1 +cow,beef,MadeOf: beef is made of cow,1 +meat,beef,MadeOf: beef is made of meat,1 +animal,beef,MadeOf: beef is made of animal tissue,1 +protein,beef,MadeOf: beef is made of protein,1 +fiber,beef,MadeOf: beef is made of fiber,1 +slaughter,beef,HasPrerequisite: you need slaughter before you can have beef,1 +butchering,beef,HasPrerequisite: you need butchering before you can have beef,1 +refrigeration,beef,HasPrerequisite: you need refrigeration to preserve beef,1 +cooking,beef,HasPrerequisite: you need cooking to prepare beef,1 +packaging,beef,HasPrerequisite: you need packaging to store beef,1 +satiety,beef,Causes: beef causes satiety,1 +fullness,beef,Causes: beef causes fullness,1 +digestion,beef,Causes: beef causes digestion,1 +protein_intake,beef,Causes: beef causes protein intake,1 +cholesterol,beef,Causes: beef can cause cholesterol,1 +red,beef,HasProperty: beef has the property of being red,1 +bloody,beef,HasProperty: beef has the property of being bloody when raw,1 +firm,beef,HasProperty: beef has the property of being firm,1 +fatty,beef,HasProperty: beef has the property of being fatty,1 +savory,beef,HasProperty: beef has the property of being savory,1 +restaurant,beer,AtLocation: you find beer in a restaurant,1 +pub,beer,AtLocation: you find beer in a pub,1 +party,beer,AtLocation: you find beer at a party,1 +kitchen,beer,AtLocation: you find beer in the kitchen,1 +picnic,beer,AtLocation: you find beer at a picnic,1 +socializing,beer,UsedFor: beer is used for socializing,1 +celebration,beer,UsedFor: beer is used for celebration,1 +relaxation,beer,UsedFor: beer is used for relaxation,1 +cooking,beer,UsedFor: beer is used for cooking,1 +carbonation,beer,HasA: beer has carbonation,1 +bubbles,beer,HasA: beer has bubbles,1 +calories,beer,HasA: beer has calories,1 +hops,beer,HasA: beer has hops,1 +meal,beer,PartOf: beer is part of a meal,1 +six_pack,beer,PartOf: beer is part of a six_pack,1 +sixpack,beer,PartOf: beer is part of a sixpack,1 +making_drunk,beer,CapableOf: beer can make you drunk,1 +relaxing,beer,CapableOf: beer can relax you,1 +pairing_with_food,beer,CapableOf: beer can pair with food,1 +barley,beer,MadeOf: beer is made of barley,1 +yeast,beer,MadeOf: beer is made of yeast,1 +malt,beer,MadeOf: beer is made of malt,1 +brewery,beer,HasPrerequisite: you need a brewery to make beer,1 +ingredients,beer,HasPrerequisite: you need ingredients before you can make beer,1 +recipe,beer,HasPrerequisite: you need a recipe before you can make beer,1 +hangover,beer,Causes: beer causes a hangover,1 +conversation,beer,Causes: beer causes conversation,1 +thirst,beer,Causes: beer causes thirst,1 +cold,beer,HasProperty: beer is cold,1 +refreshing,beer,HasProperty: beer is refreshing,1 +alcoholic,beer,HasProperty: beer is alcoholic,1 +carbonated,beer,HasProperty: beer is carbonated,1 +amber,beer,HasProperty: beer is amber,1 +cooking,beet,UsedFor: a beet is used for cooking,1 +making_soup,beet,UsedFor: a beet is used for making soup,1 +coloring_food,beet,UsedFor: a beet is used for coloring food,1 +leaves,beet,HasA: a beet has leaves,1 +crop,beet,PartOf: a beet is part of a crop,1 +growing,beet,CapableOf: a beet can grow,1 +storing,beet,CapableOf: a beet can store nutrients,1 +plant_matter,beet,MadeOf: a beet is made of plant matter,1 +soil,beet,HasPrerequisite: you need soil before you can grow a beet,1 +sweetness,beet,Causes: a beet causes sweetness in food,1 +health,beet,Causes: a beet causes health benefits,1 +round,beet,HasProperty: a beet is round,1 +red,beet,HasProperty: a beet is red,1 +firm,beet,HasProperty: a beet is firm,1 +workshop,bellows,AtLocation: you find bellows in a workshop,1 +blacksmithing,bellows,UsedFor: bellows are used for blacksmithing,1 +stoking_fire,bellows,UsedFor: bellows are used for stoking fire,1 +blowing_air,bellows,UsedFor: bellows are used for blowing air,1 +musical_instruments,bellows,UsedFor: bellows are used for musical instruments,1 +handle,bellows,HasA: bellows have a handle,1 +fireplace,bellows,PartOf: bellows are part of a fireplace,1 +forge,bellows,PartOf: bellows are part of a forge,1 +inflating,bellows,CapableOf: bellows can inflate,1 +expanding,bellows,CapableOf: bellows can expand,1 +contracting,bellows,CapableOf: bellows can contract,1 +metal,bellows,MadeOf: bellows are made of metal,1 +fire,bellows,HasPrerequisite: you need fire before you can use bellows,1 +heat_source,bellows,HasPrerequisite: you need a heat source before you can use bellows,1 +air_flow,bellows,Causes: bellows cause air flow,1 +combustion,bellows,Causes: bellows cause combustion,1 +flame,bellows,Causes: bellows cause flame,1 +portable,bellows,HasProperty: bellows are portable,1 +flexible,bellows,HasProperty: bellows are flexible,1 +durable,bellows,HasProperty: bellows are durable,1 +kitchen,bin,AtLocation: you find a bin in a kitchen,1 +recycling,bin,UsedFor: a bin is used for recycling,1 +storage,bin,UsedFor: a bin is used for storage,1 +waste,bin,UsedFor: a bin is used for waste,1 +compost,bin,UsedFor: a bin is used for compost,1 +lid,bin,HasA: a bin has a lid,1 +contents,bin,HasA: a bin has contents,1 +waste_management_system,bin,PartOf: a bin is part of a waste management system,1 +household_furniture,bin,PartOf: a bin is part of household furniture,1 +holding,bin,CapableOf: a bin can hold,1 +containing,bin,CapableOf: a bin can contain,1 +metal,bin,MadeOf: a bin is made of metal,1 +container,bin,HasPrerequisite: you need a container before you can have a bin,1 +smell,bin,Causes: a bin causes smell,1 +disposal,bin,Causes: a bin causes disposal,1 +square,bin,HasProperty: a bin can be square,1 +round,bin,HasProperty: a bin can be round,1 +sturdy,bin,HasProperty: a bin is sturdy,1 +food,bison,UsedFor: a bison is used for food,1 +hump,bison,HasA: a bison has a hump,1 +herd,bison,PartOf: a bison is part of a herd,1 +run,bison,CapableOf: a bison can run,1 +grassland,bison,HasPrerequisite: you need grassland before you can have a bison,1 +inspiration,bison,Causes: a bison causes inspiration,1 +large,bison,HasProperty: a bison is large,1 +field,blackbird,AtLocation: you find a blackbird in a field,1 +eating_worms,blackbird,UsedFor: a blackbird is used for eating worms,1 +singing,blackbird,UsedFor: a blackbird is used for singing,1 +beak,blackbird,HasA: a blackbird has a beak,1 +feathers,blackbird,HasA: a blackbird has feathers,1 +flock,blackbird,PartOf: a blackbird is part of a flock,1 +bird_kingdom,blackbird,PartOf: a blackbird is part of the bird kingdom,1 +flying,blackbird,CapableOf: a blackbird can fly,1 +singing,blackbird,CapableOf: a blackbird can sing,1 +eating,blackbird,CapableOf: a blackbird can eat,1 +eggs,blackbird,HasPrerequisite: you need eggs before you can have a blackbird,1 +music,blackbird,Causes: a blackbird causes music,1 +food,blackbird,Causes: a blackbird causes food,1 +black,blackbird,HasProperty: a blackbird is black,1 +small,blackbird,HasProperty: a blackbird is small,1 +pelvis,bladder,AtLocation: you find the bladder in the pelvis,1 +storage,bladder,UsedFor: a bladder is used for storage of waste,1 +tissue,bladder,HasA: a bladder has tissue,1 +anatomy,bladder,PartOf: a bladder is part of anatomy,1 +expand,bladder,CapableOf: a bladder can expand,1 +muscle,bladder,MadeOf: a bladder is made of muscle,1 +kidney,bladder,HasPrerequisite: you need kidneys before you can have a bladder,1 +pressure,bladder,Causes: a full bladder causes pressure,1 +soft,bladder,HasProperty: a bladder is soft,1 +workshop,blade,AtLocation: you find a blade in a workshop,1 +slicing,blade,UsedFor: a blade is used for slicing,1 +carving,blade,UsedFor: a blade is used for carving,1 +shaving,blade,UsedFor: a blade is used for shaving,1 +scraping,blade,UsedFor: a blade is used for scraping,1 +edge,blade,HasA: a blade has an edge,1 +slice,blade,CapableOf: a blade can slice,1 +pierce,blade,CapableOf: a blade can pierce,1 +cut,blade,CapableOf: a blade can cut,1 +sharpen,blade,HasPrerequisite: you need to sharpen a blade before using it,1 +cut,blade,Causes: a blade causes a cut,1 +wound,blade,Causes: a blade causes a wound,1 +pain,blade,Causes: a blade causes pain,1 +sharp,blade,HasProperty: a blade is sharp,1 +thin,blade,HasProperty: a blade is thin,1 +metallic,blade,HasProperty: a blade is metallic,1 +hard,blade,HasProperty: a blade is hard,1 +aquarium,blowfish,AtLocation: you can see a blowfish in an aquarium,1 +deep_water,blowfish,AtLocation: a blowfish lives in deep water,1 +food,blowfish,UsedFor: blowfish is used as food,1 +sashimi,blowfish,UsedFor: blowfish is used for sashimi,1 +spine,blowfish,HasA: a blowfish has a spine,1 +poison,blowfish,HasA: a blowfish has poison,1 +seafood,blowfish,PartOf: a blowfish is part of seafood,1 +inflate,blowfish,CapableOf: a blowfish can inflate,1 +swim,blowfish,CapableOf: a blowfish can swim,1 +flesh,blowfish,MadeOf: a blowfish is made of flesh,1 +bone,blowfish,MadeOf: a blowfish is made of bone,1 +skill,blowfish,HasPrerequisite: you need skill to prepare blowfish,1 +license,blowfish,HasPrerequisite: you need a license to serve blowfish,1 +sickness,blowfish,Causes: eating blowfish can cause sickness,1 +death,blowfish,Causes: eating blowfish can cause death,1 +spiky,blowfish,HasProperty: a blowfish is spiky,1 +round,blowfish,HasProperty: a blowfish is round,1 +port,boat,AtLocation: you find a boat in a port,1 +canal,boat,AtLocation: you find a boat in a canal,1 +sea,boat,AtLocation: you find a boat in the sea,1 +transportation,boat,UsedFor: a boat is used for transportation,1 +rescue,boat,UsedFor: a boat is used for rescue operations,1 +exploration,boat,UsedFor: a boat is used for exploration,1 +pleasure,boat,UsedFor: a boat is used for pleasure,1 +oars,boat,HasA: a boat has oars,1 +deck,boat,HasA: a boat has a deck,1 +hull,boat,HasA: a boat has a hull,1 +cabin,boat,HasA: a boat has a cabin,1 +fleet,boat,PartOf: a boat is part of a fleet,1 +marina,boat,PartOf: a boat is part of a marina,1 +nautical_world,boat,PartOf: a boat is part of the nautical world,1 +transport_system,boat,PartOf: a boat is part of the transport system,1 +waterfront_scene,boat,PartOf: a boat is part of a waterfront scene,1 +pull_anchor,boat,CapableOf: a boat can pull anchor,1 +transport_people,boat,CapableOf: a boat can transport people,1 +navigate,boat,CapableOf: a boat can navigate,1 +carry_fish,boat,CapableOf: a boat can carry fish,1 +dock,boat,CapableOf: a boat can dock,1 +fiberglass,boat,MadeOf: a boat is made of fiberglass,1 +boat_ownership,boat,HasPrerequisite: you need boat ownership before you can use a boat,1 +license,boat,HasPrerequisite: you need a license before you can operate a boat,1 +dock,boat,HasPrerequisite: you need a dock before you can store a boat,1 +trailer,boat,HasPrerequisite: you need a trailer before you can transport a boat,1 +waves,boat,Causes: a boat causes waves,1 +splashing,boat,Causes: a boat causes splashing,1 +fishing_catch,boat,Causes: a boat causes a fishing catch,1 +travel,boat,Causes: a boat causes travel,1 +adventure,boat,Causes: a boat causes adventure,1 +floating,boat,HasProperty: a boat is floating,1 +buoyant,boat,HasProperty: a boat is buoyant,1 +watertight,boat,HasProperty: a boat is watertight,1 +maneuverable,boat,HasProperty: a boat is maneuverable,1 +seaworthy,boat,HasProperty: a boat is seaworthy,1 +forest,bobwhite,AtLocation: a bobwhite is found in a forest,1 +eating,bobwhite,UsedFor: a bobwhite is used for eating,1 +feathers,bobwhite,HasA: a bobwhite has feathers,1 +game_birds,bobwhite,PartOf: a bobwhite is part of game birds,1 +forest,bobwhite,HasPrerequisite: you need a forest to have a bobwhite,1 +noise,bobwhite,Causes: a bobwhite causes noise,1 +brown,bobwhite,HasProperty: a bobwhite is brown,1 +military_base,bomb,AtLocation: bombs are stored in military bases,1 +munitions_factory,bomb,AtLocation: bombs are manufactured in munitions factories,1 +battlefield,bomb,AtLocation: bombs are deployed on battlefields,1 +bunker,bomb,AtLocation: bombs can be kept in bunkers,1 +military_offensive,bomb,UsedFor: bombs are used in military offensives,1 +demolition,bomb,UsedFor: bombs are used for controlled demolition,1 +warfare,bomb,UsedFor: bombs are used in warfare,1 +security_testing,bomb,UsedFor: bombs are used in security testing scenarios,1 +training,bomb,UsedFor: bombs are used in military training exercises,1 +fuse,bomb,HasA: a bomb has a fuse,1 +detonator,bomb,HasA: a bomb has a detonator,1 +casing,bomb,HasA: a bomb has a casing,1 +timer,bomb,HasA: some bombs have a timer,1 +guidance_system,bomb,HasA: guided bombs have a guidance system,1 +arsenal,bomb,PartOf: a bomb is part of an arsenal,1 +ordnance,bomb,PartOf: a bomb is part of ordnance,1 +weaponry,bomb,PartOf: a bomb is part of a nation's weaponry,1 +attack_package,bomb,PartOf: a bomb is part of an attack package,1 +weapon_stockpile,bomb,PartOf: a bomb is part of a weapon stockpile,1 +cause_explosion,bomb,CapableOf: a bomb can cause an explosion,1 +damage_infrastructure,bomb,CapableOf: a bomb can damage infrastructure,1 +cause_casualties,bomb,CapableOf: a bomb can cause casualties,1 +start_fire,bomb,CapableOf: a bomb can start a fire,1 +make_noise,bomb,CapableOf: a bomb can make a loud noise,1 +metal,bomb,MadeOf: bombs are made of metal,1 +wires,bomb,MadeOf: bombs are made with wires,1 +detonating_chemicals,bomb,MadeOf: bombs contain detonating chemicals,1 +pressure_plate,bomb,MadeOf: some bombs are made with pressure plates,1 +manufacturing_process,bomb,HasPrerequisite: bombs require a manufacturing process,1 +military_order,bomb,HasPrerequisite: bombs require a military order to be used,1 +safety_protocol,bomb,HasPrerequisite: bombs require safety protocol to handle,1 +materials,bomb,HasPrerequisite: bombs require specific materials to be made,1 +expertise,bomb,HasPrerequisite: bombs require expertise to assemble,1 +explosion,bomb,Causes: bombs cause explosions,1 +destruction,bomb,Causes: bombs cause destruction,1 +death,bomb,Causes: bombs cause death,1 +panic,bomb,Causes: bombs cause panic,1 +injury,bomb,Causes: bombs cause injury,1 +explosive_(weight_4.0),bomb,HasProperty: bombs are explosive,1 +heavy_(weight_3.0),bomb,HasProperty: bombs are heavy,1 +dangerous_(weight_5.0),bomb,HasProperty: bombs are dangerous,1 +cylindrical_(weight_2.0),bomb,HasProperty: many bombs are cylindrical,1 +metallic_(weight_2.0),bomb,HasProperty: bombs have a metallic appearance,1 +music_store,bongo,AtLocation: you find a bongo in a music store,1 +playing_music,bongo,UsedFor: a bongo is used for playing music,1 +percussion,bongo,UsedFor: a bongo is used for percussion,1 +drumhead,bongo,HasA: a bongo has a drumhead,1 +percussion_section,bongo,PartOf: a bongo is part of the percussion section,1 +producing_sound,bongo,CapableOf: a bongo can produce sound,1 +making_rhythm,bongo,CapableOf: a bongo can make rhythm,1 +metal,bongo,MadeOf: a bongo is made of metal,1 +animal_skin,bongo,MadeOf: a bongo is made of animal skin,1 +hands,bongo,HasPrerequisite: you need hands to play a bongo,1 +music_skill,bongo,HasPrerequisite: you need music skill to play a bongo,1 +sound,bongo,Causes: a bongo causes sound,1 +rhythm,bongo,Causes: a bongo causes rhythm,1 +small,bongo,HasProperty: a bongo is small,1 +portable,bongo,HasProperty: a bongo is portable,1 +cylindrical,bongo,HasProperty: a bongo is cylindrical,1 +pantry,bottle,AtLocation: you find a bottle in a pantry,1 +bar,bottle,AtLocation: you find a bottle in a bar,1 +kitchen,bottle,AtLocation: you find a bottle in a kitchen,1 +backpack,bottle,AtLocation: you find a bottle in a backpack,1 +carrying_liquid,bottle,UsedFor: a bottle is used for carrying liquid,1 +storing_medicine,bottle,UsedFor: a bottle is used for storing medicine,1 +storing_sauce,bottle,UsedFor: a bottle is used for storing sauce,1 +storing_oil,bottle,UsedFor: a bottle is used for storing oil,1 +cap,bottle,HasA: a bottle has a cap,1 +label,bottle,HasA: a bottle has a label,1 +contents,bottle,HasA: a bottle has contents,1 +opening,bottle,HasA: a bottle has an opening,1 +bottle_of_soda,bottle,PartOf: a bottle is part of a bottle of soda,1 +bottle_of_medicine,bottle,PartOf: a bottle is part of a bottle of medicine,1 +bottle_of_sauce,bottle,PartOf: a bottle is part of a bottle of sauce,1 +bottle_of_oil,bottle,PartOf: a bottle is part of a bottle of oil,1 +hold_liquid,bottle,CapableOf: a bottle can hold liquid,1 +hold_sauce,bottle,CapableOf: a bottle can hold sauce,1 +hold_medicine,bottle,CapableOf: a bottle can hold medicine,1 +hold_oil,bottle,CapableOf: a bottle can hold oil,1 +metal,bottle,MadeOf: a bottle is made of metal,1 +ceramic,bottle,MadeOf: a bottle is made of ceramic,1 +material,bottle,HasPrerequisite: you need material before you can make a bottle,1 +glass_blower,bottle,HasPrerequisite: you need a glass blower before you can make a bottle,1 +plastic_sheet,bottle,HasPrerequisite: you need a plastic sheet before you can make a bottle,1 +hydration,bottle,Causes: a bottle causes hydration,1 +satisfaction,bottle,Causes: a bottle causes satisfaction,1 +relief,bottle,Causes: a bottle causes relief,1 +contentment,bottle,Causes: a bottle causes contentment,1 +cylindrical,bottle,HasProperty: a bottle is cylindrical,1 +portable,bottle,HasProperty: a bottle is portable,1 +sealed,bottle,HasProperty: a bottle is sealed,1 +transparent,bottle,HasProperty: a bottle is transparent,1 +rigid,bottle,HasProperty: a bottle is rigid,1 +forest,bowerbird,AtLocation: you find a bowerbird in a forest,1 +mating_displays,bowerbird,UsedFor: a bowerbird is used for mating displays,1 +bird_family,bowerbird,PartOf: a bowerbird is part of bird family,1 +build,bowerbird,CapableOf: a bowerbird can build,1 +feathers,bowerbird,MadeOf: a bowerbird is made of feathers,1 +mate,bowerbird,HasPrerequisite: you need a mate before you can have a bowerbird,1 +wonder,bowerbird,Causes: a bowerbird causes wonder,1 +colorful,bowerbird,HasProperty: a bowerbird is colorful,1 +attic,box,AtLocation: you find a box in an attic,1 +shop,box,AtLocation: you find a box in a shop,1 +moving,box,UsedFor: a box is used for moving,1 +shipping,box,UsedFor: a box is used for shipping,1 +organizing,box,UsedFor: a box is used for organizing,1 +lid,box,HasA: a box has a lid,1 +bottom,box,HasA: a box has a bottom,1 +handle,box,HasA: a box has a handle,1 +package,box,PartOf: a box is part of a package,1 +protect_items,box,CapableOf: a box can protect items,1 +ship_items,box,CapableOf: a box can ship items,1 +store_books,box,CapableOf: a box can store books,1 +store_toys,box,CapableOf: a box can store toys,1 +cardboard,box,MadeOf: a box is made of cardboard,1 +metal,box,MadeOf: a box is made of metal,1 +empty_space,box,HasPrerequisite: you need empty space before you can use a box,1 +organization,box,Causes: a box causes organization,1 +protection,box,Causes: a box causes protection,1 +sturdy,box,HasProperty: a box is sturdy,1 +square,box,HasProperty: a box is square,1 +landscaping,boxwood,UsedFor: boxwood is used for landscaping,1 +leaves,boxwood,HasA: boxwood has leaves,1 +hedge,boxwood,PartOf: boxwood is part of a hedge,1 +growing,boxwood,CapableOf: boxwood can grow,1 +soil,boxwood,HasPrerequisite: boxwood requires soil to grow,1 +shade,boxwood,Causes: boxwood causes shade,1 +statue,bronze,AtLocation: bronze is found in statues,1 +art,bronze,UsedFor: bronze is used for art,1 +sculpture,bronze,UsedFor: bronze is used for sculpture,1 +medals,bronze,UsedFor: bronze is used for medals,1 +shine,bronze,HasA: bronze has a shine,1 +color,bronze,HasA: bronze has a color,1 +alloy,bronze,PartOf: bronze is part of an alloy,1 +metalwork,bronze,PartOf: bronze is part of metalwork,1 +conducting,bronze,CapableOf: bronze can conduct electricity,1 +melting,bronze,CapableOf: bronze can melt,1 +smelting,bronze,HasPrerequisite: you need smelting before you can make bronze,1 +oxidation,bronze,Causes: bronze causes oxidation,1 +patina,bronze,Causes: bronze causes patina,1 +durable,bronze,HasProperty: bronze is durable,1 +heavy,bronze,HasProperty: bronze is heavy,1 +shiny,bronze,HasProperty: bronze is shiny,1 +basement,broom,AtLocation: you might store a broom in a basement,1 +cleaning,broom,UsedFor: a broom is used for cleaning,1 +dusting,broom,UsedFor: a broom can be used for dusting,1 +bristles,broom,HasA: a broom has bristles,1 +handle,broom,HasA: a broom has a handle,1 +cleaning_kit,broom,PartOf: a broom is part of a cleaning kit,1 +sweeping_dust,broom,CapableOf: a broom can sweep dust,1 +moving_debris,broom,CapableOf: a broom can move debris,1 +metal,broom,MadeOf: a broom's handle might be made of metal,1 +floor,broom,HasPrerequisite: you need a floor before you can use a broom,1 +clean_floor,broom,Causes: a broom causes a clean floor,1 +dust_cloud,broom,Causes: a broom can cause a dust cloud,1 +neatness,broom,Causes: using a broom causes neatness,1 +long,broom,HasProperty: a broom has a long handle,1 +sturdy,broom,HasProperty: a broom is sturdy,1 +sink,bucket,AtLocation: you find a bucket under a sink,1 +basement,bucket,AtLocation: you find a bucket in a basement,1 +bathroom,bucket,AtLocation: you find a bucket in a bathroom,1 +kitchen,bucket,AtLocation: you find a bucket in a kitchen,1 +holding_paint,bucket,UsedFor: a bucket is used for holding paint,1 +collecting_leaves,bucket,UsedFor: a bucket is used for collecting leaves,1 +cleaning,bucket,UsedFor: a bucket is used for cleaning,1 +washing_floor,bucket,UsedFor: a bucket is used for washing floor,1 +mixing_concrete,bucket,UsedFor: a bucket is used for mixing concrete,1 +bottom,bucket,HasA: a bucket has a bottom,1 +rim,bucket,HasA: a bucket has a rim,1 +opening,bucket,HasA: a bucket has an opening,1 +tool_set,bucket,PartOf: a bucket is part of a tool set,1 +cleaning_supplies,bucket,PartOf: a bucket is part of cleaning supplies,1 +collecting_rainwater,bucket,CapableOf: a bucket can collect rainwater,1 +holding_food,bucket,CapableOf: a bucket can hold food,1 +storing,bucket,CapableOf: a bucket can store items,1 +pouring,bucket,CapableOf: a bucket can pour liquids,1 +catching,bucket,CapableOf: a bucket can catch spills,1 +metal,bucket,MadeOf: a bucket is made of metal,1 +rubber,bucket,MadeOf: a bucket is made of rubber,1 +handle,bucket,HasPrerequisite: you need a handle before you can use a bucket,1 +container,bucket,HasPrerequisite: you need a container before you can have a bucket,1 +spill,bucket,Causes: a bucket causes a spill,1 +cleanup,bucket,Causes: a bucket causes cleanup,1 +overflow,bucket,Causes: a bucket can cause overflow,1 +water_distribution,bucket,Causes: a bucket causes water distribution,1 +cylindrical,bucket,HasProperty: a bucket is cylindrical,1 +waterproof,bucket,HasProperty: a bucket is waterproof,1 +portable,bucket,HasProperty: a bucket is portable,1 +durable,bucket,HasProperty: a bucket is durable,1 +open_top,bucket,HasProperty: a bucket has an open top,1 +singing,bulbul,UsedFor: a bulbul is used for singing,1 +feathers,bulbul,HasA: a bulbul has feathers,1 +flock,bulbul,PartOf: a bulbul is part of a flock,1 +bone,bulbul,MadeOf: a bulbul is made of bone,1 +music,bulbul,Causes: a bulbul causes music,1 +small,bulbul,HasProperty: a bulbul is small,1 +farm,bull,AtLocation: you find a bull on a farm,1 +field,bull,AtLocation: you find a bull in a field,1 +pulling_carts,bull,UsedFor: a bull is used for pulling carts,1 +plowing_fields,bull,UsedFor: a bull is used for plowing fields,1 +horns,bull,HasA: a bull has horns,1 +tail,bull,HasA: a bull has a tail,1 +herd,bull,PartOf: a bull is part of a herd,1 +pulling,bull,CapableOf: a bull can pull,1 +mating,bull,CapableOf: a bull can mate,1 +fur,bull,MadeOf: a bull is made of fur,1 +bull_calving,bull,HasPrerequisite: you need a bull before you can have offspring,1 +bull_feeding,bull,HasPrerequisite: you need to feed a bull before it can work,1 +fear,bull,Causes: a bull causes fear,1 +damage,bull,Causes: a bull can cause damage,1 +muscular,bull,HasProperty: a bull is muscular,1 +field,bunting,AtLocation: you find bunting in a field,1 +forest,bunting,AtLocation: you find bunting in a forest,1 +singing,bunting,UsedFor: a bunting is used for singing,1 +nesting,bunting,UsedFor: a bunting is used for nesting,1 +feathers,bunting,HasA: a bunting has feathers,1 +beak,bunting,HasA: a bunting has a beak,1 +wings,bunting,HasA: a bunting has wings,1 +avian,bunting,PartOf: a bunting is part of the avian class,1 +ecosystem,bunting,PartOf: a bunting is part of the ecosystem,1 +build,bunting,CapableOf: a bunting can build,1 +eat,bunting,CapableOf: a bunting can eat,1 +food,bunting,HasPrerequisite: you need food before you can have a bunting,1 +seeds,bunting,Causes: bunting causes seeds,1 +insects,bunting,Causes: bunting causes insects,1 +small,bunting,HasProperty: a bunting is small,1 +colorful,bunting,HasProperty: a bunting is colorful,1 +restaurant,burger,AtLocation: you find a burger in a restaurant,1 +eating,burger,UsedFor: a burger is used for eating,1 +patty,burger,HasA: a burger has a patty,1 +meal,burger,PartOf: a burger is part of a meal,1 +satisfying,burger,CapableOf: a burger can satisfy hunger,1 +meat,burger,MadeOf: a burger is made of meat,1 +ingredients,burger,HasPrerequisite: you need ingredients before you can make a burger,1 +satisfaction,burger,Causes: a burger causes satisfaction,1 +savory,burger,HasProperty: a burger has a savory property,1 +garden_center,burlap,AtLocation: you find burlap at a garden center,1 +grocery_store,burlap,AtLocation: you find burlap at a grocery store,1 +craft_store,burlap,AtLocation: you find burlap at a craft store,1 +protect_plants,burlap,UsedFor: burlap is used to protect plants,1 +wrap_gifts,burlap,UsedFor: burlap is used to wrap gifts,1 +filter_liquid,burlap,UsedFor: burlap is used to filter liquid,1 +texture,burlap,HasA: burlap has a texture,1 +weave,burlap,HasA: burlap has a weave,1 +rug,burlap,PartOf: burlap is part of a rug,1 +upholstery,burlap,PartOf: burlap is part of upholstery,1 +filtering,burlap,CapableOf: burlap can filter,1 +insulating,burlap,CapableOf: burlap can insulate,1 +fibers,burlap,MadeOf: burlap is made of fibers,1 +hemp,burlap,MadeOf: burlap is made of hemp,1 +thread,burlap,HasPrerequisite: you need thread before you can use burlap,1 +scissors,burlap,HasPrerequisite: you need scissors before you can use burlap,1 +durability,burlap,Causes: burlap causes durability,1 +roughness,burlap,Causes: burlap causes roughness,1 +rough,burlap,HasProperty: burlap is rough,1 +sturdy,burlap,HasProperty: burlap is sturdy,1 +natural,burlap,HasProperty: burlap is natural,1 +field,burrow,AtLocation: a burrow is found in a field,1 +sleeping,burrow,UsedFor: a burrow is used for sleeping,1 +ground,burrow,PartOf: a burrow is part of the ground,1 +protecting,burrow,CapableOf: a burrow can protect animals,1 +soil,burrow,MadeOf: a burrow is made of soil,1 +digging,burrow,HasPrerequisite: you need to dig to create a burrow,1 +safety,burrow,Causes: a burrow causes safety,1 +dark,burrow,HasProperty: a burrow is dark,1 +kitchen,butter,AtLocation: you find butter in a kitchen,1 +cooking,butter,UsedFor: butter is used for cooking,1 +baking,butter,UsedFor: butter is used for baking,1 +greasing,butter,UsedFor: butter is used for greasing pans,1 +fat,butter,HasA: butter has fat,1 +sauce,butter,PartOf: butter is part of a sauce,1 +sandwich,butter,PartOf: butter is part of a sandwich,1 +melting,butter,CapableOf: butter can melt,1 +cooking_with,butter,CapableOf: butter can be used for cooking,1 +cream,butter,MadeOf: butter is made of cream,1 +cow,butter,HasPrerequisite: you need a cow to get butter,1 +richness,butter,Causes: butter causes richness in food,1 +flakiness,butter,Causes: butter causes flakiness in pastries,1 +creamy,butter,HasProperty: butter is creamy,1 +solid,butter,HasProperty: butter is solid at room temperature,1 +oily,butter,HasProperty: butter is oily when melted,1 +flower,butterfly,AtLocation: butterflies are often seen on flowers,1 +pollination,butterfly,UsedFor: a butterfly is used for pollination,1 +observation,butterfly,UsedFor: butterflies are used for observation,1 +antennae,butterfly,HasA: a butterfly has antennae,1 +body,butterfly,HasA: a butterfly has a body,1 +ecosystem,butterfly,PartOf: a butterfly is part of an ecosystem,1 +nature,butterfly,PartOf: a butterfly is part of nature,1 +pollinate,butterfly,CapableOf: a butterfly can pollinate flowers,1 +flutter,butterfly,CapableOf: a butterfly can flutter,1 +metamorphose,butterfly,CapableOf: a butterfly can metamorphose,1 +sip_nectar,butterfly,CapableOf: a butterfly can sip nectar,1 +chitin,butterfly,MadeOf: a butterfly is made of chitin,1 +scales,butterfly,MadeOf: a butterfly is made of scales,1 +caterpillar,butterfly,HasPrerequisite: you need a caterpillar before you can have a butterfly,1 +pupa,butterfly,HasPrerequisite: you need a pupa before you can have a butterfly,1 +pollination,butterfly,Causes: a butterfly causes pollination,1 +transformation,butterfly,Causes: a butterfly causes transformation,1 +colorful,butterfly,HasProperty: a butterfly is colorful,1 +delicate,butterfly,HasProperty: a butterfly is delicate,1 +graceful,butterfly,HasProperty: a butterfly is graceful,1 +small,butterfly,HasProperty: a butterfly is small,1 +scavenging,buzzard,UsedFor: a buzzard is used for scavenging,1 +wings,buzzard,HasA: a buzzard has wings,1 +ecosystem,buzzard,PartOf: a buzzard is part of an ecosystem,1 +soaring,buzzard,CapableOf: a buzzard can soar,1 +dead_animals,buzzard,HasPrerequisite: buzzards need dead animals,1 +decomposition,buzzard,Causes: a buzzard causes decomposition,1 +large,buzzard,HasProperty: a buzzard is large,1 +making_coleslaw,cabbage,UsedFor: cabbage is used for making coleslaw,1 +stir-frying,cabbage,UsedFor: cabbage is used for stir-frying,1 +making_sauerkraut,cabbage,UsedFor: cabbage is used for making sauerkraut,1 +boiling,cabbage,UsedFor: cabbage is used for boiling,1 +leaf,cabbage,HasA: cabbage has a leaf,1 +meal,cabbage,PartOf: cabbage is part of a meal,1 +providing_nutrition,cabbage,CapableOf: cabbage can provide nutrition,1 +reducing_inflammation,cabbage,CapableOf: cabbage can reduce inflammation,1 +plant_material,cabbage,MadeOf: cabbage is made of plant material,1 +sunlight,cabbage,HasPrerequisite: sunlight is a prerequisite for cabbage,1 +soil,cabbage,HasPrerequisite: soil is a prerequisite for cabbage,1 +filling_sensation,cabbage,Causes: cabbage causes a filling sensation,1 +digestion,cabbage,Causes: cabbage causes digestion,1 +green,cabbage,HasProperty: cabbage is green,1 +round,cabbage,HasProperty: cabbage is round,1 +crisp,cabbage,HasProperty: cabbage is crisp,1 +leafy,cabbage,HasProperty: cabbage is leafy,1 +kitchen,cabinet,AtLocation: you find a cabinet in a kitchen,1 +bathroom,cabinet,AtLocation: you find a cabinet in a bathroom,1 +hallway,cabinet,AtLocation: you find a cabinet in a hallway,1 +storage,cabinet,UsedFor: a cabinet is used for storage,1 +organization,cabinet,UsedFor: a cabinet is used for organization,1 +displaying_dishes,cabinet,UsedFor: a cabinet is used for displaying dishes,1 +shelf,cabinet,HasA: a cabinet has a shelf,1 +door,cabinet,HasA: a cabinet has a door,1 +handle,cabinet,HasA: a cabinet has a handle,1 +house,cabinet,PartOf: a cabinet is part of a house,1 +room,cabinet,PartOf: a cabinet is part of a room,1 +holding,cabinet,CapableOf: a cabinet is capable of holding,1 +supporting,cabinet,CapableOf: a cabinet is capable of supporting,1 +metal,cabinet,MadeOf: a cabinet is made of metal,1 +particleboard,cabinet,MadeOf: a cabinet is made of particleboard,1 +wall,cabinet,HasPrerequisite: you need a wall before you can have a cabinet,1 +nails,cabinet,HasPrerequisite: you need nails before you can install a cabinet,1 +tidiness,cabinet,Causes: a cabinet causes tidiness,1 +order,cabinet,Causes: a cabinet causes order,1 +sturdy,cabinet,HasProperty: a cabinet is sturdy,1 +enclosed,cabinet,HasProperty: a cabinet is enclosed,1 +raised,cabinet,HasProperty: a cabinet is raised,1 +golf_course,caddy,AtLocation: you find a caddy at a golf course,1 +holding_tees,caddy,UsedFor: a caddy is used for holding tees,1 +carrying_golf_balls,caddy,UsedFor: a caddy is used for carrying golf balls,1 +handle,caddy,HasA: a caddy has a handle,1 +compartment,caddy,HasA: a caddy has a compartment,1 +golf_bag,caddy,PartOf: a caddy is part of a golf bag,1 +holding,caddy,CapableOf: a caddy can hold,1 +containing,caddy,CapableOf: a caddy can contain,1 +golf_clubs,caddy,HasPrerequisite: you need golf clubs before you can use a caddy,1 +organization,caddy,Causes: a caddy causes organization,1 +small,caddy,HasProperty: a caddy is small,1 +portable,caddy,HasProperty: a caddy is portable,1 +workshop,caliper,AtLocation: you find a caliper in a workshop,1 +measuring_thickness,caliper,UsedFor: a caliper is used for measuring thickness,1 +calibrating_instruments,caliper,UsedFor: a caliper is used for calibrating instruments,1 +jaws,caliper,HasA: a caliper has jaws,1 +tool_set,caliper,PartOf: a caliper is part of a tool_set,1 +determine_diameter,caliper,CapableOf: a caliper can determine_diameter,1 +metal,caliper,MadeOf: a caliper is made of metal,1 +need_to_measure,caliper,HasPrerequisite: you need to measure something before you use a caliper,1 +precise_measurement,caliper,Causes: a caliper causes precise_measurement,1 +accurate,caliper,HasProperty: a caliper is accurate,1 +metallic,caliper,HasProperty: a caliper is metallic,1 +cage,canary,AtLocation: you find a canary in a cage,1 +singing,canary,UsedFor: a canary is used for singing,1 +feathers,canary,HasA: a canary has feathers,1 +flock,canary,PartOf: a canary is part of a flock,1 +sing,canary,CapableOf: a canary can sing,1 +happiness,canary,Causes: a canary causes happiness,1 +yellow,canary,HasProperty: a canary is yellow,1 +fireplace,candle,AtLocation: you find a candle near a fireplace,1 +mantle,candle,AtLocation: you find a candle on a mantle,1 +hallway,candle,AtLocation: you find a candle in a hallway,1 +romantic_atmosphere,candle,UsedFor: a candle is used for creating a romantic atmosphere,1 +emergency_light,candle,UsedFor: a candle is used for emergency light,1 +religious_observance,candle,UsedFor: a candle is used for religious observance,1 +mood_setting,candle,UsedFor: a candle is used for setting a mood,1 +aromatherapy,candle,UsedFor: a candle is used for aromatherapy,1 +flame,candle,HasA: a candle has a flame,1 +container,candle,HasA: a candle has a container,1 +scent,candle,HasA: a candle has a scent,1 +label,candle,HasA: a candle has a label,1 +centerpiece,candle,PartOf: a candle is part of a centerpiece,1 +emergency_kit,candle,PartOf: a candle is part of an emergency kit,1 +dinner_setting,candle,PartOf: a candle is part of a dinner setting,1 +beeswax,candle,MadeOf: a candle is made of beeswax,1 +paraffin,candle,MadeOf: a candle is made of paraffin,1 +soy,candle,MadeOf: a candle is made of soy,1 +tallow,candle,MadeOf: a candle is made of tallow,1 +gel,candle,MadeOf: a candle is made of gel,1 +match,candle,HasPrerequisite: you need a match before you can use a candle,1 +purchase,candle,HasPrerequisite: you need to purchase a candle before you can use it,1 +fire_source,candle,HasPrerequisite: you need a fire source before you can use a candle,1 +fire,candle,Causes: a candle causes fire,1 +smoke,candle,Causes: a candle causes smoke,1 +heat,candle,Causes: a candle causes heat,1 +wax_melting,candle,Causes: a candle causes wax melting,1 +illumination,candle,Causes: a candle causes illumination,1 +solid,candle,HasProperty: a candle is solid,1 +fragrant,candle,HasProperty: a candle is fragrant,1 +tall,candle,HasProperty: a candle is tall,1 +cylindrical,candle,HasProperty: a candle is cylindrical,1 +waxen,candle,HasProperty: a candle is waxen,1 +birthday_party,candy,AtLocation: you find candy at a birthday party,1 +vending_machine,candy,AtLocation: you find candy in a vending machine,1 +candy_store,candy,AtLocation: you find candy in a candy store,1 +rewarding,candy,UsedFor: candy is used for rewarding good behavior,1 +decorating,candy,UsedFor: candy is used for decorating desserts,1 +baking,candy,UsedFor: candy is used for baking,1 +celebrating,candy,UsedFor: candy is used for celebrating holidays,1 +sweetness,candy,HasA: candy has sweetness,1 +calories,candy,HasA: candy has calories,1 +flavor,candy,HasA: candy has flavor,1 +coating,candy,HasA: candy has a coating,1 +gift_basket,candy,PartOf: candy is part of a gift basket,1 +snack_tray,candy,PartOf: candy is part of a snack tray,1 +melt,candy,CapableOf: candy can melt,1 +dissolve,candy,CapableOf: candy can dissolve,1 +break,candy,CapableOf: candy can break,1 +dissolve_in_mouth,candy,CapableOf: candy can dissolve in mouth,1 +sugar,candy,MadeOf: candy is made of sugar,1 +corn_syrup,candy,MadeOf: candy is made of corn syrup,1 +ingredients,candy,HasPrerequisite: you need ingredients before you can make candy,1 +recipe,candy,HasPrerequisite: you need a recipe before you can make candy,1 +tooth_decay,candy,Causes: candy causes tooth decay,1 +energy_burst,candy,Causes: candy causes an energy burst,1 +hyperactivity,candy,Causes: candy causes hyperactivity,1 +cavities,candy,Causes: candy causes cavities,1 +sweet,candy,HasProperty: candy is sweet,1 +colorful,candy,HasProperty: candy is colorful,1 +sticky,candy,HasProperty: candy is sticky,1 +crunchy,candy,HasProperty: candy is crunchy,1 +forest,cannabis,AtLocation: you find cannabis in a forest,1 +field,cannabis,AtLocation: cannabis grows in a field,1 +medicine,cannabis,UsedFor: cannabis is used for medicine,1 +cooking,cannabis,UsedFor: cannabis is used for cooking,1 +seed,cannabis,HasA: cannabis has a seed,1 +flower,cannabis,HasA: cannabis has a flower,1 +plant,cannabis,PartOf: cannabis is part of a plant,1 +growing,cannabis,CapableOf: cannabis can grow,1 +flowering,cannabis,CapableOf: cannabis can flower,1 +plant_material,cannabis,MadeOf: cannabis is made of plant material,1 +sunlight,cannabis,HasPrerequisite: cannabis needs sunlight,1 +soil,cannabis,HasPrerequisite: cannabis needs soil,1 +high,cannabis,Causes: cannabis causes high,1 +relaxation,cannabis,Causes: cannabis causes relaxation,1 +green,cannabis,HasProperty: cannabis is green,1 +smelly,cannabis,HasProperty: cannabis is smelly,1 +castle,cannon,AtLocation: you find a cannon in a castle,1 +military_base,cannon,AtLocation: you find a cannon in a military base,1 +naval_ship,cannon,AtLocation: you find a cannon on a naval ship,1 +defense,cannon,UsedFor: a cannon is used for defense,1 +siege,cannon,UsedFor: a cannon is used for siege,1 +artillery_fire,cannon,UsedFor: a cannon is used for artillery fire,1 +historical_reenactments,cannon,UsedFor: a cannon is used for historical reenactments,1 +naval_battle,cannon,UsedFor: a cannon is used for naval battle,1 +trigger,cannon,HasA: a cannon has a trigger,1 +firing_mechanism,cannon,HasA: a cannon has a firing mechanism,1 +armory,cannon,PartOf: a cannon is part of an armory,1 +artillery,cannon,PartOf: a cannon is part of artillery,1 +make_explosion,cannon,CapableOf: a cannon can make explosion,1 +make_loud_noise,cannon,CapableOf: a cannon can make loud noise,1 +shoot_artillery,cannon,CapableOf: a cannon can shoot artillery,1 +metal,cannon,MadeOf: a cannon is made of metal,1 +brass,cannon,MadeOf: a cannon is made of brass,1 +gunpowder,cannon,HasPrerequisite: a cannon requires gunpowder,1 +ammunition,cannon,HasPrerequisite: a cannon requires ammunition,1 +crew,cannon,HasPrerequisite: a cannon requires crew,1 +damage,cannon,Causes: a cannon causes damage,1 +destruction,cannon,Causes: a cannon causes destruction,1 +explosion,cannon,Causes: a cannon causes explosion,1 +loud_noise,cannon,Causes: a cannon causes loud noise,1 +recoil,cannon,Causes: a cannon causes recoil,1 +loud,cannon,HasProperty: a cannon is loud,1 +dangerous,cannon,HasProperty: a cannon is dangerous,1 +powerful,cannon,HasProperty: a cannon is powerful,1 +antique,cannon,HasProperty: a cannon is antique,1 +lake,canoe,AtLocation: you find a canoe in a lake,1 +exploring,canoe,UsedFor: a canoe is used for exploring,1 +paddle,canoe,HasA: a canoe has a paddle,1 +fleet,canoe,PartOf: a canoe is part of a fleet,1 +drift,canoe,CapableOf: a canoe can drift,1 +oar,canoe,HasPrerequisite: a canoe has prerequisite of oar,1 +adventure,canoe,Causes: a canoe causes adventure,1 +lightweight,canoe,HasProperty: a canoe is lightweight,1 +fort,canon,AtLocation: a canon is found in a fort,1 +firing,canon,UsedFor: a canon is used for firing,1 +artillery,canon,PartOf: a canon is part of artillery,1 +exploding,canon,CapableOf: a canon can explode,1 +metal,canon,MadeOf: a canon is made of metal,1 +powder,canon,HasPrerequisite: you need powder before you can use a canon,1 +damage,canon,Causes: a canon causes damage,1 +heavy,canon,HasProperty: a canon is heavy,1 +garage,car,AtLocation: a car is kept in a garage,1 +street,car,AtLocation: a car is found on a street,1 +intersection,car,AtLocation: a car stops at an intersection,1 +gas_station,car,AtLocation: you find a car at a gas station,1 +transportation,car,UsedFor: a car is used for transportation,1 +vacation,car,UsedFor: a car is used for vacation trips,1 +road_trip,car,UsedFor: a car is used for road trips,1 +commuting,car,UsedFor: a car is used for commuting,1 +errands,car,UsedFor: a car is used for running errands,1 +steering_wheel,car,HasA: a car has a steering wheel,1 +radio,car,HasA: a car has a radio,1 +dashboard,car,HasA: a car has a dashboard,1 +trunk,car,HasA: a car has a trunk,1 +brake_pads,car,HasA: a car has brake pads,1 +transportation_system,car,PartOf: a car is part of the transportation system,1 +family,car,PartOf: a car is part of many families,1 +community,car,PartOf: a car is part of the community,1 +economy,car,PartOf: a car is part of the economy,1 +infrastructure,car,PartOf: a car is part of the infrastructure,1 +carrying_people,car,CapableOf: a car can carry people,1 +breaking_down,car,CapableOf: a car can break down,1 +stopping,car,CapableOf: a car can stop,1 +accelerating,car,CapableOf: a car can accelerate,1 +turning,car,CapableOf: a car can turn,1 +rubber,car,MadeOf: a car is made of rubber,1 +carbon_fiber,car,MadeOf: a car is made of carbon fiber,1 +driver_license,car,HasPrerequisite: you need a driver's license to use a car,1 +insurance,car,HasPrerequisite: a car requires insurance,1 +registration,car,HasPrerequisite: a car needs registration,1 +keys,car,HasPrerequisite: you need keys to start a car,1 +maintenance,car,HasPrerequisite: a car requires maintenance,1 +traffic_jam,car,Causes: a car can cause a traffic jam,1 +noise_pollution,car,Causes: a car causes noise pollution,1 +wear_and_tear,car,Causes: a car causes wear and tear on roads,1 +traffic_accident,car,Causes: a car can cause a traffic accident,1 +carbon_emissions,car,Causes: a car causes carbon emissions,1 +rectangular,car,HasProperty: a car is often rectangular,1 +four_wheeled,car,HasProperty: a car is four-wheeled,1 +manufactured,car,HasProperty: a car is manufactured,1 +enclosed,car,HasProperty: a car is enclosed,1 +engine-powered,car,HasProperty: a car is engine-powered,1 +kitchen,cardamom,AtLocation: you find cardamom in a kitchen,1 +flavoring,cardamom,UsedFor: cardamom is used for flavoring food,1 +cooking,cardamom,UsedFor: cardamom is used for cooking,1 +baking,cardamom,UsedFor: cardamom is used for baking,1 +desserts,cardamom,UsedFor: cardamom is used in desserts,1 +seed,cardamom,HasA: cardamom has a seed,1 +spice_rack,cardamom,PartOf: cardamom is part of a spice rack,1 +masala,cardamom,PartOf: cardamom is part of masala,1 +seasoning,cardamom,CapableOf: cardamom can season food,1 +enhancing,cardamom,CapableOf: cardamom can enhance flavor,1 +plant,cardamom,MadeOf: cardamom is made of a plant,1 +seedpod,cardamom,MadeOf: cardamom is made of seedpod,1 +harvesting,cardamom,HasPrerequisite: you need harvesting before you can have cardamom,1 +drying,cardamom,HasPrerequisite: you need drying before you can use cardamom,1 +aroma,cardamom,Causes: cardamom causes aroma,1 +taste,cardamom,Causes: cardamom causes taste,1 +aromatic,cardamom,HasProperty: cardamom is aromatic,1 +spicy,cardamom,HasProperty: cardamom is spicy,1 +green,cardamom,HasProperty: cardamom is green,1 +pungent,cardamom,HasProperty: cardamom is pungent,1 +forest,cardinal,AtLocation: you find a cardinal in a forest,1 +eating_seeds,cardinal,UsedFor: a cardinal is used for eating seeds,1 +eating_insects,cardinal,UsedFor: a cardinal is used for eating insects,1 +bird_watching,cardinal,UsedFor: a cardinal is used for bird watching,1 +beak,cardinal,HasA: a cardinal has a beak,1 +wings,cardinal,HasA: a cardinal has wings,1 +tail,cardinal,HasA: a cardinal has a tail,1 +bird_family,cardinal,PartOf: a cardinal is part of a bird family,1 +ecosystem,cardinal,PartOf: a cardinal is part of an ecosystem,1 +singing,cardinal,CapableOf: a cardinal is capable of singing,1 +flying,cardinal,CapableOf: a cardinal is capable of flying,1 +eating_berries,cardinal,CapableOf: a cardinal is capable of eating berries,1 +seeds,cardinal,HasPrerequisite: you need seeds before you can have a cardinal,1 +trees,cardinal,HasPrerequisite: you need trees before you can have a cardinal,1 +insects,cardinal,HasPrerequisite: you need insects before you can have a cardinal,1 +joy,cardinal,Causes: a cardinal causes joy,1 +song,cardinal,Causes: a cardinal causes song,1 +red,cardinal,HasProperty: a cardinal has property red,1 +small,cardinal,HasProperty: a cardinal has property small,1 +colorful,cardinal,HasProperty: a cardinal has property colorful,1 +decoration,carnation,UsedFor: carnations are used for decoration,1 +petals,carnation,HasA: carnations have petals,1 +bouquet,carnation,PartOf: carnations are part of a bouquet,1 +blooming,carnation,CapableOf: carnations can bloom,1 +plant,carnation,MadeOf: carnations are made of plant material,1 +soil,carnation,HasPrerequisite: carnations require soil to grow,1 +fragrance,carnation,Causes: carnations cause fragrance,1 +fragrant,carnation,HasProperty: carnations are fragrant,1 +grocery_store,cart,AtLocation: you find a cart in a grocery store,1 +warehouse,cart,AtLocation: you find a cart in a warehouse,1 +shopping,cart,UsedFor: a cart is used for shopping,1 +carrying_groceries,cart,UsedFor: a cart is used for carrying groceries,1 +moving_goods,cart,UsedFor: a cart is used for moving goods,1 +handle,cart,HasA: a cart has a handle,1 +wheel,cart,HasA: a cart has a wheel,1 +supermarket_equipment,cart,PartOf: a cart is part of supermarket equipment,1 +delivery_system,cart,PartOf: a cart is part of a delivery system,1 +roll,cart,CapableOf: a cart can roll,1 +hold_weight,cart,CapableOf: a cart can hold weight,1 +empty,cart,CapableOf: a cart can empty,1 +load,cart,CapableOf: a cart can load,1 +metal,cart,MadeOf: a cart is made of metal,1 +rubber,cart,MadeOf: a cart is made of rubber,1 +handle,cart,HasPrerequisite: you need a handle before you can use a cart,1 +wheels,cart,HasPrerequisite: you need wheels before you can use a cart,1 +emptying,cart,Causes: a cart causes emptying,1 +convenience,cart,Causes: a cart causes convenience,1 +organization,cart,Causes: a cart causes organization,1 +wheeled,cart,HasProperty: a cart is wheeled,1 +mobile,cart,HasProperty: a cart is mobile,1 +sturdy,cart,HasProperty: a cart is sturdy,1 +rectangular,cart,HasProperty: a cart is rectangular,1 +kitchen,carton,AtLocation: you find a carton in a kitchen,1 +storing,carton,UsedFor: a carton is used for storing liquids,1 +transporting,carton,UsedFor: a carton is used for transporting food,1 +packaging,carton,UsedFor: a carton is used for packaging milk,1 +seal,carton,HasA: a carton has a seal to keep contents fresh,1 +label,carton,HasA: a carton has a label that shows its contents,1 +refrigerator,carton,PartOf: a carton is part of a refrigerator storage system,1 +leaking,carton,CapableOf: a carton can leak if punctured,1 +spilling,carton,CapableOf: a carton can spill if dropped,1 +cardboard,carton,MadeOf: a carton is made of cardboard,1 +contents,carton,HasPrerequisite: a carton requires contents to be useful,1 +freshness,carton,Causes: a carton causes freshness for its contents,1 +mess,carton,Causes: a carton causes a mess if it leaks,1 +rectangular,carton,HasProperty: a carton has a rectangular shape,1 +beak,cassowary,HasA: a cassowary has a beak,1 +bird,cassowary,PartOf: a cassowary is part of bird kingdom,1 +run,cassowary,CapableOf: a cassowary can run,1 +forest,cassowary,HasPrerequisite: you need a forest to find a cassowary,1 +danger,cassowary,Causes: a cassowary causes danger,1 +colorful,cassowary,HasProperty: a cassowary is colorful,1 +hunting,cat,UsedFor: a cat is used for hunting,1 +pest_control,cat,UsedFor: a cat is used for pest control,1 +emotional_support,cat,UsedFor: a cat is used for emotional support,1 +tail,cat,HasA: a cat has a tail,1 +ears,cat,HasA: a cat has ears,1 +mouth,cat,HasA: a cat has a mouth,1 +family,cat,PartOf: a cat is part of a family,1 +pet_population,cat,PartOf: a cat is part of a pet population,1 +purring,cat,CapableOf: a cat is capable of purring,1 +sleeping,cat,CapableOf: a cat is capable of sleeping,1 +meowing,cat,CapableOf: a cat is capable of meowing,1 +running,cat,CapableOf: a cat is capable of running,1 +muscle,cat,MadeOf: a cat is made of muscle,1 +bone,cat,MadeOf: a cat is made of bone,1 +food,cat,HasPrerequisite: you need food before you can have a cat,1 +attention,cat,HasPrerequisite: you need attention before you can have a cat,1 +happiness,cat,Causes: a cat causes happiness,1 +allergy,cat,Causes: a cat causes allergy,1 +companionship,cat,Causes: a cat causes companionship,1 +playful,cat,HasProperty: a cat is playful,1 +furry,cat,HasProperty: a cat is furry,1 +domesticated,cat,HasProperty: a cat is domesticated,1 +independent,cat,HasProperty: a cat is independent,1 +marsh,cattail,AtLocation: you find cattails in a marsh,1 +insulation,cattail,UsedFor: cattails are used for insulation,1 +weaving,cattail,UsedFor: cattails are used for weaving,1 +stuffing,cattail,UsedFor: cattails are used for stuffing,1 +making_crafts,cattail,UsedFor: cattails are used for making crafts,1 +seed_head,cattail,HasA: a cattail has a seed head,1 +leaves,cattail,HasA: a cattail has leaves,1 +wetland,cattail,PartOf: a cattail is part of a wetland,1 +ecosystem,cattail,PartOf: a cattail is part of an ecosystem,1 +growing,cattail,CapableOf: a cattail can grow,1 +flowering,cattail,CapableOf: a cattail can flower,1 +reproducing,cattail,CapableOf: a cattail can reproduce,1 +providing_shelter,cattail,CapableOf: a cattail can provide shelter,1 +plant_matter,cattail,MadeOf: a cattail is made of plant matter,1 +cellulose,cattail,MadeOf: a cattail is made of cellulose,1 +fiber,cattail,MadeOf: a cattail is made of fiber,1 +sunlight,cattail,HasPrerequisite: cattails need sunlight,1 +soil,cattail,HasPrerequisite: cattails need soil,1 +nutrients,cattail,HasPrerequisite: cattails need nutrients,1 +shade,cattail,Causes: cattails cause shade,1 +wildlife_habitat,cattail,Causes: cattails cause wildlife habitat,1 +water_filtration,cattail,Causes: cattails cause water filtration,1 +erosion_control,cattail,Causes: cattails cause erosion control,1 +tall,cattail,HasProperty: a cattail is tall,1 +green,cattail,HasProperty: a cattail is green,1 +fuzzy,cattail,HasProperty: a cattail is fuzzy,1 +long,cattail,HasProperty: a cattail is long,1 +upright,cattail,HasProperty: a cattail is upright,1 +grocery_store,cauliflower,AtLocation: you find cauliflower in a grocery store,1 +cooking,cauliflower,UsedFor: cauliflower is used for cooking,1 +mashing,cauliflower,UsedFor: cauliflower is used for mashing,1 +florets,cauliflower,UsedFor: cauliflower is used for florets,1 +leaves,cauliflower,HasA: cauliflower has leaves,1 +head,cauliflower,HasA: cauliflower has a head,1 +vegetable_platter,cauliflower,PartOf: cauliflower is part of a vegetable platter,1 +growing,cauliflower,CapableOf: cauliflower can grow,1 +cells,cauliflower,MadeOf: cauliflower is made of cells,1 +plant_material,cauliflower,MadeOf: cauliflower is made of plant material,1 +soil,cauliflower,HasPrerequisite: cauliflower needs soil to grow,1 +satisfaction,cauliflower,Causes: eating cauliflower causes satisfaction,1 +fullness,cauliflower,Causes: eating cauliflower causes fullness,1 +construction,cedar,UsedFor: cedar is used for construction,1 +fragrance,cedar,UsedFor: cedar is used for fragrance,1 +furniture,cedar,UsedFor: cedar is used for furniture,1 +branches,cedar,HasA: cedar has branches,1 +needles,cedar,HasA: cedar has needles,1 +landscape,cedar,PartOf: cedar is part of landscape,1 +nature,cedar,PartOf: cedar is part of nature,1 +growing,cedar,CapableOf: cedar can grow,1 +standing,cedar,CapableOf: cedar can stand tall,1 +providing,cedar,CapableOf: cedar can provide shade,1 +cellulose,cedar,MadeOf: cedar is made of cellulose,1 +soil,cedar,HasPrerequisite: cedar needs soil to grow,1 +sunlight,cedar,HasPrerequisite: cedar needs sunlight to grow,1 +aroma,cedar,Causes: cedar causes a pleasant aroma,1 +protection,cedar,Causes: cedar causes protection from pests,1 +fragrant,cedar,HasProperty: cedar is fragrant,1 +woody,cedar,HasProperty: cedar is woody,1 +dense,cedar,HasProperty: cedar is dense,1 +grocery_store,celery,AtLocation: you find celery in a grocery store,1 +snacking,celery,UsedFor: celery is used for snacking,1 +leaves,celery,HasA: celery has leaves,1 +vegetable_platter,celery,PartOf: celery is part of a vegetable platter,1 +crunching,celery,CapableOf: celery can be crunching,1 +absorbing,celery,CapableOf: celery can absorb filling,1 +plant,celery,MadeOf: celery is made of plant,1 +soil,celery,HasPrerequisite: celery needs soil to grow,1 +sunlight,celery,HasPrerequisite: celery needs sunlight to grow,1 +satisfaction,celery,Causes: celery causes satisfaction when eaten,1 +fullness,celery,Causes: celery causes fullness when eaten,1 +orchestra,cello,AtLocation: a cello is found in an orchestra,1 +practice_songs,cello,UsedFor: a cello is used for practice songs,1 +bow,cello,HasA: a cello has a bow,1 +orchestra,cello,PartOf: a cello is part of an orchestra,1 +producing_sound,cello,CapableOf: a cello is capable of producing sound,1 +musician,cello,HasPrerequisite: a cello requires a musician to play it,1 +beautiful_sounds,cello,Causes: a cello causes beautiful sounds,1 +bulky,cello,HasProperty: a cello is bulky,1 +legs,centipede,HasA: a centipede has legs,1 +ecosystem,centipede,PartOf: a centipede is part of an ecosystem,1 +crawl,centipede,CapableOf: a centipede can crawl,1 +moisture,centipede,HasPrerequisite: you need moisture to find a centipede,1 +fright,centipede,Causes: a centipede causes fright,1 +segmented,centipede,HasProperty: a centipede is segmented,1 +bowl,cereal,AtLocation: you find cereal in a bowl,1 +breakfast,cereal,UsedFor: cereal is used for breakfast,1 +grains,cereal,HasA: cereal has grains,1 +meal,cereal,PartOf: cereal is part of a meal,1 +floating_in_milk,cereal,CapableOf: cereal can float in milk,1 +grain,cereal,MadeOf: cereal is made of grain,1 +fullness,cereal,Causes: cereal causes fullness,1 +crunchy,cereal,HasProperty: cereal is crunchy,1 +blackboard,chalk,AtLocation: chalk is found near blackboards,1 +playground,chalk,AtLocation: chalk is found at playgrounds,1 +creating_art,chalk,UsedFor: chalk is used for creating art,1 +marking_lines,chalk,UsedFor: chalk is used for marking lines,1 +cleaning_shoes,chalk,UsedFor: chalk is used for cleaning shoes,1 +dust,chalk,HasA: chalk has dust,1 +color,chalk,HasA: chalk has color,1 +art_kit,chalk,PartOf: chalk is part of an art kit,1 +classroom_supplies,chalk,PartOf: chalk is part of classroom supplies,1 +clean_shoes,chalk,CapableOf: chalk can clean shoes,1 +write,chalk,CapableOf: chalk can write,1 +draw,chalk,CapableOf: chalk can draw,1 +calcium_carbonate,chalk,MadeOf: chalk is made of calcium carbonate,1 +limestone,chalk,MadeOf: chalk is made of limestone,1 +hands,chalk,HasPrerequisite: chalk requires hands to use,1 +surface,chalk,HasPrerequisite: chalk requires a surface to use,1 +marks,chalk,Causes: chalk causes marks,1 +dust,chalk,Causes: chalk causes dust,1 +white,chalk,HasProperty: chalk has the property of being white,1 +hard,chalk,HasProperty: chalk has the property of being hard,1 +brittle,chalk,HasProperty: chalk has the property of being brittle,1 +cooking,chard,UsedFor: chard is used for cooking,1 +eating,chard,UsedFor: chard is used for eating,1 +leaves,chard,HasA: chard has leaves,1 +stalks,chard,HasA: chard has stalks,1 +meal,chard,PartOf: chard is part of a meal,1 +growing,chard,CapableOf: chard can grow,1 +wilting,chard,CapableOf: chard can wilt,1 +plant,chard,MadeOf: chard is made of a plant,1 +cells,chard,MadeOf: chard is made of cells,1 +soil,chard,HasPrerequisite: you need soil before you can grow chard,1 +sunlight,chard,HasPrerequisite: you need sunlight before you can grow chard,1 +satisfaction,chard,Causes: eating chard causes satisfaction,1 +health,chard,Causes: eating chard causes health,1 +leafy,chard,HasProperty: chard is leafy,1 +green,chard,HasProperty: chard is green,1 +fibrous,chard,HasProperty: chard is fibrous,1 +sandwich,cheese,AtLocation: cheese is found in sandwiches,1 +cheese_platter,cheese,AtLocation: cheese is found on a cheese platter,1 +deli_counter,cheese,AtLocation: cheese is found at a deli counter,1 +cheese_board,cheese,AtLocation: cheese is found on a cheese board,1 +cheese_cloth,cheese,AtLocation: cheese is found wrapped in cheese cloth,1 +melting,cheese,UsedFor: cheese is used for melting,1 +grating,cheese,UsedFor: cheese is used for grating,1 +crumbling,cheese,UsedFor: cheese is used for crumbling,1 +slicing,cheese,UsedFor: cheese is used for slicing,1 +topping,cheese,UsedFor: cheese is used for topping,1 +calcium,cheese,HasA: cheese has calcium,1 +protein,cheese,HasA: cheese has protein,1 +fat,cheese,HasA: cheese has fat,1 +curds,cheese,HasA: cheese has curds,1 +moisture,cheese,HasA: cheese has moisture,1 +grilled_cheese,cheese,PartOf: cheese is part of grilled cheese,1 +fondue,cheese,PartOf: cheese is part of fondue,1 +macaroni_and_cheese,cheese,PartOf: cheese is part of macaroni and cheese,1 +cheeseburger,cheese,PartOf: cheese is part of cheeseburger,1 +cheese_plate,cheese,PartOf: cheese is part of a cheese plate,1 +melting,cheese,CapableOf: cheese can melt,1 +stretching,cheese,CapableOf: cheese can stretch,1 +shredding,cheese,CapableOf: cheese can shred,1 +hardening,cheese,CapableOf: cheese can harden when aged,1 +separating,cheese,CapableOf: cheese can separate into curds and whey,1 +rennet,cheese,MadeOf: cheese is made of rennet,1 +whey,cheese,MadeOf: cheese is made of whey,1 +curds,cheese,MadeOf: cheese is made of curds,1 +casein,cheese,MadeOf: cheese is made of casein,1 +rennet,cheese,HasPrerequisite: rennet is required to make cheese,1 +bacteria,cheese,HasPrerequisite: bacteria are required to make cheese,1 +aging,cheese,HasPrerequisite: aging is required for some cheese varieties,1 +satisfaction,cheese,Causes: cheese causes satisfaction,1 +gas,cheese,Causes: cheese causes gas,1 +bloating,cheese,Causes: cheese causes bloating,1 +constipation,cheese,Causes: cheese causes constipation,1 +delight,cheese,Causes: cheese causes delight,1 +crumbly,cheese,HasProperty: cheese can be crumbly,1 +stringy,cheese,HasProperty: cheese can be stringy,1 +salty,cheese,HasProperty: cheese can be salty,1 +pungent,cheese,HasProperty: cheese can be pungent,1 +creamy,cheese,HasProperty: cheese can be creamy,1 +attic,chest,AtLocation: a chest is often found in an attic,1 +storage_room,chest,AtLocation: you can find a chest in a storage room,1 +basement,chest,AtLocation: a chest might be located in a basement,1 +living_room,chest,AtLocation: a chest can be placed in a living room,1 +garage,chest,AtLocation: a chest can be stored in a garage,1 +storing_jewelry,chest,UsedFor: a chest is used for storing jewelry,1 +keeping_memorabilia,chest,UsedFor: a chest is used for keeping memorabilia,1 +organizing_souvenirs,chest,UsedFor: a chest can be used for organizing souvenirs,1 +safekeeping,chest,UsedFor: a chest is used for safekeeping important items,1 +storing_treasures,chest,UsedFor: a chest is used for storing treasures,1 +lid,chest,HasA: a chest has a lid,1 +handle,chest,HasA: a chest has a handle,1 +lock,chest,HasA: a chest may have a lock,1 +keyhole,chest,HasA: a chest might have a keyhole,1 +bottom,chest,HasA: a chest has a bottom,1 +furniture,chest,PartOf: a chest is part of furniture,1 +collection,chest,PartOf: a chest can be part of a collection,1 +antique,chest,PartOf: a chest can be part of an antique,1 +storage_system,chest,PartOf: a chest can be part of a storage system,1 +household_items,chest,PartOf: a chest is part of household items,1 +containing,chest,CapableOf: a chest can contain items,1 +storing,chest,CapableOf: a chest can store belongings,1 +holding,chest,CapableOf: a chest can hold various objects,1 +protecting,chest,CapableOf: a chest can protect its contents,1 +organizing,chest,CapableOf: a chest can organize items inside,1 +metal,chest,MadeOf: a chest can be made of metal,1 +fabric,chest,MadeOf: a chest can be made of fabric,1 +cardboard,chest,MadeOf: a chest can be made of cardboard,1 +materials,chest,HasPrerequisite: you need materials to make a chest,1 +tools,chest,HasPrerequisite: you need tools to build a chest,1 +space,chest,HasPrerequisite: you need space to place a chest,1 +intention,chest,HasPrerequisite: you need intention to create/use a chest,1 +construction,chest,HasPrerequisite: a chest requires construction,1 +organization,chest,Causes: a chest causes better organization,1 +preservation,chest,Causes: a chest causes preservation of items,1 +protection,chest,Causes: a chest causes protection of contents,1 +neatness,chest,Causes: a chest causes neatness in storage,1 +security,chest,Causes: a chest can cause security for valuables,1 +wooden,chest,HasProperty: a chest can be wooden,1 +sturdy,chest,HasProperty: a chest is often sturdy,1 +large,chest,HasProperty: a chest can be large,1 +heavy,chest,HasProperty: a chest might be heavy,1 +closed,chest,HasProperty: a chest is usually closed,1 +eating_seeds,chickadee,UsedFor: a chickadee is used for eating seeds,1 +black_cap,chickadee,HasA: a chickadee has a black cap,1 +flock,chickadee,PartOf: a chickadee is part of a flock,1 +singing,chickadee,CapableOf: a chickadee can sing,1 +chirping,chickadee,Causes: a chickadee causes chirping,1 +small,chickadee,HasProperty: a chickadee is small,1 +farm,chicken,AtLocation: a chicken is found on a farm,1 +barnyard,chicken,AtLocation: a chicken is found in a barnyard,1 +grocery_store,chicken,AtLocation: a chicken is found in a grocery store,1 +eating,chicken,UsedFor: a chicken is used for eating,1 +cooking,chicken,UsedFor: a chicken is used for cooking,1 +meal,chicken,UsedFor: a chicken is used for a meal,1 +feathers,chicken,HasA: a chicken has feathers,1 +beak,chicken,HasA: a chicken has a beak,1 +wings,chicken,HasA: a chicken has wings,1 +legs,chicken,HasA: a chicken has legs,1 +dinner,chicken,PartOf: a chicken is part of dinner,1 +meal,chicken,PartOf: a chicken is part of a meal,1 +flock,chicken,PartOf: a chicken is part of a flock,1 +peck,chicken,CapableOf: a chicken can peck,1 +scratch,chicken,CapableOf: a chicken can scratch,1 +eat_grain,chicken,CapableOf: a chicken can eat grain,1 +run,chicken,CapableOf: a chicken can run,1 +meat,chicken,MadeOf: a chicken is made of meat,1 +bones,chicken,MadeOf: a chicken is made of bones,1 +fat,chicken,MadeOf: a chicken is made of fat,1 +incubation,chicken,HasPrerequisite: a chicken requires incubation,1 +hatching,chicken,HasPrerequisite: a chicken requires hatching,1 +meat,chicken,Causes: a chicken causes meat,1 +eggs,chicken,Causes: a chicken causes eggs,1 +dinner,chicken,Causes: a chicken causes dinner,1 +white_meat,chicken,HasProperty: a chicken has white meat,1 +poultry,chicken,HasProperty: a chicken is poultry,1 +domestic,chicken,HasProperty: a chicken is domestic,1 +kitchen,chili,AtLocation: you find a chili in the kitchen,1 +cooking,chili,UsedFor: a chili is used for cooking,1 +flavoring,chili,UsedFor: a chili is used for flavoring,1 +spicing,chili,UsedFor: a chili is used for spicing,1 +eating,chili,UsedFor: a chili is used for eating,1 +seed,chili,HasA: a chili has a seed,1 +heat,chili,HasA: a chili has heat,1 +dish,chili,PartOf: a chili is part of a dish,1 +meal,chili,PartOf: a chili is part of a meal,1 +burning,chili,CapableOf: a chili can burn,1 +warming,chili,CapableOf: a chili can warm,1 +plant,chili,MadeOf: a chili is made of a plant,1 +grow,chili,HasPrerequisite: you need to grow a chili before you can use it,1 +harvest,chili,HasPrerequisite: you need to harvest a chili before you can use it,1 +sweating,chili,Causes: a chili causes sweating,1 +pain,chili,Causes: a chili causes pain,1 +spiciness,chili,Causes: a chili causes spiciness,1 +hot,chili,HasProperty: a chili is hot,1 +spicy,chili,HasProperty: a chili is spicy,1 +red,chili,HasProperty: a chili is red,1 +pungent,chili,HasProperty: a chili is pungent,1 +fireplace,chimney,AtLocation: a chimney is found near a fireplace,1 +vent_flue,chimney,UsedFor: a chimney is used for venting the flue,1 +building,chimney,PartOf: a chimney is part of a building,1 +crack,chimney,CapableOf: a chimney can crack in cold weather,1 +brick,chimney,MadeOf: a chimney is made of brick,1 +fireplace,chimney,HasPrerequisite: you need a fireplace before you can have a chimney,1 +draft,chimney,Causes: a chimney causes a draft,1 +tall,chimney,HasProperty: a chimney is tall,1 +forest,chimpanzee,AtLocation: you find chimpanzees in the forest,1 +jungle,chimpanzee,AtLocation: you find chimpanzees in the jungle,1 +sanctuary,chimpanzee,AtLocation: chimpanzees are found in sanctuaries,1 +research,chimpanzee,UsedFor: chimpanzees are used for research,1 +education,chimpanzee,UsedFor: chimpanzees are used for education,1 +entertainment,chimpanzee,UsedFor: chimpanzees are used for entertainment,1 +tail,chimpanzee,HasA: a chimpanzee has a tail,1 +hand,chimpanzee,HasA: a chimpanzee has hands,1 +foot,chimpanzee,HasA: a chimpanzee has feet,1 +fur,chimpanzee,HasA: a chimpanzee has fur,1 +primate_group,chimpanzee,PartOf: a chimpanzee is part of a primate group,1 +family,chimpanzee,PartOf: a chimpanzee is part of a family,1 +climb_trees,chimpanzee,CapableOf: a chimpanzee can climb trees,1 +eat_fruit,chimpanzee,CapableOf: a chimpanzee can eat fruit,1 +make_tool,chimpanzee,CapableOf: a chimpanzee can make tools,1 +swing_by_arms,chimpanzee,CapableOf: a chimpanzee can swing by its arms,1 +flesh,chimpanzee,MadeOf: a chimpanzee is made of flesh,1 +bone,chimpanzee,MadeOf: a chimpanzee is made of bone,1 +blood,chimpanzee,MadeOf: a chimpanzee is made of blood,1 +forest_environment,chimpanzee,HasPrerequisite: you need a forest environment for a chimpanzee,1 +food_sources,chimpanzee,HasPrerequisite: you need food sources for a chimpanzee,1 +water_source,chimpanzee,HasPrerequisite: you need a water source for a chimpanzee,1 +laughter,chimpanzee,Causes: chimpanzees cause laughter,1 +interest,chimpanzee,Causes: chimpanzees cause interest,1 +study,chimpanzee,Causes: chimpanzees cause study,1 +protection,chimpanzee,Causes: chimpanzees cause protection,1 +intelligent,chimpanzee,HasProperty: a chimpanzee is intelligent,1 +social,chimpanzee,HasProperty: a chimpanzee is social,1 +agile,chimpanzee,HasProperty: a chimpanzee is agile,1 +hairy,chimpanzee,HasProperty: a chimpanzee is hairy,1 +restaurant,chips,AtLocation: you find chips at a restaurant,1 +kitchen,chips,AtLocation: you find chips in a kitchen,1 +dipping,chips,UsedFor: chips are used for dipping,1 +snacking,chips,UsedFor: chips are used for snacking,1 +crunching,chips,UsedFor: chips are used for crunching,1 +flavor,chips,HasA: chips have flavor,1 +oil,chips,HasA: chips have oil,1 +meal,chips,PartOf: chips are part of a meal,1 +snack,chips,PartOf: chips are part of a snack,1 +crushing,chips,CapableOf: chips can be crushed,1 +breaking,chips,CapableOf: chips can break,1 +ingredients,chips,HasPrerequisite: you need ingredients to make chips,1 +cooking,chips,HasPrerequisite: you need cooking before you can have chips,1 +crunching,chips,Causes: chips cause crunching,1 +satisfaction,chips,Causes: chips cause satisfaction,1 +addiction,chips,Causes: chips cause addiction,1 +crispy,chips,HasProperty: chips are crispy,1 +salty,chips,HasProperty: chips are salty,1 +savory,chips,HasProperty: chips are savory,1 +crunchy,chips,HasProperty: chips are crunchy,1 +workshop,chisel,AtLocation: you find a chisel in a workshop,1 +carving,chisel,UsedFor: a chisel is used for carving,1 +cutting,chisel,UsedFor: a chisel is used for cutting,1 +shaping,chisel,UsedFor: a chisel is used for shaping,1 +edge,chisel,HasA: a chisel has an edge,1 +toolkit,chisel,PartOf: a chisel is part of a toolkit,1 +splitting,chisel,CapableOf: a chisel can split wood,1 +hammer,chisel,HasPrerequisite: you need a hammer to use a chisel,1 +chip,chisel,Causes: a chisel causes wood to chip,1 +sharp,chisel,HasProperty: a chisel is sharp,1 +gift_box,chocolate,AtLocation: chocolate is found in a gift box,1 +kitchen,chocolate,AtLocation: chocolate is found in a kitchen,1 +pantry,chocolate,AtLocation: chocolate is found in a pantry,1 +candy_machine,chocolate,AtLocation: chocolate is found in a candy machine,1 +chocolate_factory,chocolate,AtLocation: chocolate is found in a chocolate factory,1 +baking_(weight_3.0),chocolate,UsedFor: chocolate is used for baking,1 +making_hot_drinks,chocolate,UsedFor: chocolate is used for making hot drinks,1 +making_sweet_desserts,chocolate,UsedFor: chocolate is used for making sweet desserts,1 +adding_flavor,chocolate,UsedFor: chocolate is used for adding flavor to food,1 +making_candy,chocolate,UsedFor: chocolate is used for making candy,1 +cocoa,chocolate,HasA: chocolate has cocoa,1 +sugar,chocolate,HasA: chocolate has sugar,1 +flavor,chocolate,HasA: chocolate has a distinct flavor,1 +smoothness,chocolate,HasA: chocolate has a smooth texture,1 +dark_color,chocolate,HasA: chocolate has a dark color,1 +dessert,chocolate,PartOf: chocolate is part of a dessert,1 +candy_bar,chocolate,PartOf: chocolate is part of a candy bar,1 +hot_chocolate,chocolate,PartOf: chocolate is part of hot chocolate,1 +chocolate_milkshake,chocolate,PartOf: chocolate is part of a chocolate milkshake,1 +fondue,chocolate,PartOf: chocolate is part of fondue,1 +coating,chocolate,CapableOf: chocolate can coat other foods,1 +dissolving,chocolate,CapableOf: chocolate can dissolve in warm liquids,1 +hardening,chocolate,CapableOf: chocolate can harden when cooled,1 +adding_color,chocolate,CapableOf: chocolate can add color to food,1 +making_thick,chocolate,CapableOf: chocolate can make liquids thick,1 +cocoa_beans,chocolate,MadeOf: chocolate is made of cocoa beans,1 +cocoa_butter,chocolate,MadeOf: chocolate is made of cocoa butter,1 +sugar,chocolate,MadeOf: chocolate is made of sugar,1 +milk_powder,chocolate,MadeOf: chocolate is made of milk powder,1 +emulsifiers,chocolate,MadeOf: chocolate is made of emulsifiers,1 +cocoa_plants,chocolate,HasPrerequisite: chocolate requires cocoa plants to exist,1 +processing,chocolate,HasPrerequisite: chocolate requires processing to be made,1 +heat,chocolate,HasPrerequisite: chocolate requires heat to melt for use,1 +packaging,chocolate,HasPrerequisite: chocolate requires packaging to be sold,1 +ingredients,chocolate,HasPrerequisite: chocolate requires multiple ingredients to be made,1 +addiction,chocolate,Causes: chocolate can cause addiction,1 +satisfaction,chocolate,Causes: chocolate causes satisfaction,1 +weight_gain,chocolate,Causes: chocolate causes weight gain,1 +cravings,chocolate,Causes: chocolate causes cravings,1 +happiness,chocolate,Causes: chocolate causes happiness,1 +rich_(weight_3.0),chocolate,HasProperty: chocolate has a rich flavor,1 +creamy,chocolate,HasProperty: chocolate has a creamy texture,1 +bitter,chocolate,HasProperty: chocolate can have a bitter taste,1 +sweet,chocolate,HasProperty: chocolate has a sweet taste,1 +solid,chocolate,HasProperty: chocolate has a solid form at room temperature,1 +countryside,church,AtLocation: you find a church in the countryside,1 +downtown,church,AtLocation: you find a church in downtown areas,1 +neighborhood,church,AtLocation: you find a church in a neighborhood,1 +baptism,church,UsedFor: a church is used for baptism,1 +funeral,church,UsedFor: a church is used for funeral services,1 +community_events,church,UsedFor: a church is used for community events,1 +choir_practice,church,UsedFor: a church is used for choir practice,1 +bell_tower,church,HasA: a church has a bell tower,1 +pews,church,HasA: a church has pews,1 +altar,church,HasA: a church has an altar,1 +stained_glass,church,HasA: a church has stained glass,1 +cityscape,church,PartOf: a church is part of the cityscape,1 +community_center,church,PartOf: a church is part of the community center,1 +religious_institution,church,PartOf: a church is part of a religious institution,1 +landscape,church,PartOf: a church is part of the landscape,1 +provide_peace,church,CapableOf: a church can provide peace,1 +host_meetings,church,CapableOf: a church can host meetings,1 +offer_shelter,church,CapableOf: a church can offer shelter,1 +hold_receptions,church,CapableOf: a church can hold receptions,1 +stone,church,MadeOf: a church is made of stone,1 +brick,church,MadeOf: a church is made of brick,1 +land,church,HasPrerequisite: you need land before you can build a church,1 +congregation,church,HasPrerequisite: you need a congregation before you can have a church,1 +funding,church,HasPrerequisite: you need funding before you can build a church,1 +religious_group,church,HasPrerequisite: you need a religious group before you can establish a church,1 +reflection,church,Causes: a church causes reflection,1 +contemplation,church,Causes: a church causes contemplation,1 +community_bonding,church,Causes: a church causes community bonding,1 +spiritual_growth,church,Causes: a church causes spiritual growth,1 +historic,church,HasProperty: a church is likely to be historic,1 +sacred,church,HasProperty: a church is sacred,1 +food,cicada,UsedFor: a cicada is used for food,1 +sing,cicada,CapableOf: a cicada can sing,1 +noise,cicada,Causes: a cicada causes noise,1 +loud,cicada,HasProperty: a cicada is loud,1 +pantry,cinnamon,AtLocation: you store cinnamon in a pantry,1 +baking_sweets,cinnamon,UsedFor: cinnamon is used for baking sweets,1 +flavoring_coffee,cinnamon,UsedFor: cinnamon is used for flavoring coffee,1 +making_spiced_drinks,cinnamon,UsedFor: cinnamon is used for making spiced drinks,1 +making_spiced_seasoning,cinnamon,UsedFor: cinnamon is used for making spiced seasoning,1 +spice_powder,cinnamon,HasA: cinnamon has a spice powder form,1 +aroma,cinnamon,HasA: cinnamon has an aroma,1 +spice_rack,cinnamon,PartOf: cinnamon is part of a spice rack,1 +baking_ingredients,cinnamon,PartOf: cinnamon is part of baking ingredients,1 +adding_flavor,cinnamon,CapableOf: cinnamon can add flavor to food,1 +warming_dishes,cinnamon,CapableOf: cinnamon can warm dishes,1 +preserving_food,cinnamon,CapableOf: cinnamon can preserve food,1 +plant,cinnamon,MadeOf: cinnamon is made of a plant,1 +harvesting,cinnamon,HasPrerequisite: cinnamon requires harvesting before use,1 +drying,cinnamon,HasPrerequisite: cinnamon requires drying before use,1 +warming_sensation,cinnamon,Causes: cinnamon causes a warming sensation,1 +pleasant_smell,cinnamon,Causes: cinnamon causes a pleasant smell,1 +sweet_taste,cinnamon,Causes: cinnamon causes a sweet taste,1 +brown,cinnamon,HasProperty: cinnamon has a brown color,1 +fragrant,cinnamon,HasProperty: cinnamon has a fragrant property,1 +powdery,cinnamon,HasProperty: cinnamon has a powdery property,1 +woody,cinnamon,HasProperty: cinnamon has a woody property,1 +music_school,clarinet,AtLocation: a clarinet is found in a music school,1 +concert_hall,clarinet,AtLocation: a clarinet is found in a concert hall,1 +practice_room,clarinet,AtLocation: a clarinet is found in a practice room,1 +playing_songs,clarinet,UsedFor: a clarinet is used for playing songs,1 +practice,clarinet,UsedFor: a clarinet is used for practice,1 +teaching_music,clarinet,UsedFor: a clarinet is used for teaching music,1 +mouthpiece,clarinet,HasA: a clarinet has a mouthpiece,1 +reed,clarinet,HasA: a clarinet has a reed,1 +key,clarinet,HasA: a clarinet has keys,1 +woodwind_section,clarinet,PartOf: a clarinet is part of the woodwind section,1 +symphony,clarinet,PartOf: a clarinet is part of a symphony,1 +producing_sound,clarinet,CapableOf: a clarinet is capable of producing sound,1 +emitting_notes,clarinet,CapableOf: a clarinet is capable of emitting notes,1 +creating_harmony,clarinet,CapableOf: a clarinet is capable of creating harmony,1 +metal,clarinet,MadeOf: a clarinet is made of metal,1 +reed,clarinet,HasPrerequisite: a clarinet requires a reed,1 +mouthpiece,clarinet,HasPrerequisite: a clarinet requires a mouthpiece,1 +player,clarinet,HasPrerequisite: a clarinet requires a player,1 +sound,clarinet,Causes: a clarinet causes sound,1 +melody,clarinet,Causes: a clarinet causes melody,1 +music,clarinet,Causes: a clarinet causes music,1 +wooden,clarinet,HasProperty: a clarinet is wooden,1 +musical,clarinet,HasProperty: a clarinet is musical,1 +long,clarinet,HasProperty: a clarinet is long,1 +ground,clay,AtLocation: you find clay in the ground,1 +pottery,clay,UsedFor: clay is used for pottery,1 +pottery_making,clay,UsedFor: clay is used for pottery making,1 +modeling,clay,UsedFor: clay is used for modeling,1 +moisture,clay,HasA: clay has moisture,1 +earth,clay,PartOf: clay is part of earth,1 +soil,clay,PartOf: clay is part of soil,1 +shaping,clay,CapableOf: clay can be shaped,1 +sediment,clay,MadeOf: clay is made of sediment,1 +digging,clay,HasPrerequisite: you need to dig before you can get clay,1 +pottery_creation,clay,Causes: clay causes pottery creation,1 +ceramic_art,clay,Causes: clay causes ceramic art,1 +moldable,clay,HasProperty: clay is moldable,1 +earthy,clay,HasProperty: clay has an earthy quality,1 +stadium,coach,AtLocation: a coach is found in a stadium,1 +training,coach,UsedFor: a coach is used for training,1 +clipboard,coach,HasA: a coach has a clipboard,1 +sports_organizaton,coach,PartOf: a coach is part of a sports organization,1 +motivate_players,coach,CapableOf: a coach can motivate players,1 +knowledge,coach,HasPrerequisite: a coach needs knowledge before coaching,1 +improvement,coach,Causes: a coach causes improvement,1 +knowledgeable,coach,HasProperty: a coach is knowledgeable,1 +earth,coal,AtLocation: coal is found in the earth,1 +seam,coal,AtLocation: coal is found in a seam,1 +heating,coal,UsedFor: coal is used for heating,1 +fuel,coal,UsedFor: coal is used as fuel,1 +smelting,coal,UsedFor: coal is used for smelting metals,1 +impurity,coal,HasA: coal has impurities,1 +fossil_fuel,coal,PartOf: coal is part of fossil fuels,1 +fuel_source,coal,PartOf: coal is part of fuel sources,1 +produce_heat,coal,CapableOf: coal can produce heat,1 +power_plant,coal,CapableOf: coal can power a plant,1 +sediment,coal,MadeOf: coal is made of sediment,1 +plant_matter,coal,MadeOf: coal is made of compressed plant matter,1 +mining,coal,HasPrerequisite: coal requires mining to be extracted,1 +combustion,coal,HasPrerequisite: coal needs combustion to be used,1 +pollution,coal,Causes: coal causes pollution,1 +carbon_emission,coal,Causes: coal causes carbon emissions,1 +black,coal,HasProperty: coal is black,1 +brittle,coal,HasProperty: coal is brittle,1 +hard,coal,HasProperty: coal is hard,1 +mountain,coca,AtLocation: coca is found in mountain regions,1 +medicine,coca,UsedFor: coca is used for medicine,1 +leaf,coca,HasA: coca has leaves,1 +plant,coca,PartOf: coca is part of a plant,1 +grow,coca,CapableOf: coca can grow in specific climates,1 +plant_matter,coca,MadeOf: coca is made of plant matter,1 +soil,coca,HasPrerequisite: coca requires soil to grow,1 +alertness,coca,Causes: coca causes alertness,1 +green,coca,HasProperty: coca is green,1 +farm,cock,AtLocation: you find a cock on a farm,1 +crowing,cock,UsedFor: a cock is used for crowing,1 +wattles,cock,HasA: a cock has wattles,1 +flock,cock,PartOf: a cock is part of a flock,1 +scratch,cock,CapableOf: a cock can scratch,1 +alarm,cock,Causes: a cock causes alarm,1 +loud,cock,HasProperty: a cock is loud,1 +cage,cockatiel,AtLocation: a cockatiel is found in a cage,1 +companionship,cockatiel,UsedFor: a cockatiel is used for companionship,1 +beak,cockatiel,HasA: a cockatiel has a beak,1 +tail_feathers,cockatiel,HasA: a cockatiel has tail feathers,1 +pet,cockatiel,PartOf: a cockatiel is part of pet family,1 +talk,cockatiel,CapableOf: a cockatiel can talk,1 +perch,cockatiel,CapableOf: a cockatiel can perch,1 +flesh,cockatiel,MadeOf: a cockatiel is made of flesh,1 +care,cockatiel,HasPrerequisite: you need care before you can have a cockatiel,1 +noise,cockatiel,Causes: a cockatiel causes noise,1 +joy,cockatiel,Causes: a cockatiel causes joy,1 +colorful,cockatiel,HasProperty: a cockatiel is colorful,1 +small,cockatiel,HasProperty: a cockatiel is small,1 +talking,cockatoo,UsedFor: a cockatoo is used for talking,1 +beak,cockatoo,HasA: a cockatoo has a beak,1 +aviary,cockatoo,PartOf: a cockatoo is part of an aviary,1 +flying,cockatoo,CapableOf: a cockatoo can fly,1 +feathers,cockatoo,MadeOf: a cockatoo is made of feathers,1 +habitat,cockatoo,HasPrerequisite: a cockatoo needs a habitat,1 +noise,cockatoo,Causes: a cockatoo causes noise,1 +white,cockatoo,HasProperty: a cockatoo is white,1 +kitchen,coffee,AtLocation: you find coffee in a kitchen,1 +restaurant,coffee,AtLocation: you find coffee in a restaurant,1 +diner,coffee,AtLocation: you find coffee in a diner,1 +home,coffee,AtLocation: you find coffee in a home,1 +energy_boost,coffee,UsedFor: coffee is used for energy boost,1 +conversation,coffee,UsedFor: coffee is used for conversation,1 +studying,coffee,UsedFor: coffee is used for studying,1 +social_gathering,coffee,UsedFor: coffee is used for social gatherings,1 +aroma,coffee,HasA: coffee has an aroma,1 +flavor,coffee,HasA: coffee has a flavor,1 +aroma_of_roasted_beans,coffee,HasA: coffee has an aroma of roasted beans,1 +warmth,coffee,HasA: coffee has warmth,1 +breakfast,coffee,PartOf: coffee is part of breakfast,1 +morning_routine,coffee,PartOf: coffee is part of a morning routine,1 +cafe_menu,coffee,PartOf: coffee is part of a cafe menu,1 +daily_drinks,coffee,PartOf: coffee is part of daily drinks,1 +staining,coffee,CapableOf: coffee can stain,1 +warming_hands,coffee,CapableOf: coffee can warm hands,1 +cooling_down,coffee,CapableOf: coffee can cool down when left out,1 +providing_scent,coffee,CapableOf: coffee can provide a scent,1 +coffee_beans,coffee,MadeOf: coffee is made of coffee beans,1 +grounds,coffee,MadeOf: coffee is made of grounds,1 +extract,coffee,MadeOf: coffee is made of extract,1 +coffee_beans,coffee,HasPrerequisite: you need coffee beans for coffee,1 +hot_water,coffee,HasPrerequisite: you need hot water for coffee,1 +grinder,coffee,HasPrerequisite: you need a grinder for coffee,1 +brewing_device,coffee,HasPrerequisite: you need a brewing device for coffee,1 +jitters,coffee,Causes: coffee causes jitters,1 +alertness,coffee,Causes: coffee causes alertness,1 +increased_heart_rate,coffee,Causes: coffee causes increased heart rate,1 +dependence,coffee,Causes: coffee causes dependence,1 +liquid,coffee,HasProperty: coffee is liquid,1 +brown,coffee,HasProperty: coffee is brown,1 +aromatic,coffee,HasProperty: coffee is aromatic,1 +caffeinated,coffee,HasProperty: coffee is caffeinated,1 +brewed,coffee,HasProperty: coffee is brewed,1 +bathroom,comb,AtLocation: you find a comb in a bathroom,1 +toiletry_bag,comb,AtLocation: you find a comb in a toiletry bag,1 +backpack,comb,AtLocation: you find a comb in a backpack,1 +drawer_in_bedroom,comb,AtLocation: you find a comb in a bedroom drawer,1 +detangle_hair,comb,UsedFor: a comb is used for detangling hair,1 +distribute_hair_product,comb,UsedFor: a comb is used for distributing hair products,1 +remove_lint,comb,UsedFor: a comb is used for removing lint,1 +scratch_head,comb,UsedFor: a comb is used for scratching your head,1 +handle,comb,HasA: a comb has a handle,1 +bristles,comb,HasA: a comb has bristles,1 +grooming_kit,comb,PartOf: a comb is part of a grooming kit,1 +hair_styling_kit,comb,PartOf: a comb is part of a hair styling kit,1 +separate_hair,comb,CapableOf: a comb can separate hair,1 +smooth_hair,comb,CapableOf: a comb can smooth hair,1 +style_hair,comb,CapableOf: a comb can style hair,1 +hair,comb,HasPrerequisite: you need hair to use a comb,1 +hand,comb,HasPrerequisite: you need a hand to hold a comb,1 +smoothness,comb,Causes: combing hair causes smoothness,1 +neatness,comb,Causes: using a comb causes neatness,1 +flat,comb,HasProperty: a comb has flat surfaces,1 +rigid,comb,HasProperty: a comb has rigid structure,1 +handheld,comb,HasProperty: a comb is handheld,1 +portable,comb,HasProperty: a comb is portable,1 +programming,computer,UsedFor: a computer is used for programming,1 +hard_drive,computer,HasA: a computer has a hard drive,1 +system,computer,PartOf: a computer is part of a system,1 +store_data,computer,CapableOf: a computer can store data,1 +internet_connection,computer,HasPrerequisite: you need an internet connection to use a computer,1 +eye_strain,computer,Causes: a computer causes eye strain,1 +heavy,computer,HasProperty: a computer is heavy,1 +observation,condor,UsedFor: a condor is used for observation,1 +beak,condor,HasA: a condor has a beak,1 +ecosystem,condor,PartOf: a condor is part of an ecosystem,1 +soar,condor,CapableOf: a condor can soar,1 +mountainous_terrain,condor,HasPrerequisite: you need mountainous terrain before you can find a condor,1 +interest,condor,Causes: a condor causes interest,1 +large,condor,HasProperty: a condor is large,1 +farm,coop,AtLocation: a coop is found on a farm,1 +housing_chickens,coop,UsedFor: a coop is used for housing chickens,1 +nesting_box,coop,HasA: a coop has a nesting box,1 +perch,coop,HasA: a coop has a perch,1 +farmstead,coop,PartOf: a coop is part of a farmstead,1 +protecting_chickens,coop,CapableOf: a coop can protect chickens,1 +metal,coop,MadeOf: a coop is made of metal,1 +land,coop,HasPrerequisite: you need land before you can have a coop,1 +eggs,coop,Causes: a coop causes eggs to be laid,1 +small,coop,HasProperty: a coop is small,1 +wooden,coop,HasProperty: a coop is wooden,1 +lake,coot,AtLocation: you find a coot at a lake,1 +marsh,coot,AtLocation: you find a coot at a marsh,1 +eating,coot,UsedFor: people eat coot,1 +fishing,coot,UsedFor: coot is used for fishing,1 +observation,coot,UsedFor: people watch coot,1 +hunting,coot,UsedFor: coot is used for hunting,1 +study,coot,UsedFor: scientists study coot,1 +beak,coot,HasA: a coot has a beak,1 +wings,coot,HasA: a coot has wings,1 +feet,coot,HasA: a coot has feet,1 +feathers,coot,HasA: a coot has feathers,1 +tail,coot,HasA: a coot has a tail,1 +bird,coot,PartOf: a coot is part of bird,1 +flock,coot,PartOf: a coot is part of a flock,1 +ecosystem,coot,PartOf: a coot is part of an ecosystem,1 +swim,coot,CapableOf: a coot can swim,1 +dive,coot,CapableOf: a coot can dive,1 +eat,coot,CapableOf: a coot can eat,1 +sleep,coot,CapableOf: a coot can sleep,1 +food,coot,HasPrerequisite: a coot needs food,1 +air,coot,HasPrerequisite: a coot needs air,1 +noise,coot,Causes: a coot causes noise,1 +interest,coot,Causes: a coot causes interest,1 +food,coot,Causes: a coot causes food,1 +brown,coot,HasProperty: a coot is brown,1 +small,coot,HasProperty: a coot is small,1 +wet,coot,HasProperty: a coot is wet,1 +wild,coot,HasProperty: a coot is wild,1 +making_pipes,copper,UsedFor: copper is used for making pipes,1 +making_coins,copper,UsedFor: copper is used for making coins,1 +electrical_conductivity,copper,UsedFor: copper is used for electrical conductivity,1 +color,copper,HasA: copper has a color,1 +electrical_circuit,copper,PartOf: copper is part of an electrical circuit,1 +plumbing_system,copper,PartOf: copper is part of a plumbing system,1 +conducting_heat,copper,CapableOf: copper can conduct heat,1 +being_melted,copper,CapableOf: copper can be melted,1 +ore,copper,MadeOf: copper is made of ore,1 +mining,copper,HasPrerequisite: you need mining to get copper,1 +corrosion,copper,Causes: copper causes corrosion,1 +conductive,copper,HasProperty: copper is conductive,1 +malleable,copper,HasProperty: copper is malleable,1 +sealing,cork,UsedFor: a cork is used for sealing,1 +floating,cork,UsedFor: a cork is used for floating,1 +hole,cork,HasA: a cork has a hole,1 +wine_bottle,cork,PartOf: a cork is part of a wine bottle,1 +corkscrew_set,cork,PartOf: a cork is part of a corkscrew set,1 +floating,cork,CapableOf: a cork can float,1 +cork_oak,cork,MadeOf: a cork is made of cork oak,1 +opening,cork,Causes: a cork causes opening,1 +buoyant,cork,HasProperty: a cork is buoyant,1 +lightweight,cork,HasProperty: a cork is lightweight,1 +sea,cormorant,AtLocation: you find a cormorant near the sea,1 +fishing,cormorant,UsedFor: a cormorant is used for fishing,1 +beak,cormorant,HasA: a cormorant has a beak,1 +ecosystem,cormorant,PartOf: a cormorant is part of an ecosystem,1 +diving,cormorant,CapableOf: a cormorant can dive,1 +black,cormorant,HasProperty: a cormorant is black,1 +kitchen,cornbread,AtLocation: you find cornbread in a kitchen,1 +eating,cornbread,UsedFor: cornbread is used for eating,1 +meal,cornbread,PartOf: cornbread is part of a meal,1 +satisfying,cornbread,CapableOf: cornbread can satisfy hunger,1 +cornmeal,cornbread,MadeOf: cornbread is made of cornmeal,1 +fullness,cornbread,Causes: cornbread causes fullness,1 +crumbly,cornbread,HasProperty: cornbread is crumbly,1 +eating_insects,cotinga,UsedFor: a cotinga is used for eating insects,1 +beak,cotinga,HasA: a cotinga has a beak,1 +bird_family,cotinga,PartOf: a cotinga is part of a bird family,1 +flying,cotinga,CapableOf: a cotinga can fly,1 +feathers,cotinga,MadeOf: a cotinga is made of feathers,1 +trees,cotinga,HasPrerequisite: you need trees before you can find a cotinga,1 +singing,cotinga,Causes: a cotinga causes singing,1 +colorful,cotinga,HasProperty: a cotinga is colorful,1 +gin,cotton,AtLocation: cotton is processed in a gin,1 +textile_mill,cotton,AtLocation: cotton is processed in textile mills,1 +cottonseed,cotton,AtLocation: cotton is found around cottonseed,1 +stuffing,cotton,UsedFor: cotton is used for stuffing pillows,1 +quilting,cotton,UsedFor: cotton is used for quilting,1 +bandages,cotton,UsedFor: cotton is used for making bandages,1 +filters,cotton,UsedFor: cotton is used for making filters,1 +diapers,cotton,UsedFor: cotton is used for making diapers,1 +seed,cotton,HasA: cotton has seeds inside,1 +fiber,cotton,HasA: cotton has fibers,1 +boll,cotton,HasA: cotton has bolls on the plant,1 +lint,cotton,HasA: cotton has lint,1 +thread,cotton,HasA: cotton can be processed into thread,1 +cotton_boll,cotton,PartOf: cotton is part of a boll,1 +crop,cotton,PartOf: cotton is part of agriculture crops,1 +natural_fabric,cotton,PartOf: cotton is part of natural fabrics,1 +textile,cotton,PartOf: cotton is part of textiles,1 +plant_fiber,cotton,PartOf: cotton is part of plant fibers,1 +hold_water,cotton,CapableOf: cotton can hold water,1 +soften,cotton,CapableOf: cotton can soften fabric,1 +wick,cotton,CapableOf: cotton can wick moisture,1 +spin,cotton,CapableOf: cotton can be spun into thread,1 +grow,cotton,CapableOf: cotton can grow in fields,1 +plant,cotton,MadeOf: cotton is made of plant material,1 +cellulose,cotton,MadeOf: cotton is made of cellulose,1 +natural_fibers,cotton,MadeOf: cotton is made of natural fibers,1 +seed_hair,cotton,MadeOf: cotton is made of seed hair,1 +plant_cells,cotton,MadeOf: cotton is made of plant cells,1 +sunlight,cotton,HasPrerequisite: cotton needs sunlight to grow,1 +soil,cotton,HasPrerequisite: cotton needs soil to grow,1 +land,cotton,HasPrerequisite: cotton needs land to grow,1 +cultivation,cotton,HasPrerequisite: cotton needs cultivation to grow,1 +lint,cotton,Causes: cotton causes lint,1 +softness,cotton,Causes: cotton causes softness in fabric,1 +warmth,cotton,Causes: cotton causes warmth when worn,1 +breathability,cotton,Causes: cotton causes breathability in clothing,1 +absorbency,cotton,Causes: cotton causes absorbency in materials,1 +breathable,cotton,HasProperty: cotton is breathable,1 +hypoallergenic,cotton,HasProperty: cotton is hypoallergenic,1 +durable,cotton,HasProperty: cotton is durable,1 +lightweight,cotton,HasProperty: cotton is lightweight,1 +renewable,cotton,HasProperty: cotton is renewable,1 +pest_control,cowbird,UsedFor: a cowbird is used for pest control,1 +beak,cowbird,HasA: a cowbird has a beak,1 +bird_family,cowbird,PartOf: a cowbird is part of bird family,1 +feathers,cowbird,MadeOf: a cowbird is made of feathers,1 +trees,cowbird,HasPrerequisite: you need trees before you can have a cowbird,1 +eggs_laid,cowbird,Causes: a cowbird causes eggs laid,1 +small,cowbird,HasProperty: a cowbird is small,1 +ocean,crab,AtLocation: crabs are found in the ocean,1 +seafood_restaurant,crab,AtLocation: crabs are served in seafood restaurants,1 +fishing_net,crab,AtLocation: crabs can be caught in fishing nets,1 +rock_pile,crab,AtLocation: crabs hide under rock piles,1 +eating,crab,UsedFor: crabs are used for eating,1 +bait,crab,UsedFor: crabs are used as bait,1 +decoration,crab,UsedFor: crabs are used for decoration,1 +fishing,crab,UsedFor: crabs are used for fishing,1 +claws,crab,HasA: a crab has claws,1 +eyes,crab,HasA: a crab has eyes,1 +legs,crab,HasA: a crab has legs,1 +seafood,crab,PartOf: crabs are part of seafood,1 +ocean_ecosystem,crab,PartOf: crabs are part of the ocean ecosystem,1 +pinch,crab,CapableOf: a crab can pinch,1 +swim,crab,CapableOf: a crab can swim,1 +crawl,crab,CapableOf: a crab can crawl,1 +hide,crab,CapableOf: a crab can hide,1 +flesh,crab,MadeOf: crabs are made of flesh,1 +shell_material,crab,MadeOf: crabs are made of shell material,1 +food,crab,HasPrerequisite: crabs need food,1 +pain,crab,Causes: crabs can cause pain,1 +interest,crab,Causes: crabs cause interest,1 +dinner,crab,Causes: crabs cause dinner,1 +hard,crab,HasProperty: crabs are hard,1 +edible,crab,HasProperty: crabs are edible,1 +small,crab,HasProperty: crabs are small,1 +red,crab,HasProperty: crabs are red,1 +cooking,cranberry,UsedFor: cranberries are used for cooking,1 +making_sauce,cranberry,UsedFor: cranberries are used for making sauce,1 +garnishing,cranberry,UsedFor: cranberries are used for garnishing,1 +seed,cranberry,HasA: a cranberry has a seed,1 +fruit_group,cranberry,PartOf: cranberry is part of the fruit group,1 +growing,cranberry,CapableOf: a cranberry can grow,1 +juice,cranberry,MadeOf: a cranberry is made of juice,1 +pulp,cranberry,MadeOf: a cranberry is made of pulp,1 +tartness,cranberry,Causes: cranberries cause tartness,1 +sweetness,cranberry,Causes: cranberries cause sweetness,1 +red,cranberry,HasProperty: a cranberry is red,1 +round,cranberry,HasProperty: a cranberry is round,1 +tart,cranberry,HasProperty: a cranberry is tart,1 +eating,crappie,UsedFor: crappie is used for eating,1 +scales,crappie,HasA: a crappie has scales,1 +ecosystem,crappie,PartOf: a crappie is part of an ecosystem,1 +swimming,crappie,CapableOf: a crappie can swim,1 +fish_flesh,crappie,MadeOf: a crappie is made of fish flesh,1 +excitement,crappie,Causes: catching a crappie causes excitement,1 +white,crappie,HasProperty: a crappie has white flesh,1 +mountainside,creek,AtLocation: you find a creek on a mountainside,1 +hillside,creek,AtLocation: a creek runs down a hillside,1 +cool_off,creek,UsedFor: you can use a creek to cool off,1 +stones,creek,HasA: a creek has stones,1 +wildlife,creek,HasA: a creek has wildlife,1 +ecosystem,creek,PartOf: a creek is part of an ecosystem,1 +erode,creek,CapableOf: a creek can erode,1 +flow,creek,CapableOf: a creek can flow,1 +rain,creek,HasPrerequisite: you need rain for a creek,1 +humidity,creek,Causes: a creek causes humidity,1 +moisture,creek,Causes: a creek causes moisture,1 +cold,creek,HasProperty: a creek is cold,1 +shallow,creek,HasProperty: a creek is shallow,1 +narrow,creek,HasProperty: a creek is narrow,1 +farm,crow,AtLocation: you find a crow on a farm,1 +cawing,crow,UsedFor: a crow is used for cawing,1 +beak,crow,HasA: a crow has a beak,1 +nature,crow,PartOf: a crow is part of nature,1 +bird_seed,crow,HasPrerequisite: you need bird seed before you can attract a crow,1 +alarm,crow,Causes: a crow causes alarm,1 +black,crow,HasProperty: a crow is black,1 +signaling,cuckoo,UsedFor: a cuckoo is used for signaling,1 +beak,cuckoo,HasA: a cuckoo has a beak,1 +nature,cuckoo,PartOf: a cuckoo is part of nature,1 +flying,cuckoo,CapableOf: a cuckoo can fly,1 +food,cuckoo,HasPrerequisite: a cuckoo needs food,1 +sound,cuckoo,Causes: a cuckoo causes sound,1 +feathered,cuckoo,HasProperty: a cuckoo is feathered,1 +sandwich,cucumber,UsedFor: a cucumber is used for sandwich,1 +pickling,cucumber,UsedFor: a cucumber is used for pickling,1 +hydration,cucumber,UsedFor: a cucumber is used for hydration,1 +cooking,cucumber,UsedFor: a cucumber is used for cooking,1 +seed,cucumber,HasA: a cucumber has a seed,1 +skin,cucumber,HasA: a cucumber has a skin,1 +flesh,cucumber,HasA: a cucumber has a flesh,1 +cooling,cucumber,CapableOf: a cucumber can cooling,1 +growing,cucumber,CapableOf: a cucumber can growing,1 +hydrating,cucumber,CapableOf: a cucumber can hydrating,1 +plant,cucumber,MadeOf: a cucumber is made of plant,1 +soil,cucumber,HasPrerequisite: you need soil before you can have a cucumber,1 +sunlight,cucumber,HasPrerequisite: you need sunlight before you can grow a cucumber,1 +freshness,cucumber,Causes: a cucumber causes freshness,1 +satisfaction,cucumber,Causes: a cucumber causes satisfaction,1 +nutrition,cucumber,Causes: a cucumber causes nutrition,1 +green,cucumber,HasProperty: a cucumber is green,1 +cool,cucumber,HasProperty: a cucumber is cool,1 +crisp,cucumber,HasProperty: a cucumber is crisp,1 +long,cucumber,HasProperty: a cucumber is long,1 +cylindrical,cucumber,HasProperty: a cucumber is cylindrical,1 +kitchen,cumin,AtLocation: you find cumin in a kitchen,1 +cooking,cumin,UsedFor: cumin is used for cooking,1 +adding_flavor,cumin,UsedFor: cumin is used for adding flavor,1 +seasoning,cumin,UsedFor: cumin is used for seasoning,1 +making_curry,cumin,UsedFor: cumin is used for making curry,1 +seed,cumin,HasA: cumin has seeds,1 +spice_rack,cumin,PartOf: cumin is part of a spice rack,1 +curry_powder,cumin,PartOf: cumin is part of curry powder,1 +mexican_cuisine,cumin,PartOf: cumin is part of mexican cuisine,1 +flavoring,cumin,CapableOf: cumin can flavor food,1 +preserving,cumin,CapableOf: cumin can preserve food,1 +stimulating,cumin,CapableOf: cumin can stimulate digestion,1 +plant,cumin,MadeOf: cumin is made of a plant,1 +seed,cumin,MadeOf: cumin is made of seeds,1 +harvesting,cumin,HasPrerequisite: you need harvesting before you have cumin,1 +drying,cumin,HasPrerequisite: you need drying before you have cumin,1 +grinding,cumin,HasPrerequisite: you need grinding before you have ground cumin,1 +aroma,cumin,Causes: cumin causes an aroma,1 +flavor,cumin,Causes: cumin causes flavor,1 +warmth,cumin,Causes: cumin causes warmth in food,1 +digestion,cumin,Causes: cumin causes digestion,1 +pungent,cumin,HasProperty: cumin is pungent,1 +earthy,cumin,HasProperty: cumin has an earthy smell,1 +brown,cumin,HasProperty: cumin is brown in color,1 +aromatic,cumin,HasProperty: cumin is aromatic,1 +forest,curassow,AtLocation: you find a curassow in a forest,1 +food,curassow,UsedFor: a curassow is used for food,1 +beak,curassow,HasA: a curassow has a beak,1 +wings,curassow,HasA: a curassow has wings,1 +bird,curassow,PartOf: a curassow is part of bird,1 +peck,curassow,CapableOf: a curassow can peck,1 +bone,curassow,MadeOf: a curassow is made of bone,1 +feather,curassow,MadeOf: a curassow is made of feather,1 +forest,curassow,HasPrerequisite: you need a forest before you can find a curassow,1 +feathers,curassow,Causes: a curassow causes feathers,1 +eggs,curassow,Causes: a curassow causes eggs,1 +large,curassow,HasProperty: a curassow is large,1 +black,curassow,HasProperty: a curassow is black,1 +kitchen,curry,AtLocation: you find curry in a kitchen,1 +flavoring,curry,UsedFor: curry is used for flavoring food,1 +cooking,curry,UsedFor: curry is used for cooking,1 +yellow_color,curry,HasA: curry has a yellow color,1 +curry_powder,curry,HasA: curry has curry powder,1 +spice_mixture,curry,HasA: curry has a spice mixture,1 +curry_powder,curry,PartOf: curry is part of curry powder,1 +heating,curry,CapableOf: curry can heat up,1 +cooking,curry,HasPrerequisite: you need cooking before you can have curry,1 +ingredients,curry,HasPrerequisite: you need ingredients before you can make curry,1 +satisfaction,curry,Causes: curry causes satisfaction,1 +warmth,curry,Causes: curry causes warmth,1 +building,cypress,UsedFor: cypress wood is used for building,1 +needle,cypress,HasA: a cypress has needle-like leaves,1 +forest,cypress,PartOf: a cypress is part of a forest,1 +grow,cypress,CapableOf: a cypress can grow tall,1 +sunlight,cypress,HasPrerequisite: sunlight is required for a cypress to grow,1 +shade,cypress,Causes: a cypress causes shade,1 +decorating,daffodil,UsedFor: a daffodil is used for decorating,1 +petal,daffodil,HasA: a daffodil has petals,1 +bouquet,daffodil,PartOf: a daffodil is part of a bouquet,1 +blooming,daffodil,CapableOf: a daffodil can bloom,1 +plant,daffodil,MadeOf: a daffodil is made of plant material,1 +sunlight,daffodil,HasPrerequisite: a daffodil needs sunlight to grow,1 +brightening,daffodil,Causes: a daffodil causes brightening of a room,1 +yellow,daffodil,HasProperty: a daffodil is yellow,1 +decoration,daisy,UsedFor: a daisy is used for decoration,1 +petal,daisy,HasA: a daisy has a petal,1 +bouquet,daisy,PartOf: a daisy is part of a bouquet,1 +bloom,daisy,CapableOf: a daisy can bloom,1 +soil,daisy,HasPrerequisite: you need soil to grow a daisy,1 +happiness,daisy,Causes: a daisy causes happiness,1 +white,daisy,HasProperty: a daisy is white,1 +yellow,daisy,HasProperty: a daisy has a yellow center,1 +field,dandelion,AtLocation: you find a dandelion in a field,1 +lawn,dandelion,AtLocation: you find a dandelion in a lawn,1 +medicine,dandelion,UsedFor: dandelion is used for medicine,1 +salads,dandelion,UsedFor: dandelion is used for salads,1 +flower,dandelion,HasA: a dandelion has a flower,1 +leaf,dandelion,HasA: a dandelion has a leaf,1 +seed,dandelion,HasA: a dandelion has a seed,1 +flowerbed,dandelion,PartOf: a dandelion is part of a flowerbed,1 +wildflower,dandelion,PartOf: a dandelion is part of a wildflower,1 +flora,dandelion,PartOf: a dandelion is part of flora,1 +plant,dandelion,PartOf: a dandelion is part of a plant,1 +blooming,dandelion,CapableOf: a dandelion can bloom,1 +spreading,dandelion,CapableOf: a dandelion can spread,1 +growing,dandelion,CapableOf: a dandelion can grow,1 +seeding,dandelion,CapableOf: a dandelion can seed,1 +flowering,dandelion,CapableOf: a dandelion can flower,1 +plant,dandelion,MadeOf: a dandelion is made of plant,1 +chlorophyll,dandelion,MadeOf: a dandelion is made of chlorophyll,1 +cells,dandelion,MadeOf: a dandelion is made of cells,1 +matter,dandelion,MadeOf: a dandelion is made of matter,1 +tissue,dandelion,MadeOf: a dandelion is made of tissue,1 +sunlight,dandelion,HasPrerequisite: dandelion needs sunlight,1 +soil,dandelion,HasPrerequisite: dandelion needs soil,1 +nutrients,dandelion,HasPrerequisite: dandelion needs nutrients,1 +air,dandelion,HasPrerequisite: dandelion needs air,1 +allergy,dandelion,Causes: dandelion causes allergy,1 +weed,dandelion,Causes: dandelion causes weed,1 +flowers,dandelion,Causes: dandelion causes flowers,1 +spread,dandelion,Causes: dandelion causes spread,1 +growth,dandelion,Causes: dandelion causes growth,1 +yellow,dandelion,HasProperty: a dandelion is yellow,1 +green,dandelion,HasProperty: a dandelion is green,1 +fuzzy,dandelion,HasProperty: a dandelion is fuzzy,1 +edible,dandelion,HasProperty: a dandelion is edible,1 +natural,dandelion,HasProperty: a dandelion is natural,1 +liquor_store,decanter,AtLocation: you find decanters in a liquor store,1 +wine_shop,decanter,AtLocation: you find decanters in a wine shop,1 +aging_spirit,decanter,UsedFor: a decanter is used for aging spirit,1 +decant_spirit,decanter,UsedFor: a decanter is used to decant spirit,1 +decant_wine,decanter,UsedFor: a decanter is used to decant wine,1 +holding_spirit,decanter,UsedFor: a decanter is used for holding spirit,1 +serving_spirit,decanter,UsedFor: a decanter is used for serving spirit,1 +transferring_wine,decanter,UsedFor: a decanter is used for transferring wine,1 +stopper,decanter,HasA: a decanter has a stopper,1 +handle,decanter,HasA: a decanter has a handle,1 +barware_set,decanter,PartOf: a decanter is part of barware set,1 +glassware_set,decanter,PartOf: a decanter is part of glassware set,1 +pour_liquid,decanter,CapableOf: a decanter can pour liquid,1 +store_liquid,decanter,CapableOf: a decanter can store liquid,1 +contain_liquid,decanter,CapableOf: a decanter can contain liquid,1 +display_beautifully,decanter,CapableOf: a decanter can display beautifully,1 +crystal,decanter,MadeOf: a decanter is made of crystal,1 +pottery,decanter,MadeOf: a decanter is made of pottery,1 +stoneware,decanter,MadeOf: a decanter is made of stoneware,1 +empty_container,decanter,HasPrerequisite: you need an empty container before you can use a decanter,1 +liquid_to_transfer,decanter,HasPrerequisite: you need liquid to transfer before you can use a decanter,1 +clear_liquid,decanter,Causes: a decanter causes clear liquid,1 +smooth_taste,decanter,Causes: a decanter causes smooth taste,1 +sediment_separation,decanter,Causes: a decanter causes sediment separation,1 +temperature_control,decanter,Causes: a decanter causes temperature control,1 +decorative,decanter,HasProperty: a decanter is decorative,1 +elegant,decanter,HasProperty: a decanter is elegant,1 +transparent,decanter,HasProperty: a decanter is transparent,1 +glassy,decanter,HasProperty: a decanter is glassy,1 +forest,deer,AtLocation: a deer is found in a forest,1 +food,deer,UsedFor: a deer is used for food,1 +hunting,deer,UsedFor: a deer is used for hunting,1 +tail,deer,HasA: a deer has a tail,1 +antlers,deer,HasA: a deer has antlers,1 +hooves,deer,HasA: a deer has hooves,1 +ecosystem,deer,PartOf: a deer is part of an ecosystem,1 +food_chain,deer,PartOf: a deer is part of the food chain,1 +run,deer,CapableOf: a deer can run,1 +jump,deer,CapableOf: a deer can jump,1 +graze,deer,CapableOf: a deer can graze,1 +hide,deer,CapableOf: a deer can hide,1 +fur,deer,MadeOf: a deer is made of fur,1 +meat,deer,MadeOf: a deer is made of meat,1 +bone,deer,MadeOf: a deer is made of bone,1 +grassland,deer,HasPrerequisite: you need grassland to have deer,1 +forest,deer,HasPrerequisite: you need forest to have deer,1 +excitement,deer,Causes: a deer can cause excitement,1 +alarm,deer,Causes: a deer can cause alarm,1 +brown,deer,HasProperty: a deer is brown,1 +graceful,deer,HasProperty: a deer is graceful,1 +timid,deer,HasProperty: a deer is timid,1 +basement,den,AtLocation: a den is often found in a basement,1 +home,den,AtLocation: a den is located in a home,1 +living_area,den,AtLocation: you find a den in a living area,1 +storage,den,UsedFor: a den is used for storage,1 +entertaining,den,UsedFor: a den is used for entertaining guests,1 +conversation,den,UsedFor: a den is used for casual conversation,1 +chair,den,HasA: a den has a chair,1 +bookshelf,den,HasA: a den has a bookshelf,1 +lamp,den,HasA: a den has a lamp,1 +television,den,HasA: a den has a television,1 +house,den,PartOf: a den is part of a house,1 +seating,den,CapableOf: a den can seat several people,1 +containing,den,CapableOf: a den can contain furniture and personal items,1 +drywall,den,MadeOf: a den is made of drywall,1 +construction,den,HasPrerequisite: you need construction before you have a den,1 +room,den,HasPrerequisite: you need a room before you can make a den,1 +comfort,den,Causes: a den causes comfort,1 +privacy,den,Causes: a den causes privacy,1 +cozy,den,HasProperty: a den has a cozy property,1 +enclosed,den,HasProperty: a den has an enclosed property,1 +private,den,HasProperty: a den has a private property,1 +denim_store,denim,AtLocation: you find denim in a denim store,1 +craft_studio,denim,AtLocation: you find denim in a craft studio,1 +making_curtains,denim,UsedFor: denim is used for making curtains,1 +making_bags,denim,UsedFor: denim is used for making bags,1 +making_shirts,denim,UsedFor: denim is used for making shirts,1 +making_hats,denim,UsedFor: denim is used for making hats,1 +making_aprons,denim,UsedFor: denim is used for making aprons,1 +making_scarves,denim,UsedFor: denim is used for making scarves,1 +making_slacks,denim,UsedFor: denim is used for making slacks,1 +thread,denim,HasA: denim has thread,1 +weave,denim,HasA: denim has a distinctive weave,1 +denim_jacket,denim,PartOf: denim is part of a denim jacket,1 +denim_skirt,denim,PartOf: denim is part of a denim skirt,1 +denim_shirt,denim,PartOf: denim is part of a denim shirt,1 +denim_overalls,denim,PartOf: denim is part of denim overalls,1 +denim_shorts,denim,PartOf: denim is part of denim shorts,1 +durability,denim,CapableOf: denim can provide durability,1 +protection,denim,CapableOf: denim can provide protection,1 +yarn,denim,MadeOf: denim is made of yarn,1 +threads,denim,MadeOf: denim is made of threads,1 +cotton_fiber,denim,HasPrerequisite: you need cotton fiber to make denim,1 +weaving_machine,denim,HasPrerequisite: you need a weaving machine to make denim,1 +comfort,denim,Causes: denim causes comfort,1 +warmth,denim,Causes: denim causes warmth,1 +sturdy,denim,HasProperty: denim is sturdy,1 +rough,denim,HasProperty: denim can be rough,1 +blue,denim,HasProperty: denim is often blue,1 +thick,denim,HasProperty: denim is often thick,1 +home_office,desk,AtLocation: a desk can be found in a home office,1 +classroom,desk,AtLocation: you might find a desk in a classroom,1 +reception_area,desk,AtLocation: reception areas often contain desks,1 +studying,desk,UsedFor: students use desks for studying,1 +storing_books,desk,UsedFor: you can store books on a desk,1 +keeping_a_computer,desk,UsedFor: desks are used for keeping computers,1 +leg,desk,HasA: a desk has a leg,1 +corner,desk,HasA: a desk has a corner,1 +drawer_handle,desk,HasA: a desk has a drawer handle,1 +office_furniture_set,desk,PartOf: a desk is part of office furniture,1 +home_study_set,desk,PartOf: a desk is part of home study furniture,1 +supporting_weight,desk,CapableOf: a desk can support weight,1 +holding_items,desk,CapableOf: a desk can hold various items,1 +organizing_space,desk,CapableOf: a desk helps organize space,1 +creating_workspace,desk,CapableOf: a desk can create a workspace,1 +metal,desk,MadeOf: some desks are made of metal,1 +particle_board,desk,MadeOf: office desks are made of particle board,1 +room_space,desk,HasPrerequisite: you need room space to place a desk,1 +floor,desk,HasPrerequisite: you need a floor to place a desk on,1 +desk_legs,desk,HasPrerequisite: desks need legs to be usable,1 +flat_surface_material,desk,HasPrerequisite: desks need a material for their surface,1 +productivity,desk,Causes: having a desk can cause productivity,1 +focus,desk,Causes: a desk can cause focus in a workspace,1 +organization,desk,Causes: a desk causes organization of materials,1 +study_environment,desk,Causes: desks create study environments,1 +sturdy,desk,HasProperty: desks are usually sturdy,1 +rectangular,desk,HasProperty: desks are typically rectangular,1 +functional,desk,HasProperty: desks are functional furniture pieces,1 +supportive,desk,HasProperty: desks provide support for items,1 +geologist_office,diamond,AtLocation: diamonds are found in geologist offices,1 +auction_house,diamond,AtLocation: diamonds are found in auction houses,1 +polishing,diamond,UsedFor: diamonds are used for polishing,1 +gemstone,diamond,UsedFor: diamonds are used as gemstones,1 +investment,diamond,UsedFor: diamonds are used for investment,1 +facet,diamond,HasA: a diamond has facets,1 +carat_weight,diamond,HasA: a diamond has carat weight,1 +necklace,diamond,PartOf: a diamond is part of a necklace,1 +earring,diamond,PartOf: a diamond is part of an earring,1 +sparkle,diamond,CapableOf: a diamond can sparkle,1 +refract_light,diamond,CapableOf: a diamond can refract light,1 +break,diamond,CapableOf: a diamond can break,1 +cut_other_stones,diamond,CapableOf: a diamond can cut other stones,1 +stone,diamond,MadeOf: a diamond is made of stone,1 +crystal,diamond,MadeOf: a diamond is made of crystal,1 +mining,diamond,HasPrerequisite: diamonds require mining,1 +cutting,diamond,HasPrerequisite: diamonds require cutting,1 +polishing,diamond,HasPrerequisite: diamonds require polishing,1 +wealth,diamond,Causes: diamonds cause wealth,1 +envy,diamond,Causes: diamonds cause envy,1 +security,diamond,Causes: diamonds cause security,1 +brilliant,diamond,HasProperty: a diamond is brilliant,1 +faceted,diamond,HasProperty: a diamond is faceted,1 +hard,diamond,HasProperty: a diamond is hard,1 +lustrous,diamond,HasProperty: a diamond is lustrous,1 +yard,dirt,AtLocation: you find dirt in a yard,1 +hole,dirt,AtLocation: you find dirt in a hole,1 +gardening,dirt,UsedFor: dirt is used for gardening,1 +digging,dirt,UsedFor: dirt is used for digging,1 +planting,dirt,UsedFor: dirt is used for planting,1 +construction,dirt,UsedFor: dirt is used for construction,1 +texture,dirt,HasA: dirt has a texture,1 +smell,dirt,HasA: dirt has a smell,1 +moisture,dirt,HasA: dirt has moisture,1 +color,dirt,HasA: dirt has a color,1 +soil,dirt,PartOf: dirt is part of soil,1 +ground,dirt,PartOf: dirt is part of ground,1 +landscape,dirt,PartOf: dirt is part of landscape,1 +planet,dirt,PartOf: dirt is part of planet,1 +filling,dirt,CapableOf: dirt can fill holes,1 +eroding,dirt,CapableOf: dirt can erode,1 +compacting,dirt,CapableOf: dirt can compact,1 +settling,dirt,CapableOf: dirt can settle,1 +particles,dirt,MadeOf: dirt is made of particles,1 +minerals,dirt,MadeOf: dirt is made of minerals,1 +organic_matter,dirt,MadeOf: dirt is made of organic matter,1 +rock_fragments,dirt,MadeOf: dirt is made of rock fragments,1 +earth,dirt,HasPrerequisite: you need earth to have dirt,1 +weathering,dirt,HasPrerequisite: you need weathering to have dirt,1 +decomposition,dirt,HasPrerequisite: you need decomposition to have dirt,1 +erosion,dirt,HasPrerequisite: you need erosion to have dirt,1 +staining,dirt,Causes: dirt causes staining,1 +mess,dirt,Causes: dirt causes a mess,1 +growth,dirt,Causes: dirt causes growth,1 +erosion,dirt,Causes: dirt causes erosion,1 +brown,dirt,HasProperty: dirt is brown,1 +dry,dirt,HasProperty: dirt is dry,1 +wet,dirt,HasProperty: dirt is wet,1 +crumbly,dirt,HasProperty: dirt is crumbly,1 +loose,dirt,HasProperty: dirt is loose,1 +roadside,ditch,AtLocation: a ditch is found at the roadside,1 +drainage,ditch,UsedFor: a ditch is used for drainage,1 +landscape,ditch,PartOf: a ditch is part of a landscape,1 +holding,ditch,CapableOf: a ditch can hold water,1 +digging,ditch,HasPrerequisite: you need to dig before you can have a ditch,1 +flooding,ditch,Causes: a ditch can cause flooding,1 +wet,ditch,HasProperty: a ditch is wet,1 +museum,dodo,AtLocation: you find a dodo in a museum,1 +forest,dogwood,AtLocation: you find a dogwood in a forest,1 +decoration,dogwood,UsedFor: a dogwood is used for decoration,1 +flower,dogwood,HasA: a dogwood has a flower,1 +growing,dogwood,CapableOf: a dogwood can grow,1 +soil,dogwood,HasPrerequisite: you need soil for a dogwood,1 +shade,dogwood,Causes: a dogwood causes shade,1 +woody,dogwood,HasProperty: a dogwood is woody,1 +peace,dove,UsedFor: a dove is used for symbolizing peace,1 +wing,dove,HasA: a dove has a wing,1 +flock,dove,PartOf: a dove is part of a flock,1 +feather,dove,MadeOf: a dove is made of feather,1 +happiness,dove,Causes: a dove causes happiness,1 +white,dove,HasProperty: a dove is white,1 +wardrobe,dress,AtLocation: you find a dress in a wardrobe,1 +suitcase,dress,AtLocation: you pack a dress in a suitcase,1 +wearing,dress,UsedFor: a dress is used for wearing,1 +special_occasions,dress,UsedFor: a dress is used for special occasions,1 +parties,dress,UsedFor: a dress is used for parties,1 +sleeve,dress,HasA: a dress has a sleeve,1 +collar,dress,HasA: a dress has a collar,1 +outfit,dress,PartOf: a dress is part of an outfit,1 +silk,dress,MadeOf: a dress can be made of silk,1 +sewing_machine,dress,HasPrerequisite: you need a sewing machine to make a dress,1 +fabric,dress,HasPrerequisite: you need fabric to make a dress,1 +looking_nice,dress,Causes: wearing a dress causes looking nice,1 +feeling_elegant,dress,Causes: wearing a dress causes feeling elegant,1 +covering_skin,dress,Causes: a dress causes covering skin,1 +flowing,dress,CapableOf: a dress can flow when worn,1 +showing_shape,dress,CapableOf: a dress can show shape when worn,1 +protecting,dress,CapableOf: a dress can protect from elements,1 +long,dress,HasProperty: a dress can be long,1 +short,dress,HasProperty: a dress can be short,1 +colorful,dress,HasProperty: a dress can be colorful,1 +sheer,dress,HasProperty: a dress can be sheer,1 +construction_site,drill,AtLocation: you find a drill at a construction site,1 +screwing_screws,drill,UsedFor: a drill is used for screwing screws,1 +attaching_hardware,drill,UsedFor: a drill is used for attaching hardware,1 +bit,drill,HasA: a drill has a bit,1 +handle,drill,HasA: a drill has a handle,1 +chuck,drill,HasA: a drill has a chuck,1 +toolkit,drill,PartOf: a drill is part of a toolkit,1 +workshop,drill,PartOf: a drill is part of a workshop,1 +creating_holes,drill,CapableOf: a drill can create holes,1 +driving_screws,drill,CapableOf: a drill can drive screws,1 +fastening_nails,drill,CapableOf: a drill can fasten nails,1 +metal,drill,MadeOf: a drill is made of metal,1 +rubber,drill,MadeOf: a drill is made of rubber,1 +electricity,drill,HasPrerequisite: a drill requires electricity,1 +batteries,drill,HasPrerequisite: a drill requires batteries,1 +power_source,drill,HasPrerequisite: a drill requires a power source,1 +holes,drill,Causes: a drill causes holes,1 +screws,drill,Causes: a drill causes screws,1 +noise,drill,Causes: a drill causes noise,1 +sharp,drill,HasProperty: a drill is sharp,1 +heavy,drill,HasProperty: a drill is heavy,1 +metal,drill,HasProperty: a drill is metal,1 +drum_kit,drum,AtLocation: a drum is part of a drum kit,1 +drum_shop,drum,AtLocation: a drum is found in a drum shop,1 +rhythm,drum,UsedFor: a drum is used for rhythm,1 +percussion,drum,UsedFor: a drum is used for percussion,1 +drumming,drum,UsedFor: a drum is used for drumming,1 +skin,drum,HasA: a drum has a skin,1 +head,drum,HasA: a drum has a head,1 +drum_set,drum,PartOf: a drum is part of a drum set,1 +vibrating,drum,CapableOf: a drum can vibrate,1 +resonating,drum,CapableOf: a drum can resonate,1 +metal,drum,MadeOf: a drum is made of metal,1 +music_lesson,drum,HasPrerequisite: you need a music lesson before you can use a drum,1 +musician,drum,HasPrerequisite: a musician is needed before a drum can be used,1 +vibration,drum,Causes: a drum causes vibration,1 +sound,drum,Causes: a drum causes sound,1 +rhythm,drum,Causes: a drum causes rhythm,1 +cylindrical,drum,HasProperty: a drum has a cylindrical shape,1 +percussive,drum,HasProperty: a drum has a percussive sound,1 +sky,eagle,AtLocation: an eagle is found in the sky,1 +hunting,eagle,UsedFor: an eagle is used for hunting,1 +soaring,eagle,UsedFor: an eagle is used for soaring,1 +sharp_beak,eagle,HasA: an eagle has a sharp beak,1 +powerful_claws,eagle,HasA: an eagle has powerful claws,1 +sky,eagle,PartOf: an eagle is part of the sky,1 +ecosystem,eagle,PartOf: an eagle is part of an ecosystem,1 +dive,eagle,CapableOf: an eagle can dive,1 +catch_fish,eagle,CapableOf: an eagle can catch fish,1 +fly_high,eagle,CapableOf: an eagle can fly high,1 +feathers,eagle,MadeOf: an eagle is made of feathers,1 +bones,eagle,MadeOf: an eagle is made of bones,1 +habitat,eagle,HasPrerequisite: you need habitat before you can have an eagle,1 +food_chain,eagle,HasPrerequisite: you need a food chain before you can have an eagle,1 +fear,eagle,Causes: an eagle causes fear in prey,1 +awe,eagle,Causes: an eagle causes awe in observers,1 +large,eagle,HasProperty: an eagle is large,1 +powerful,eagle,HasProperty: an eagle is powerful,1 +majestic,eagle,HasProperty: an eagle is majestic,1 +soil,earthworm,AtLocation: earthworms are found in soil,1 +fishing,earthworm,UsedFor: earthworms are used for fishing bait,1 +composting,earthworm,UsedFor: earthworms are used for composting,1 +segments,earthworm,HasA: earthworms have segments,1 +head,earthworm,HasA: earthworms have a head,1 +soil_ecosystem,earthworm,PartOf: earthworms are part of the soil ecosystem,1 +burrowing,earthworm,CapableOf: earthworms can burrow,1 +moving,earthworm,CapableOf: earthworms can move,1 +reproducing,earthworm,CapableOf: earthworms can reproduce,1 +tissue,earthworm,MadeOf: earthworms are made of tissue,1 +cells,earthworm,MadeOf: earthworms are made of cells,1 +moist_soil,earthworm,HasPrerequisite: earthworms need moist soil,1 +oxygen,earthworm,HasPrerequisite: earthworms need oxygen,1 +soil_aeration,earthworm,Causes: earthworms cause soil aeration,1 +nutrient_cycling,earthworm,Causes: earthworms cause nutrient cycling,1 +slimy,earthworm,HasProperty: earthworms are slimy,1 +long,earthworm,HasProperty: earthworms are long,1 +segmented,earthworm,HasProperty: earthworms are segmented,1 +eating,earwig,UsedFor: an earwig is used for eating,1 +wings,earwig,HasA: an earwig has wings,1 +ecosystem,earwig,PartOf: an earwig is part of an ecosystem,1 +crawling,earwig,CapableOf: an earwig can crawl,1 +food,earwig,HasPrerequisite: an earwig needs food,1 +small,earwig,HasProperty: an earwig is small,1 +ocean,eel,AtLocation: you find an eel in the ocean,1 +sushi,eel,UsedFor: an eel is used for making sushi,1 +tail,eel,HasA: an eel has a tail,1 +seafood,eel,PartOf: an eel is part of seafood,1 +swim,eel,CapableOf: an eel can swim,1 +meal,eel,Causes: an eel causes a meal,1 +slippery,eel,HasProperty: an eel is slippery,1 +kitchen,egg,AtLocation: you find eggs in a kitchen,1 +farm,egg,AtLocation: you find eggs at a farm,1 +baking,egg,UsedFor: eggs are used for baking,1 +breakfast,egg,UsedFor: eggs are used for breakfast,1 +protein,egg,UsedFor: eggs are used for protein,1 +binding,egg,UsedFor: eggs are used for binding ingredients together,1 +yolk,egg,HasA: an egg has a yolk,1 +white,egg,HasA: an egg has a white,1 +membrane,egg,HasA: an egg has a membrane,1 +breakfast_table,egg,PartOf: eggs are part of a breakfast table,1 +meal,egg,PartOf: eggs are part of a meal,1 +cracking,egg,CapableOf: an egg can crack,1 +floating,egg,CapableOf: an egg can float,1 +hatching,egg,CapableOf: an egg can hatch,1 +sinking,egg,CapableOf: an egg can sink,1 +calcium,egg,MadeOf: an egg is made of calcium,1 +protein,egg,MadeOf: an egg is made of protein,1 +yolk,egg,MadeOf: an egg is made of yolk,1 +albumen,egg,MadeOf: an egg is made of albumen,1 +hen,egg,HasPrerequisite: you need a hen to get an egg,1 +oviposition,egg,HasPrerequisite: you need oviposition to get an egg,1 +mess,egg,Causes: an egg causes a mess when broken,1 +nutrition,egg,Causes: an egg causes nutrition when eaten,1 +fertilization,egg,Causes: an egg causes fertilization when fertilized,1 +hatching,egg,Causes: an egg causes hatching when incubated,1 +fragile,egg,HasProperty: an egg is fragile,1 +smooth,egg,HasProperty: an egg is smooth,1 +edible,egg,HasProperty: an egg is edible,1 +oval,egg,HasProperty: an egg is oval,1 +yellow,egg,HasProperty: an egg can be yellow inside,1 +grocery_store,eggplant,AtLocation: you find an eggplant in a grocery store,1 +farmer_market,eggplant,AtLocation: you find an eggplant at a farmer market,1 +cooking,eggplant,UsedFor: an eggplant is used for cooking,1 +baking,eggplant,UsedFor: an eggplant is used for baking,1 +frying,eggplant,UsedFor: an eggplant is used for frying,1 +seed,eggplant,HasA: an eggplant has a seed,1 +skin,eggplant,HasA: an eggplant has a skin,1 +vegetable_platter,eggplant,PartOf: an eggplant is part of a vegetable platter,1 +absorbing,eggplant,CapableOf: an eggplant can absorbing oil,1 +plant_material,eggplant,MadeOf: an eggplant is made of plant material,1 +soil,eggplant,HasPrerequisite: you need soil before you can grow an eggplant,1 +fullness,eggplant,Causes: eating eggplant causes fullness,1 +satisfaction,eggplant,Causes: eating eggplant causes satisfaction,1 +jewelry,emerald,UsedFor: an emerald is used for jewelry,1 +facet,emerald,HasA: an emerald has a facet,1 +ring,emerald,PartOf: an emerald is part of a ring,1 +sparkle,emerald,CapableOf: an emerald can sparkle,1 +stone,emerald,MadeOf: an emerald is made of stone,1 +mining,emerald,HasPrerequisite: you need mining before you can get an emerald,1 +wealth,emerald,Causes: an emerald causes wealth,1 +australia,emu,AtLocation: you find an emu in Australia,1 +racing,emu,UsedFor: an emu is used for racing,1 +feathers,emu,HasA: an emu has feathers,1 +bird,emu,PartOf: an emu is part of the bird family,1 +run,emu,CapableOf: an emu can run,1 +australia,emu,HasPrerequisite: you need Australia to have an emu,1 +surprise,emu,Causes: an emu causes surprise,1 +tall,emu,HasProperty: an emu is tall,1 +mountain,evergreen,AtLocation: evergreens are found on mountains,1 +decoration,evergreen,UsedFor: evergreens are used for decoration during holidays,1 +needle,evergreen,HasA: an evergreen has needles instead of leaves,1 +forest,evergreen,PartOf: evergreen is part of a forest ecosystem,1 +photosynthesize,evergreen,CapableOf: evergreen is capable of photosynthesizing,1 +sunlight,evergreen,HasPrerequisite: evergreen requires sunlight to grow,1 +oxygen,evergreen,Causes: evergreen causes oxygen production,1 +green,evergreen,HasProperty: evergreen has a green property,1 +hunting,falcon,UsedFor: a falcon is used for hunting,1 +beak,falcon,HasA: a falcon has a beak,1 +ecosystem,falcon,PartOf: a falcon is part of the ecosystem,1 +dive,falcon,CapableOf: a falcon can dive,1 +yard,fence,AtLocation: you find a fence in a yard,1 +enhancing_security,fence,UsedFor: a fence is used for enhancing security,1 +preventing_intrusion,fence,UsedFor: a fence is used for preventing intrusion,1 +supporting_plants,fence,UsedFor: a fence is used for supporting plants,1 +gate,fence,HasA: a fence has a gate,1 +panels,fence,HasA: a fence has panels,1 +property,fence,PartOf: a fence is part of a property,1 +block_view,fence,CapableOf: a fence can block view,1 +contain_children,fence,CapableOf: a fence can contain children,1 +support_climbing_plants,fence,CapableOf: a fence can support climbing plants,1 +metal,fence,MadeOf: a fence is made of metal,1 +vinyl,fence,MadeOf: a fence is made of vinyl,1 +measure_property,fence,HasPrerequisite: you need to measure property before building a fence,1 +obtain_permits,fence,HasPrerequisite: you need to obtain permits before installing a fence,1 +boundary_clearance,fence,Causes: a fence causes boundary clearance,1 +improved_security,fence,Causes: a fence causes improved security,1 +visual_barrier,fence,Causes: a fence causes visual barrier,1 +tall,fence,HasProperty: a fence can be tall,1 +sturdy,fence,HasProperty: a fence is sturdy,1 +visible,fence,HasProperty: a fence is visible,1 +cage,ferret,AtLocation: you find a ferret in a cage,1 +hunting,ferret,UsedFor: ferrets are used for hunting,1 +companionship,ferret,UsedFor: ferrets are used for companionship,1 +tail,ferret,HasA: a ferret has a tail,1 +fur,ferret,HasA: a ferret has fur,1 +household,ferret,PartOf: a ferret is part of a household,1 +family,ferret,PartOf: a ferret is part of a family,1 +dig,ferret,CapableOf: a ferret can dig,1 +run,ferret,CapableOf: a ferret can run,1 +sleep,ferret,CapableOf: a ferret can sleep,1 +hunt,ferret,CapableOf: a ferret can hunt,1 +food,ferret,HasPrerequisite: you need food before you can have a ferret,1 +care,ferret,HasPrerequisite: you need care before you can have a ferret,1 +joy,ferret,Causes: having a ferret causes joy,1 +mischief,ferret,Causes: having a ferret causes mischief,1 +small,ferret,HasProperty: a ferret is small,1 +furry,ferret,HasProperty: a ferret is furry,1 +slender,ferret,HasProperty: a ferret is slender,1 +eating,fig,UsedFor: a fig is used for eating,1 +baking,fig,UsedFor: a fig is used for baking,1 +jam_making,fig,UsedFor: a fig is used for making jam,1 +seed,fig,HasA: a fig has seeds,1 +skin,fig,HasA: a fig has a skin,1 +fig_tree,fig,PartOf: a fig is part of a fig tree,1 +ripening,fig,CapableOf: a fig can ripen,1 +fruit,fig,MadeOf: a fig is made of fruit,1 +fig_tree,fig,HasPrerequisite: a fig has a fig tree as a prerequisite,1 +sweetness,fig,Causes: a fig causes sweetness,1 +sweet,fig,HasProperty: a fig is sweet,1 +juicy,fig,HasProperty: a fig is juicy,1 +soft,fig,HasProperty: a fig is soft,1 +field,firefly,AtLocation: you find a firefly in a field,1 +lighting,firefly,UsedFor: fireflies are used for lighting,1 +decoration,firefly,UsedFor: fireflies are used for decoration,1 +wings,firefly,HasA: a firefly has wings,1 +light,firefly,HasA: a firefly has a light,1 +ecosystem,firefly,PartOf: a firefly is part of an ecosystem,1 +nature,firefly,PartOf: a firefly is part of nature,1 +glow,firefly,CapableOf: a firefly can glow,1 +body,firefly,MadeOf: a firefly is made of a body,1 +exoskeleton,firefly,MadeOf: a firefly is made of an exoskeleton,1 +warmth,firefly,HasPrerequisite: you need warmth before you can have fireflies,1 +damp,firefly,HasPrerequisite: you need damp conditions before you can have fireflies,1 +wonder,firefly,Causes: fireflies cause wonder,1 +delight,firefly,Causes: fireflies cause delight,1 +small,firefly,HasProperty: a firefly is small,1 +delicate,firefly,HasProperty: a firefly is delicate,1 +luminous,firefly,HasProperty: a firefly is luminous,1 +eating,fish,UsedFor: fish is used for eating,1 +fishing_bait,fish,UsedFor: fish is used for fishing bait,1 +food,fish,UsedFor: fish is used for food,1 +tail_fin,fish,HasA: a fish has a tail fin,1 +eyes,fish,HasA: a fish has eyes,1 +mouth,fish,HasA: a fish has a mouth,1 +nose,fish,HasA: a fish has a nose,1 +skin,fish,HasA: a fish has skin,1 +ecosystem,fish,PartOf: a fish is part of an ecosystem,1 +food_chain,fish,PartOf: a fish is part of a food chain,1 +aquarium,fish,PartOf: a fish is part of an aquarium,1 +river_system,fish,PartOf: a fish is part of a river system,1 +breathe,fish,CapableOf: a fish can breathe,1 +eat,fish,CapableOf: a fish can eat,1 +reproduce,fish,CapableOf: a fish can reproduce,1 +survive,fish,CapableOf: a fish can survive,1 +grow,fish,CapableOf: a fish can grow,1 +hide,fish,CapableOf: a fish can hide,1 +protein,fish,MadeOf: a fish is made of protein,1 +fat,fish,MadeOf: a fish is made of fat,1 +muscle,fish,MadeOf: a fish is made of muscle,1 +tissue,fish,MadeOf: a fish is made of tissue,1 +oxygen,fish,HasPrerequisite: you need oxygen before you can have a fish,1 +food,fish,HasPrerequisite: you need food before you can have a fish,1 +habitat,fish,HasPrerequisite: you need a habitat before you can have a fish,1 +water_temperature,fish,HasPrerequisite: you need water temperature before you can have a fish,1 +satisfaction,fish,Causes: eating fish causes satisfaction,1 +satiety,fish,Causes: eating fish causes satiety,1 +health_benefits,fish,Causes: eating fish causes health benefits,1 +fish_stick,fish,Causes: cooking fish causes fish sticks,1 +sushi,fish,Causes: preparing fish causes sushi,1 +slimy,fish,HasProperty: a fish is slimy,1 +slippery,fish,HasProperty: a fish is slippery,1 +cold-blooded,fish,HasProperty: a fish is cold-blooded,1 +aquatic,fish,HasProperty: a fish is aquatic,1 +scaly,fish,HasProperty: a fish is scaly,1 +decoration,flamingo,UsedFor: a flamingo is used for decoration,1 +beak,flamingo,HasA: a flamingo has a beak,1 +aviary,flamingo,PartOf: a flamingo is part of an aviary,1 +bones,flamingo,MadeOf: a flamingo is made of bones,1 +delight,flamingo,Causes: a flamingo causes delight,1 +pink,flamingo,HasProperty: a flamingo is pink,1 +briefcase,flask,AtLocation: a flask is found in a briefcase,1 +backpack,flask,AtLocation: a flask is found in a backpack,1 +purse,flask,AtLocation: a flask is found in a purse,1 +bar,flask,AtLocation: a flask is found in a bar,1 +storing_water,flask,UsedFor: a flask is used for storing water,1 +camping,flask,UsedFor: a flask is used for camping,1 +travel,flask,UsedFor: a flask is used for travel,1 +hiking,flask,UsedFor: a flask is used for hiking,1 +cap,flask,HasA: a flask has a cap,1 +lid,flask,HasA: a flask has a lid,1 +handle,flask,HasA: a flask has a handle,1 +spout,flask,HasA: a flask has a spout,1 +survival_kit,flask,PartOf: a flask is part of a survival kit,1 +preserve_cold,flask,CapableOf: a flask can preserve cold,1 +transport_liquid,flask,CapableOf: a flask can transport liquid,1 +keep_hot,flask,CapableOf: a flask can keep hot,1 +hold_coffee,flask,CapableOf: a flask can hold coffee,1 +metal,flask,MadeOf: a flask is made of metal,1 +stainless_steel,flask,MadeOf: a flask is made of stainless steel,1 +liquid,flask,HasPrerequisite: a flask requires liquid,1 +opening,flask,HasPrerequisite: a flask requires an opening,1 +lid,flask,HasPrerequisite: a flask requires a lid,1 +container,flask,HasPrerequisite: a flask requires a container,1 +refreshment,flask,Causes: a flask causes refreshment,1 +satisfaction,flask,Causes: a flask causes satisfaction,1 +hydration,flask,Causes: a flask causes hydration,1 +thirst_quenching,flask,Causes: a flask causes thirst quenching,1 +portable,flask,HasProperty: a flask is portable,1 +sealed,flask,HasProperty: a flask is sealed,1 +insulated,flask,HasProperty: a flask is insulated,1 +durable,flask,HasProperty: a flask is durable,1 +compact,flask,HasProperty: a flask is compact,1 +ground,flint,AtLocation: you find flint on the ground,1 +sharpen_edge,flint,UsedFor: flint is used for sharpening an edge,1 +make_arrowheads,flint,UsedFor: flint is used for making arrowheads,1 +edge,flint,HasA: flint has an edge,1 +make_noise,flint,CapableOf: flint can make noise when struck,1 +chip_off,flint,CapableOf: flint can chip off when struck,1 +find,flint,HasPrerequisite: you need to find flint before using it,1 +fire,flint,Causes: flint causes fire when struck,1 +hard,flint,HasProperty: flint is hard,1 +gray,flint,HasProperty: flint is gray,1 +rough,flint,HasProperty: flint is rough,1 +ocean,flounder,AtLocation: you find a flounder in the ocean,1 +eating,flounder,UsedFor: a flounder is used for eating,1 +fins,flounder,HasA: a flounder has fins,1 +seafood,flounder,PartOf: a flounder is part of seafood,1 +swimming,flounder,CapableOf: a flounder can swim,1 +flesh,flounder,MadeOf: a flounder is made of flesh,1 +meal,flounder,Causes: a flounder causes a meal,1 +flat,flounder,HasProperty: a flounder is flat,1 +music_classroom,flute,AtLocation: you find a flute in a music classroom,1 +teaching_music,flute,UsedFor: a flute is used for teaching music,1 +producing_sound,flute,UsedFor: a flute is used for producing sound,1 +holes,flute,HasA: a flute has holes,1 +mouthpiece,flute,HasA: a flute has a mouthpiece,1 +marching_band,flute,PartOf: a flute is part of a marching band,1 +producing_tone,flute,CapableOf: a flute can produce tone,1 +making_noise,flute,CapableOf: a flute can make noise,1 +metal,flute,MadeOf: a flute is made of metal,1 +mouth,flute,HasPrerequisite: you need a mouth to play a flute,1 +breath,flute,HasPrerequisite: you need breath to play a flute,1 +sound,flute,Causes: a flute causes sound,1 +music,flute,Causes: a flute causes music,1 +melody,flute,Causes: a flute causes melody,1 +cylindrical,flute,HasProperty: a flute is cylindrical,1 +lightweight,flute,HasProperty: a flute is lightweight,1 +window,fly,AtLocation: you find a fly near a window,1 +house,fly,AtLocation: a fly is found in a house,1 +trash,fly,AtLocation: flies are often found near trash,1 +pollination,fly,UsedFor: a fly is used for pollination,1 +legs,fly,HasA: a fly has legs,1 +antennae,fly,HasA: a fly has antennae,1 +eyes,fly,HasA: a fly has eyes,1 +ecosystem,fly,PartOf: a fly is part of an ecosystem,1 +buzz,fly,CapableOf: a fly can buzz,1 +land,fly,CapableOf: a fly can land,1 +bite,fly,CapableOf: some flies can bite,1 +chitin,fly,MadeOf: a fly is made of chitin,1 +hatch_from_egg,fly,HasPrerequisite: a fly requires hatching from an egg,1 +warm_weather,fly,HasPrerequisite: flies often appear when there is warm weather,1 +annoyance,fly,Causes: a fly causes annoyance,1 +disease,fly,Causes: flies can cause disease,1 +buzzing,fly,Causes: a fly causes buzzing sound,1 +eating,flycatcher,UsedFor: a flycatcher is used for eating insects,1 +beak,flycatcher,HasA: a flycatcher has a beak,1 +bird,flycatcher,PartOf: a flycatcher is part of the bird category,1 +insects,flycatcher,HasPrerequisite: a flycatcher requires insects as a prerequisite,1 +eating,flycatcher,Causes: a flycatcher causes eating of insects,1 +small,flycatcher,HasProperty: a flycatcher is small,1 +forest,fox,AtLocation: a fox lives in the forest,1 +woods,fox,AtLocation: a fox can be found in the woods,1 +hunting,fox,UsedFor: a fox can be used for hunting,1 +fur,fox,UsedFor: a fox is used for its fur,1 +snout,fox,HasA: a fox has a snout,1 +claws,fox,HasA: a fox has claws,1 +ecosystem,fox,PartOf: a fox is part of the ecosystem,1 +wildlife,fox,PartOf: a fox is part of wildlife,1 +dig,fox,CapableOf: a fox can dig,1 +howl,fox,CapableOf: a fox can howl,1 +hunt,fox,CapableOf: a fox can hunt,1 +run_fast,fox,CapableOf: a fox can run fast,1 +fur,fox,MadeOf: a fox is made of fur,1 +meat,fox,MadeOf: a fox is made of meat,1 +food,fox,HasPrerequisite: a fox needs food to survive,1 +alarm,fox,Causes: a fox causes alarm,1 +curiosity,fox,Causes: a fox causes curiosity,1 +clever,fox,HasProperty: a fox is clever,1 +field,furrow,AtLocation: you find a furrow in a field,1 +planting,furrow,UsedFor: a furrow is used for planting,1 +soil,furrow,HasA: a furrow has soil,1 +earth,furrow,PartOf: a furrow is part of earth,1 +holding,furrow,CapableOf: a furrow can hold water,1 +earth,furrow,MadeOf: a furrow is made of earth,1 +growth,furrow,Causes: a furrow causes plant growth,1 +long,furrow,HasProperty: a furrow is long,1 +street,gallery,AtLocation: you find a gallery on a street,1 +building,gallery,AtLocation: you find a gallery in a building,1 +shopping_mall,gallery,AtLocation: you find a gallery in a shopping mall,1 +gallery_district,gallery,AtLocation: you find a gallery in a gallery district,1 +exhibit,gallery,UsedFor: a gallery is used for exhibit,1 +showcase_art,gallery,UsedFor: a gallery is used for showcasing art,1 +art_appreciation,gallery,UsedFor: a gallery is used for art appreciation,1 +art_education,gallery,UsedFor: a gallery is used for art education,1 +art_collection,gallery,HasA: a gallery has an art collection,1 +exhibition_space,gallery,HasA: a gallery has an exhibition space,1 +artwork,gallery,HasA: a gallery has artwork,1 +display_case,gallery,HasA: a gallery has display cases,1 +frame,gallery,HasA: a gallery has frames,1 +cultural_institution,gallery,PartOf: a gallery is part of a cultural institution,1 +art_scene,gallery,PartOf: a gallery is part of an art scene,1 +building_complex,gallery,PartOf: a gallery is part of a building complex,1 +cultural_district,gallery,PartOf: a gallery is part of a cultural district,1 +hosting_events,gallery,CapableOf: a gallery can host events,1 +renting_space,gallery,CapableOf: a gallery can rent out its space,1 +selling_artworks,gallery,CapableOf: a gallery can sell artworks,1 +attracting_visitors,gallery,CapableOf: a gallery can attract visitors,1 +concrete,gallery,MadeOf: a gallery is made of concrete,1 +brick,gallery,MadeOf: a gallery is made of brick,1 +artist,gallery,HasPrerequisite: you need an artist before you can have a gallery,1 +art_pieces,gallery,HasPrerequisite: you need art pieces before you can use a gallery,1 +space,gallery,HasPrerequisite: you need space before you can have a gallery,1 +funding,gallery,HasPrerequisite: you need funding before you can have a gallery,1 +inspiration,gallery,Causes: a gallery causes inspiration,1 +appreciation,gallery,Causes: a gallery causes appreciation,1 +learning,gallery,Causes: a gallery causes learning,1 +discussion,gallery,Causes: a gallery causes discussion,1 +large,gallery,HasProperty: a gallery is large,1 +spacious,gallery,HasProperty: a gallery is spacious,1 +well_lit,gallery,HasProperty: a gallery is well lit,1 +inviting,gallery,HasProperty: a gallery is inviting,1 +ocean,gannet,AtLocation: gannets are found near the ocean,1 +fishing,gannet,UsedFor: gannets are used for fishing,1 +beak,gannet,HasA: gannets have a beak,1 +ecosystem,gannet,PartOf: gannets are part of the ecosystem,1 +dive,gannet,CapableOf: gannets can dive,1 +nesting,gannet,Causes: gannets cause nesting,1 +white,gannet,HasProperty: gannets are white,1 +garden_gnome,garden,AtLocation: you find a garden gnome in a garden,1 +path,garden,AtLocation: you find a path in a garden,1 +meditation,garden,UsedFor: a garden is used for meditation,1 +exercise,garden,UsedFor: a garden is used for exercise,1 +growing_herbs,garden,UsedFor: a garden is used for growing herbs,1 +vegetables,garden,HasA: a garden has vegetables,1 +herbs,garden,HasA: a garden has herbs,1 +fruit,garden,HasA: a garden has fruit,1 +shrubs,garden,HasA: a garden has shrubs,1 +landscape,garden,PartOf: a garden is part of a landscape,1 +property,garden,PartOf: a garden is part of a property,1 +grounds,garden,PartOf: a garden is part of grounds,1 +residence,garden,PartOf: a garden is part of a residence,1 +provide_fresh_air,garden,CapableOf: a garden can provide fresh air,1 +reduce_stress,garden,CapableOf: a garden can reduce stress,1 +attract_birds,garden,CapableOf: a garden can attract birds,1 +provide_shade,garden,CapableOf: a garden can provide shade,1 +soil,garden,MadeOf: a garden is made of soil,1 +plants,garden,MadeOf: a garden is made of plants,1 +flowers,garden,MadeOf: a garden is made of flowers,1 +vegetables,garden,MadeOf: a garden is made of vegetables,1 +good_soil,garden,HasPrerequisite: you need good soil to have a garden,1 +water_source,garden,HasPrerequisite: you need a water source to have a garden,1 +sunshine,garden,HasPrerequisite: you need sunshine to have a garden,1 +space,garden,HasPrerequisite: you need space to have a garden,1 +relaxation,garden,Causes: a garden causes relaxation,1 +enjoyment,garden,Causes: a garden causes enjoyment,1 +beauty,garden,Causes: a garden causes beauty,1 +growth,garden,Causes: a garden causes growth,1 +green,garden,HasProperty: a garden is green,1 +colorful,garden,HasProperty: a garden is colorful,1 +lush,garden,HasProperty: a garden is lush,1 +natural,garden,HasProperty: a garden is natural,1 +jewelry,garnet,UsedFor: a garnet is used for jewelry,1 +shine,garnet,HasA: a garnet has a shine,1 +mineral,garnet,MadeOf: a garnet is made of mineral,1 +red,garnet,HasProperty: a garnet is red,1 +shiny,garnet,HasProperty: a garnet is shiny,1 +hard,garnet,HasProperty: a garnet is hard,1 +sparkle,garnet,Causes: a garnet causes sparkle,1 +polishing,garnet,CapableOf: a garnet can be polished,1 +grassland,gazelle,AtLocation: a gazelle lives on a grassland,1 +food,gazelle,UsedFor: a gazelle is used for food,1 +horn,gazelle,HasA: a gazelle has horns,1 +leg,gazelle,HasA: a gazelle has legs,1 +ecosystem,gazelle,PartOf: a gazelle is part of an ecosystem,1 +food_chain,gazelle,PartOf: a gazelle is part of the food chain,1 +run,gazelle,CapableOf: a gazelle can run,1 +jump,gazelle,CapableOf: a gazelle can jump,1 +flee,gazelle,CapableOf: a gazelle can flee,1 +graze,gazelle,CapableOf: a gazelle can graze,1 +flesh,gazelle,MadeOf: a gazelle is made of flesh,1 +bone,gazelle,MadeOf: a gazelle is made of bone,1 +excitement,gazelle,Causes: a gazelle causes excitement in hunters,1 +hunger,gazelle,Causes: a gazelle causes hunger in predators,1 +slender,gazelle,HasProperty: a gazelle is slender,1 +graceful,gazelle,HasProperty: a gazelle is graceful,1 +agile,gazelle,HasProperty: a gazelle is agile,1 +decoration,gem,UsedFor: a gem is used for decoration,1 +jewelry,gem,UsedFor: a gem is used for making jewelry,1 +shine,gem,HasA: a gem has a shine,1 +facet,gem,HasA: a gem has a facet,1 +sparkle,gem,CapableOf: a gem can sparkle,1 +mineral,gem,MadeOf: a gem is made of mineral,1 +mining,gem,HasPrerequisite: you need mining before you can have a gem,1 +value,gem,Causes: a gem causes value,1 +hard,gem,HasProperty: a gem is hard,1 +colorful,gem,HasProperty: a gem is colorful,1 +smooth,gem,HasProperty: a gem is smooth,1 +grocery_store,ginger,AtLocation: you find ginger in a grocery store,1 +cooking,ginger,UsedFor: ginger is used for cooking,1 +flavoring,ginger,UsedFor: ginger is used for flavoring,1 +medicine,ginger,UsedFor: ginger is used for medicine,1 +fibers,ginger,HasA: ginger has fibers,1 +gingerbread,ginger,PartOf: ginger is part of gingerbread,1 +spice_rack,ginger,PartOf: ginger is part of a spice rack,1 +spicing,ginger,CapableOf: ginger can spice,1 +plant,ginger,MadeOf: ginger is made of plant,1 +harvest,ginger,HasPrerequisite: ginger requires harvest before you can use it,1 +warmth,ginger,Causes: ginger causes warmth,1 +digestion,ginger,Causes: ginger causes digestion,1 +pungent,ginger,HasProperty: ginger is pungent,1 +aromatic,ginger,HasProperty: ginger is aromatic,1 +spicy,ginger,HasProperty: ginger is spicy,1 +forest,ginseng,AtLocation: you find ginseng in a forest,1 +healing,ginseng,UsedFor: ginseng is used for healing,1 +medicine,ginseng,UsedFor: ginseng is used for medicine,1 +boosting,ginseng,UsedFor: ginseng is used for boosting energy,1 +tonic,ginseng,UsedFor: ginseng is used as a tonic,1 +leaf,ginseng,HasA: ginseng has a leaf,1 +growing,ginseng,CapableOf: ginseng can grow,1 +plant,ginseng,MadeOf: ginseng is made of plant material,1 +soil,ginseng,HasPrerequisite: you need soil before you can grow ginseng,1 +health,ginseng,Causes: ginseng causes health benefits,1 +energy,ginseng,Causes: ginseng causes energy,1 +woody,ginseng,HasProperty: ginseng has a woody property,1 +aromatic,ginseng,HasProperty: ginseng has an aromatic property,1 +decoration,gladiola,UsedFor: a gladiola is used for decoration,1 +flowerbed,gladiola,PartOf: a gladiola is part of a flowerbed,1 +grow,gladiola,CapableOf: a gladiola can grow,1 +plant_matter,gladiola,MadeOf: a gladiola is made of plant matter,1 +sunlight,gladiola,HasPrerequisite: a gladiola requires sunlight,1 +happiness,gladiola,Causes: a gladiola causes happiness,1 +colorful,gladiola,HasProperty: a gladiola is colorful,1 +shelf,glass,AtLocation: you find a glass on a shelf,1 +decorative_purposes,glass,UsedFor: glass is used for decorative purposes,1 +preserving_food,glass,UsedFor: glass is used for preserving food,1 +smooth_surface,glass,HasA: a glass has a smooth surface,1 +transparent_appearance,glass,HasA: a glass has a transparent appearance,1 +drinking_set,glass,PartOf: a glass is part of a drinking set,1 +refracting_light,glass,CapableOf: glass can refract light,1 +holding_food,glass,CapableOf: glass can hold food,1 +recycled_materials,glass,MadeOf: glass is made of recycled materials,1 +glass_material,glass,MadeOf: glass is made of glass material,1 +molten_material,glass,HasPrerequisite: you need molten material before you can make glass,1 +reflection,glass,Causes: glass causes reflection,1 +transparent,glass,HasProperty: glass is transparent,1 +grocery_store,gnocchi,AtLocation: you find gnocchi in a grocery store,1 +eating,gnocchi,UsedFor: gnocchi is used for eating,1 +shape,gnocchi,HasA: gnocchi has a shape,1 +meal,gnocchi,PartOf: gnocchi is part of a meal,1 +cooking,gnocchi,CapableOf: gnocchi can be cooking,1 +recipe,gnocchi,HasPrerequisite: you need a recipe before you can make gnocchi,1 +satiety,gnocchi,Causes: gnocchi causes satiety,1 +bank_vault,gold,AtLocation: you find gold in a bank vault,1 +electronics,gold,UsedFor: gold is used for electronics,1 +dental_filling,gold,UsedFor: gold is used for dental filling,1 +coin_making,gold,UsedFor: gold is used for coin making,1 +shine,gold,HasA: gold has shine,1 +rarity,gold,HasA: gold has rarity,1 +ring,gold,PartOf: gold is part of a ring,1 +necklace,gold,PartOf: gold is part of a necklace,1 +bracelet,gold,PartOf: gold is part of a bracelet,1 +conducting_electricity,gold,CapableOf: gold can conduct electricity,1 +resisting_corrosion,gold,CapableOf: gold can resist corrosion,1 +mining,gold,HasPrerequisite: you need mining before you can have gold,1 +wealth,gold,Causes: gold causes wealth,1 +investment,gold,Causes: gold causes investment,1 +heavy,gold,HasProperty: gold is heavy,1 +dense,gold,HasProperty: gold is dense,1 +malleable,gold,HasProperty: gold is malleable,1 +soft,gold,HasProperty: gold is soft,1 +aquarium,goldfish,AtLocation: you find a goldfish in an aquarium,1 +fishbowl,goldfish,AtLocation: you find a goldfish in a fishbowl,1 +pet,goldfish,UsedFor: a goldfish is used as a pet,1 +decoration,goldfish,UsedFor: a goldfish is used for decoration,1 +education,goldfish,UsedFor: a goldfish is used for education,1 +tail,goldfish,HasA: a goldfish has a tail,1 +fin,goldfish,HasA: a goldfish has a fin,1 +aquarium,goldfish,PartOf: a goldfish is part of an aquarium,1 +fish_family,goldfish,PartOf: a goldfish is part of a fish family,1 +swim,goldfish,CapableOf: a goldfish can swim,1 +breathe,goldfish,CapableOf: a goldfish can breathe underwater,1 +eat,goldfish,CapableOf: a goldfish can eat food,1 +meat,goldfish,MadeOf: a goldfish is made of meat,1 +food,goldfish,HasPrerequisite: you need food before you can keep a goldfish,1 +joy,goldfish,Causes: a goldfish causes joy,1 +sadness,goldfish,Causes: a goldfish causes sadness when it dies,1 +small,goldfish,HasProperty: a goldfish is small,1 +colorful,goldfish,HasProperty: a goldfish is colorful,1 +wet,goldfish,HasProperty: a goldfish is wet,1 +eating,goose,UsedFor: geese are used for eating,1 +making_down_pillows,goose,UsedFor: geese provide material for making down pillows,1 +feather,goose,HasA: a goose has feathers,1 +webbed_feet,goose,HasA: a goose has webbed feet,1 +flock,goose,PartOf: a goose is part of a flock,1 +swim,goose,CapableOf: a goose can swim,1 +honk,goose,CapableOf: a goose can honk,1 +migrate,goose,CapableOf: a goose can migrate,1 +animal_matter,goose,MadeOf: a goose is made of animal matter,1 +water_source,goose,HasPrerequisite: a goose requires a water source,1 +alarm,goose,Causes: a goose can cause alarm,1 +loud_noise,goose,Causes: a goose can cause loud noise,1 +large,goose,HasProperty: a goose is large,1 +feathered,goose,HasProperty: a goose is feathered,1 +white,goose,HasProperty: a goose is white,1 +forest,gorilla,AtLocation: a gorilla lives in a forest,1 +jungle,gorilla,AtLocation: a gorilla lives in a jungle,1 +research,gorilla,UsedFor: a gorilla is used for research,1 +study,gorilla,UsedFor: a gorilla is used for study,1 +fur,gorilla,HasA: a gorilla has fur,1 +tail,gorilla,HasA: a gorilla has no tail,1 +hand,gorilla,HasA: a gorilla has hands,1 +foot,gorilla,HasA: a gorilla has feet,1 +primate,gorilla,PartOf: a gorilla is part of primates,1 +species,gorilla,PartOf: a gorilla is part of a species,1 +climb,gorilla,CapableOf: a gorilla can climb,1 +eat_banana,gorilla,CapableOf: a gorilla can eat a banana,1 +make_nest,gorilla,CapableOf: a gorilla can make a nest,1 +swing,gorilla,CapableOf: a gorilla can swing,1 +muscle,gorilla,MadeOf: a gorilla is made of muscle,1 +bone,gorilla,MadeOf: a gorilla is made of bone,1 +tissue,gorilla,MadeOf: a gorilla is made of tissue,1 +forest,gorilla,HasPrerequisite: you need a forest before you can have a gorilla,1 +jungle,gorilla,HasPrerequisite: you need a jungle before you can have a gorilla,1 +fear,gorilla,Causes: a gorilla causes fear,1 +awe,gorilla,Causes: a gorilla causes awe,1 +large,gorilla,HasProperty: a gorilla is large,1 +hairy,gorilla,HasProperty: a gorilla is hairy,1 +strong,gorilla,HasProperty: a gorilla is strong,1 +black,gorilla,HasProperty: a gorilla is black,1 +near_quarry,granite,AtLocation: you find granite near a quarry,1 +kitchen_counter,granite,UsedFor: granite is used for kitchen counters,1 +monument,granite,UsedFor: granite is used for monuments,1 +crystal,granite,HasA: granite has crystals,1 +building_material,granite,PartOf: granite is part of building materials,1 +withstand_heat,granite,CapableOf: granite can withstand heat,1 +mineral,granite,MadeOf: granite is made of mineral,1 +mining,granite,HasPrerequisite: you need mining before you can get granite,1 +solid_ground,granite,Causes: granite causes solid ground,1 +hard,granite,HasProperty: granite is hard,1 +heavy,granite,HasProperty: granite is heavy,1 +coarse,granite,HasProperty: granite is coarse,1 +strong,granite,HasProperty: granite is strong,1 +golf_course,grass,AtLocation: you find grass on a golf course,1 +lake,grebe,AtLocation: you find a grebe on a lake,1 +beak,grebe,HasA: a grebe has a beak,1 +feather,grebe,HasA: a grebe has feathers,1 +webbed_foot,grebe,HasA: a grebe has webbed feet,1 +bird_family,grebe,PartOf: a grebe is part of the bird family,1 +swim,grebe,CapableOf: a grebe can swim,1 +dive,grebe,CapableOf: a grebe can dive underwater,1 +eat,grebe,CapableOf: a grebe can eat fish,1 +aquatic,grebe,HasProperty: a grebe is aquatic,1 +small,grebe,HasProperty: a grebe is small,1 +streamlined,grebe,HasProperty: a grebe is streamlined,1 +growing_plants,greenhouse,UsedFor: a greenhouse is used for growing plants,1 +cultivating_flowers,greenhouse,UsedFor: a greenhouse is used for cultivating flowers,1 +plants,greenhouse,HasA: a greenhouse has plants,1 +flowers,greenhouse,HasA: a greenhouse has flowers,1 +farm,greenhouse,PartOf: a greenhouse is part of a farm,1 +warming_air,greenhouse,CapableOf: a greenhouse can warm the air,1 +protecting_plants,greenhouse,CapableOf: a greenhouse can protect plants,1 +metal_frames,greenhouse,MadeOf: a greenhouse is made of metal frames,1 +sunlight,greenhouse,HasPrerequisite: a greenhouse requires sunlight,1 +seeds,greenhouse,HasPrerequisite: a greenhouse requires seeds,1 +humidity,greenhouse,Causes: a greenhouse causes humidity,1 +growth,greenhouse,Causes: a greenhouse causes growth,1 +warm,greenhouse,HasProperty: a greenhouse is warm,1 +humid,greenhouse,HasProperty: a greenhouse is humid,1 +eating,grouper,UsedFor: a grouper is used for eating,1 +fins,grouper,HasA: a grouper has fins,1 +scales,grouper,HasA: a grouper has scales,1 +ocean,grouper,PartOf: a grouper is part of the ocean,1 +swim,grouper,CapableOf: a grouper can swim,1 +hunt,grouper,CapableOf: a grouper can hunt,1 +meal,grouper,Causes: a grouper causes a meal,1 +large,grouper,HasProperty: a grouper is large,1 +fishy,grouper,HasProperty: a grouper is fishy,1 +food,grouse,UsedFor: a grouse is used for food,1 +wings,grouse,HasA: a grouse has wings,1 +flock,grouse,PartOf: a grouse is part of a flock,1 +meat,grouse,MadeOf: a grouse is made of meat,1 +eggs,grouse,HasPrerequisite: grouse need eggs to reproduce,1 +hunt,grouse,Causes: a grouse causes hunt,1 +brown,grouse,HasProperty: a grouse is brown,1 +music_store,guitar,AtLocation: you find a guitar in a music store,1 +recording_studio,guitar,AtLocation: a guitar can be found in a recording studio,1 +living_room,guitar,AtLocation: a guitar might be kept in a living room,1 +strumming,guitar,UsedFor: a guitar is used for strumming,1 +solo,guitar,UsedFor: a guitar is used for solo,1 +rhythm,guitar,UsedFor: a guitar is used for rhythm,1 +frets,guitar,HasA: a guitar has frets,1 +neck,guitar,HasA: a guitar has a neck,1 +body,guitar,HasA: a guitar has a body,1 +orchestra,guitar,PartOf: a guitar is part of an orchestra,1 +musical_ensemble,guitar,PartOf: a guitar is part of a musical ensemble,1 +producing_sound,guitar,CapableOf: a guitar can produce sound,1 +creating_harmonics,guitar,CapableOf: a guitar can create harmonics,1 +amplification,guitar,CapableOf: a guitar can be amplified,1 +metal,guitar,MadeOf: a guitar is made of metal,1 +wire,guitar,MadeOf: a guitar is made of wire,1 +tuning,guitar,HasPrerequisite: you need tuning before using a guitar,1 +skill,guitar,HasPrerequisite: skill is a prerequisite for playing a guitar,1 +knowledge,guitar,HasPrerequisite: knowledge of music is a prerequisite for a guitar,1 +enjoyment,guitar,Causes: a guitar causes enjoyment,1 +relaxation,guitar,Causes: playing a guitar causes relaxation,1 +learning,guitar,Causes: a guitar causes learning,1 +portable,guitar,HasProperty: a guitar is portable,1 +musical,guitar,HasProperty: a guitar is musical,1 +wooden,guitar,HasProperty: a guitar is wooden,1 +pestering,gull,UsedFor: gulls are used for pestering beachgoers,1 +beak,gull,HasA: a gull has a beak,1 +flock,gull,PartOf: a gull is part of a flock,1 +feathers,gull,MadeOf: a gull is made of feathers,1 +noise,gull,Causes: a gull causes noise,1 +white,gull,HasProperty: a gull is white,1 +safe,gun,AtLocation: you find a gun in a safe,1 +home,gun,AtLocation: you find a gun in a home,1 +self-defense,gun,UsedFor: a gun is used for self-defense,1 +target_practice,gun,UsedFor: a gun is used for target practice,1 +protection,gun,UsedFor: a gun is used for protection,1 +military_service,gun,UsedFor: a gun is used for military service,1 +law_enforcement,gun,UsedFor: a gun is used for law enforcement,1 +trigger,gun,HasA: a gun has a trigger,1 +firing_mechanism,gun,HasA: a gun has a firing mechanism,1 +grip,gun,HasA: a gun has a grip,1 +collection,gun,PartOf: a gun is part of a collection,1 +display_case,gun,PartOf: a gun is part of a display case,1 +weapons_cache,gun,PartOf: a gun is part of a weapons cache,1 +fire_bullets,gun,CapableOf: a gun can fire bullets,1 +make_a_noise,gun,CapableOf: a gun can make a loud noise,1 +cause_injury,gun,CapableOf: a gun can cause injury,1 +penetrate_flesh,gun,CapableOf: a gun can penetrate flesh,1 +wound_animals,gun,CapableOf: a gun can wound animals,1 +metal,gun,MadeOf: a gun is made of metal,1 +ammunition,gun,HasPrerequisite: you need ammunition before you can use a gun,1 +license,gun,HasPrerequisite: you need a license before you can own a gun,1 +training,gun,HasPrerequisite: you need training before you can use a gun,1 +safety_gear,gun,HasPrerequisite: you need safety gear before you can use a gun,1 +trigger_finger,gun,HasPrerequisite: you need a trigger finger before you can fire a gun,1 +death,gun,Causes: a gun causes death,1 +loud_noise,gun,Causes: a gun causes a loud noise,1 +fear,gun,Causes: a gun causes fear,1 +injury,gun,Causes: a gun causes injury,1 +recoil,gun,Causes: a gun causes recoil,1 +metallic,gun,HasProperty: a gun is metallic,1 +hard,gun,HasProperty: a gun is hard,1 +heavy,gun,HasProperty: a gun is heavy,1 +pointy,gun,HasProperty: a gun is pointy,1 +lethal,gun,HasProperty: a gun is lethal,1 +health_club,gymnasium,AtLocation: you find a gymnasium in a health club,1 +community_center,gymnasium,AtLocation: you find a gymnasium in a community center,1 +university,gymnasium,AtLocation: you find a gymnasium at a university,1 +park,gymnasium,AtLocation: you find a gymnasium in a park,1 +fitness_center,gymnasium,AtLocation: you find a gymnasium in a fitness center,1 +basketball,gymnasium,UsedFor: a gymnasium is used for basketball,1 +volleyball,gymnasium,UsedFor: a gymnasium is used for volleyball,1 +badminton,gymnasium,UsedFor: a gymnasium is used for badminton,1 +physical_education,gymnasium,UsedFor: a gymnasium is used for physical education,1 +recreation,gymnasium,UsedFor: a gymnasium is used for recreation,1 +basketball_court,gymnasium,HasA: a gymnasium has a basketball court,1 +bleachers,gymnasium,HasA: a gymnasium has bleachers,1 +volleyball_net,gymnasium,HasA: a gymnasium has a volleyball net,1 +exercise_equipment,gymnasium,HasA: a gymnasium has exercise equipment,1 +wall_mirror,gymnasium,HasA: a gymnasium has wall mirrors,1 +educational_facility,gymnasium,PartOf: a gymnasium is part of an educational facility,1 +recreational_facility,gymnasium,PartOf: a gymnasium is part of a recreational facility,1 +athletic_facility,gymnasium,PartOf: a gymnasium is part of an athletic facility,1 +holding_events,gymnasium,CapableOf: a gymnasium is capable of holding events,1 +accommodating_classes,gymnasium,CapableOf: a gymnasium is capable of accommodating classes,1 +hosting_tournaments,gymnasium,CapableOf: a gymnasium is capable of hosting tournaments,1 +concrete,gymnasium,MadeOf: a gymnasium is made of concrete,1 +metal,gymnasium,MadeOf: a gymnasium is made of metal,1 +construction,gymnasium,HasPrerequisite: a gymnasium requires construction,1 +funding,gymnasium,HasPrerequisite: a gymnasium requires funding,1 +space,gymnasium,HasPrerequisite: a gymnasium requires space,1 +sweating,gymnasium,Causes: a gymnasium causes sweating,1 +fitness,gymnasium,Causes: a gymnasium causes fitness,1 +physical_activity,gymnasium,Causes: a gymnasium causes physical activity,1 +large,gymnasium,HasProperty: a gymnasium is large,1 +indoor,gymnasium,HasProperty: a gymnasium is indoor,1 +spacious,gymnasium,HasProperty: a gymnasium is spacious,1 +open,gymnasium,HasProperty: a gymnasium is open,1 +toolbox,hacksaw,AtLocation: a hacksaw is found in a toolbox,1 +cutting_plaster,hacksaw,UsedFor: a hacksaw is used for cutting plaster,1 +trimming_wood,hacksaw,UsedFor: a hacksaw is used for trimming wood,1 +handle,hacksaw,HasA: a hacksaw has a handle,1 +workshop,hacksaw,PartOf: a hacksaw is part of a workshop,1 +metal,hacksaw,MadeOf: a hacksaw is made of metal,1 +handle,hacksaw,HasPrerequisite: you need a handle before you can have a hacksaw,1 +smooth_cut,hacksaw,Causes: a hacksaw causes a smooth cut,1 +precise_cut,hacksaw,Causes: a hacksaw causes a precise cut,1 +sharp,hacksaw,HasProperty: a hacksaw is sharp,1 +rigid,hacksaw,HasProperty: a hacksaw is rigid,1 +scrubbing,haircloth,UsedFor: haircloth is used for scrubbing,1 +making_rough_sponges,haircloth,UsedFor: haircloth is used for making rough sponges,1 +binding_books,haircloth,UsedFor: haircloth is used for binding books,1 +texture,haircloth,HasA: haircloth has a texture,1 +upholstery,haircloth,PartOf: haircloth is part of upholstery,1 +garment,haircloth,PartOf: haircloth is part of a garment,1 +abrading,haircloth,CapableOf: haircloth can abrade,1 +horsehair,haircloth,MadeOf: haircloth is made of horsehair,1 +weaving,haircloth,HasPrerequisite: you need weaving before you can have haircloth,1 +irritation,haircloth,Causes: haircloth causes irritation,1 +rough,haircloth,HasProperty: haircloth is rough,1 +stiff,haircloth,HasProperty: haircloth is stiff,1 +durable,haircloth,HasProperty: haircloth is durable,1 +sandwich,ham,AtLocation: you find ham in a sandwich,1 +sandwich,ham,UsedFor: ham is used for sandwiches,1 +cooking,ham,UsedFor: ham is used for cooking,1 +meat,ham,HasA: ham has meat,1 +fat,ham,HasA: ham has fat,1 +lunch,ham,PartOf: ham is part of lunch,1 +dinner,ham,PartOf: ham is part of dinner,1 +flavoring,ham,CapableOf: ham can flavor dishes,1 +being_eaten,ham,CapableOf: ham can be eaten,1 +pork,ham,MadeOf: ham is made of pork,1 +meat,ham,MadeOf: ham is made of meat,1 +pig,ham,HasPrerequisite: you need a pig before you can have ham,1 +fullness,ham,Causes: ham causes fullness,1 +satisfaction,ham,Causes: ham causes satisfaction,1 +salty,ham,HasProperty: ham is salty,1 +savory,ham,HasProperty: ham is savory,1 +pink,ham,HasProperty: ham is pink,1 +kitchen,hamburger,AtLocation: a hamburger can be found in a kitchen,1 +picnic,hamburger,AtLocation: you find a hamburger at a picnic,1 +eating,hamburger,UsedFor: a hamburger is used for eating,1 +satisfying_hunger,hamburger,UsedFor: a hamburger is used for satisfying hunger,1 +meal,hamburger,UsedFor: a hamburger is used for a meal,1 +patty,hamburger,HasA: a hamburger has a patty,1 +bun,hamburger,HasA: a hamburger has a bun,1 +meal,hamburger,PartOf: a hamburger is part of a meal,1 +fast_food,hamburger,PartOf: a hamburger is part of fast food,1 +satisfy_hunger,hamburger,CapableOf: a hamburger can satisfy hunger,1 +provide_nutrition,hamburger,CapableOf: a hamburger can provide nutrition,1 +meat,hamburger,MadeOf: a hamburger is made of meat,1 +bread,hamburger,MadeOf: a hamburger is made of bread,1 +meat,hamburger,HasPrerequisite: you need meat before you can have a hamburger,1 +bun,hamburger,HasPrerequisite: you need a bun before you can have a hamburger,1 +cooking,hamburger,HasPrerequisite: you need cooking before you can have a hamburger,1 +fullness,hamburger,Causes: a hamburger causes fullness,1 +enjoyment,hamburger,Causes: a hamburger causes enjoyment,1 +weight_gain,hamburger,Causes: a hamburger can cause weight gain,1 +savory,hamburger,HasProperty: a hamburger is savory,1 +delicious,hamburger,HasProperty: a hamburger is delicious,1 +greasy,hamburger,HasProperty: a hamburger can be greasy,1 +filling,hamburger,HasProperty: a hamburger is filling,1 +safe,handgun,AtLocation: you store a handgun in a safe,1 +case,handgun,AtLocation: you keep a handgun in a case,1 +gunrack,handgun,AtLocation: you might find a handgun in a gunrack,1 +personal_safety,handgun,UsedFor: a handgun is used for personal safety,1 +crime,handgun,UsedFor: a handgun can be used for crime,1 +hunting_small_game,handgun,UsedFor: a handgun might be used for hunting small game,1 +self_preservation,handgun,UsedFor: a handgun is used for self preservation,1 +bullet,handgun,HasA: a handgun has a bullet,1 +chamber,handgun,HasA: a handgun has a chamber,1 +trigger,handgun,HasA: a handgun has a trigger,1 +firearm_collection,handgun,PartOf: a handgun is part of a firearm collection,1 +arsenal,handgun,PartOf: a handgun is part of an arsenal,1 +firing,handgun,CapableOf: a handgun is capable of firing,1 +injuring,handgun,CapableOf: a handgun is capable of injuring,1 +defending,handgun,CapableOf: a handgun is capable of defending,1 +scaring,handgun,CapableOf: a handgun is capable of scaring,1 +metal,handgun,MadeOf: a handgun is made of metal,1 +polymer,handgun,MadeOf: a handgun might be made of polymer,1 +license,handgun,HasPrerequisite: you need a license before you can own a handgun,1 +permit,handgun,HasPrerequisite: you need a permit before you can carry a handgun,1 +training,handgun,HasPrerequisite: you need training before you can use a handgun,1 +injury,handgun,Causes: a handgun can cause injury,1 +fear,handgun,Causes: a handgun can cause fear,1 +death,handgun,Causes: a handgun can cause death,1 +alarm,handgun,Causes: a handgun can cause alarm,1 +dangerous,handgun,HasProperty: a handgun is dangerous,1 +portable,handgun,HasProperty: a handgun is portable,1 +lethal,handgun,HasProperty: a handgun is lethal,1 +metalic,handgun,HasProperty: a handgun is metalic,1 +instrument_case,harmonica,AtLocation: a harmonica can be found in an instrument case,1 +relaxing,harmonica,UsedFor: playing a harmonica can be used for relaxing,1 +busking,harmonica,UsedFor: a harmonica is used for busking,1 +therapy,harmonica,UsedFor: playing a harmonica can be used for therapy,1 +reeds,harmonica,HasA: a harmonica has reeds,1 +holes,harmonica,HasA: a harmonica has holes,1 +instrument_family,harmonica,PartOf: a harmonica is part of the instrument family,1 +music_ensemble,harmonica,PartOf: a harmonica can be part of a music ensemble,1 +producing_sound,harmonica,CapableOf: a harmonica is capable of producing sound,1 +creating_vibrations,harmonica,CapableOf: a harmonica is capable of creating vibrations,1 +metal,harmonica,MadeOf: a harmonica is made of metal,1 +breath,harmonica,HasPrerequisite: playing a harmonica has the prerequisite of breath,1 +mouth,harmonica,HasPrerequisite: playing a harmonica requires having a mouth,1 +sound,harmonica,Causes: playing a harmonica causes sound,1 +enjoyment,harmonica,Causes: playing a harmonica can cause enjoyment,1 +small,harmonica,HasProperty: a harmonica is small,1 +portable,harmonica,HasProperty: a harmonica is portable,1 +wind-powered,harmonica,HasProperty: a harmonica is wind-powered,1 +stage,harp,AtLocation: you find a harp on a stage,1 +recording_studio,harp,AtLocation: you find a harp in a recording studio,1 +wedding_music,harp,UsedFor: a harp is used for wedding music,1 +therapy_music,harp,UsedFor: a harp is used for therapy music,1 +background_music,harp,UsedFor: a harp is used for background music,1 +frame,harp,HasA: a harp has a frame,1 +soundboard,harp,HasA: a harp has a soundboard,1 +pedal_mechanism,harp,HasA: a harp has a pedal mechanism,1 +musical_performance,harp,PartOf: a harp is part of a musical performance,1 +orchestra_section,harp,PartOf: a harp is part of an orchestra section,1 +producing_sound,harp,CapableOf: a harp can produce sound,1 +creating_harmony,harp,CapableOf: a harp can create harmony,1 +producing_melody,harp,CapableOf: a harp can produce melody,1 +metal,harp,MadeOf: a harp is made of metal,1 +ivory,harp,MadeOf: a harp is made of ivory,1 +tuning,harp,HasPrerequisite: you need tuning before you can use a harp,1 +skill,harp,HasPrerequisite: you need skill before you can use a harp,1 +sheet_music,harp,HasPrerequisite: you need sheet music before you can use a harp,1 +relaxation,harp,Causes: a harp causes relaxation,1 +enjoyment,harp,Causes: a harp causes enjoyment,1 +peace,harp,Causes: a harp causes peace,1 +large,harp,HasProperty: a harp is large,1 +beautiful,harp,HasProperty: a harp is beautiful,1 +elegant,harp,HasProperty: a harp is elegant,1 +hunting,hawk,UsedFor: a hawk is used for hunting,1 +sharp_beak,hawk,HasA: a hawk has a sharp beak,1 +ecosystem,hawk,PartOf: a hawk is part of an ecosystem,1 +soar,hawk,CapableOf: a hawk can soar,1 +feathers,hawk,MadeOf: a hawk is made of feathers,1 +air,hawk,HasPrerequisite: you need air before you can have a hawk,1 +fear,hawk,Causes: a hawk causes fear,1 +brown,hawk,HasProperty: a hawk is brown,1 +bedding,hay,UsedFor: hay is used for bedding,1 +stalk,hay,HasA: hay has stalks,1 +field,hay,PartOf: hay is part of a field,1 +insulate,hay,CapableOf: hay can insulate,1 +cut,hay,HasPrerequisite: you need to cut before you can have hay,1 +dust,hay,Causes: hay causes dust,1 +dry,hay,HasProperty: hay is dry,1 +organ_donor,heart,AtLocation: the heart is found in an organ donor,1 +transplant,heart,UsedFor: a heart is used for transplant,1 +blood,heart,HasA: a heart has blood,1 +torso,heart,PartOf: the heart is part of the torso,1 +pump,heart,CapableOf: a heart can pump,1 +tissue,heart,MadeOf: a heart is made of tissue,1 +body,heart,HasPrerequisite: a heart requires a body,1 +circulation,heart,Causes: a heart causes circulation,1 +vital,heart,HasProperty: a heart is vital,1 +house,hearth,AtLocation: a hearth is found in a house,1 +heating,hearth,UsedFor: a hearth is used for heating,1 +fire,hearth,HasA: a hearth has a fire,1 +fireplace,hearth,PartOf: a hearth is part of a fireplace,1 +warming,hearth,CapableOf: a hearth can warm a room,1 +brick,hearth,MadeOf: a hearth is made of brick,1 +warmth,hearth,Causes: a hearth causes warmth,1 +warm,hearth,HasProperty: a hearth is warm,1 +fishing,heron,UsedFor: a heron is used for catching fish,1 +long_neck,heron,HasA: a heron has a long neck,1 +ecosystem,heron,PartOf: a heron is part of the ecosystem,1 +nothing,heron,Causes: a heron causes nothing specific to happen,1 +tall,heron,HasProperty: a heron is tall,1 +sea,herring,AtLocation: you find herring in the sea,1 +eating,herring,UsedFor: herring is used for eating,1 +bone,herring,HasA: a herring has a bone,1 +swimming,herring,CapableOf: a herring can swim,1 +satisfaction,herring,Causes: herring causes satisfaction,1 +small,herring,HasProperty: a herring is small,1 +decoration,hibiscus,UsedFor: hibiscus is used for decoration,1 +petal,hibiscus,HasA: a hibiscus has a petal,1 +bush,hibiscus,PartOf: a hibiscus is part of a bush,1 +bloom,hibiscus,CapableOf: a hibiscus can bloom,1 +plant,hibiscus,MadeOf: a hibiscus is made of plant,1 +sunlight,hibiscus,HasPrerequisite: a hibiscus requires sunlight,1 +beauty,hibiscus,Causes: a hibiscus causes beauty,1 +colorful,hibiscus,HasProperty: a hibiscus is colorful,1 +fuel,hickory,UsedFor: hickory wood is used for fuel,1 +smoking,hickory,UsedFor: hickory wood is used for smoking meat,1 +forest,hickory,PartOf: a hickory is part of a forest,1 +growing,hickory,CapableOf: a hickory can grow tall,1 +shedding,hickory,CapableOf: a hickory can shed leaves in autumn,1 +soil,hickory,HasPrerequisite: you need soil to grow a hickory,1 +shade,hickory,Causes: a hickory causes shade,1 +sturdy,hickory,HasProperty: hickory wood is sturdy,1 +wings,hoatzin,HasA: a hoatzin has wings,1 +bird_kingdom,hoatzin,PartOf: a hoatzin is part of the bird kingdom,1 +large,hoatzin,HasProperty: a hoatzin is large,1 +awkward,hoatzin,HasProperty: a hoatzin is awkward,1 +cavity,hollow,HasA: a hollow has a cavity,1 +ground,hollow,PartOf: a hollow is part of the ground,1 +collecting,hollow,CapableOf: a hollow can collect water,1 +soil,hollow,MadeOf: a hollow is made of soil,1 +erosion,hollow,HasPrerequisite: erosion is a prerequisite for a hollow,1 +积水,hollow,Causes: a hollow causes积水,1 +凹陷的,hollow,HasProperty: a hollow is凹陷的,1 +decoration,holly,UsedFor: holly is used for decoration,1 +berries,holly,HasA: holly has berries,1 +landscape,holly,PartOf: holly is part of landscape,1 +growing,holly,CapableOf: holly can grow,1 +leaves,holly,MadeOf: holly is made of leaves,1 +soil,holly,HasPrerequisite: you need soil before you can have holly,1 +allergies,holly,Causes: holly can cause allergies,1 +prickly,holly,HasProperty: holly is prickly,1 +forest,hornbill,AtLocation: you find a hornbill in a forest,1 +dispersing_seeds,hornbill,UsedFor: a hornbill is used for dispersing seeds,1 +large_beak,hornbill,HasA: a hornbill has a large beak,1 +ecosystem,hornbill,PartOf: a hornbill is part of an ecosystem,1 +flying,hornbill,CapableOf: a hornbill can fly,1 +trees,hornbill,HasPrerequisite: you need trees before you can have a hornbill,1 +seed_germination,hornbill,Causes: a hornbill causes seed germination,1 +colorful,hornbill,HasProperty: a hornbill has a colorful property,1 +field,horsetail,AtLocation: you find horsetail in a field,1 +medicine,horsetail,UsedFor: horsetail is used for medicine,1 +plant,horsetail,PartOf: horsetail is part of a plant,1 +growing,horsetail,CapableOf: horsetail can grow,1 +cellulos,horsetail,MadeOf: horsetail is made of cellulose,1 +soil,horsetail,HasPrerequisite: you need soil before you can have horsetail,1 +healing,horsetail,Causes: horsetail causes healing,1 +green,horsetail,HasProperty: horsetail is green,1 +pest_control,housefly,UsedFor: houseflies are used for studying pest control,1 +wings,housefly,HasA: a housefly has wings,1 +insect_world,housefly,PartOf: a housefly is part of the insect world,1 +organic_matter,housefly,MadeOf: a housefly is made of organic matter,1 +warmth,housefly,HasPrerequisite: you need warmth for houseflies to thrive,1 +annoyance,housefly,Causes: a housefly causes annoyance,1 +small,housefly,HasProperty: a housefly is small,1 +forest,hummingbird,AtLocation: you find a hummingbird in a forest,1 +pollination,hummingbird,UsedFor: a hummingbird is used for pollination,1 +observation,hummingbird,UsedFor: a hummingbird is used for observation,1 +beak,hummingbird,HasA: a hummingbird has a beak,1 +wings,hummingbird,HasA: a hummingbird has wings,1 +feathers,hummingbird,HasA: a hummingbird has feathers,1 +wildlife,hummingbird,PartOf: a hummingbird is part of wildlife,1 +ecosystem,hummingbird,PartOf: a hummingbird is part of an ecosystem,1 +hover,hummingbird,CapableOf: a hummingbird can hover,1 +drink_nectar,hummingbird,CapableOf: a hummingbird can drink nectar,1 +bone,hummingbird,MadeOf: a hummingbird is made of bone,1 +muscle,hummingbird,MadeOf: a hummingbird is made of muscle,1 +feather,hummingbird,MadeOf: a hummingbird is made of feather,1 +nectar,hummingbird,HasPrerequisite: you need nectar before you can see a hummingbird,1 +flower,hummingbird,HasPrerequisite: you need a flower before you can see a hummingbird,1 +pollination,hummingbird,Causes: a hummingbird causes pollination,1 +wonder,hummingbird,Causes: a hummingbird causes wonder,1 +small,hummingbird,HasProperty: a hummingbird is small,1 +fast,hummingbird,HasProperty: a hummingbird is fast,1 +colorful,hummingbird,HasProperty: a hummingbird is colorful,1 +cornfield,husk,AtLocation: you find a husk in a cornfield,1 +protecting,husk,UsedFor: a husk is used for protecting corn,1 +composting,husk,UsedFor: a husk is used for composting,1 +seeds,husk,HasA: a husk has seeds inside,1 +plant_matter,husk,MadeOf: a husk is made of plant matter,1 +fiber,husk,MadeOf: a husk is made of fiber,1 +growing_corn,husk,HasPrerequisite: you need growing corn to have a husk,1 +decomposition,husk,Causes: a husk causes decomposition when it rots,1 +waste,husk,Causes: a husk causes waste if not recycled,1 +fibrous,husk,HasProperty: a husk is fibrous,1 +dry,husk,HasProperty: a husk is dry,1 +papery,husk,HasProperty: a husk is papery,1 +fishing,ibis,UsedFor: an ibis is used for fishing,1 +beak,ibis,HasA: an ibis has a beak,1 +ecosystem,ibis,PartOf: an ibis is part of an ecosystem,1 +wade,ibis,CapableOf: an ibis can wade,1 +longlegged,ibis,HasProperty: an ibis is longlegged,1 +white,ibis,HasProperty: an ibis is white,1 +flower,insect,AtLocation: you find an insect on a flower,1 +pollination,insect,UsedFor: an insect is used for pollination,1 +antennae,insect,HasA: an insect has antennae,1 +ecosystem,insect,PartOf: an insect is part of an ecosystem,1 +exoskeleton,insect,MadeOf: an insect is made of an exoskeleton,1 +food,insect,HasPrerequisite: you need food before you can have an insect,1 +irritation,insect,Causes: an insect causes irritation,1 +small,insect,HasProperty: an insect is small,1 +decoration,iris,UsedFor: an iris is used for decoration,1 +petal,iris,HasA: an iris has a petal,1 +flower_bed,iris,PartOf: an iris is part of a flower bed,1 +bloom,iris,CapableOf: an iris can bloom,1 +petal,iris,MadeOf: an iris is made of petals,1 +sunlight,iris,HasPrerequisite: sunlight is a prerequisite for an iris,1 +beauty,iris,Causes: an iris causes beauty,1 +colorful,iris,HasProperty: an iris is colorful,1 +gym,iron,AtLocation: you find an iron weight in a gym,1 +blacksmith,iron,AtLocation: an iron object is found at a blacksmith,1 +cookware,iron,UsedFor: iron is used for cookware,1 +weightlifting,iron,UsedFor: iron is used for weightlifting,1 +construction,iron,UsedFor: iron is used for construction,1 +handle,iron,HasA: an iron tool has a handle,1 +ore,iron,MadeOf: iron is made of ore,1 +metal,iron,MadeOf: iron is made of metal,1 +electricity,iron,HasPrerequisite: an electric iron has a prerequisite of electricity,1 +burns,iron,Causes: iron can cause burns,1 +heat,iron,Causes: an iron can cause heat,1 +solid,iron,HasProperty: iron is solid,1 +dense,iron,HasProperty: iron is dense,1 +magnetic,iron,HasProperty: iron is magnetic,1 +garage,jack,AtLocation: you find a jack in a garage,1 +change_tire,jack,UsedFor: a jack is used for changing a tire,1 +handle,jack,HasA: a jack has a handle,1 +tool_kit,jack,PartOf: a jack is part of a tool kit,1 +raise_vehicle,jack,CapableOf: a jack can raise a vehicle,1 +metal,jack,MadeOf: a jack is made of metal,1 +flat_tire,jack,HasPrerequisite: you need a flat tire before you can use a jack,1 +higher_ground,jack,Causes: a jack causes a vehicle to be on higher ground,1 +heavy,jack,HasProperty: a jack is heavy,1 +suitcase,jacket,AtLocation: you find a jacket in a suitcase,1 +backpack,jacket,AtLocation: you find a jacket in a backpack,1 +protection_from_wind,jacket,UsedFor: a jacket is used for protection from wind,1 +storing_money,jacket,UsedFor: a jacket is used for storing money,1 +covering_shoulder,jacket,UsedFor: a jacket is used for covering the shoulder,1 +pocket,jacket,HasA: a jacket has a pocket,1 +sleeve,jacket,HasA: a jacket has a sleeve,1 +collar,jacket,HasA: a jacket has a collar,1 +outfit,jacket,PartOf: a jacket is part of an outfit,1 +uniform,jacket,PartOf: a jacket is part of a uniform,1 +keeping_cold_out,jacket,CapableOf: a jacket can keep cold out,1 +shielding_from_rain,jacket,CapableOf: a jacket can shield from rain,1 +providing_coverage,jacket,CapableOf: a jacket can provide coverage,1 +sewing_machine,jacket,HasPrerequisite: you need a sewing machine before you can have a jacket,1 +fabric,jacket,HasPrerequisite: you need fabric before you can have a jacket,1 +staying_dry,jacket,Causes: a jacket causes staying dry,1 +layering,jacket,Causes: a jacket causes layering,1 +feeling_secure,jacket,Causes: a jacket causes feeling secure,1 +warm,jacket,HasProperty: a jacket is warm,1 +heavy,jacket,HasProperty: a jacket is heavy,1 +waterproof,jacket,HasProperty: a jacket is waterproof,1 +basement,jar,AtLocation: you find jars in a basement,1 +garage,jar,AtLocation: you find jars in a garage,1 +workshop,jar,AtLocation: you find jars in a workshop,1 +picnic_cooler,jar,AtLocation: you put jars in a picnic cooler,1 +holding_jelly,jar,UsedFor: a jar is used for holding jelly,1 +storing_sauerkraut,jar,UsedFor: a jar is used for storing sauerkraut,1 +holding_preserves,jar,UsedFor: a jar is used for holding preserves,1 +containing_honey,jar,UsedFor: a jar is used for containing honey,1 +keeping_spices,jar,UsedFor: a jar is used for keeping spices,1 +seal,jar,HasA: a jar has a seal,1 +contents,jar,HasA: a jar has contents,1 +opening,jar,HasA: a jar has an opening,1 +glass_bottom,jar,HasA: a jar has a glass bottom,1 +screw_top,jar,HasA: a jar has a screw top,1 +pantry_supplies,jar,PartOf: a jar is part of pantry supplies,1 +food_preservation_system,jar,PartOf: a jar is part of a food preservation system,1 +storage_system,jar,PartOf: a jar is part of a storage system,1 +holding_soups,jar,CapableOf: a jar can hold soups,1 +containing_nuts,jar,CapableOf: a jar can contain nuts,1 +keeping_spices_fresh,jar,CapableOf: a jar can keep spices fresh,1 +containing_pudding,jar,CapableOf: a jar can contain pudding,1 +ceramic,jar,MadeOf: a jar is made of ceramic,1 +metal,jar,MadeOf: a jar is made of metal,1 +lid,jar,HasPrerequisite: you need a lid before you can use a jar,1 +contents,jar,HasPrerequisite: you need contents before you can fill a jar,1 +canning_kit,jar,HasPrerequisite: you need a canning kit before you can use a jar,1 +preservation,jar,Causes: a jar causes preservation,1 +protection,jar,Causes: a jar causes protection,1 +organization,jar,Causes: a jar causes organization,1 +cylindrical,jar,HasProperty: a jar is cylindrical,1 +transparent,jar,HasProperty: a jar is transparent,1 +rigid,jar,HasProperty: a jar is rigid,1 +sealable,jar,HasProperty: a jar is sealable,1 +portable,jar,HasProperty: a jar is portable,1 +forest,jay,AtLocation: you find a jay in a forest,1 +eating,jay,UsedFor: a jay is used for eating seeds,1 +watching,jay,UsedFor: people watch a jay,1 +wing,jay,HasA: a jay has a wing,1 +beak,jay,HasA: a jay has a beak,1 +feather,jay,HasA: a jay has a feather,1 +bird,jay,PartOf: a jay is part of bird species,1 +nature,jay,PartOf: a jay is part of nature,1 +squawk,jay,CapableOf: a jay can squawk,1 +peck,jay,CapableOf: a jay can peck,1 +air,jay,HasPrerequisite: a jay requires air to live,1 +food,jay,HasPrerequisite: a jay requires food to survive,1 +alarm,jay,Causes: a jay causes alarm with its call,1 +curiosity,jay,Causes: a jay causes curiosity in observers,1 +colorful,jay,HasProperty: a jay is colorful,1 +noisy,jay,HasProperty: a jay is noisy,1 +market,jicama,AtLocation: you find jicama in a market,1 +snacking,jicama,UsedFor: jicama is used for snacking,1 +skin,jicama,HasA: jicama has a skin,1 +meal,jicama,PartOf: jicama is part of a meal,1 +satisfying,jicama,CapableOf: jicama can satisfy hunger,1 +peeling,jicama,HasPrerequisite: you need to peel jicama before eating it,1 +refreshment,jicama,Causes: jicama causes refreshment,1 +crisp,jicama,HasProperty: jicama is crisp,1 +workshop,jointer,AtLocation: you find a jointer in a workshop,1 +flattening,jointer,UsedFor: a jointer is used for flattening wood,1 +smoothing,jointer,UsedFor: a jointer is used for smoothing edges,1 +straightening,jointer,UsedFor: a jointer is used for straightening boards,1 +table,jointer,HasA: a jointer has a table,1 +woodworking_shop,jointer,PartOf: a jointer is part of a woodworking shop,1 +smoothing,jointer,CapableOf: a jointer can smooth wood edges,1 +cutting,jointer,CapableOf: a jointer can cut wood surfaces,1 +metal,jointer,MadeOf: a jointer is made of metal,1 +electricity,jointer,HasPrerequisite: a jointer requires electricity,1 +dust,jointer,Causes: a jointer causes dust,1 +shavings,jointer,Causes: a jointer causes wood shavings,1 +heavy,jointer,HasProperty: a jointer is heavy,1 +sharp,jointer,HasProperty: a jointer is sharp,1 +kitchen,jug,AtLocation: you find a jug in the kitchen,1 +pouring,jug,UsedFor: a jug is used for pouring liquids,1 +storing,jug,UsedFor: a jug is used for storing liquids,1 +serving,jug,UsedFor: a jug is used for serving drinks,1 +handle,jug,HasA: a jug has a handle,1 +spout,jug,HasA: a jug has a spout,1 +set,jug,PartOf: a jug is part of a set of tableware,1 +kitchenware,jug,PartOf: a jug is part of kitchenware,1 +holding,jug,CapableOf: a jug can hold liquids,1 +carrying,jug,CapableOf: a jug can carry liquids,1 +ceramic,jug,MadeOf: a jug is made of ceramic,1 +metal,jug,MadeOf: a jug is made of metal,1 +lid,jug,HasPrerequisite: you need a lid before you can store things in a jug,1 +filling,jug,Causes: a jug causes filling of glasses,1 +emptying,jug,Causes: a jug causes emptying when poured,1 +cylindrical,jug,HasProperty: a jug has a cylindrical shape,1 +hard,jug,HasProperty: a jug is hard,1 +gin,juniper,UsedFor: juniper is used for making gin,1 +berry,juniper,HasA: a juniper has a berry,1 +shrub,juniper,PartOf: a juniper is part of a shrub,1 +growing,juniper,CapableOf: a juniper can grow,1 +soil,juniper,HasPrerequisite: you need soil before you can grow juniper,1 +shade,juniper,Causes: juniper causes shade,1 +aromatic,juniper,HasProperty: juniper is aromatic,1 +grocery_store,kale,AtLocation: you find kale in a grocery store,1 +salad_bar,kale,AtLocation: you find kale on a salad bar,1 +cooking,kale,UsedFor: kale is used for cooking,1 +salads,kale,UsedFor: kale is used for salads,1 +smoothies,kale,UsedFor: kale is used for smoothies,1 +leaves,kale,HasA: kale has leaves,1 +stems,kale,HasA: kale has stems,1 +vegetable_bouquet,kale,PartOf: kale is part of a vegetable bouquet,1 +healthy_diet,kale,PartOf: kale is part of a healthy diet,1 +growing,kale,CapableOf: kale can grow,1 +wilting,kale,CapableOf: kale can wilt,1 +sunlight,kale,HasPrerequisite: kale needs sunlight before it can grow,1 +health_benefits,kale,Causes: kale causes health benefits,1 +satiety,kale,Causes: kale causes satiety,1 +leafy,kale,HasProperty: kale is leafy,1 +green,kale,HasProperty: kale is green,1 +curly,kale,HasProperty: kale is curly,1 +river,kayak,AtLocation: you find a kayak on a river,1 +paddling,kayak,UsedFor: a kayak is used for paddling,1 +paddle,kayak,HasA: a kayak has a paddle,1 +equipment,kayak,PartOf: a kayak is part of camping equipment,1 +floating,kayak,CapableOf: a kayak can float,1 +adventure,kayak,Causes: a kayak causes adventure,1 +narrow,kayak,HasProperty: a kayak is narrow,1 +field,kestrel,AtLocation: you find a kestrel in a field,1 +hunting,kestrel,UsedFor: a kestrel is used for hunting,1 +wings,kestrel,HasA: a kestrel has wings,1 +ecosystem,kestrel,PartOf: a kestrel is part of an ecosystem,1 +hover,kestrel,CapableOf: a kestrel can hover,1 +small,kestrel,HasProperty: a kestrel is small,1 +colorful,kestrel,HasProperty: a kestrel is colorful,1 +stove,kettle,AtLocation: a kettle is placed on a stove,1 +campsite,kettle,AtLocation: you find a kettle at a campsite,1 +making_coffee,kettle,UsedFor: a kettle is used for making coffee,1 +sterilize_utensils,kettle,UsedFor: a kettle can be used to sterilize utensils,1 +warm_hands,kettle,UsedFor: a kettle can be used to warm hands,1 +cooking_pasta,kettle,UsedFor: a kettle can be used for cooking pasta,1 +spout,kettle,HasA: a kettle has a spout,1 +lid,kettle,HasA: a kettle has a lid,1 +whistle,kettle,HasA: a kettle has a whistle,1 +bottom,kettle,HasA: a kettle has a bottom,1 +tea_set,kettle,PartOf: a kettle is part of a tea set,1 +cooking_kit,kettle,PartOf: a kettle is part of a cooking kit,1 +pour_hot_water,kettle,CapableOf: a kettle can pour hot water,1 +make_noise,kettle,CapableOf: a kettle can make noise,1 +heat_up,kettle,CapableOf: a kettle can heat up,1 +release_vapor,kettle,CapableOf: a kettle can release vapor,1 +metal,kettle,MadeOf: a kettle is made of metal,1 +ceramic,kettle,MadeOf: a kettle can be made of ceramic,1 +power_source,kettle,HasPrerequisite: a kettle requires a power source to operate,1 +steam,kettle,Causes: a kettle causes steam,1 +heat,kettle,Causes: a kettle causes heat,1 +boiling_sound,kettle,Causes: a kettle causes a boiling sound,1 +metallic,kettle,HasProperty: a kettle is metallic,1 +heavy,kettle,HasProperty: a kettle is heavy,1 +rounded,kettle,HasProperty: a kettle is rounded,1 +portable,kettle,HasProperty: a kettle is portable,1 +riverbank,kingfisher,AtLocation: a kingfisher is found by a riverbank,1 +fishing,kingfisher,UsedFor: a kingfisher is used for fishing,1 +beak,kingfisher,HasA: a kingfisher has a beak,1 +feathers,kingfisher,HasA: a kingfisher has feathers,1 +ecosystem,kingfisher,PartOf: a kingfisher is part of an ecosystem,1 +bird_kingdom,kingfisher,PartOf: a kingfisher is part of the bird kingdom,1 +diving,kingfisher,CapableOf: a kingfisher can dive,1 +fishing,kingfisher,CapableOf: a kingfisher can fish,1 +flying,kingfisher,CapableOf: a kingfisher can fly,1 +feathers,kingfisher,MadeOf: a kingfisher is made of feathers,1 +bones,kingfisher,MadeOf: a kingfisher is made of bones,1 +excitement,kingfisher,Causes: a kingfisher causes excitement,1 +interest,kingfisher,Causes: a kingfisher causes interest,1 +colorful,kingfisher,HasProperty: a kingfisher is colorful,1 +small,kingfisher,HasProperty: a kingfisher is small,1 +playground,kite,AtLocation: you find a kite at a playground,1 +outdoor_activities,kite,UsedFor: a kite is used for outdoor activities,1 +string,kite,HasA: a kite has a string,1 +collection,kite,PartOf: a kite is part of a collection,1 +soar,kite,CapableOf: a kite can soar,1 +wind,kite,HasPrerequisite: you need wind to use a kite,1 +excitement,kite,Causes: a kite causes excitement,1 +colorful,kite,HasProperty: a kite is colorful,1 +grocery_store,kiwi,AtLocation: you find a kiwi in a grocery store,1 +fruit_bowl,kiwi,AtLocation: you find a kiwi in a fruit bowl,1 +eating,kiwi,UsedFor: a kiwi is used for eating,1 +cooking,kiwi,UsedFor: a kiwi is used for cooking,1 +garnishing,kiwi,UsedFor: a kiwi is used for garnishing,1 +seed,kiwi,HasA: a kiwi has a seed,1 +peel,kiwi,HasA: a kiwi has a peel,1 +flesh,kiwi,HasA: a kiwi has flesh,1 +fruit_basket,kiwi,PartOf: a kiwi is part of a fruit basket,1 +fruit_salad,kiwi,PartOf: a kiwi is part of a fruit salad,1 +diet,kiwi,PartOf: a kiwi is part of a diet,1 +ripening,kiwi,CapableOf: a kiwi can ripen,1 +spoiling,kiwi,CapableOf: a kiwi can spoil,1 +growing,kiwi,CapableOf: a kiwi can grow,1 +flesh,kiwi,MadeOf: a kiwi is made of flesh,1 +skin,kiwi,MadeOf: a kiwi is made of skin,1 +cells,kiwi,MadeOf: a kiwi is made of cells,1 +sunlight,kiwi,HasPrerequisite: you need sunlight before a kiwi can grow,1 +satisfaction,kiwi,Causes: eating a kiwi causes satisfaction,1 +health,kiwi,Causes: eating a kiwi causes health,1 +sweetness,kiwi,Causes: eating a kiwi causes sweetness,1 +green,kiwi,HasProperty: a kiwi has a green property,1 +fuzzy,kiwi,HasProperty: a kiwi has a fuzzy property,1 +round,kiwi,HasProperty: a kiwi has a round property,1 +edible,kiwi,HasProperty: a kiwi has an edible property,1 +cutting_board,knife,AtLocation: you find a knife on a cutting board,1 +restaurant,knife,AtLocation: you find a knife in a restaurant,1 +toolbox,knife,AtLocation: you find a knife in a toolbox,1 +chopping,knife,UsedFor: a knife is used for chopping,1 +julienning,knife,UsedFor: a knife is used for julienning,1 +handle,knife,HasA: a knife has a handle,1 +kitchen_utensil_set,knife,PartOf: a knife is part of a kitchen utensil set,1 +silverware_set,knife,PartOf: a knife is part of a silverware set,1 +cut_vegetable,knife,CapableOf: a knife can cut a vegetable,1 +cut_fruit,knife,CapableOf: a knife can cut fruit,1 +cut_bread,knife,CapableOf: a knife can cut bread,1 +sharpen,knife,CapableOf: a knife can sharpen other things,1 +metal,knife,MadeOf: a knife is made of metal,1 +sharpening_stone,knife,HasPrerequisite: you need a sharpening stone before you can use a knife,1 +cutting_surface,knife,HasPrerequisite: you need a cutting surface before you can use a knife,1 +injury,knife,Causes: a knife causes injury,1 +bleeding,knife,Causes: a knife causes bleeding,1 +cut,knife,Causes: a knife causes a cut,1 +sharp,knife,HasProperty: a knife is sharp,1 +pointed,knife,HasProperty: a knife is pointed,1 +rigid,knife,HasProperty: a knife is rigid,1 +handheld,knife,HasProperty: a knife is handheld,1 +leaf,lacebug,AtLocation: you find a lacebug on a leaf,1 +wings,lacebug,HasA: a lacebug has wings,1 +ecosystem,lacebug,PartOf: a lacebug is part of an ecosystem,1 +flying,lacebug,CapableOf: a lacebug can fly,1 +exoskeleton,lacebug,MadeOf: a lacebug is made of an exoskeleton,1 +plant,lacebug,HasPrerequisite: you need a plant before a lacebug can live,1 +damage,lacebug,Causes: a lacebug causes damage to leaves,1 +small,lacebug,HasProperty: a lacebug is small,1 +house,ladder,AtLocation: you find a ladder in a house,1 +construction_site,ladder,AtLocation: you find a ladder at a construction site,1 +basement,ladder,AtLocation: you find a ladder in a basement,1 +reaching_ceiling,ladder,UsedFor: a ladder is used for reaching the ceiling,1 +cleaning_gutters,ladder,UsedFor: a ladder is used for cleaning gutters,1 +painting_wall,ladder,UsedFor: a ladder is used for painting a wall,1 +changing_light_bulb,ladder,UsedFor: a ladder is used for changing a light bulb,1 +accessing_roof,ladder,UsedFor: a ladder is used for accessing the roof,1 +metal_rungs,ladder,HasA: a ladder has metal rungs,1 +wooden_legs,ladder,HasA: a ladder has wooden legs,1 +two_sides,ladder,HasA: a ladder has two sides,1 +hinge_joint,ladder,HasA: a ladder has a hinge joint,1 +fire_escape,ladder,PartOf: a ladder is part of a fire escape,1 +scaffolding,ladder,PartOf: a ladder is part of scaffolding,1 +fiberglass,ladder,MadeOf: a ladder is made of fiberglass,1 +metal,ladder,MadeOf: a ladder is made of metal,1 +flat_surface,ladder,HasPrerequisite: you need a flat surface to use a ladder,1 +stable_ground,ladder,HasPrerequisite: you need stable ground for a ladder,1 +injury,ladder,Causes: a ladder can cause injury,1 +stability,ladder,Causes: a ladder causes stability,1 +elevation,ladder,Causes: a ladder causes elevation,1 +tall,ladder,HasProperty: a ladder is tall,1 +sturdy,ladder,HasProperty: a ladder is sturdy,1 +straight,ladder,HasProperty: a ladder is straight,1 +field,lark,AtLocation: you find a lark in a field,1 +listening,lark,UsedFor: a lark is used for listening to its song,1 +wing,lark,HasA: a lark has a wing,1 +nature,lark,PartOf: a lark is part of nature,1 +air,lark,HasPrerequisite: a lark needs air,1 +joy,lark,Causes: a lark causes joy,1 +small,lark,HasProperty: a lark is small,1 +boots,leather,AtLocation: you find leather in boots,1 +upholstery,leather,UsedFor: leather is used for upholstery,1 +book_binding,leather,UsedFor: leather is used for book binding,1 +gloves,leather,UsedFor: leather is used for gloves,1 +furniture,leather,UsedFor: leather is used for furniture,1 +texture,leather,HasA: leather has a texture,1 +grain,leather,HasA: leather has a grain,1 +wallet,leather,PartOf: leather is part of a wallet,1 +purse,leather,PartOf: leather is part of a purse,1 +briefcase,leather,PartOf: leather is part of a briefcase,1 +cracking,leather,CapableOf: leather can crack,1 +stretching,leather,CapableOf: leather can stretch,1 +protecting,leather,CapableOf: leather can protect,1 +pig_skin,leather,MadeOf: leather can be made of pig skin,1 +goat_skin,leather,MadeOf: leather can be made of goat skin,1 +tanning_process,leather,HasPrerequisite: you need a tanning process before you can have leather,1 +warmth,leather,Causes: leather causes warmth,1 +durable,leather,HasProperty: leather is durable,1 +flexible,leather,HasProperty: leather is flexible,1 +strong,leather,HasProperty: leather is strong,1 +absorbent,leather,HasProperty: leather is absorbent,1 +waterproof,leather,HasProperty: leather can be waterproof,1 +grocery_store,lemon,AtLocation: you find a lemon at a grocery store,1 +cooking,lemon,UsedFor: a lemon is used for cooking,1 +drink,lemon,UsedFor: a lemon is used for drink,1 +baking,lemon,UsedFor: a lemon is used for baking,1 +cleaning,lemon,UsedFor: a lemon is used for cleaning,1 +seeds,lemon,HasA: a lemon has seeds,1 +peel,lemon,HasA: a lemon has peel,1 +citrus_family,lemon,PartOf: a lemon is part of citrus family,1 +fruit_basket,lemon,PartOf: a lemon is part of fruit basket,1 +flavor_food,lemon,CapableOf: a lemon can flavor food,1 +clean_surfaces,lemon,CapableOf: a lemon can clean surfaces,1 +pulp,lemon,MadeOf: a lemon is made of pulp,1 +juice,lemon,MadeOf: a lemon is made of juice,1 +thirst,lemon,Causes: a lemon causes thirst,1 +refreshment,lemon,Causes: a lemon causes refreshment,1 +juicy,lemon,HasProperty: a lemon is juicy,1 +yellow,lemon,HasProperty: a lemon is yellow,1 +fragrant,lemon,HasProperty: a lemon is fragrant,1 +jungle,lemur,AtLocation: you find a lemur in a jungle,1 +observation,lemur,UsedFor: a lemur is used for observation,1 +tail,lemur,HasA: a lemur has a tail,1 +primate_group,lemur,PartOf: a lemur is part of primate_group,1 +jump,lemur,CapableOf: a lemur can jump,1 +fur,lemur,MadeOf: a lemur is made of fur,1 +forest,lemur,HasPrerequisite: you need forest before you can have a lemur,1 +interest,lemur,Causes: a lemur causes interest,1 +small,lemur,HasProperty: a lemur is small,1 +field,lettuce,AtLocation: lettuce grows in a field,1 +sandwich_(weight_1.0),lettuce,UsedFor: lettuce is used for a sandwich,1 +wrap_(weight_1.0),lettuce,UsedFor: lettuce is used for a wrap,1 +juice_(weight_0.5),lettuce,UsedFor: lettuce is used for juice,1 +leaf_(weight_1.0),lettuce,HasA: lettuce has a leaf,1 +stem_(weight_1.0),lettuce,HasA: lettuce has a stem,1 +sandwich_(weight_1.5),lettuce,PartOf: lettuce is part of a sandwich,1 +wrap_(weight_1.5),lettuce,PartOf: lettuce is part of a wrap,1 +grow_(weight_1.0),lettuce,CapableOf: lettuce can grow,1 +wilt_(weight_1.0),lettuce,CapableOf: lettuce can wilt,1 +fiber_(weight_1.0),lettuce,MadeOf: lettuce is made of fiber,1 +chlorophyll_(weight_0.5),lettuce,MadeOf: lettuce is made of chlorophyll,1 +seed_(weight_1.0),lettuce,HasPrerequisite: you need seed before you can have lettuce,1 +soil_(weight_1.0),lettuce,HasPrerequisite: you need soil before you can grow lettuce,1 +fullness_(weight_1.0),lettuce,Causes: lettuce causes fullness,1 +satisfaction_(weight_1.0),lettuce,Causes: lettuce causes satisfaction,1 +green_(weight_2.5),lettuce,HasProperty: lettuce is green,1 +crisp_(weight_2.0),lettuce,HasProperty: lettuce is crisp,1 +fresh_(weight_1.5),lettuce,HasProperty: lettuce is fresh,1 +leafy_(weight_1.5),lettuce,HasProperty: lettuce is leafy,1 +toolbox,level,AtLocation: a level is found in a toolbox,1 +hanging_pictures,level,UsedFor: a level is used for hanging pictures,1 +installing_cabinets,level,UsedFor: a level is used for installing cabinets,1 +laying_tile,level,UsedFor: a level is used for laying tile,1 +hanging_shelves,level,UsedFor: a level is used for hanging shelves,1 +bubble,level,HasA: a level has a bubble,1 +vial,level,HasA: a level has a vial,1 +tool_set,level,PartOf: a level is part of a tool set,1 +construction_kit,level,PartOf: a level is part of a construction kit,1 +checking_level,level,CapableOf: a level can check level,1 +finding_level,level,CapableOf: a level can find level,1 +metal,level,MadeOf: a level is made of metal,1 +flat_surface,level,HasPrerequisite: you need a flat surface before you can use a level,1 +straight_lines,level,Causes: a level causes straight lines,1 +even_surfaces,level,Causes: a level causes even surfaces,1 +rigid,level,HasProperty: a level is rigid,1 +straight,level,HasProperty: a level is straight,1 +long,level,HasProperty: a level is long,1 +toolbox,lever,AtLocation: you find a lever in a toolbox,1 +prying,lever,UsedFor: a lever is used for prying open objects,1 +lifting,lever,UsedFor: a lever is used for lifting heavy objects,1 +fulcrum,lever,HasA: a lever has a fulcrum point,1 +machine,lever,PartOf: a lever is part of a machine,1 +crowbar,lever,PartOf: a lever is part of a crowbar,1 +moving,lever,CapableOf: a lever can move objects,1 +applying_force,lever,CapableOf: a lever can apply force,1 +metal,lever,MadeOf: a lever is made of metal,1 +fulcrum,lever,HasPrerequisite: you need a fulcrum before you can use a lever,1 +rotation,lever,Causes: a lever causes rotation,1 +movement,lever,Causes: a lever causes movement,1 +rigid,lever,HasProperty: a lever is rigid,1 +hard,lever,HasProperty: a lever is hard,1 +city,library,AtLocation: a library is found in a city,1 +university,library,AtLocation: you find a library at a university,1 +study,library,UsedFor: a library is used for study,1 +quiet_study,library,UsedFor: a library is used for quiet study,1 +access_information,library,UsedFor: a library is used for accessing information,1 +computers,library,HasA: a library has computers,1 +reference_materials,library,HasA: a library has reference materials,1 +quiet_areas,library,HasA: a library has quiet areas,1 +public_infrastructure,library,PartOf: a library is part of public infrastructure,1 +educational_system,library,PartOf: a library is part of an educational system,1 +providing_access_to_knowledge,library,CapableOf: a library can provide access to knowledge,1 +organizing_resources,library,CapableOf: a library can organize resources,1 +maintaining_archives,library,CapableOf: a library can maintain archives,1 +brick,library,MadeOf: a library is made of brick,1 +concrete,library,MadeOf: a library is made of concrete,1 +funding,library,HasPrerequisite: a library requires funding,1 +librarian_staff,library,HasPrerequisite: a library requires librarian staff,1 +knowledge_acquisition,library,Causes: a library causes knowledge acquisition,1 +quiet_environments,library,Causes: a library causes quiet environments,1 +quiet,library,HasProperty: a library is quiet,1 +educational,library,HasProperty: a library is educational,1 +public,library,HasProperty: a library is public,1 +table,lighter,AtLocation: you find a lighter on a table,1 +lighting_campfire,lighter,UsedFor: a lighter is used for lighting campfires,1 +lighting_candles,lighter,UsedFor: a lighter is used for lighting candles,1 +lighting_grill,lighter,UsedFor: a lighter is used for lighting a grill,1 +flame,lighter,HasA: a lighter has a flame,1 +survival_kit,lighter,PartOf: a lighter is part of a survival kit,1 +lighting,lighter,CapableOf: a lighter can create a flame,1 +igniting,lighter,CapableOf: a lighter can ignite materials,1 +metal,lighter,MadeOf: a lighter is made of metal,1 +fuel,lighter,HasPrerequisite: a lighter needs fuel to work,1 +striker,lighter,HasPrerequisite: a lighter needs a striker to function,1 +fire,lighter,Causes: a lighter causes fire,1 +heat,lighter,Causes: a lighter causes heat,1 +small,lighter,HasProperty: a lighter is small,1 +portable,lighter,HasProperty: a lighter is portable,1 +fragrance,lilac,UsedFor: lilac is used for fragrance,1 +flower,lilac,HasA: a lilac has a flower,1 +bush,lilac,PartOf: a lilac is part of a bush,1 +blooming,lilac,CapableOf: a lilac can bloom,1 +petals,lilac,MadeOf: a lilac is made of petals,1 +sunlight,lilac,HasPrerequisite: lilac needs sunlight to grow,1 +pleasant_scent,lilac,Causes: lilac causes a pleasant scent,1 +fragrant,lilac,HasProperty: a lilac is fragrant,1 +decoration,lily,UsedFor: a lily is used for decoration,1 +petal,lily,HasA: a lily has a petal,1 +bouquet,lily,PartOf: a lily is part of a bouquet,1 +blooming,lily,CapableOf: a lily can bloom,1 +plant,lily,MadeOf: a lily is made of plant,1 +soil,lily,HasPrerequisite: a lily needs soil to grow,1 +fragrance,lily,Causes: a lily causes fragrance,1 +white,lily,HasProperty: a lily can be white,1 +prairie,lion,AtLocation: you find a lion in a prairie,1 +symbol_of_power,lion,UsedFor: a lion is used for symbol_of_power,1 +mane,lion,HasA: a lion has a mane,1 +pride,lion,PartOf: a lion is part of pride,1 +hunt_wildabeest,lion,CapableOf: a lion can hunt_wildabeest,1 +fur,lion,MadeOf: a lion is made of fur,1 +savanna,lion,HasPrerequisite: you need a savanna before you can have/use a lion,1 +fear,lion,Causes: a lion causes fear,1 +majestic,lion,HasProperty: a lion is majestic,1 +kitchen,lobster,AtLocation: you find a lobster in a kitchen when preparing it,1 +eating,lobster,UsedFor: a lobster is used for eating,1 +cooking,lobster,UsedFor: a lobster is used for cooking,1 +dinner,lobster,UsedFor: a lobster is used for dinner,1 +claw,lobster,HasA: a lobster has a claw,1 +tail,lobster,HasA: a lobster has a tail,1 +seafood,lobster,PartOf: a lobster is part of seafood,1 +meal,lobster,PartOf: a lobster is part of a meal,1 +swimming,lobster,CapableOf: a lobster can swim,1 +walking,lobster,CapableOf: a lobster can walk,1 +meat,lobster,MadeOf: a lobster is made of meat,1 +heat,lobster,HasPrerequisite: you need heat before you can cook a lobster,1 +satisfaction,lobster,Causes: eating lobster causes satisfaction,1 +fullness,lobster,Causes: eating lobster causes fullness,1 +hard,lobster,HasProperty: a lobster has a hard shell,1 +red,lobster,HasProperty: a lobster has a red shell when cooked,1 +salty,lobster,HasProperty: a lobster has a salty taste,1 +australia,lorikeet,AtLocation: you find a lorikeet in australia,1 +eating_fruit,lorikeet,UsedFor: a lorikeet is used for eating fruit,1 +beak,lorikeet,HasA: a lorikeet has a beak,1 +flock,lorikeet,PartOf: a lorikeet is part of a flock,1 +feathers,lorikeet,MadeOf: a lorikeet is made of feathers,1 +tropical_environment,lorikeet,HasPrerequisite: you need a tropical environment before you can have a lorikeet,1 +happiness,lorikeet,Causes: a lorikeet causes happiness,1 +colorful,lorikeet,HasProperty: a lorikeet is colorful,1 +decoration,lotus,UsedFor: a lotus is used for decoration,1 +cooking,lotus,UsedFor: a lotus is used for cooking,1 +medicine,lotus,UsedFor: a lotus is used for medicine,1 +seed,lotus,HasA: a lotus has a seed,1 +flower,lotus,HasA: a lotus has a flower,1 +leaf,lotus,HasA: a lotus has a leaf,1 +flower_bed,lotus,PartOf: a lotus is part of a flower bed,1 +plant,lotus,PartOf: a lotus is part of a plant,1 +floating,lotus,CapableOf: a lotus can float,1 +blooming,lotus,CapableOf: a lotus can bloom,1 +growing,lotus,CapableOf: a lotus can grow,1 +plant_material,lotus,MadeOf: a lotus is made of plant material,1 +fiber,lotus,MadeOf: a lotus is made of fiber,1 +sunlight,lotus,HasPrerequisite: you need sunlight before you can grow a lotus,1 +beauty,lotus,Causes: a lotus causes beauty,1 +fragrance,lotus,Causes: a lotus causes fragrance,1 +fragrant,lotus,HasProperty: a lotus is fragrant,1 +delicate,lotus,HasProperty: a lotus is delicate,1 +beautiful,lotus,HasProperty: a lotus is beautiful,1 +cage,lovebird,AtLocation: you find a lovebird in a cage,1 +companionship,lovebird,UsedFor: a lovebird is used for companionship,1 +wings,lovebird,HasA: a lovebird has wings,1 +aviary,lovebird,PartOf: a lovebird is part of an aviary,1 +feathers,lovebird,MadeOf: a lovebird is made of feathers,1 +cage,lovebird,HasPrerequisite: you need a cage before you can keep a lovebird,1 +chirping,lovebird,Causes: a lovebird causes chirping,1 +small,lovebird,HasProperty: a lovebird is small,1 +forest,lynx,AtLocation: you find a lynx in a forest,1 +hunting,lynx,UsedFor: a lynx is used for hunting,1 +tail,lynx,HasA: a lynx has a tail,1 +ecosystem,lynx,PartOf: a lynx is part of the ecosystem,1 +pounce,lynx,CapableOf: a lynx can pounce,1 +fur,lynx,MadeOf: a lynx is made of fur,1 +wilderness,lynx,HasPrerequisite: you need wilderness before you can find a lynx,1 +fear,lynx,Causes: a lynx causes fear,1 +museum,lyre,AtLocation: you find a lyre in a museum,1 +playing_music,lyre,UsedFor: a lyre is used for playing music,1 +strings,lyre,HasA: a lyre has strings,1 +orchestra,lyre,PartOf: a lyre is part of an orchestra,1 +producing_sound,lyre,CapableOf: a lyre can produce sound,1 +musician,lyre,HasPrerequisite: a lyre requires a musician to play,1 +melody,lyre,Causes: a lyre causes melody,1 +ancient,lyre,HasProperty: a lyre is ancient,1 +castle,mace,AtLocation: you find a mace in a castle,1 +bludgeoning,mace,UsedFor: a mace is used for bludgeoning,1 +defense,mace,UsedFor: a mace is used for defense,1 +offense,mace,UsedFor: a mace is used for offense,1 +handle,mace,HasA: a mace has a handle,1 +armor,mace,PartOf: a mace is part of armor,1 +breaking_bones,mace,CapableOf: a mace can break bones,1 +inflicting_damage,mace,CapableOf: a mace can inflict damage,1 +metal,mace,MadeOf: a mace is made of metal,1 +metalwork,mace,HasPrerequisite: metalwork is a prerequisite for a mace,1 +bruising,mace,Causes: a mace causes bruising,1 +pain,mace,Causes: a mace causes pain,1 +heavy,mace,HasProperty: a mace is heavy,1 +solid,mace,HasProperty: a mace is solid,1 +strong,mace,HasProperty: a mace is strong,1 +earth,magnesium,AtLocation: magnesium is found in the earth,1 +supplement,magnesium,UsedFor: magnesium is used for a dietary supplement,1 +alloy,magnesium,UsedFor: magnesium is used for making alloys,1 +compound,magnesium,PartOf: magnesium is part of chemical compounds,1 +metal,magnesium,PartOf: magnesium is part of the metal element group,1 +burning,magnesium,CapableOf: magnesium is capable of burning brightly,1 +lightweight,magnesium,HasProperty: magnesium has a lightweight property,1 +flammable,magnesium,HasProperty: magnesium has a flammable property,1 +spark,magnesium,Causes: magnesium causes sparks when burned,1 +element,magnesium,MadeOf: magnesium is made of an element,1 +warning,magpie,UsedFor: a magpie is used for warning others,1 +beak,magpie,HasA: a magpie has a beak,1 +flock,magpie,PartOf: a magpie is part of a flock,1 +food,magpie,HasPrerequisite: you need food before a magpie can survive,1 +noise,magpie,Causes: a magpie causes noise,1 +black,magpie,HasProperty: a magpie is black,1 +furniture,mahogany,UsedFor: mahogany is used for furniture,1 +grain,mahogany,HasA: mahogany has a grain,1 +burn,mahogany,CapableOf: mahogany can burn,1 +cutting,mahogany,HasPrerequisite: mahogany requires cutting before use,1 +warmth,mahogany,Causes: mahogany causes warmth in a room,1 +dark,mahogany,HasProperty: mahogany is dark in color,1 +parking_lot,mall,AtLocation: a mall has a parking lot nearby,1 +window_shopping,mall,UsedFor: you can window shop at a mall,1 +food_court,mall,HasA: a mall has a food court inside,1 +retail_district,mall,PartOf: a mall is part of a retail district,1 +attracting_customers,mall,CapableOf: a mall attracts customers,1 +commercial_development,mall,HasPrerequisite: you need commercial development for a mall,1 +crowds,mall,Causes: a mall causes crowds,1 +large,mall,HasProperty: a mall is large,1 +lake,mallard,AtLocation: you find a mallard in a lake,1 +park,mallard,AtLocation: you find a mallard in a park,1 +river,mallard,AtLocation: you find a mallard in a river,1 +eating,mallard,UsedFor: mallards are used for eating,1 +observing,mallard,UsedFor: mallards are used for observing,1 +hunting,mallard,UsedFor: mallards are used for hunting,1 +bill,mallard,HasA: a mallard has a bill,1 +feather,mallard,HasA: a mallard has feathers,1 +wing,mallard,HasA: a mallard has wings,1 +leg,mallard,HasA: a mallard has legs,1 +flock,mallard,PartOf: a mallard is part of a flock,1 +ecosystem,mallard,PartOf: a mallard is part of an ecosystem,1 +flying,mallard,CapableOf: a mallard can fly,1 +swimming,mallard,CapableOf: a mallard can swim,1 +diving,mallard,CapableOf: a mallard can dive,1 +quacking,mallard,CapableOf: a mallard can quack,1 +food,mallard,HasPrerequisite: you need food before you can have a mallard,1 +feathers,mallard,Causes: mallards cause feathers,1 +eggs,mallard,Causes: mallards cause eggs,1 +brown,mallard,HasProperty: mallards have a brown color,1 +green,mallard,HasProperty: mallards have a green color,1 +webbed,mallard,HasProperty: mallards have webbed feet,1 +smoothies,mango,UsedFor: a mango is used for smoothies,1 +juice,mango,UsedFor: a mango is used for juice,1 +desserts,mango,UsedFor: a mango is used for desserts,1 +skin,mango,HasA: a mango has skin,1 +fruit_bowl,mango,PartOf: a mango is part of a fruit bowl,1 +tropical_fruit_salad,mango,PartOf: a mango is part of a tropical fruit salad,1 +ripening,mango,CapableOf: a mango can ripen,1 +bruising,mango,CapableOf: a mango can bruise,1 +flesh,mango,MadeOf: a mango is made of flesh,1 +juice,mango,MadeOf: a mango is made of juice,1 +sunlight,mango,HasPrerequisite: you need sunlight for a mango to grow,1 +satisfaction,mango,Causes: eating a mango causes satisfaction,1 +sweetness,mango,Causes: a mango causes sweetness,1 +sweet,mango,HasProperty: a mango is sweet,1 +juicy,mango,HasProperty: a mango is juicy,1 +tropical,mango,HasProperty: a mango is tropical,1 +yellow,mango,HasProperty: a mango is yellow,1 +collection,marble,AtLocation: you find a marble in a collection,1 +sandbox,marble,AtLocation: you find marbles in a sandbox,1 +toy_box,marble,AtLocation: you find marbles in a toy box,1 +schoolyard,marble,AtLocation: you find marbles in a schoolyard,1 +weight,marble,UsedFor: a marble is used for weight,1 +art_project,marble,UsedFor: a marble is used for an art project,1 +vase_filler,marble,UsedFor: a marble is used for vase filler,1 +fishbowl_weight,marble,UsedFor: a marble is used for fishbowl weight,1 +shine,marble,HasA: a marble has a shine,1 +surface,marble,HasA: a marble has a surface,1 +collection,marble,PartOf: a marble is part of a collection,1 +toy_set,marble,PartOf: a marble is part of a toy set,1 +game_set,marble,PartOf: a marble is part of a game set,1 +rolling,marble,CapableOf: a marble can roll,1 +bouncing,marble,CapableOf: a marble can bounce,1 +shattering,marble,CapableOf: a marble can shatter,1 +stone,marble,MadeOf: a marble is made of stone,1 +stone,marble,HasPrerequisite: you need stone to make a marble,1 +interest,marble,Causes: marbles cause interest,1 +fun,marble,Causes: marbles cause fun,1 +smooth,marble,HasProperty: a marble is smooth,1 +heavy,marble,HasProperty: a marble is heavy,1 +solid,marble,HasProperty: a marble is solid,1 +seasoning,marjoram,UsedFor: marjoram is used for seasoning,1 +flavoring,marjoram,UsedFor: marjoram is used for flavoring,1 +cooking,marjoram,UsedFor: marjoram is used for cooking,1 +leaf,marjoram,HasA: marjoram has a leaf,1 +herb_garden,marjoram,PartOf: marjoram is part of a herb garden,1 +growing,marjoram,CapableOf: marjoram can grow,1 +plant,marjoram,MadeOf: marjoram is made of plant,1 +soil,marjoram,HasPrerequisite: marjoram requires soil,1 +sunlight,marjoram,HasPrerequisite: marjoram requires sunlight,1 +aroma,marjoram,Causes: marjoram causes aroma,1 +fragrance,marjoram,Causes: marjoram causes fragrance,1 +fragrant,marjoram,HasProperty: marjoram is fragrant,1 +green,marjoram,HasProperty: marjoram is green,1 +forest,marmoset,AtLocation: a marmoset lives in a forest,1 +jungle,marmoset,AtLocation: a marmoset is found in a jungle,1 +zoo,marmoset,AtLocation: a marmoset might be in a zoo,1 +research,marmoset,UsedFor: marmosets are used for research,1 +companionship,marmoset,UsedFor: marmosets can be used for companionship,1 +display,marmoset,UsedFor: marmosets are used for display in zoos,1 +tail,marmoset,HasA: a marmoset has a tail,1 +fur,marmoset,HasA: a marmoset has fur,1 +claws,marmoset,HasA: a marmoset has claws,1 +primate,marmoset,PartOf: a marmoset is part of primates,1 +ecosystem,marmoset,PartOf: a marmoset is part of an ecosystem,1 +climbing,marmoset,CapableOf: a marmoset can climb,1 +jumping,marmoset,CapableOf: a marmoset can jump,1 +eating,marmoset,CapableOf: a marmoset can eat insects and fruit,1 +communicating,marmoset,CapableOf: a marmoset can communicate,1 +rainforest,marmoset,HasPrerequisite: a marmoset needs a rainforest to survive,1 +trees,marmoset,HasPrerequisite: a marmoset needs trees to live,1 +interest,marmoset,Causes: a marmoset causes interest in visitors,1 +excitement,marmoset,Causes: a marmoset causes excitement in children,1 +small,marmoset,HasProperty: a marmoset is small,1 +agile,marmoset,HasProperty: a marmoset is agile,1 +colorful,marmoset,HasProperty: a marmoset is colorful,1 +mountain,marmot,AtLocation: you find a marmot on a mountain,1 +alpine,marmot,AtLocation: a marmot lives in alpine regions,1 +observation,marmot,UsedFor: a marmot is used for observation by scientists,1 +wildlife_watching,marmot,UsedFor: a marmot is used for wildlife watching,1 +study,marmot,UsedFor: a marmot is used for study of mountain ecosystems,1 +fur,marmot,HasA: a marmot has fur,1 +tail,marmot,HasA: a marmot has a tail,1 +teeth,marmot,HasA: a marmot has teeth,1 +ecosystem,marmot,PartOf: a marmot is part of an ecosystem,1 +wildlife,marmot,PartOf: a marmot is part of wildlife,1 +hibernate,marmot,CapableOf: a marmot can hibernate,1 +whistle,marmot,CapableOf: a marmot can whistle,1 +dig,marmot,CapableOf: a marmot can dig,1 +mountain,marmot,HasPrerequisite: you need a mountain before you can find a marmot,1 +vegetation,marmot,HasPrerequisite: you need vegetation before you can support a marmot,1 +interest,marmot,Causes: a marmot causes interest in wildlife,1 +furry,marmot,HasProperty: a marmot is furry,1 +small,marmot,HasProperty: a marmot is small,1 +brown,marmot,HasProperty: a marmot is brown,1 +eating_insects,martin,UsedFor: martins are used for eating insects,1 +wings,martin,HasA: a martin has wings,1 +martin_family,martin,PartOf: a martin is part of martin family,1 +feathers,martin,MadeOf: a martin is made of feathers,1 +air,martin,HasPrerequisite: a martin needs air to fly,1 +catching_insects,martin,Causes: a martin causes catching insects,1 +small,martin,HasProperty: a martin is small,1 +valley,meadow,AtLocation: a meadow is found in a valley,1 +mountain,meadow,AtLocation: a meadow is found on a mountain,1 +grazing,meadow,UsedFor: a meadow is used for grazing,1 +picnics,meadow,UsedFor: a meadow is used for picnics,1 +relaxation,meadow,UsedFor: a meadow is used for relaxation,1 +wildflowers,meadow,UsedFor: a meadow is used for growing wildflowers,1 +wildflowers,meadow,HasA: a meadow has wildflowers,1 +butterflies,meadow,HasA: a meadow has butterflies,1 +insects,meadow,HasA: a meadow has insects,1 +ecosystem,meadow,PartOf: a meadow is part of an ecosystem,1 +landscape,meadow,PartOf: a meadow is part of a landscape,1 +supporting,meadow,CapableOf: a meadow can support wildlife,1 +blooming,meadow,CapableOf: a meadow can bloom with flowers,1 +earth,meadow,MadeOf: a meadow is made of earth,1 +vegetation,meadow,MadeOf: a meadow is made of vegetation,1 +soil,meadow,MadeOf: a meadow is made of soil,1 +sunlight,meadow,HasPrerequisite: you need sunlight for a meadow,1 +rain,meadow,HasPrerequisite: you need rain for a meadow,1 +fertile_soil,meadow,HasPrerequisite: you need fertile soil for a meadow,1 +happiness,meadow,Causes: a meadow causes happiness,1 +relaxation,meadow,Causes: a meadow causes relaxation,1 +wildlife,meadow,Causes: a meadow causes wildlife to thrive,1 +green,meadow,HasProperty: a meadow is green,1 +open,meadow,HasProperty: a meadow is open,1 +lush,meadow,HasProperty: a meadow is lush,1 +wild,meadow,HasProperty: a meadow is wild,1 +legs,mealybug,HasA: a mealybug has legs,1 +ecosystem,mealybug,PartOf: a mealybug is part of an ecosystem,1 +feeding,mealybug,CapableOf: a mealybug can feed,1 +warmth,mealybug,HasPrerequisite: you need warmth for a mealybug to thrive,1 +damage,mealybug,Causes: a mealybug causes damage to plants,1 +soft,mealybug,HasProperty: a mealybug is soft,1 +thermometer,mercury,AtLocation: you find mercury in a thermometer,1 +thermometers,mercury,UsedFor: mercury is used for thermometers,1 +barometers,mercury,UsedFor: mercury is used for barometers,1 +dental_fillings,mercury,UsedFor: mercury is used for dental fillings,1 +liquid_form,mercury,HasA: mercury has a liquid form,1 +element,mercury,MadeOf: mercury is made of an element,1 +metal,mercury,MadeOf: mercury is made of metal,1 +conducting_electricity,mercury,CapableOf: mercury can conduct electricity,1 +flowing,mercury,CapableOf: mercury can flow,1 +poisoning,mercury,Causes: mercury causes poisoning,1 +illness,mercury,Causes: mercury causes illness,1 +silvery,mercury,HasProperty: mercury is silvery,1 +dense,mercury,HasProperty: mercury is dense,1 +shiny,mercury,HasProperty: mercury is shiny,1 +earth_surface,meteorite,AtLocation: meteorites are found on the earth's surface,1 +scientific_study,meteorite,UsedFor: meteorites are used for scientific study,1 +core,meteorite,HasA: meteorites have a core,1 +space_debris,meteorite,PartOf: meteorites are part of space debris,1 +create_crater,meteorite,CapableOf: meteorites can create craters,1 +space_travel,meteorite,HasPrerequisite: meteorites require space travel to reach earth,1 +impact_crater,meteorite,Causes: meteorites cause impact craters,1 +heavy,meteorite,HasProperty: meteorites are heavy,1 +earth,mica,AtLocation: you find mica in the earth,1 +insulation,mica,UsedFor: mica is used for insulation,1 +windows,mica,UsedFor: mica is used for windows,1 +electronics,mica,UsedFor: mica is used in electronics,1 +layers,mica,HasA: mica has layers,1 +flaking,mica,CapableOf: mica can flake,1 +silicate,mica,MadeOf: mica is made of silicate,1 +mining,mica,HasPrerequisite: you need mining to get mica,1 +sparkle,mica,Causes: mica causes sparkle,1 +shiny,mica,HasProperty: mica is shiny,1 +brittle,mica,HasProperty: mica is brittle,1 +workshop,micrometer,AtLocation: you find a micrometer in a workshop,1 +measuring,micrometer,UsedFor: a micrometer is used for measuring,1 +toolbox,micrometer,PartOf: a micrometer is part of a toolbox,1 +measuring,micrometer,CapableOf: a micrometer can measure,1 +metal,micrometer,MadeOf: a micrometer is made of metal,1 +skill,micrometer,HasPrerequisite: you need skill to use a micrometer,1 +accuracy,micrometer,Causes: using a micrometer causes accuracy,1 +precise,micrometer,HasProperty: a micrometer is precise,1 +grocery_store,milk,AtLocation: you find milk at a grocery store,1 +dairy_section,milk,AtLocation: milk is found in the dairy section,1 +home,milk,AtLocation: milk is stored at home,1 +cafe,milk,AtLocation: milk is served at a cafe,1 +cooking,milk,UsedFor: milk is used for cooking,1 +baking,milk,UsedFor: milk is used for baking,1 +protein,milk,HasA: milk has protein,1 +fat,milk,HasA: milk has fat,1 +vitamins,milk,HasA: milk has vitamins,1 +carbohydrates,milk,HasA: milk has carbohydrates,1 +breakfast,milk,PartOf: milk is part of breakfast,1 +meal,milk,PartOf: milk is part of a meal,1 +smoothie,milk,PartOf: milk is part of a smoothie,1 +spoil,milk,CapableOf: milk can spoil,1 +curdle,milk,CapableOf: milk can curdle,1 +mix_with_flour,milk,CapableOf: milk can mix with flour,1 +make_cheese,milk,CapableOf: milk can make cheese,1 +milk_fat,milk,MadeOf: milk is made of milk fat,1 +milk_sugar,milk,MadeOf: milk is made of milk sugar,1 +casein,milk,MadeOf: milk is made of casein,1 +cow,milk,HasPrerequisite: milk requires a cow as a prerequisite,1 +pasteurization,milk,HasPrerequisite: milk requires pasteurization as a prerequisite,1 +refrigeration,milk,HasPrerequisite: milk requires refrigeration as a prerequisite,1 +calcium_absorption,milk,Causes: milk causes calcium absorption,1 +satiety,milk,Causes: milk causes satiety,1 +digestion,milk,Causes: milk causes digestion,1 +liquid,milk,HasProperty: milk is a liquid,1 +refreshing,milk,HasProperty: milk is refreshing,1 +cold,milk,HasProperty: milk is cold,1 +pourable,milk,HasProperty: milk is pourable,1 +cave,mine,AtLocation: you find a mine in a cave,1 +defend,mine,UsedFor: a mine is used for defend,1 +explosive,mine,HasA: a mine has an explosive,1 +damage,mine,CapableOf: a mine can damage,1 +metal,mine,MadeOf: a mine is made of metal,1 +explosion,mine,HasPrerequisite: a mine has a prerequisite of explosion,1 +destruction,mine,Causes: a mine causes destruction,1 +dangerous,mine,HasProperty: a mine is dangerous,1 +fishing,minnow,UsedFor: minnows are used for fishing bait,1 +scales,minnow,HasA: a minnow has scales,1 +swim,minnow,CapableOf: a minnow can swim,1 +food,minnow,Causes: minnows cause food for larger fish,1 +small,minnow,HasProperty: a minnow is small,1 +basement,mold,AtLocation: mold is found in a basement,1 +window,mold,AtLocation: mold can grow around a window,1 +spores,mold,HasA: mold has spores,1 +roots,mold,HasA: mold has roots,1 +fungus,mold,PartOf: mold is part of fungus,1 +grow,mold,CapableOf: mold can grow,1 +spread,mold,CapableOf: mold can spread,1 +decay,mold,CapableOf: mold can cause decay,1 +moisture,mold,HasPrerequisite: mold requires moisture,1 +warmth,mold,HasPrerequisite: mold needs warmth to grow,1 +smell,mold,Causes: mold causes a musty smell,1 +sickness,mold,Causes: mold can cause sickness,1 +fuzzy,mold,HasProperty: mold is fuzzy,1 +green,mold,HasProperty: mold can be green,1 +black,mold,HasProperty: mold can be black,1 +white,mold,HasProperty: mold can be white,1 +tail,mole,HasA: a mole has a tail,1 +ecosystem,mole,PartOf: a mole is part of an ecosystem,1 +swim,mole,CapableOf: a mole can swim,1 +fur,mole,MadeOf: a mole is made of fur,1 +molehills,mole,Causes: a mole causes molehills,1 +blind,mole,HasProperty: a mole is blind,1 +street,moped,AtLocation: you find a moped on a street,1 +commute,moped,UsedFor: a moped is used for commute,1 +transport,moped,UsedFor: a moped is used for transport,1 +short_trips,moped,UsedFor: a moped is used for short trips,1 +city_travel,moped,UsedFor: a moped is used for city travel,1 +wheel,moped,HasA: a moped has a wheel,1 +handlebar,moped,HasA: a moped has a handlebar,1 +engine,moped,HasA: a moped has an engine,1 +seat,moped,HasA: a moped has a seat,1 +traffic,moped,PartOf: a moped is part of traffic,1 +vehicle_fleet,moped,PartOf: a moped is part of vehicle fleet,1 +moving,moped,CapableOf: a moped can move,1 +accelerating,moped,CapableOf: a moped can accelerate,1 +braking,moped,CapableOf: a moped can brake,1 +turning,moped,CapableOf: a moped can turn,1 +carrying,moped,CapableOf: a moped can carry,1 +metal,moped,MadeOf: a moped is made of metal,1 +rubber,moped,MadeOf: a moped is made of rubber,1 +license,moped,HasPrerequisite: you need a license before you can use a moped,1 +fuel,moped,HasPrerequisite: you need fuel before you can use a moped,1 +road,moped,HasPrerequisite: you need a road before you can ride a moped,1 +pollution,moped,Causes: a moped causes pollution,1 +noise,moped,Causes: a moped causes noise,1 +movement,moped,Causes: a moped causes movement,1 +small,moped,HasProperty: a moped is small,1 +lightweight,moped,HasProperty: a moped is lightweight,1 +economical,moped,HasProperty: a moped is economical,1 +construction_site,mortar,AtLocation: you find a mortar at a construction site,1 +building,mortar,UsedFor: mortar is used for building,1 +consistency,mortar,HasA: mortar has a consistency,1 +castle,mortar,PartOf: mortar is part of a castle,1 +bonding,mortar,CapableOf: mortar can bond,1 +cement,mortar,MadeOf: mortar is made of cement,1 +mixing,mortar,HasPrerequisite: you need mixing before you can use mortar,1 +strength,mortar,Causes: mortar causes strength,1 +white,mortar,HasProperty: mortar is white,1 +wall,moss,AtLocation: you find moss on a wall,1 +stone,moss,AtLocation: you find moss on a stone,1 +cave,moss,AtLocation: you find moss in a cave,1 +decoration,moss,UsedFor: moss is used for decoration,1 +craft,moss,UsedFor: moss is used for craft projects,1 +insulation,moss,UsedFor: moss is used for insulation,1 +gardening,moss,UsedFor: moss is used for gardening,1 +cell,moss,HasA: moss has a cell structure,1 +spore,moss,HasA: moss has spores,1 +ecosystem,moss,PartOf: moss is part of an ecosystem,1 +forest_floor,moss,PartOf: moss is part of the forest floor,1 +plant_community,moss,PartOf: moss is part of a plant community,1 +grow,moss,CapableOf: moss can grow,1 +spread,moss,CapableOf: moss can spread,1 +absorb,moss,CapableOf: moss can absorb water,1 +reproduce,moss,CapableOf: moss can reproduce,1 +plant_matter,moss,MadeOf: moss is made of plant matter,1 +chlorophyll,moss,MadeOf: moss is made of chlorophyll,1 +cellulose,moss,MadeOf: moss is made of cellulose,1 +dampness,moss,HasPrerequisite: moss needs dampness,1 +shade,moss,HasPrerequisite: moss needs shade,1 +moisture,moss,HasPrerequisite: moss needs moisture,1 +surface,moss,HasPrerequisite: moss needs a surface to grow on,1 +dampness,moss,Causes: moss causes dampness,1 +decay,moss,Causes: moss causes decay,1 +slipperiness,moss,Causes: moss causes slipperiness,1 +cooling,moss,Causes: moss causes cooling,1 +green,moss,HasProperty: moss has a green property,1 +soft,moss,HasProperty: moss has a soft property,1 +fuzzy,moss,HasProperty: moss has a fuzzy property,1 +damp,moss,HasProperty: moss has a damp property,1 +low-growing,moss,HasProperty: moss has a low-growing property,1 +kitchen,mug,AtLocation: you find a mug in the kitchen,1 +house,mug,AtLocation: you find a mug in a house,1 +restaurant,mug,AtLocation: you find a mug in a restaurant,1 +hot_chocolate,mug,UsedFor: a mug is used for hot chocolate,1 +lip,mug,HasA: a mug has a lip,1 +rim,mug,HasA: a mug has a rim,1 +set,mug,PartOf: a mug is part of a set,1 +kitchenware,mug,PartOf: a mug is part of kitchenware,1 +insulate_hot_liquid,mug,CapableOf: a mug can insulate hot liquid,1 +contain,mug,CapableOf: a mug can contain,1 +ceramic,mug,MadeOf: a mug is made of ceramic,1 +metal,mug,MadeOf: a mug is made of metal,1 +handle,mug,HasPrerequisite: a mug has a handle,1 +satisfaction,mug,Causes: a mug causes satisfaction,1 +warmth,mug,Causes: a mug causes warmth,1 +cylindrical,mug,HasProperty: a mug is cylindrical,1 +durable,mug,HasProperty: a mug is durable,1 +warm,mug,HasProperty: a mug is warm,1 +forest,mushroom,AtLocation: you find mushrooms in a forest,1 +ground,mushroom,AtLocation: mushrooms grow on the ground,1 +eating,mushroom,UsedFor: mushrooms are used for eating,1 +cooking,mushroom,UsedFor: mushrooms are used for cooking,1 +soups,mushroom,UsedFor: mushrooms are used in soups,1 +cap,mushroom,HasA: a mushroom has a cap,1 +meal,mushroom,PartOf: a mushroom is part of a meal,1 +growing,mushroom,CapableOf: a mushroom can grow,1 +fungus,mushroom,MadeOf: a mushroom is made of fungus,1 +spores,mushroom,HasPrerequisite: mushrooms need spores to grow,1 +satisfaction,mushroom,Causes: mushrooms cause satisfaction when eaten,1 +fleshy,mushroom,HasProperty: mushrooms are fleshy,1 +edible,mushroom,HasProperty: mushrooms are edible,1 +round,mushroom,HasProperty: mushrooms are round,1 +wall,nail,AtLocation: you find a nail hammered into a wall,1 +hanging_picture,nail,UsedFor: a nail is used for hanging a picture,1 +repairing_furniture,nail,UsedFor: a nail is used for repairing furniture,1 +construction,nail,UsedFor: a nail is used for construction,1 +head,nail,HasA: a nail has a head,1 +point,nail,HasA: a nail has a point,1 +toolbox,nail,PartOf: a nail is part of a toolbox,1 +securing_objects,nail,CapableOf: a nail can secure objects,1 +penetrating_surfaces,nail,CapableOf: a nail can penetrate surfaces,1 +metal,nail,MadeOf: a nail is made of metal,1 +hammer,nail,HasPrerequisite: you need a hammer before you can use a nail,1 +damage,nail,Causes: a nail can cause damage,1 +stability,nail,Causes: a nail can cause stability,1 +sharp,nail,HasProperty: a nail is sharp,1 +stiff,nail,HasProperty: a nail is stiff,1 +eating,nectarine,UsedFor: a nectarine is used for eating,1 +fruit_salad,nectarine,PartOf: a nectarine is part of a fruit salad,1 +ripening,nectarine,CapableOf: a nectarine can ripen,1 +fruit,nectarine,MadeOf: a nectarine is made of fruit,1 +satisfaction,nectarine,Causes: eating a nectarine causes satisfaction,1 +juicy,nectarine,HasProperty: a nectarine is juicy,1 +eggs,nest,HasA: a nest has eggs,1 +bird's_home,nest,PartOf: a nest is part of a bird's home,1 +holding_eggs,nest,CapableOf: a nest can hold eggs,1 +twigs,nest,MadeOf: a nest is made of twigs,1 +branches,nest,HasPrerequisite: you need branches before you can build a nest,1 +warmth,nest,Causes: a nest causes warmth,1 +cozy,nest,HasProperty: a nest is cozy,1 +coin_purse,nickel,AtLocation: you find a nickel in a coin purse,1 +vending,nickel,UsedFor: a nickel is used for vending,1 +laundry,nickel,UsedFor: a nickel is used for laundry,1 +purchase,nickel,UsedFor: a nickel is used for purchase,1 +number,nickel,HasA: a nickel has a number,1 +piggy_bank,nickel,PartOf: a nickel is part of a piggy bank,1 +wallet,nickel,PartOf: a nickel is part of a wallet,1 +pocket_change,nickel,PartOf: a nickel is part of pocket change,1 +metal,nickel,MadeOf: a nickel is made of metal,1 +mint,nickel,HasPrerequisite: you need a mint before you can have a nickel,1 +spending,nickel,Causes: a nickel causes spending,1 +savings,nickel,Causes: a nickel causes savings,1 +small,nickel,HasProperty: a nickel is small,1 +round,nickel,HasProperty: a nickel is round,1 +metallic,nickel,HasProperty: a nickel is metallic,1 +smooth,nickel,HasProperty: a nickel is smooth,1 +listening,nightingale,UsedFor: people use nightingales for listening,1 +music,nightingale,UsedFor: nightingales are used for music,1 +beak,nightingale,HasA: a nightingale has a beak,1 +feathers,nightingale,HasA: a nightingale has feathers,1 +wildlife,nightingale,PartOf: a nightingale is part of wildlife,1 +nature,nightingale,PartOf: a nightingale is part of nature,1 +sing,nightingale,CapableOf: a nightingale can sing,1 +build,nightingale,CapableOf: a nightingale can build nests,1 +bird,nightingale,MadeOf: a nightingale is made of a bird,1 +habitat,nightingale,HasPrerequisite: a nightingale requires habitat,1 +insects,nightingale,HasPrerequisite: a nightingale needs insects,1 +pleasure,nightingale,Causes: a nightingale causes pleasure,1 +music,nightingale,Causes: a nightingale causes music,1 +small,nightingale,HasProperty: a nightingale is small,1 +brown,nightingale,HasProperty: a nightingale is brown,1 +singing,nightingale,HasProperty: a nightingale is singing,1 +eating_insects,nightjar,UsedFor: a nightjar is used for eating insects,1 +wide_mouth,nightjar,HasA: a nightjar has a wide mouth,1 +ecosystem,nightjar,PartOf: a nightjar is part of an ecosystem,1 +flying,nightjar,CapableOf: a nightjar can fly,1 +nocturnal,nightjar,HasProperty: a nightjar is nocturnal,1 +camouflaged,nightjar,HasProperty: a nightjar is camouflaged,1 +slender,nightjar,HasProperty: a nightjar is slender,1 +eating,nut,UsedFor: nuts are used for eating,1 +cooking,nut,UsedFor: nuts are used for cooking,1 +kernel,nut,HasA: a nut has a kernel,1 +nutcracker,nut,PartOf: a nut is part of a nutcracker,1 +provide_nutrition,nut,CapableOf: a nut can provide nutrition,1 +crush,nut,CapableOf: a nut can crush under pressure,1 +plant,nut,MadeOf: a nut is made of plant matter,1 +food,nut,MadeOf: a nut is made of food,1 +harvest,nut,HasPrerequisite: you need to harvest before you get nuts,1 +fullness,nut,Causes: eating nuts causes fullness,1 +satisfaction,nut,Causes: eating nuts causes satisfaction,1 +hard,nut,HasProperty: a nut is hard,1 +edible,nut,HasProperty: a nut is edible,1 +dry,nut,HasProperty: a nut is dry,1 +spice_rack,nutmeg,AtLocation: you find nutmeg in a spice rack,1 +cooking,nutmeg,UsedFor: nutmeg is used for cooking,1 +flavoring_desserts,nutmeg,UsedFor: nutmeg is used for flavoring desserts,1 +adding_warmth_to_dishes,nutmeg,UsedFor: nutmeg is used for adding warmth to dishes,1 +seasoning_meats,nutmeg,UsedFor: nutmeg is used for seasoning meats,1 +kernel,nutmeg,HasA: nutmeg has a kernel,1 +aroma,nutmeg,HasA: nutmeg has an aroma,1 +flavor,nutmeg,HasA: nutmeg has a flavor,1 +spice_blend,nutmeg,PartOf: nutmeg is part of a spice blend,1 +pumpkin_spice,nutmeg,PartOf: nutmeg is part of pumpkin spice,1 +seasoning,nutmeg,CapableOf: nutmeg can season food,1 +preserving,nutmeg,CapableOf: nutmeg can preserve food,1 +seed,nutmeg,MadeOf: nutmeg is made of seed,1 +fruit,nutmeg,MadeOf: nutmeg is made of fruit,1 +grinding,nutmeg,HasPrerequisite: you need grinding before you can use nutmeg,1 +warmth,nutmeg,Causes: nutmeg causes warmth in food,1 +fragrance,nutmeg,Causes: nutmeg causes fragrance in food,1 +aromatic,nutmeg,HasProperty: nutmeg is aromatic,1 +pungent,nutmeg,HasProperty: nutmeg is pungent,1 +brown,nutmeg,HasProperty: nutmeg is brown,1 +fabric,nylon,AtLocation: you find nylon in fabric,1 +fishing_line,nylon,UsedFor: nylon is used for fishing line,1 +toothbrushes,nylon,UsedFor: nylon is used for toothbrushes,1 +fiber,nylon,HasA: nylon has a fiber,1 +carpet,nylon,PartOf: nylon is part of carpet,1 +upholstery,nylon,PartOf: nylon is part of upholstery,1 +stretch,nylon,CapableOf: nylon can stretch,1 +resist,nylon,CapableOf: nylon can resist tearing,1 +chemical,nylon,MadeOf: nylon is made of chemical,1 +polymer,nylon,MadeOf: nylon is made of polymer,1 +petroleum,nylon,HasPrerequisite: nylon requires petroleum to be made,1 +comfort,nylon,Causes: nylon causes comfort in clothing,1 +strong,nylon,HasProperty: nylon is strong,1 +durable,nylon,HasProperty: nylon is durable,1 +smooth,nylon,HasProperty: nylon has a smooth texture,1 +forest,oak,AtLocation: you find an oak in a forest,1 +park,oak,AtLocation: you find an oak in a park,1 +furniture,oak,UsedFor: oak is used for furniture,1 +flooring,oak,UsedFor: oak is used for flooring,1 +construction,oak,UsedFor: oak is used for construction,1 +branches,oak,HasA: an oak has branches,1 +acorns,oak,HasA: an oak has acorns,1 +ecosystem,oak,PartOf: an oak is part of an ecosystem,1 +landscape,oak,PartOf: an oak is part of a landscape,1 +growing,oak,CapableOf: an oak can grow,1 +producing,oak,CapableOf: an oak can produce acorns,1 +soil,oak,HasPrerequisite: you need soil to grow an oak,1 +sunlight,oak,HasPrerequisite: you need sunlight for an oak,1 +shade,oak,Causes: an oak causes shade,1 +oxygen,oak,Causes: an oak causes oxygen,1 +sturdy,oak,HasProperty: oak is sturdy,1 +strong,oak,HasProperty: oak is strong,1 +tall,oak,HasProperty: oak is tall,1 +concert_hall,oboe,AtLocation: you find an oboe in a concert hall,1 +practice_room,oboe,AtLocation: you find an oboe in a practice room,1 +symphony_hall,oboe,AtLocation: you find an oboe in a symphony hall,1 +conservatory,oboe,AtLocation: you find an oboe in a conservatory,1 +solo_performances,oboe,UsedFor: an oboe is used for solo performances,1 +wind_band,oboe,UsedFor: an oboe is used for wind band,1 +chamber_music,oboe,UsedFor: an oboe is used for chamber music,1 +military_band,oboe,UsedFor: an oboe is used for military band,1 +tuning_an_orchestra,oboe,UsedFor: an oboe is used for tuning an orchestra,1 +double_reed,oboe,HasA: an oboe has a double reed,1 +bell,oboe,HasA: an oboe has a bell,1 +keys,oboe,HasA: an oboe has keys,1 +tone_holes,oboe,HasA: an oboe has tone holes,1 +body,oboe,HasA: an oboe has a body,1 +musical_ensemble,oboe,PartOf: an oboe is part of a musical ensemble,1 +wind_section,oboe,PartOf: an oboe is part of a wind section,1 +woodwind_section,oboe,PartOf: an oboe is part of a woodwind section,1 +band_section,oboe,PartOf: an oboe is part of a band section,1 +orchestra_section,oboe,PartOf: an oboe is part of an orchestra section,1 +producing_tone,oboe,CapableOf: an oboe can produce tone,1 +projecting_sound,oboe,CapableOf: an oboe can project sound,1 +playing_melody,oboe,CapableOf: an oboe can play melody,1 +accompanying,oboe,CapableOf: an oboe can accompany,1 +creating_harmony,oboe,CapableOf: an oboe can create harmony,1 +metal,oboe,MadeOf: an oboe is made of metal,1 +ivory,oboe,MadeOf: an oboe is made of ivory,1 +grenadilla_wood,oboe,MadeOf: an oboe is made of grenadilla wood,1 +breath,oboe,HasPrerequisite: you need breath to play an oboe,1 +musical_talent,oboe,HasPrerequisite: you need musical talent to play an oboe,1 +reed,oboe,HasPrerequisite: you need a reed to play an oboe,1 +embouchure,oboe,HasPrerequisite: you need embouchure to play an oboe,1 +practice,oboe,HasPrerequisite: you need practice to play an oboe,1 +sound,oboe,Causes: an oboe causes sound,1 +music,oboe,Causes: an oboe causes music,1 +vibration,oboe,Causes: an oboe causes vibration,1 +enjoyment,oboe,Causes: an oboe causes enjoyment,1 +relaxation,oboe,Causes: an oboe causes relaxation,1 +wooden,oboe,HasProperty: an oboe is wooden,1 +wooden_bodied,oboe,HasProperty: an oboe is wooden-bodied,1 +reeded,oboe,HasProperty: an oboe is reeded,1 +keyed,oboe,HasProperty: an oboe is keyed,1 +conical_bore,oboe,HasProperty: an oboe has a conical bore,1 +floor,office,AtLocation: an office is found on a floor,1 +building,office,AtLocation: an office is found in a building,1 +writing,office,UsedFor: an office is used for writing,1 +reading,office,UsedFor: an office is used for reading,1 +storing_documents,office,UsedFor: an office is used for storing documents,1 +chair,office,HasA: an office has a chair,1 +filing_cabinet,office,HasA: an office has a filing cabinet,1 +office_suite,office,PartOf: an office is part of an office suite,1 +office_complex,office,PartOf: an office is part of an office complex,1 +generate_heat,office,CapableOf: an office can generate heat,1 +host_meeting,office,CapableOf: an office can host a meeting,1 +store_information,office,CapableOf: an office can store information,1 +metal,office,MadeOf: an office is made of metal,1 +concrete,office,MadeOf: an office is made of concrete,1 +electricity,office,HasPrerequisite: an office requires electricity,1 +internet_connection,office,HasPrerequisite: an office requires an internet connection,1 +furniture,office,HasPrerequisite: an office requires furniture,1 +productivity,office,Causes: an office causes productivity,1 +stress,office,Causes: an office causes stress,1 +focus,office,Causes: an office causes focus,1 +functional,office,HasProperty: an office is functional,1 +organized,office,HasProperty: an office is organized,1 +private,office,HasProperty: an office is private,1 +workshop,oilcan,AtLocation: you find an oilcan in a workshop,1 +lubricating,oilcan,UsedFor: an oilcan is used for lubricating,1 +spout,oilcan,HasA: an oilcan has a spout,1 +toolbox,oilcan,PartOf: an oilcan is part of a toolbox,1 +dispensing,oilcan,CapableOf: an oilcan can dispense oil,1 +metal,oilcan,MadeOf: an oilcan is made of metal,1 +oil,oilcan,HasPrerequisite: you need oil before you can use an oilcan,1 +lubrication,oilcan,Causes: an oilcan causes lubrication,1 +lightweight,oilcan,HasProperty: an oilcan is lightweight,1 +thickening,okra,UsedFor: okra is used for thickening stews,1 +seed,okra,HasA: okra has a seed inside,1 +meal,okra,PartOf: okra is part of a meal,1 +growing,okra,CapableOf: okra can grow in warm soil,1 +plant,okra,MadeOf: okra is made of plant material,1 +soil,okra,HasPrerequisite: you need soil before you can grow okra,1 +sliminess,okra,Causes: okra causes sliminess in dishes,1 +fibrous,okra,HasProperty: okra is fibrous,1 +kitchen,onion,AtLocation: you find onions in a kitchen,1 +cooking,onion,UsedFor: onions are used for cooking,1 +flavoring,onion,UsedFor: onions are used for flavoring dishes,1 +salads,onion,UsedFor: onions are used in salads,1 +soups,onion,UsedFor: onions are used in soups,1 +skin,onion,HasA: an onion has a skin,1 +layers,onion,HasA: an onion has layers,1 +meal,onion,PartOf: an onion is part of a meal,1 +making_tears,onion,CapableOf: an onion can make tears,1 +plant_cells,onion,MadeOf: an onion is made of plant cells,1 +soil,onion,HasPrerequisite: you need soil before you can grow onions,1 +tears,onion,Causes: onions cause tears,1 +flavor,onion,Causes: onions cause flavor,1 +pungency,onion,Causes: onions cause pungency,1 +round,onion,HasProperty: onions are round,1 +pungent,onion,HasProperty: onions are pungent,1 +layered,onion,HasProperty: onions are layered,1 +edible,onion,HasProperty: onions are edible,1 +kitchen,opener,AtLocation: an opener is found in a kitchen,1 +opening,opener,UsedFor: an opener is used for opening cans,1 +uncapping,opener,UsedFor: an opener is used for uncapping bottles,1 +prying,opener,UsedFor: an opener is used for prying things open,1 +handle,opener,HasA: an opener has a handle,1 +toolkit,opener,PartOf: an opener is part of a toolkit,1 +cutting,opener,CapableOf: an opener can cut through metal,1 +twisting,opener,CapableOf: an opener can twist lids off,1 +puncturing,opener,CapableOf: an opener can puncture cans,1 +metal,opener,MadeOf: an opener is made of metal,1 +can,opener,HasPrerequisite: you need a can before using an opener,1 +opening,opener,Causes: an opener causes opening of containers,1 +access,opener,Causes: an opener causes access to contents,1 +damage,opener,Causes: an opener can cause damage to containers,1 +sharp,opener,HasProperty: an opener is sharp,1 +metal,opener,HasProperty: an opener is metal,1 +handheld,opener,HasProperty: an opener is handheld,1 +grocery_store,orange,AtLocation: you find an orange in a grocery store,1 +eating,orange,UsedFor: an orange is used for eating,1 +juice,orange,HasA: an orange has juice,1 +citrus_fruit,orange,PartOf: an orange is part of citrus fruit,1 +grow_on_tree,orange,CapableOf: an orange can grow on tree,1 +fruit_fiber,orange,MadeOf: an orange is made of fruit fiber,1 +orange_tree,orange,HasPrerequisite: you need an orange tree before you can have an orange,1 +thirst,orange,Causes: an orange causes thirst,1 +round,orange,HasProperty: an orange is round,1 +juicy,orange,HasProperty: an orange is juicy,1 +tangy,orange,HasProperty: an orange is tangy,1 +food,orca,UsedFor: an orca is used for food (by other predators),1 +fin,orca,HasA: an orca has a fin,1 +swim,orca,CapableOf: an orca can swim,1 +saltwater,orca,HasPrerequisite: you need saltwater before you can have an orca,1 +excitement,orca,Causes: an orca causes excitement,1 +black,orca,HasProperty: an orca is black,1 +countryside,orchard,AtLocation: an orchard is found in the countryside,1 +farm,orchard,AtLocation: an orchard is found on a farm,1 +growing_fruit,orchard,UsedFor: an orchard is used for growing fruit,1 +harvesting,orchard,UsedFor: an orchard is used for harvesting fruit,1 +recreation,orchard,UsedFor: an orchard is used for recreation,1 +education,orchard,UsedFor: an orchard is used for education,1 +cider_production,orchard,UsedFor: an orchard is used for cider production,1 +trees,orchard,HasA: an orchard has trees,1 +fruit,orchard,HasA: an orchard has fruit,1 +leaves,orchard,HasA: an orchard has leaves,1 +branches,orchard,HasA: an orchard has branches,1 +ground,orchard,HasA: an orchard has ground,1 +countryside,orchard,PartOf: an orchard is part of the countryside,1 +landscape,orchard,PartOf: an orchard is part of the landscape,1 +farm,orchard,PartOf: an orchard is part of a farm,1 +property,orchard,PartOf: an orchard is part of a property,1 +nature,orchard,PartOf: an orchard is part of nature,1 +producing_fruit,orchard,CapableOf: an orchard can produce fruit,1 +attracting_wildlife,orchard,CapableOf: an orchard can attract wildlife,1 +providing_shade,orchard,CapableOf: an orchard can provide shade,1 +supporting_biodiversity,orchard,CapableOf: an orchard can support biodiversity,1 +yielding_crops,orchard,CapableOf: an orchard can yield crops,1 +land,orchard,MadeOf: an orchard is made of land,1 +soil,orchard,MadeOf: an orchard is made of soil,1 +trees,orchard,MadeOf: an orchard is made of trees,1 +plants,orchard,MadeOf: an orchard is made of plants,1 +roots,orchard,MadeOf: an orchard is made of roots,1 +land,orchard,HasPrerequisite: you need land before you can have an orchard,1 +trees,orchard,HasPrerequisite: you need trees before you can have an orchard,1 +seeds,orchard,HasPrerequisite: you need seeds before you can have an orchard,1 +space,orchard,HasPrerequisite: you need space before you can have an orchard,1 +cultivation,orchard,HasPrerequisite: you need cultivation before you can have an orchard,1 +fruit_production,orchard,Causes: an orchard causes fruit production,1 +harvests,orchard,Causes: an orchard causes harvests,1 +biodiversity,orchard,Causes: an orchard causes biodiversity,1 +shade,orchard,Causes: an orchard causes shade,1 +scenery,orchard,Causes: an orchard causes scenery,1 +wildlife_habitat,orchard,Causes: an orchard causes wildlife habitat,1 +green,orchard,HasProperty: an orchard is green,1 +leafy,orchard,HasProperty: an orchard is leafy,1 +shady,orchard,HasProperty: an orchard is shady,1 +fruitful,orchard,HasProperty: an orchard is fruitful,1 +rural,orchard,HasProperty: an orchard is rural,1 +decoration,orchid,UsedFor: an orchid is used for decoration,1 +petal,orchid,HasA: an orchid has a petal,1 +flowering,orchid,CapableOf: an orchid can flower,1 +plant_matter,orchid,MadeOf: an orchid is made of plant matter,1 +sunlight,orchid,HasPrerequisite: an orchid needs sunlight to grow,1 +beauty,orchid,Causes: an orchid causes beauty,1 +fragrant,orchid,HasProperty: an orchid is fragrant,1 +spice_rack,oregano,AtLocation: you find oregano in a spice rack,1 +grocery_store,oregano,AtLocation: you find oregano in a grocery store,1 +flavoring,oregano,UsedFor: oregano is used for flavoring,1 +cooking,oregano,UsedFor: oregano is used for cooking,1 +italian_cuisine,oregano,UsedFor: oregano is used in italian cuisine,1 +leaves,oregano,HasA: oregano has leaves,1 +flavor,oregano,HasA: oregano has a distinct flavor,1 +aroma,oregano,HasA: oregano has a strong aroma,1 +herb_blend,oregano,PartOf: oregano is part of herb blend,1 +italian_seasoning,oregano,PartOf: oregano is part of italian seasoning,1 +tomato_sauce,oregano,PartOf: oregano is part of tomato sauce,1 +enhance,oregano,CapableOf: oregano can enhance food flavor,1 +preserve,oregano,CapableOf: oregano can help preserve food,1 +soothe,oregano,CapableOf: oregano can soothe coughs,1 +disinfect,oregano,CapableOf: oregano can disinfect surfaces,1 +plant,oregano,MadeOf: oregano is made of plant,1 +leaves,oregano,MadeOf: oregano is made of leaves,1 +stems,oregano,MadeOf: oregano is made of stems,1 +soil,oregano,HasPrerequisite: oregano requires soil to grow,1 +sunlight,oregano,HasPrerequisite: oregano requires sunlight to grow,1 +flavor,oregano,Causes: oregano causes flavor in food,1 +aroma,oregano,Causes: oregano causes aroma in food,1 +health_benefit,oregano,Causes: oregano causes health benefits,1 +satisfaction,oregano,Causes: oregano causes satisfaction in taste,1 +green,oregano,HasProperty: oregano has a green color,1 +dry,oregano,HasProperty: oregano has a dry texture when dried,1 +pungent,oregano,HasProperty: oregano has a pungent smell,1 +concert_hall,organ,AtLocation: an organ is found in a concert hall,1 +university,organ,AtLocation: you can find an organ in a university,1 +home,organ,AtLocation: some organs are found in homes,1 +museum,organ,AtLocation: organs are sometimes displayed in museums,1 +auditorium,organ,AtLocation: an organ can be located in an auditorium,1 +music_education,organ,UsedFor: an organ is used for music education,1 +practice,organ,UsedFor: organs are used for practice,1 +performance,organ,UsedFor: an organ is used for performance,1 +accompaniment,organ,UsedFor: an organ is used for accompaniment,1 +worship,organ,UsedFor: organs are used for worship,1 +keys,organ,HasA: an organ has keys,1 +pipes,organ,HasA: an organ has pipes,1 +keyboard,organ,HasA: an organ has a keyboard,1 +pedals,organ,HasA: an organ has pedals,1 +musical_instrument_family,organ,PartOf: an organ is part of the musical instrument family,1 +keyboard_instrument,organ,PartOf: an organ is part of the keyboard instrument category,1 +pipe_instrument,organ,PartOf: an organ is part of pipe instruments,1 +making_sound,organ,CapableOf: an organ can make sound,1 +producing_harmony,organ,CapableOf: an organ can produce harmony,1 +creating_atmosphere,organ,CapableOf: an organ can create atmosphere,1 +playing_classical_music,organ,CapableOf: an organ can play classical music,1 +filling_space_with_music,organ,CapableOf: an organ can fill space with music,1 +metal,organ,MadeOf: an organ is made of metal,1 +pipes,organ,MadeOf: an organ is made of pipes,1 +player,organ,HasPrerequisite: an organ requires a player,1 +electricity,organ,HasPrerequisite: an organ requires electricity,1 +tuning,organ,HasPrerequisite: an organ requires tuning,1 +maintenance,organ,HasPrerequisite: an organ requires maintenance,1 +music,organ,Causes: an organ causes music,1 +inspiration,organ,Causes: an organ causes inspiration,1 +relaxation,organ,Causes: an organ can cause relaxation,1 +awe,organ,Causes: an organ can cause awe,1 +eating_insects,oriole,UsedFor: an oriole is used for eating insects,1 +beak,oriole,HasA: an oriole has a beak,1 +flock,oriole,PartOf: an oriole is part of a flock,1 +singing,oriole,CapableOf: an oriole can sing,1 +joy,oriole,Causes: an oriole causes joy,1 +colorful,oriole,HasProperty: an oriole is colorful,1 +sky,osprey,AtLocation: an osprey can be found in the sky,1 +fishing,osprey,UsedFor: an osprey is used for fishing,1 +hunting,osprey,UsedFor: an osprey is used for hunting,1 +wings,osprey,HasA: an osprey has wings,1 +beak,osprey,HasA: an osprey has a beak,1 +ecosystem,osprey,PartOf: an osprey is part of an ecosystem,1 +food_chain,osprey,PartOf: an osprey is part of a food chain,1 +dive_into_water,osprey,CapableOf: an osprey can dive into water,1 +catch_fish,osprey,CapableOf: an osprey can catch fish,1 +build_nest,osprey,CapableOf: an osprey can build a nest,1 +flesh,osprey,MadeOf: an osprey is made of flesh,1 +bone,osprey,MadeOf: an osprey is made of bone,1 +water_source,osprey,HasPrerequisite: you need a water source to have an osprey,1 +fish_population,osprey,HasPrerequisite: you need a fish population to have an osprey,1 +fish_population_decrease,osprey,Causes: an osprey causes a fish population decrease,1 +nest_building,osprey,Causes: an osprey causes nest building,1 +large,osprey,HasProperty: an osprey has the property of being large,1 +brown,osprey,HasProperty: an osprey has the property of being brown,1 +white,osprey,HasProperty: an osprey has the property of being white,1 +desert,ostrich,AtLocation: you find an ostrich in a desert,1 +racing,ostrich,UsedFor: an ostrich is used for racing,1 +feather,ostrich,HasA: an ostrich has a feather,1 +flock,ostrich,PartOf: an ostrich is part of a flock,1 +run,ostrich,CapableOf: an ostrich can run,1 +surprise,ostrich,Causes: an ostrich causes surprise,1 +tall,ostrich,HasProperty: an ostrich is tall,1 +fast,ostrich,HasProperty: an ostrich is fast,1 +flightless,ostrich,HasProperty: an ostrich is flightless,1 +forest,owl,AtLocation: you find an owl in a forest,1 +feathers,owl,HasA: an owl has feathers,1 +beak,owl,HasA: an owl has a beak,1 +talons,owl,HasA: an owl has talons,1 +bird_kingdom,owl,PartOf: an owl is part of the bird kingdom,1 +hunt,owl,CapableOf: an owl can hunt,1 +turn_its_head,owl,CapableOf: an owl can turn its head,1 +trees,owl,HasPrerequisite: you need trees to find an owl,1 +fear,owl,Causes: an owl causes fear,1 +silent,owl,HasProperty: an owl is silent,1 +wise,owl,HasProperty: an owl is wise,1 +nocturnal,owl,HasProperty: an owl is nocturnal,1 +savanna,oxpecker,AtLocation: you find an oxpecker in a savanna,1 +pest_control,oxpecker,UsedFor: an oxpecker is used for pest control,1 +eating_insects,oxpecker,UsedFor: an oxpecker is used for eating insects,1 +beak,oxpecker,HasA: an oxpecker has a beak,1 +wings,oxpecker,HasA: an oxpecker has wings,1 +ecosystem,oxpecker,PartOf: an oxpecker is part of an ecosystem,1 +bird_family,oxpecker,PartOf: an oxpecker is part of bird family,1 +flying,oxpecker,CapableOf: an oxpecker can fly,1 +perching,oxpecker,CapableOf: an oxpecker can perch,1 +eating_ticks,oxpecker,CapableOf: an oxpecker can eat ticks,1 +host_animal,oxpecker,HasPrerequisite: an oxpecker needs a host animal,1 +suitable_habitat,oxpecker,HasPrerequisite: an oxpecker needs suitable habitat,1 +cleaning,oxpecker,Causes: an oxpecker causes cleaning,1 +alerting_host,oxpecker,Causes: an oxpecker causes alerting host,1 +small,oxpecker,HasProperty: an oxpecker is small,1 +brown,oxpecker,HasProperty: an oxpecker is brown,1 +construction_site,pail,AtLocation: you find a pail at a construction site,1 +collecting_leaves,pail,UsedFor: a pail is used for collecting leaves,1 +handle,pail,HasA: a pail has a handle,1 +cleaning_kit,pail,PartOf: a pail is part of a cleaning kit,1 +holding_substance,pail,CapableOf: a pail can hold a substance,1 +bucket_maker,pail,HasPrerequisite: you need a bucket maker before you can have a pail,1 +containment,pail,Causes: a pail causes containment of liquids,1 +portable,pail,HasProperty: a pail is portable,1 +eating,papaya,UsedFor: a papaya is used for eating,1 +cooking,papaya,UsedFor: a papaya is used for cooking,1 +making_juice,papaya,UsedFor: a papaya is used for making juice,1 +seed,papaya,HasA: a papaya has a seed,1 +flesh,papaya,HasA: a papaya has flesh,1 +skin,papaya,HasA: a papaya has skin,1 +meal,papaya,PartOf: a papaya is part of a meal,1 +ripening,papaya,CapableOf: a papaya can ripen,1 +fruit,papaya,MadeOf: a papaya is made of fruit,1 +satisfaction,papaya,Causes: a papaya causes satisfaction,1 +sweet,papaya,HasProperty: a papaya is sweet,1 +tropical,papaya,HasProperty: a papaya is tropical,1 +envelope,paper,AtLocation: paper is found inside an envelope,1 +book,paper,AtLocation: paper is found in a book,1 +wrapping_gifts,paper,UsedFor: paper is used for wrapping gifts,1 +making_crafts,paper,UsedFor: paper is used for making crafts,1 +covering_books,paper,UsedFor: paper is used for covering books,1 +fibers,paper,HasA: paper has fibers,1 +watermark,paper,HasA: paper can have a watermark,1 +document,paper,PartOf: paper is part of a document,1 +art_project,paper,PartOf: paper is part of an art project,1 +absorbing_liquid,paper,CapableOf: paper can absorb liquid,1 +folding,paper,CapableOf: paper can be folded,1 +creating_noise_when_crumpled,paper,CapableOf: paper can create noise when crumpled,1 +floating,paper,CapableOf: paper can float on water,1 +providing_something_to_write_on,paper,CapableOf: paper can provide something to write on,1 +recycled_material,paper,MadeOf: paper can be made of recycled material,1 +energy,paper,HasPrerequisite: paper requires energy to produce,1 +clutter,paper,Causes: paper can cause clutter,1 +waste,paper,Causes: paper can cause waste,1 +lightweight,paper,HasProperty: paper is lightweight,1 +smooth,paper,HasProperty: paper can be smooth,1 +rough,paper,HasProperty: paper can be rough,1 +absorbent,paper,HasProperty: paper can be absorbent,1 +flammable,paper,HasProperty: paper is flammable,1 +spice_cabinet,paprika,AtLocation: you find paprika in a spice cabinet,1 +adding_color,paprika,UsedFor: paprika is used for adding color to food,1 +flavoring_food,paprika,UsedFor: paprika is used for flavoring food,1 +making_goulash,paprika,UsedFor: paprika is used for making goulash,1 +seasoning,paprika,UsedFor: paprika is used for seasoning dishes,1 +flavor,paprika,HasA: paprika has a distinct flavor,1 +aroma,paprika,HasA: paprika has a pleasant aroma,1 +spice_blend,paprika,PartOf: paprika is part of many spice blends,1 +cooking_ingredient,paprika,PartOf: paprika is part of a cook's ingredients,1 +adding_spice,paprika,CapableOf: paprika is capable of adding spice to meals,1 +enhancing_taste,paprika,CapableOf: paprika is capable of enhancing taste,1 +peppers,paprika,MadeOf: paprika is made of dried peppers,1 +ground_spice,paprika,MadeOf: paprika is made of ground spice,1 +peppers,paprika,HasPrerequisite: paprika requires peppers as a prerequisite,1 +grinding,paprika,HasPrerequisite: paprika requires grinding as a prerequisite,1 +flavor_enhancement,paprika,Causes: paprika causes flavor enhancement,1 +color_change,paprika,Causes: paprika causes a color change in dishes,1 +red,paprika,HasProperty: paprika has a red color,1 +powder,paprika,HasProperty: paprika has a powder form,1 +ground,paprika,HasProperty: paprika has a ground texture,1 +cage,parakeet,AtLocation: a parakeet is found in a cage,1 +pet_store,parakeet,AtLocation: parakeets are found in pet stores,1 +company,parakeet,UsedFor: parakeets are used for company,1 +education,parakeet,UsedFor: parakeets are used for education,1 +companionship,parakeet,UsedFor: parakeets are used for companionship,1 +beak,parakeet,HasA: a parakeet has a beak,1 +feathers,parakeet,HasA: a parakeet has feathers,1 +wings,parakeet,HasA: a parakeet has wings,1 +pet_family,parakeet,PartOf: a parakeet is part of a pet family,1 +bird_family,parakeet,PartOf: a parakeet is part of a bird family,1 +ecosystem,parakeet,PartOf: a parakeet is part of an ecosystem,1 +chirp,parakeet,CapableOf: a parakeet can chirp,1 +sing,parakeet,CapableOf: a parakeet can sing,1 +eat,parakeet,CapableOf: a parakeet can eat,1 +flesh,parakeet,MadeOf: a parakeet is made of flesh,1 +bone,parakeet,MadeOf: a parakeet is made of bone,1 +feather,parakeet,MadeOf: a parakeet is made of feathers,1 +cage,parakeet,HasPrerequisite: a parakeet requires a cage,1 +food,parakeet,HasPrerequisite: a parakeet requires food,1 +space,parakeet,HasPrerequisite: a parakeet requires space,1 +joy,parakeet,Causes: a parakeet causes joy,1 +sound,parakeet,Causes: a parakeet causes sound,1 +companionship,parakeet,Causes: a parakeet causes companionship,1 +happiness,parakeet,Causes: a parakeet causes happiness,1 +colorful,parakeet,HasProperty: a parakeet is colorful,1 +small,parakeet,HasProperty: a parakeet is small,1 +feathered,parakeet,HasProperty: a parakeet is feathered,1 +lightweight,parakeet,HasProperty: a parakeet is lightweight,1 +cooking,parsley,UsedFor: parsley is used for cooking,1 +garnish,parsley,UsedFor: parsley is used as a garnish,1 +flavoring,parsley,UsedFor: parsley is used for flavoring food,1 +leaf,parsley,HasA: parsley has leaves,1 +bouquet,parsley,PartOf: parsley is part of a bouquet garni,1 +herb_garden,parsley,PartOf: parsley is part of an herb garden,1 +growing,parsley,CapableOf: parsley can grow,1 +plant,parsley,MadeOf: parsley is made of a plant,1 +chlorophyll,parsley,MadeOf: parsley is made of chlorophyll,1 +sunlight,parsley,HasPrerequisite: parsley requires sunlight to grow,1 +soil,parsley,HasPrerequisite: parsley requires soil to grow,1 +freshness,parsley,Causes: parsley causes freshness,1 +aroma,parsley,Causes: parsley causes aroma,1 +green,parsley,HasProperty: parsley is green,1 +leafy,parsley,HasProperty: parsley is leafy,1 +fresh,parsley,HasProperty: parsley is fresh,1 +eating,partridge,UsedFor: a partridge is used for eating,1 +feather,partridge,HasA: a partridge has a feather,1 +game_bird,partridge,PartOf: a partridge is part of game bird,1 +environment,partridge,HasPrerequisite: you need an environment before you can have a partridge,1 +hunt,partridge,Causes: a partridge causes hunt,1 +brown,partridge,HasProperty: a partridge is brown,1 +farm,pasture,AtLocation: a pasture is found on a farm,1 +grazing,pasture,UsedFor: a pasture is used for grazing,1 +countryside,pasture,PartOf: a pasture is part of the countryside,1 +supporting_livestock,pasture,CapableOf: a pasture can support livestock,1 +land,pasture,MadeOf: a pasture is made of land,1 +growth,pasture,Causes: a pasture causes growth of grass,1 +green,pasture,HasProperty: a pasture is green,1 +cooking,pea,UsedFor: a pea is used for cooking,1 +seed,pea,HasA: a pea has a seed,1 +growing,pea,CapableOf: a pea can grow,1 +plant,pea,MadeOf: a pea is made of plant,1 +sunlight,pea,HasPrerequisite: you need sunlight before you can grow a pea,1 +fullness,pea,Causes: eating a pea causes fullness,1 +growth,pea,Causes: eating peas causes growth,1 +green,pea,HasProperty: a pea is green,1 +small,pea,HasProperty: a pea is small,1 +round,pea,HasProperty: a pea is round,1 +eating,peach,UsedFor: a peach is used for eating,1 +cooking,peach,UsedFor: a peach is used for cooking,1 +dessert,peach,UsedFor: a peach is used for making desserts,1 +skin,peach,HasA: a peach has a skin,1 +flesh,peach,HasA: a peach has flesh,1 +fruit_salad,peach,PartOf: a peach is part of a fruit salad,1 +smoothie,peach,PartOf: a peach is part of a smoothie,1 +ripening,peach,CapableOf: a peach can ripen,1 +spoiling,peach,CapableOf: a peach can spoil,1 +sugar,peach,MadeOf: a peach is made of sugar,1 +sunlight,peach,HasPrerequisite: you need sunlight to grow a peach,1 +satisfaction,peach,Causes: eating a peach causes satisfaction,1 +sweetness,peach,Causes: a peach causes sweetness,1 +sweet,peach,HasProperty: a peach is sweet,1 +juicy,peach,HasProperty: a peach is juicy,1 +soft,peach,HasProperty: a peach is soft,1 +forest,peacock,AtLocation: you find a peacock in a forest,1 +attracting_mate,peacock,UsedFor: a peacock is used for attracting a mate,1 +crest,peacock,HasA: a peacock has a crest,1 +wildlife,peacock,PartOf: a peacock is part of wildlife,1 +fanning_feathers,peacock,CapableOf: a peacock can fan its feathers,1 +feathers,peacock,MadeOf: a peacock is made of feathers,1 +tree_branch,peacock,HasPrerequisite: you need a tree branch before you can have a peacock perch,1 +wonder,peacock,Causes: a peacock causes wonder,1 +colorful,peacock,HasProperty: a peacock is colorful,1 +beach,pebble,AtLocation: you find pebbles on a beach,1 +skipping,pebble,UsedFor: you use pebbles for skipping on water,1 +making_sound,pebble,UsedFor: you use pebbles for making sound when shaken in a container,1 +weighing_down,pebble,UsedFor: you use pebbles for weighing down papers,1 +edge,pebble,HasA: a pebble has an edge,1 +collection,pebble,PartOf: a pebble is part of a collection,1 +rolling,pebble,CapableOf: a pebble can roll down a slope,1 +breaking,pebble,HasPrerequisite: you need to break bigger rocks to get pebbles,1 +irritation,pebble,Causes: a pebble in your shoe causes irritation,1 +small,pebble,HasProperty: a pebble is small,1 +round,pebble,HasProperty: a pebble is round,1 +hard,pebble,HasProperty: a pebble is hard,1 +smooth,pebble,HasProperty: a pebble is smooth,1 +fishing,pelican,UsedFor: a pelican is used for fishing,1 +large_beak,pelican,HasA: a pelican has a large beak,1 +ecosystem,pelican,PartOf: a pelican is part of an ecosystem,1 +diving,pelican,CapableOf: a pelican can dive,1 +splash,pelican,Causes: a pelican causes a splash,1 +white,pelican,HasProperty: a pelican is white,1 +ocean,penguin,AtLocation: penguins swim in the ocean,1 +entertainment,penguin,UsedFor: penguins are used for entertainment,1 +wings,penguin,HasA: a penguin has wings,1 +bird_family,penguin,PartOf: a penguin is part of the bird family,1 +swim,penguin,CapableOf: a penguin can swim,1 +laughter,penguin,Causes: penguins cause laughter,1 +black,penguin,HasProperty: a penguin is black,1 +decoration,peony,UsedFor: a peony is used for decoration,1 +petal,peony,HasA: a peony has a petal,1 +bouquet,peony,PartOf: a peony is part of a bouquet,1 +blooming,peony,CapableOf: a peony can bloom,1 +sunlight,peony,HasPrerequisite: a peony needs sunlight,1 +fragrance,peony,Causes: a peony causes fragrance,1 +kitchen,pepper,AtLocation: you find pepper in a kitchen,1 +cupboard,pepper,AtLocation: you find pepper in a cupboard,1 +grinder,pepper,AtLocation: you find pepper in a grinder,1 +cook,pepper,UsedFor: pepper is used for cooking,1 +grind,pepper,UsedFor: pepper is used for grinding,1 +sprinkle,pepper,UsedFor: pepper is used for sprinkling,1 +taste,pepper,UsedFor: pepper is used for taste,1 +seed,pepper,HasA: pepper has a seed,1 +aroma,pepper,HasA: pepper has an aroma,1 +seasoning,pepper,PartOf: pepper is part of seasoning,1 +dish,pepper,PartOf: pepper is part of a dish,1 +meal,pepper,PartOf: pepper is part of a meal,1 +ground,pepper,CapableOf: pepper can be ground,1 +crushed,pepper,CapableOf: pepper can be crushed,1 +aroma,pepper,CapableOf: pepper can provide aroma,1 +heat,pepper,CapableOf: pepper can provide heat,1 +plant,pepper,MadeOf: pepper is made of plant,1 +berry,pepper,MadeOf: pepper is made of berry,1 +seed,pepper,MadeOf: pepper is made of seed,1 +mill,pepper,HasPrerequisite: you need a mill before you can use pepper,1 +container,pepper,HasPrerequisite: you need a container before you can store pepper,1 +coughing,pepper,Causes: pepper can cause coughing,1 +irritation,pepper,Causes: pepper can cause irritation,1 +heat,pepper,Causes: pepper can cause heat,1 +pungent,pepper,HasProperty: pepper has a pungent property,1 +savory,pepper,HasProperty: pepper has a savory property,1 +spicy,pepper,HasProperty: pepper has a spicy property,1 +freshening_breath,peppermint,UsedFor: peppermint is used for freshening breath,1 +flavoring_candy,peppermint,UsedFor: peppermint is used for flavoring candy,1 +making_tea,peppermint,UsedFor: peppermint is used for making tea,1 +leaves,peppermint,HasA: peppermint has leaves,1 +aroma,peppermint,HasA: peppermint has a strong aroma,1 +mint_family,peppermint,PartOf: peppermint is part of the mint family,1 +plant_material,peppermint,MadeOf: peppermint is made of plant material,1 +cooling_skin,peppermint,CapableOf: peppermint can cool the skin,1 +relaxation,peppermint,Causes: peppermint causes relaxation,1 +digestion,peppermint,Causes: peppermint causes digestion,1 +fragrant,peppermint,HasProperty: peppermint is fragrant,1 +green,peppermint,HasProperty: peppermint is green,1 +eating,petrel,UsedFor: a petrel is used for eating,1 +wings,petrel,HasA: a petrel has wings,1 +seabirds,petrel,PartOf: a petrel is part of seabirds,1 +flying,petrel,CapableOf: a petrel can fly,1 +making,pewter,UsedFor: pewter is used for making tableware,1 +shine,pewter,HasA: pewter has a shine,1 +alloy,pewter,PartOf: pewter is part of an alloy,1 +polishing,pewter,CapableOf: pewter can be polished,1 +metal,pewter,MadeOf: pewter is made of metal,1 +mining,pewter,HasPrerequisite: pewter requires mining before it can be used,1 +dull,pewter,HasProperty: pewter has a dull appearance,1 +forest,pheasant,AtLocation: you find a pheasant in a forest,1 +field,pheasant,AtLocation: you find a pheasant in a field,1 +eating,pheasant,UsedFor: a pheasant is used for eating,1 +hunting,pheasant,UsedFor: a pheasant is used for hunting,1 +feathers,pheasant,HasA: a pheasant has feathers,1 +wings,pheasant,HasA: a pheasant has wings,1 +beak,pheasant,HasA: a pheasant has a beak,1 +poultry,pheasant,PartOf: a pheasant is part of poultry,1 +game,pheasant,PartOf: a pheasant is part of game,1 +flying,pheasant,CapableOf: a pheasant can fly,1 +running,pheasant,CapableOf: a pheasant can run,1 +pecking,pheasant,CapableOf: a pheasant can peck,1 +meat,pheasant,MadeOf: a pheasant is made of meat,1 +bone,pheasant,MadeOf: a pheasant is made of bone,1 +forest,pheasant,HasPrerequisite: you need a forest to find a pheasant,1 +hunting_license,pheasant,HasPrerequisite: you need a hunting license before you can hunt a pheasant,1 +excitement,pheasant,Causes: hunting a pheasant causes excitement,1 +dinner,pheasant,Causes: cooking a pheasant causes dinner,1 +colorful,pheasant,HasProperty: a pheasant is colorful,1 +plump,pheasant,HasProperty: a pheasant is plump,1 +wild,pheasant,HasProperty: a pheasant is wild,1 +pocket,phone,AtLocation: you find a phone in a pocket,1 +purse,phone,AtLocation: you find a phone in a purse,1 +texting,phone,UsedFor: a phone is used for texting,1 +navigation,phone,UsedFor: a phone is used for navigation,1 +internet_browsing,phone,UsedFor: a phone is used for internet browsing,1 +taking_photos,phone,UsedFor: a phone is used for taking photos,1 +playing_games,phone,UsedFor: a phone is used for playing games,1 +screen,phone,HasA: a phone has a screen,1 +battery,phone,HasA: a phone has a battery,1 +microphone,phone,HasA: a phone has a microphone,1 +camera,phone,HasA: a phone has a camera,1 +network,phone,PartOf: a phone is part of a network,1 +communication_system,phone,PartOf: a phone is part of a communication system,1 +play_music,phone,CapableOf: a phone can play music,1 +connect_to_wifi,phone,CapableOf: a phone can connect to wifi,1 +send_texts,phone,CapableOf: a phone can send texts,1 +receive_calls,phone,CapableOf: a phone can receive calls,1 +metal,phone,MadeOf: a phone is made of metal,1 +electricity,phone,HasPrerequisite: a phone requires electricity,1 +sim_card,phone,HasPrerequisite: a phone requires a SIM card,1 +distraction,phone,Causes: a phone causes distraction,1 +connection,phone,Causes: a phone causes connection,1 +conversation,phone,Causes: a phone causes conversation,1 +notification_sound,phone,Causes: a phone causes notification sound,1 +portable,phone,HasProperty: a phone is portable,1 +electronic,phone,HasProperty: a phone is electronic,1 +handheld,phone,HasProperty: a phone is handheld,1 +lightweight,phone,HasProperty: a phone is lightweight,1 +parlor,piano,AtLocation: you can find a piano in a parlor,1 +living_room,piano,AtLocation: a piano is often placed in a living room,1 +recital_hall,piano,AtLocation: pianos are commonly found in recital halls,1 +practice,piano,UsedFor: pianos are used for practice,1 +musical_performance,piano,UsedFor: pianos are used for musical performances,1 +teaching_music,piano,UsedFor: pianos are used for teaching music,1 +composing_music,piano,UsedFor: pianos are used for composing music,1 +providing_accompaniment,piano,UsedFor: pianos are used for providing accompaniment,1 +hammer,piano,HasA: a piano has hammers,1 +string,piano,HasA: a piano has strings,1 +pedal,piano,HasA: a piano has pedals,1 +soundboard,piano,HasA: a piano has a soundboard,1 +keyboard,piano,HasA: a piano has a keyboard,1 +musical_ensemble,piano,PartOf: a piano is part of a musical ensemble,1 +band,piano,PartOf: a piano can be part of a band,1 +music_education,piano,PartOf: a piano is part of music education,1 +concert_program,piano,PartOf: a piano is part of a concert program,1 +produce_tones,piano,CapableOf: a piano can produce tones,1 +produce_beautiful_sounds,piano,CapableOf: a piano can produce beautiful sounds,1 +create_harmony,piano,CapableOf: a piano can create harmony,1 +express_emotion,piano,CapableOf: a piano can express emotion,1 +produce_resonance,piano,CapableOf: a piano can produce resonance,1 +metal,piano,MadeOf: a piano is made of metal,1 +felt,piano,MadeOf: a piano is made of felt,1 +ivory,piano,MadeOf: traditional piano keys are made of ivory,1 +knowledge_of_music,piano,HasPrerequisite: playing a piano requires knowledge of music,1 +tuning,piano,HasPrerequisite: a piano requires tuning,1 +space,piano,HasPrerequisite: a piano requires space to be placed,1 +maintenance,piano,HasPrerequisite: a piano requires maintenance,1 +practice,piano,HasPrerequisite: playing a piano requires practice,1 +relaxation,piano,Causes: playing a piano can cause relaxation,1 +inspiration,piano,Causes: listening to piano can cause inspiration,1 +enjoyment,piano,Causes: playing piano causes enjoyment,1 +learning,piano,Causes: learning piano causes learning,1 +entertainment,piano,Causes: piano playing causes entertainment,1 +heavy,piano,HasProperty: a piano is heavy,1 +large,piano,HasProperty: a piano is large,1 +wooden,piano,HasProperty: a piano is wooden,1 +musical,piano,HasProperty: a piano is musical,1 +complex,piano,HasProperty: a piano is complex,1 +toolbox,pick,AtLocation: you find a pick in a toolbox,1 +removing_splinters,pick,UsedFor: a pick is used for removing splinters,1 +scraping,pick,UsedFor: a pick is used for scraping,1 +point,pick,HasA: a pick has a point,1 +toolkit,pick,PartOf: a pick is part of a toolkit,1 +prying,pick,CapableOf: a pick can pry,1 +carving,pick,CapableOf: a pick can carve,1 +breaking,pick,CapableOf: a pick can break,1 +skill,pick,HasPrerequisite: you need skill before you can use a pick,1 +entry,pick,Causes: a pick causes entry,1 +damage,pick,Causes: a pick causes damage,1 +sharp,pick,HasProperty: a pick is sharp,1 +small,pick,HasProperty: a pick is small,1 +sandwich,pickle,AtLocation: you find a pickle in a sandwich,1 +refrigerator,pickle,AtLocation: you keep a pickle in a refrigerator,1 +flavoring,pickle,UsedFor: a pickle is used for flavoring food,1 +cooking,pickle,UsedFor: a pickle is used for cooking,1 +preservation,pickle,UsedFor: a pickle is used for preservation,1 +crunch,pickle,HasA: a pickle has a crunch,1 +brine,pickle,HasA: a pickle has brine,1 +meal,pickle,PartOf: a pickle is part of a meal,1 +relish,pickle,PartOf: a pickle is part of relish,1 +pickling,pickle,CapableOf: a pickle can pickling,1 +fermenting,pickle,CapableOf: a pickle can fermenting,1 +cucumbers,pickle,HasPrerequisite: you need cucumbers before you can pickle,1 +fermentation,pickle,HasPrerequisite: you need fermentation before you can pickle,1 +satisfaction,pickle,Causes: a pickle causes satisfaction,1 +digestion,pickle,Causes: a pickle causes digestion,1 +tangy,pickle,HasProperty: a pickle has a tangy property,1 +acidic,pickle,HasProperty: a pickle has an acidic property,1 +moist,pickle,HasProperty: a pickle has a moist property,1 +city,pigeon,AtLocation: pigeons are found in cities,1 +building,pigeon,AtLocation: pigeons often nest on buildings,1 +sidewalk,pigeon,AtLocation: pigeons walk on sidewalks,1 +window,pigeon,AtLocation: pigeons sometimes sit on windowsills,1 +eating,pigeon,UsedFor: some people eat pigeons,1 +racing,pigeon,UsedFor: homing pigeons are used for racing,1 +carrier,pigeon,UsedFor: pigeons were historically used as message carriers,1 +pest_control,pigeon,UsedFor: pigeons can be used as a form of pest control in some contexts,1 +feather,pigeon,HasA: a pigeon has feathers,1 +wing,pigeon,HasA: a pigeon has wings,1 +beak,pigeon,HasA: a pigeon has a beak,1 +leg,pigeon,HasA: a pigeon has legs,1 +flock,pigeon,PartOf: a pigeon is part of a flock,1 +species,pigeon,PartOf: a pigeon is part of the bird species,1 +nature,pigeon,PartOf: a pigeon is part of nature,1 +ecosystem,pigeon,PartOf: a pigeon is part of an ecosystem,1 +coo,pigeon,CapableOf: a pigeon can coo,1 +peck,pigeon,CapableOf: a pigeon can peck,1 +land,pigeon,CapableOf: a pigeon can land,1 +flesh,pigeon,MadeOf: a pigeon is made of flesh,1 +bone,pigeon,MadeOf: a pigeon is made of bone,1 +feather,pigeon,MadeOf: a pigeon is made of feathers,1 +blood,pigeon,MadeOf: a pigeon is made of blood,1 +air,pigeon,HasPrerequisite: a pigeon needs air to fly,1 +food,pigeon,HasPrerequisite: a pigeon needs food to survive,1 +space,pigeon,HasPrerequisite: a pigeon needs space to live,1 +noise,pigeon,Causes: pigeons can cause noise,1 +droppings,pigeon,Causes: pigeons cause droppings,1 +annoyance,pigeon,Causes: pigeons can cause annoyance,1 +disease,pigeon,Causes: pigeons can cause disease,1 +gray,pigeon,HasProperty: pigeons are often gray,1 +small,pigeon,HasProperty: pigeons are small birds,1 +round,pigeon,HasProperty: pigeons have a round body,1 +fast,pigeon,HasProperty: pigeons can be fast when flying,1 +noisy,pigeon,HasProperty: pigeons can be noisy,1 +stream,pike,AtLocation: a pike can live in a stream,1 +fishing,pike,UsedFor: people use pike for fishing,1 +cooking,pike,UsedFor: pike is used for cooking,1 +sharp_teeth,pike,HasA: a pike has sharp teeth,1 +food_chain,pike,PartOf: a pike is part of the food chain,1 +fish_population,pike,PartOf: a pike is part of the fish population,1 +swimming,pike,CapableOf: a pike can swim,1 +eating,pike,CapableOf: a pike can eat other fish,1 +fish_meat,pike,MadeOf: a pike is made of fish meat,1 +fresh_water,pike,HasPrerequisite: you need fresh water for a pike,1 +sufficient_oxygen,pike,HasPrerequisite: a pike needs sufficient oxygen,1 +excitement,pike,Causes: catching a pike causes excitement,1 +meal_preparation,pike,Causes: having a pike causes meal preparation,1 +long,pike,HasProperty: a pike is long,1 +predatory,pike,HasProperty: a pike is predatory,1 +freshwater,pike,HasProperty: a pike is freshwater,1 +construction,pine,UsedFor: pine wood is used for construction,1 +furniture,pine,UsedFor: pine wood is used for furniture,1 +needles,pine,HasA: pine trees have needles,1 +cones,pine,HasA: pine trees have cones,1 +forest,pine,PartOf: pine trees are part of a forest,1 +ecosystem,pine,PartOf: pine trees are part of an ecosystem,1 +growing,pine,CapableOf: pine trees can grow tall,1 +soil,pine,HasPrerequisite: pine trees need soil to grow,1 +shade,pine,Causes: pine trees cause shade,1 +green,pine,HasProperty: pine trees are green,1 +woody,pine,HasProperty: pine trees are woody,1 +aromatic,pine,HasProperty: pine trees have an aromatic scent,1 +grocery_store,pineapple,AtLocation: you find a pineapple in a grocery store,1 +fruit_bowl,pineapple,AtLocation: you can place a pineapple in a fruit bowl,1 +make_pie,pineapple,UsedFor: a pineapple is used for making pie,1 +sweeten_smoothies,pineapple,UsedFor: a pineapple is used for sweetening smoothies,1 +garnish_drinks,pineapple,UsedFor: a pineapple is used for garnishing drinks,1 +core,pineapple,HasA: a pineapple has a core,1 +skin,pineapple,HasA: a pineapple has a skin,1 +sweet_taste,pineapple,HasA: a pineapple has a sweet taste,1 +fruit_basket,pineapple,PartOf: a pineapple is part of a fruit basket,1 +provide_nutrition,pineapple,CapableOf: a pineapple can provide nutrition,1 +grow_large,pineapple,CapableOf: a pineapple can grow large,1 +fruit_flesh,pineapple,MadeOf: a pineapple is made of fruit flesh,1 +juice,pineapple,MadeOf: a pineapple is made of juice,1 +grow,pineapple,HasPrerequisite: you need to grow a pineapple before you can eat it,1 +ripe,pineapple,HasPrerequisite: a pineapple needs to be ripe before you can eat it,1 +refreshment,pineapple,Causes: eating a pineapple causes refreshment,1 +satisfaction,pineapple,Causes: eating a pineapple causes satisfaction,1 +sweet,pineapple,HasProperty: a pineapple is sweet,1 +juicy,pineapple,HasProperty: a pineapple is juicy,1 +tropical,pineapple,HasProperty: a pineapple is tropical,1 +spiky,pineapple,HasProperty: a pineapple is spiky,1 +holster,pistol,AtLocation: you find a pistol in a holster,1 +gun_range,pistol,AtLocation: you find a pistol in a gun range,1 +self_defense,pistol,UsedFor: a pistol is used for self defense,1 +hunting,pistol,UsedFor: a pistol is used for hunting,1 +trigger,pistol,HasA: a pistol has a trigger,1 +arsenal,pistol,PartOf: a pistol is part of an arsenal,1 +collection,pistol,PartOf: a pistol is part of a collection,1 +explode,pistol,CapableOf: a pistol can explode,1 +shoot_away,pistol,CapableOf: a pistol can shoot away,1 +metal,pistol,MadeOf: a pistol is made of metal,1 +license,pistol,HasPrerequisite: you need a license to have a pistol,1 +ammunition,pistol,HasPrerequisite: you need ammunition to use a pistol,1 +death,pistol,Causes: a pistol causes death,1 +injury,pistol,Causes: a pistol causes injury,1 +heavy,pistol,HasProperty: a pistol is heavy,1 +metallic,pistol,HasProperty: a pistol is metallic,1 +cold,pistol,HasProperty: a pistol is cold,1 +apple,pit,AtLocation: you find a pit inside an apple,1 +apricot,pit,AtLocation: you find a pit inside an apricot,1 +fruit,pit,AtLocation: you find a pit inside fruit,1 +stone_fruit,pit,AtLocation: you find a pit inside stone fruit,1 +composting,pit,UsedFor: a pit is used for composting,1 +planting_tree,pit,UsedFor: a pit is used for planting tree,1 +storing_food,pit,UsedFor: a pit is used for storing food,1 +smoking_food,pit,UsedFor: a pit is used for smoking food,1 +cooking_meat,pit,UsedFor: a pit is used for cooking meat,1 +kernel,pit,HasA: a pit has a kernel,1 +seed,pit,HasA: a pit has a seed,1 +hard_shell,pit,HasA: a pit has a hard shell,1 +fruit_tree,pit,PartOf: a pit is part of fruit tree,1 +sprouting,pit,CapableOf: a pit can sprout,1 +germinating,pit,CapableOf: a pit can germinate,1 +crushing,pit,CapableOf: a pit can crush,1 +stone,pit,MadeOf: a pit is made of stone,1 +earth,pit,MadeOf: a pit is made of earth,1 +digging,pit,HasPrerequisite: you need digging before you have a pit,1 +excavation,pit,HasPrerequisite: you need excavation before you have a pit,1 +hole,pit,HasPrerequisite: you need a hole before you have a pit,1 +pain,pit,Causes: a pit causes pain,1 +choking,pit,Causes: a pit causes choking,1 +jam,pit,Causes: a pit causes jam,1 +hard,pit,HasProperty: a pit is hard,1 +dry,pit,HasProperty: a pit is dry,1 +round,pit,HasProperty: a pit is round,1 +kitchen,pitcher,AtLocation: you find a pitcher in a kitchen,1 +pour_liquid,pitcher,UsedFor: a pitcher is used for pouring liquid,1 +serve_drinks,pitcher,UsedFor: a pitcher is used for serving drinks,1 +store_water,pitcher,UsedFor: a pitcher is used for storing water,1 +spout,pitcher,HasA: a pitcher has a spout,1 +handle,pitcher,HasA: a pitcher has a handle,1 +kitchenware,pitcher,PartOf: a pitcher is part of kitchenware,1 +hold_beer,pitcher,CapableOf: a pitcher can hold beer,1 +pour_lemonade,pitcher,CapableOf: a pitcher can pour lemonade,1 +fill_with_iced_tea,pitcher,CapableOf: a pitcher can fill with iced tea,1 +ceramic,pitcher,MadeOf: a pitcher is made of ceramic,1 +stainless_steel,pitcher,MadeOf: a pitcher is made of stainless steel,1 +liquid,pitcher,HasPrerequisite: you need liquid before you can fill a pitcher,1 +drink,pitcher,Causes: a pitcher causes people to drink,1 +satisfaction,pitcher,Causes: a pitcher causes satisfaction when filled with cold drinks,1 +cylindrical,pitcher,HasProperty: a pitcher is cylindrical,1 +portable,pitcher,HasProperty: a pitcher is portable,1 +smooth,pitcher,HasProperty: a pitcher is smooth,1 +eating,pizza,UsedFor: a pizza is used for eating,1 +crust,pizza,HasA: a pizza has a crust,1 +meal,pizza,PartOf: a pizza is part of a meal,1 +satisfying_hunger,pizza,CapableOf: a pizza can satisfy hunger,1 +flour,pizza,MadeOf: a pizza is made of flour,1 +tomato_sauce,pizza,MadeOf: a pizza is made of tomato sauce,1 +ingredients,pizza,HasPrerequisite: you need ingredients before you can have pizza,1 +satisfaction,pizza,Causes: eating pizza causes satisfaction,1 +round,pizza,HasProperty: a pizza is round,1 +cheesy,pizza,HasProperty: a pizza is cheesy,1 +airport,plane,AtLocation: a plane is found at an airport,1 +terminal,plane,AtLocation: a plane is found at a terminal,1 +transport,plane,UsedFor: a plane is used for transport,1 +vacation,plane,UsedFor: a plane is used for vacation,1 +wing,plane,HasA: a plane has wings,1 +engine,plane,HasA: a plane has an engine,1 +window,plane,HasA: a plane has windows,1 +door,plane,HasA: a plane has doors,1 +fleet,plane,PartOf: a plane is part of a fleet,1 +airline,plane,PartOf: a plane is part of an airline,1 +transport_cargo,plane,CapableOf: a plane can transport cargo,1 +carry_passengers,plane,CapableOf: a plane can carry passengers,1 +take_off,plane,CapableOf: a plane can take off,1 +cross_ocean,plane,CapableOf: a plane can cross an ocean,1 +metal,plane,MadeOf: a plane is made of metal,1 +rubber,plane,MadeOf: a plane is made of rubber,1 +pilot,plane,HasPrerequisite: a plane requires a pilot,1 +fuel,plane,HasPrerequisite: a plane requires fuel,1 +ticket,plane,HasPrerequisite: you need a ticket for a plane,1 +luggage,plane,HasPrerequisite: you need luggage for a plane,1 +noise,plane,Causes: a plane causes noise,1 +arrival,plane,Causes: a plane causes arrival,1 +departure,plane,Causes: a plane causes departure,1 +air_traffic,plane,Causes: a plane causes air traffic,1 +heavy,plane,HasProperty: a plane is heavy,1 +large,plane,HasProperty: a plane is large,1 +fast,plane,HasProperty: a plane is fast,1 +aerodynamic,plane,HasProperty: a plane is aerodynamic,1 +powerful,plane,HasProperty: a plane is powerful,1 +workshop,planer,AtLocation: you find a planer in a workshop,1 +smoothing,planer,UsedFor: a planer is used for smoothing wood,1 +flattening,planer,UsedFor: a planer is used for flattening surfaces,1 +shaping,planer,UsedFor: a planer is used for shaping timber,1 +handle,planer,HasA: a planer has a handle,1 +toolset,planer,PartOf: a planer is part of a toolset,1 +cutting,planer,CapableOf: a planer can cut wood,1 +shaving,planer,CapableOf: a planer can shave wood,1 +finishing,planer,CapableOf: a planer can finish rough edges,1 +metal,planer,MadeOf: a planer is made of metal,1 +electricity,planer,HasPrerequisite: you need electricity to use a planer,1 +dust,planer,Causes: a planer causes dust,1 +smoothness,planer,Causes: a planer causes smoothness,1 +shavings,planer,Causes: a planer causes wood shavings,1 +sharp,planer,HasProperty: a planer is sharp,1 +heavy,planer,HasProperty: a planer is heavy,1 +metal,planer,HasProperty: a planer is metal,1 +beach,plastic,AtLocation: you find plastic on a beach,1 +ocean,plastic,AtLocation: you find plastic in the ocean,1 +containers,plastic,UsedFor: plastic is used for containers,1 +packaging,plastic,UsedFor: plastic is used for packaging,1 +furniture,plastic,UsedFor: plastic is used for furniture,1 +bag,plastic,PartOf: plastic is part of a bag,1 +float,plastic,CapableOf: plastic can float,1 +break,plastic,CapableOf: plastic can break,1 +bend,plastic,CapableOf: plastic can bend,1 +oil,plastic,MadeOf: plastic is made of oil,1 +chemicals,plastic,MadeOf: plastic is made of chemicals,1 +oil_refining,plastic,HasPrerequisite: you need oil refining to make plastic,1 +polymer,plastic,HasPrerequisite: you need polymer to make plastic,1 +pollution,plastic,Causes: plastic causes pollution,1 +harm_to_wildlife,plastic,Causes: plastic causes harm to wildlife,1 +lightweight,plastic,HasProperty: plastic is lightweight,1 +flexible,plastic,HasProperty: plastic is flexible,1 +durable,plastic,HasProperty: plastic is durable,1 +jewelry,platinum,UsedFor: platinum is used for jewelry,1 +catalytic_converters,platinum,UsedFor: platinum is used for catalytic converters,1 +luster,platinum,HasA: platinum has a luster,1 +alloy,platinum,PartOf: platinum is part of an alloy,1 +jewelry,platinum,PartOf: platinum is part of jewelry,1 +resisting_corrosion,platinum,CapableOf: platinum can resist corrosion,1 +conducting_electricity,platinum,CapableOf: platinum can conduct electricity,1 +ore,platinum,MadeOf: platinum is made of ore,1 +mining,platinum,HasPrerequisite: mining is a prerequisite for platinum,1 +shine,platinum,Causes: platinum causes shine,1 +dense,platinum,HasProperty: platinum is dense,1 +silvery,platinum,HasProperty: platinum is silvery,1 +precious,platinum,HasProperty: platinum is precious,1 +farm,plow,AtLocation: you find a plow at a farm,1 +dig_soil,plow,UsedFor: a plow is used to dig soil,1 +plant_crops,plow,UsedFor: a plow is used to plant crops,1 +handle,plow,HasA: a plow has a handle,1 +farming_equipment,plow,PartOf: a plow is part of farming equipment,1 +turn_dirt,plow,CapableOf: a plow can turn dirt,1 +break_ground,plow,CapableOf: a plow can break ground,1 +metal,plow,MadeOf: a plow is made of metal,1 +horse,plow,HasPrerequisite: you need a horse to pull a plow,1 +leveled_field,plow,Causes: a plow causes a leveled field,1 +heavy,plow,HasProperty: a plow is heavy,1 +sharp,plow,HasProperty: a plow is sharp,1 +storing,pod,UsedFor: a pod is used for storing seeds,1 +seed,pod,HasA: a pod has a seed inside,1 +plant,pod,PartOf: a pod is part of a plant,1 +opening,pod,CapableOf: a pod can open to release its contents,1 +plant,pod,HasPrerequisite: you need a plant to grow a pod,1 +growth,pod,Causes: a pod causes plant growth,1 +tough,pod,HasProperty: a pod is tough,1 +clothing,polyester,UsedFor: polyester is used for making clothing,1 +upholstery,polyester,UsedFor: polyester is used for upholstery,1 +luggage,polyester,UsedFor: polyester is used for making luggage,1 +fibers,polyester,HasA: polyester has fibers,1 +fabric,polyester,PartOf: polyester is part of fabric,1 +textile,polyester,PartOf: polyester is part of textile,1 +stretching,polyester,CapableOf: polyester can stretch,1 +insulating,polyester,CapableOf: polyester can insulate,1 +petroleum,polyester,MadeOf: polyester is made of petroleum,1 +oil,polyester,HasPrerequisite: you need oil before you can make polyester,1 +static,polyester,Causes: polyester causes static electricity,1 +durable,polyester,HasProperty: polyester is durable,1 +synthetic,polyester,HasProperty: polyester is synthetic,1 +lightweight,polyester,HasProperty: polyester is lightweight,1 +forest,poplar,AtLocation: you find a poplar in a forest,1 +making_furniture,poplar,UsedFor: poplar wood is used for making furniture,1 +building_boats,poplar,UsedFor: poplar wood is used for building boats,1 +crafting,poplar,UsedFor: poplar wood is used for crafting,1 +leaves,poplar,HasA: a poplar has leaves,1 +branches,poplar,HasA: a poplar has branches,1 +ecosystem,poplar,PartOf: a poplar is part of an ecosystem,1 +growing,poplar,CapableOf: a poplar can grow,1 +producing_shade,poplar,CapableOf: a poplar can produce shade,1 +cellulose,poplar,MadeOf: a poplar is made of cellulose,1 +soil,poplar,HasPrerequisite: you need soil before you can grow a poplar,1 +sunlight,poplar,HasPrerequisite: you need sunlight before you can grow a poplar,1 +shade,poplar,Causes: a poplar causes shade,1 +oxygen,poplar,Causes: a poplar causes oxygen,1 +tall,poplar,HasProperty: a poplar is tall,1 +green,poplar,HasProperty: a poplar is green,1 +woody,poplar,HasProperty: a poplar is woody,1 +field,poppy,AtLocation: poppies are found in fields,1 +medicine,poppy,UsedFor: poppies are used for medicine,1 +decoration,poppy,UsedFor: poppies are used for decoration,1 +remembrance,poppy,UsedFor: poppies are used for remembrance,1 +petals,poppy,HasA: poppies have petals,1 +seed_pod,poppy,HasA: poppies have a seed pod,1 +flowering,poppy,CapableOf: poppies can flower,1 +producing_seeds,poppy,CapableOf: poppies can produce seeds,1 +plant_material,poppy,MadeOf: poppies are made of plant material,1 +nectar,poppy,MadeOf: poppies are made of nectar,1 +sunlight,poppy,HasPrerequisite: poppies require sunlight,1 +soil,poppy,HasPrerequisite: poppies require soil,1 +sleep,poppy,Causes: poppies can cause sleep,1 +beauty,poppy,Causes: poppies can cause beauty,1 +colorful,poppy,HasProperty: poppies are colorful,1 +fragrant,poppy,HasProperty: poppies are fragrant,1 +delicate,poppy,HasProperty: poppies are delicate,1 +house,porch,AtLocation: a porch is located on a house,1 +home,porch,AtLocation: a porch is part of a home,1 +reading,porch,UsedFor: a porch is used for reading,1 +eating,porch,UsedFor: a porch is used for eating,1 +enjoying_outdoor_views,porch,UsedFor: a porch is used for enjoying outdoor views,1 +railing,porch,HasA: a porch has a railing,1 +floor,porch,HasA: a porch has a floor,1 +door,porch,HasA: a porch has a door,1 +dwelling,porch,PartOf: a porch is part of a dwelling,1 +residence,porch,PartOf: a porch is part of a residence,1 +protect_from_elements,porch,CapableOf: a porch can protect from elements,1 +provide_shade,porch,CapableOf: a porch can provide shade,1 +provide_protection_from_rain,porch,CapableOf: a porch can provide protection from rain,1 +concrete,porch,MadeOf: a porch is made of concrete,1 +brick,porch,MadeOf: a porch is made of brick,1 +house_construction,porch,HasPrerequisite: a porch requires house construction,1 +building_permit,porch,HasPrerequisite: a porch requires a building permit,1 +relaxation,porch,Causes: a porch causes relaxation,1 +enjoyment,porch,Causes: a porch causes enjoyment,1 +conversation,porch,Causes: a porch causes conversation,1 +open,porch,HasProperty: a porch is open,1 +covered,porch,HasProperty: a porch is covered,1 +wooden,porch,HasProperty: a porch is wooden,1 +decoration,posey,UsedFor: a posey is used for decoration,1 +bouquet,posey,PartOf: a posey is part of a bouquet,1 +petals,posey,MadeOf: a posey is made of petals,1 +soil,posey,HasPrerequisite: you need soil before you can grow a posey,1 +happiness,posey,Causes: a posey causes happiness,1 +fragrant,posey,HasProperty: a posey is fragrant,1 +sink,pot,AtLocation: you find a pot in the sink,1 +stove,pot,AtLocation: you find a pot on the stove,1 +cook_food,pot,UsedFor: a pot is used for cooking food,1 +boil_water,pot,UsedFor: a pot is used for boiling water,1 +cook_pasta,pot,UsedFor: a pot is used for cooking pasta,1 +cook_rice,pot,UsedFor: a pot is used for cooking rice,1 +handle,pot,HasA: a pot has a handle,1 +bottom,pot,HasA: a pot has a bottom,1 +lid,pot,HasA: a pot has a lid,1 +kitchenware_set,pot,PartOf: a pot is part of a kitchenware set,1 +cooking_kit,pot,PartOf: a pot is part of a cooking kit,1 +heating_up,pot,CapableOf: a pot can heat up,1 +holding_liquid,pot,CapableOf: a pot can hold liquid,1 +burning_food,pot,CapableOf: a pot can burn food,1 +metal,pot,MadeOf: a pot is made of metal,1 +ceramic,pot,MadeOf: a pot is made of ceramic,1 +stainless_steel,pot,MadeOf: a pot is made of stainless steel,1 +heat_source,pot,HasPrerequisite: you need a heat source before you can use a pot,1 +steam,pot,Causes: a pot causes steam,1 +boiling_sound,pot,Causes: a pot causes boiling sound,1 +cylindrical,pot,HasProperty: a pot is cylindrical,1 +heavy,pot,HasProperty: a pot is heavy,1 +durable,pot,HasProperty: a pot is durable,1 +soil,potassium,AtLocation: potassium is found in soil,1 +fertilizer,potassium,UsedFor: potassium is used for fertilizer,1 +ions,potassium,HasA: potassium has ions,1 +conduct,potassium,CapableOf: potassium can conduct electricity,1 +extraction,potassium,HasPrerequisite: potassium needs extraction from minerals,1 +explosion,potassium,Causes: potassium causes explosion when mixed with water,1 +metallic,potassium,HasProperty: potassium has a metallic property,1 +garage,pulley,AtLocation: you find a pulley in a garage,1 +lifting_heavy_loads,pulley,UsedFor: a pulley is used for lifting heavy loads,1 +changing_direction_of_force,pulley,UsedFor: a pulley is used for changing direction of force,1 +wheel,pulley,HasA: a pulley has a wheel,1 +crane,pulley,PartOf: a pulley is part of a crane,1 +moving_heavy_objects,pulley,CapableOf: a pulley can move heavy objects,1 +metal,pulley,MadeOf: a pulley is made of metal,1 +mechanical_advantage,pulley,Causes: a pulley causes mechanical advantage,1 +round,pulley,HasProperty: a pulley is round,1 +smooth,pulley,HasProperty: a pulley is smooth,1 +workshop,punch,AtLocation: you find a punch in a workshop,1 +pierce_material,punch,UsedFor: a punch is used to pierce material,1 +mark_material,punch,UsedFor: a punch is used to mark material,1 +sharp_point,punch,HasA: a punch has a sharp point,1 +tool_set,punch,PartOf: a punch is part of a tool set,1 +create_indent,punch,CapableOf: a punch can create an indent,1 +shape_metal,punch,CapableOf: a punch can shape metal,1 +metal,punch,MadeOf: a punch is made of metal,1 +have_workshop,punch,HasPrerequisite: you need a workshop before you can use a punch,1 +puncture,punch,Causes: a punch causes a puncture,1 +pointed,punch,HasProperty: a punch is pointed,1 +sturdy,punch,HasProperty: a punch is sturdy,1 +yard,puppy,AtLocation: you find a puppy in a yard,1 +park,puppy,AtLocation: you find a puppy in a park,1 +vet,puppy,AtLocation: you find a puppy at a vet,1 +companionship,puppy,UsedFor: a puppy is used for companionship,1 +training,puppy,UsedFor: a puppy is used for training,1 +playing,puppy,UsedFor: a puppy is used for playing,1 +tail,puppy,HasA: a puppy has a tail,1 +nose,puppy,HasA: a puppy has a nose,1 +wet_nose,puppy,HasA: a puppy has a wet nose,1 +litter,puppy,PartOf: a puppy is part of a litter,1 +chew,puppy,CapableOf: a puppy can chew,1 +fetch,puppy,CapableOf: a puppy can fetch,1 +fur,puppy,MadeOf: a puppy is made of fur,1 +bone,puppy,MadeOf: a puppy is made of bone,1 +flesh,puppy,MadeOf: a puppy is made of flesh,1 +dog,puppy,HasPrerequisite: a puppy requires a dog as prerequisite,1 +mother_dog,puppy,HasPrerequisite: a puppy requires a mother_dog as prerequisite,1 +joy,puppy,Causes: a puppy causes joy,1 +mess,puppy,Causes: a puppy causes mess,1 +attention,puppy,Causes: a puppy causes attention,1 +small,puppy,HasProperty: a puppy is small,1 +playful,puppy,HasProperty: a puppy is playful,1 +energetic,puppy,HasProperty: a puppy is energetic,1 +petting,python,UsedFor: a python is used for petting,1 +scales,python,HasA: a python has scales,1 +ecosystem,python,PartOf: a python is part of an ecosystem,1 +constrict,python,CapableOf: a python can constrict,1 +flesh,python,MadeOf: a python is made of flesh,1 +prey,python,HasPrerequisite: you need prey before you can have a python,1 +fear,python,Causes: a python causes fear,1 +long,python,HasProperty: a python is long,1 +eating,quail,UsedFor: quail are used for eating,1 +feathers,quail,HasA: a quail has feathers,1 +bird,quail,PartOf: a quail is part of bird,1 +small,quail,HasProperty: a quail is small,1 +mountain,quartz,AtLocation: you find quartz in a mountain,1 +geode,quartz,AtLocation: you find quartz inside a geode,1 +crystal_shop,quartz,AtLocation: you find quartz in a crystal shop,1 +decoration,quartz,UsedFor: quartz is used for decoration,1 +aquariums,quartz,UsedFor: quartz is used for aquariums,1 +metaphysical_purposes,quartz,UsedFor: quartz is used for metaphysical purposes,1 +electronics,quartz,UsedFor: quartz is used for electronics,1 +crystal,quartz,HasA: quartz has a crystal,1 +surface,quartz,HasA: quartz has a surface,1 +edge,quartz,HasA: quartz has an edge,1 +crystal_structure,quartz,PartOf: quartz is part of a crystal structure,1 +rock_layer,quartz,PartOf: quartz is part of a rock layer,1 +conducting,quartz,CapableOf: quartz can conduct,1 +resonating,quartz,CapableOf: quartz can resonate,1 +reflecting,quartz,CapableOf: quartz can reflect,1 +silicon,quartz,MadeOf: quartz is made of silicon,1 +oxygen,quartz,MadeOf: quartz is made of oxygen,1 +heat,quartz,HasPrerequisite: you need heat to form quartz,1 +pressure,quartz,HasPrerequisite: you need pressure to form quartz,1 +time,quartz,HasPrerequisite: you need time to form quartz,1 +reflection,quartz,Causes: quartz causes reflection,1 +refraction,quartz,Causes: quartz causes refraction,1 +clarity,quartz,Causes: quartz causes clarity,1 +clear,quartz,HasProperty: quartz is clear,1 +hard,quartz,HasProperty: quartz is hard,1 +glassy,quartz,HasProperty: quartz is glassy,1 +transparent,quartz,HasProperty: quartz is transparent,1 +attracting,quetzal,UsedFor: a quetzal is used for attracting mates,1 +crest,quetzal,HasA: a quetzal has a crest on its head,1 +ecosystem,quetzal,PartOf: a quetzal is part of an ecosystem,1 +rainforest,quetzal,HasPrerequisite: you need a rainforest to find a quetzal,1 +fascination,quetzal,Causes: a quetzal causes fascination,1 +colorful,quetzal,HasProperty: a quetzal is colorful,1 +woods,rabbit,AtLocation: you find a rabbit in the woods,1 +field,rabbit,AtLocation: you find a rabbit in a field,1 +eating,rabbit,UsedFor: a rabbit is used for eating,1 +petting,rabbit,UsedFor: a rabbit is used for petting,1 +hunting,rabbit,UsedFor: a rabbit is used for hunting,1 +fur,rabbit,HasA: a rabbit has fur,1 +tail,rabbit,HasA: a rabbit has a tail,1 +nose,rabbit,HasA: a rabbit has a nose,1 +animal_kingdom,rabbit,PartOf: a rabbit is part of the animal kingdom,1 +ecosystem,rabbit,PartOf: a rabbit is part of an ecosystem,1 +hop,rabbit,CapableOf: a rabbit can hop,1 +eat_carrot,rabbit,CapableOf: a rabbit can eat carrot,1 +dig_hole,rabbit,CapableOf: a rabbit can dig a hole,1 +hide,rabbit,CapableOf: a rabbit can hide,1 +meat,rabbit,MadeOf: a rabbit is made of meat,1 +bone,rabbit,MadeOf: a rabbit is made of bone,1 +fur,rabbit,MadeOf: a rabbit is made of fur,1 +safe_habitat,rabbit,HasPrerequisite: you need a safe habitat before you can have a rabbit,1 +joy,rabbit,Causes: a rabbit causes joy,1 +fear,rabbit,Causes: a rabbit causes fear,1 +soft,rabbit,HasProperty: a rabbit is soft,1 +salad_bowl,radish,AtLocation: you find radishes in a salad bowl,1 +adding_crunch_to_sandwiches,radish,UsedFor: radishes are used for adding crunch to sandwiches,1 +making_pickles,radish,UsedFor: radishes are used for making pickles,1 +garnishing_plates,radish,UsedFor: radishes are used for garnishing plates,1 +skin,radish,HasA: a radish has a skin,1 +stir_fry,radish,PartOf: a radish is part of a stir fry,1 +growing,radish,CapableOf: a radish can grow,1 +sprouting,radish,CapableOf: a radish can sprout,1 +fiber,radish,MadeOf: a radish is made of fiber,1 +soil,radish,HasPrerequisite: you need soil before you can grow radishes,1 +satisfaction,radish,Causes: eating radishes causes satisfaction,1 +fullness,radish,Causes: eating radishes causes fullness,1 +spicy,radish,HasProperty: a radish is spicy,1 +crunchy,radish,HasProperty: a radish is crunchy,1 +round,radish,HasProperty: a radish is round,1 +support,rail,UsedFor: a rail is used for support,1 +post,rail,HasA: a rail has a post,1 +supporting,rail,CapableOf: a rail can support weight,1 +construction,rail,HasPrerequisite: you need construction before you can have a rail,1 +stability,rail,Causes: a rail causes stability,1 +sturdy,rail,HasProperty: a rail is sturdy,1 +workshop,rasp,AtLocation: you find a rasp in a workshop,1 +smoothing,rasp,UsedFor: a rasp is used for smoothing wood,1 +shaping,rasp,UsedFor: a rasp is used for shaping wood,1 +carving,rasp,UsedFor: a rasp is used for carving,1 +filing,rasp,UsedFor: a rasp is used for filing,1 +handle,rasp,HasA: a rasp has a handle,1 +teeth,rasp,HasA: a rasp has teeth,1 +toolset,rasp,PartOf: a rasp is part of a toolset,1 +smoothing,rasp,CapableOf: a rasp can smooth rough surfaces,1 +shaping,rasp,CapableOf: a rasp can shape materials,1 +metal,rasp,MadeOf: a rasp is made of metal,1 +skill,rasp,HasPrerequisite: you need skill before you can use a rasp,1 +filings,rasp,Causes: a rasp causes wood filings,1 +dust,rasp,Causes: a rasp causes dust,1 +rough,rasp,HasProperty: a rasp is rough,1 +hard,rasp,HasProperty: a rasp is hard,1 +sewer,rat,AtLocation: you find a rat in a sewer,1 +field,rat,AtLocation: you find a rat in a field,1 +research,rat,UsedFor: a rat is used for research,1 +food,rat,UsedFor: a rat is used for food,1 +tail,rat,HasA: a rat has a tail,1 +ecosystem,rat,PartOf: a rat is part of an ecosystem,1 +colony,rat,PartOf: a rat is part of a colony,1 +bite,rat,CapableOf: a rat can bite,1 +squeak,rat,CapableOf: a rat can squeak,1 +fur,rat,MadeOf: a rat is made of fur,1 +blood,rat,MadeOf: a rat is made of blood,1 +food,rat,HasPrerequisite: you need food before you can have a rat,1 +disease,rat,Causes: a rat causes disease,1 +fear,rat,Causes: a rat causes fear,1 +small,rat,HasProperty: a rat is small,1 +grey,rat,HasProperty: a rat is grey,1 +music_classroom,recorder,AtLocation: you find a recorder in a music classroom,1 +learning_music,recorder,UsedFor: a recorder is used for learning music,1 +mouthpiece,recorder,HasA: a recorder has a mouthpiece,1 +band,recorder,PartOf: a recorder is part of a band,1 +producing_sound,recorder,CapableOf: a recorder can produce sound,1 +breath,recorder,HasPrerequisite: you need breath to play a recorder,1 +sound,recorder,Causes: a recorder causes sound,1 +wooden,recorder,HasProperty: a recorder is wooden,1 +food,rhea,UsedFor: a rhea is used for food,1 +beak,rhea,HasA: a rhea has a beak,1 +bird,rhea,PartOf: a rhea is part of birds,1 +run,rhea,CapableOf: a rhea can run,1 +feathers,rhea,MadeOf: a rhea is made of feathers,1 +interest,rhea,Causes: a rhea causes interest,1 +large,rhea,HasProperty: a rhea is large,1 +savanna,rhinoceros,AtLocation: you find a rhinoceros in a savanna,1 +grassland,rhinoceros,AtLocation: you find a rhinoceros in a grassland,1 +africa,rhinoceros,AtLocation: you find a rhinoceros in Africa,1 +asia,rhinoceros,AtLocation: you find a rhinoceros in Asia,1 +horn,rhinoceros,HasA: a rhinoceros has a horn,1 +tail,rhinoceros,HasA: a rhinoceros has a tail,1 +thick_skin,rhinoceros,HasA: a rhinoceros has thick skin,1 +large_head,rhinoceros,HasA: a rhinoceros has a large head,1 +wildlife,rhinoceros,PartOf: a rhinoceros is part of wildlife,1 +charge,rhinoceros,CapableOf: a rhinoceros can charge,1 +run,rhinoceros,CapableOf: a rhinoceros can run,1 +swim,rhinoceros,CapableOf: a rhinoceros can swim,1 +heavy,rhinoceros,HasProperty: a rhinoceros is heavy,1 +large,rhinoceros,HasProperty: a rhinoceros is large,1 +strong,rhinoceros,HasProperty: a rhinoceros is strong,1 +gray,rhinoceros,HasProperty: a rhinoceros is gray,1 +bulky,rhinoceros,HasProperty: a rhinoceros is bulky,1 +landscaping,rhododendron,UsedFor: a rhododendron is used for landscaping,1 +flower,rhododendron,HasA: a rhododendron has a flower,1 +leaf,rhododendron,HasA: a rhododendron has a leaf,1 +shrubbery,rhododendron,PartOf: a rhododendron is part of shrubbery,1 +blooming,rhododendron,CapableOf: a rhododendron can bloom,1 +sunlight,rhododendron,HasPrerequisite: a rhododendron needs sunlight,1 +soil,rhododendron,HasPrerequisite: a rhododendron needs soil,1 +beauty,rhododendron,Causes: a rhododendron causes beauty,1 +green,rhododendron,HasProperty: a rhododendron is green,1 +colorful,rhododendron,HasProperty: a rhododendron is colorful,1 +kitchen,rice,AtLocation: you find rice in a kitchen,1 +bowl,rice,AtLocation: you find rice in a bowl,1 +package,rice,AtLocation: you find rice in a package,1 +field,rice,AtLocation: you find rice growing in a field,1 +cooking,rice,UsedFor: rice is used for cooking,1 +eating,rice,UsedFor: rice is used for eating,1 +meal,rice,UsedFor: rice is used for making a meal,1 +side_dish,rice,UsedFor: rice is used as a side dish,1 +kernel,rice,HasA: rice has a kernel,1 +grain,rice,HasA: rice has a grain,1 +seed,rice,HasA: rice has a seed,1 +endosperm,rice,HasA: rice has an endosperm,1 +meal,rice,PartOf: rice is part of a meal,1 +dish,rice,PartOf: rice is part of a dish,1 +cuisine,rice,PartOf: rice is part of a cuisine,1 +diet,rice,PartOf: rice is part of a diet,1 +grain_group,rice,PartOf: rice is part of the grain group,1 +growing,rice,CapableOf: rice is capable of growing,1 +cooking,rice,CapableOf: rice is capable of cooking,1 +absorbing,rice,CapableOf: rice is capable of absorbing liquid,1 +filling,rice,CapableOf: rice is capable of filling you up,1 +boiling,rice,CapableOf: rice is capable of boiling,1 +plant,rice,MadeOf: rice is made of plant,1 +seed,rice,MadeOf: rice is made of seed,1 +grain,rice,MadeOf: rice is made of grain,1 +plant_material,rice,MadeOf: rice is made of plant material,1 +carbohydrate,rice,MadeOf: rice is made of carbohydrate,1 +heat,rice,HasPrerequisite: you need heat before you can cook rice,1 +pan,rice,HasPrerequisite: you need a pan before you can cook rice,1 +time,rice,HasPrerequisite: you need time before you can cook rice,1 +plant,rice,HasPrerequisite: you need a plant before you can harvest rice,1 +fullness,rice,Causes: rice causes fullness,1 +satisfaction,rice,Causes: rice causes satisfaction,1 +energy,rice,Causes: rice causes energy,1 +growth,rice,Causes: rice causes growth,1 +satiety,rice,Causes: rice causes satiety,1 +starchy,rice,HasProperty: rice is starchy,1 +dry,rice,HasProperty: rice is dry,1 +edible,rice,HasProperty: rice is edible,1 +staple,rice,HasProperty: rice is a staple food,1 +ground,rice,HasProperty: rice can be ground,1 +gun_show,rifle,AtLocation: you find a rifle at a gun show,1 +hunting_stand,rifle,AtLocation: you find a rifle in a hunting stand,1 +defend_home,rifle,UsedFor: a rifle is used for defending home,1 +military_training,rifle,UsedFor: a rifle is used for military training,1 +recreational_shooting,rifle,UsedFor: a rifle is used for recreational shooting,1 +trigger,rifle,HasA: a rifle has a trigger,1 +safety_switch,rifle,HasA: a rifle has a safety switch,1 +soldier's_equipment,rifle,PartOf: a rifle is part of soldier's equipment,1 +hunting_gear,rifle,PartOf: a rifle is part of hunting gear,1 +fire_projectile,rifle,CapableOf: a rifle can fire projectile,1 +make_loud_noise,rifle,CapableOf: a rifle can make loud noise,1 +break_glass,rifle,CapableOf: a rifle can break glass,1 +metal,rifle,MadeOf: a rifle is made of metal,1 +polymer,rifle,MadeOf: a rifle is made of polymer,1 +ammunition,rifle,HasPrerequisite: you need ammunition before you can have/use a rifle,1 +training,rifle,HasPrerequisite: you need training before you can have/use a rifle,1 +injury,rifle,Causes: a rifle causes injury,1 +recoil,rifle,Causes: a rifle causes recoil,1 +death,rifle,Causes: a rifle causes death,1 +heavy,rifle,HasProperty: a rifle is heavy,1 +long,rifle,HasProperty: a rifle is long,1 +dangerous,rifle,HasProperty: a rifle is dangerous,1 +metalic,rifle,HasProperty: a rifle is metalic,1 +kitchen,roach,AtLocation: you find a roach in the kitchen,1 +basement,roach,AtLocation: you find a roach in the basement,1 +garbage,roach,AtLocation: you find a roach in the garbage,1 +crawl,roach,CapableOf: a roach can crawl,1 +bite,roach,CapableOf: a roach can bite,1 +exoskeleton,roach,MadeOf: a roach is made of an exoskeleton,1 +darkness,roach,HasPrerequisite: you need darkness to find a roach,1 +warmth,roach,HasPrerequisite: you need warmth for a roach to survive,1 +disgust,roach,Causes: a roach causes disgust,1 +infestation,roach,Causes: a roach causes infestation,1 +small,roach,HasProperty: a roach is small,1 +dark,roach,HasProperty: a roach is dark in color,1 +fast,roach,HasProperty: a roach is fast,1 +desert,roadrunner,AtLocation: you find a roadrunner in a desert,1 +southwest,roadrunner,AtLocation: you find a roadrunner in the southwest,1 +arid_region,roadrunner,AtLocation: you find a roadrunner in an arid region,1 +beak,roadrunner,HasA: a roadrunner has a beak,1 +feathers,roadrunner,HasA: a roadrunner has feathers,1 +legs,roadrunner,HasA: a roadrunner has legs,1 +tail,roadrunner,HasA: a roadrunner has a tail,1 +ecosystem,roadrunner,PartOf: a roadrunner is part of an ecosystem,1 +food_chain,roadrunner,PartOf: a roadrunner is part of a food chain,1 +running,roadrunner,CapableOf: a roadrunner can run,1 +pecking,roadrunner,CapableOf: a roadrunner can peck,1 +eating,roadrunner,CapableOf: a roadrunner can eat,1 +flying,roadrunner,CapableOf: a roadrunner can fly,1 +fast,roadrunner,HasProperty: a roadrunner is fast,1 +brown,roadrunner,HasProperty: a roadrunner is brown,1 +long-bodied,roadrunner,HasProperty: a roadrunner is long-bodied,1 +ground-dwelling,roadrunner,HasProperty: a roadrunner is ground-dwelling,1 +beak,robin,HasA: a robin has a beak,1 +feathers,robin,HasA: a robin has feathers,1 +flock,robin,PartOf: a robin is part of a flock,1 +sing,robin,CapableOf: a robin can sing,1 +red,robin,HasProperty: a robin has red,1 +riverbank,rock,AtLocation: rocks can be found on riverbanks,1 +quarry,rock,AtLocation: rocks are found in quarries,1 +construction_site,rock,AtLocation: rocks are often on construction sites,1 +ballast,rock,UsedFor: rocks are used for ballast in ships,1 +mineral,rock,HasA: rocks contain minerals,1 +crystal,rock,HasA: some rocks have crystals inside them,1 +foundation,rock,PartOf: rocks are part of building foundations,1 +landscape,rock,PartOf: rocks are part of natural landscapes,1 +sculpture,rock,PartOf: rocks can be part of sculptures,1 +sink_in_water,rock,CapableOf: rocks can sink in water,1 +get_wet,rock,CapableOf: rocks can get wet when it rains,1 +wear_down,rock,CapableOf: rocks can wear down over time,1 +sediment,rock,MadeOf: some rocks are made of sediment,1 +erosion,rock,HasPrerequisite: rocks often form after erosion,1 +compression,rock,HasPrerequisite: rocks often require compression to form,1 +bruise,rock,Causes: rocks can cause bruises when they fall,1 +noise,rock,Causes: rocks can cause noise when they hit surfaces,1 +rough,rock,HasProperty: rocks are often rough to the touch,1 +solid,rock,HasProperty: rocks are solid objects,1 +durable,rock,HasProperty: rocks are naturally durable,1 +sky,rook,AtLocation: a rook is found in the sky,1 +field,rook,AtLocation: a rook is found in a field,1 +perching,rook,UsedFor: a rook is used for perching,1 +nesting,rook,UsedFor: a rook is used for nesting,1 +eating,rook,UsedFor: a rook is used for eating insects,1 +beak,rook,HasA: a rook has a beak,1 +feathers,rook,HasA: a rook has feathers,1 +wings,rook,HasA: a rook has wings,1 +flock,rook,PartOf: a rook is part of a flock,1 +bird_species,rook,PartOf: a rook is part of a bird species,1 +flying,rook,CapableOf: a rook can fly,1 +eating,rook,CapableOf: a rook can eat,1 +making_noise,rook,CapableOf: a rook can make noise,1 +bird_parts,rook,MadeOf: a rook is made of bird parts,1 +organic_material,rook,MadeOf: a rook is made of organic material,1 +air,rook,HasPrerequisite: you need air before a rook can fly,1 +food,rook,HasPrerequisite: you need food before a rook can survive,1 +space,rook,HasPrerequisite: you need space before a rook can live there,1 +noise,rook,Causes: a rook causes noise,1 +movement,rook,Causes: a rook causes movement in the air,1 +digestion,rook,Causes: a rook causes digestion when eating,1 +black,rook,HasProperty: a rook is black,1 +feathered,rook,HasProperty: a rook is feathered,1 +winged,rook,HasProperty: a rook is winged,1 +ground,root,AtLocation: you find roots in the ground,1 +anchoring,root,UsedFor: roots are used for anchoring a plant,1 +storage,root,UsedFor: roots are used for storing nutrients,1 +medicine,root,UsedFor: roots are used for making medicine,1 +root_hairs,root,HasA: roots have root hairs,1 +vascular_tissue,root,HasA: roots have vascular tissue,1 +root_tuber,root,PartOf: roots can be part of a root tuber,1 +storing_food,root,CapableOf: roots can store food,1 +supporting_plant,root,CapableOf: roots can support a plant,1 +growing_deeper,root,CapableOf: roots can grow deeper,1 +cellulose,root,MadeOf: roots are made of cellulose,1 +lignin,root,MadeOf: roots are made of lignin,1 +soil,root,HasPrerequisite: roots need soil,1 +plant_growth,root,Causes: roots cause plant growth,1 +stability,root,Causes: roots cause stability,1 +woody,root,HasProperty: roots can be woody,1 +fibrous,root,HasProperty: roots can be fibrous,1 +edible,root,HasProperty: roots can be edible,1 +decoration,rose,UsedFor: a rose is used for decoration,1 +petals,rose,HasA: a rose has petals,1 +bouquet,rose,PartOf: a rose is part of a bouquet,1 +grow,rose,CapableOf: a rose can grow,1 +bloom,rose,CapableOf: a rose can bloom,1 +plant,rose,MadeOf: a rose is made of plant,1 +sunlight,rose,HasPrerequisite: you need sunlight before you can grow a rose,1 +soil,rose,HasPrerequisite: you need soil before you can grow a rose,1 +love,rose,Causes: a rose causes love,1 +fragrant,rose,HasProperty: a rose is fragrant,1 +beautiful,rose,HasProperty: a rose is beautiful,1 +delicate,rose,HasProperty: a rose is delicate,1 +jewelry,ruby,UsedFor: a ruby is used for jewelry,1 +decoration,ruby,UsedFor: a ruby is used for decoration,1 +gemstone_setting,ruby,UsedFor: a ruby is used in gemstone setting,1 +shine,ruby,HasA: a ruby has a shine,1 +jewelry,ruby,PartOf: a ruby is part of jewelry,1 +ring,ruby,PartOf: a ruby is part of a ring,1 +mineral,ruby,MadeOf: a ruby is made of mineral,1 +mining,ruby,HasPrerequisite: you need mining before you can get a ruby,1 +sparkle,ruby,Causes: a ruby causes sparkle,1 +hard,ruby,HasProperty: a ruby is hard,1 +lustrous,ruby,HasProperty: a ruby is lustrous,1 +brilliant,ruby,HasProperty: a ruby has a brilliant appearance,1 +metal,rust,AtLocation: you find rust on metal,1 +corrosion,rust,UsedFor: rust is used for corrosion,1 +flaky_texture,rust,HasA: rust has a flaky texture,1 +metal_object,rust,PartOf: rust is part of a metal object,1 +weakening,rust,CapableOf: rust can weaken metal,1 +iron_oxide,rust,MadeOf: rust is made of iron oxide,1 +moisture,rust,HasPrerequisite: rust has moisture as a prerequisite,1 +deterioration,rust,Causes: rust causes deterioration,1 +reddish-brown,rust,HasProperty: rust has a reddish-brown color,1 +horse,saddle,AtLocation: a saddle is placed on a horse,1 +saddle_tree,saddle,AtLocation: a saddle rests on a saddle tree,1 +support_rider_weight,saddle,UsedFor: a saddle is used to support the rider's weight,1 +control_horse,saddle,UsedFor: a saddle helps in controlling a horse,1 +carrying_bags,saddle,UsedFor: a saddle can be used to carry bags,1 +stirrup,saddle,HasA: a saddle has a stirrup,1 +girth,saddle,HasA: a saddle has a girth,1 +horn,saddle,HasA: some saddles have a horn,1 +horse_tack,saddle,PartOf: a saddle is part of horse tack,1 +rider_equipment,saddle,PartOf: a saddle is part of a rider's equipment,1 +holding_person,saddle,CapableOf: a saddle can hold a person,1 +distributing_weight,saddle,CapableOf: a saddle can distribute weight,1 +providing_stability,saddle,CapableOf: a saddle can provide stability,1 +metal,saddle,MadeOf: a saddle is made of metal,1 +synthetic_materials,saddle,MadeOf: a saddle can be made of synthetic materials,1 +horse,saddle,HasPrerequisite: you need a horse to use a saddle,1 +rider,saddle,HasPrerequisite: you need a rider to use a saddle,1 +girth,saddle,HasPrerequisite: you need a girth to secure a saddle,1 +stirrups,saddle,HasPrerequisite: you need stirrups for proper saddle use,1 +comfort,saddle,Causes: a saddle causes comfort while riding,1 +stability,saddle,Causes: a saddle causes stability for the rider,1 +pressure_points,saddle,Causes: a poorly fitting saddle causes pressure points,1 +improved_balance,saddle,Causes: a saddle causes improved balance for the rider,1 +sturdy,saddle,HasProperty: a saddle is sturdy,1 +durable,saddle,HasProperty: a saddle is durable,1 +heavy,saddle,HasProperty: a saddle is heavy,1 +supportive,saddle,HasProperty: a saddle is supportive,1 +ocean,sailboat,AtLocation: you find a sailboat on the ocean,1 +racing,sailboat,UsedFor: a sailboat is used for racing,1 +fishing,sailboat,UsedFor: a sailboat is used for fishing,1 +cruising,sailboat,UsedFor: a sailboat is used for cruising,1 +sail,sailboat,HasA: a sailboat has a sail,1 +mast,sailboat,HasA: a sailboat has a mast,1 +rudder,sailboat,HasA: a sailboat has a rudder,1 +hull,sailboat,HasA: a sailboat has a hull,1 +fleet,sailboat,PartOf: a sailboat is part of a fleet,1 +race,sailboat,PartOf: a sailboat is part of a race,1 +float,sailboat,CapableOf: a sailboat can float,1 +move,sailboat,CapableOf: a sailboat can move,1 +drift,sailboat,CapableOf: a sailboat can drift,1 +fiberglass,sailboat,MadeOf: a sailboat is made of fiberglass,1 +metal,sailboat,MadeOf: a sailboat is made of metal,1 +wind,sailboat,HasPrerequisite: you need wind before you can use a sailboat,1 +enjoyment,sailboat,Causes: a sailboat causes enjoyment,1 +movement,sailboat,Causes: a sailboat causes movement,1 +relaxation,sailboat,Causes: a sailboat causes relaxation,1 +buoyant,sailboat,HasProperty: a sailboat is buoyant,1 +heavy,sailboat,HasProperty: a sailboat is heavy,1 +large,sailboat,HasProperty: a sailboat is large,1 +kitchen,salad,AtLocation: you find salad in a kitchen,1 +eating,salad,UsedFor: salad is used for eating,1 +tomatoes,salad,HasA: a salad has tomatoes,1 +dressing,salad,HasA: a salad has dressing,1 +meal,salad,PartOf: salad is part of a meal,1 +satisfying,salad,CapableOf: salad can satisfy hunger,1 +vegetables,salad,MadeOf: salad is made of vegetables,1 +ingredients,salad,HasPrerequisite: you need ingredients before you can make salad,1 +fullness,salad,Causes: salad causes fullness,1 +fresh,salad,HasProperty: salad is fresh,1 +crunchy,salad,HasProperty: salad can be crunchy,1 +river,salmon,AtLocation: salmon are found in rivers,1 +ocean,salmon,AtLocation: salmon are found in the ocean,1 +stream,salmon,AtLocation: salmon are found in streams,1 +fishery,salmon,AtLocation: salmon can be found at a fishery,1 +eating,salmon,UsedFor: salmon is used for eating,1 +cooking,salmon,UsedFor: salmon is used for cooking,1 +bait,salmon,UsedFor: salmon can be used as bait,1 +fishing,salmon,UsedFor: salmon can be used for fishing,1 +scales,salmon,HasA: a salmon has scales,1 +fins,salmon,HasA: a salmon has fins,1 +tail,salmon,HasA: a salmon has a tail,1 +bones,salmon,HasA: a salmon has bones,1 +meat,salmon,HasA: a salmon has meat,1 +diet,salmon,PartOf: salmon is part of a diet,1 +ecosystem,salmon,PartOf: salmon is part of an ecosystem,1 +fishery,salmon,PartOf: salmon is part of a fishery,1 +meal,salmon,PartOf: salmon is part of a meal,1 +migrate,salmon,CapableOf: a salmon can migrate,1 +breathe,salmon,CapableOf: a salmon can breathe,1 +eat,salmon,CapableOf: a salmon can eat,1 +grow,salmon,CapableOf: a salmon can grow,1 +lay_eggs,salmon,CapableOf: a salmon can lay eggs,1 +flesh,salmon,MadeOf: salmon is made of flesh,1 +muscle,salmon,MadeOf: salmon is made of muscle,1 +protein,salmon,MadeOf: salmon is made of protein,1 +fat,salmon,MadeOf: salmon is made of fat,1 +hatch_from_eggs_(weight_1.0),salmon,HasPrerequisite: salmon requires hatching from eggs,1 +reach_adulthood_(weight_1.0),salmon,HasPrerequisite: salmon requires reaching adulthood,1 +find_food_(weight_1.0),salmon,HasPrerequisite: salmon requires finding food,1 +find_mate_(weight_1.0),salmon,HasPrerequisite: salmon requires finding a mate,1 +survive_in_water_(weight_1.0),salmon,HasPrerequisite: salmon requires surviving in water,1 +satisfaction,salmon,Causes: eating salmon causes satisfaction,1 +nutrition,salmon,Causes: eating salmon causes nutrition,1 +growth,salmon,Causes: eating salmon causes growth,1 +satiety,salmon,Causes: eating salmon causes satiety,1 +digestion,salmon,Causes: eating salmon causes digestion,1 +pink,salmon,HasProperty: salmon has a pink color,1 +oily,salmon,HasProperty: salmon has an oily property,1 +edible,salmon,HasProperty: salmon has an edible property,1 +bony,salmon,HasProperty: salmon has a bony property,1 +fresh,salmon,HasProperty: salmon has a fresh property,1 +saltshaker,salt,AtLocation: you find salt in a saltshaker,1 +restaurant,salt,AtLocation: you find salt in a restaurant,1 +cooking,salt,UsedFor: salt is used for cooking,1 +pickling,salt,UsedFor: salt is used for pickling,1 +saltwater_pool,salt,UsedFor: salt is used for saltwater pools,1 +grain,salt,HasA: salt has a grain,1 +crystal,salt,HasA: salt has a crystal,1 +pretzel,salt,PartOf: salt is part of a pretzel,1 +popcorn,salt,PartOf: salt is part of popcorn,1 +flavoring,salt,CapableOf: salt can flavor food,1 +curing,salt,CapableOf: salt can cure meat,1 +preservation,salt,CapableOf: salt can preservation food,1 +seasoning,salt,CapableOf: salt can season food,1 +melting,salt,CapableOf: salt can melting ice,1 +minerals,salt,MadeOf: salt is made of minerals,1 +sodium,salt,MadeOf: salt is made of sodium,1 +chloride,salt,MadeOf: salt is made of chloride,1 +processing,salt,HasPrerequisite: salt requires processing before use,1 +mining,salt,HasPrerequisite: salt requires mining before use,1 +thirst,salt,Causes: salt causes thirst,1 +hypertension,salt,Causes: salt causes hypertension,1 +flavor,salt,Causes: salt causes flavor in food,1 +preservation,salt,Causes: salt causes preservation of food,1 +white,salt,HasProperty: salt is white,1 +crystalline,salt,HasProperty: salt is crystalline,1 +granular,salt,HasProperty: salt is granular,1 +savory,salt,HasProperty: salt is savory,1 +woods,sapsucker,AtLocation: you find a sapsucker in the woods,1 +beak,sapsucker,HasA: a sapsucker has a beak,1 +ecosystem,sapsucker,PartOf: a sapsucker is part of an ecosystem,1 +peck,sapsucker,CapableOf: a sapsucker can peck,1 +feathers,sapsucker,MadeOf: a sapsucker is made of feathers,1 +forest,sapsucker,HasPrerequisite: you need a forest before you can find a sapsucker,1 +small,sapsucker,HasProperty: a sapsucker is small,1 +food,sardine,UsedFor: a sardine is used for food,1 +bone,sardine,HasA: a sardine has a bone,1 +seafood,sardine,PartOf: a sardine is part of seafood,1 +swim,sardine,CapableOf: a sardine can swim,1 +stomach_ache,sardine,Causes: a sardine causes a stomach ache,1 +small,sardine,HasProperty: a sardine is small,1 +workshop,saw,AtLocation: you find a saw in a workshop,1 +shaping_wood,saw,UsedFor: a saw is used for shaping wood,1 +woodworking_tools,saw,PartOf: a saw is part of woodworking_tools,1 +rip_cut,saw,CapableOf: a saw can rip_cut,1 +metal,saw,MadeOf: a saw is made of metal,1 +sharpening,saw,HasPrerequisite: you need sharpening before using a saw,1 +injury,saw,Causes: a saw causes injury,1 +sharp,saw,HasProperty: a saw is sharp,1 +music_room,saxophone,AtLocation: you find a saxophone in a music room,1 +solo,saxophone,UsedFor: a saxophone is used for solo performances,1 +improvisation,saxophone,UsedFor: a saxophone is used for improvisation,1 +marching_music,saxophone,UsedFor: a saxophone is used for marching music,1 +mouthpiece,saxophone,HasA: a saxophone has a mouthpiece,1 +key,saxophone,HasA: a saxophone has keys,1 +reed,saxophone,HasA: a saxophone has a reed,1 +ensemble,saxophone,PartOf: a saxophone is part of an ensemble,1 +producing_sound,saxophone,CapableOf: a saxophone can produce sound,1 +changing_pitch,saxophone,CapableOf: a saxophone can change pitch,1 +creating_tone,saxophone,CapableOf: a saxophone can create tone,1 +brass,saxophone,MadeOf: a saxophone is made of brass,1 +metal,saxophone,MadeOf: a saxophone is made of metal,1 +lacquer,saxophone,MadeOf: a saxophone is made of lacquer,1 +musician,saxophone,HasPrerequisite: a saxophone requires a musician to play,1 +breath,saxophone,HasPrerequisite: a saxophone requires breath to operate,1 +skill,saxophone,HasPrerequisite: a saxophone requires skill to play,1 +sound,saxophone,Causes: a saxophone causes sound,1 +music,saxophone,Causes: a saxophone causes music,1 +entertainment,saxophone,Causes: a saxophone causes entertainment,1 +brass-colored,saxophone,HasProperty: a saxophone is brass-colored,1 +heavy,saxophone,HasProperty: a saxophone is heavy,1 +shiny,saxophone,HasProperty: a saxophone is shiny,1 +kitchen,scale,AtLocation: you find a scale in a kitchen,1 +pharmacy,scale,AtLocation: you find a scale in a pharmacy,1 +gym,scale,AtLocation: you find a scale in a gym,1 +grocery_store,scale,AtLocation: you find a scale in a grocery store,1 +balance_weight,scale,UsedFor: a scale is used for balancing weight,1 +verify_weight,scale,UsedFor: a scale is used for verifying weight,1 +shipping,scale,UsedFor: a scale is used for shipping,1 +cooking,scale,UsedFor: a scale is used for cooking,1 +display,scale,HasA: a scale has a display,1 +surface,scale,HasA: a scale has a surface,1 +calibration,scale,HasA: a scale has calibration,1 +mechanism,scale,HasA: a scale has a mechanism,1 +weighing_station,scale,PartOf: a scale is part of a weighing station,1 +medical_equipment,scale,PartOf: a scale is part of medical equipment,1 +indicating_weight,scale,CapableOf: a scale can indicate weight,1 +displaying_measurement,scale,CapableOf: a scale can display measurement,1 +balancing_loads,scale,CapableOf: a scale can balance loads,1 +providing_accuracy,scale,CapableOf: a scale can provide accuracy,1 +metal,scale,MadeOf: a scale is made of metal,1 +power_source,scale,HasPrerequisite: a scale requires a power source,1 +level_surface,scale,HasPrerequisite: a scale needs a level surface,1 +calibration,scale,HasPrerequisite: a scale requires calibration,1 +zero_setting,scale,HasPrerequisite: a scale needs a zero setting,1 +weight_knowledge,scale,Causes: a scale causes weight knowledge,1 +measurement_accuracy,scale,Causes: a scale causes measurement accuracy,1 +weight_verification,scale,Causes: a scale causes weight verification,1 +load_distribution,scale,Causes: a scale causes load distribution,1 +precise,scale,HasProperty: a scale is precise,1 +accurate,scale,HasProperty: a scale is accurate,1 +flat,scale,HasProperty: a scale is flat,1 +electronic,scale,HasProperty: a scale is electronic,1 +mechanical,scale,HasProperty: a scale is mechanical,1 +warmth,scarf,UsedFor: a scarf is used for warmth,1 +decoration,scarf,UsedFor: a scarf is used for decoration,1 +fashion,scarf,UsedFor: a scarf is used for fashion,1 +holding_hair_back,scarf,UsedFor: a scarf is used for holding hair back,1 +knot,scarf,HasA: a scarf has a knot,1 +pattern,scarf,HasA: a scarf has a pattern,1 +outfit,scarf,PartOf: a scarf is part of an outfit,1 +keeping,scarf,CapableOf: a scarf can keep you warm,1 +muffling,scarf,CapableOf: a scarf can muffle sounds,1 +silk,scarf,MadeOf: a scarf is made of silk,1 +fleece,scarf,MadeOf: a scarf is made of fleece,1 +neck,scarf,HasPrerequisite: you need a neck before you can wear a scarf,1 +clothing,scarf,HasPrerequisite: you need clothing before you can wear a scarf,1 +style,scarf,Causes: a scarf causes style,1 +comfort,scarf,Causes: a scarf causes comfort,1 +warmth,scarf,Causes: a scarf causes warmth,1 +long,scarf,HasProperty: a scarf is long,1 +soft,scarf,HasProperty: a scarf is soft,1 +colorful,scarf,HasProperty: a scarf is colorful,1 +warm,scarf,HasProperty: a scarf is warm,1 +district,school,AtLocation: a school is found in a school district,1 +sports,school,UsedFor: a school is used for sports,1 +extracurricular_activities,school,UsedFor: a school is used for extracurricular activities,1 +social_development,school,UsedFor: a school is used for social development,1 +cafeteria,school,HasA: a school has a cafeteria,1 +playground,school,HasA: a school has a playground,1 +education_system,school,PartOf: a school is part of the education system,1 +community,school,PartOf: a school is part of the community,1 +hosting_events,school,CapableOf: a school can host events,1 +awarding_diplomas,school,CapableOf: a school can award diplomas,1 +conducting_research,school,CapableOf: a school can conduct research,1 +concrete,school,MadeOf: a school is made of concrete,1 +bricks,school,MadeOf: a school is made of bricks,1 +funding,school,HasPrerequisite: funding is a prerequisite for a school,1 +teachers,school,HasPrerequisite: teachers are a prerequisite for a school,1 +curriculum,school,HasPrerequisite: a curriculum is a prerequisite for a school,1 +graduation,school,Causes: a school causes graduation,1 +knowledge,school,Causes: a school causes knowledge,1 +employment,school,Causes: a school causes employment,1 +socialization,school,Causes: a school causes socialization,1 +large,school,HasProperty: a school is large,1 +institutional,school,HasProperty: a school is institutional,1 +educational,school,HasProperty: a school is educational,1 +shore,seaweed,AtLocation: you find seaweed washed up on the shore,1 +tidepool,seaweed,AtLocation: you can find seaweed in tidepools,1 +sea,seaweed,AtLocation: seaweed grows in the sea,1 +sushi,seaweed,UsedFor: seaweed is used for making sushi,1 +fertilizer,seaweed,UsedFor: seaweed is used for plant fertilizer,1 +medicine,seaweed,UsedFor: seaweed is used for traditional medicine,1 +wrapping,seaweed,UsedFor: seaweed is used for wrapping food,1 +cell,seaweed,HasA: seaweed has cells,1 +color,seaweed,HasA: seaweed has a greenish color,1 +branch,seaweed,HasA: seaweed has branching parts,1 +holdfast,seaweed,HasA: seaweed has a holdfast to attach to rocks,1 +ecosystem,seaweed,PartOf: seaweed is part of the ocean ecosystem,1 +foodchain,seaweed,PartOf: seaweed is part of the food chain,1 +algae,seaweed,MadeOf: seaweed is made of algae,1 +seawater,seaweed,MadeOf: seaweed is made of seawater,1 +minerals,seaweed,MadeOf: seaweed is made of minerals,1 +photosynthesize,seaweed,CapableOf: seaweed can photosynthesize,1 +drift,seaweed,CapableOf: seaweed can drift with currents,1 +grow,seaweed,CapableOf: seaweed can grow in water,1 +reproduce,seaweed,CapableOf: seaweed can reproduce,1 +sunlight,seaweed,HasPrerequisite: seaweed requires sunlight for growth,1 +rocks,seaweed,HasPrerequisite: seaweed often requires rocks to attach to,1 +smell,seaweed,Causes: seaweed can cause a salty smell,1 +decay,seaweed,Causes: seaweed can cause decay when it dies,1 +habitat,seaweed,Causes: seaweed causes habitat for small creatures,1 +driftwood,seaweed,Causes: seaweed can cause driftwood to accumulate,1 +slippery,seaweed,HasProperty: seaweed has a slippery texture,1 +green,seaweed,HasProperty: seaweed has a green color,1 +flexible,seaweed,HasProperty: seaweed has a flexible structure,1 +wet,seaweed,HasProperty: seaweed has a wet appearance,1 +beach,shell,AtLocation: you find a shell on a beach,1 +sand,shell,AtLocation: you find shells in the sand,1 +decoration,shell,UsedFor: a shell is used for decoration,1 +collecting,shell,UsedFor: shells are used for collecting,1 +curve,shell,HasA: a shell has a curve,1 +opening,shell,HasA: a shell has an opening,1 +animal,shell,PartOf: a shell is part of an animal,1 +mollusk,shell,PartOf: a shell is part of a mollusk,1 +protecting,shell,CapableOf: a shell can protect,1 +housing,shell,CapableOf: a shell can house,1 +calcium,shell,MadeOf: a shell is made of calcium,1 +sand,shell,MadeOf: a shell is made of sand,1 +ocean,shell,HasPrerequisite: you need an ocean before you can have shells,1 +sound,shell,Causes: a shell causes sound,1 +curiosity,shell,Causes: shells cause curiosity,1 +hard,shell,HasProperty: a shell is hard,1 +smooth,shell,HasProperty: a shell is smooth,1 +provide_protection,shelter,UsedFor: a shelter is used for providing protection,1 +keep_dry,shelter,UsedFor: a shelter is used for keeping dry,1 +temporary_rest,shelter,UsedFor: a shelter is used for temporary rest,1 +roof,shelter,HasA: a shelter has a roof,1 +door,shelter,HasA: a shelter has a door,1 +window,shelter,HasA: a shelter has a window,1 +building,shelter,PartOf: a shelter is part of a building,1 +structure,shelter,PartOf: a shelter is part of a structure,1 +provide_shelter,shelter,CapableOf: a shelter can provide shelter,1 +block_wind,shelter,CapableOf: a shelter can block wind,1 +hold_up,shelter,CapableOf: a shelter can hold up,1 +metal,shelter,MadeOf: a shelter is made of metal,1 +materials,shelter,HasPrerequisite: you need materials before you can build a shelter,1 +land,shelter,HasPrerequisite: you need land before you can build a shelter,1 +plan,shelter,HasPrerequisite: you need a plan before you can build a shelter,1 +safety,shelter,Causes: a shelter causes safety,1 +comfort,shelter,Causes: a shelter causes comfort,1 +relief,shelter,Causes: a shelter causes relief,1 +sturdy,shelter,HasProperty: a shelter is sturdy,1 +enclosed,shelter,HasProperty: a shelter is enclosed,1 +protective,shelter,HasProperty: a shelter is protective,1 +harbor,ship,AtLocation: a ship is found in a harbor,1 +sea,ship,AtLocation: a ship is found in the sea,1 +transport,ship,UsedFor: a ship is used for transport,1 +fishing,ship,UsedFor: a ship is used for fishing,1 +military_patrol,ship,UsedFor: a ship is used for military patrol,1 +sail,ship,HasA: a ship has sails,1 +hull,ship,HasA: a ship has a hull,1 +cargo,ship,HasA: a ship has cargo,1 +fleet,ship,PartOf: a ship is part of a fleet,1 +navy,ship,PartOf: a ship is part of a navy,1 +sink,ship,CapableOf: a ship can sink,1 +catch_fire,ship,CapableOf: a ship can catch fire,1 +break_apart,ship,CapableOf: a ship can break apart,1 +metal,ship,MadeOf: a ship is made of metal,1 +captain,ship,HasPrerequisite: you need a captain to use a ship,1 +fuel,ship,HasPrerequisite: you need fuel to use a ship,1 +wave_creation,ship,Causes: a ship causes wave creation,1 +pollution,ship,Causes: a ship causes pollution,1 +cargo_delivery,ship,Causes: a ship causes cargo delivery,1 +large,ship,HasProperty: a ship is large,1 +heavy,ship,HasProperty: a ship is heavy,1 +sturdy,ship,HasProperty: a ship is sturdy,1 +closet,shotgun,AtLocation: you store a shotgun in a closet,1 +hunting,shotgun,UsedFor: a shotgun is used for hunting,1 +self-defense,shotgun,UsedFor: a shotgun is used for self-defense,1 +trigger,shotgun,HasA: a shotgun has a trigger,1 +arsenal,shotgun,PartOf: a shotgun is part of an arsenal,1 +firing,shotgun,CapableOf: a shotgun can fire,1 +killing,shotgun,CapableOf: a shotgun can kill,1 +metal,shotgun,MadeOf: a shotgun is made of metal,1 +license,shotgun,HasPrerequisite: you need a license to have a shotgun,1 +damage,shotgun,Causes: a shotgun causes damage,1 +injury,shotgun,Causes: a shotgun causes injury,1 +loud_noise,shotgun,Causes: a shotgun causes loud noise,1 +heavy,shotgun,HasProperty: a shotgun is heavy,1 +long,shotgun,HasProperty: a shotgun is long,1 +farm,silo,AtLocation: you find a silo on a farm,1 +store_grain,silo,UsedFor: a silo is used for storing grain,1 +store_fertilizer,silo,UsedFor: a silo is used for storing fertilizer,1 +door,silo,HasA: a silo has a door,1 +roof,silo,HasA: a silo has a roof,1 +silo_chute,silo,HasA: a silo has a silo chute,1 +farm_structure,silo,PartOf: a silo is part of farm structure,1 +store_fertilizer,silo,CapableOf: a silo can store fertilizer,1 +store_seed,silo,CapableOf: a silo can store seed,1 +concrete,silo,MadeOf: a silo is made of concrete,1 +metal,silo,MadeOf: a silo is made of metal,1 +farm_equipment,silo,HasPrerequisite: you need farm equipment before you can use a silo,1 +grain,silo,HasPrerequisite: you need grain before you can fill a silo,1 +storage,silo,Causes: a silo causes storage,1 +preservation,silo,Causes: a silo causes preservation,1 +tall,silo,HasProperty: a silo is tall,1 +cylindrical,silo,HasProperty: a silo is cylindrical,1 +sturdy,silo,HasProperty: a silo is sturdy,1 +mine_shaft,silver,AtLocation: silver is found in mine shafts,1 +geode,silver,AtLocation: silver can be found in geodes,1 +smelter,silver,AtLocation: silver is refined in a smelter,1 +electrical_wire,silver,UsedFor: silver is used for electrical wire,1 +solder,silver,UsedFor: silver is used for solder,1 +mirrors,silver,UsedFor: silver is used for mirrors,1 +coins,silver,UsedFor: silver is used for coins,1 +medals,silver,UsedFor: silver is used for medals,1 +tableware,silver,UsedFor: silver is used for tableware,1 +luster,silver,HasA: silver has a luster,1 +sheen,silver,HasA: silver has a sheen,1 +value,silver,HasA: silver has value,1 +purity,silver,HasA: silver has purity,1 +reflectivity,silver,HasA: silver has reflectivity,1 +alloy,silver,PartOf: silver is part of an alloy,1 +metal_alloy,silver,PartOf: silver is part of a metal alloy,1 +investment,silver,PartOf: silver is part of investment,1 +conduct_electricity,silver,CapableOf: silver can conduct electricity,1 +tarnish,silver,CapableOf: silver can tarnish,1 +reflect_light,silver,CapableOf: silver can reflect light,1 +bond_to_metal,silver,CapableOf: silver can bond to metal,1 +melt,silver,CapableOf: silver can melt,1 +ore,silver,MadeOf: silver is made of ore,1 +metal_ore,silver,MadeOf: silver is made of metal ore,1 +mineral,silver,MadeOf: silver is made of mineral,1 +atoms,silver,MadeOf: silver is made of atoms,1 +electrons,silver,MadeOf: silver is made of electrons,1 +mining,silver,HasPrerequisite: you need mining before you have silver,1 +refinement,silver,HasPrerequisite: you need refinement before you use silver,1 +extraction,silver,HasPrerequisite: you need extraction before you have silver,1 +purification,silver,HasPrerequisite: you need purification before you use silver,1 +smelting,silver,HasPrerequisite: you need smelting before you use silver,1 +conductivity,silver,Causes: silver causes conductivity,1 +shine,silver,Causes: silver causes shine,1 +value,silver,Causes: silver causes value,1 +tarnish,silver,Causes: silver causes tarnish,1 +reflection,silver,Causes: silver causes reflection,1 +lustrous,silver,HasProperty: silver is lustrous,1 +metallic,silver,HasProperty: silver is metallic,1 +ductile,silver,HasProperty: silver is ductile,1 +malleable,silver,HasProperty: silver is malleable,1 +soft,silver,HasProperty: silver is soft,1 +dense,silver,HasProperty: silver is dense,1 +corrosion_resistant,silver,HasProperty: silver is corrosion resistant,1 +rink,skate,AtLocation: you find skates in a skating rink,1 +gliding,skate,UsedFor: skates are used for gliding,1 +exercise,skate,UsedFor: skates are used for exercise,1 +recreation,skate,UsedFor: skates are used for recreation,1 +transportation,skate,UsedFor: skates are used for transportation,1 +wheel,skate,HasA: roller skates have wheels,1 +buckle,skate,HasA: skates have a buckle,1 +outfit,skate,PartOf: skates are part of a skating outfit,1 +hobby,skate,PartOf: skates are part of a skating hobby,1 +rolling,skate,CapableOf: skates can roll,1 +moving,skate,CapableOf: skates can move,1 +gliding,skate,CapableOf: skates can glide,1 +metal,skate,MadeOf: skates are made of metal,1 +sharpen,skate,HasPrerequisite: skates need to be sharpened before use,1 +lace,skate,HasPrerequisite: skates need to be laced before use,1 +strap,skate,HasPrerequisite: some skates need to be strapped on,1 +bruise,skate,Causes: falling off skates can cause a bruise,1 +fun,skate,Causes: using skates can cause fun,1 +skill,skate,Causes: practicing with skates can cause skill,1 +balance,skate,Causes: skating can cause balance improvement,1 +smooth,skate,HasProperty: skates have a smooth glide,1 +sharp,skate,HasProperty: ice skates have sharp edges,1 +fast,skate,HasProperty: some skates are fast,1 +heavy,skate,HasProperty: skates can be heavy,1 +slime,slug,HasA: a slug has slime,1 +mollusk,slug,PartOf: a slug is part of the mollusk family,1 +crawl,slug,CapableOf: a slug can crawl,1 +moisture,slug,HasPrerequisite: you need moisture before you can have a slug,1 +damage,slug,Causes: a slug causes damage to plants,1 +slimy,slug,HasProperty: a slug is slimy,1 +fishing,snail,UsedFor: a snail is used for fishing bait,1 +crawl,snail,CapableOf: a snail can crawl,1 +moisture,snail,HasPrerequisite: you need moisture before you can find a snail,1 +slime,snail,Causes: a snail causes slime,1 +slimy,snail,HasProperty: a snail is slimy,1 +eating,snapper,UsedFor: a snapper is used for eating,1 +fins,snapper,HasA: a snapper has fins,1 +swim,snapper,CapableOf: a snapper can swim,1 +dinner,snapper,Causes: a snapper causes dinner,1 +tasty,snapper,HasProperty: a snapper is tasty,1 +vending_machine,soda,AtLocation: you find soda in a vending machine,1 +grocery_store,soda,AtLocation: you find soda in a grocery store,1 +refrigerator,soda,AtLocation: you keep soda in a refrigerator,1 +quenching_thirst,soda,UsedFor: soda is used for quenching thirst,1 +mixing_drinks,soda,UsedFor: soda is used for mixing drinks,1 +making_fizzy_drinks,soda,UsedFor: soda is used for making fizzy drinks,1 +sugar,soda,HasA: soda has sugar,1 +carbonation,soda,HasA: soda has carbonation,1 +flavor,soda,HasA: soda has flavor,1 +meal,soda,PartOf: soda is part of a meal,1 +party_tray,soda,PartOf: soda is part of a party tray,1 +bubbling,soda,CapableOf: soda can bubble,1 +carbonating,soda,CapableOf: soda can carbonate,1 +pouring,soda,CapableOf: soda can pour,1 +ingredients,soda,HasPrerequisite: you need ingredients before you can make soda,1 +bubbles,soda,Causes: soda causes bubbles,1 +thirst,soda,Causes: soda causes thirst,1 +gas,soda,Causes: soda causes gas,1 +fizzy,soda,HasProperty: soda is fizzy,1 +sweet,soda,HasProperty: soda is sweet,1 +bubbly,soda,HasProperty: soda is bubbly,1 +fireplace,soot,AtLocation: you find soot in a fireplace,1 +blackening,soot,UsedFor: soot is used for blackening surfaces,1 +particles,soot,HasA: soot has particles,1 +smoke,soot,PartOf: soot is part of smoke,1 +staining,soot,CapableOf: soot can stain,1 +carbon,soot,MadeOf: soot is made of carbon,1 +burning,soot,HasPrerequisite: soot has a prerequisite of burning,1 +pollution,soot,Causes: soot causes pollution,1 +black,soot,HasProperty: soot has a black property,1 +kitchen,soup,AtLocation: you find soup in a kitchen,1 +refrigerator,soup,AtLocation: you find soup in a refrigerator,1 +eating,soup,UsedFor: soup is used for eating,1 +heating,soup,UsedFor: soup is used for heating,1 +nourishing,soup,UsedFor: soup is used for nourishing,1 +broth,soup,HasA: soup has broth,1 +vegetables,soup,HasA: soup has vegetables,1 +meat,soup,HasA: soup has meat,1 +lunch,soup,PartOf: soup is part of lunch,1 +dinnerware,soup,PartOf: soup is part of dinnerware,1 +hot_meal,soup,PartOf: soup is part of hot meal,1 +heating,soup,CapableOf: soup can heat up,1 +cooling,soup,CapableOf: soup can cool down,1 +satisfying,soup,CapableOf: soup can satisfy hunger,1 +broth,soup,MadeOf: soup is made of broth,1 +ingredients,soup,MadeOf: soup is made of ingredients,1 +liquid,soup,MadeOf: soup is made of liquid,1 +cooking,soup,HasPrerequisite: you need cooking before you can have soup,1 +ingredients,soup,HasPrerequisite: you need ingredients before you can make soup,1 +heat,soup,HasPrerequisite: you need heat before you can have soup,1 +warming,soup,Causes: soup causes warming,1 +satiety,soup,Causes: soup causes satiety,1 +digestion,soup,Causes: soup causes digestion,1 +hot,soup,HasProperty: soup has the property of being hot,1 +warm,soup,HasProperty: soup has the property of being warm,1 +liquid,soup,HasProperty: soup has the property of being liquid,1 +shed,spade,AtLocation: you find a spade in a shed,1 +gardening,spade,UsedFor: a spade is used for gardening,1 +landscaping,spade,UsedFor: a spade is used for landscaping,1 +turning_soil,spade,UsedFor: a spade is used for turning soil,1 +handle,spade,HasA: a spade has a handle,1 +toolset,spade,PartOf: a spade is part of a toolset,1 +gardening_tools,spade,PartOf: a spade is part of gardening tools,1 +cutting,spade,CapableOf: a spade can cut,1 +shoveling,spade,CapableOf: a spade can shovel,1 +metal,spade,MadeOf: a spade is made of metal,1 +soil,spade,HasPrerequisite: you need soil before you can use a spade,1 +hole,spade,Causes: a spade causes a hole,1 +ground_disturbance,spade,Causes: a spade causes ground disturbance,1 +sharp,spade,HasProperty: a spade is sharp,1 +sturdy,spade,HasProperty: a spade is sturdy,1 +heavy,spade,HasProperty: a spade is heavy,1 +bowl,spaghetti,AtLocation: you find spaghetti in a bowl,1 +eating,spaghetti,UsedFor: spaghetti is used for eating,1 +noodle,spaghetti,HasA: spaghetti has noodles,1 +meal,spaghetti,PartOf: spaghetti is part of a meal,1 +breaking,spaghetti,CapableOf: spaghetti can break,1 +flour,spaghetti,MadeOf: spaghetti is made of flour,1 +cooking,spaghetti,HasPrerequisite: cooking is a prerequisite for spaghetti,1 +satisfaction,spaghetti,Causes: spaghetti causes satisfaction,1 +stringy,spaghetti,HasProperty: spaghetti is stringy,1 +fishing_boat,spear,AtLocation: you find a spear on a fishing boat,1 +hunting,spear,UsedFor: a spear is used for hunting,1 +fishing,spear,UsedFor: a spear is used for fishing,1 +throwing,spear,UsedFor: a spear is used for throwing,1 +point,spear,HasA: a spear has a point,1 +arsenal,spear,PartOf: a spear is part of an arsenal,1 +piercing,spear,CapableOf: a spear can pierce,1 +killing,spear,CapableOf: a spear can kill,1 +thrusting,spear,CapableOf: a spear can thrust,1 +metal,spear,MadeOf: a spear is made of metal,1 +skill,spear,HasPrerequisite: skill is a prerequisite to use a spear,1 +injury,spear,Causes: a spear causes injury,1 +death,spear,Causes: a spear causes death,1 +sharp,spear,HasProperty: a spear is sharp,1 +long,spear,HasProperty: a spear is long,1 +heavy,spear,HasProperty: a spear is heavy,1 +corner,spider,AtLocation: spiders are often found in corners of rooms,1 +house,spider,AtLocation: spiders can live in houses,1 +attic,spider,AtLocation: spiders sometimes live in attics,1 +eating_flies,spider,UsedFor: spiders are used for eating flies,1 +balancing_ecosystem,spider,UsedFor: spiders are used for balancing ecosystems,1 +controlling_pests,spider,UsedFor: spiders are used for controlling pests in gardens,1 +legs,spider,HasA: spiders have legs,1 +body,spider,HasA: spiders have bodies,1 +eyes,spider,HasA: spiders have eyes,1 +mouth,spider,HasA: spiders have mouths,1 +food_chain,spider,PartOf: spiders are part of the food chain,1 +ecosystem,spider,PartOf: spiders are part of the ecosystem,1 +nature,spider,PartOf: spiders are part of nature,1 +eating,spider,CapableOf: spiders can eat,1 +growing,spider,CapableOf: spiders can grow,1 +reproducing,spider,CapableOf: spiders can reproduce,1 +climbing,spider,CapableOf: spiders can climb walls,1 +sensing_vibrations,spider,CapableOf: spiders can sense vibrations,1 +cells,spider,MadeOf: spiders are made of cells,1 +tissue,spider,MadeOf: spiders are made of tissue,1 +webbing_material,spider,HasPrerequisite: spiders need webbing material to spin webs,1 +warmth,spider,HasPrerequisite: spiders need warmth to survive,1 +food,spider,HasPrerequisite: spiders need food to survive,1 +fear,spider,Causes: spiders can cause fear in some people,1 +web_debris,spider,Causes: spiders can cause web debris around their webs,1 +insect_death,spider,Causes: spiders can cause the death of insects,1 +eight_legged,spider,HasProperty: spiders are eight-legged,1 +small,spider,HasProperty: spiders are small,1 +creepy,spider,HasProperty: spiders are often considered creepy,1 +grocery_store,spinach,AtLocation: you find spinach in a grocery store,1 +farmers_market,spinach,AtLocation: you find spinach at a farmers market,1 +cooking,spinach,UsedFor: spinach is used for cooking,1 +smoothies,spinach,UsedFor: spinach is used for smoothies,1 +leaf,spinach,HasA: spinach has a leaf,1 +meal,spinach,PartOf: spinach is part of a meal,1 +growing,spinach,CapableOf: spinach can grow,1 +wilting,spinach,CapableOf: spinach can wilt,1 +plant,spinach,MadeOf: spinach is made of plant,1 +leaf,spinach,MadeOf: spinach is made of leaf,1 +soil,spinach,HasPrerequisite: spinach needs soil to grow,1 +fullness,spinach,Causes: spinach causes fullness,1 +nutrition,spinach,Causes: spinach causes nutrition,1 +kitchen,sponge,AtLocation: you find a sponge in a kitchen,1 +scrubbing,sponge,UsedFor: a sponge is used for scrubbing,1 +washing,sponge,UsedFor: a sponge is used for washing,1 +absorbing,sponge,UsedFor: a sponge is used for absorbing,1 +pores,sponge,HasA: a sponge has pores,1 +cleaning_kit,sponge,PartOf: a sponge is part of a cleaning kit,1 +absorb_liquid,sponge,CapableOf: a sponge can absorb liquid,1 +scrub_surfaces,sponge,CapableOf: a sponge can scrub surfaces,1 +cellulose,sponge,MadeOf: a sponge is made of cellulose,1 +cleanliness,sponge,Causes: a sponge causes cleanliness,1 +dryness,sponge,Causes: a sponge causes dryness,1 +absorbent,sponge,HasProperty: a sponge is absorbent,1 +porous,sponge,HasProperty: a sponge is porous,1 +squishy,sponge,HasProperty: a sponge is squishy,1 +eating,sprout,UsedFor: sprouts are used for eating,1 +plant,sprout,PartOf: sprouts are part of a plant,1 +growing,sprout,CapableOf: sprouts can grow,1 +plant_matter,sprout,MadeOf: sprouts are made of plant matter,1 +seed,sprout,HasPrerequisite: sprouts require a seed,1 +green,sprout,HasProperty: sprouts are green,1 +grocery_store,squash,AtLocation: you find squash in a grocery store,1 +cooking,squash,UsedFor: squash is used for cooking,1 +baking,squash,UsedFor: squash is used for baking,1 +flesh,squash,HasA: squash has flesh,1 +rind,squash,HasA: squash has a rind,1 +skin,squash,HasA: squash has skin,1 +vegetable_category,squash,PartOf: squash is part of the vegetable category,1 +plant,squash,PartOf: squash is part of a plant,1 +growing,squash,CapableOf: squash can grow,1 +rotting,squash,CapableOf: squash can rot,1 +plant_material,squash,MadeOf: squash is made of plant material,1 +soil,squash,HasPrerequisite: you need soil before you can grow squash,1 +fullness,squash,Causes: eating squash causes fullness,1 +satisfaction,squash,Causes: eating squash causes satisfaction,1 +yellow,squash,HasProperty: squash can be yellow,1 +green,squash,HasProperty: squash can be green,1 +firm,squash,HasProperty: squash is firm,1 +fibrous,squash,HasProperty: squash is fibrous,1 +farm,stable,AtLocation: a stable is found on a farm,1 +sheltering_horses,stable,UsedFor: a stable is used for sheltering horses,1 +storing_equipment,stable,UsedFor: a stable is used for storing equipment,1 +doors,stable,HasA: a stable has doors,1 +feed_bin,stable,HasA: a stable has a feed bin,1 +water_trough,stable,HasA: a stable has a water trough,1 +ranch,stable,PartOf: a stable is part of a ranch,1 +equestrian_facility,stable,PartOf: a stable is part of an equestrian facility,1 +protecting_horses,stable,CapableOf: a stable can protect horses,1 +keeping_horses_warm,stable,CapableOf: a stable can keep horses warm,1 +metal,stable,MadeOf: a stable is made of metal,1 +concrete,stable,MadeOf: a stable is made of concrete,1 +land,stable,HasPrerequisite: you need land before you can have a stable,1 +horses,stable,HasPrerequisite: you need horses before you can use a stable,1 +safety,stable,Causes: a stable causes safety for animals,1 +protection,stable,Causes: a stable causes protection from the elements,1 +sturdy,stable,HasProperty: a stable is sturdy,1 +enclosed,stable,HasProperty: a stable is enclosed,1 +farm,starling,AtLocation: you find a starling near a farm,1 +eating,starling,UsedFor: a starling is used for eating insects,1 +beak,starling,HasA: a starling has a beak,1 +wings,starling,HasA: a starling has wings,1 +flock,starling,PartOf: a starling is part of a flock,1 +sing,starling,CapableOf: a starling can sing,1 +peck,starling,CapableOf: a starling can peck,1 +black,starling,HasProperty: a starling is black,1 +restaurant,steak,AtLocation: you find a steak in a restaurant,1 +kitchen,steak,AtLocation: you find a steak in the kitchen,1 +dinner,steak,UsedFor: a steak is used for dinner,1 +meal,steak,UsedFor: a steak is used for a meal,1 +fat,steak,HasA: a steak has fat,1 +muscle,steak,HasA: a steak has muscle,1 +cow,steak,PartOf: a steak is part of a cow,1 +meal,steak,PartOf: a steak is part of a meal,1 +satisfying,steak,CapableOf: a steak can satisfy,1 +filling,steak,CapableOf: a steak can fill,1 +meat,steak,MadeOf: a steak is made of meat,1 +cow,steak,HasPrerequisite: you need a cow before you can have steak,1 +butcher,steak,HasPrerequisite: you need a butcher before you can have steak,1 +satisfaction,steak,Causes: steak causes satisfaction,1 +fullness,steak,Causes: steak causes fullness,1 +red,steak,HasProperty: a steak is red,1 +juicy,steak,HasProperty: a steak is juicy,1 +bloody,steak,HasProperty: a steak can be bloody,1 +cooked,steak,HasProperty: a steak can be cooked,1 +train,steel,AtLocation: you find steel in a train,1 +bicycle,steel,AtLocation: you find steel in a bicycle,1 +building_vehicles,steel,UsedFor: steel is used for building vehicles,1 +construction,steel,UsedFor: steel is used for construction,1 +making_cookware,steel,UsedFor: steel is used for making cookware,1 +making_crafts,steel,UsedFor: steel is used for making crafts,1 +making_jewelry,steel,UsedFor: steel is used for making jewelry,1 +girders,steel,PartOf: steel is part of girders,1 +railings,steel,PartOf: steel is part of railings,1 +weapons,steel,PartOf: steel is part of weapons,1 +tools,steel,PartOf: steel is part of tools,1 +conduct_electricity,steel,CapableOf: steel can conduct electricity,1 +conduct_heat,steel,CapableOf: steel can conduct heat,1 +hold_shape,steel,CapableOf: steel can hold shape,1 +reflect_light,steel,CapableOf: steel can reflect light,1 +support_weight,steel,CapableOf: steel can support weight,1 +iron_ore,steel,HasPrerequisite: you need iron ore before you can have steel,1 +carbon_source,steel,HasPrerequisite: you need a carbon source before you can have steel,1 +heat,steel,HasPrerequisite: you need heat before you can make steel,1 +strength,steel,Causes: steel causes strength,1 +durability,steel,Causes: steel causes durability,1 +shine,steel,Causes: steel causes shine,1 +resistant_to_heat,steel,HasProperty: steel is resistant to heat,1 +support,stem,UsedFor: a stem is used for support,1 +leaf,stem,HasA: a stem has a leaf,1 +green,stem,HasProperty: a stem is green,1 +woody,stem,HasProperty: a stem is woody,1 +clinic,stethoscope,AtLocation: you find a stethoscope in a clinic,1 +listen_to_heart,stethoscope,UsedFor: a stethoscope is used for listening to the heart,1 +check_breathing,stethoscope,UsedFor: a stethoscope is used for checking breathing,1 +tubing,stethoscope,HasA: a stethoscope has tubing,1 +earpieces,stethoscope,HasA: a stethoscope has earpieces,1 +medical_kit,stethoscope,PartOf: a stethoscope is part of a medical kit,1 +metal,stethoscope,MadeOf: a stethoscope is made of metal,1 +rubber,stethoscope,MadeOf: a stethoscope is made of rubber,1 +medical_training,stethoscope,HasPrerequisite: you need medical training to use a stethoscope,1 +diagnosis,stethoscope,Causes: a stethoscope causes diagnosis,1 +lightweight,stethoscope,HasProperty: a stethoscope is lightweight,1 +flexible,stethoscope,HasProperty: a stethoscope is flexible,1 +wetland,stork,AtLocation: you find a stork in a wetland,1 +symbolizing,stork,UsedFor: a stork is used for symbolizing good fortune,1 +beak,stork,HasA: a stork has a beak,1 +ecosystem,stork,PartOf: a stork is part of an ecosystem,1 +wet_environment,stork,HasPrerequisite: you need a wet environment to have a stork,1 +wonder,stork,Causes: a stork causes wonder,1 +tall,stork,HasProperty: a stork is tall,1 +grocery_store,straw,AtLocation: you can buy a straw at a grocery store,1 +blowing_bubbles,straw,UsedFor: a straw is used for blowing bubbles,1 +sipping,straw,UsedFor: a straw is used for sipping,1 +hole,straw,HasA: a straw has a hole,1 +cup,straw,PartOf: a straw is part of a cup,1 +beverage,straw,HasPrerequisite: you need a beverage before you can use a straw,1 +sipping,straw,Causes: a straw causes sipping,1 +cylindrical,straw,HasProperty: a straw is cylindrical,1 +lightweight,straw,HasProperty: a straw is lightweight,1 +eating,strawberry,UsedFor: a strawberry is used for eating,1 +decorating,strawberry,UsedFor: a strawberry is used for decorating desserts,1 +making_jam,strawberry,UsedFor: a strawberry is used for making jam,1 +flavoring,strawberry,UsedFor: a strawberry is used for flavoring drinks,1 +seed,strawberry,HasA: a strawberry has a seed,1 +juice,strawberry,HasA: a strawberry has juice,1 +sweetness,strawberry,HasA: a strawberry has sweetness,1 +aroma,strawberry,HasA: a strawberry has aroma,1 +fruit_bowl,strawberry,PartOf: a strawberry is part of a fruit bowl,1 +pie,strawberry,PartOf: a strawberry is part of a pie,1 +dessert,strawberry,PartOf: a strawberry is part of a dessert,1 +smoothie,strawberry,PartOf: a strawberry is part of a smoothie,1 +staining,strawberry,CapableOf: a strawberry can stain,1 +ripening,strawberry,CapableOf: a strawberry can ripen,1 +spoiling,strawberry,CapableOf: a strawberry can spoil,1 +fermenting,strawberry,CapableOf: a strawberry can ferment,1 +growing,strawberry,CapableOf: a strawberry can grow,1 +plant,strawberry,MadeOf: a strawberry is made of plant,1 +sugar,strawberry,MadeOf: a strawberry is made of sugar,1 +fiber,strawberry,MadeOf: a strawberry is made of fiber,1 +acid,strawberry,MadeOf: a strawberry is made of acid,1 +sunshine,strawberry,HasPrerequisite: you need sunshine before you can grow a strawberry,1 +soil,strawberry,HasPrerequisite: you need soil before you can grow a strawberry,1 +plant,strawberry,HasPrerequisite: you need a plant before you can have a strawberry,1 +pollination,strawberry,HasPrerequisite: you need pollination before you can have a strawberry,1 +satisfaction,strawberry,Causes: a strawberry causes satisfaction,1 +delight,strawberry,Causes: a strawberry causes delight,1 +staining,strawberry,Causes: a strawberry causes staining,1 +sweetness,strawberry,Causes: a strawberry causes sweetness,1 +health,strawberry,Causes: a strawberry causes health,1 +packaging,styrofoam,AtLocation: styrofoam is found in packaging,1 +cushion_items,styrofoam,UsedFor: styrofoam is used to cushion items,1 +float_objects,styrofoam,UsedFor: styrofoam is used to float objects,1 +insulate,styrofoam,UsedFor: styrofoam is used to insulate,1 +air_pockets,styrofoam,HasA: styrofoam has air pockets,1 +cooler,styrofoam,PartOf: styrofoam is part of a cooler,1 +surfboard,styrofoam,PartOf: styrofoam is part of a surfboard,1 +float_on_water,styrofoam,CapableOf: styrofoam can float on water,1 +break_apart,styrofoam,CapableOf: styrofoam can break apart,1 +foam,styrofoam,MadeOf: styrofoam is made of foam,1 +chemicals,styrofoam,HasPrerequisite: chemicals are needed to make styrofoam,1 +pollution,styrofoam,Causes: styrofoam causes pollution,1 +lightweight,styrofoam,HasProperty: styrofoam is lightweight,1 +insulating,styrofoam,HasProperty: styrofoam is insulating,1 +buoyant,styrofoam,HasProperty: styrofoam is buoyant,1 +lake,swan,AtLocation: you find a swan on a lake,1 +symbolizing_love,swan,UsedFor: a swan is used for symbolizing love,1 +neck,swan,HasA: a swan has a long neck,1 +waterfowl,swan,PartOf: a swan is part of waterfowl,1 +swimming,swan,CapableOf: a swan can swim,1 +awe,swan,Causes: a swan causes awe,1 +graceful,swan,HasProperty: a swan is graceful,1 +hunting,swift,UsedFor: a swift is used for hunting insects,1 +wings,swift,HasA: a swift has wings,1 +bird_population,swift,PartOf: a swift is part of the bird population,1 +flying,swift,CapableOf: a swift can fly,1 +feather,swift,MadeOf: a swift is made of feathers,1 +air,swift,HasPrerequisite: a swift needs air to fly,1 +swoop,swift,Causes: a swift causes a swoop,1 +music_room,synthesizer,AtLocation: synthesizers are often found in music rooms,1 +electronic_music,synthesizer,UsedFor: synthesizers are used for making electronic music,1 +sound_effects,synthesizer,UsedFor: synthesizers are used to create sound effects,1 +keyboard,synthesizer,HasA: a synthesizer has a keyboard,1 +knobs,synthesizer,HasA: a synthesizer has knobs for adjusting sounds,1 +sound_system,synthesizer,PartOf: a synthesizer is part of a sound system,1 +generate_tones,synthesizer,CapableOf: a synthesizer can generate various musical tones,1 +produce_sound,synthesizer,CapableOf: a synthesizer can produce sound,1 +metal,synthesizer,MadeOf: synthesizers are often made of metal,1 +electricity,synthesizer,HasPrerequisite: a synthesizer requires electricity to operate,1 +noise,synthesizer,Causes: a synthesizer can cause noise,1 +vibrations,synthesizer,Causes: a synthesizer can cause vibrations,1 +electronic,synthesizer,HasProperty: a synthesizer is electronic,1 +rectangular,synthesizer,HasProperty: synthesizers are typically rectangular,1 +smoothing,talc,UsedFor: talc is used for smoothing,1 +mineral,talc,HasA: talc has a mineral,1 +cosmetic,talc,PartOf: talc is part of cosmetic,1 +sliding,talc,CapableOf: talc can slide,1 +silica,talc,MadeOf: talc is made of silica,1 +mining,talc,HasPrerequisite: you need mining before you can get talc,1 +coolness,talc,Causes: talc causes coolness,1 +smooth,talc,HasProperty: talc is smooth,1 +rainforest,tanager,AtLocation: tanagers are found in rainforests,1 +birdwatching,tanager,UsedFor: people watch tanagers for birdwatching,1 +beak,tanager,HasA: a tanager has a beak,1 +ecosystem,tanager,PartOf: a tanager is part of an ecosystem,1 +forest,tanager,HasPrerequisite: a tanager requires a forest to live,1 +enjoyment,tanager,Causes: watching a tanager causes enjoyment,1 +colorful,tanager,HasProperty: a tanager is colorful,1 +desert,tank,AtLocation: you find a tank in a desert,1 +battlefield,tank,AtLocation: you find a tank on a battlefield,1 +storing_water,tank,UsedFor: a tank is used for storing water,1 +storing_gasoline,tank,UsedFor: a tank is used for storing gasoline,1 +military_operations,tank,UsedFor: a tank is used for military operations,1 +engine,tank,HasA: a tank has an engine,1 +tracks,tank,HasA: a tank has tracks,1 +army,tank,PartOf: a tank is part of an army,1 +military_vehicle_fleet,tank,PartOf: a tank is part of a military vehicle fleet,1 +moving_across_ground,tank,CapableOf: a tank can move across ground,1 +firing_shells,tank,CapableOf: a tank can fire shells,1 +protecting_soldiers,tank,CapableOf: a tank can protect soldiers,1 +metal,tank,MadeOf: a tank is made of metal,1 +armor,tank,MadeOf: a tank is made of armor,1 +fuel,tank,HasPrerequisite: you need fuel before you can use a tank,1 +crew,tank,HasPrerequisite: you need crew before you can use a tank,1 +maintenance,tank,HasPrerequisite: you need maintenance before you can use a tank,1 +destruction,tank,Causes: a tank causes destruction,1 +fear,tank,Causes: a tank causes fear,1 +victory,tank,Causes: a tank causes victory,1 +heavy,tank,HasProperty: a tank is heavy,1 +armored,tank,HasProperty: a tank is armored,1 +powerful,tank,HasProperty: a tank is powerful,1 +road,tar,AtLocation: you find tar on a road,1 +patch_roads,tar,UsedFor: tar is used for patching roads,1 +seal_driveways,tar,UsedFor: tar is used for sealing driveways,1 +waterproof,tar,UsedFor: tar is used to waterproof surfaces,1 +smell,tar,HasA: tar has a distinct smell,1 +asphalt,tar,PartOf: tar is part of asphalt,1 +stick_to,tar,CapableOf: tar can stick to surfaces,1 +oil,tar,MadeOf: tar is made of oil,1 +dig,tar,HasPrerequisite: you need to dig before you can get tar,1 +stain,tar,Causes: tar causes stains on clothes,1 +tea_bag,tea,AtLocation: you find tea in a tea bag,1 +drinking,tea,UsedFor: tea is used for drinking,1 +relaxation,tea,UsedFor: tea is used for relaxation,1 +medicinal_purposes,tea,UsedFor: tea is used for medicinal purposes,1 +antioxidants,tea,HasA: tea has antioxidants,1 +flavor,tea,HasA: tea has flavor,1 +leaves,tea,HasA: tea has leaves,1 +beverage_set,tea,PartOf: tea is part of a beverage set,1 +meal,tea,PartOf: tea is part of a meal,1 +soothing,tea,CapableOf: tea can soothe,1 +warming,tea,CapableOf: tea can warm,1 +steeping,tea,CapableOf: tea can steep,1 +leaves,tea,MadeOf: tea is made of leaves,1 +herbs,tea,MadeOf: tea is made of herbs,1 +hot_water,tea,HasPrerequisite: tea has a prerequisite of hot water,1 +teabag,tea,HasPrerequisite: tea has a prerequisite of a teabag,1 +alertness,tea,Causes: tea causes alertness,1 +calmness,tea,Causes: tea causes calmness,1 +hydration,tea,Causes: tea causes hydration,1 +hot,tea,HasProperty: tea has the property of being hot,1 +liquid,tea,HasProperty: tea has the property of being liquid,1 +bitter,tea,HasProperty: tea has the property of being bitter,1 +drinking,teacup,UsedFor: a teacup is used for drinking,1 +handle,teacup,HasA: a teacup has a handle,1 +teaset,teacup,PartOf: a teacup is part of a teaset,1 +holding,teacup,CapableOf: a teacup can hold liquid,1 +ceramic,teacup,MadeOf: a teacup is made of ceramic,1 +satisfaction,teacup,Causes: a teacup causes satisfaction,1 +small,teacup,HasProperty: a teacup is small,1 +beach,tern,AtLocation: you find a tern near the beach,1 +lake,tern,AtLocation: you can see terns near a lake,1 +fishing,tern,UsedFor: a tern is used for fishing,1 +beak,tern,HasA: a tern has a beak,1 +wings,tern,HasA: a tern has wings,1 +flock,tern,PartOf: a tern is part of a flock,1 +dive,tern,CapableOf: a tern can dive,1 +swim,tern,CapableOf: a tern can swim,1 +flesh,tern,MadeOf: a tern is made of flesh,1 +splashing,tern,Causes: a tern causes splashing,1 +white,tern,HasProperty: a tern is white,1 +neighborhood,theater,AtLocation: you find a theater in a neighborhood,1 +strip_mall,theater,AtLocation: you find a theater in a strip mall,1 +listening_to_music,theater,UsedFor: a theater is used for listening to music,1 +attending_concert,theater,UsedFor: a theater is used for attending concerts,1 +performing_dance,theater,UsedFor: a theater is used for performing dance,1 +hearing_music,theater,UsedFor: a theater is used for hearing music,1 +seats,theater,HasA: a theater has seats,1 +screen,theater,HasA: a theater has a screen,1 +projector,theater,HasA: a theater has a projector,1 +auditorium,theater,HasA: a theater has an auditorium,1 +entertainment_complex,theater,PartOf: a theater is part of an entertainment complex,1 +cultural_center,theater,PartOf: a theater is part of a cultural center,1 +host_event,theater,CapableOf: a theater can host an event,1 +play_sound,theater,CapableOf: a theater can play sound,1 +seat_people,theater,CapableOf: a theater can seat people,1 +sell_tickets,theater,CapableOf: a theater can sell tickets,1 +concrete,theater,MadeOf: a theater is made of concrete,1 +building_construction,theater,HasPrerequisite: you need building construction before you can have a theater,1 +theater_license,theater,HasPrerequisite: you need a theater license before you can operate a theater,1 +enjoyment,theater,Causes: a theater causes enjoyment,1 +learning,theater,Causes: a theater causes learning,1 +relaxation,theater,Causes: a theater causes relaxation,1 +entertainment,theater,Causes: a theater causes entertainment,1 +large,theater,HasProperty: a theater is large,1 +dark,theater,HasProperty: a theater is dark,1 +enclosed,theater,HasProperty: a theater is enclosed,1 +quiet,theater,HasProperty: a theater is quiet,1 +sewing_kit,thimble,AtLocation: you find a thimble in a sewing kit,1 +pushing,thimble,UsedFor: a thimble is used for pushing needle through fabric,1 +protecting,thimble,UsedFor: a thimble is used for protecting the finger,1 +hole,thimble,HasA: a thimble has a hole,1 +sewing_kit,thimble,PartOf: a thimble is part of a sewing kit,1 +protecting,thimble,CapableOf: a thimble can protect fingers,1 +metal,thimble,MadeOf: a thimble is made of metal,1 +needle,thimble,HasPrerequisite: a thimble requires a needle to be useful,1 +protection,thimble,Causes: a thimble causes protection for the finger,1 +small,thimble,HasProperty: a thimble is small,1 +metal,thimble,HasProperty: a thimble is metal,1 +bush,thorn,AtLocation: you find a thorn on a bush,1 +protection,thorn,UsedFor: a thorn is used for protection,1 +sharp_point,thorn,HasA: a thorn has a sharp point,1 +protect,thorn,CapableOf: a thorn can protect,1 +plant_material,thorn,MadeOf: a thorn is made of plant material,1 +plant_growth,thorn,HasPrerequisite: a thorn requires plant growth,1 +pain,thorn,Causes: a thorn causes pain,1 +sharp,thorn,HasProperty: a thorn is sharp,1 +field,thrasher,AtLocation: a thrasher is found in a field,1 +forest,thrasher,AtLocation: a thrasher is found in a forest,1 +singing,thrasher,UsedFor: a thrasher is used for singing,1 +beak,thrasher,HasA: a thrasher has a beak,1 +feathers,thrasher,HasA: a thrasher has feathers,1 +ecosystem,thrasher,PartOf: a thrasher is part of an ecosystem,1 +bird_family,thrasher,PartOf: a thrasher is part of a bird family,1 +singing,thrasher,CapableOf: a thrasher can sing,1 +flying,thrasher,CapableOf: a thrasher can fly,1 +building_nest,thrasher,CapableOf: a thrasher can build a nest,1 +bird_food,thrasher,HasPrerequisite: you need bird food before you can have a thrasher,1 +habitat,thrasher,HasPrerequisite: you need a habitat before you can have a thrasher,1 +sound,thrasher,Causes: a thrasher causes sound,1 +pleasure,thrasher,Causes: a thrasher causes pleasure,1 +brown,thrasher,HasProperty: a thrasher is brown,1 +small,thrasher,HasProperty: a thrasher is small,1 +fast,thrasher,HasProperty: a thrasher is fast,1 +forest,thrush,AtLocation: you find a thrush in a forest,1 +park,thrush,AtLocation: you find a thrush in a park,1 +eating_berries,thrush,UsedFor: a thrush is used for eating berries,1 +singing,thrush,UsedFor: a thrush is used for singing,1 +beak,thrush,HasA: a thrush has a beak,1 +wings,thrush,HasA: a thrush has wings,1 +bird_family,thrush,PartOf: a thrush is part of a bird family,1 +wildlife,thrush,PartOf: a thrush is part of wildlife,1 +build_nest,thrush,CapableOf: a thrush can build a nest,1 +eat_insects,thrush,CapableOf: a thrush can eat insects,1 +sing,thrush,CapableOf: a thrush can sing,1 +air,thrush,HasPrerequisite: a thrush has prerequisite of air,1 +food,thrush,HasPrerequisite: a thrush has prerequisite of food,1 +happiness,thrush,Causes: a thrush causes happiness,1 +interest,thrush,Causes: a thrush causes interest,1 +small,thrush,HasProperty: a thrush is small,1 +feathered,thrush,HasProperty: a thrush is feathered,1 +cooking,thyme,UsedFor: thyme is used for cooking,1 +seasoning,thyme,UsedFor: thyme is used for seasoning,1 +flavoring,thyme,UsedFor: thyme is used for flavoring,1 +medicine,thyme,UsedFor: thyme is used for medicine,1 +leaf,thyme,HasA: thyme has a leaf,1 +herb_garden,thyme,PartOf: thyme is part of an herb garden,1 +spice_rack,thyme,PartOf: thyme is part of a spice rack,1 +growing,thyme,CapableOf: thyme can grow,1 +enhancing_flavor,thyme,CapableOf: thyme can enhance flavor,1 +plant,thyme,MadeOf: thyme is made of plant,1 +soil,thyme,HasPrerequisite: thyme needs soil to grow,1 +aroma,thyme,Causes: thyme causes aroma,1 +health_benefits,thyme,Causes: thyme causes health benefits,1 +green,thyme,HasProperty: thyme is green,1 +fragrant,thyme,HasProperty: thyme is fragrant,1 +edible,thyme,HasProperty: thyme is edible,1 +small,thyme,HasProperty: thyme is small,1 +neck,tie,AtLocation: you find a tie around a neck,1 +formalwear,tie,UsedFor: a tie is used for formalwear,1 +dressing_up,tie,UsedFor: a tie is used for dressing up,1 +business,tie,UsedFor: a tie is used for business,1 +completing_an_outfit,tie,UsedFor: a tie is used for completing an outfit,1 +knot,tie,HasA: a tie has a knot,1 +collar,tie,HasA: a tie has a collar,1 +suit,tie,PartOf: a tie is part of a suit,1 +tying,tie,CapableOf: a tie can be tied,1 +silk,tie,MadeOf: a tie is made of silk,1 +collar,tie,HasPrerequisite: you need a collar before you can wear a tie,1 +formality,tie,Causes: a tie causes formality,1 +sophistication,tie,Causes: a tie causes sophistication,1 +neat_appearance,tie,Causes: a tie causes neat appearance,1 +narrow,tie,HasProperty: a tie is narrow,1 +long,tie,HasProperty: a tie is long,1 +fabric,tie,HasProperty: a tie is fabric,1 +savanna,tiger,AtLocation: you find a tiger on a savanna,1 +forest,tiger,AtLocation: you find a tiger in a forest,1 +cage,tiger,AtLocation: you find a tiger in a cage,1 +display,tiger,UsedFor: a tiger is used for display,1 +inspiration,tiger,UsedFor: a tiger is used for inspiration,1 +stripes,tiger,HasA: a tiger has stripes,1 +claws,tiger,HasA: a tiger has claws,1 +tail,tiger,HasA: a tiger has a tail,1 +teeth,tiger,HasA: a tiger has teeth,1 +ecosystem,tiger,PartOf: a tiger is part of an ecosystem,1 +big_cat_family,tiger,PartOf: a tiger is part of a big cat family,1 +food_chain,tiger,PartOf: a tiger is part of a food chain,1 +stalk,tiger,CapableOf: a tiger can stalk,1 +pounce,tiger,CapableOf: a tiger can pounce,1 +roar,tiger,CapableOf: a tiger can roar,1 +swim,tiger,CapableOf: a tiger can swim,1 +climb_tree,tiger,CapableOf: a tiger can climb a tree,1 +mark_territory,tiger,CapableOf: a tiger can mark territory,1 +fur,tiger,MadeOf: a tiger is made of fur,1 +muscle,tiger,MadeOf: a tiger is made of muscle,1 +bone,tiger,MadeOf: a tiger is made of bone,1 +forest,tiger,HasPrerequisite: you need a forest before you can have a tiger,1 +wild,tiger,HasPrerequisite: you need a wild environment before you can have a tiger,1 +safety,tiger,HasPrerequisite: you need safety before you can use a tiger,1 +fear,tiger,Causes: a tiger causes fear,1 +awe,tiger,Causes: a tiger causes awe,1 +fascination,tiger,Causes: a tiger causes fascination,1 +excitement,tiger,Causes: a tiger causes excitement,1 +powerful,tiger,HasProperty: a tiger is powerful,1 +striped,tiger,HasProperty: a tiger is striped,1 +large,tiger,HasProperty: a tiger is large,1 +wild,tiger,HasProperty: a tiger is wild,1 +muscular,tiger,HasProperty: a tiger is muscular,1 +recycling_bin,tin,AtLocation: you find tin in a recycling bin,1 +craft_room,tin,AtLocation: you find tin in a craft room,1 +store_jewelry,tin,UsedFor: tin is used to store jewelry,1 +make_cans,tin,UsedFor: tin is used to make cans,1 +store_clothes,tin,UsedFor: tin is used to store clothes,1 +lid,tin,HasA: tin has a lid,1 +bottom,tin,HasA: tin has a bottom,1 +can,tin,PartOf: tin is part of a can,1 +container,tin,PartOf: tin is part of a container,1 +can_be_melted,tin,CapableOf: tin can be melted,1 +can_be_shaped,tin,CapableOf: tin can be shaped,1 +metal,tin,MadeOf: tin is made of metal,1 +need_metal,tin,HasPrerequisite: you need metal to make tin,1 +need_aluminum,tin,HasPrerequisite: you need aluminum to make tin,1 +can_be_recycled,tin,Causes: tin causes it to be recycled,1 +can_be_reused,tin,Causes: tin causes it to be reused,1 +shiny,tin,HasProperty: tin is shiny,1 +metallic,tin,HasProperty: tin is metallic,1 +hard,tin,HasProperty: tin is hard,1 +jungle,tinamou,AtLocation: a tinamou is found in the jungle,1 +forest,tinamou,AtLocation: a tinamou is found in a forest,1 +eating,tinamou,UsedFor: tinamous are used for eating,1 +beak,tinamou,HasA: a tinamou has a beak,1 +wings,tinamou,HasA: a tinamou has wings,1 +bird,tinamou,PartOf: a tinamou is part of the bird family,1 +run,tinamou,CapableOf: a tinamou can run,1 +eat,tinamou,CapableOf: a tinamou can eat,1 +flesh,tinamou,MadeOf: a tinamou is made of flesh,1 +forest,tinamou,HasPrerequisite: you need a forest to find a tinamou,1 +noise,tinamou,Causes: a tinamou causes noise when it calls,1 +small,tinamou,HasProperty: a tinamou is small,1 +brown,tinamou,HasProperty: a tinamou is brown,1 +earth_crust,titanium,AtLocation: you find titanium in the earth's crust,1 +construction,titanium,UsedFor: titanium is used for construction,1 +jewelry,titanium,UsedFor: titanium is used for jewelry,1 +medical_implants,titanium,UsedFor: titanium is used for medical implants,1 +aerospace,titanium,UsedFor: titanium is used for aerospace components,1 +shine,titanium,HasA: titanium has a shine,1 +luster,titanium,HasA: titanium has a luster,1 +alloy,titanium,PartOf: titanium is part of an alloy,1 +spaceship,titanium,PartOf: titanium is part of a spaceship,1 +conducting,titanium,CapableOf: titanium can conduct electricity,1 +resisting,titanium,CapableOf: titanium can resist corrosion,1 +ore,titanium,MadeOf: titanium is made of ore,1 +mining,titanium,HasPrerequisite: mining is a prerequisite for titanium,1 +strength,titanium,Causes: titanium causes strength in materials,1 +durability,titanium,Causes: titanium causes durability in products,1 +metallic,titanium,HasProperty: titanium has a metallic property,1 +corrosion_resistant,titanium,HasProperty: titanium has corrosion resistant properties,1 +biocompatible,titanium,HasProperty: titanium has biocompatible properties,1 +sandwich,tomato,AtLocation: you find tomatoes in a sandwich,1 +grocery_store,tomato,AtLocation: you find tomatoes in a grocery store,1 +salsa,tomato,UsedFor: tomatoes are used for salsa,1 +sauce,tomato,UsedFor: tomatoes are used for sauce,1 +cooking,tomato,UsedFor: tomatoes are used for cooking,1 +eating,tomato,UsedFor: tomatoes are used for eating,1 +salads,tomato,UsedFor: tomatoes are used for salads,1 +seeds,tomato,HasA: a tomato has seeds,1 +skin,tomato,HasA: a tomato has skin,1 +flesh,tomato,HasA: a tomato has flesh,1 +juice,tomato,HasA: a tomato has juice,1 +sandwich,tomato,PartOf: a tomato is part of a sandwich,1 +sauce,tomato,PartOf: a tomato is part of sauce,1 +salsa,tomato,PartOf: a tomato is part of salsa,1 +dish,tomato,PartOf: a tomato is part of a dish,1 +growing,tomato,CapableOf: a tomato can grow,1 +ripening,tomato,CapableOf: a tomato can ripen,1 +spoiling,tomato,CapableOf: a tomato can spoil,1 +providing,tomato,CapableOf: a tomato can provide nutrients,1 +tasting,tomato,CapableOf: a tomato can taste good,1 +nutrients,tomato,MadeOf: a tomato is made of nutrients,1 +natural_substances,tomato,MadeOf: a tomato is made of natural substances,1 +carbohydrates,tomato,MadeOf: a tomato is made of carbohydrates,1 +acids,tomato,MadeOf: a tomato is made of acids,1 +plant,tomato,HasPrerequisite: you need a plant to grow a tomato,1 +sunlight,tomato,HasPrerequisite: you need sunlight for a tomato,1 +soil,tomato,HasPrerequisite: you need soil for a tomato,1 +care,tomato,HasPrerequisite: you need care for a tomato,1 +flavor,tomato,Causes: tomatoes cause flavor,1 +health,tomato,Causes: tomatoes cause health benefits,1 +satisfaction,tomato,Causes: tomatoes cause satisfaction,1 +dishes,tomato,Causes: tomatoes cause dishes,1 +meals,tomato,Causes: tomatoes cause meals,1 +juicy,tomato,HasProperty: tomatoes are juicy,1 +round,tomato,HasProperty: tomatoes are round,1 +edible,tomato,HasProperty: tomatoes are edible,1 +smooth,tomato,HasProperty: tomatoes are smooth,1 +tangy,tomato,HasProperty: tomatoes are tangy,1 +racing,tortoise,UsedFor: a tortoise is used for racing,1 +legs,tortoise,HasA: a tortoise has legs,1 +reptile,tortoise,PartOf: a tortoise is part of reptile,1 +move_slowly,tortoise,CapableOf: a tortoise can move slowly,1 +habitat,tortoise,HasPrerequisite: a tortoise needs a habitat,1 +patience,tortoise,Causes: a tortoise causes patience,1 +slow,tortoise,HasProperty: a tortoise is slow,1 +rainforest,toucan,AtLocation: you find a toucan in a rainforest,1 +eating_fruit,toucan,UsedFor: a toucan is used for eating fruit,1 +beak,toucan,HasA: a toucan has a beak,1 +ecosystem,toucan,PartOf: a toucan is part of an ecosystem,1 +tropical_climate,toucan,HasPrerequisite: you need a tropical climate to have a toucan,1 +interest,toucan,Causes: a toucan causes interest,1 +colorful,toucan,HasProperty: a toucan is colorful,1 +countryside,tractor,AtLocation: you find a tractor in the countryside,1 +field,tractor,AtLocation: you find a tractor in a field,1 +plowing_field,tractor,UsedFor: a tractor is used for plowing a field,1 +harvesting_crops,tractor,UsedFor: a tractor is used for harvesting crops,1 +mowing_grass,tractor,UsedFor: a tractor is used for mowing grass,1 +engine,tractor,HasA: a tractor has an engine,1 +steering_wheel,tractor,HasA: a tractor has a steering wheel,1 +exhaust_pipe,tractor,HasA: a tractor has an exhaust pipe,1 +farming_equipment,tractor,PartOf: a tractor is part of farming equipment,1 +farm_tools,tractor,PartOf: a tractor is part of farm tools,1 +carry_tools,tractor,CapableOf: a tractor can carry tools,1 +tow_lawnmower,tractor,CapableOf: a tractor can tow a lawnmower,1 +move_soil,tractor,CapableOf: a tractor can move soil,1 +plow_snow,tractor,CapableOf: a tractor can plow snow,1 +metal,tractor,MadeOf: a tractor is made of metal,1 +rubber,tractor,MadeOf: a tractor is made of rubber,1 +key,tractor,HasPrerequisite: you need a key before you can use a tractor,1 +fuel,tractor,HasPrerequisite: you need fuel before you can use a tractor,1 +dust,tractor,Causes: a tractor causes dust,1 +noise,tractor,Causes: a tractor causes noise,1 +vibration,tractor,Causes: a tractor causes vibration,1 +soil_compaction,tractor,Causes: a tractor causes soil compaction,1 +heavy,tractor,HasProperty: a tractor is heavy,1 +loud,tractor,HasProperty: a tractor is loud,1 +powerful,tractor,HasProperty: a tractor is powerful,1 +sturdy,tractor,HasProperty: a tractor is sturdy,1 +park,tree,AtLocation: you find a tree in a park,1 +mountain,tree,AtLocation: you find a tree on a mountain,1 +street,tree,AtLocation: you find a tree on a street,1 +firewood,tree,UsedFor: a tree is used for firewood,1 +building_material,tree,UsedFor: a tree is used for building material,1 +branches,tree,HasA: a tree has branches,1 +apples,tree,HasA: an apple tree has apples,1 +blossoms,tree,HasA: a tree has blossoms,1 +landscape,tree,PartOf: a tree is part of landscape,1 +ecosystem,tree,PartOf: a tree is part of ecosystem,1 +grove,tree,PartOf: a tree is part of grove,1 +nature,tree,PartOf: a tree is part of nature,1 +provide_habitat,tree,CapableOf: a tree can provide habitat,1 +photosynthesize,tree,CapableOf: a tree can photosynthesize,1 +flower,tree,CapableOf: a tree can flower,1 +provide_food,tree,CapableOf: a tree can provide food,1 +cellulose,tree,MadeOf: a tree is made of cellulose,1 +carbon,tree,MadeOf: a tree is made of carbon,1 +lignin,tree,MadeOf: a tree is made of lignin,1 +fibers,tree,MadeOf: a tree is made of fibers,1 +sap,tree,MadeOf: a tree is made of sap,1 +sunlight,tree,HasPrerequisite: a tree needs sunlight,1 +soil,tree,HasPrerequisite: a tree needs soil,1 +air,tree,HasPrerequisite: a tree needs air,1 +nutrients,tree,HasPrerequisite: a tree needs nutrients,1 +oxygen,tree,Causes: a tree causes oxygen,1 +shade,tree,Causes: a tree causes shade,1 +fruit_fall,tree,Causes: a tree causes fruit fall,1 +tall,tree,HasProperty: a tree is tall,1 +green,tree,HasProperty: a tree is green,1 +woody,tree,HasProperty: a tree is woody,1 +natural,tree,HasProperty: a tree is natural,1 +rooted,tree,HasProperty: a tree is rooted,1 +feeding,trough,UsedFor: a trough is used for feeding,1 +opening,trough,HasA: a trough has an opening,1 +metal,trough,MadeOf: a trough is made of metal,1 +food,trough,HasPrerequisite: you need food before you can use a trough,1 +eating,trough,Causes: a trough causes eating,1 +long,trough,HasProperty: a trough is long,1 +river,trout,AtLocation: you find a trout in a river,1 +lake,trout,AtLocation: you find a trout in a lake,1 +stream,trout,AtLocation: you find a trout in a stream,1 +eating,trout,UsedFor: a trout is used for eating,1 +fishing,trout,UsedFor: a trout is used for fishing,1 +cooking,trout,UsedFor: a trout is used for cooking,1 +fins,trout,HasA: a trout has fins,1 +scales,trout,HasA: a trout has scales,1 +tail,trout,HasA: a trout has a tail,1 +dinner,trout,PartOf: a trout is part of dinner,1 +meal,trout,PartOf: a trout is part of meal,1 +swimming,trout,CapableOf: a trout can swim,1 +jumping,trout,CapableOf: a trout can jump,1 +breathing,trout,CapableOf: a trout can breathe,1 +flesh,trout,MadeOf: a trout is made of flesh,1 +meat,trout,MadeOf: a trout is made of meat,1 +fishing_rod,trout,HasPrerequisite: you need a fishing rod before you can catch a trout,1 +bait,trout,HasPrerequisite: you need bait before you can catch a trout,1 +satisfaction,trout,Causes: eating a trout causes satisfaction,1 +fullness,trout,Causes: eating a trout causes fullness,1 +meal,trout,Causes: a trout causes a meal,1 +edible,trout,HasProperty: a trout is edible,1 +scaly,trout,HasProperty: a trout is scaly,1 +cold-blooded,trout,HasProperty: a trout is cold-blooded,1 +toolbox,trowel,AtLocation: you find a trowel in a toolbox,1 +digging_soil,trowel,UsedFor: a trowel is used for digging soil,1 +applying_grout,trowel,UsedFor: a trowel is used for applying grout,1 +moving_dirt,trowel,UsedFor: a trowel is used for moving dirt,1 +spreading_soil,trowel,UsedFor: a trowel is used for spreading soil,1 +handle,trowel,HasA: a trowel has a handle,1 +gardening_kit,trowel,PartOf: a trowel is part of a gardening kit,1 +scoop_dirt,trowel,CapableOf: a trowel can scoop dirt,1 +level_surface,trowel,CapableOf: a trowel can level a surface,1 +plant_seeds,trowel,CapableOf: a trowel can plant seeds,1 +metal,trowel,MadeOf: a trowel is made of metal,1 +soil,trowel,HasPrerequisite: you need soil before you can use a trowel,1 +smooth_surface,trowel,Causes: a trowel causes a smooth surface,1 +hole,trowel,Causes: a trowel causes a hole,1 +small,trowel,HasProperty: a trowel is small,1 +sharp,trowel,HasProperty: a trowel has a sharp edge,1 +flat,trowel,HasProperty: a trowel has a flat surface,1 +driveway,truck,AtLocation: trucks are often found in driveways,1 +construction_site,truck,AtLocation: trucks are used at construction sites,1 +towing,truck,UsedFor: trucks are used for towing heavy objects,1 +transporting,truck,UsedFor: trucks are used for transporting goods,1 +engine,truck,HasA: trucks have an engine,1 +fleet,truck,PartOf: trucks are part of a fleet,1 +convoy,truck,PartOf: trucks can be part of a convoy,1 +tow_trailer,truck,CapableOf: trucks can tow trailers,1 +carry_furniture,truck,CapableOf: trucks can carry furniture,1 +load_cargo,truck,CapableOf: trucks can load cargo,1 +metal,truck,MadeOf: trucks are made of metal,1 +rubber,truck,MadeOf: trucks have rubber tires,1 +driver,truck,HasPrerequisite: you need a driver before you can use a truck,1 +gas,truck,HasPrerequisite: trucks require gas to operate,1 +traffic_jam,truck,Causes: trucks can cause traffic jams,1 +road_damage,truck,Causes: heavy trucks can cause road damage,1 +powerful,truck,HasProperty: trucks are powerful vehicles,1 +large,truck,HasProperty: trucks are large vehicles,1 +concert_hall,trumpet,AtLocation: you find a trumpet in a concert hall,1 +parade,trumpet,AtLocation: you find a trumpet in a parade,1 +signaling,trumpet,UsedFor: a trumpet is used for signaling,1 +celebrating,trumpet,UsedFor: a trumpet is used for celebrating,1 +announcing,trumpet,UsedFor: a trumpet is used for announcing,1 +mouthpiece,trumpet,HasA: a trumpet has a mouthpiece,1 +bell,trumpet,HasA: a trumpet has a bell,1 +marching_ensemble,trumpet,PartOf: a trumpet is part of a marching ensemble,1 +brass_section,trumpet,PartOf: a trumpet is part of the brass section,1 +projecting_sound,trumpet,CapableOf: a trumpet can project sound,1 +playing_melodies,trumpet,CapableOf: a trumpet can play melodies,1 +metal,trumpet,MadeOf: a trumpet is made of metal,1 +embouchure,trumpet,HasPrerequisite: you need embouchure before you can use a trumpet,1 +musical_talent,trumpet,HasPrerequisite: you need musical talent before you can use a trumpet,1 +attention,trumpet,Causes: a trumpet causes attention,1 +excitement,trumpet,Causes: a trumpet causes excitement,1 +alarm,trumpet,Causes: a trumpet causes alarm,1 +shiny,trumpet,HasProperty: a trumpet is shiny,1 +loud,trumpet,HasProperty: a trumpet is loud,1 +cylindrical,trumpet,HasProperty: a trumpet is cylindrical,1 +bathroom,tub,AtLocation: you find a tub in a bathroom,1 +soaking_feet,tub,UsedFor: you use a tub for soaking feet,1 +storing_water,tub,UsedFor: you use a tub for storing water,1 +drain,tub,HasA: a tub has a drain,1 +faucet,tub,HasA: a tub has a faucet,1 +bathroom_furniture,tub,PartOf: a tub is part of bathroom furniture,1 +plumbing_system,tub,PartOf: a tub is part of a plumbing system,1 +holding_water,tub,CapableOf: a tub can hold water,1 +draining_water,tub,CapableOf: a tub can drain water,1 +ceramic,tub,MadeOf: a tub can be made of ceramic,1 +metal,tub,MadeOf: a tub can be made of metal,1 +bathtub_plug,tub,HasPrerequisite: you need a bathtub plug before you can use a tub,1 +relaxation,tub,Causes: a tub causes relaxation,1 +cleanliness,tub,Causes: a tub causes cleanliness,1 +waterproof,tub,HasProperty: a tub is waterproof,1 +rectangular,tub,HasProperty: a tub is rectangular,1 +large,tub,HasProperty: a tub is large,1 +decoration,tulip,UsedFor: a tulip is used for decoration,1 +bouquet,tulip,UsedFor: a tulip is used for a bouquet,1 +petal,tulip,HasA: a tulip has a petal,1 +flowerbed,tulip,PartOf: a tulip is part of a flowerbed,1 +blooming,tulip,CapableOf: a tulip can bloom,1 +plant,tulip,MadeOf: a tulip is made of plant,1 +soil,tulip,HasPrerequisite: soil is needed before you can have a tulip,1 +sunlight,tulip,HasPrerequisite: sunlight is needed before you can have a tulip,1 +allergy,tulip,Causes: a tulip can cause allergy,1 +colorful,tulip,HasProperty: a tulip is colorful,1 +fragrant,tulip,HasProperty: a tulip is fragrant,1 +filament,tungsten,UsedFor: tungsten is used for filament in bulbs,1 +jewelry,tungsten,UsedFor: tungsten is used for jewelry,1 +welding,tungsten,UsedFor: tungsten is used for welding,1 +shine,tungsten,HasA: tungsten has a shine,1 +lightbulb,tungsten,PartOf: tungsten is part of a lightbulb,1 +conducting,tungsten,CapableOf: tungsten can conduct electricity,1 +ore,tungsten,MadeOf: tungsten is made of ore,1 +mining,tungsten,HasPrerequisite: you need mining before you can get tungsten,1 +brightness,tungsten,Causes: tungsten causes brightness when heated,1 +heavy,tungsten,HasProperty: tungsten is heavy,1 +durable,tungsten,HasProperty: tungsten is durable,1 +farm,turkey,AtLocation: a turkey is found on a farm,1 +grocery_store,turkey,AtLocation: a turkey is found in a grocery store,1 +freezer,turkey,AtLocation: a turkey is found in a freezer,1 +thanksgiving,turkey,UsedFor: a turkey is used for thanksgiving,1 +sandwich,turkey,UsedFor: a turkey is used for sandwich,1 +dinner,turkey,UsedFor: a turkey is used for dinner,1 +feast,turkey,UsedFor: a turkey is used for feast,1 +bone,turkey,HasA: a turkey has a bone,1 +leg,turkey,HasA: a turkey has a leg,1 +wing,turkey,HasA: a turkey has a wing,1 +breast,turkey,HasA: a turkey has a breast,1 +thanksgiving_dinner,turkey,PartOf: a turkey is part of thanksgiving dinner,1 +meal,turkey,PartOf: a turkey is part of meal,1 +sandwich,turkey,PartOf: a turkey is part of sandwich,1 +sandwich_filling,turkey,PartOf: a turkey is part of sandwich_filling,1 +roast,turkey,CapableOf: a turkey can roast,1 +cook,turkey,CapableOf: a turkey can cook,1 +fry,turkey,CapableOf: a turkey can fry,1 +slice,turkey,CapableOf: a turkey can slice,1 +meat,turkey,MadeOf: a turkey is made of meat,1 +protein,turkey,MadeOf: a turkey is made of protein,1 +flesh,turkey,MadeOf: a turkey is made of flesh,1 +bird,turkey,MadeOf: a turkey is made of bird,1 +slaughter,turkey,HasPrerequisite: you need slaughter before you can have a turkey,1 +cook,turkey,HasPrerequisite: you need cook before you can have a turkey,1 +butcher,turkey,HasPrerequisite: you need butcher before you can have a turkey,1 +farm,turkey,HasPrerequisite: you need farm before you can have a turkey,1 +feast,turkey,Causes: a turkey causes feast,1 +satisfaction,turkey,Causes: a turkey causes satisfaction,1 +fullness,turkey,Causes: a turkey causes fullness,1 +meal,turkey,Causes: a turkey causes meal,1 +large,turkey,HasProperty: a turkey is large,1 +plump,turkey,HasProperty: a turkey is plump,1 +feathered,turkey,HasProperty: a turkey is feathered,1 +edible,turkey,HasProperty: a turkey is edible,1 +spice_rack,turmeric,AtLocation: you find turmeric in a spice rack,1 +cooking,turmeric,UsedFor: turmeric is used for cooking,1 +coloring_food,turmeric,UsedFor: turmeric is used for coloring food,1 +seasoning_dishes,turmeric,UsedFor: turmeric is used for seasoning dishes,1 +yellow_color,turmeric,HasA: turmeric has a yellow color,1 +ground_form,turmeric,HasA: turmeric has a ground form,1 +curry_powder,turmeric,PartOf: turmeric is part of curry powder,1 +spice_blend,turmeric,PartOf: turmeric is part of spice blend,1 +adding_flavor,turmeric,CapableOf: turmeric can add flavor,1 +providing_nutrients,turmeric,CapableOf: turmeric can provide nutrients,1 +harvesting,turmeric,HasPrerequisite: turmeric requires harvesting as a prerequisite,1 +drying,turmeric,HasPrerequisite: turmeric requires drying as a prerequisite,1 +curry_yellow_color,turmeric,Causes: turmeric causes a curry yellow color,1 +healthy_benefits,turmeric,Causes: turmeric causes healthy benefits,1 +pungent,turmeric,HasProperty: turmeric has a pungent property,1 +earthy,turmeric,HasProperty: turmeric has an earthy property,1 +swamp,turtle,AtLocation: you find a turtle in a swamp,1 +food,turtle,UsedFor: a turtle can be used for food,1 +pet,turtle,UsedFor: a turtle is used as a pet,1 +racing,turtle,UsedFor: a turtle is used for racing,1 +head,turtle,HasA: a turtle has a head,1 +legs,turtle,HasA: a turtle has legs,1 +tail,turtle,HasA: a turtle has a tail,1 +ecosystem,turtle,PartOf: a turtle is part of an ecosystem,1 +food_chain,turtle,PartOf: a turtle is part of the food chain,1 +swim,turtle,CapableOf: a turtle can swim,1 +walk_slow,turtle,CapableOf: a turtle can walk slowly,1 +carry_weight,turtle,CapableOf: a turtle can carry weight on its back,1 +bone,turtle,MadeOf: a turtle is made of bone,1 +cartilage,turtle,MadeOf: a turtle is made of cartilage,1 +skin,turtle,MadeOf: a turtle is made of skin,1 +water_source,turtle,HasPrerequisite: you need a water source to have a turtle,1 +suitable_habitat,turtle,HasPrerequisite: you need a suitable habitat for a turtle,1 +interest,turtle,Causes: a turtle causes interest in nature,1 +food,turtle,Causes: a turtle causes food for predators,1 +slow,turtle,HasProperty: a turtle is slow,1 +small,turtle,HasProperty: a turtle is small,1 +cold-blooded,turtle,HasProperty: a turtle is cold-blooded,1 +music_store,ukulele,AtLocation: you find a ukulele in a music store,1 +concert,ukulele,AtLocation: a ukulele is often found at a concert,1 +playing_music,ukulele,UsedFor: a ukulele is used for playing music,1 +strumming,ukulele,UsedFor: a ukulele is used for strumming,1 +accompanying_singing,ukulele,UsedFor: a ukulele is used for accompanying singing,1 +strings,ukulele,HasA: a ukulele has strings,1 +neck,ukulele,HasA: a ukulele has a neck,1 +sound_hole,ukulele,HasA: a ukulele has a sound hole,1 +orchestra,ukulele,PartOf: a ukulele can be part of an orchestra,1 +string_ensemble,ukulele,PartOf: a ukulele can be part of a string ensemble,1 +making_sound,ukulele,CapableOf: a ukulele is capable of making sound,1 +playing_chords,ukulele,CapableOf: a ukulele is capable of playing chords,1 +being_tuned,ukulele,CapableOf: a ukulele is capable of being tuned,1 +metal,ukulele,MadeOf: a ukulele has metal parts,1 +fingers,ukulele,HasPrerequisite: you need fingers to play a ukulele,1 +knowledge,ukulele,HasPrerequisite: you need knowledge to play a ukulele,1 +tuning,ukulele,HasPrerequisite: a ukulele requires tuning before playing,1 +enjoyment,ukulele,Causes: playing a ukulele causes enjoyment,1 +relaxation,ukulele,Causes: listening to a ukulele causes relaxation,1 +learning,ukulele,Causes: playing a ukulele causes learning,1 +small,ukulele,HasProperty: a ukulele is small,1 +portable,ukulele,HasProperty: a ukulele is portable,1 +lightweight,ukulele,HasProperty: a ukulele is lightweight,1 +hamper,underwear,AtLocation: underwear is found in a hamper,1 +hiding,underwear,UsedFor: underwear is used for hiding,1 +comfort,underwear,UsedFor: underwear is used for comfort,1 +protection,underwear,UsedFor: underwear is used for protection,1 +waistband,underwear,HasA: underwear has a waistband,1 +leg-hole,underwear,HasA: underwear has a leg-hole,1 +outfit,underwear,PartOf: underwear is part of an outfit,1 +stretching,underwear,CapableOf: underwear can stretch,1 +hiding,underwear,CapableOf: underwear can hide,1 +lycra,underwear,MadeOf: underwear is made of lycra,1 +silk,underwear,MadeOf: underwear is made of silk,1 +body,underwear,HasPrerequisite: you need a body before you can wear underwear,1 +itchiness,underwear,Causes: underwear causes itchiness,1 +arousal,underwear,Causes: underwear causes arousal,1 +soft,underwear,HasProperty: underwear is soft,1 +stretchy,underwear,HasProperty: underwear is stretchy,1 +thin,underwear,HasProperty: underwear is thin,1 +circus,unicycle,AtLocation: you find a unicycle in a circus,1 +circus_tricks,unicycle,UsedFor: a unicycle is used for circus tricks,1 +balancing,unicycle,UsedFor: a unicycle is used for balancing,1 +wheel,unicycle,HasA: a unicycle has a wheel,1 +seat,unicycle,HasA: a unicycle has a seat,1 +circus_equipment,unicycle,PartOf: a unicycle is part of circus equipment,1 +balancing,unicycle,CapableOf: a unicycle can balance,1 +metal,unicycle,MadeOf: a unicycle is made of metal,1 +rubber,unicycle,MadeOf: a unicycle is made of rubber,1 +balance,unicycle,HasPrerequisite: you need balance before you can ride a unicycle,1 +practice,unicycle,HasPrerequisite: you need practice before you can ride a unicycle,1 +exercise,unicycle,Causes: using a unicycle causes exercise,1 +skill_development,unicycle,Causes: using a unicycle causes skill development,1 +single-wheeled,unicycle,HasProperty: a unicycle has a single-wheeled property,1 +unstable,unicycle,HasProperty: a unicycle has an unstable property,1 +garage,van,AtLocation: you find a van in a garage,1 +driveway,van,AtLocation: you find a van in a driveway,1 +family_transportation,van,UsedFor: a van is used for family transportation,1 +moving_furniture,van,UsedFor: a van is used for moving furniture,1 +camping_trips,van,UsedFor: a van is used for camping trips,1 +delivering_packages,van,UsedFor: a van is used for delivering packages,1 +steering_wheel,van,HasA: a van has a steering wheel,1 +engine,van,HasA: a van has an engine,1 +back_doors,van,HasA: a van has back doors,1 +roofrack,van,HasA: a van has a roofrack,1 +fleet,van,PartOf: a van is part of a fleet,1 +transportation_network,van,PartOf: a van is part of a transportation network,1 +carry_luggage,van,CapableOf: a van can carry luggage,1 +drive_road_trips,van,CapableOf: a van can drive road trips,1 +pull_trailer,van,CapableOf: a van can pull a trailer,1 +fit_large_families,van,CapableOf: a van can fit large families,1 +metal,van,MadeOf: a van is made of metal,1 +rubber,van,MadeOf: a van is made of rubber,1 +driver_license,van,HasPrerequisite: you need a driver license before you can use a van,1 +keys,van,HasPrerequisite: you need keys before you can use a van,1 +traffic_jams,van,Causes: a van causes traffic jams,1 +road_noise,van,Causes: a van causes road noise,1 +roomy,van,HasProperty: a van is roomy,1 +boxy,van,HasProperty: a van is boxy,1 +spacious,van,HasProperty: a van is spacious,1 +mantelpiece,vase,AtLocation: you find a vase on a mantelpiece,1 +decoration,vase,UsedFor: a vase is used for decoration,1 +holding,vase,UsedFor: a vase is used for holding flowers,1 +flower,vase,HasA: a vase has a flower inside,1 +centerpiece,vase,PartOf: a vase is part of a centerpiece,1 +arrangement,vase,PartOf: a vase is part of a flower arrangement,1 +display_flower,vase,CapableOf: a vase can display flower,1 +hold_water,vase,CapableOf: a vase can hold water,1 +break_if_dropped,vase,CapableOf: a vase can break if dropped,1 +ceramic,vase,MadeOf: a vase is made of ceramic,1 +porcelain,vase,MadeOf: a vase is made of porcelain,1 +flowers,vase,HasPrerequisite: you need flowers before you can use a vase,1 +centerpiece,vase,Causes: a vase causes a centerpiece,1 +decoration,vase,Causes: a vase causes decoration,1 +refreshment,vase,Causes: a vase causes refreshment,1 +decorative,vase,HasProperty: a vase is decorative,1 +fragile,vase,HasProperty: a vase is fragile,1 +cylindrical,vase,HasProperty: a vase is cylindrical,1 +transparent,vase,HasProperty: a vase is transparent,1 +colorful,vase,HasProperty: a vase is colorful,1 +cooking,vegetable,UsedFor: vegetables are used for cooking,1 +eating,vegetable,UsedFor: vegetables are used for eating,1 +leaves,vegetable,HasA: vegetables have leaves,1 +seeds,vegetable,HasA: vegetables have seeds,1 +meal,vegetable,PartOf: a vegetable is part of a meal,1 +growing,vegetable,CapableOf: a vegetable can grow,1 +plants,vegetable,MadeOf: vegetables are made of plants,1 +nature,vegetable,MadeOf: vegetables are made of nature,1 +soil,vegetable,HasPrerequisite: you need soil before you can grow vegetables,1 +health,vegetable,Causes: vegetables cause health,1 +digestion,vegetable,Causes: vegetables cause digestion,1 +green,vegetable,HasProperty: vegetables are green,1 +fresh,vegetable,HasProperty: vegetables are fresh,1 +nutritious,vegetable,HasProperty: vegetables are nutritious,1 +decoration,verbena,UsedFor: verbena is used for decoration,1 +flower,verbena,HasA: verbena has a flower,1 +landscape,verbena,PartOf: verbena is part of a landscape,1 +growing,verbena,CapableOf: verbena can grow,1 +plant_matter,verbena,MadeOf: verbena is made of plant matter,1 +sunlight,verbena,HasPrerequisite: verbena needs sunlight,1 +fragrance,verbena,Causes: verbena causes fragrance,1 +fragrant,verbena,HasProperty: verbena is fragrant,1 +forest,vine,AtLocation: you find a vine in a forest,1 +decoration,vine,UsedFor: a vine is used for decoration,1 +support,vine,UsedFor: a vine is used for support,1 +leaves,vine,HasA: a vine has leaves,1 +tendrils,vine,HasA: a vine has tendrils,1 +ecosystem,vine,PartOf: a vine is part of an ecosystem,1 +climbing,vine,CapableOf: a vine can climb,1 +growing,vine,CapableOf: a vine can grow,1 +spreading,vine,CapableOf: a vine can spread,1 +plant_matter,vine,MadeOf: a vine is made of plant matter,1 +cellulose,vine,MadeOf: a vine is made of cellulose,1 +soil,vine,HasPrerequisite: you need soil before you can grow a vine,1 +sunlight,vine,HasPrerequisite: you need sunlight before you can grow a vine,1 +shade,vine,Causes: a vine causes shade,1 +growth,vine,Causes: a vine causes growth,1 +long,vine,HasProperty: a vine is long,1 +flexible,vine,HasProperty: a vine is flexible,1 +green,vine,HasProperty: a vine is green,1 +music_school,viola,AtLocation: you find a viola in a music school,1 +music_store,viola,AtLocation: you find a viola in a music store,1 +practice_room,viola,AtLocation: you find a viola in a practice room,1 +teaching,viola,UsedFor: a viola is used for teaching,1 +practicing,viola,UsedFor: a viola is used for practicing,1 +performance,viola,UsedFor: a viola is used for performance,1 +strings,viola,HasA: a viola has strings,1 +bow,viola,HasA: a viola has a bow,1 +fingerboard,viola,HasA: a viola has a fingerboard,1 +orchestra_section,viola,PartOf: a viola is part of an orchestra section,1 +string_section,viola,PartOf: a viola is part of a string section,1 +chamber_music_group,viola,PartOf: a viola is part of a chamber music group,1 +producing_sound,viola,CapableOf: a viola can produce sound,1 +making_noise,viola,CapableOf: a viola can make noise,1 +vibrating,viola,CapableOf: a viola can vibrate,1 +metal,viola,MadeOf: a viola is made of metal,1 +varnish,viola,MadeOf: a viola is made of varnish,1 +bowing,viola,HasPrerequisite: you need bowing to use a viola,1 +fingering,viola,HasPrerequisite: you need fingering to use a viola,1 +tuning,viola,HasPrerequisite: you need tuning before having a viola,1 +rosin,viola,HasPrerequisite: you need rosin before using a viola,1 +music,viola,Causes: a viola causes music,1 +vibrations,viola,Causes: a viola causes vibrations,1 +sound,viola,Causes: a viola causes sound,1 +wooden,viola,HasProperty: a viola is wooden,1 +resonant,viola,HasProperty: a viola is resonant,1 +brown,viola,HasProperty: a viola is brown,1 +decoration,violet,UsedFor: a violet is used for decoration,1 +petal,violet,HasA: a violet has a petal,1 +flowerbed,violet,PartOf: a violet is part of a flowerbed,1 +blooming,violet,CapableOf: a violet can bloom,1 +plant,violet,MadeOf: a violet is made of plant,1 +soil,violet,HasPrerequisite: you need soil before you can grow a violet,1 +scent,violet,Causes: a violet causes a scent,1 +purple,violet,HasProperty: a violet is purple,1 +workshop,vise,AtLocation: you find a vise in a workshop,1 +holding,vise,UsedFor: a vise is used for holding materials,1 +tightening,vise,UsedFor: a vise is used for tightening objects,1 +clamping,vise,UsedFor: a vise is used for clamping workpieces,1 +securing,vise,UsedFor: a vise is used for securing materials,1 +screw,vise,HasA: a vise has a screw for adjustment,1 +jaw,vise,HasA: a vise has a jaw to grip objects,1 +workbench,vise,PartOf: a vise is part of a workbench setup,1 +workshop,vise,PartOf: a vise is part of a workshop,1 +gripping,vise,CapableOf: a vise can grip objects firmly,1 +clamping,vise,CapableOf: a vise can clamp materials together,1 +holding,vise,CapableOf: a vise can hold items steady,1 +tightening,vise,CapableOf: a vise can tighten objects,1 +metal,vise,MadeOf: a vise is made of metal,1 +cast_iron,vise,MadeOf: a vise is made of cast iron,1 +power_source,vise,HasPrerequisite: a vise requires a power source (manual or mechanical),1 +workbench,vise,HasPrerequisite: a vise needs a workbench to be mounted on,1 +pressure,vise,Causes: a vise causes pressure on objects,1 +stability,vise,Causes: a vise causes stability for workpieces,1 +precision,vise,Causes: a vise causes precision in work,1 +damage,vise,Causes: a vise can cause damage if used improperly,1 +sturdy,vise,HasProperty: a vise is sturdy in construction,1 +heavy,vise,HasProperty: a vise is heavy in weight,1 +strong,vise,HasProperty: a vise is strong in structure,1 +adjustable,vise,HasProperty: a vise is adjustable in settings,1 +desert,vulture,AtLocation: you find a vulture in the desert,1 +cleaning,vulture,UsedFor: a vulture is used for cleaning,1 +beak,vulture,HasA: a vulture has a beak,1 +sky,vulture,PartOf: a vulture is part of the sky,1 +soaring,vulture,CapableOf: a vulture can soar,1 +carcass,vulture,HasPrerequisite: you need a carcass before a vulture will approach,1 +unease,vulture,Causes: a vulture causes unease,1 +large,vulture,HasProperty: a vulture is large,1 +fishing,wagtail,UsedFor: a wagtail is used for fishing,1 +tail,wagtail,HasA: a wagtail has a tail,1 +flock,wagtail,PartOf: a wagtail is part of a flock,1 +hunt,wagtail,CapableOf: a wagtail can hunt,1 +feathers,wagtail,MadeOf: a wagtail is made of feathers,1 +food,wagtail,HasPrerequisite: you need food before you can have a wagtail,1 +interest,wagtail,Causes: a wagtail causes interest,1 +small,wagtail,HasProperty: a wagtail is small,1 +brown,wagtail,HasProperty: a wagtail is brown,1 +forest,warbler,AtLocation: you find a warbler in a forest,1 +singing,warbler,UsedFor: a warbler is used for singing,1 +beak,warbler,HasA: a warbler has a beak,1 +feathers,warbler,HasA: a warbler has feathers,1 +bird_family,warbler,PartOf: a warbler is part of a bird family,1 +eggs,warbler,HasPrerequisite: you need eggs before you can have a warbler,1 +singing_sounds,warbler,Causes: a warbler causes singing sounds,1 +small,warbler,HasProperty: a warbler is small,1 +colorful,warbler,HasProperty: a warbler is colorful,1 +pollinating,wasp,UsedFor: a wasp is used for pollinating,1 +stinger,wasp,HasA: a wasp has a stinger,1 +ecosystem,wasp,PartOf: a wasp is part of an ecosystem,1 +flying,wasp,CapableOf: a wasp can fly,1 +chitin,wasp,MadeOf: a wasp is made of chitin,1 +flowers,wasp,HasPrerequisite: you need flowers before you can have a wasp,1 +allergic_reaction,wasp,Causes: a wasp causes an allergic reaction,1 +small,wasp,HasProperty: a wasp is small,1 +making_coffee,water,UsedFor: water is used for making coffee,1 +hydrogen,water,HasA: water has hydrogen,1 +liquid_state,water,HasA: water has liquid state,1 +surface_tension,water,HasA: water has surface tension,1 +body,water,PartOf: water is part of the body,1 +blood,water,PartOf: water is part of blood,1 +environment,water,PartOf: water is part of the environment,1 +dissolve_salt,water,CapableOf: water can dissolve salt,1 +conduct_electricity,water,CapableOf: water can conduct electricity,1 +carry_germs,water,CapableOf: water can carry germs,1 +h2o_molecules,water,MadeOf: water is made of h2o molecules,1 +hydrogen_atoms,water,MadeOf: water is made of hydrogen atoms,1 +oxygen_atom,water,MadeOf: water is made of an oxygen atom,1 +source,water,HasPrerequisite: you need a source before you can get water,1 +container,water,HasPrerequisite: you need a container before you can store water,1 +purification,water,HasPrerequisite: you need purification before you can drink water,1 +erosion,water,Causes: water causes erosion,1 +plant_growth,water,Causes: water causes plant growth,1 +farm,watermelon,AtLocation: watermelons are found at a farm,1 +grocery_store,watermelon,AtLocation: you find watermelons at a grocery store,1 +fruit_stand,watermelon,AtLocation: watermelons are sold at a fruit stand,1 +eating,watermelon,UsedFor: watermelons are used for eating,1 +hydration,watermelon,UsedFor: watermelons are used for hydration,1 +making_juice,watermelon,UsedFor: watermelons are used for making juice,1 +making_salad,watermelon,UsedFor: watermelons are used for making salad,1 +rind,watermelon,HasA: a watermelon has a rind,1 +sweet_flesh,watermelon,HasA: a watermelon has sweet flesh,1 +red_flesh,watermelon,HasA: a watermelon has red flesh,1 +fruit_basket,watermelon,PartOf: a watermelon is part of a fruit basket,1 +picnic,watermelon,PartOf: a watermelon is part of a picnic,1 +refreshing,watermelon,CapableOf: a watermelon can refresh someone,1 +sugar,watermelon,MadeOf: a watermelon is made of sugar,1 +fullness,watermelon,Causes: eating watermelon causes fullness,1 +satisfaction,watermelon,Causes: eating watermelon causes satisfaction,1 +sweet,watermelon,HasProperty: a watermelon is sweet,1 +juicy,watermelon,HasProperty: a watermelon is juicy,1 +large,watermelon,HasProperty: a watermelon is large,1 +round,watermelon,HasProperty: a watermelon is round,1 +eating_berries,waxwing,UsedFor: a waxwing is used for eating berries,1 +crest,waxwing,HasA: a waxwing has a crest,1 +flock,waxwing,PartOf: a waxwing is part of a flock,1 +feathers,waxwing,MadeOf: a waxwing is made of feathers,1 +berries,waxwing,HasPrerequisite: you need berries before you can attract a waxwing,1 +berry_consumption,waxwing,Causes: a waxwing causes berry consumption,1 +crested,waxwing,HasProperty: a waxwing is crested,1 +military_base,weapon,AtLocation: you find a weapon on a military base,1 +armory,weapon,AtLocation: you find a weapon in an armory,1 +battlefield,weapon,AtLocation: you find a weapon on a battlefield,1 +soldier's_backpack,weapon,AtLocation: you find a weapon in a soldier's backpack,1 +weapon_rack,weapon,AtLocation: you find a weapon on a weapon rack,1 +combat,weapon,UsedFor: a weapon is used for combat,1 +intimidation,weapon,UsedFor: a weapon is used for intimidation,1 +assault,weapon,UsedFor: a weapon is used for assault,1 +self-defense,weapon,UsedFor: a weapon is used for self-defense,1 +trigger,weapon,HasA: a weapon has a trigger,1 +handle,weapon,HasA: a weapon has a handle,1 +mechanism,weapon,HasA: a weapon has a mechanism,1 +arsenal,weapon,PartOf: a weapon is part of an arsenal,1 +soldier's_equipment,weapon,PartOf: a weapon is part of a soldier's equipment,1 +defense_system,weapon,PartOf: a weapon is part of a defense system,1 +military_inventory,weapon,PartOf: a weapon is part of military inventory,1 +hunting_kit,weapon,PartOf: a weapon is part of a hunting kit,1 +wound,weapon,CapableOf: a weapon can wound,1 +injure,weapon,CapableOf: a weapon can injure,1 +defeat,weapon,CapableOf: a weapon can defeat,1 +maim,weapon,CapableOf: a weapon can maim,1 +incapacitate,weapon,CapableOf: a weapon can incapacitate,1 +metal,weapon,MadeOf: a weapon is made of metal,1 +training,weapon,HasPrerequisite: you need training before you can use a weapon,1 +license,weapon,HasPrerequisite: you need a license before you can own a weapon,1 +permit,weapon,HasPrerequisite: you need a permit before you can carry a weapon,1 +knowledge,weapon,HasPrerequisite: you need knowledge before you can operate a weapon,1 +safety,weapon,HasPrerequisite: you need safety measures before you can handle a weapon,1 +fear,weapon,Causes: a weapon causes fear,1 +injury,weapon,Causes: a weapon causes injury,1 +death,weapon,Causes: a weapon causes death,1 +conflict,weapon,Causes: a weapon causes conflict,1 +destruction,weapon,Causes: a weapon causes destruction,1 +dangerous,weapon,HasProperty: a weapon is dangerous,1 +lethal,weapon,HasProperty: a weapon is lethal,1 +sharp,weapon,HasProperty: a weapon is sharp,1 +heavy,weapon,HasProperty: a weapon is heavy,1 +pointy,weapon,HasProperty: a weapon is pointy,1 +field,weaver,AtLocation: you find a weaver in a field,1 +weaving,weaver,UsedFor: a weaver is used for weaving,1 +flock,weaver,PartOf: a weaver is part of a flock,1 +build,weaver,CapableOf: a weaver can build,1 +song,weaver,Causes: a weaver causes song,1 +small,weaver,HasProperty: a weaver is small,1 +toolbox,wedge,AtLocation: you find a wedge in a toolbox,1 +splitting_wood,wedge,UsedFor: a wedge is used for splitting wood,1 +prying_open,wedge,UsedFor: a wedge is used for prying open things,1 +leveling,wedge,UsedFor: a wedge is used for leveling surfaces,1 +sharp_edge,wedge,HasA: a wedge has a sharp edge,1 +splitting_toolkit,wedge,PartOf: a wedge is part of a splitting toolkit,1 +splitting_wood,wedge,CapableOf: a wedge can split wood,1 +prying_open,wedge,CapableOf: a wedge can pry open things,1 +metal,wedge,MadeOf: a wedge is made of metal,1 +hammer,wedge,HasPrerequisite: you need a hammer before you can use a wedge,1 +separation,wedge,Causes: a wedge causes separation,1 +opening,wedge,Causes: a wedge causes opening,1 +splitting,wedge,Causes: a wedge causes splitting,1 +pointed,wedge,HasProperty: a wedge is pointed,1 +triangular,wedge,HasProperty: a wedge is triangular,1 +desert,well,AtLocation: you find a well in a desert,1 +oasis,well,AtLocation: you find a well at an oasis,1 +village,well,AtLocation: you find a well in a village,1 +park,well,AtLocation: you find a well in a park,1 +town_square,well,AtLocation: you find a well in a town square,1 +irrigation_(weight_1.0),well,UsedFor: a well is used for irrigation,1 +firefighting_(weight_1.0),well,UsedFor: a well is used for firefighting,1 +livestock_watering_(weight_1.0),well,UsedFor: a well is used for watering livestock,1 +generating_power_(weight_1.0),well,UsedFor: a well is used for generating power,1 +cooling_system_(weight_1.0),well,UsedFor: a well is used for cooling systems,1 +rope_(weight_1.0),well,HasA: a well has a rope,1 +bucket_(weight_1.0),well,HasA: a well has a bucket,1 +handle_(weight_1.0),well,HasA: a well has a handle,1 +pump_(weight_1.0),well,HasA: a well has a pump,1 +lid_(weight_1.0),well,HasA: a well has a lid,1 +water_system_(weight_1.0),well,PartOf: a well is part of a water system,1 +farm_infrastructure_(weight_1.0),well,PartOf: a well is part of farm infrastructure,1 +village_layout_(weight_1.0),well,PartOf: a well is part of village layout,1 +homestead_(weight_1.0),well,PartOf: a well is part of a homestead,1 +water_supply_(weight_1.0),well,PartOf: a well is part of a water supply,1 +supplying_water_(weight_1.0),well,CapableOf: a well can supply water,1 +reaching_depth_(weight_1.0),well,CapableOf: a well can reach depth,1 +supporting_weight_(weight_1.0),well,CapableOf: a well can support weight,1 +containing_water_(weight_1.0),well,CapableOf: a well can contain water,1 +providing_hydration_(weight_1.0),well,CapableOf: a well can provide hydration,1 +stone_(weight_1.0),well,MadeOf: a well is made of stone,1 +concrete_(weight_1.0),well,MadeOf: a well is made of concrete,1 +brick_(weight_1.0),well,MadeOf: a well is made of brick,1 +wood_(weight_1.0),well,MadeOf: a well is made of wood,1 +metal_(weight_1.0),well,MadeOf: a well is made of metal,1 +digging_(weight_1.0),well,HasPrerequisite: you need digging before you can have a well,1 +drilling_(weight_1.0),well,HasPrerequisite: you need drilling before you can have a well,1 +ground_(weight_1.0),well,HasPrerequisite: you need ground before you can have a well,1 +water_source_(weight_1.0),well,HasPrerequisite: you need a water source before you can have a well,1 +tools_(weight_1.0),well,HasPrerequisite: you need tools before you can have a well,1 +hydration_(weight_1.0),well,Causes: a well causes hydration,1 +irrigation_(weight_1.0),well,Causes: a well causes irrigation,1 +settlement_(weight_1.0),well,Causes: a well causes settlement,1 +farming_(weight_1.0),well,Causes: a well causes farming,1 +community_gathering_(weight_1.0),well,Causes: a well causes community gathering,1 +deep_(weight_1.0),well,HasProperty: a well is deep,1 +circular_(weight_1.0),well,HasProperty: a well is circular,1 +underground_(weight_1.0),well,HasProperty: a well is underground,1 +functional_(weight_1.0),well,HasProperty: a well is functional,1 +ancient_(weight_1.0),well,HasProperty: a well can be ancient,1 +farm,wheat,AtLocation: wheat grows on a farm,1 +pasta,wheat,UsedFor: wheat is used for making pasta,1 +crackers,wheat,UsedFor: wheat is used for making crackers,1 +pancakes,wheat,UsedFor: wheat is used for making pancakes,1 +soup_thickener,wheat,UsedFor: wheat is used as a soup thickener,1 +stalk,wheat,HasA: wheat has a stalk,1 +seed,wheat,HasA: wheat has a seed,1 +diet,wheat,PartOf: wheat is part of a balanced diet,1 +grain_bowl,wheat,PartOf: wheat is part of a grain bowl,1 +plant,wheat,MadeOf: wheat is made of plant material,1 +seed,wheat,MadeOf: wheat is made of seed,1 +sunlight,wheat,HasPrerequisite: wheat needs sunlight to grow,1 +soil,wheat,HasPrerequisite: wheat needs soil to grow,1 +satiety,wheat,Causes: wheat causes a feeling of satiety,1 +fullness,wheat,Causes: wheat causes fullness,1 +golden,wheat,HasProperty: wheat is golden in color,1 +grainy,wheat,HasProperty: wheat has a grainy texture,1 +kitchen,wine,AtLocation: you find wine in a kitchen,1 +cellar,wine,AtLocation: you find wine in a cellar,1 +shop,wine,AtLocation: you buy wine in a shop,1 +celebrating,wine,UsedFor: wine is used for celebrating,1 +cooking,wine,UsedFor: wine is used for cooking,1 +pairing_with_food,wine,UsedFor: wine is used for pairing with food,1 +religious_ceremonies,wine,UsedFor: wine is used for religious ceremonies,1 +aroma,wine,HasA: wine has an aroma,1 +label,wine,HasA: wine has a label,1 +sediment,wine,HasA: some wine has sediment,1 +meal,wine,PartOf: wine is part of a meal,1 +gift_basket,wine,PartOf: wine is part of a gift basket,1 +wine_tasting,wine,PartOf: wine is part of a wine tasting,1 +fermenting,wine,CapableOf: wine can ferment,1 +pairing_with_cheese,wine,CapableOf: wine can pair with cheese,1 +improving_with_age,wine,CapableOf: wine can improve with age,1 +staining_clothes,wine,CapableOf: wine can stain clothes,1 +grapes,wine,MadeOf: wine is made of grapes,1 +yeast,wine,MadeOf: wine is made of yeast,1 +sugar,wine,MadeOf: wine is made of sugar,1 +grapes,wine,HasPrerequisite: you need grapes before you can make wine,1 +fermentation,wine,HasPrerequisite: you need fermentation before you can have wine,1 +vineyard,wine,HasPrerequisite: you need a vineyard before you can produce wine,1 +press,wine,HasPrerequisite: you need a press before you can make wine,1 +intoxication,wine,Causes: wine causes intoxication,1 +celebration,wine,Causes: wine causes celebration,1 +relaxation,wine,Causes: wine causes relaxation,1 +conversation,wine,Causes: wine causes conversation,1 +liquid,wine,HasProperty: wine is liquid,1 +red,wine,HasProperty: wine can be red,1 +white,wine,HasProperty: wine can be white,1 +fizzy,wine,HasProperty: wine can be fizzy,1 +aged,wine,HasProperty: wine can be aged,1 +mountain,wolf,AtLocation: you find a wolf in the mountains,1 +tundra,wolf,AtLocation: you find a wolf in the tundra,1 +hunting,wolf,UsedFor: a wolf is used for hunting prey,1 +pest_control,wolf,UsedFor: wolves are used for pest control in ecosystems,1 +inspiration,wolf,UsedFor: wolves are used for inspiration in stories,1 +sharp_teeth,wolf,HasA: a wolf has sharp teeth,1 +bushy_tail,wolf,HasA: a wolf has a bushy tail,1 +pack,wolf,PartOf: a wolf is part of a pack,1 +ecosystem,wolf,PartOf: a wolf is part of an ecosystem,1 +chase_sheep,wolf,CapableOf: a wolf can chase sheep,1 +bite,wolf,CapableOf: a wolf can bite,1 +howl_at_moon,wolf,CapableOf: a wolf can howl at the moon,1 +fur,wolf,MadeOf: a wolf is made of fur,1 +muscle,wolf,MadeOf: a wolf is made of muscle,1 +forest_environment,wolf,HasPrerequisite: you need a forest environment before you can have wolves,1 +prey_population,wolf,HasPrerequisite: you need a prey population before you can have wolves,1 +fear,wolf,Causes: wolves cause fear in prey animals,1 +balance,wolf,Causes: wolves cause balance in ecosystems,1 +powerful,wolf,HasProperty: a wolf is powerful,1 +wild,wolf,HasProperty: a wolf is wild,1 +lightbulbs,wolfram,UsedFor: wolfram is used for lightbulbs,1 +shine,wolfram,HasA: wolfram has a shine,1 +melting,wolfram,CapableOf: wolfram can melt,1 +metal,wolfram,MadeOf: wolfram is made of metal,1 +mining,wolfram,HasPrerequisite: you need mining before you can get wolfram,1 +heat,wolfram,Causes: wolfram causes heat,1 +heavy,wolfram,HasProperty: wolfram is heavy,1 +forest,wood,AtLocation: you find wood in a forest,1 +workshop,wood,AtLocation: you find wood in a workshop,1 +fireplace,wood,AtLocation: you find wood in a fireplace,1 +fireplace_starter,wood,AtLocation: you find wood in a fireplace starter,1 +make_paper,wood,UsedFor: wood is used to make paper,1 +build_houses,wood,UsedFor: wood is used to build houses,1 +make_toys,wood,UsedFor: wood is used to make toys,1 +build_chairs,wood,UsedFor: wood is used to build chairs,1 +knots,wood,HasA: wood has knots,1 +fibers,wood,HasA: wood has fibers,1 +sap,wood,HasA: wood has sap,1 +branches,wood,HasA: wood has branches,1 +house,wood,PartOf: wood is part of a house,1 +furniture,wood,PartOf: wood is part of furniture,1 +pencil,wood,PartOf: wood is part of a pencil,1 +splinter,wood,CapableOf: wood can splinter,1 +support_weight,wood,CapableOf: wood can support weight,1 +rot,wood,CapableOf: wood can rot,1 +absorb_water,wood,CapableOf: wood can absorb water,1 +provide_heat,wood,CapableOf: wood can provide heat,1 +plants,wood,MadeOf: wood is made of plants,1 +cellulose,wood,MadeOf: wood is made of cellulose,1 +lignin,wood,MadeOf: wood is made of lignin,1 +fibers,wood,MadeOf: wood is made of fibers,1 +natural_materials,wood,MadeOf: wood is made of natural materials,1 +cutting,wood,HasPrerequisite: you need cutting to prepare wood,1 +drying,wood,HasPrerequisite: you need drying before using wood,1 +tools,wood,HasPrerequisite: you need tools to work with wood,1 +land,wood,HasPrerequisite: you need land to grow wood,1 +smoke,wood,Causes: wood causes smoke,1 +warmth,wood,Causes: wood causes warmth,1 +splinters,wood,Causes: wood causes splinters,1 +fire,wood,Causes: wood causes fire,1 +natural,wood,HasProperty: wood is natural,1 +fibrous,wood,HasProperty: wood is fibrous,1 +rough,wood,HasProperty: wood is rough,1 +strong,wood,HasProperty: wood is strong,1 +dense,wood,HasProperty: wood is dense,1 +pest_control,woodpecker,UsedFor: a woodpecker is used for pest control,1 +beak,woodpecker,HasA: a woodpecker has a beak,1 +tail,woodpecker,HasA: a woodpecker has a tail,1 +ecosystem,woodpecker,PartOf: a woodpecker is part of an ecosystem,1 +peck,woodpecker,CapableOf: a woodpecker can peck,1 +climb,woodpecker,CapableOf: a woodpecker can climb,1 +feathers,woodpecker,MadeOf: a woodpecker is made of feathers,1 +bones,woodpecker,MadeOf: a woodpecker is made of bones,1 +forest,woodpecker,HasPrerequisite: you need a forest before you can have a woodpecker,1 +trees,woodpecker,HasPrerequisite: you need trees before you can have a woodpecker,1 +holes,woodpecker,Causes: a woodpecker causes holes,1 +sound,woodpecker,Causes: a woodpecker causes sound,1 +colorful,woodpecker,HasProperty: a woodpecker is colorful,1 +noisy,woodpecker,HasProperty: a woodpecker is noisy,1 +agile,woodpecker,HasProperty: a woodpecker is agile,1 +hat,wool,AtLocation: you find wool in a hat,1 +rug,wool,AtLocation: you find wool in a rug,1 +blanket,wool,AtLocation: you find wool in a blanket,1 +make_coats,wool,UsedFor: wool is used for making coats,1 +make_mittens,wool,UsedFor: wool is used for making mittens,1 +make_gloves,wool,UsedFor: wool is used for making gloves,1 +make_hats,wool,UsedFor: wool is used for making hats,1 +fiber,wool,HasA: wool has fibers,1 +crimp,wool,HasA: wool has crimp,1 +textile,wool,PartOf: wool is part of textile,1 +yarn,wool,PartOf: wool is part of yarn,1 +insulate,wool,CapableOf: wool can insulate,1 +protect,wool,CapableOf: wool can protect,1 +shrink,wool,CapableOf: wool can shrink,1 +sheep,wool,MadeOf: wool is made of sheep,1 +goat,wool,MadeOf: wool is made of goat,1 +shear_sheep,wool,HasPrerequisite: you need to shear sheep before you have wool,1 +card_fleece,wool,HasPrerequisite: you need to card fleece before you can use wool,1 +itching,wool,Causes: wool causes itching,1 +warmth,wool,Causes: wool causes warmth,1 +shrinkage,wool,Causes: wool causes shrinkage,1 +flexible,wool,HasProperty: wool is flexible,1 +durable,wool,HasProperty: wool is durable,1 +crimped,wool,HasProperty: wool is crimped,1 +soil,worm,AtLocation: you find a worm in the soil,1 +fishing,worm,UsedFor: a worm is used for fishing,1 +bait,worm,UsedFor: a worm is used as bait,1 +body,worm,HasA: a worm has a body,1 +head,worm,HasA: a worm has a head,1 +ecosystem,worm,PartOf: a worm is part of an ecosystem,1 +food_chain,worm,PartOf: a worm is part of a food chain,1 +move,worm,CapableOf: a worm can move,1 +tissue,worm,MadeOf: a worm is made of tissue,1 +cells,worm,MadeOf: a worm is made of cells,1 +soil,worm,HasPrerequisite: you need soil before you can have a worm,1 +moisture,worm,HasPrerequisite: you need moisture before you can have a worm,1 +decomposition,worm,Causes: a worm causes decomposition,1 +soil_enrichment,worm,Causes: a worm causes soil enrichment,1 +slimy,worm,HasProperty: a worm is slimy,1 +long,worm,HasProperty: a worm is long,1 +thin,worm,HasProperty: a worm is thin,1 +packaging,wrapper,UsedFor: a wrapper is used for packaging,1 +protection,wrapper,UsedFor: a wrapper is used for protection,1 +print,wrapper,HasA: a wrapper has print,1 +seal,wrapper,HasA: a wrapper has a seal,1 +packaging,wrapper,PartOf: a wrapper is part of packaging,1 +food_item,wrapper,PartOf: a wrapper is part of a food item,1 +enclosing,wrapper,CapableOf: a wrapper can enclose,1 +contents,wrapper,HasPrerequisite: a wrapper requires contents,1 +freshness,wrapper,Causes: a wrapper causes freshness,1 +waste,wrapper,Causes: a wrapper causes waste,1 +thin,wrapper,HasProperty: a wrapper is thin,1 +flexible,wrapper,HasProperty: a wrapper is flexible,1 +disposable,wrapper,HasProperty: a wrapper is disposable,1 +singing,wren,UsedFor: a wren is used for singing,1 +feathers,wren,HasA: a wren has feathers,1 +ecosystem,wren,PartOf: a wren is part of an ecosystem,1 +birdsong,wren,HasPrerequisite: a wren needs birdsong to exist,1 +pleasant_sounds,wren,Causes: a wren causes pleasant sounds,1 +small,wren,HasProperty: a wren is small,1 +music_classroom,xylophone,AtLocation: you find a xylophone in a music classroom,1 +kindergarten,xylophone,AtLocation: you find a xylophone in a kindergarten,1 +music_room,xylophone,AtLocation: you find a xylophone in a music room,1 +elementary_school,xylophone,AtLocation: you find a xylophone in an elementary school,1 +music_store,xylophone,AtLocation: you find a xylophone in a music store,1 +teach_music,xylophone,UsedFor: a xylophone is used to teach music,1 +practice_music,xylophone,UsedFor: a xylophone is used for practice music,1 +create_rhythm,xylophone,UsedFor: a xylophone is used to create rhythm,1 +children's_music,xylophone,UsedFor: a xylophone is used for children's music,1 +education,xylophone,UsedFor: a xylophone is used for education,1 +wooden_tuning_levers,xylophone,HasA: a xylophone has wooden tuning levers,1 +metal_frets,xylophone,HasA: a xylophone has metal frets,1 +mallets,xylophone,HasA: a xylophone has mallets,1 +resonator_tubes,xylophone,HasA: a xylophone has resonator tubes,1 +keyboard_layout,xylophone,HasA: a xylophone has a keyboard layout,1 +percussion_instrument_family,xylophone,PartOf: a xylophone is part of the percussion instrument family,1 +musical_ensemble,xylophone,PartOf: a xylophone is part of a musical ensemble,1 +children's_instrument_collection,xylophone,PartOf: a xylophone is part of a children's instrument collection,1 +band_instrument_set,xylophone,PartOf: a xylophone is part of a band instrument set,1 +classroom_resources,xylophone,PartOf: a xylophone is part of classroom resources,1 +producing_tone,xylophone,CapableOf: a xylophone can produce tone,1 +playing_scales,xylophone,CapableOf: a xylophone can play scales,1 +making_pitched_sounds,xylophone,CapableOf: a xylophone can make pitched sounds,1 +creating_harmony,xylophone,CapableOf: a xylophone can create harmony,1 +producing_melody,xylophone,CapableOf: a xylophone can produce melody,1 +metal,xylophone,MadeOf: a xylophone is made of metal,1 +rubber,xylophone,MadeOf: a xylophone is made of rubber,1 +synthetic_materials,xylophone,MadeOf: a xylophone is made of synthetic materials,1 +mallets,xylophone,HasPrerequisite: you need mallets before you can use a xylophone,1 +music_education,xylophone,HasPrerequisite: you need music education before you can use a xylophone,1 +percussion_skills,xylophone,HasPrerequisite: you need percussion skills before you can play a xylophone,1 +rhythm_knowledge,xylophone,HasPrerequisite: you need rhythm knowledge before you can play a xylophone,1 +instruction,xylophone,HasPrerequisite: you need instruction before you can use a xylophone,1 +musical_education,xylophone,Causes: a xylophone causes musical education,1 +sound_production,xylophone,Causes: a xylophone causes sound production,1 +learning_experience,xylophone,Causes: a xylophone causes a learning experience,1 +rhythmic_awareness,xylophone,Causes: a xylophone causes rhythmic awareness,1 +musical_enjoyment,xylophone,Causes: a xylophone causes musical enjoyment,1 +wooden,xylophone,HasProperty: a xylophone is wooden,1 +colorful,xylophone,HasProperty: a xylophone is colorful,1 +tuned,xylophone,HasProperty: a xylophone is tuned,1 +percussive,xylophone,HasProperty: a xylophone is percussive,1 +portable,xylophone,HasProperty: a xylophone is portable,1 +forest,yew,AtLocation: you find a yew in a forest,1 +landscaping,yew,UsedFor: a yew is used for landscaping,1 +needle-like_leaf,yew,HasA: a yew has a needle-like leaf,1 +hedge,yew,PartOf: a yew is part of a hedge,1 +grow,yew,CapableOf: a yew can grow,1 +seed,yew,HasPrerequisite: you need a seed before you can grow a yew,1 +poisoning,yew,Causes: a yew causes poisoning,1 +farm,yoke,AtLocation: you find a yoke on a farm,1 +carrying,yoke,UsedFor: a yoke is used for carrying,1 +harnessing,yoke,UsedFor: a yoke is used for harnessing animals,1 +holes,yoke,HasA: a yoke has holes,1 +harness,yoke,PartOf: a yoke is part of a harness,1 +supporting,yoke,CapableOf: a yoke can support weight,1 +animals,yoke,HasPrerequisite: you need animals before you can use a yoke,1 +lifting,yoke,Causes: a yoke causes lifting of objects,1 +wooden,yoke,HasProperty: a yoke is wooden,1 +heavy,yoke,HasProperty: a yoke is heavy,1 +grassland,zebra,AtLocation: a zebra is found in a grassland,1 +savanna,zebra,AtLocation: a zebra is found in a savanna,1 +riding,zebra,UsedFor: a zebra can be used for riding,1 +racing,zebra,UsedFor: a zebra is used for racing,1 +tail,zebra,HasA: a zebra has a tail,1 +legs,zebra,HasA: a zebra has legs,1 +mouth,zebra,HasA: a zebra has a mouth,1 +ecosystem,zebra,PartOf: a zebra is part of an ecosystem,1 +herd,zebra,PartOf: a zebra is part of a herd,1 +run,zebra,CapableOf: a zebra can run,1 +graze,zebra,CapableOf: a zebra can graze,1 +kick,zebra,CapableOf: a zebra can kick,1 +bite,zebra,CapableOf: a zebra can bite,1 +fur,zebra,MadeOf: a zebra is made of fur,1 +muscle,zebra,MadeOf: a zebra is made of muscle,1 +bone,zebra,MadeOf: a zebra is made of bone,1 +grassland,zebra,HasPrerequisite: you need grassland for a zebra,1 +food,zebra,HasPrerequisite: you need food for a zebra,1 +excitement,zebra,Causes: a zebra causes excitement,1 +fear,zebra,Causes: a zebra causes fear,1 +striped,zebra,HasProperty: a zebra is striped,1 +black,zebra,HasProperty: a zebra is black,1 +white,zebra,HasProperty: a zebra is white,1 +wild,zebra,HasProperty: a zebra is wild,1 +music_room,zither,AtLocation: you find a zither in a music room,1 +playing_music,zither,UsedFor: a zither is used for playing music,1 +making_sound,zither,UsedFor: a zither is used for making sound,1 +strings,zither,HasA: a zither has strings,1 +orchestra,zither,PartOf: a zither is part of an orchestra,1 +producing_sound,zither,CapableOf: a zither can produce sound,1 +strings,zither,HasPrerequisite: you need strings before you can play a zither,1 +music,zither,Causes: playing a zither causes music,1 +vibration,zither,Causes: playing a zither causes vibration,1 +stringed,zither,HasProperty: a zither has a stringed property,1 +wooden,zither,HasProperty: a zither has a wooden property,1 +grocery_store,zucchini,AtLocation: you find a zucchini in a grocery store,1 +cooking,zucchini,UsedFor: a zucchini is used for cooking,1 +baking,zucchini,UsedFor: a zucchini is used for baking,1 +grilling,zucchini,UsedFor: a zucchini is used for grilling,1 +seed,zucchini,HasA: a zucchini has a seed,1 +skin,zucchini,HasA: a zucchini has a skin,1 +squash_family,zucchini,PartOf: a zucchini is part of the squash family,1 +growing,zucchini,CapableOf: a zucchini can grow,1 +flesh,zucchini,MadeOf: a zucchini is made of flesh,1 +plant,zucchini,HasPrerequisite: you need a plant to grow a zucchini,1 +satisfaction,zucchini,Causes: eating zucchini causes satisfaction,1 +green,zucchini,HasProperty: a zucchini is green,1 +long,zucchini,HasProperty: a zucchini is long,1 +cylindrical,zucchini,HasProperty: a zucchini is cylindrical,1 +building,aquarium,AtLocation: an aquarium is found in a building,1 +observing,aquarium,UsedFor: an aquarium is used for observing,1 +breeding,aquarium,UsedFor: an aquarium is used for breeding,1 +display,aquarium,UsedFor: an aquarium is used for display,1 +decoration,aquarium,UsedFor: an aquarium is used for decoration,1 +plants,aquarium,HasA: an aquarium has plants,1 +gravel,aquarium,HasA: an aquarium has gravel,1 +decorations,aquarium,HasA: an aquarium has decorations,1 +shop,aquarium,PartOf: an aquarium is part of a shop,1 +facility,aquarium,PartOf: an aquarium is part of a facility,1 +holding,aquarium,CapableOf: an aquarium can hold,1 +filtering,aquarium,CapableOf: an aquarium can filter,1 +cleaning,aquarium,CapableOf: an aquarium can clean,1 +stand,aquarium,HasPrerequisite: you need a stand to have an aquarium,1 +filter,aquarium,HasPrerequisite: you need a filter to have an aquarium,1 +light,aquarium,HasPrerequisite: you need light to have an aquarium,1 +relaxation,aquarium,Causes: an aquarium causes relaxation,1 +interest,aquarium,Causes: an aquarium causes interest,1 +stress,aquarium,Causes: an aquarium causes stress,1 +enjoyment,aquarium,Causes: an aquarium causes enjoyment,1 +clear,aquarium,HasProperty: an aquarium has the property of being clear,1 +transparent,aquarium,HasProperty: an aquarium has the property of being transparent,1 +watertight,aquarium,HasProperty: an aquarium has the property of being watertight,1 +sealed,aquarium,HasProperty: an aquarium has the property of being sealed,1 +eating,beak,UsedFor: a beak is used for eating,1 +pecking,beak,UsedFor: a beak is used for pecking,1 +digging,beak,UsedFor: a beak is used for digging,1 +hole,beak,HasA: a beak has a hole,1 +pecking,beak,CapableOf: a beak can peck,1 +cracking,beak,CapableOf: a beak can crack shells,1 +keratin,beak,MadeOf: a beak is made of keratin,1 +pecking,beak,Causes: a beak causes pecking,1 +eating,beak,Causes: a beak causes eating,1 +pointed,beak,HasProperty: a beak is pointed,1 +hard,beak,HasProperty: a beak is hard,1 +sharp,beak,HasProperty: a beak is sharp,1 +sky,bird,AtLocation: a bird is found in the sky,1 +eating,bird,UsedFor: a bird is used for eating,1 +petting,bird,UsedFor: a bird is used for petting,1 +observing,bird,UsedFor: a bird is used for observing,1 +wings,bird,HasA: a bird has wings,1 +feathers,bird,HasA: a bird has feathers,1 +eyes,bird,HasA: a bird has eyes,1 +ecosystem,bird,PartOf: a bird is part of an ecosystem,1 +sing,bird,CapableOf: a bird can sing,1 +build,bird,CapableOf: a bird can build a nest,1 +peck,bird,CapableOf: a bird can peck,1 +swim,bird,CapableOf: some birds can swim,1 +parent,bird,HasPrerequisite: you need a parent before you have a bird,1 +noise,bird,Causes: a bird causes noise,1 +alarm,bird,Causes: a bird causes alarm,1 +interest,bird,Causes: a bird causes interest,1 +warm-blooded,bird,HasProperty: a bird is warm-blooded,1 +small,bird,HasProperty: a bird is small,1 +colorful,bird,HasProperty: a bird can be colorful,1 +light,bird,HasProperty: a bird is light,1 +clotting,blood,UsedFor: blood is used for clotting,1 +cells,blood,HasA: blood has cells,1 +circulatory_system,blood,PartOf: blood is part of the circulatory system,1 +clotting,blood,CapableOf: blood can clot,1 +plasma,blood,MadeOf: blood is made of plasma,1 +pressure,blood,Causes: blood causes pressure in blood vessels,1 +red,blood,HasProperty: blood is red,1 +movement,body,UsedFor: a body is used for movement,1 +skeleton,body,HasA: a body has a skeleton,1 +person,body,PartOf: a body is part of a person,1 +breathing,body,CapableOf: a body can breathe,1 +life,body,HasPrerequisite: you need life before you can have a body,1 +death,body,Causes: a body can cause death,1 +warm,body,HasProperty: a body is warm,1 +cow,bone,AtLocation: you find a bone in a cow,1 +fertilizer,bone,UsedFor: bones are used for fertilizer,1 +tools,bone,UsedFor: bones are used for making tools,1 +weapons,bone,UsedFor: bones are used for weapons,1 +crafts,bone,UsedFor: bones are used for crafts,1 +marrow,bone,HasA: a bone has marrow,1 +calcium,bone,HasA: a bone has calcium,1 +cells,bone,HasA: a bone has cells,1 +skeleton,bone,PartOf: a bone is part of a skeleton,1 +joint,bone,PartOf: a bone is part of a joint,1 +break,bone,CapableOf: a bone can break,1 +fracture,bone,CapableOf: a bone can fracture,1 +heal,bone,CapableOf: a bone can heal,1 +calcium,bone,MadeOf: a bone is made of calcium,1 +tissue,bone,MadeOf: a bone is made of tissue,1 +minerals,bone,MadeOf: a bone is made of minerals,1 +animal,bone,HasPrerequisite: you need an animal before you can get a bone,1 +death,bone,HasPrerequisite: you need death before you can get a bone,1 +skeleton,bone,HasPrerequisite: you need a skeleton before you can get a bone,1 +pain,bone,Causes: a bone can cause pain,1 +injury,bone,Causes: a broken bone causes injury,1 +noise,bone,Causes: a bone can cause noise when struck,1 +hard,bone,HasProperty: a bone is hard,1 +strong,bone,HasProperty: a bone is strong,1 +dense,bone,HasProperty: a bone is dense,1 +brittle,bone,HasProperty: a bone is brittle,1 +table,bouquet,AtLocation: you find a bouquet on a table,1 +decoration,bouquet,UsedFor: a bouquet is used for decoration,1 +gifting,bouquet,UsedFor: a bouquet is used for gifting,1 +arrangement,bouquet,PartOf: a bouquet is part of an arrangement,1 +smelling,bouquet,CapableOf: a bouquet can smell good,1 +pleasure,bouquet,Causes: a bouquet causes pleasure,1 +colorful,bouquet,HasProperty: a bouquet is colorful,1 +fragrant,bouquet,HasProperty: a bouquet is fragrant,1 +building,branch,UsedFor: a branch is used for building,1 +breaking,branch,CapableOf: a branch can break,1 +shadow,branch,Causes: a branch causes shadow,1 +woody,branch,HasProperty: a branch is woody,1 +building,brick,UsedFor: a brick is used for building,1 +construction,brick,UsedFor: bricks are used for construction,1 +support,brick,UsedFor: bricks are used for support,1 +decoration,brick,UsedFor: bricks are used for decoration,1 +paving,brick,UsedFor: bricks are used for paving,1 +building,brick,PartOf: a brick is part of a building,1 +wall,brick,PartOf: a brick is part of a wall,1 +path,brick,PartOf: bricks can be part of a path,1 +supporting,brick,CapableOf: bricks can support weight,1 +holding,brick,CapableOf: bricks can hold things together,1 +stacking,brick,CapableOf: bricks can be stacked,1 +insulating,brick,CapableOf: bricks can insulate,1 +heating,brick,CapableOf: bricks can be heated,1 +containment,cage,UsedFor: a cage is used for containment,1 +bars,cage,HasA: a cage has bars,1 +enclosure,cage,PartOf: a cage is part of an enclosure,1 +bars,cage,HasPrerequisite: you need bars before you can make a cage,1 +confinement,cage,Causes: a cage causes confinement,1 +sturdy,cage,HasProperty: a cage is sturdy,1 +pottery,ceramic,UsedFor: ceramic is used for pottery,1 +decoration,ceramic,UsedFor: ceramic is used for decoration,1 +mugs,ceramic,UsedFor: ceramic is used for making mugs,1 +glaze,ceramic,HasA: ceramic has a glaze,1 +tile,ceramic,PartOf: ceramic is part of tile,1 +breaking,ceramic,CapableOf: ceramic can break,1 +kiln,ceramic,HasPrerequisite: you need a kiln to make ceramic,1 +firing,ceramic,Causes: ceramic causes firing,1 +brittle,ceramic,HasProperty: ceramic is brittle,1 +durable,ceramic,HasProperty: ceramic is durable,1 +hard,ceramic,HasProperty: ceramic is hard,1 +foot,claw,AtLocation: claws are found on the foot,1 +digging,claw,UsedFor: claws are used for digging,1 +climbing,claw,UsedFor: claws are used for climbing,1 +gripping,claw,UsedFor: claws are used for gripping,1 +point,claw,HasA: claws have a point,1 +foot,claw,PartOf: claws are part of the foot,1 +retracting,claw,CapableOf: claws can retract,1 +keratin,claw,MadeOf: claws are made of keratin,1 +nail_bed,claw,HasPrerequisite: claws require a nail bed to exist,1 +scratch,claw,Causes: claws can cause a scratch,1 +sharp,claw,HasProperty: claws are sharp,1 +hard,claw,HasProperty: claws are hard,1 +construction,concrete,UsedFor: concrete is used for construction,1 +building,concrete,UsedFor: concrete is used for building,1 +foundations,concrete,UsedFor: concrete is used for foundations,1 +aggregate,concrete,HasA: concrete has aggregate,1 +cement,concrete,HasA: concrete has cement,1 +pavement,concrete,PartOf: concrete is part of pavement,1 +road,concrete,PartOf: concrete is part of road,1 +structure,concrete,PartOf: concrete is part of structure,1 +harden,concrete,CapableOf: concrete can harden,1 +support,concrete,CapableOf: concrete can support,1 +sand,concrete,MadeOf: concrete is made of sand,1 +gravel,concrete,MadeOf: concrete is made of gravel,1 +cement,concrete,MadeOf: concrete is made of cement,1 +mixing,concrete,HasPrerequisite: mixing is a prerequisite for concrete,1 +hardness,concrete,Causes: concrete causes hardness,1 +stability,concrete,Causes: concrete causes stability,1 +hard,concrete,HasProperty: concrete is hard,1 +strong,concrete,HasProperty: concrete is strong,1 +heavy,concrete,HasProperty: concrete is heavy,1 +shelf,container,AtLocation: you find a container on a shelf,1 +storing,container,UsedFor: a container is used for storing items,1 +transporting,container,UsedFor: a container is used for transporting goods,1 +holding,container,UsedFor: a container is used for holding liquids,1 +opening,container,HasA: a container has an opening,1 +storage_system,container,PartOf: a container is part of a storage system,1 +protecting,container,CapableOf: a container can protect its contents,1 +containing,container,CapableOf: a container can contain liquids,1 +material,container,HasPrerequisite: you need material before you can make a container,1 +organization,container,Causes: a container causes organization,1 +preservation,container,Causes: a container causes preservation,1 +durable,container,HasProperty: a container is durable,1 +portable,container,HasProperty: a container is portable,1 +decoration,crystal,UsedFor: crystal is used for decoration,1 +shine,crystal,HasA: crystal has a shine,1 +refract,crystal,CapableOf: crystal can refract light,1 +mining,crystal,HasPrerequisite: you need mining before you can get crystal,1 +sparkle,crystal,Causes: crystal causes sparkle,1 +transparent,crystal,HasProperty: crystal is transparent,1 +exploration,desert,UsedFor: a desert is used for exploration,1 +sand,desert,HasA: a desert has sand,1 +ecosystem,desert,PartOf: a desert is part of an ecosystem,1 +drying,desert,CapableOf: a desert can dry out plants,1 +aridity,desert,HasPrerequisite: a desert has the prerequisite of aridity,1 +thirst,desert,Causes: a desert causes thirst,1 +hot,desert,HasProperty: a desert is hot,1 +restaurant,dessert,AtLocation: you find dessert in a restaurant,1 +sweetening,dessert,UsedFor: dessert is used for sweetening a meal,1 +meal,dessert,PartOf: dessert is part of a meal,1 +satisfying,dessert,CapableOf: dessert can satisfy a craving,1 +flour,dessert,MadeOf: dessert is made of flour,1 +meal,dessert,HasPrerequisite: dessert has a prerequisite of a meal,1 +happiness,dessert,Causes: dessert causes happiness,1 +sweet,dessert,HasProperty: dessert has a sweet property,1 +garage,door,AtLocation: you find a door in a garage,1 +houseboat,door,AtLocation: you find a door in a houseboat,1 +bus,door,AtLocation: you find a door in a bus,1 +train,door,AtLocation: you find a door in a train,1 +entry,door,UsedFor: a door is used for entry,1 +exit,door,UsedFor: a door is used for exit,1 +security,door,UsedFor: a door is used for security,1 +protection,door,UsedFor: a door is used for protection,1 +knob,door,HasA: a door has a knob,1 +hinge,door,HasA: a door has a hinge,1 +lock,door,HasA: a door has a lock,1 +wall,door,PartOf: a door is part of a wall,1 +building,door,PartOf: a door is part of a building,1 +room,door,PartOf: a door is part of a room,1 +swing,door,CapableOf: a door can swing,1 +open,door,CapableOf: a door can open,1 +close,door,CapableOf: a door can close,1 +frame,door,HasPrerequisite: you need a frame before you can have a door,1 +wall,door,HasPrerequisite: you need a wall before you can have a door,1 +building,door,HasPrerequisite: you need a building before you can have a door,1 +passage,door,Causes: a door causes passage,1 +separation,door,Causes: a door causes separation,1 +entry,door,Causes: a door causes entry,1 +exit,door,Causes: a door causes exit,1 +solid,door,HasProperty: a door is solid,1 +heavy,door,HasProperty: a door is heavy,1 +wide,door,HasProperty: a door is wide,1 +shelf,dust,AtLocation: dust settles on a shelf,1 +cleaning,dust,UsedFor: people use dust to clean surfaces,1 +particles,dust,HasA: dust has small particles,1 +air,dust,PartOf: dust is part of the air,1 +spreading,dust,CapableOf: dust can spread easily,1 +debris,dust,MadeOf: dust is made of debris,1 +neglect,dust,HasPrerequisite: dust requires neglect to accumulate,1 +sneeze,dust,Causes: dust causes people to sneeze,1 +fine,dust,HasProperty: dust is fine in texture,1 +living,earth,UsedFor: earth is used for living,1 +solar_system,earth,PartOf: earth is part of the solar system,1 +rotating,earth,CapableOf: earth can rotate,1 +gravity,earth,HasPrerequisite: you need gravity for earth,1 +seasons,earth,Causes: earth causes seasons,1 +round,earth,HasProperty: earth is round,1 +lawnmower,engine,AtLocation: you find an engine in a lawnmower,1 +propel,engine,UsedFor: an engine is used for propel,1 +power,engine,UsedFor: an engine is used for power,1 +generate,engine,UsedFor: an engine is used for generate,1 +piston,engine,HasA: an engine has a piston,1 +cylinder,engine,HasA: an engine has a cylinder,1 +sparkplug,engine,HasA: an engine has a sparkplug,1 +motorcycle,engine,PartOf: an engine is part of a motorcycle,1 +generator,engine,PartOf: an engine is part of a generator,1 +burn,engine,CapableOf: an engine can burn,1 +explode,engine,CapableOf: an engine can explode,1 +make,engine,CapableOf: an engine can make,1 +spark,engine,HasPrerequisite: you need spark before you can use an engine,1 +vibration,engine,Causes: an engine causes vibration,1 +heat,engine,Causes: an engine causes heat,1 +noise,engine,Causes: an engine causes noise,1 +heavy,engine,HasProperty: an engine is heavy,1 +loud,engine,HasProperty: an engine is loud,1 +complex,engine,HasProperty: an engine is complex,1 +sewing,fabric,UsedFor: fabric is used for sewing,1 +clothing,fabric,UsedFor: fabric is used for clothing,1 +upholstery,fabric,UsedFor: fabric is used for upholstery,1 +thread,fabric,HasA: fabric has thread,1 +weave,fabric,HasA: fabric has a weave,1 +shirt,fabric,PartOf: fabric is part of a shirt,1 +curtain,fabric,PartOf: fabric is part of a curtain,1 +covering,fabric,CapableOf: fabric can cover,1 +folding,fabric,CapableOf: fabric can fold,1 +raw_material,fabric,HasPrerequisite: you need raw material before you can make fabric,1 +clothing,fabric,Causes: fabric causes clothing,1 +warmth,fabric,Causes: fabric causes warmth,1 +flexible,fabric,HasProperty: fabric is flexible,1 +soft,fabric,HasProperty: fabric is soft,1 +textured,fabric,HasProperty: fabric is textured,1 +farming,farm,UsedFor: a farm is used for farming,1 +growing,farm,UsedFor: a farm is used for growing food,1 +producing,farm,UsedFor: a farm is used for producing crops,1 +raising,farm,UsedFor: a farm is used for raising animals,1 +harvesting,farm,UsedFor: a farm is used for harvesting produce,1 +crops,farm,HasA: a farm has crops,1 +animals,farm,HasA: a farm has animals,1 +countryside,farm,PartOf: a farm is part of the countryside,1 +rural_area,farm,PartOf: a farm is part of a rural area,1 +producing,farm,CapableOf: a farm can produce food,1 +growing,farm,CapableOf: a farm can grow crops,1 +raising,farm,CapableOf: a farm can raise animals,1 +supplying,farm,CapableOf: a farm can supply food,1 +sustaining,farm,CapableOf: a farm can sustain a family,1 +buildings,farm,MadeOf: a farm is made of buildings,1 +seeds,farm,HasPrerequisite: you need seeds before you can have a farm,1 +tools,farm,HasPrerequisite: you need tools before you can have a farm,1 +labor,farm,HasPrerequisite: you need labor before you can have a farm,1 +growth,farm,Causes: a farm causes growth of crops,1 +harvest,farm,Causes: a farm causes harvest time,1 +income,farm,Causes: a farm causes income for farmers,1 +sustainability,farm,Causes: a farm causes sustainability,1 +large,farm,HasProperty: a farm is large,1 +open,farm,HasProperty: a farm is open,1 +spacious,farm,HasProperty: a farm is spacious,1 +rural,farm,HasProperty: a farm is rural,1 +agricultural,farm,HasProperty: a farm is agricultural,1 +animal,fat,AtLocation: you find fat in an animal,1 +cooking,fat,UsedFor: fat is used for cooking,1 +layer,fat,HasA: fat has a layer,1 +tissue,fat,PartOf: fat is part of tissue,1 +cells,fat,MadeOf: fat is made of cells,1 +animal,fat,HasPrerequisite: you need an animal to get fat,1 +obesity,fat,Causes: fat causes obesity,1 +oily,fat,HasProperty: fat is oily,1 +writing,feather,UsedFor: a feather is used for writing,1 +decoration,feather,UsedFor: a feather is used for decoration,1 +stuffing,feather,UsedFor: a feather is used for stuffing,1 +quill,feather,HasA: a feather has a quill,1 +shaft,feather,HasA: a feather has a shaft,1 +pillow,feather,PartOf: a feather is part of a pillow,1 +flying,feather,CapableOf: a feather can fly,1 +floating,feather,CapableOf: a feather can float,1 +keratin,feather,MadeOf: a feather is made of keratin,1 +protein,feather,MadeOf: a feather is made of protein,1 +itching,feather,Causes: a feather causes itching,1 +allergies,feather,Causes: a feather causes allergies,1 +light,feather,HasProperty: a feather is light,1 +soft,feather,HasProperty: a feather is soft,1 +white,feather,HasProperty: a feather is white,1 +flexible,feather,HasProperty: a feather is flexible,1 +digestion,fiber,UsedFor: fiber is used for digestion,1 +structure,fiber,HasA: fiber has a structure,1 +clothing,fiber,PartOf: fiber is part of clothing,1 +strengthening,fiber,CapableOf: fiber can strengthen materials,1 +cellulose,fiber,MadeOf: fiber is made of cellulose,1 +extraction,fiber,HasPrerequisite: you need extraction before you can have fiber,1 +fullness,fiber,Causes: fiber causes fullness,1 +stringy,fiber,HasProperty: fiber is stringy,1 +growing,field,UsedFor: a field is used for growing crops,1 +grazing,field,UsedFor: a field is used for grazing animals,1 +harvesting,field,UsedFor: a field is used for harvesting produce,1 +sports,field,UsedFor: a field is used for playing sports,1 +crop,field,HasA: a field has crops,1 +boundary,field,HasA: a field has a boundary,1 +countryside,field,PartOf: a field is part of the countryside,1 +ecosystem,field,PartOf: a field is part of an ecosystem,1 +agricultural_land,field,PartOf: a field is part of agricultural land,1 +producing,field,CapableOf: a field can produce crops,1 +supporting,field,CapableOf: a field can support agriculture,1 +sustaining,field,CapableOf: a field can sustain life,1 +growing,field,CapableOf: a field can grow plants,1 +containing,field,CapableOf: a field can contain livestock,1 +vegetation,field,MadeOf: a field is made of vegetation,1 +farming,field,HasPrerequisite: you need farming knowledge before you can use a field,1 +irrigation,field,HasPrerequisite: you need irrigation before you can grow crops in a field,1 +harvest,field,Causes: a field causes a harvest,1 +growth,field,Causes: a field causes growth,1 +livestock_grazing,field,Causes: a field causes livestock to graze,1 +relaxation,field,Causes: a field causes relaxation,1 +open,field,HasProperty: a field is open,1 +vast,field,HasProperty: a field is vast,1 +green,field,HasProperty: a field is green,1 +flat,field,HasProperty: a field is flat,1 +natural,field,HasProperty: a field is natural,1 +swimming,fin,UsedFor: a fin is used for swimming,1 +spine,fin,HasA: a fin has a spine,1 +steering,fin,CapableOf: a fin can steer,1 +cartilage,fin,MadeOf: a fin is made of cartilage,1 +fish_body,fin,HasPrerequisite: a fin needs a fish body,1 +movement,fin,Causes: a fin causes movement,1 +flexible,fin,HasProperty: a fin is flexible,1 +heating,fireplace,UsedFor: a fireplace is used for heating,1 +ambiance,fireplace,UsedFor: a fireplace is used for ambiance,1 +cooking,fireplace,UsedFor: a fireplace is used for cooking,1 +fire,fireplace,HasA: a fireplace has a fire,1 +mantel,fireplace,HasA: a fireplace has a mantel,1 +wall,fireplace,PartOf: a fireplace is part of a wall,1 +warming,fireplace,CapableOf: a fireplace can warm,1 +crackling,fireplace,CapableOf: a fireplace can crackle,1 +matches,fireplace,HasPrerequisite: you need matches before you can light a fireplace,1 +heat,fireplace,Causes: a fireplace causes heat,1 +smoke,fireplace,Causes: a fireplace causes smoke,1 +warmth,fireplace,Causes: a fireplace causes warmth,1 +warm,fireplace,HasProperty: a fireplace is warm,1 +cozy,fireplace,HasProperty: a fireplace is cozy,1 +crackly,fireplace,HasProperty: a fireplace is crackly,1 +eating,flesh,UsedFor: flesh is used for eating,1 +blood_vessels,flesh,HasA: flesh has blood vessels,1 +organism,flesh,PartOf: flesh is part of an organism,1 +healing,flesh,CapableOf: flesh can heal,1 +cells,flesh,MadeOf: flesh is made of cells,1 +animal,flesh,HasPrerequisite: you need an animal before you can get flesh,1 +growth,flesh,Causes: flesh causes growth,1 +soft,flesh,HasProperty: flesh is soft,1 +herding,flock,UsedFor: a flock is used for herding animals,1 +animals,flock,HasA: a flock has animals,1 +community,flock,PartOf: a flock is part of a community,1 +moving,flock,CapableOf: a flock can move together,1 +animals,flock,HasPrerequisite: you need animals before you can have a flock,1 +protection,flock,Causes: a flock causes protection,1 +living,flock,HasProperty: a flock has a living property,1 +decoration,flower,UsedFor: a flower is used for decoration,1 +beauty,flower,UsedFor: a flower is used for beauty,1 +fragrance,flower,UsedFor: a flower is used for fragrance,1 +flowerbed,flower,PartOf: a flower is part of a flowerbed,1 +ecosystem,flower,PartOf: a flower is part of an ecosystem,1 +blooming,flower,CapableOf: a flower can bloom,1 +wilting,flower,CapableOf: a flower can wilt,1 +growing,flower,CapableOf: a flower can grow,1 +producing,flower,CapableOf: a flower can produce pollen,1 +attracting,flower,CapableOf: a flower can attract bees,1 +nature,flower,MadeOf: a flower is made of nature,1 +organic_material,flower,MadeOf: a flower is made of organic material,1 +cells,flower,MadeOf: a flower is made of cells,1 +chlorophyll,flower,MadeOf: a flower is made of chlorophyll,1 +sunlight,flower,HasPrerequisite: a flower needs sunlight,1 +air,flower,HasPrerequisite: a flower needs air,1 +pollination,flower,HasPrerequisite: a flower needs pollination,1 +happiness,flower,Causes: a flower causes happiness,1 +relaxation,flower,Causes: a flower causes relaxation,1 +pollen,flower,Causes: a flower causes pollen,1 +fragrance,flower,Causes: a flower causes fragrance,1 +beauty,flower,Causes: a flower causes beauty,1 +colorful,flower,HasProperty: a flower is colorful,1 +fragrant,flower,HasProperty: a flower is fragrant,1 +beautiful,flower,HasProperty: a flower is beautiful,1 +delicate,flower,HasProperty: a flower is delicate,1 +natural,flower,HasProperty: a flower is natural,1 +refrigerator,food,AtLocation: food is stored in a refrigerator,1 +restaurant,food,AtLocation: food is served in a restaurant,1 +plate,food,AtLocation: food is placed on a plate,1 +grocery_store,food,AtLocation: food is bought at a grocery store,1 +eating,food,UsedFor: food is used for eating,1 +nourishing,food,UsedFor: food is used for nourishing the body,1 +cooking,food,UsedFor: food is used for cooking,1 +feeding,food,UsedFor: food is used for feeding people,1 +sharing,food,UsedFor: food is used for sharing,1 +ingredient,food,HasA: food has ingredients,1 +flavor,food,HasA: food has flavor,1 +nutrition,food,HasA: food has nutrition,1 +label,food,HasA: food has a label,1 +meal,food,PartOf: food is part of a meal,1 +diet,food,PartOf: food is part of a diet,1 +grocery,food,PartOf: food is part of groceries,1 +lunch,food,PartOf: food is part of lunch,1 +breakfast,food,PartOf: food is part of breakfast,1 +spoiling,food,CapableOf: food can spoil,1 +satisfying,food,CapableOf: food can satisfy hunger,1 +appealing,food,CapableOf: food can appeal to people,1 +absorbing,food,CapableOf: food can absorb flavors,1 +burning,food,CapableOf: food can burn,1 +ingredients,food,MadeOf: food is made of ingredients,1 +plants,food,MadeOf: food is made of plants,1 +animals,food,MadeOf: food is made of animals,1 +chemicals,food,MadeOf: food is made of chemicals,1 +preparation,food,HasPrerequisite: food requires preparation,1 +ingredients,food,HasPrerequisite: food requires ingredients,1 +cooking,food,HasPrerequisite: food requires cooking,1 +storage,food,HasPrerequisite: food requires storage,1 +shopping,food,HasPrerequisite: food requires shopping,1 +satisfaction,food,Causes: food causes satisfaction,1 +hunger,food,Causes: food causes hunger,1 +weight_gain,food,Causes: food causes weight gain,1 +health,food,Causes: food causes health,1 +enjoyment,food,Causes: food causes enjoyment,1 +edible,food,HasProperty: food is edible,1 +consumable,food,HasProperty: food is consumable,1 +tasty,food,HasProperty: food is tasty,1 +nutritious,food,HasProperty: food is nutritious,1 +perishable,food,HasProperty: food is perishable,1 +hiking,forest,UsedFor: a forest is used for hiking,1 +trees,forest,HasA: a forest has trees,1 +producing_oxygen,forest,CapableOf: a forest can produce oxygen,1 +trees,forest,MadeOf: a forest is made of trees,1 +green,forest,HasProperty: a forest is green,1 +bowl,fruit,AtLocation: fruit is found in a bowl,1 +basket,fruit,AtLocation: fruit is found in a basket,1 +market,fruit,AtLocation: fruit is found at a market,1 +eating,fruit,UsedFor: fruit is used for eating,1 +cooking,fruit,UsedFor: fruit is used for cooking,1 +decoration,fruit,UsedFor: fruit is used for decoration,1 +vitamins,fruit,HasA: fruit has vitamins,1 +seeds,fruit,HasA: fruit has seeds,1 +meal,fruit,PartOf: fruit is part of a meal,1 +diet,fruit,PartOf: fruit is part of a diet,1 +basket,fruit,PartOf: fruit is part of a fruit basket,1 +ripening,fruit,CapableOf: fruit can ripen,1 +spoiling,fruit,CapableOf: fruit can spoil,1 +growing,fruit,CapableOf: fruit can grow,1 +nature,fruit,MadeOf: fruit is made of natural ingredients,1 +cells,fruit,MadeOf: fruit is made of cells,1 +pollination,fruit,HasPrerequisite: you need pollination to get fruit,1 +sunlight,fruit,HasPrerequisite: fruit needs sunlight to grow,1 +health,fruit,Causes: fruit causes health benefits,1 +energy,fruit,Causes: fruit causes energy,1 +satisfaction,fruit,Causes: eating fruit causes satisfaction,1 +sweet,fruit,HasProperty: fruit is sweet,1 +juicy,fruit,HasProperty: fruit is juicy,1 +edible,fruit,HasProperty: fruit is edible,1 +colorful,fruit,HasProperty: fruit is colorful,1 +heating,fuel,UsedFor: fuel is used for heating,1 +powering,fuel,UsedFor: fuel is used for powering engines,1 +lighting,fuel,UsedFor: fuel is used for lighting,1 +generating,fuel,UsedFor: fuel is used for generating electricity,1 +energy,fuel,HasA: fuel has energy,1 +system,fuel,PartOf: fuel is part of a fuel system,1 +burning,fuel,CapableOf: fuel can burn,1 +exploding,fuel,CapableOf: fuel can explode,1 +heating,fuel,CapableOf: fuel can heat,1 +petroleum,fuel,MadeOf: fuel is made of petroleum,1 +gas,fuel,MadeOf: fuel is made of gas,1 +refining,fuel,HasPrerequisite: you need refining before you can have fuel,1 +pollution,fuel,Causes: fuel causes pollution,1 +motion,fuel,Causes: fuel causes motion,1 +heat,fuel,Causes: fuel causes heat,1 +flammable,fuel,HasProperty: fuel is flammable,1 +liquid,fuel,HasProperty: fuel is liquid,1 +oily,fuel,HasProperty: fuel is oily,1 +dog,fur,AtLocation: you find fur on a dog,1 +bear,fur,AtLocation: you find fur on a bear,1 +insulation,fur,UsedFor: fur is used for insulation,1 +warmth,fur,UsedFor: fur is used for warmth,1 +clothing,fur,UsedFor: fur is used for clothing,1 +hair,fur,HasA: fur has hair,1 +mammal,fur,PartOf: fur is part of a mammal,1 +protein,fur,MadeOf: fur is made of protein,1 +keratin,fur,MadeOf: fur is made of keratin,1 +insulating,fur,CapableOf: fur can insulate,1 +protecting,fur,CapableOf: fur can protect,1 +animal,fur,HasPrerequisite: you need an animal to have fur,1 +shedding,fur,Causes: fur causes shedding,1 +itching,fur,Causes: fur can cause itching,1 +soft,fur,HasProperty: fur is soft,1 +warm,fur,HasProperty: fur is warm,1 +thick,fur,HasProperty: fur is thick,1 +sitting,furniture,UsedFor: furniture is used for sitting,1 +storage,furniture,UsedFor: furniture is used for storage,1 +sleeping,furniture,UsedFor: furniture is used for sleeping,1 +dining,furniture,UsedFor: furniture is used for dining,1 +legs,furniture,HasA: furniture has legs,1 +drawers,furniture,HasA: furniture has drawers,1 +room,furniture,PartOf: furniture is part of a room,1 +supporting,furniture,CapableOf: furniture can support weight,1 +storing,furniture,CapableOf: furniture can store items,1 +room,furniture,HasPrerequisite: you need a room before you can put furniture,1 +comfort,furniture,Causes: furniture causes comfort,1 +clutter,furniture,Causes: furniture causes clutter,1 +heavy,furniture,HasProperty: furniture is heavy,1 +movable,furniture,HasProperty: furniture is movable,1 +grazing,grassland,UsedFor: a grassland is used for grazing,1 +ecosystem,grassland,PartOf: a grassland is part of an ecosystem,1 +sustaining,grassland,CapableOf: a grassland can sustain wildlife,1 +rainfall,grassland,HasPrerequisite: you need rainfall before you can have a grassland,1 +biodiversity,grassland,Causes: a grassland causes biodiversity,1 +open,grassland,HasProperty: a grassland is open,1 +walking,ground,UsedFor: the ground is used for walking,1 +building,ground,UsedFor: the ground is used for building,1 +farming,ground,UsedFor: the ground is used for farming,1 +playing,ground,UsedFor: the ground is used for playing,1 +camping,ground,UsedFor: the ground is used for camping,1 +layer,ground,HasA: the ground has a layer,1 +surface,ground,HasA: the ground has a surface,1 +texture,ground,HasA: the ground has a texture,1 +element,ground,HasA: the ground has an element,1 +depth,ground,HasA: the ground has depth,1 +planet,ground,PartOf: the ground is part of the planet,1 +surface,ground,PartOf: the ground is part of the surface,1 +terrain,ground,PartOf: the ground is part of the terrain,1 +supporting,ground,CapableOf: the ground can support,1 +holding,ground,CapableOf: the ground can hold,1 +absorbing,ground,CapableOf: the ground can absorb,1 +carrying,ground,CapableOf: the ground can carry,1 +eroding,ground,CapableOf: the ground can erode,1 +minerals,ground,MadeOf: the ground is made of minerals,1 +sand,ground,MadeOf: the ground is made of sand,1 +planet,ground,HasPrerequisite: you need a planet before you can have ground,1 +surface,ground,HasPrerequisite: you need a surface before you can have ground,1 +formation,ground,HasPrerequisite: you need formation before you can have ground,1 +deposition,ground,HasPrerequisite: you need deposition before you can have ground,1 +growth,ground,Causes: the ground causes growth,1 +erosion,ground,Causes: the ground causes erosion,1 +stability,ground,Causes: the ground causes stability,1 +support,ground,Causes: the ground causes support,1 +settlement,ground,Causes: the ground causes settlement,1 +solid,ground,HasProperty: the ground is solid,1 +flat,ground,HasProperty: the ground is flat,1 +firm,ground,HasProperty: the ground is firm,1 +natural,ground,HasProperty: the ground is natural,1 +tool_chest,hammer,AtLocation: you find a hammer in a tool chest,1 +driving_nails,hammer,UsedFor: a hammer is used for driving nails,1 +breaking_objects,hammer,UsedFor: a hammer is used for breaking objects,1 +construction,hammer,UsedFor: a hammer is used for construction,1 +pounding,hammer,UsedFor: a hammer is used for pounding,1 +hitting,hammer,CapableOf: a hammer can hit,1 +damaging,hammer,CapableOf: a hammer can damage,1 +flattening,hammer,CapableOf: a hammer can flatten,1 +dents,hammer,Causes: a hammer causes dents,1 +breakage,hammer,Causes: a hammer causes breakage,1 +flatness,hammer,Causes: a hammer causes flatness,1 +heavy,hammer,HasProperty: a hammer is heavy,1 +hard,hammer,HasProperty: a hammer is hard,1 +sturdy,hammer,HasProperty: a hammer is sturdy,1 +solid,hammer,HasProperty: a hammer is solid,1 +opening,handle,UsedFor: a handle is used for opening something,1 +gripping,handle,UsedFor: a handle is used for gripping,1 +cup,handle,PartOf: a handle is part of a cup,1 +suitcase,handle,PartOf: a handle is part of a suitcase,1 +object,handle,HasPrerequisite: you need an object before you can have a handle,1 +opening,handle,Causes: a handle causes opening,1 +carrying,handle,Causes: a handle causes carrying,1 +smooth,handle,HasProperty: a handle is smooth,1 +textured,handle,HasProperty: a handle is textured,1 +cool,handle,HasProperty: a handle is cool,1 +thinking,head,UsedFor: the head is used for thinking,1 +brain,head,HasA: a head has a brain,1 +human,head,PartOf: a head is part of a human,1 +nodding,head,CapableOf: a head can nod,1 +thinking,head,Causes: a head causes thinking,1 +rounded,head,HasProperty: a head is rounded,1 +neighborhood,home,AtLocation: you find a home in a neighborhood,1 +living,home,UsedFor: a home is used for living,1 +sleeping,home,UsedFor: a home is used for sleeping,1 +relaxing,home,UsedFor: a home is used for relaxing,1 +cooking,home,UsedFor: a home is used for cooking,1 +room,home,HasA: a home has a room,1 +roof,home,HasA: a home has a roof,1 +community,home,PartOf: a home is part of a community,1 +sheltering,home,CapableOf: a home can shelter people,1 +comfort,home,Causes: a home causes comfort,1 +security,home,Causes: a home causes security,1 +stability,home,Causes: a home causes stability,1 +safe,home,HasProperty: a home is safe,1 +private,home,HasProperty: a home is private,1 +neighborhood,house,AtLocation: you find a house in a neighborhood,1 +living,house,UsedFor: a house is used for living,1 +protection,house,UsedFor: a house is used for protection,1 +sleeping,house,UsedFor: a house is used for sleeping,1 +storage,house,UsedFor: a house is used for storage,1 +roof,house,HasA: a house has a roof,1 +town,house,PartOf: a house is part of a town,1 +village,house,PartOf: a house is part of a village,1 +city,house,PartOf: a house is part of a city,1 +housing,house,CapableOf: a house can house people,1 +containing,house,CapableOf: a house can contain rooms,1 +foundation,house,HasPrerequisite: you need a foundation before you can have a house,1 +comfort,house,Causes: a house causes comfort,1 +warmth,house,Causes: a house causes warmth,1 +privacy,house,Causes: a house causes privacy,1 +safety,house,Causes: a house causes safety,1 +sturdy,house,HasProperty: a house is sturdy,1 +permanent,house,HasProperty: a house is permanent,1 +enclosed,house,HasProperty: a house is enclosed,1 +large,house,HasProperty: a house is large,1 +adorning,jewelry,UsedFor: jewelry is used for adorning,1 +collection,jewelry,PartOf: jewelry is part of a collection,1 +shiny,jewelry,HasProperty: jewelry is shiny,1 +valuable,jewelry,HasProperty: jewelry is valuable,1 +decorative,jewelry,HasProperty: jewelry is decorative,1 +quenching_thirst,juice,UsedFor: juice is used for quenching thirst,1 +liquid,juice,HasA: juice has liquid,1 +breakfast,juice,PartOf: juice is part of breakfast,1 +flowing,juice,CapableOf: juice can flow,1 +energy,juice,Causes: juice causes energy,1 +sweet,juice,HasProperty: juice has the property of being sweet,1 +hiding,jungle,UsedFor: a jungle is used for hiding,1 +exploration,jungle,UsedFor: a jungle is used for exploration,1 +animal,jungle,HasA: a jungle has an animal,1 +nature,jungle,PartOf: a jungle is part of nature,1 +blocking,jungle,CapableOf: a jungle can block sunlight,1 +providing,jungle,CapableOf: a jungle can provide shelter,1 +nature,jungle,MadeOf: a jungle is made of nature,1 +rain,jungle,HasPrerequisite: you need rain before you can have a jungle,1 +humidity,jungle,Causes: a jungle causes humidity,1 +darkness,jungle,Causes: a jungle causes darkness,1 +dense,jungle,HasProperty: a jungle is dense,1 +humid,jungle,HasProperty: a jungle is humid,1 +green,jungle,HasProperty: a jungle is green,1 +keyring,key,AtLocation: you find keys on a keyring,1 +unlocking,key,UsedFor: a key is used for unlocking,1 +opening,key,UsedFor: a key is used for opening,1 +locking,key,UsedFor: a key is used for locking,1 +hole,key,HasA: a key has a hole,1 +keychain,key,PartOf: a key is part of a keychain,1 +turning,key,CapableOf: a key can turn,1 +fitting,key,CapableOf: a key can fit,1 +brass,key,MadeOf: a key is made of brass,1 +keyhole,key,HasPrerequisite: you need a keyhole before using a key,1 +lock,key,HasPrerequisite: you need a lock before using a key,1 +opening,key,Causes: a key causes opening,1 +locking,key,Causes: a key causes locking,1 +entry,key,Causes: a key causes entry,1 +metallic,key,HasProperty: a key is metallic,1 +small,key,HasProperty: a key is small,1 +rigid,key,HasProperty: a key is rigid,1 +restaurant,kitchen,AtLocation: you find a kitchen in a restaurant,1 +cooking,kitchen,UsedFor: a kitchen is used for cooking,1 +eating,kitchen,UsedFor: a kitchen is used for eating,1 +preparing_food,kitchen,UsedFor: a kitchen is used for preparing food,1 +washing_dishes,kitchen,UsedFor: a kitchen is used for washing dishes,1 +refrigerator,kitchen,HasA: a kitchen has a refrigerator,1 +stove,kitchen,HasA: a kitchen has a stove,1 +sink,kitchen,HasA: a kitchen has a sink,1 +cabinets,kitchen,HasA: a kitchen has cabinets,1 +countertops,kitchen,HasA: a kitchen has countertops,1 +building,kitchen,PartOf: a kitchen is part of a building,1 +heating,kitchen,CapableOf: a kitchen is capable of heating food,1 +storing,kitchen,CapableOf: a kitchen is capable of storing food,1 +cleaning,kitchen,CapableOf: a kitchen is capable of cleaning dishes,1 +building,kitchen,HasPrerequisite: a kitchen requires a building,1 +plumbing,kitchen,HasPrerequisite: a kitchen requires plumbing,1 +electricity,kitchen,HasPrerequisite: a kitchen requires electricity,1 +meals,kitchen,Causes: a kitchen causes meals,1 +cooking_smells,kitchen,Causes: a kitchen causes cooking smells,1 +dishes_to_get_dirty,kitchen,Causes: a kitchen causes dishes to get dirty,1 +functional,kitchen,HasProperty: a kitchen is functional,1 +cleanable,kitchen,HasProperty: a kitchen is cleanable,1 +organized,kitchen,HasProperty: a kitchen can be organized,1 +swimming,lake,UsedFor: a lake is used for swimming,1 +boating,lake,UsedFor: a lake is used for boating,1 +fishing,lake,UsedFor: a lake is used for fishing,1 +plants,lake,HasA: a lake has plants,1 +rocks,lake,HasA: a lake has rocks,1 +nature,lake,PartOf: a lake is part of nature,1 +ecosystem,lake,PartOf: a lake is part of an ecosystem,1 +reflecting,lake,CapableOf: a lake can reflect the sky,1 +cooling,lake,CapableOf: a lake can cool down the air,1 +storing,lake,CapableOf: a lake can store water,1 +moisture,lake,Causes: a lake causes moisture in the air,1 +relaxation,lake,Causes: a lake causes relaxation,1 +still,lake,HasProperty: a lake is still,1 +deep,lake,HasProperty: a lake is deep,1 +large,lake,HasProperty: a lake is large,1 +clear,lake,HasProperty: a lake is clear,1 +farming,land,UsedFor: land is used for farming,1 +building,land,UsedFor: land is used for building,1 +trees,land,HasA: land has trees,1 +planet,land,PartOf: land is part of a planet,1 +supporting,land,CapableOf: land can support life,1 +surface,land,HasPrerequisite: you need a surface before you can have land,1 +growth,land,Causes: land causes growth,1 +settlement,land,Causes: land causes settlement,1 +solid,land,HasProperty: land is solid,1 +natural,land,HasProperty: land is natural,1 +cooking,leaf,UsedFor: leaves are used for cooking,1 +decoration,leaf,UsedFor: leaves are used for decoration,1 +mulching,leaf,UsedFor: leaves are used for mulching,1 +vein,leaf,HasA: a leaf has a vein,1 +foliage,leaf,PartOf: a leaf is part of foliage,1 +falling,leaf,CapableOf: a leaf can fall,1 +changing_color,leaf,CapableOf: a leaf can change color,1 +photosynthesizing,leaf,CapableOf: a leaf can photosynthesize,1 +chlorophyll,leaf,MadeOf: a leaf is made of chlorophyll,1 +cellulose,leaf,MadeOf: a leaf is made of cellulose,1 +sunlight,leaf,HasPrerequisite: leaves need sunlight to grow,1 +decay,leaf,Causes: leaves cause decay when they decompose,1 +compost,leaf,Causes: leaves cause compost when they rot,1 +leaf_mold,leaf,Causes: leaves cause leaf mold when decomposed,1 +green,leaf,HasProperty: leaves are green,1 +flat,leaf,HasProperty: leaves are flat,1 +thin,leaf,HasProperty: leaves are thin,1 +flexible,leaf,HasProperty: leaves are flexible,1 +smooth,leaf,HasProperty: leaves are smooth,1 +human,leg,AtLocation: you find a leg on a human,1 +walking,leg,UsedFor: a leg is used for walking,1 +knee,leg,HasA: a leg has a knee,1 +kicking,leg,CapableOf: a leg can kick,1 +movement,leg,Causes: legs cause movement,1 +long,leg,HasProperty: a leg is long,1 +covering,lid,UsedFor: a lid is used for covering something,1 +sealing,lid,UsedFor: a lid is used for sealing a container,1 +protecting,lid,UsedFor: a lid is used for protecting contents,1 +closing,lid,UsedFor: a lid is used for closing something,1 +rim,lid,HasA: a lid has a rim,1 +surface,lid,HasA: a lid has a surface,1 +covering,lid,CapableOf: a lid can cover something,1 +sealing,lid,CapableOf: a lid can seal a container,1 +protecting,lid,CapableOf: a lid can protect contents,1 +preservation,lid,Causes: a lid causes preservation of food,1 +freshness,lid,Causes: a lid causes freshness of contents,1 +protection,lid,Causes: a lid causes protection of contents,1 +cooking,meat,UsedFor: meat is used for cooking,1 +meal,meat,PartOf: meat is part of a meal,1 +spoiling,meat,CapableOf: meat can spoil,1 +animal,meat,MadeOf: meat is made of animal,1 +animal,meat,HasPrerequisite: you need an animal to get meat,1 +satiety,meat,Causes: meat causes satiety,1 +edible,meat,HasProperty: meat is edible,1 +medicine_cabinet,medicine,AtLocation: you keep medicine in a medicine cabinet,1 +pharmacy,medicine,AtLocation: you find medicine at a pharmacy,1 +treating,medicine,UsedFor: medicine is used for treating illnesses,1 +curing,medicine,UsedFor: medicine is used for curing diseases,1 +healing,medicine,UsedFor: medicine is used for healing wounds,1 +relieving,medicine,UsedFor: medicine is used for relieving pain,1 +preventing,medicine,UsedFor: medicine is used for preventing sickness,1 +label,medicine,HasA: medicine has a label with instructions,1 +cap,medicine,HasA: medicine has a cap to seal it,1 +instructions,medicine,HasA: medicine has instructions for use,1 +dosage,medicine,HasA: medicine has a recommended dosage,1 +kit,medicine,PartOf: medicine is part of a first-aid kit,1 +treatment,medicine,PartOf: medicine is part of a treatment plan,1 +regimen,medicine,PartOf: medicine is part of a daily regimen,1 +curing,medicine,CapableOf: medicine is capable of curing diseases,1 +healing,medicine,CapableOf: medicine is capable of healing injuries,1 +treating,medicine,CapableOf: medicine is capable of treating symptoms,1 +preventing,medicine,CapableOf: medicine is capable of preventing illness,1 +soothing,medicine,CapableOf: medicine is capable of soothing discomfort,1 +chemicals,medicine,MadeOf: medicine is made of chemicals,1 +ingredients,medicine,MadeOf: medicine is made of various ingredients,1 +pills,medicine,MadeOf: medicine is made of pills or tablets,1 +liquid,medicine,MadeOf: medicine is made of liquid substances,1 +substances,medicine,MadeOf: medicine is made of active substances,1 +prescription,medicine,HasPrerequisite: medicine has a prerequisite of a prescription,1 +illness,medicine,HasPrerequisite: medicine has a prerequisite of being sick,1 +diagnosis,medicine,HasPrerequisite: medicine has a prerequisite of diagnosis,1 +label,medicine,HasPrerequisite: medicine has a prerequisite of having a label,1 +relief,medicine,Causes: medicine causes relief from symptoms,1 +healing,medicine,Causes: medicine causes healing of the body,1 +cure,medicine,Causes: medicine causes a cure for illness,1 +side_effects,medicine,Causes: medicine causes side effects,1 +recovery,medicine,Causes: medicine causes recovery from sickness,1 +bitter,medicine,HasProperty: medicine has a bitter taste,1 +liquid,medicine,HasProperty: medicine has a liquid form,1 +pill,medicine,HasProperty: medicine has a pill form,1 +small,medicine,HasProperty: medicine has small pills,1 +packaged,medicine,HasProperty: medicine is packaged in containers,1 +construction,metal,UsedFor: metal is used for construction,1 +tools,metal,UsedFor: metal is used for tools,1 +density,metal,HasA: metal has density,1 +building,metal,PartOf: metal is part of a building,1 +conducting,metal,CapableOf: metal can conduct electricity,1 +mining,metal,HasPrerequisite: metal requires mining,1 +shiny,metal,HasProperty: metal is shiny,1 +heavy,metal,HasProperty: metal is heavy,1 +solid,metal,HasProperty: metal is solid,1 +climbing,mountain,UsedFor: a mountain is used for climbing,1 +trail,mountain,HasA: a mountain has a trail,1 +range,mountain,PartOf: a mountain is part of a range,1 +erode,mountain,CapableOf: a mountain can erode,1 +elevation,mountain,HasPrerequisite: you need elevation to have a mountain,1 +avalanche,mountain,Causes: a mountain can cause an avalanche,1 +tall,mountain,HasProperty: a mountain is tall,1 +eating,mouth,UsedFor: a mouth is used for eating,1 +speaking,mouth,UsedFor: a mouth is used for speaking,1 +breathing,mouth,UsedFor: a mouth is used for breathing,1 +teeth,mouth,HasA: a mouth has teeth,1 +tongue,mouth,HasA: a mouth has a tongue,1 +face,mouth,PartOf: a mouth is part of the face,1 +biting,mouth,CapableOf: a mouth can bite,1 +chewing,mouth,CapableOf: a mouth can chew,1 +face,mouth,HasPrerequisite: you need a face to have a mouth,1 +skull,mouth,HasPrerequisite: you need a skull to have a mouth,1 +digestion,mouth,Causes: a mouth causes digestion,1 +speech,mouth,Causes: a mouth causes speech,1 +wet,mouth,HasProperty: a mouth is wet,1 +soft,mouth,HasProperty: a mouth is soft,1 +dentist_office,mouthpiece,AtLocation: you find a mouthpiece in a dentist office,1 +breathing,mouthpiece,UsedFor: a mouthpiece is used for breathing,1 +speaking,mouthpiece,UsedFor: a mouthpiece is used for speaking,1 +smoking,mouthpiece,UsedFor: a mouthpiece is used for smoking,1 +sports,mouthpiece,UsedFor: a mouthpiece is used for sports,1 +hole,mouthpiece,HasA: a mouthpiece has a hole,1 +opening,mouthpiece,HasA: a mouthpiece has an opening,1 +telephone,mouthpiece,PartOf: a mouthpiece is part of a telephone,1 +snorkel,mouthpiece,PartOf: a mouthpiece is part of a snorkel,1 +protecting,mouthpiece,CapableOf: a mouthpiece can protect,1 +comfort,mouthpiece,Causes: a mouthpiece causes comfort,1 +protection,mouthpiece,Causes: a mouthpiece causes protection,1 +small,mouthpiece,HasProperty: a mouthpiece is small,1 +hard,mouthpiece,HasProperty: a mouthpiece is hard,1 +movement,muscle,UsedFor: a muscle is used for movement,1 +contract,muscle,CapableOf: a muscle can contract,1 +tissue,muscle,MadeOf: a muscle is made of tissue,1 +calcium,muscle,HasPrerequisite: you need calcium before you can have healthy muscles,1 +strength,muscle,Causes: a muscle causes strength,1 +strong,muscle,HasProperty: a muscle is strong,1 +sewing_kit,needle,AtLocation: a needle is found in a sewing kit,1 +sewing,needle,UsedFor: a needle is used for sewing,1 +knitting,needle,UsedFor: a needle is used for knitting,1 +medical_injection,needle,UsedFor: a needle is used for medical injection,1 +threading,needle,UsedFor: a needle is used for threading,1 +sharp_point,needle,HasA: a needle has a sharp point,1 +sewing_kit,needle,PartOf: a needle is part of a sewing kit,1 +medical_kit,needle,PartOf: a needle is part of a medical kit,1 +piercing,needle,CapableOf: a needle can pierce fabric,1 +injecting,needle,CapableOf: a needle can inject medication,1 +sewing,needle,CapableOf: a needle can sew fabric together,1 +making_holes,needle,CapableOf: a needle can make holes,1 +thread,needle,HasPrerequisite: you need thread before you can use a needle,1 +syringe,needle,HasPrerequisite: you need a syringe before you can use a needle,1 +pain,needle,Causes: a needle causes pain,1 +bleeding,needle,Causes: a needle causes bleeding,1 +stitching,needle,Causes: a needle causes stitching,1 +injection,needle,Causes: a needle causes injection,1 +thin,needle,HasProperty: a needle is thin,1 +sharp,needle,HasProperty: a needle is sharp,1 +pointy,needle,HasProperty: a needle is pointy,1 +metallic,needle,HasProperty: a needle is metallic,1 +small,needle,HasProperty: a needle is small,1 +sailing,ocean,UsedFor: the ocean is used for sailing,1 +swimming,ocean,UsedFor: the ocean is used for swimming,1 +transportation,ocean,UsedFor: the ocean is used for transportation,1 +waves,ocean,HasA: the ocean has waves,1 +coral,ocean,HasA: the ocean has coral,1 +nature,ocean,PartOf: the ocean is part of nature,1 +world,ocean,PartOf: the ocean is part of the world,1 +moving,ocean,CapableOf: the ocean can move,1 +creating,ocean,CapableOf: the ocean can create waves,1 +drowning,ocean,CapableOf: the ocean can drown,1 +minerals,ocean,MadeOf: the ocean is made of minerals,1 +coastline,ocean,HasPrerequisite: you need coastline for an ocean,1 +landmass,ocean,HasPrerequisite: you need landmass for an ocean,1 +weather,ocean,Causes: the ocean causes weather,1 +storms,ocean,Causes: the ocean causes storms,1 +salty,ocean,HasProperty: the ocean is salty,1 +blue,ocean,HasProperty: the ocean is blue,1 +deep,ocean,HasProperty: the ocean is deep,1 +pan,oil,AtLocation: you find oil in a pan,1 +machine,oil,AtLocation: oil is found in machinery,1 +cooking,oil,UsedFor: oil is used for cooking,1 +lubrication,oil,UsedFor: oil is used for lubrication,1 +heating,oil,UsedFor: oil is used for heating,1 +machinery,oil,UsedFor: oil is used in machinery,1 +droplet,oil,HasA: oil has droplets,1 +slick,oil,HasA: oil has slicks,1 +burning,oil,CapableOf: oil can burn,1 +spilling,oil,CapableOf: oil can spill,1 +flowing,oil,CapableOf: oil can flow,1 +petroleum,oil,MadeOf: oil is made of petroleum,1 +extraction,oil,HasPrerequisite: you need extraction to get oil,1 +fire,oil,Causes: oil causes fire,1 +slip,oil,Causes: oil causes slip,1 +shine,oil,Causes: oil causes shine,1 +slippery,oil,HasProperty: oil is slippery,1 +viscous,oil,HasProperty: oil is viscous,1 +greasy,oil,HasProperty: oil is greasy,1 +thick,oil,HasProperty: oil is thick,1 +shiny,oil,HasProperty: oil is shiny,1 +smelting,ore,UsedFor: ore is used for smelting,1 +melting,ore,CapableOf: ore can melt when heated,1 +digging,ore,HasPrerequisite: you need to dig before getting ore,1 +mining,ore,Causes: ore causes mining to happen,1 +hard,ore,HasProperty: ore is hard,1 +decoration,petal,UsedFor: a petal is used for decoration,1 +attracting_insects,petal,UsedFor: a petal is used for attracting insects,1 +making_tea,petal,UsedFor: petals are used for making tea,1 +color,petal,HasA: a petal has a color,1 +falling_off,petal,CapableOf: a petal can fall off,1 +plant_tissue,petal,MadeOf: a petal is made of plant tissue,1 +cells,petal,MadeOf: a petal is made of cells,1 +pollen_transfer,petal,Causes: petals cause pollen transfer,1 +colorful,petal,HasProperty: a petal is colorful,1 +delicate,petal,HasProperty: a petal is delicate,1 +soft,petal,HasProperty: a petal is soft,1 +sun,plant,AtLocation: you find a plant in the sun,1 +decoration,plant,UsedFor: a plant is used for decoration,1 +oxygen,plant,UsedFor: a plant is used for oxygen,1 +ecosystem,plant,PartOf: a plant is part of an ecosystem,1 +landscape,plant,PartOf: a plant is part of a landscape,1 +nature,plant,PartOf: a plant is part of nature,1 +grow,plant,CapableOf: a plant can grow,1 +photosynthesize,plant,CapableOf: a plant can photosynthesize,1 +produce,plant,CapableOf: a plant can produce fruit,1 +cells,plant,MadeOf: a plant is made of cells,1 +minerals,plant,MadeOf: a plant is made of minerals,1 +chlorophyll,plant,MadeOf: a plant is made of chlorophyll,1 +sunlight,plant,HasPrerequisite: you need sunlight to have a plant,1 +oxygen,plant,Causes: a plant causes oxygen,1 +habitat,plant,Causes: a plant causes habitat,1 +green,plant,HasProperty: a plant is green,1 +living,plant,HasProperty: a plant is living,1 +growing,plant,HasProperty: a plant is growing,1 +rooted,plant,HasProperty: a plant is rooted,1 +fishing,river,UsedFor: a river is used for fishing,1 +transportation,river,UsedFor: a river is used for transportation,1 +banks,river,HasA: a river has banks,1 +current,river,HasA: a river has a current,1 +ecosystem,river,PartOf: a river is part of an ecosystem,1 +flowing,river,CapableOf: a river can flow,1 +flooding,river,CapableOf: a river can flood,1 +mountains,river,HasPrerequisite: you need mountains before you can have a river,1 +erosion,river,Causes: a river causes erosion,1 +wet,river,HasProperty: a river is wet,1 +moving,river,HasProperty: a river is moving,1 +natural,river,HasProperty: a river is natural,1 +bouncing,rubber,UsedFor: rubber is used for bouncing,1 +stretching,rubber,UsedFor: rubber is used for stretching,1 +sealing,rubber,UsedFor: rubber is used for sealing,1 +insulating,rubber,UsedFor: rubber is used for insulating,1 +cushioning,rubber,UsedFor: rubber is used for cushioning,1 +elasticity,rubber,HasA: rubber has elasticity,1 +tire,rubber,PartOf: rubber is part of a tire,1 +eraser,rubber,PartOf: rubber is part of an eraser,1 +band,rubber,PartOf: rubber is part of a band,1 +stretching,rubber,CapableOf: rubber can stretch,1 +latex,rubber,MadeOf: rubber is made of latex,1 +petroleum,rubber,MadeOf: rubber is made of petroleum,1 +vulcanization,rubber,HasPrerequisite: rubber requires vulcanization,1 +squeaking,rubber,Causes: rubber causes squeaking,1 +bouncy,rubber,HasProperty: rubber is bouncy,1 +stretchy,rubber,HasProperty: rubber is stretchy,1 +waterproof,rubber,HasProperty: rubber is waterproof,1 +durable,rubber,HasProperty: rubber is durable,1 +swimming,sea,UsedFor: a sea is used for swimming,1 +waves,sea,HasA: a sea has waves,1 +planet,sea,PartOf: a sea is part of a planet,1 +storming,sea,CapableOf: a sea can storm,1 +humidity,sea,Causes: a sea causes humidity,1 +salty,sea,HasProperty: a sea is salty,1 +planting,seed,UsedFor: a seed is used for planting,1 +growing,seed,UsedFor: a seed is used for growing,1 +embryo,seed,HasA: a seed has an embryo,1 +endosperm,seed,HasA: a seed has an endosperm,1 +germinate,seed,CapableOf: a seed can germinate,1 +grow,seed,CapableOf: a seed can grow,1 +cotyledon,seed,MadeOf: a seed is made of cotyledon,1 +warmth,seed,HasPrerequisite: you need warmth before you can plant a seed,1 +small,seed,HasProperty: a seed is small,1 +hard,seed,HasProperty: a seed is hard,1 +dry,seed,HasProperty: a seed is dry,1 +building,shade,AtLocation: you find shade next to a building,1 +cooling,shade,UsedFor: shade is used for cooling,1 +protection,shade,UsedFor: shade is used for protection from sun,1 +relaxation,shade,UsedFor: shade is used for relaxation,1 +darkness,shade,HasA: shade has darkness,1 +coolness,shade,HasA: shade has coolness,1 +landscape,shade,PartOf: shade is part of landscape,1 +blocking,shade,CapableOf: shade can block sunlight,1 +sheltering,shade,CapableOf: shade can shelter plants,1 +shadow,shade,MadeOf: shade is made of shadow,1 +atmosphere,shade,MadeOf: shade is made of atmosphere,1 +sunlight,shade,HasPrerequisite: shade requires sunlight as a prerequisite,1 +object,shade,HasPrerequisite: shade requires an object as a prerequisite,1 +comfort,shade,Causes: shade causes comfort,1 +rest,shade,Causes: shade causes rest,1 +dark,shade,HasProperty: shade is dark,1 +cool,shade,HasProperty: shade is cool,1 +protective,shade,HasProperty: shade is protective,1 +human,skin,AtLocation: humans have skin,1 +protection,skin,UsedFor: skin is used for protection,1 +layer,skin,HasA: skin has a layer,1 +healing,skin,CapableOf: skin can heal,1 +cells,skin,MadeOf: skin is made of cells,1 +sensation,skin,Causes: skin causes sensation,1 +flexible,skin,HasProperty: skin is flexible,1 +flowerbed,soil,AtLocation: soil is found in a flowerbed,1 +growing,soil,UsedFor: soil is used for growing plants,1 +planting,soil,UsedFor: soil is used for planting seeds,1 +moisture,soil,HasA: soil has moisture,1 +nutrients,soil,HasA: soil has nutrients,1 +minerals,soil,MadeOf: soil is made of minerals,1 +organic_matter,soil,MadeOf: soil is made of organic matter,1 +growth,soil,Causes: soil causes plant growth,1 +decomposition,soil,Causes: soil causes decomposition of organic matter,1 +dark,soil,HasProperty: soil is often dark in color,1 +moist,soil,HasProperty: soil is often moist,1 +sink,spout,AtLocation: a spout is found on a sink,1 +pouring,spout,UsedFor: a spout is used for pouring,1 +dispensing,spout,UsedFor: a spout is used for dispensing liquid,1 +directing,spout,UsedFor: a spout is used for directing water flow,1 +opening,spout,HasA: a spout has an opening,1 +watering_can,spout,PartOf: a spout is part of a watering can,1 +dripping,spout,CapableOf: a spout is capable of dripping,1 +flowing,spout,CapableOf: a spout is capable of flowing,1 +attachment,spout,HasPrerequisite: a spout requires attachment to function,1 +stream,spout,Causes: a spout causes a stream of liquid,1 +narrow,spout,HasProperty: a spout is narrow,1 +pointed,spout,HasProperty: a spout is pointed,1 +curved,spout,HasProperty: a spout is curved,1 +riverbed,stone,AtLocation: you find a stone in a riverbed,1 +mountains,stone,AtLocation: you find stones in mountains,1 +tool,stone,UsedFor: a stone is used for a tool,1 +building,stone,UsedFor: stones are used for building,1 +weight,stone,UsedFor: a stone is used as a weight,1 +decoration,stone,UsedFor: stones are used for decoration,1 +corner,stone,HasA: a stone has a corner,1 +edge,stone,HasA: a stone has an edge,1 +surface,stone,HasA: a stone has a surface,1 +path,stone,PartOf: a stone is part of a path,1 +wall,stone,PartOf: a stone is part of a wall,1 +foundation,stone,PartOf: a stone is part of a foundation,1 +rolling,stone,CapableOf: a stone can roll,1 +breaking,stone,CapableOf: a stone can break,1 +sinking,stone,CapableOf: a stone can sink,1 +sediment,stone,MadeOf: a stone is made of sediment,1 +mining,stone,HasPrerequisite: you need mining before you can get a stone,1 +erosion,stone,HasPrerequisite: you need erosion before you can get a stone,1 +pain,stone,Causes: a stone can cause pain,1 +breakage,stone,Causes: a stone can cause breakage,1 +reflection,stone,Causes: a smooth stone can cause reflection,1 +hard,stone,HasProperty: a stone is hard,1 +heavy,stone,HasProperty: a stone is heavy,1 +cold,stone,HasProperty: a stone is cold,1 +rough,stone,HasProperty: a stone is rough,1 +fishing_rod,string,AtLocation: you find string on a fishing rod,1 +fishing,string,UsedFor: string is used for fishing,1 +sewing,string,UsedFor: string is used for sewing,1 +wrapping,string,UsedFor: string is used for wrapping packages,1 +bow_and_arrow,string,PartOf: string is part of bow and arrow,1 +balloon,string,PartOf: string is part of balloon,1 +puppet,string,PartOf: string is part of puppet,1 +tying,string,CapableOf: string can tie things together,1 +thread,string,MadeOf: string is made of thread,1 +flexible,string,HasProperty: string is flexible,1 +thin,string,HasProperty: string is thin,1 +long,string,HasProperty: string is long,1 +baking,sugar,AtLocation: you find sugar in baking,1 +bowl,sugar,AtLocation: you find sugar in a bowl,1 +pantry,sugar,AtLocation: you find sugar in a pantry,1 +sweetening,sugar,UsedFor: sugar is used for sweetening,1 +baking,sugar,UsedFor: sugar is used for baking,1 +cooking,sugar,UsedFor: sugar is used for cooking,1 +preserving,sugar,UsedFor: sugar is used for preserving,1 +flavoring,sugar,UsedFor: sugar is used for flavoring,1 +crystals,sugar,HasA: sugar has crystals,1 +sweetness,sugar,HasA: sugar has sweetness,1 +granules,sugar,HasA: sugar has granules,1 +moisture,sugar,HasA: sugar has moisture,1 +frosting,sugar,PartOf: sugar is part of frosting,1 +cake,sugar,PartOf: sugar is part of cake,1 +jam,sugar,PartOf: sugar is part of jam,1 +sweetening,sugar,CapableOf: sugar can sweeten,1 +dissolving,sugar,CapableOf: sugar can dissolve,1 +fermenting,sugar,CapableOf: sugar can ferment,1 +preserving,sugar,CapableOf: sugar can preserve,1 +sugar_cane,sugar,MadeOf: sugar is made of sugar cane,1 +sugar_beet,sugar,MadeOf: sugar is made of sugar beet,1 +glucose,sugar,MadeOf: sugar is made of glucose,1 +sucrose,sugar,MadeOf: sugar is made of sucrose,1 +fructose,sugar,MadeOf: sugar is made of fructose,1 +harvesting,sugar,HasPrerequisite: you need harvesting before you can have sugar,1 +processing,sugar,HasPrerequisite: you need processing before you can use sugar,1 +refining,sugar,HasPrerequisite: you need refining before you can use sugar,1 +growing,sugar,HasPrerequisite: you need growing before you can have sugar,1 +diabetes,sugar,Causes: sugar causes diabetes,1 +cavities,sugar,Causes: sugar causes cavities,1 +weight_gain,sugar,Causes: sugar causes weight gain,1 +fermentation,sugar,Causes: sugar causes fermentation,1 +white,sugar,HasProperty: sugar is white,1 +sweet,sugar,HasProperty: sugar is sweet,1 +crystalline,sugar,HasProperty: sugar is crystalline,1 +granular,sugar,HasProperty: sugar is granular,1 +soluble,sugar,HasProperty: sugar is soluble,1 +animal,tail,AtLocation: you find a tail on an animal,1 +balance,tail,UsedFor: a tail is used for balance,1 +communication,tail,UsedFor: a tail is used for communication,1 +swatting,tail,UsedFor: a tail is used for swatting flies,1 +dog,tail,PartOf: a tail is part of a dog,1 +wagging,tail,CapableOf: a tail can wag,1 +flicking,tail,CapableOf: a tail can flick,1 +vertebrate,tail,HasPrerequisite: you need a vertebrate to have a tail,1 +interest,tail,Causes: a tail causes interest,1 +attention,tail,Causes: a wagging tail causes attention,1 +long,tail,HasProperty: a tail can be long,1 +bushy,tail,HasProperty: a tail can be bushy,1 +striped,tail,HasProperty: a tail can be striped,1 +garage,toolbox,AtLocation: a toolbox is found in a garage,1 +storing,toolbox,UsedFor: a toolbox is used for storing tools,1 +organizing,toolbox,UsedFor: a toolbox is used for organizing equipment,1 +tools,toolbox,HasA: a toolbox has tools inside,1 +screws,toolbox,HasA: a toolbox has screws inside,1 +nuts,toolbox,HasA: a toolbox has nuts inside,1 +shed,toolbox,PartOf: a toolbox is part of a shed,1 +holding,toolbox,CapableOf: a toolbox can hold various tools,1 +transporting,toolbox,CapableOf: a toolbox can transport tools from place to place,1 +tools,toolbox,HasPrerequisite: you need tools before you can have a toolbox,1 +organization,toolbox,Causes: a toolbox causes tools to be organized,1 +accessibility,toolbox,Causes: a toolbox causes tools to be easily accessible,1 +portable,toolbox,HasProperty: a toolbox is portable,1 +durable,toolbox,HasProperty: a toolbox is durable,1 +sturdy,toolbox,HasProperty: a toolbox is sturdy,1 +chewing,tooth,UsedFor: teeth are used for chewing food,1 +enamel,tooth,HasA: teeth have enamel,1 +jaw,tooth,PartOf: teeth are part of the jaw,1 +biting,tooth,CapableOf: teeth can bite,1 +jaw,tooth,HasPrerequisite: you need a jaw to have teeth,1 +pain,tooth,Causes: teeth can cause pain when they decay,1 +hard,tooth,HasProperty: teeth are hard,1 +firing,trigger,UsedFor: a trigger is used for firing,1 +spring,trigger,HasA: a trigger has a spring,1 +releasing,trigger,CapableOf: a trigger can release a hammer,1 +firing,trigger,Causes: a trigger causes firing,1 +metallic,trigger,HasProperty: a trigger has a metallic property,1 +bicycle,wheel,AtLocation: you find a wheel on a bicycle,1 +rolling,wheel,UsedFor: a wheel is used for rolling,1 +rotating,wheel,UsedFor: a wheel is used for rotating,1 +transportation,wheel,UsedFor: a wheel is used for transportation,1 +spoke,wheel,HasA: a wheel has a spoke,1 +rim,wheel,HasA: a wheel has a rim,1 +hub,wheel,HasA: a wheel has a hub,1 +bicycle,wheel,PartOf: a wheel is part of a bicycle,1 +turning,wheel,CapableOf: a wheel can turn,1 +moving,wheel,CapableOf: a wheel can move,1 +spinning,wheel,CapableOf: a wheel can spin,1 +axle,wheel,HasPrerequisite: you need an axle before you can have a wheel,1 +rim,wheel,HasPrerequisite: you need a rim before you can have a wheel,1 +movement,wheel,Causes: a wheel causes movement,1 +rotation,wheel,Causes: a wheel causes rotation,1 +rolling,wheel,Causes: a wheel causes rolling,1 +circular,wheel,HasProperty: a wheel has the property of being circular,1 +round,wheel,HasProperty: a wheel has the property of being round,1 +looking,window,UsedFor: a window is used for looking,1 +ventilation,window,UsedFor: a window is used for ventilation,1 +letting_light_in,window,UsedFor: a window is used for letting light in,1 +frame,window,HasA: a window has a frame,1 +building,window,PartOf: a window is part of a building,1 +wall,window,PartOf: a window is part of a wall,1 +opening,window,CapableOf: a window can open,1 +closing,window,CapableOf: a window can close,1 +breaking,window,CapableOf: a window can break,1 +construction,window,HasPrerequisite: you need construction before you can have a window,1 +view,window,Causes: a window causes a view,1 +draft,window,Causes: a window causes draft,1 +transparent,window,HasProperty: a window is transparent,1 +sturdy,window,HasProperty: a window is sturdy,1 +rectangular,window,HasProperty: a window is rectangular,1 +lift,wing,UsedFor: a wing is used for lift,1 +support,wing,UsedFor: a wing is used for support,1 +flight,wing,UsedFor: a wing is used for flight,1 +flap,wing,CapableOf: a wing can flap,1 +lift,wing,Causes: a wing causes lift,1 +flight,wing,Causes: a wing causes flight,1 +flat,wing,HasProperty: a wing is flat,1 +curved,wing,HasProperty: a wing is curved,1 +woodworking,workshop,UsedFor: a workshop is used for woodworking,1 +workbench,workshop,HasA: a workshop has a workbench,1 +building,workshop,PartOf: a workshop is part of a building,1 +tools,workshop,HasPrerequisite: you need tools before you can use a workshop,1 +creation,workshop,Causes: a workshop causes creation of items,1 +spacious,workshop,HasProperty: a workshop is spacious,1 diff --git a/data/enhancement_log.csv b/data/enhancement_log.csv new file mode 100644 index 0000000..4e5d454 --- /dev/null +++ b/data/enhancement_log.csv @@ -0,0 +1,1397 @@ +source_word,phase,timestamp,edges_generated,edges_accepted,edges_duplicate,edges_oov +accordion,1,2026-02-15T14:26:28.290233,9,2,0,7 +acorn,1,2026-02-15T14:26:33.639575,15,6,0,9 +agate,1,2026-02-15T14:26:40.086002,20,1,0,19 +airplane,1,2026-02-15T14:26:53.658341,38,3,0,35 +alabaster,1,2026-02-15T14:26:57.298303,10,1,0,9 +albatross,1,2026-02-15T14:27:00.898983,9,1,0,8 +aluminum,1,2026-02-15T14:27:08.776739,25,1,0,24 +anchor,1,2026-02-15T14:27:16.811365,23,6,0,17 +anise,1,2026-02-15T14:27:20.936402,12,1,0,11 +ant,1,2026-02-15T14:27:28.563069,24,1,0,23 +anvil,1,2026-02-15T14:27:33.741180,13,2,0,11 +apartment,1,2026-02-15T14:27:41.200151,0,0,0,0 +ash,1,2026-02-15T14:27:44.898830,12,2,0,10 +asparagus,1,2026-02-15T14:27:52.175931,21,3,0,18 +auk,1,2026-02-15T14:27:55.627381,8,0,0,8 +avocet,1,2026-02-15T14:28:00.046023,0,0,0,0 +awl,1,2026-02-15T14:28:09.432976,27,4,0,23 +axe,1,2026-02-15T14:28:16.877816,21,2,1,18 +azalea,1,2026-02-15T14:28:20.300038,9,1,0,8 +bamboo,1,2026-02-15T14:28:27.871326,25,4,0,21 +banana,1,2026-02-15T14:28:34.266653,19,1,0,18 +barbet,1,2026-02-15T14:28:37.810747,9,1,0,8 +bark,1,2026-02-15T14:28:41.131615,8,2,0,6 +barn,1,2026-02-15T14:28:57.211644,45,4,1,40 +barometer,1,2026-02-15T14:29:05.218344,20,4,0,16 +barracuda,1,2026-02-15T14:29:08.819485,9,1,0,8 +barrel,1,2026-02-15T14:29:17.283459,26,4,0,22 +basil,1,2026-02-15T14:29:24.281554,19,1,0,18 +bass,1,2026-02-15T14:29:39.838198,45,3,0,42 +bat,1,2026-02-15T14:29:45.429955,17,1,0,16 +bean,1,2026-02-15T14:29:54.291334,26,1,2,23 +beaver,1,2026-02-15T14:30:03.012631,25,2,0,23 +bed,1,2026-02-15T14:30:19.225683,45,2,1,42 +bee,1,2026-02-15T14:30:39.475829,0,0,0,0 +beef,1,2026-02-15T14:30:54.101523,45,3,0,42 +beer,1,2026-02-15T14:31:04.324918,33,0,0,33 +beet,1,2026-02-15T14:31:10.262410,17,3,0,14 +bellows,1,2026-02-15T14:31:17.564802,22,2,0,20 +bin,1,2026-02-15T14:31:23.975660,20,2,0,18 +bison,1,2026-02-15T14:31:27.140558,7,0,0,7 +blackbird,1,2026-02-15T14:31:33.202823,17,2,0,15 +bladder,1,2026-02-15T14:31:36.307965,9,0,0,9 +blade,1,2026-02-15T14:31:44.034269,17,0,0,17 +blowfish,1,2026-02-15T14:31:50.040690,17,0,0,17 +boat,1,2026-02-15T14:32:05.411923,44,7,1,36 +bobwhite,1,2026-02-15T14:32:08.426898,8,1,0,7 +bomb,1,2026-02-15T14:32:24.632342,45,2,0,43 +bongo,1,2026-02-15T14:32:31.099426,18,2,0,16 +booby,1,2026-02-15T14:32:34.312717,0,0,0,0 +bottle,1,2026-02-15T14:32:47.680283,37,3,0,34 +bowerbird,1,2026-02-15T14:32:51.254935,9,1,0,8 +box,1,2026-02-15T14:32:58.631405,22,2,0,20 +boxwood,1,2026-02-15T14:33:01.598614,9,3,0,6 +bronze,1,2026-02-15T14:33:06.918374,18,2,0,16 +broom,1,2026-02-15T14:33:13.419536,17,2,0,15 +bucket,1,2026-02-15T14:33:24.673266,33,1,0,32 +bulbul,1,2026-02-15T14:33:27.945460,8,2,0,6 +bull,1,2026-02-15T14:33:33.177881,15,0,0,15 +bunting,1,2026-02-15T14:33:40.233671,20,4,0,16 +burger,1,2026-02-15T14:33:43.378245,9,0,0,9 +burlap,1,2026-02-15T14:33:51.201048,21,0,0,21 +burrow,1,2026-02-15T14:33:54.415823,9,1,0,8 +butter,1,2026-02-15T14:33:59.595298,16,0,0,16 +butterfly,1,2026-02-15T14:34:07.007759,22,1,0,21 +buzzard,1,2026-02-15T14:34:10.063946,7,0,0,7 +cabbage,1,2026-02-15T14:34:17.243764,22,5,0,17 +cabinet,1,2026-02-15T14:34:24.799436,23,1,0,22 +caddy,1,2026-02-15T14:34:29.963950,14,2,0,12 +caliper,1,2026-02-15T14:34:34.617336,12,1,0,11 +canary,1,2026-02-15T14:34:37.363260,7,0,0,7 +candle,1,2026-02-15T14:34:50.343298,36,2,1,33 +candy,1,2026-02-15T14:35:00.092753,31,2,0,29 +cannabis,1,2026-02-15T14:35:04.647125,16,0,0,16 +cannon,1,2026-02-15T14:35:15.112674,31,2,0,29 +canoe,1,2026-02-15T14:35:18.195988,9,1,0,8 +canon,1,2026-02-15T14:35:21.180896,9,1,0,8 +car,1,2026-02-15T14:35:37.159232,45,3,1,41 +cardamom,1,2026-02-15T14:35:45.376171,23,3,0,20 +cardinal,1,2026-02-15T14:35:53.085530,22,2,0,20 +carnation,1,2026-02-15T14:35:56.141435,8,0,0,8 +cart,1,2026-02-15T14:36:04.308938,25,1,0,24 +carton,1,2026-02-15T14:36:10.449647,16,2,0,14 +cassowary,1,2026-02-15T14:36:13.543143,6,0,0,6 +cat,1,2026-02-15T14:36:23.365051,28,2,3,23 +cattail,1,2026-02-15T14:36:33.546111,29,1,0,28 +cauliflower,1,2026-02-15T14:36:38.561205,14,1,0,13 +cedar,1,2026-02-15T14:36:44.896565,21,3,0,18 +celery,1,2026-02-15T14:36:50.567629,15,4,0,11 +cello,1,2026-02-15T14:36:54.128317,9,1,0,8 +centipede,1,2026-02-15T14:36:57.100591,6,0,0,6 +cereal,1,2026-02-15T14:37:00.060067,9,1,0,8 +chalk,1,2026-02-15T14:37:06.790363,21,0,0,21 +chard,1,2026-02-15T14:37:13.409305,20,4,0,16 +cheese,1,2026-02-15T14:37:28.017185,45,3,0,42 +chest,1,2026-02-15T14:37:44.037352,45,2,0,43 +chickadee,1,2026-02-15T14:37:47.377462,7,1,0,6 +chicken,1,2026-02-15T14:37:57.328431,31,3,0,28 +chili,1,2026-02-15T14:38:04.536290,22,1,0,21 +chimney,1,2026-02-15T14:38:07.866365,9,1,0,8 +chimpanzee,1,2026-02-15T14:38:18.290025,30,0,0,30 +chips,1,2026-02-15T14:38:25.165571,24,4,0,20 +chisel,1,2026-02-15T14:38:29.101325,11,1,0,10 +chocolate,1,2026-02-15T14:38:44.798349,45,0,0,45 +church,1,2026-02-15T14:38:56.753410,33,2,0,31 +cicada,1,2026-02-15T14:38:59.801250,7,3,0,4 +cinnamon,1,2026-02-15T14:39:07.929615,23,1,0,22 +clarinet,1,2026-02-15T14:39:17.638171,26,2,0,24 +clay,1,2026-02-15T14:39:22.632400,16,2,0,14 +coach,1,2026-02-15T14:39:25.611373,8,0,0,8 +coal,1,2026-02-15T14:39:31.669084,19,0,0,19 +coca,1,2026-02-15T14:39:34.738250,9,0,0,9 +cock,1,2026-02-15T14:39:38.214704,10,3,0,7 +cockatiel,1,2026-02-15T14:39:43.395436,14,1,0,13 +cockatoo,1,2026-02-15T14:39:46.895934,8,0,0,8 +coffee,1,2026-02-15T14:39:58.914094,37,1,0,36 +comb,1,2026-02-15T14:40:08.107140,23,0,0,23 +computer,1,2026-02-15T14:40:11.592877,9,2,0,7 +condor,1,2026-02-15T14:40:14.789143,7,0,0,7 +coop,1,2026-02-15T14:40:18.904154,12,1,0,11 +coot,1,2026-02-15T14:40:29.125676,32,4,0,28 +copper,1,2026-02-15T14:40:33.891749,14,1,0,13 +coriander,1,2026-02-15T14:40:39.252471,0,0,0,0 +cork,1,2026-02-15T14:40:43.719862,13,3,0,10 +cormorant,1,2026-02-15T14:40:47.233892,7,1,0,6 +corn,1,2026-02-15T14:41:05.167263,0,0,0,0 +cornbread,1,2026-02-15T14:41:08.314653,9,2,0,7 +cotinga,1,2026-02-15T14:41:11.971200,8,0,0,8 +cotton,1,2026-02-15T14:41:26.636872,45,1,2,42 +cowbird,1,2026-02-15T14:41:30.036757,8,1,0,7 +crab,1,2026-02-15T14:41:39.367141,30,2,1,27 +cranberry,1,2026-02-15T14:41:44.319885,14,1,0,13 +crappie,1,2026-02-15T14:41:47.770212,8,1,0,7 +creek,1,2026-02-15T14:41:52.869330,16,2,0,14 +crow,1,2026-02-15T14:41:55.863530,8,1,0,7 +cuckoo,1,2026-02-15T14:41:58.860183,7,0,0,7 +cucumber,1,2026-02-15T14:42:07.580197,28,7,0,21 +cumin,1,2026-02-15T14:42:16.148396,25,0,0,25 +curassow,1,2026-02-15T14:42:21.305687,14,1,0,13 +curry,1,2026-02-15T14:42:26.629509,15,3,0,12 +cypress,1,2026-02-15T14:42:29.982395,8,2,0,6 +daffodil,1,2026-02-15T14:42:34.137923,10,2,0,8 +daisy,1,2026-02-15T14:42:37.526646,9,1,0,8 +dandelion,1,2026-02-15T14:42:52.220017,42,7,0,35 +decanter,1,2026-02-15T14:43:04.322087,30,1,0,29 +deer,1,2026-02-15T14:43:12.064114,24,2,0,22 +den,1,2026-02-15T14:43:20.306883,24,2,1,21 +denim,1,2026-02-15T14:43:30.251086,29,1,0,28 +desk,1,2026-02-15T14:43:41.851483,33,3,1,29 +diamond,1,2026-02-15T14:43:50.523889,27,0,2,25 +dirt,1,2026-02-15T14:44:01.466677,37,1,1,35 +ditch,1,2026-02-15T14:44:04.546982,9,2,0,7 +dodo,1,2026-02-15T14:44:07.100461,1,0,0,1 +dogwood,1,2026-02-15T14:44:10.320245,9,2,0,7 +dolphin,1,2026-02-15T14:44:15.875991,0,0,0,0 +dove,1,2026-02-15T14:44:18.843669,8,2,0,6 +drawer,1,2026-02-15T14:44:29.470189,0,0,0,0 +dress,1,2026-02-15T14:44:37.599013,24,3,0,21 +drill,1,2026-02-15T14:44:45.317463,23,1,0,22 +drum,1,2026-02-15T14:44:52.723557,21,3,0,18 +duplex,1,2026-02-15T14:44:56.012199,0,0,0,0 +eagle,1,2026-02-15T14:45:02.818315,20,1,0,19 +earthworm,1,2026-02-15T14:45:09.088925,18,0,0,18 +earwig,1,2026-02-15T14:45:11.819169,7,1,0,6 +eel,1,2026-02-15T14:45:15.086572,9,2,0,7 +egg,1,2026-02-15T14:45:26.763978,35,4,1,30 +eggplant,1,2026-02-15T14:45:32.583614,13,0,0,13 +emerald,1,2026-02-15T14:45:35.693204,8,1,0,7 +emu,1,2026-02-15T14:45:38.673120,8,0,0,8 +evergreen,1,2026-02-15T14:45:41.996015,9,1,0,8 +falcon,1,2026-02-15T14:45:44.673148,5,1,0,4 +fence,1,2026-02-15T14:45:52.173989,21,1,0,20 +ferret,1,2026-02-15T14:45:59.290291,20,2,0,18 +fig,1,2026-02-15T14:46:03.893890,13,0,0,13 +finch,1,2026-02-15T14:46:11.571297,0,0,0,0 +firefly,1,2026-02-15T14:46:18.145161,19,2,0,17 +fish,1,2026-02-15T14:46:32.651211,42,2,4,36 +flamingo,1,2026-02-15T14:46:36.032749,8,2,0,6 +flask,1,2026-02-15T14:46:47.268402,34,2,0,32 +flint,1,2026-02-15T14:46:51.860242,13,2,0,11 +flounder,1,2026-02-15T14:46:55.088290,9,1,0,8 +flute,1,2026-02-15T14:47:01.151505,18,2,0,16 +fly,1,2026-02-15T14:47:07.656382,17,0,0,17 +flycatcher,1,2026-02-15T14:47:11.054655,7,1,0,6 +fox,1,2026-02-15T14:47:17.506769,20,2,0,18 +furrow,1,2026-02-15T14:47:20.791839,9,1,0,8 +gallery,1,2026-02-15T14:47:33.859455,37,2,0,35 +gannet,1,2026-02-15T14:47:36.928368,8,1,0,7 +garden,1,2026-02-15T14:47:49.032555,36,2,1,33 +garnet,1,2026-02-15T14:47:52.918531,10,2,0,8 +gazelle,1,2026-02-15T14:48:00.596547,22,4,1,17 +gem,1,2026-02-15T14:48:04.752502,13,2,0,11 +ginger,1,2026-02-15T14:48:09.919776,17,2,0,15 +ginseng,1,2026-02-15T14:48:15.626699,16,3,0,13 +gladiola,1,2026-02-15T14:48:19.138623,8,1,0,7 +glass,1,2026-02-15T14:48:24.405917,14,0,1,13 +gnocchi,1,2026-02-15T14:48:28.226128,7,0,0,7 +gold,1,2026-02-15T14:48:34.216597,18,0,0,18 +goldfish,1,2026-02-15T14:48:42.347475,23,4,0,19 +goose,1,2026-02-15T14:48:47.613961,16,1,0,15 +gorilla,1,2026-02-15T14:48:56.200505,25,0,0,25 +granite,1,2026-02-15T14:49:00.769393,15,2,0,13 +grass,1,2026-02-15T14:49:10.715842,4,2,1,1 +grebe,1,2026-02-15T14:49:16.113627,14,3,0,11 +greenhouse,1,2026-02-15T14:49:21.293556,16,2,0,14 +grouper,1,2026-02-15T14:49:25.475524,11,2,0,9 +grouse,1,2026-02-15T14:49:28.617243,8,1,0,7 +guitar,1,2026-02-15T14:49:37.761779,26,1,0,25 +gull,1,2026-02-15T14:49:41.161280,7,1,0,6 +gun,1,2026-02-15T14:49:55.890396,41,4,3,34 +gymnasium,1,2026-02-15T14:50:09.414400,34,1,0,33 +hacksaw,1,2026-02-15T14:50:14.223327,13,2,0,11 +haircloth,1,2026-02-15T14:50:19.259688,14,1,0,13 +ham,1,2026-02-15T14:50:24.621431,18,1,0,17 +hamburger,1,2026-02-15T14:50:33.964118,28,5,0,23 +handgun,1,2026-02-15T14:50:44.764204,31,2,0,29 +harmonica,1,2026-02-15T14:50:52.832482,21,2,1,18 +harp,1,2026-02-15T14:51:02.714220,26,2,0,24 +hawk,1,2026-02-15T14:51:05.845345,9,1,0,8 +hay,1,2026-02-15T14:51:08.788261,9,2,0,7 +heart,1,2026-02-15T14:51:11.931002,9,0,0,9 +hearth,1,2026-02-15T14:51:15.227739,9,1,0,8 +heron,1,2026-02-15T14:51:18.382768,7,2,0,5 +herring,1,2026-02-15T14:51:21.516995,9,3,0,6 +hibiscus,1,2026-02-15T14:51:25.094439,9,1,0,8 +hickory,1,2026-02-15T14:51:29.694591,11,3,0,8 +hoatzin,1,2026-02-15T14:51:32.624765,5,1,0,4 +hollow,1,2026-02-15T14:51:35.669271,8,1,0,7 +holly,1,2026-02-15T14:51:38.734587,8,0,0,8 +hornbill,1,2026-02-15T14:51:42.131946,8,0,0,8 +horsetail,1,2026-02-15T14:51:45.441590,9,1,0,8 +housefly,1,2026-02-15T14:51:48.807839,8,1,0,7 +hummingbird,1,2026-02-15T14:51:56.915567,23,3,0,20 +husk,1,2026-02-15T14:52:02.107342,14,2,0,12 +ibis,1,2026-02-15T14:52:05.517748,7,1,0,6 +ice,1,2026-02-15T14:52:21.265134,0,0,0,0 +insect,1,2026-02-15T14:52:24.488309,9,1,0,8 +iris,1,2026-02-15T14:52:27.573864,9,1,0,8 +iron,1,2026-02-15T14:52:32.225744,14,0,0,14 +jack,1,2026-02-15T14:52:35.849773,9,0,0,9 +jacket,1,2026-02-15T14:52:44.583571,25,4,0,21 +jar,1,2026-02-15T14:52:57.655292,36,2,0,34 +jay,1,2026-02-15T14:53:04.349197,19,3,0,16 +jicama,1,2026-02-15T14:53:07.744457,9,1,0,8 +jointer,1,2026-02-15T14:53:13.835572,17,3,0,14 +jug,1,2026-02-15T14:53:20.051677,18,1,0,17 +juniper,1,2026-02-15T14:53:23.272678,8,1,0,7 +kale,1,2026-02-15T14:53:29.181739,18,1,0,17 +kayak,1,2026-02-15T14:53:32.256120,9,2,0,7 +kestrel,1,2026-02-15T14:53:35.299341,7,0,0,7 +kettle,1,2026-02-15T14:53:45.471012,29,3,0,26 +kingfisher,1,2026-02-15T14:53:52.042707,18,3,0,15 +kite,1,2026-02-15T14:53:55.147709,9,1,0,8 +kiwi,1,2026-02-15T14:54:04.999698,27,2,0,25 +knife,1,2026-02-15T14:54:15.141526,28,3,3,22 +kohlrabi,1,2026-02-15T14:54:19.076199,0,0,0,0 +lacebug,1,2026-02-15T14:54:22.269261,8,0,0,8 +ladder,1,2026-02-15T14:54:31.874988,27,3,0,24 +lantern,1,2026-02-15T14:54:40.687827,0,0,0,0 +lark,1,2026-02-15T14:54:43.664694,8,1,0,7 +leather,1,2026-02-15T14:54:51.103329,24,1,1,22 +lemon,1,2026-02-15T14:54:57.307478,19,1,0,18 +lemur,1,2026-02-15T14:55:00.673204,9,0,0,9 +lettuce,1,2026-02-15T14:55:10.469394,21,1,0,20 +level,1,2026-02-15T14:55:17.590719,20,2,0,18 +lever,1,2026-02-15T14:55:22.882177,15,1,0,14 +library,1,2026-02-15T14:55:30.908756,23,1,0,22 +lighter,1,2026-02-15T14:55:36.745828,17,2,0,15 +lilac,1,2026-02-15T14:55:40.002165,8,0,0,8 +lily,1,2026-02-15T14:55:43.273393,9,1,0,8 +linen,1,2026-02-15T14:55:50.835989,0,0,0,0 +lion,1,2026-02-15T14:55:54.459514,9,0,0,9 +lobster,1,2026-02-15T14:56:01.077008,20,3,0,17 +lorikeet,1,2026-02-15T14:56:04.701815,9,1,0,8 +lotus,1,2026-02-15T14:56:12.368554,22,3,0,19 +lovebird,1,2026-02-15T14:56:15.779662,9,1,0,8 +lynx,1,2026-02-15T14:56:19.111406,8,0,0,8 +lyre,1,2026-02-15T14:56:22.376130,9,1,0,8 +mace,1,2026-02-15T14:56:28.051852,16,1,0,15 +magnesium,1,2026-02-15T14:56:31.441745,10,0,0,10 +magpie,1,2026-02-15T14:56:34.547251,8,2,0,6 +mahogany,1,2026-02-15T14:56:37.631683,8,2,0,6 +mall,1,2026-02-15T14:56:41.069512,9,1,0,8 +mallard,1,2026-02-15T14:56:49.302833,24,2,0,22 +mandolin,1,2026-02-15T14:56:54.663862,0,0,0,0 +mango,1,2026-02-15T14:57:01.207189,20,3,0,17 +maple,1,2026-02-15T14:57:04.131334,0,0,0,0 +marble,1,2026-02-15T14:57:13.069222,26,3,0,23 +marjoram,1,2026-02-15T14:57:18.484958,16,3,0,13 +marmoset,1,2026-02-15T14:57:27.872639,23,1,0,22 +marmot,1,2026-02-15T14:57:35.796919,20,0,1,19 +martin,1,2026-02-15T14:57:38.825167,8,1,0,7 +meadow,1,2026-02-15T14:57:48.123279,27,1,0,26 +mealybug,1,2026-02-15T14:57:51.198413,6,0,0,6 +mercury,1,2026-02-15T14:57:55.555551,14,0,0,14 +meteorite,1,2026-02-15T14:57:58.968021,9,1,0,8 +mica,1,2026-02-15T14:58:02.864318,12,1,0,11 +micrometer,1,2026-02-15T14:58:06.098045,9,1,0,8 +milk,1,2026-02-15T14:58:16.376132,32,2,0,30 +mine,1,2026-02-15T14:58:19.450227,9,1,0,8 +minnow,1,2026-02-15T14:58:22.783702,8,3,0,5 +mold,1,2026-02-15T14:58:27.798131,16,0,0,16 +mole,1,2026-02-15T14:58:30.478509,7,1,0,6 +moped,1,2026-02-15T14:58:40.483926,29,1,1,27 +mortar,1,2026-02-15T14:58:43.459705,9,0,0,9 +moss,1,2026-02-15T14:58:54.740408,37,5,0,32 +mug,1,2026-02-15T14:59:01.609408,21,3,0,18 +mushroom,1,2026-02-15T14:59:06.209997,15,1,0,14 +nail,1,2026-02-15T14:59:11.689051,16,1,0,15 +nectarine,1,2026-02-15T14:59:15.345718,8,2,0,6 +nest,1,2026-02-15T14:59:18.539750,9,2,0,7 +nickel,1,2026-02-15T14:59:24.112479,17,1,0,16 +nightingale,1,2026-02-15T14:59:31.331500,17,1,0,16 +nightjar,1,2026-02-15T14:59:34.784331,7,0,0,7 +nut,1,2026-02-15T14:59:40.695263,18,4,0,14 +nutmeg,1,2026-02-15T14:59:47.994438,21,1,0,20 +nylon,1,2026-02-15T14:59:52.619413,15,0,0,15 +oak,1,2026-02-15T14:59:59.004754,21,3,0,18 +oboe,1,2026-02-15T15:00:17.457909,44,2,0,42 +office,1,2026-02-15T15:00:25.944921,26,3,0,23 +oilcan,1,2026-02-15T15:00:29.432136,9,0,0,9 +okra,1,2026-02-15T15:00:32.837997,9,1,0,8 +onion,1,2026-02-15T15:00:38.805880,19,1,0,18 +opener,1,2026-02-15T15:00:45.556966,20,3,0,17 +orange,1,2026-02-15T15:00:49.492161,11,0,0,11 +orca,1,2026-02-15T15:00:52.730982,7,1,0,6 +orchard,1,2026-02-15T15:01:07.783531,43,0,0,43 +orchid,1,2026-02-15T15:01:11.131070,9,2,0,7 +oregano,1,2026-02-15T15:01:22.380456,30,3,0,27 +organ,1,2026-02-15T15:01:34.147457,34,2,0,32 +oriole,1,2026-02-15T15:01:37.582546,7,1,0,6 +osprey,1,2026-02-15T15:01:46.239908,21,2,0,19 +ostrich,1,2026-02-15T15:01:49.605920,9,0,0,9 +owl,1,2026-02-15T15:01:54.703960,14,2,0,12 +oxpecker,1,2026-02-15T15:02:01.413106,17,1,0,16 +pail,1,2026-02-15T15:02:05.192546,9,1,0,8 +papaya,1,2026-02-15T15:02:10.357690,14,2,0,12 +paper,1,2026-02-15T15:02:19.610119,27,4,0,23 +paprika,1,2026-02-15T15:02:27.119790,20,0,0,20 +parakeet,1,2026-02-15T15:02:37.906218,30,2,0,28 +parsley,1,2026-02-15T15:02:43.711112,19,3,0,16 +partridge,1,2026-02-15T15:02:46.844476,7,1,0,6 +pasture,1,2026-02-15T15:02:50.000590,9,2,0,7 +pea,1,2026-02-15T15:02:54.879942,15,5,0,10 +peach,1,2026-02-15T15:03:01.088932,19,3,0,16 +peacock,1,2026-02-15T15:03:04.642966,9,0,0,9 +pebble,1,2026-02-15T15:03:10.389456,15,2,0,13 +pelican,1,2026-02-15T15:03:13.609175,7,1,0,6 +penguin,1,2026-02-15T15:03:16.522149,8,1,0,7 +peony,1,2026-02-15T15:03:19.559728,7,1,0,6 +pepper,1,2026-02-15T15:03:28.731394,29,2,0,27 +peppermint,1,2026-02-15T15:03:33.343708,13,1,0,12 +petrel,1,2026-02-15T15:03:35.875277,4,0,0,4 +pewter,1,2026-02-15T15:03:39.152437,9,2,0,7 +pheasant,1,2026-02-15T15:03:47.034402,21,0,0,21 +phone,1,2026-02-15T15:03:56.788551,30,2,0,28 +piano,1,2026-02-15T15:04:11.407734,42,2,0,40 +pick,1,2026-02-15T15:04:16.211543,13,0,0,13 +pickle,1,2026-02-15T15:04:23.375830,21,3,0,18 +pigeon,1,2026-02-15T15:04:35.695306,38,3,0,35 +pike,1,2026-02-15T15:04:42.031148,17,1,0,16 +pine,1,2026-02-15T15:04:46.452652,13,1,0,12 +pineapple,1,2026-02-15T15:04:54.224348,21,0,0,21 +pistol,1,2026-02-15T15:05:00.523540,19,2,0,17 +pit,1,2026-02-15T15:05:10.483644,29,2,0,27 +pitcher,1,2026-02-15T15:05:17.419842,19,1,0,18 +pizza,1,2026-02-15T15:05:21.402038,12,2,0,10 +plane,1,2026-02-15T15:05:31.543122,32,3,0,29 +planer,1,2026-02-15T15:05:38.585044,20,3,0,17 +plastic,1,2026-02-15T15:05:45.233861,21,2,1,18 +platinum,1,2026-02-15T15:05:49.525906,13,0,0,13 +plow,1,2026-02-15T15:05:55.485316,16,4,0,12 +pod,1,2026-02-15T15:05:58.495478,8,1,0,7 +polyester,1,2026-02-15T15:06:02.885296,14,0,0,14 +pond,1,2026-02-15T15:06:12.337109,0,0,0,0 +poplar,1,2026-02-15T15:06:19.422456,20,3,0,17 +poppy,1,2026-02-15T15:06:25.541843,19,2,0,17 +porch,1,2026-02-15T15:06:33.589632,24,1,0,23 +posey,1,2026-02-15T15:06:36.599084,7,1,0,6 +pot,1,2026-02-15T15:06:45.504636,25,2,0,23 +potassium,1,2026-02-15T15:06:48.155551,8,1,0,7 +potato,1,2026-02-15T15:06:57.513340,0,0,0,0 +prison,1,2026-02-15T15:07:09.401436,0,0,0,0 +puffin,1,2026-02-15T15:07:12.660450,0,0,0,0 +pulley,1,2026-02-15T15:07:17.240347,12,2,0,10 +punch,1,2026-02-15T15:07:21.749738,12,0,0,12 +puppy,1,2026-02-15T15:07:29.457999,24,1,0,23 +python,1,2026-02-15T15:07:32.547678,8,0,0,8 +quail,1,2026-02-15T15:07:35.071621,5,1,0,4 +quartz,1,2026-02-15T15:07:43.695814,28,1,0,27 +quetzal,1,2026-02-15T15:07:47.143680,7,1,0,6 +rabbit,1,2026-02-15T15:07:54.973562,23,2,0,21 +radish,1,2026-02-15T15:08:02.238909,20,5,0,15 +rail,1,2026-02-15T15:08:05.290522,9,3,0,6 +rasp,1,2026-02-15T15:08:10.784540,17,1,0,16 +rat,1,2026-02-15T15:08:16.399328,17,1,0,16 +recorder,1,2026-02-15T15:08:19.565353,9,1,0,8 +revolver,1,2026-02-15T15:08:28.772787,0,0,0,0 +rhea,1,2026-02-15T15:08:32.079476,8,1,0,7 +rhinoceros,1,2026-02-15T15:08:39.793964,18,0,1,17 +rhododendron,1,2026-02-15T15:08:44.931638,11,1,0,10 +rice,1,2026-02-15T15:08:59.188895,45,4,0,41 +ridge,1,2026-02-15T15:09:02.301683,0,0,0,0 +rifle,1,2026-02-15T15:09:11.140649,25,2,0,23 +roach,1,2026-02-15T15:09:16.864776,15,2,0,13 +roadrunner,1,2026-02-15T15:09:23.481048,17,0,0,17 +robin,1,2026-02-15T15:09:27.046463,9,4,0,5 +rock,1,2026-02-15T15:09:34.977061,23,3,0,20 +rook,1,2026-02-15T15:09:44.490204,26,1,1,24 +root,1,2026-02-15T15:09:50.719646,19,1,0,18 +rope,1,2026-02-15T15:10:00.000992,0,0,0,0 +rose,1,2026-02-15T15:10:04.545515,14,2,0,12 +ruby,1,2026-02-15T15:10:08.967696,13,1,0,12 +rust,1,2026-02-15T15:10:12.122971,9,0,0,9 +saddle,1,2026-02-15T15:10:23.074982,30,3,0,27 +sailboat,1,2026-02-15T15:10:31.237585,24,2,0,22 +salad,1,2026-02-15T15:10:34.861802,12,1,0,11 +salmon,1,2026-02-15T15:10:48.741335,42,1,0,41 +salt,1,2026-02-15T15:10:57.504755,28,0,1,27 +sapsucker,1,2026-02-15T15:11:00.702683,7,0,0,7 +sardine,1,2026-02-15T15:11:04.278028,8,2,0,6 +saw,1,2026-02-15T15:11:07.571501,9,1,0,8 +saxophone,1,2026-02-15T15:11:16.243648,24,1,0,23 +scale,1,2026-02-15T15:11:27.852362,35,3,0,32 +scarf,1,2026-02-15T15:11:35.236175,22,2,0,20 +school,1,2026-02-15T15:11:44.313926,26,3,0,23 +seaweed,1,2026-02-15T15:11:55.116971,31,1,0,30 +shell,1,2026-02-15T15:12:00.463482,17,0,0,17 +shelter,1,2026-02-15T15:12:09.267149,23,2,0,21 +ship,1,2026-02-15T15:12:17.427610,25,3,0,22 +shotgun,1,2026-02-15T15:12:22.460463,16,2,0,14 +silo,1,2026-02-15T15:12:29.930207,20,1,1,18 +silver,1,2026-02-15T15:12:44.008926,44,0,0,44 +skate,1,2026-02-15T15:12:53.590751,28,4,0,24 +slug,1,2026-02-15T15:12:56.399311,7,1,0,6 +snail,1,2026-02-15T15:12:59.587969,7,2,0,5 +snapper,1,2026-02-15T15:13:02.821292,8,3,0,5 +soda,1,2026-02-15T15:13:10.867053,25,4,0,21 +soot,1,2026-02-15T15:13:13.909608,9,0,0,9 +soup,1,2026-02-15T15:13:22.002394,26,0,0,26 +spade,1,2026-02-15T15:13:28.342754,18,2,0,16 +spaghetti,1,2026-02-15T15:13:31.132573,9,0,0,9 +spear,1,2026-02-15T15:13:36.480184,17,1,0,16 +spider,1,2026-02-15T15:13:46.170305,30,1,0,29 +spinach,1,2026-02-15T15:13:52.555692,18,5,0,13 +sponge,1,2026-02-15T15:13:58.075518,16,2,0,14 +sprout,1,2026-02-15T15:14:01.042391,9,3,0,6 +squash,1,2026-02-15T15:14:07.735216,22,4,0,18 +stable,1,2026-02-15T15:14:14.635410,19,1,0,18 +starling,1,2026-02-15T15:14:18.637887,10,2,0,8 +steak,1,2026-02-15T15:14:25.027357,20,1,0,19 +steel,1,2026-02-15T15:14:36.814638,27,2,2,23 +stem,1,2026-02-15T15:14:38.863169,6,2,0,4 +stethoscope,1,2026-02-15T15:14:43.707312,12,0,0,12 +stork,1,2026-02-15T15:14:46.975769,8,1,0,7 +straw,1,2026-02-15T15:14:51.126202,12,3,0,9 +strawberry,1,2026-02-15T15:15:03.184811,34,4,0,30 +styrofoam,1,2026-02-15T15:15:09.558124,16,1,0,15 +swan,1,2026-02-15T15:15:12.670761,8,1,0,7 +swift,1,2026-02-15T15:15:15.758274,7,0,0,7 +synthesizer,1,2026-02-15T15:15:21.233645,15,1,0,14 +talc,1,2026-02-15T15:15:24.277447,8,0,0,8 +tanager,1,2026-02-15T15:15:27.457029,8,1,0,7 +tank,1,2026-02-15T15:15:35.978796,25,2,0,23 +tar,1,2026-02-15T15:15:40.046134,10,0,0,10 +tea,1,2026-02-15T15:15:48.014428,25,3,0,22 +teacup,1,2026-02-15T15:15:51.619669,8,1,0,7 +tern,1,2026-02-15T15:15:55.579096,12,1,0,11 +theater,1,2026-02-15T15:16:05.906491,30,3,0,27 +thimble,1,2026-02-15T15:16:10.364312,11,0,0,11 +thorn,1,2026-02-15T15:16:13.640323,9,1,0,8 +thrasher,1,2026-02-15T15:16:19.831459,17,0,0,17 +thrush,1,2026-02-15T15:16:26.738232,19,2,0,17 +thyme,1,2026-02-15T15:16:33.181463,20,3,0,17 +tie,1,2026-02-15T15:16:39.401567,19,2,0,17 +tiger,1,2026-02-15T15:16:50.143355,33,0,0,33 +tin,1,2026-02-15T15:16:57.068392,20,1,0,19 +tinamou,1,2026-02-15T15:17:02.284268,14,1,0,13 +titanium,1,2026-02-15T15:17:08.067305,18,0,0,18 +tomato,1,2026-02-15T15:17:21.040148,43,5,0,38 +tortoise,1,2026-02-15T15:17:24.071698,8,1,0,7 +toucan,1,2026-02-15T15:17:27.294690,8,1,0,7 +tractor,1,2026-02-15T15:17:36.786421,27,1,0,26 +tree,1,2026-02-15T15:17:51.516346,45,6,6,33 +triangle,1,2026-02-15T15:18:04.357619,0,0,0,0 +trough,1,2026-02-15T15:18:07.094409,8,2,0,6 +trout,1,2026-02-15T15:18:16.254759,28,4,0,24 +trowel,1,2026-02-15T15:18:23.962719,19,2,0,17 +truck,1,2026-02-15T15:18:30.371867,19,1,0,18 +trumpet,1,2026-02-15T15:18:37.775194,21,1,0,20 +tub,1,2026-02-15T15:18:44.798687,20,2,1,17 +tulip,1,2026-02-15T15:18:49.999073,14,3,0,11 +tungsten,1,2026-02-15T15:18:54.143747,11,0,0,11 +turkey,1,2026-02-15T15:19:05.650721,35,0,0,35 +turmeric,1,2026-02-15T15:19:11.853272,17,1,0,16 +turtle,1,2026-02-15T15:19:20.096424,24,2,0,22 +ukulele,1,2026-02-15T15:19:29.970045,25,2,0,23 +underwear,1,2026-02-15T15:19:35.527727,18,1,0,17 +unicycle,1,2026-02-15T15:19:41.193994,15,0,0,15 +van,1,2026-02-15T15:19:50.984469,27,2,0,25 +vase,1,2026-02-15T15:19:58.643377,23,3,0,20 +vegetable,1,2026-02-15T15:20:03.679973,17,3,0,14 +verbena,1,2026-02-15T15:20:06.676276,9,1,0,8 +vine,1,2026-02-15T15:20:13.414868,21,3,0,18 +viola,1,2026-02-15T15:20:23.881196,28,1,0,27 +violet,1,2026-02-15T15:20:27.064508,9,1,0,8 +vise,1,2026-02-15T15:20:36.990195,26,1,0,25 +vulture,1,2026-02-15T15:20:40.196294,8,0,0,8 +wagtail,1,2026-02-15T15:20:44.047781,10,1,0,9 +warbler,1,2026-02-15T15:20:47.815759,10,1,0,9 +wasp,1,2026-02-15T15:20:51.297883,9,1,0,8 +water,1,2026-02-15T15:20:59.921751,24,1,5,18 +watermelon,1,2026-02-15T15:21:08.314595,23,3,0,20 +wax,1,2026-02-15T15:21:16.288301,0,0,0,0 +waxwing,1,2026-02-15T15:21:19.686476,9,2,0,7 +weapon,1,2026-02-15T15:21:35.207908,45,6,1,38 +weaver,1,2026-02-15T15:21:38.257021,8,2,0,6 +wedge,1,2026-02-15T15:21:43.833613,16,1,0,15 +well,1,2026-02-15T15:22:06.995650,45,0,0,45 +wheat,1,2026-02-15T15:22:13.342047,19,2,0,17 +wine,1,2026-02-15T15:22:25.283622,36,3,0,33 +wolf,1,2026-02-15T15:50:24.717892,20,0,0,20 +wolfram,1,2026-02-15T15:50:27.812400,8,1,0,7 +wood,1,2026-02-15T15:50:41.807295,45,6,1,38 +woodpecker,1,2026-02-15T15:50:48.159207,17,2,0,15 +wool,1,2026-02-15T15:50:56.306156,25,1,0,24 +worm,1,2026-02-15T15:51:02.576967,19,2,0,17 +wrapper,1,2026-02-15T15:51:07.471938,15,2,0,13 +wren,1,2026-02-15T15:51:10.525497,7,1,0,6 +xylophone,1,2026-02-15T15:51:30.256725,45,2,0,43 +yew,1,2026-02-15T15:51:33.655697,9,2,0,7 +yoke,1,2026-02-15T15:51:37.608552,11,1,0,10 +zebra,1,2026-02-15T15:51:45.972308,25,0,1,24 +zither,1,2026-02-15T15:51:50.463020,12,1,0,11 +zucchini,1,2026-02-15T15:51:55.688668,15,1,0,14 +aquarium,1,2026-02-15T16:46:03.759006,31,7,0,24 +beak,1,2026-02-15T16:46:09.526087,16,4,0,12 +bird,1,2026-02-15T16:46:18.773497,29,9,0,20 +blood,1,2026-02-15T16:46:21.760045,9,2,0,7 +body,1,2026-02-15T16:46:24.790640,8,1,0,7 +bone,1,2026-02-15T16:46:34.260599,30,4,0,26 +bouquet,1,2026-02-15T16:46:38.157563,12,4,0,8 +branch,1,2026-02-15T16:46:41.209180,9,5,0,4 +brick,1,2026-02-15T16:46:51.384631,15,2,0,13 +cage,1,2026-02-15T16:46:54.106235,7,1,0,6 +ceramic,1,2026-02-15T16:46:57.894188,12,1,0,11 +claw,1,2026-02-15T16:47:01.869246,13,1,0,12 +concrete,1,2026-02-15T16:47:08.079241,21,2,0,19 +container,1,2026-02-15T16:47:13.944257,18,5,0,13 +crystal,1,2026-02-15T16:47:16.778732,9,3,0,6 +desert,1,2026-02-15T16:47:19.662797,7,0,0,7 +dessert,1,2026-02-15T16:47:22.596313,9,1,0,8 +door,1,2026-02-15T16:47:32.885144,32,5,0,27 +dust,1,2026-02-15T16:47:35.781071,9,0,0,9 +earth,1,2026-02-15T16:47:38.520489,9,3,0,6 +engine,1,2026-02-15T16:47:47.242983,27,8,0,19 +fabric,1,2026-02-15T16:47:53.326218,16,1,0,15 +farm,1,2026-02-15T16:48:05.578678,37,10,0,27 +fat,1,2026-02-15T16:48:08.069719,8,0,0,8 +feather,1,2026-02-15T16:48:14.064299,18,2,0,16 +fiber,1,2026-02-15T16:48:16.973253,9,1,0,8 +field,1,2026-02-15T16:48:28.915252,37,11,0,26 +fin,1,2026-02-15T16:48:31.926619,9,2,0,7 +fireplace,1,2026-02-15T16:48:38.008237,19,4,0,15 +flesh,1,2026-02-15T16:48:40.839437,9,1,0,8 +flock,1,2026-02-15T16:48:43.977386,8,1,0,7 +flower,1,2026-02-15T16:48:57.728865,44,17,0,27 +food,1,2026-02-15T16:49:10.476266,45,3,0,42 +forest,1,2026-02-15T16:49:13.471272,8,3,0,5 +fruit,1,2026-02-15T16:49:22.157698,30,5,0,25 +fuel,1,2026-02-15T16:49:27.954781,20,2,0,18 +fur,1,2026-02-15T16:49:33.196140,18,1,0,17 +furniture,1,2026-02-15T16:49:38.694185,16,2,0,14 +grain,1,2026-02-15T16:49:44.438568,0,0,0,0 +grassland,1,2026-02-15T16:49:47.727693,8,2,0,6 +ground,1,2026-02-15T16:50:01.837964,45,12,0,33 +hammer,1,2026-02-15T16:50:09.321317,23,8,0,15 +handle,1,2026-02-15T16:50:14.184305,15,5,0,10 +head,1,2026-02-15T16:50:17.226615,9,3,0,6 +home,1,2026-02-15T16:50:23.451184,20,6,0,14 +house,1,2026-02-15T16:50:32.151285,28,8,0,20 +jewelry,1,2026-02-15T16:50:34.593538,8,3,0,5 +juice,1,2026-02-15T16:50:37.600493,9,3,0,6 +jungle,1,2026-02-15T16:50:43.539610,16,3,0,13 +key,1,2026-02-15T16:50:50.196382,21,4,0,17 +kitchen,1,2026-02-15T16:50:59.523101,29,6,0,23 +lake,1,2026-02-15T16:51:05.925779,19,3,0,16 +land,1,2026-02-15T16:51:09.988111,13,3,0,10 +leaf,1,2026-02-15T16:51:17.600372,24,5,0,19 +leg,1,2026-02-15T16:51:20.606130,9,3,0,6 +lid,1,2026-02-15T16:51:29.095797,14,2,0,12 +meat,1,2026-02-15T16:51:31.977917,8,1,0,7 +medicine,1,2026-02-15T16:51:46.780241,45,7,0,38 +metal,1,2026-02-15T16:51:50.783808,14,5,0,9 +mineral,1,2026-02-15T16:51:53.799131,0,0,0,0 +mountain,1,2026-02-15T16:51:56.842330,8,1,0,7 +mouth,1,2026-02-15T16:52:02.517661,18,4,0,14 +mouthpiece,1,2026-02-15T16:52:08.465191,17,3,0,14 +muscle,1,2026-02-15T16:52:11.489029,8,2,0,6 +needle,1,2026-02-15T16:52:20.550536,27,4,0,23 +ocean,1,2026-02-15T16:52:26.938696,21,3,0,18 +oil,1,2026-02-15T16:52:34.061804,25,4,0,21 +ore,1,2026-02-15T16:52:36.995488,9,4,0,5 +petal,1,2026-02-15T16:52:41.971001,14,3,0,11 +plant,1,2026-02-15T16:52:53.425846,36,16,1,19 +river,1,2026-02-15T16:52:58.053554,15,3,0,12 +rubber,1,2026-02-15T16:53:03.806215,19,1,0,18 +savanna,1,2026-02-15T16:53:21.011356,0,0,0,0 +sea,1,2026-02-15T16:53:23.843766,8,2,0,6 +seed,1,2026-02-15T16:53:29.857612,18,7,0,11 +shade,1,2026-02-15T16:53:35.718534,20,2,0,18 +skin,1,2026-02-15T16:53:38.414359,9,2,0,7 +soil,1,2026-02-15T16:53:42.833663,14,3,0,11 +spout,1,2026-02-15T16:53:48.229998,15,2,0,13 +stone,1,2026-02-15T16:53:57.439965,29,4,0,25 +string,1,2026-02-15T16:54:01.848524,13,1,0,12 +sugar,1,2026-02-15T16:54:13.536035,39,2,0,37 +tail,1,2026-02-15T16:54:19.817765,19,6,0,13 +toolbox,1,2026-02-15T16:54:26.595082,20,5,0,15 +tooth,1,2026-02-15T16:54:29.458674,9,2,0,7 +trigger,1,2026-02-15T16:54:32.562300,9,4,0,5 +wheel,1,2026-02-15T16:54:40.731233,25,7,0,18 +window,1,2026-02-15T16:54:46.801063,19,4,0,15 +wing,1,2026-02-15T16:54:52.627050,18,10,0,8 +workshop,1,2026-02-15T16:54:55.744780,8,2,0,6 +magnesium,2,2026-02-15T18:28:20.713600,0,40,0,0 +fly,2,2026-02-15T18:28:42.872533,0,49,0,0 +titanium,2,2026-02-15T18:29:05.634855,0,41,0,0 +prison,2,2026-02-15T18:29:31.215271,0,51,0,0 +punch,2,2026-02-15T18:29:59.603466,0,53,0,0 +wax,2,2026-02-15T18:30:26.016106,0,48,0,0 +turkey,2,2026-02-15T18:30:48.510205,0,50,0,0 +ridge,2,2026-02-15T19:01:17.517547,0,41,0,0 +triangle,2,2026-02-15T19:01:42.369600,0,44,0,0 +bull,2,2026-02-15T19:02:10.570816,0,55,0,0 +mortar,2,2026-02-15T19:02:32.563469,0,47,0,0 +platinum,2,2026-02-15T19:02:55.569266,0,38,0,0 +chalk,2,2026-02-15T19:03:19.028717,0,28,0,0 +rust,2,2026-02-15T19:03:52.428079,0,46,0,0 +tungsten,2,2026-02-15T19:04:16.376962,0,36,0,0 +tar,2,2026-02-15T19:04:43.032902,0,49,0,0 +swift,2,2026-02-15T19:05:06.969963,0,49,0,0 +finch,2,2026-02-15T19:05:25.899416,0,40,0,0 +duplex,2,2026-02-15T19:05:52.592077,0,56,0,0 +mandolin,2,2026-02-15T19:06:17.243790,0,43,0,0 +burger,2,2026-02-15T19:06:41.897869,0,48,0,0 +revolver,2,2026-02-15T19:07:07.338381,0,50,0,0 +zebra,2,2026-02-15T19:07:34.131627,0,43,0,0 +earthworm,2,2026-02-15T19:08:02.873800,0,40,0,0 +spaghetti,2,2026-02-15T19:08:30.491742,0,54,0,0 +fig,2,2026-02-15T19:08:57.441290,0,30,0,0 +soot,2,2026-02-15T19:09:27.978487,0,51,0,0 +polyester,2,2026-02-15T19:09:54.780893,0,52,0,0 +rhinoceros,2,2026-02-15T19:10:23.479990,0,53,0,0 +chimpanzee,2,2026-02-15T19:10:55.619720,0,52,0,0 +talc,2,2026-02-15T19:11:18.703635,0,34,0,0 +vulture,2,2026-02-15T19:11:41.832564,0,48,0,0 +gorilla,2,2026-02-15T19:12:12.614325,0,56,0,0 +cuckoo,2,2026-02-15T19:12:36.022858,0,42,0,0 +eggplant,2,2026-02-15T19:12:59.708543,0,42,0,0 +pheasant,2,2026-02-15T19:13:20.846726,0,36,0,0 +orchard,2,2026-02-15T19:13:48.225584,0,51,0,0 +maple,2,2026-02-15T19:14:04.392638,0,28,0,0 +peacock,2,2026-02-15T19:14:29.240933,0,43,0,0 +ostrich,2,2026-02-15T19:14:55.792620,0,47,0,0 +stethoscope,2,2026-02-15T19:15:26.220105,0,55,0,0 +canary,2,2026-02-15T19:15:51.658980,0,49,0,0 +cumin,2,2026-02-15T19:16:14.596370,0,45,0,0 +thimble,2,2026-02-15T19:16:46.188845,0,50,0,0 +holly,2,2026-02-15T19:17:02.174857,0,28,0,0 +python,2,2026-02-15T19:17:27.936950,0,49,0,0 +centipede,2,2026-02-15T19:17:56.875911,0,50,0,0 +cockatoo,2,2026-02-15T19:18:25.659049,0,50,0,0 +emu,2,2026-02-15T19:18:54.502572,0,36,0,0 +puffin,2,2026-02-15T19:19:16.672013,0,40,0,0 +auk,2,2026-02-15T19:19:36.339283,0,33,0,0 +coca,2,2026-02-15T19:19:51.612389,0,32,0,0 +coriander,2,2026-02-15T19:20:14.461856,0,44,0,0 +lilac,2,2026-02-15T19:20:36.149368,0,42,0,0 +lynx,2,2026-02-15T19:21:02.535664,0,48,0,0 +nightjar,2,2026-02-15T19:21:22.641906,0,31,0,0 +dodo,2,2026-02-15T19:21:45.104927,0,28,0,0 +petrel,2,2026-02-15T19:22:09.808206,0,51,0,0 +unicycle,2,2026-02-15T19:22:37.315377,0,43,0,0 +bison,2,2026-02-15T19:23:03.996688,0,53,0,0 +booby,2,2026-02-15T19:23:22.501466,0,31,0,0 +paprika,2,2026-02-15T19:23:47.946678,0,45,0,0 +buzzard,2,2026-02-15T19:24:11.436743,0,38,0,0 +carnation,2,2026-02-15T19:24:31.573573,0,30,0,0 +kestrel,2,2026-02-15T19:24:53.577230,0,42,0,0 +mealybug,2,2026-02-15T19:25:18.334791,0,42,0,0 +hornbill,2,2026-02-15T19:25:42.387718,0,38,0,0 +avocet,2,2026-02-15T19:26:02.353967,0,28,0,0 +cassowary,2,2026-02-15T19:26:29.092834,0,48,0,0 +kohlrabi,2,2026-02-15T19:26:56.876537,0,37,0,0 +roadrunner,2,2026-02-15T19:27:18.647106,0,41,0,0 +thrasher,2,2026-02-15T19:27:43.249168,0,47,0,0 +sapsucker,2,2026-02-15T19:28:06.120003,0,37,0,0 +oilcan,2,2026-02-15T19:28:36.712500,0,58,0,0 +cotinga,2,2026-02-15T19:29:02.249425,0,32,0,0 +lacebug,2,2026-02-15T19:29:23.888040,0,37,0,0 +condor,2,2026-02-15T19:29:46.303618,0,37,0,0 +mineral,2,2026-02-15T19:30:06.701702,0,41,0,0 +fat,2,2026-02-15T19:30:32.570353,0,45,0,0 +grain,2,2026-02-15T19:30:38.697649,0,12,0,0 +savanna,2,2026-02-15T19:31:05.606426,0,52,0,0 +desert,2,2026-02-15T19:31:32.705222,0,45,0,0 +falcon,2,2026-02-15T19:31:55.890983,0,43,0,0 +flesh,2,2026-02-15T19:32:28.077492,0,42,0,0 +body,2,2026-02-15T19:32:52.618000,0,46,0,0 +wool,2,2026-02-15T19:33:16.815926,0,41,0,0 +nickel,2,2026-02-15T19:33:39.694241,0,40,0,0 +bladder,2,2026-02-15T19:34:04.900241,0,44,0,0 +trumpet,2,2026-02-15T19:34:27.116045,0,40,0,0 +mold,2,2026-02-15T19:34:34.949871,0,15,0,0 +banana,2,2026-02-15T19:34:59.168142,0,51,0,0 +orca,2,2026-02-15T19:35:29.144640,0,43,0,0 +flock,2,2026-02-15T19:35:58.369908,0,55,0,0 +skin,2,2026-02-15T19:36:26.337515,0,51,0,0 +jack,2,2026-02-15T19:36:53.409310,0,51,0,0 +salad,2,2026-02-15T19:37:20.048165,0,50,0,0 +chili,2,2026-02-15T19:37:45.345448,0,49,0,0 +pewter,2,2026-02-15T19:38:04.427119,0,27,0,0 +lion,2,2026-02-15T19:38:29.499349,0,48,0,0 +wolf,2,2026-02-15T19:38:55.607610,0,52,0,0 +steak,2,2026-02-15T19:39:21.188873,0,44,0,0 +tiger,2,2026-02-15T19:39:46.310245,0,46,0,0 +furrow,2,2026-02-15T19:40:10.096595,0,47,0,0 +thorn,2,2026-02-15T19:40:36.217095,0,47,0,0 +husk,2,2026-02-15T19:41:00.994550,0,40,0,0 +eagle,2,2026-02-15T19:41:25.473853,0,29,0,0 +rook,2,2026-02-15T19:41:47.633146,0,36,0,0 +turmeric,2,2026-02-15T19:42:10.576961,0,37,0,0 +teacup,2,2026-02-15T19:42:34.719597,0,42,0,0 +hollow,2,2026-02-15T20:34:50.257388,0,36,0,0 +bronze,2,2026-02-15T20:35:07.720521,0,18,0,0 +canon,2,2026-02-15T20:35:34.693820,0,39,0,0 +saxophone,2,2026-02-15T20:36:04.487062,0,51,0,0 +jicama,2,2026-02-15T20:36:31.831295,0,47,0,0 +mall,2,2026-02-15T20:36:58.832492,0,41,0,0 +flute,2,2026-02-15T20:37:22.021863,0,38,0,0 +chisel,2,2026-02-15T20:37:46.307712,0,40,0,0 +jug,2,2026-02-15T20:38:13.862911,0,35,0,0 +burlap,2,2026-02-15T20:38:26.837161,0,22,0,0 +silo,2,2026-02-15T20:38:59.274618,0,35,0,0 +vise,2,2026-02-15T20:39:24.348287,0,38,0,0 +haircloth,2,2026-02-15T20:39:36.344383,0,20,0,0 +wolfram,2,2026-02-15T20:39:56.329453,0,37,0,0 +rubber,2,2026-02-15T20:40:24.183897,0,41,0,0 +claw,2,2026-02-15T20:40:48.287385,0,38,0,0 +mercury,2,2026-02-15T20:41:11.183662,0,35,0,0 +nylon,2,2026-02-15T20:41:40.349194,0,54,0,0 +accordion,2,2026-02-15T20:42:04.110800,0,39,0,0 +trough,2,2026-02-15T20:42:30.626547,0,46,0,0 +micrometer,2,2026-02-15T20:43:01.400431,0,51,0,0 +styrofoam,2,2026-02-15T20:43:29.768103,0,44,0,0 +cornbread,2,2026-02-15T20:43:54.698320,0,52,0,0 +aluminum,2,2026-02-15T20:44:21.232743,0,59,0,0 +potassium,2,2026-02-15T20:44:47.489827,0,40,0,0 +saw,2,2026-02-15T20:45:14.422824,0,41,0,0 +tank,2,2026-02-15T20:45:42.470260,0,36,0,0 +comb,2,2026-02-15T20:46:09.363603,0,44,0,0 +cart,2,2026-02-15T20:46:31.181240,0,43,0,0 +pizza,2,2026-02-15T20:46:58.243508,0,46,0,0 +synthesizer,2,2026-02-15T20:47:23.037715,0,40,0,0 +recorder,2,2026-02-15T20:47:46.708970,0,33,0,0 +caliper,2,2026-02-15T20:48:10.820196,0,38,0,0 +moped,2,2026-02-15T20:48:36.730747,0,46,0,0 +ceramic,2,2026-02-15T20:49:05.016335,0,50,0,0 +butter,2,2026-02-15T20:49:31.377367,0,48,0,0 +truck,2,2026-02-15T20:49:58.890257,0,43,0,0 +ginger,2,2026-02-15T20:50:25.342483,0,40,0,0 +dessert,2,2026-02-15T20:50:51.757377,0,48,0,0 +accordion,3,2026-02-15T20:55:32.864383,8,8,0,0 +acorn,3,2026-02-15T20:55:35.353518,5,5,0,0 +agate,3,2026-02-15T20:55:37.705837,5,5,0,0 +airplane,3,2026-02-15T20:55:40.776766,8,8,0,0 +alabaster,3,2026-02-15T20:55:45.834369,7,7,0,0 +albatross,3,2026-02-15T20:55:48.408212,5,5,0,0 +aluminum,3,2026-02-15T20:55:50.656467,5,5,0,0 +anchor,3,2026-02-15T20:55:53.347777,5,5,0,0 +anise,3,2026-02-15T20:55:56.913034,5,5,0,0 +ant,3,2026-02-15T20:56:01.447666,8,8,0,0 +anvil,3,2026-02-15T20:56:04.809985,6,6,0,0 +apartment,3,2026-02-15T20:56:07.464465,6,6,0,0 +aquarium,3,2026-02-15T20:56:10.278619,6,6,0,0 +ash,3,2026-02-15T20:56:14.597053,8,8,0,0 +asparagus,3,2026-02-15T20:56:18.658040,5,5,0,0 +auk,3,2026-02-15T20:56:22.870547,6,6,0,0 +avocet,3,2026-02-15T20:56:27.742130,7,7,0,0 +awl,3,2026-02-15T20:56:30.674152,7,7,0,0 +axe,3,2026-02-15T20:56:32.971785,6,6,0,0 +azalea,3,2026-02-15T20:56:36.143029,4,4,0,0 +bamboo,3,2026-02-15T20:56:39.989084,5,5,0,0 +banana,3,2026-02-15T20:56:42.422462,7,7,0,0 +barbet,3,2026-02-15T20:56:48.157045,7,7,0,0 +bark,3,2026-02-15T20:56:51.321942,7,7,0,0 +barn,3,2026-02-15T20:56:56.314775,6,6,0,0 +barometer,3,2026-02-15T20:56:58.731755,5,5,0,0 +barracuda,3,2026-02-15T20:57:02.520804,7,7,0,0 +barrel,3,2026-02-15T20:57:06.427882,6,6,0,0 +basil,3,2026-02-15T20:57:10.242673,5,5,0,0 +bass,3,2026-02-15T20:57:13.227331,6,6,0,0 +bat,3,2026-02-15T20:57:16.465087,9,9,0,0 +beak,3,2026-02-15T20:57:19.210237,7,7,0,0 +bean,3,2026-02-15T20:57:23.528865,6,6,0,0 +beaver,3,2026-02-15T20:57:26.300598,6,6,0,0 +bed,3,2026-02-15T20:57:32.041274,6,6,0,0 +bee,3,2026-02-15T20:57:35.307963,7,7,0,0 +beef,3,2026-02-15T20:57:38.048959,5,5,0,0 +beer,3,2026-02-15T20:57:41.034840,5,5,0,0 +beet,3,2026-02-15T20:57:44.100704,5,5,0,0 +bellows,3,2026-02-15T20:57:46.992609,5,5,0,0 +bin,3,2026-02-15T20:57:50.352831,6,6,0,0 +bird,3,2026-02-15T20:57:53.846274,7,7,0,0 +bison,3,2026-02-15T20:57:59.920841,9,9,0,0 +blackbird,3,2026-02-15T20:58:03.480285,5,5,0,0 +bladder,3,2026-02-15T20:58:06.419609,7,7,0,0 +blade,3,2026-02-15T20:58:09.681722,5,5,0,0 +blood,3,2026-02-15T20:58:11.195742,5,1,4,0 +blowfish,3,2026-02-15T20:58:13.932713,6,6,0,0 +boat,3,2026-02-15T20:58:16.613408,5,1,4,0 +bobwhite,3,2026-02-15T20:58:20.308172,6,6,0,0 +body,3,2026-02-15T20:58:23.574934,6,6,0,0 +bomb,3,2026-02-15T20:58:26.701436,6,6,0,0 +bone,3,2026-02-15T20:58:30.130088,7,7,0,0 +bongo,3,2026-02-15T20:58:34.467749,7,7,0,0 +booby,3,2026-02-15T20:58:38.580671,9,9,0,0 +bottle,3,2026-02-15T20:58:42.319259,7,7,0,0 +bouquet,3,2026-02-15T20:58:44.598143,0,0,0,0 +bowerbird,3,2026-02-15T20:58:49.084775,6,6,0,0 +box,3,2026-02-15T20:58:52.125036,6,6,0,0 +boxwood,3,2026-02-15T20:58:54.944452,5,5,0,0 +branch,3,2026-02-15T20:58:58.076815,6,6,0,0 +brick,3,2026-02-15T20:59:00.579314,8,8,0,0 +bronze,3,2026-02-15T20:59:05.482578,7,7,0,0 +broom,3,2026-02-15T20:59:07.426405,6,6,0,0 +bucket,3,2026-02-15T20:59:10.700404,5,5,0,0 +bulbul,3,2026-02-15T20:59:16.163094,5,5,0,0 +bull,3,2026-02-15T20:59:19.971840,7,7,0,0 +bunting,3,2026-02-15T20:59:25.237496,5,5,0,0 +burger,3,2026-02-15T20:59:28.548124,7,7,0,0 +burlap,3,2026-02-15T20:59:33.001140,7,7,0,0 +burrow,3,2026-02-15T20:59:36.872937,8,8,0,0 +butter,3,2026-02-15T20:59:41.551235,7,7,0,0 +butterfly,3,2026-02-15T20:59:45.375150,5,5,0,0 +buzzard,3,2026-02-15T20:59:49.766394,6,6,0,0 +cabbage,3,2026-02-15T20:59:55.228085,7,7,0,0 +cabinet,3,2026-02-15T20:59:57.296035,5,1,4,0 +caddy,3,2026-02-15T21:00:00.162197,7,7,0,0 +cage,3,2026-02-15T21:00:03.096410,7,7,0,0 +caliper,3,2026-02-15T21:00:06.786374,7,7,0,0 +canary,3,2026-02-15T21:00:12.001245,6,6,0,0 +candle,3,2026-02-15T21:00:14.767676,7,7,0,0 +candy,3,2026-02-15T21:00:19.184152,7,7,0,0 +cannabis,3,2026-02-15T21:00:22.100523,5,5,0,0 +cannon,3,2026-02-15T21:00:27.276545,8,8,0,0 +canoe,3,2026-02-15T21:00:29.845439,7,7,0,0 +canon,3,2026-02-15T21:00:31.652752,5,1,4,0 +car,3,2026-02-15T21:00:34.965970,9,9,0,0 +cardamom,3,2026-02-15T21:00:39.825158,8,8,0,0 +cardinal,3,2026-02-15T21:00:43.912703,8,8,0,0 +carnation,3,2026-02-15T21:00:47.253085,6,6,0,0 +cart,3,2026-02-15T21:00:49.796875,5,5,0,0 +carton,3,2026-02-15T21:00:52.591066,5,5,0,0 +cassowary,3,2026-02-15T21:00:55.783908,8,8,0,0 +cat,3,2026-02-15T21:00:59.619618,8,8,0,0 +cattail,3,2026-02-15T21:01:02.404680,5,5,0,0 +cauliflower,3,2026-02-15T21:01:07.073466,6,6,0,0 +cedar,3,2026-02-15T21:01:10.880854,6,6,0,0 +celery,3,2026-02-15T21:01:16.493605,5,5,0,0 +cello,3,2026-02-15T21:01:21.706243,8,8,0,0 +centipede,3,2026-02-15T21:01:25.695588,7,7,0,0 +ceramic,3,2026-02-15T21:01:29.120973,5,5,0,0 +cereal,3,2026-02-15T21:01:34.225901,5,5,0,0 +chalk,3,2026-02-15T21:01:38.209907,7,7,0,0 +chard,3,2026-02-15T21:01:42.236223,6,6,0,0 +cheese,3,2026-02-15T21:01:46.221078,6,6,0,0 +chest,3,2026-02-15T21:01:49.151950,7,7,0,0 +chickadee,3,2026-02-15T21:01:52.917742,7,7,0,0 +chicken,3,2026-02-15T21:01:56.950581,6,6,0,0 +chili,3,2026-02-15T21:01:59.463598,6,6,0,0 +chimney,3,2026-02-15T21:02:02.866710,7,7,0,0 +chimpanzee,3,2026-02-15T21:02:05.812756,5,5,0,0 +chips,3,2026-02-15T21:02:08.927294,5,5,0,0 +chisel,3,2026-02-15T21:02:11.202875,5,5,0,0 +chocolate,3,2026-02-15T21:02:14.628148,5,5,0,0 +church,3,2026-02-15T21:02:17.658576,6,6,0,0 +cicada,3,2026-02-15T21:02:20.383059,6,6,0,0 +cinnamon,3,2026-02-15T21:02:23.722503,5,5,0,0 +clarinet,3,2026-02-15T21:02:26.694035,5,5,0,0 +claw,3,2026-02-15T21:02:30.977434,8,8,0,0 +clay,3,2026-02-15T21:02:33.842617,5,5,0,0 +coach,3,2026-02-15T21:02:37.168981,5,5,0,0 +coal,3,2026-02-15T21:02:41.083935,5,5,0,0 +coca,3,2026-02-15T21:02:47.112744,8,8,0,0 +cock,3,2026-02-15T21:02:49.984314,7,7,0,0 +cockatiel,3,2026-02-15T21:02:53.678063,8,8,0,0 +cockatoo,3,2026-02-15T21:02:59.141009,7,7,0,0 +coffee,3,2026-02-15T21:03:03.168798,6,6,0,0 +comb,3,2026-02-15T21:03:05.694212,6,6,0,0 +computer,3,2026-02-15T21:03:07.944642,7,7,0,0 +concrete,3,2026-02-15T21:03:10.936172,6,6,0,0 +condor,3,2026-02-15T21:03:13.214253,7,7,0,0 +container,3,2026-02-15T21:03:15.809534,5,5,0,0 +coop,3,2026-02-15T21:03:18.801410,8,8,0,0 +coot,3,2026-02-15T21:03:22.757412,7,7,0,0 +copper,3,2026-02-15T21:03:25.698600,6,6,0,0 +coriander,3,2026-02-15T21:03:28.534827,5,5,0,0 +cork,3,2026-02-15T21:03:31.958599,7,7,0,0 +cormorant,3,2026-02-15T21:03:35.824812,8,8,0,0 +corn,3,2026-02-15T21:03:38.149338,8,8,0,0 +cornbread,3,2026-02-15T21:03:42.234900,7,7,0,0 +cotinga,3,2026-02-15T21:03:47.449540,5,5,0,0 +cotton,3,2026-02-15T21:03:51.700446,7,7,0,0 +cowbird,3,2026-02-15T21:03:55.098564,7,7,0,0 +crab,3,2026-02-15T21:03:57.770226,6,6,0,0 +cranberry,3,2026-02-15T21:03:59.948757,5,5,0,0 +crappie,3,2026-02-15T21:04:06.799544,7,7,0,0 +creek,3,2026-02-15T21:04:09.942868,6,6,0,0 +crow,3,2026-02-15T21:04:14.633669,7,7,0,0 +crystal,3,2026-02-15T21:04:17.010471,5,5,0,0 +cuckoo,3,2026-02-15T21:04:19.886100,6,6,0,0 +cucumber,3,2026-02-15T21:04:23.077732,7,7,0,0 +cumin,3,2026-02-15T21:04:27.695859,6,6,0,0 +curassow,3,2026-02-15T21:04:31.068563,7,7,0,0 +curry,3,2026-02-15T21:04:36.055118,5,5,0,0 +cypress,3,2026-02-15T21:04:40.544759,5,5,0,0 +daffodil,3,2026-02-15T21:04:43.333164,5,5,0,0 +daisy,3,2026-02-15T21:04:47.397410,5,5,0,0 +dandelion,3,2026-02-15T21:04:51.391270,7,7,0,0 +decanter,3,2026-02-15T21:04:55.129519,6,6,0,0 +deer,3,2026-02-15T21:04:58.767813,7,7,0,0 +den,3,2026-02-15T21:05:02.715279,7,7,0,0 +denim,3,2026-02-15T21:05:07.283588,6,6,0,0 +desert,3,2026-02-15T21:05:10.200884,5,5,0,0 +desk,3,2026-02-15T21:05:11.755673,5,1,4,0 +dessert,3,2026-02-15T21:05:16.414999,7,7,0,0 +diamond,3,2026-02-15T21:05:19.060727,5,5,0,0 +dirt,3,2026-02-15T21:05:23.318599,7,7,0,0 +ditch,3,2026-02-15T21:05:26.064147,5,5,0,0 +dodo,3,2026-02-15T21:05:29.509616,7,6,1,0 +dogwood,3,2026-02-15T21:05:33.822033,5,5,0,0 +dolphin,3,2026-02-15T21:05:39.132641,7,7,0,0 +door,3,2026-02-15T21:05:42.350173,6,6,0,0 +dove,3,2026-02-15T21:05:46.741100,5,5,0,0 +drawer,3,2026-02-15T21:05:49.583170,6,6,0,0 +dress,3,2026-02-15T21:05:53.161954,5,5,0,0 +drill,3,2026-02-15T21:05:55.960757,7,7,0,0 +drum,3,2026-02-15T21:06:02.602959,5,5,0,0 +duplex,3,2026-02-15T21:06:05.445823,7,7,0,0 +dust,3,2026-02-15T21:06:08.959019,6,6,0,0 +eagle,3,2026-02-15T21:06:12.579314,8,8,0,0 +earth,3,2026-02-15T21:06:17.192171,6,6,0,0 +earthworm,3,2026-02-15T21:06:19.498537,6,6,0,0 +earwig,3,2026-02-15T21:06:22.246322,5,5,0,0 +eel,3,2026-02-15T21:06:28.238485,7,7,0,0 +egg,3,2026-02-15T21:06:30.982083,5,5,0,0 +eggplant,3,2026-02-15T21:06:33.966203,5,5,0,0 +emerald,3,2026-02-15T21:06:40.181471,7,7,0,0 +emu,3,2026-02-15T21:06:42.712701,5,5,0,0 +engine,3,2026-02-15T21:06:45.559806,8,8,0,0 +evergreen,3,2026-02-15T21:06:48.403057,6,6,0,0 +fabric,3,2026-02-15T21:06:50.528826,5,1,4,0 +falcon,3,2026-02-15T21:06:53.877158,5,5,0,0 +farm,3,2026-02-15T21:06:57.093471,7,7,0,0 +fat,3,2026-02-15T21:07:00.364479,8,8,0,0 +feather,3,2026-02-15T21:07:05.352416,8,8,0,0 +fence,3,2026-02-15T21:07:08.418723,6,6,0,0 +ferret,3,2026-02-15T21:07:12.885576,6,6,0,0 +fiber,3,2026-02-15T21:07:15.606301,6,6,0,0 +field,3,2026-02-15T21:07:20.268212,7,7,0,0 +fig,3,2026-02-15T21:07:23.489288,5,5,0,0 +fin,3,2026-02-15T21:07:26.091284,8,8,0,0 +finch,3,2026-02-15T21:07:30.207484,7,7,0,0 +firefly,3,2026-02-15T21:07:33.033562,7,7,0,0 +fireplace,3,2026-02-15T21:07:36.648886,7,7,0,0 +fish,3,2026-02-15T21:07:39.124751,5,5,0,0 +flamingo,3,2026-02-15T21:07:42.650221,8,8,0,0 +flask,3,2026-02-15T21:07:45.594994,7,7,0,0 +flesh,3,2026-02-15T21:07:49.387299,5,5,0,0 +flint,3,2026-02-15T21:07:52.386684,6,6,0,0 +flock,3,2026-02-15T21:07:58.624143,9,9,0,0 +flounder,3,2026-02-15T21:08:03.018337,6,6,0,0 +flower,3,2026-02-15T21:08:06.492271,5,5,0,0 +flute,3,2026-02-15T21:08:09.684661,7,7,0,0 +fly,3,2026-02-15T21:08:15.024660,7,7,0,0 +flycatcher,3,2026-02-15T21:08:20.385236,6,6,0,0 +food,3,2026-02-15T21:08:22.587089,4,4,0,0 +forest,3,2026-02-15T21:08:27.944224,7,7,0,0 +fox,3,2026-02-15T21:08:30.812998,7,7,0,0 +fruit,3,2026-02-15T21:08:37.854235,7,7,0,0 +fuel,3,2026-02-15T21:08:41.318298,6,6,0,0 +fur,3,2026-02-15T21:08:45.360961,10,6,4,0 +furniture,3,2026-02-15T21:08:47.565924,5,5,0,0 +furrow,3,2026-02-15T21:08:49.153009,5,5,0,0 +gallery,3,2026-02-15T21:08:51.185423,5,5,0,0 +gannet,3,2026-02-15T21:08:53.443936,7,7,0,0 +garden,3,2026-02-15T21:08:56.238563,7,7,0,0 +garnet,3,2026-02-15T21:08:59.779378,5,5,0,0 +gazelle,3,2026-02-15T21:09:04.296645,6,6,0,0 +gem,3,2026-02-15T21:09:07.860745,5,5,0,0 +ginger,3,2026-02-15T21:09:12.649955,5,5,0,0 +ginseng,3,2026-02-15T21:09:15.300657,5,5,0,0 +gladiola,3,2026-02-15T21:09:19.093030,6,6,0,0 +glass,3,2026-02-15T21:09:23.354687,6,4,2,0 +gnocchi,3,2026-02-15T21:09:26.324930,5,5,0,0 +gold,3,2026-02-15T21:09:28.576961,5,5,0,0 +goldfish,3,2026-02-15T21:09:33.848350,7,7,0,0 +goose,3,2026-02-15T21:09:37.317191,7,7,0,0 +gorilla,3,2026-02-15T21:09:42.403637,8,8,0,0 +grain,3,2026-02-15T21:09:45.360794,6,6,0,0 +granite,3,2026-02-15T21:09:48.231159,5,5,0,0 +grass,3,2026-02-15T21:09:51.745679,7,7,0,0 +grassland,3,2026-02-15T21:09:55.021359,7,7,0,0 +grebe,3,2026-02-15T21:09:58.792822,7,7,0,0 +greenhouse,3,2026-02-15T21:10:04.165031,7,7,0,0 +ground,3,2026-02-15T21:10:06.860664,5,5,0,0 +grouper,3,2026-02-15T21:10:11.088629,6,6,0,0 +grouse,3,2026-02-15T21:10:14.384897,6,6,0,0 +guitar,3,2026-02-15T21:10:19.227634,6,6,0,0 +gull,3,2026-02-15T21:10:22.898066,6,6,0,0 +gun,3,2026-02-15T21:10:24.754515,5,5,0,0 +gymnasium,3,2026-02-15T21:10:26.810411,5,5,0,0 +hacksaw,3,2026-02-15T21:10:29.755818,5,5,0,0 +haircloth,3,2026-02-15T21:10:33.157125,5,5,0,0 +ham,3,2026-02-15T21:10:37.246281,5,5,0,0 +hamburger,3,2026-02-15T21:10:40.437790,6,6,0,0 +hammer,3,2026-02-15T21:10:43.435053,5,5,0,0 +handgun,3,2026-02-15T21:10:45.587743,6,6,0,0 +handle,3,2026-02-15T21:10:49.476533,6,6,0,0 +harmonica,3,2026-02-15T21:10:52.175430,7,7,0,0 +harp,3,2026-02-15T21:10:54.658895,7,7,0,0 +hawk,3,2026-02-15T21:10:59.274952,7,7,0,0 +hay,3,2026-02-15T21:11:03.190179,6,6,0,0 +head,3,2026-02-15T21:11:05.120983,6,6,0,0 +heart,3,2026-02-15T21:11:09.130295,7,7,0,0 +hearth,3,2026-02-15T21:11:13.990059,7,7,0,0 +heron,3,2026-02-15T21:11:17.565317,7,7,0,0 +herring,3,2026-02-15T21:11:22.880594,8,8,0,0 +hibiscus,3,2026-02-15T21:11:28.198337,7,7,0,0 +hickory,3,2026-02-15T21:11:32.235368,5,5,0,0 +hoatzin,3,2026-02-15T21:11:36.265090,6,5,1,0 +hollow,3,2026-02-15T21:11:38.664484,5,5,0,0 +holly,3,2026-02-15T21:11:42.379935,5,5,0,0 +home,3,2026-02-15T21:11:44.042785,5,1,4,0 +hornbill,3,2026-02-15T21:11:49.259303,8,8,0,0 +horsetail,3,2026-02-15T21:11:52.926921,7,7,0,0 +house,3,2026-02-15T21:11:56.441723,6,6,0,0 +housefly,3,2026-02-15T21:11:59.909594,7,7,0,0 +hummingbird,3,2026-02-15T21:12:02.937973,7,7,0,0 +husk,3,2026-02-15T21:12:06.107713,6,6,0,0 +ibis,3,2026-02-15T21:12:10.949515,7,7,0,0 +ice,3,2026-02-15T21:12:13.870226,6,6,0,0 +insect,3,2026-02-15T21:12:16.742076,7,7,0,0 +iris,3,2026-02-15T21:12:19.421188,5,5,0,0 +iron,3,2026-02-15T21:12:25.132679,8,8,0,0 +jack,3,2026-02-15T21:12:27.876977,5,5,0,0 +jacket,3,2026-02-15T21:12:30.638437,7,7,0,0 +jar,3,2026-02-15T21:12:33.807019,5,5,0,0 +jay,3,2026-02-15T21:12:38.099900,8,8,0,0 +jewelry,3,2026-02-15T21:12:41.415454,5,5,0,0 +jicama,3,2026-02-15T21:12:45.213960,5,5,0,0 +jointer,3,2026-02-15T21:12:47.813491,5,5,0,0 +jug,3,2026-02-15T21:12:50.459163,6,6,0,0 +juice,3,2026-02-15T21:12:54.544747,5,5,0,0 +jungle,3,2026-02-15T21:12:58.556635,7,7,0,0 +juniper,3,2026-02-15T21:13:01.378827,7,7,0,0 +kale,3,2026-02-15T21:13:05.896855,7,7,0,0 +kayak,3,2026-02-15T21:13:09.139124,6,6,0,0 +kestrel,3,2026-02-15T21:13:13.658954,7,7,0,0 +kettle,3,2026-02-15T21:13:17.296279,8,8,0,0 +key,3,2026-02-15T21:13:20.345541,7,7,0,0 +kingfisher,3,2026-02-15T21:13:26.613289,8,8,0,0 +kitchen,3,2026-02-15T21:13:30.431295,7,7,0,0 +kite,3,2026-02-15T21:13:35.574316,7,7,0,0 +kiwi,3,2026-02-15T21:13:39.564327,7,7,0,0 +knife,3,2026-02-15T21:13:42.410837,5,5,0,0 +kohlrabi,3,2026-02-15T21:13:45.980251,6,6,0,0 +lacebug,3,2026-02-15T21:13:49.773384,5,5,0,0 +ladder,3,2026-02-15T21:13:54.336555,6,6,0,0 +lake,3,2026-02-15T21:13:56.639237,5,5,0,0 +land,3,2026-02-15T21:14:00.675555,6,6,0,0 +lantern,3,2026-02-15T21:14:03.498148,7,7,0,0 +lark,3,2026-02-15T21:14:11.684570,6,6,0,0 +leaf,3,2026-02-15T21:14:16.199444,5,5,0,0 +leather,3,2026-02-15T21:14:20.363068,8,8,0,0 +leg,3,2026-02-15T21:14:22.373593,5,5,0,0 +lemon,3,2026-02-15T21:14:27.257695,7,7,0,0 +lemur,3,2026-02-15T21:14:30.180584,5,5,0,0 +lettuce,3,2026-02-15T21:14:33.352656,5,5,0,0 +level,3,2026-02-15T21:14:36.771255,6,6,0,0 +lever,3,2026-02-15T21:14:40.588571,5,5,0,0 +library,3,2026-02-15T21:14:43.013771,6,6,0,0 +lid,3,2026-02-15T21:14:44.679228,5,1,4,0 +lighter,3,2026-02-15T21:14:47.227017,6,6,0,0 +lilac,3,2026-02-15T21:14:51.968443,6,6,0,0 +lily,3,2026-02-15T21:14:58.037779,7,7,0,0 +linen,3,2026-02-15T21:15:01.553138,5,5,0,0 +lion,3,2026-02-15T21:15:05.392722,7,7,0,0 +lobster,3,2026-02-15T21:15:09.180150,6,6,0,0 +lorikeet,3,2026-02-15T21:15:15.804451,8,8,0,0 +lotus,3,2026-02-15T21:15:18.779623,5,5,0,0 +lovebird,3,2026-02-15T21:15:22.276815,7,7,0,0 +lynx,3,2026-02-15T21:15:26.847147,7,7,0,0 +lyre,3,2026-02-15T21:15:31.220368,5,5,0,0 +mace,3,2026-02-15T21:15:36.192429,6,6,0,0 +magnesium,3,2026-02-15T21:15:39.059203,5,5,0,0 +magpie,3,2026-02-15T21:15:42.631924,6,6,0,0 +mahogany,3,2026-02-15T21:15:45.568705,5,5,0,0 +mall,3,2026-02-15T21:15:48.046265,7,7,0,0 +mallard,3,2026-02-15T21:15:52.062180,7,7,0,0 +mandolin,3,2026-02-15T21:15:54.712838,5,5,0,0 +mango,3,2026-02-15T21:15:59.300449,7,7,0,0 +maple,3,2026-02-15T21:16:02.089439,5,5,0,0 +marble,3,2026-02-15T21:16:05.160824,5,5,0,0 +marjoram,3,2026-02-15T21:16:08.776089,5,5,0,0 +marmoset,3,2026-02-15T21:16:12.791974,7,7,0,0 +marmot,3,2026-02-15T21:16:19.514099,7,7,0,0 +martin,3,2026-02-15T21:16:25.533145,7,7,0,0 +meadow,3,2026-02-15T21:16:27.614496,5,5,0,0 +mealybug,3,2026-02-15T21:16:30.515870,7,7,0,0 +meat,3,2026-02-15T21:16:33.741787,5,5,0,0 +medicine,3,2026-02-15T21:16:36.170464,5,5,0,0 +mercury,3,2026-02-15T21:16:40.281230,5,5,0,0 +metal,3,2026-02-15T21:16:42.383837,6,6,0,0 +meteorite,3,2026-02-15T21:16:45.925305,0,0,0,0 +mica,3,2026-02-15T21:16:49.067904,5,5,0,0 +micrometer,3,2026-02-15T21:16:53.212346,8,8,0,0 +milk,3,2026-02-15T21:16:57.589742,6,5,1,0 +mine,3,2026-02-15T21:17:02.361570,7,7,0,0 +mineral,3,2026-02-15T21:17:06.101864,6,6,0,0 +minnow,3,2026-02-15T21:17:10.193863,8,8,0,0 +mold,3,2026-02-15T21:17:15.025962,7,7,0,0 +mole,3,2026-02-15T21:17:19.068036,7,7,0,0 +moped,3,2026-02-15T21:17:24.453896,7,1,6,0 +mortar,3,2026-02-15T21:17:26.828997,6,6,0,0 +moss,3,2026-02-15T21:17:30.368593,7,7,0,0 +mountain,3,2026-02-15T21:17:33.783893,5,5,0,0 +mouth,3,2026-02-15T21:17:35.892580,7,7,0,0 +mouthpiece,3,2026-02-15T21:17:39.138352,7,7,0,0 +mug,3,2026-02-15T21:17:43.622576,6,6,0,0 +muscle,3,2026-02-15T21:17:48.337453,6,6,0,0 +mushroom,3,2026-02-15T21:17:52.498630,7,7,0,0 +nail,3,2026-02-15T21:17:55.145624,6,6,0,0 +nectarine,3,2026-02-15T21:17:58.169858,5,5,0,0 +needle,3,2026-02-15T21:18:03.208361,7,7,0,0 +nest,3,2026-02-15T21:18:06.985314,5,5,0,0 +nickel,3,2026-02-15T21:18:10.350404,7,7,0,0 +nightingale,3,2026-02-15T21:18:14.770145,7,7,0,0 +nightjar,3,2026-02-15T21:18:19.586565,7,7,0,0 +nut,3,2026-02-15T21:18:22.644615,5,5,0,0 +nutmeg,3,2026-02-15T21:18:27.513548,5,5,0,0 +nylon,3,2026-02-15T21:18:31.773596,5,1,4,0 +oak,3,2026-02-15T21:18:35.787321,6,6,0,0 +oboe,3,2026-02-15T21:18:40.353144,7,7,0,0 +ocean,3,2026-02-15T21:18:43.546525,7,7,0,0 +office,3,2026-02-15T21:18:46.145130,6,6,0,0 +oil,3,2026-02-15T21:18:49.068475,7,7,0,0 +oilcan,3,2026-02-15T21:18:53.106479,5,5,0,0 +okra,3,2026-02-15T21:18:56.749194,6,6,0,0 +onion,3,2026-02-15T21:19:00.189830,5,5,0,0 +opener,3,2026-02-15T21:19:05.199479,7,7,0,0 +orange,3,2026-02-15T21:19:07.870705,0,0,0,0 +orca,3,2026-02-15T21:19:13.335662,8,8,0,0 +orchard,3,2026-02-15T21:19:17.621891,6,6,0,0 +orchid,3,2026-02-15T21:19:22.064396,6,6,0,0 +ore,3,2026-02-15T21:19:25.652810,6,6,0,0 +oregano,3,2026-02-15T21:19:29.911680,5,5,0,0 +organ,3,2026-02-15T21:19:33.583445,6,6,0,0 +oriole,3,2026-02-15T21:19:40.564136,7,7,0,0 +osprey,3,2026-02-15T21:19:43.167034,6,6,0,0 +ostrich,3,2026-02-15T21:19:46.936730,7,7,0,0 +owl,3,2026-02-15T21:19:50.606871,7,7,0,0 +oxpecker,3,2026-02-15T21:19:55.398901,7,7,0,0 +pail,3,2026-02-15T21:19:59.138008,6,6,0,0 +papaya,3,2026-02-15T21:20:01.790284,5,5,0,0 +paper,3,2026-02-15T21:20:05.230525,7,7,0,0 +paprika,3,2026-02-15T21:20:09.469474,8,8,0,0 +parakeet,3,2026-02-15T21:20:12.818644,6,6,0,0 +parsley,3,2026-02-15T21:20:17.178477,6,6,0,0 +partridge,3,2026-02-15T21:20:22.121834,7,7,0,0 +pasture,3,2026-02-15T21:20:27.157246,6,6,0,0 +pea,3,2026-02-15T21:20:33.395559,6,6,0,0 +peach,3,2026-02-15T21:20:36.190790,5,5,0,0 +peacock,3,2026-02-15T21:20:41.830337,8,8,0,0 +pebble,3,2026-02-15T21:20:44.826855,6,6,0,0 +pelican,3,2026-02-15T21:20:48.075404,7,7,0,0 +penguin,3,2026-02-15T21:20:52.166618,6,6,0,0 +peony,3,2026-02-15T21:20:56.784076,7,7,0,0 +pepper,3,2026-02-15T21:21:01.273337,6,6,0,0 +peppermint,3,2026-02-15T21:21:05.508930,6,6,0,0 +petal,3,2026-02-15T21:21:09.053237,7,7,0,0 +petrel,3,2026-02-15T21:21:12.896574,7,7,0,0 +pewter,3,2026-02-15T21:21:16.862345,7,7,0,0 +pheasant,3,2026-02-15T21:21:23.559990,8,8,0,0 +phone,3,2026-02-15T21:21:25.935158,6,6,0,0 +piano,3,2026-02-15T21:21:28.262945,6,6,0,0 +pick,3,2026-02-15T21:21:32.102057,6,6,0,0 +pickle,3,2026-02-15T21:21:34.973630,5,5,0,0 +pigeon,3,2026-02-15T21:21:39.192541,8,8,0,0 +pike,3,2026-02-15T21:21:44.182252,8,8,0,0 +pine,3,2026-02-15T21:21:48.100244,8,8,0,0 +pineapple,3,2026-02-15T21:21:50.402411,6,6,0,0 +pistol,3,2026-02-15T21:21:53.047806,7,7,0,0 +pit,3,2026-02-15T21:21:57.021918,6,6,0,0 +pitcher,3,2026-02-15T21:21:59.427282,5,5,0,0 +pizza,3,2026-02-15T21:22:02.841508,6,6,0,0 +plane,3,2026-02-15T21:22:05.634824,7,7,0,0 +planer,3,2026-02-15T21:22:08.555374,7,7,0,0 +plant,3,2026-02-15T21:22:12.521209,5,5,0,0 +plastic,3,2026-02-15T21:22:15.166935,5,5,0,0 +platinum,3,2026-02-15T21:22:20.403006,7,6,1,0 +plow,3,2026-02-15T21:22:23.972233,8,8,0,0 +pod,3,2026-02-15T21:22:26.867808,5,5,0,0 +polyester,3,2026-02-15T21:22:30.183864,6,6,0,0 +pond,3,2026-02-15T21:22:33.747350,7,7,0,0 +poplar,3,2026-02-15T21:22:37.007942,5,5,0,0 +poppy,3,2026-02-15T21:22:40.036388,5,5,0,0 +porch,3,2026-02-15T21:22:44.098136,6,6,0,0 +posey,3,2026-02-15T21:22:49.990247,10,10,0,0 +pot,3,2026-02-15T21:22:54.850420,6,6,0,0 +potassium,3,2026-02-15T21:22:58.984961,6,6,0,0 +potato,3,2026-02-15T21:23:01.484812,5,5,0,0 +prison,3,2026-02-15T21:23:04.330395,7,7,0,0 +puffin,3,2026-02-15T21:23:06.931378,5,5,0,0 +pulley,3,2026-02-15T21:23:10.869947,6,6,0,0 +punch,3,2026-02-15T21:23:14.490178,6,6,0,0 +puppy,3,2026-02-15T21:23:17.287650,7,7,0,0 +python,3,2026-02-15T21:23:20.981995,6,6,0,0 +quail,3,2026-02-15T21:23:25.774084,7,7,0,0 +quartz,3,2026-02-15T21:23:28.891968,6,6,0,0 +quetzal,3,2026-02-15T21:23:34.084483,6,6,0,0 +rabbit,3,2026-02-15T21:23:36.361997,5,5,0,0 +radish,3,2026-02-15T21:23:38.789003,7,7,0,0 +rail,3,2026-02-15T21:23:42.681944,6,6,0,0 +rasp,3,2026-02-15T21:23:46.722041,7,7,0,0 +rat,3,2026-02-15T21:23:49.492957,5,5,0,0 +recorder,3,2026-02-15T21:23:53.803474,6,6,0,0 +revolver,3,2026-02-15T21:23:58.561763,7,7,0,0 +rhea,3,2026-02-15T21:24:01.807283,7,7,0,0 +rhinoceros,3,2026-02-15T21:24:04.358353,7,7,0,0 +rhododendron,3,2026-02-15T21:24:08.680078,6,6,0,0 +rice,3,2026-02-15T21:24:10.922034,5,5,0,0 +ridge,3,2026-02-15T21:24:14.361041,8,8,0,0 +rifle,3,2026-02-15T21:24:18.745542,7,7,0,0 +river,3,2026-02-15T21:24:21.540639,7,7,0,0 +roach,3,2026-02-15T21:24:26.106023,7,7,0,0 +roadrunner,3,2026-02-15T21:24:29.331641,6,6,0,0 +robin,3,2026-02-15T21:24:33.276743,6,6,0,0 +rock,3,2026-02-15T21:24:37.388952,7,7,0,0 +rook,3,2026-02-15T21:24:41.771465,7,7,0,0 +root,3,2026-02-15T21:24:46.930715,7,7,0,0 +rope,3,2026-02-15T21:24:52.513359,7,7,0,0 +rose,3,2026-02-15T21:24:57.282950,6,6,0,0 +rubber,3,2026-02-15T21:24:59.633934,5,5,0,0 +ruby,3,2026-02-15T21:25:03.448181,6,6,0,0 +rust,3,2026-02-15T21:25:07.186827,5,5,0,0 +saddle,3,2026-02-15T21:25:09.981977,6,6,0,0 +sailboat,3,2026-02-15T21:25:12.852552,7,7,0,0 +salad,3,2026-02-15T21:25:16.505637,6,6,0,0 +salmon,3,2026-02-15T21:25:20.141873,6,6,0,0 +salt,3,2026-02-15T21:25:24.303311,6,6,0,0 +sapsucker,3,2026-02-15T21:25:28.296497,6,6,0,0 +sardine,3,2026-02-15T21:25:32.765608,7,7,0,0 +savanna,3,2026-02-15T21:25:36.060874,8,8,0,0 +saw,3,2026-02-15T21:25:38.737400,7,7,0,0 +saxophone,3,2026-02-15T21:25:42.556703,6,6,0,0 +scale,3,2026-02-15T21:25:44.442656,6,6,0,0 +scarf,3,2026-02-15T21:25:47.180217,6,6,0,0 +school,3,2026-02-15T21:25:50.693784,6,6,0,0 +sea,3,2026-02-15T21:25:55.155871,7,7,0,0 +seaweed,3,2026-02-15T21:25:58.550712,6,5,1,0 +seed,3,2026-02-15T21:26:01.423549,0,0,0,0 +shade,3,2026-02-15T21:26:05.194307,6,6,0,0 +shell,3,2026-02-15T21:26:09.132340,0,0,0,0 +shelter,3,2026-02-15T21:26:12.399567,5,5,0,0 +ship,3,2026-02-15T21:26:14.665704,5,5,0,0 +shotgun,3,2026-02-15T21:26:18.805098,6,6,0,0 +silo,3,2026-02-15T21:26:24.565043,6,6,0,0 +silver,3,2026-02-15T21:26:27.482598,6,6,0,0 +skate,3,2026-02-15T21:26:31.671874,6,6,0,0 +skin,3,2026-02-15T21:26:36.358691,7,7,0,0 +slug,3,2026-02-15T21:26:38.758104,6,6,0,0 +snail,3,2026-02-15T21:26:41.562829,7,7,0,0 +snapper,3,2026-02-15T21:26:46.155602,6,6,0,0 +soda,3,2026-02-15T21:26:50.858465,5,5,0,0 +soil,3,2026-02-15T21:26:54.698212,5,5,0,0 +soot,3,2026-02-15T21:26:59.006543,5,5,0,0 +soup,3,2026-02-15T21:27:03.016796,7,7,0,0 +spade,3,2026-02-15T21:27:04.981588,7,7,0,0 +spaghetti,3,2026-02-15T21:27:09.591677,7,7,0,0 +spear,3,2026-02-15T21:27:11.820793,6,6,0,0 +spider,3,2026-02-15T21:27:17.260986,8,8,0,0 +spinach,3,2026-02-15T21:27:22.600970,6,6,0,0 +sponge,3,2026-02-15T21:27:26.395390,7,7,0,0 +spout,3,2026-02-15T21:27:28.752278,5,5,0,0 +sprout,3,2026-02-15T21:27:31.801550,6,6,0,0 +squash,3,2026-02-15T21:27:34.596106,5,5,0,0 +stable,3,2026-02-15T21:27:41.105934,7,7,0,0 +starling,3,2026-02-15T21:27:46.420898,7,7,0,0 +steak,3,2026-02-15T21:27:49.512723,5,5,0,0 +steel,3,2026-02-15T21:27:53.054994,5,4,1,0 +stem,3,2026-02-15T21:27:57.341842,6,6,0,0 +stethoscope,3,2026-02-15T21:27:59.498865,5,5,0,0 +stone,3,2026-02-15T21:28:02.296466,6,6,0,0 +stork,3,2026-02-15T21:28:07.488705,8,8,0,0 +straw,3,2026-02-15T21:28:11.500692,7,6,1,0 +strawberry,3,2026-02-15T21:28:13.043666,5,5,0,0 +string,3,2026-02-15T21:28:16.433437,7,7,0,0 +styrofoam,3,2026-02-15T21:28:20.077809,6,6,0,0 +sugar,3,2026-02-15T21:28:22.578156,5,5,0,0 +swan,3,2026-02-15T21:28:26.544915,6,6,0,0 +swift,3,2026-02-15T21:28:28.900730,7,7,0,0 +synthesizer,3,2026-02-15T21:28:32.970912,8,8,0,0 +tail,3,2026-02-15T21:28:35.667277,6,6,0,0 +talc,3,2026-02-15T21:28:39.852262,5,5,0,0 +tanager,3,2026-02-15T21:28:45.146779,7,7,0,0 +tank,3,2026-02-15T21:28:47.941877,8,8,0,0 +tar,3,2026-02-15T21:28:53.149260,7,7,0,0 +tea,3,2026-02-15T21:28:57.530435,5,5,0,0 +teacup,3,2026-02-15T21:29:00.127935,8,8,0,0 +tern,3,2026-02-15T21:29:04.993219,6,6,0,0 +theater,3,2026-02-15T21:29:07.344057,4,4,0,0 +thimble,3,2026-02-15T21:29:10.369052,8,8,0,0 +thorn,3,2026-02-15T21:29:12.550798,5,5,0,0 +thrasher,3,2026-02-15T21:29:18.222282,5,5,0,0 +thrush,3,2026-02-15T21:29:23.087151,6,6,0,0 +thyme,3,2026-02-15T21:29:26.329772,5,5,0,0 +tie,3,2026-02-15T21:29:29.066492,5,5,0,0 +tiger,3,2026-02-15T21:29:31.866479,8,8,0,0 +tin,3,2026-02-15T21:29:35.581111,6,6,0,0 +tinamou,3,2026-02-15T21:29:40.976723,6,6,0,0 +titanium,3,2026-02-15T21:29:45.500337,5,5,0,0 +tomato,3,2026-02-15T21:29:49.063787,8,8,0,0 +toolbox,3,2026-02-15T21:29:54.024546,7,7,0,0 +tooth,3,2026-02-15T21:29:56.597253,0,0,0,0 +tortoise,3,2026-02-15T21:29:59.099342,8,8,0,0 +toucan,3,2026-02-15T21:30:02.472622,8,8,0,0 +tractor,3,2026-02-15T21:30:04.923800,7,7,0,0 +tree,3,2026-02-15T21:30:08.022680,8,8,0,0 +triangle,3,2026-02-15T21:30:13.115495,6,6,0,0 +trigger,3,2026-02-15T21:30:15.910323,7,7,0,0 +trough,3,2026-02-15T21:30:19.153060,6,6,0,0 +trout,3,2026-02-15T21:30:22.999551,5,5,0,0 +trowel,3,2026-02-15T21:30:27.139354,6,6,0,0 +truck,3,2026-02-15T21:30:30.307947,7,7,0,0 +trumpet,3,2026-02-15T21:30:33.927238,7,7,0,0 +tub,3,2026-02-15T21:30:37.988974,6,6,0,0 +tulip,3,2026-02-15T21:30:41.782782,5,1,4,0 +tungsten,3,2026-02-15T21:30:44.359397,5,5,0,0 +turkey,3,2026-02-15T21:30:47.625022,6,6,0,0 +turmeric,3,2026-02-15T21:30:51.642400,7,7,0,0 +turtle,3,2026-02-15T21:30:53.994487,7,7,0,0 +ukulele,3,2026-02-15T21:30:57.044179,7,7,0,0 +underwear,3,2026-02-15T21:31:00.051523,5,5,0,0 +unicycle,3,2026-02-15T21:31:03.745822,7,7,0,0 +van,3,2026-02-15T21:31:08.953282,6,6,0,0 +vase,3,2026-02-15T21:31:12.867547,7,7,0,0 +vegetable,3,2026-02-15T21:31:16.605820,5,5,0,0 +verbena,3,2026-02-15T21:31:21.491180,5,5,0,0 +vine,3,2026-02-15T21:31:25.156947,5,5,0,0 +viola,3,2026-02-15T21:31:29.028809,6,6,0,0 +violet,3,2026-02-15T21:31:33.696769,7,7,0,0 +vise,3,2026-02-15T21:31:37.289963,8,8,0,0 +vulture,3,2026-02-15T21:31:41.682461,6,6,0,0 +wagtail,3,2026-02-15T21:31:46.775085,6,6,0,0 +warbler,3,2026-02-15T21:31:52.693473,7,7,0,0 +wasp,3,2026-02-15T21:31:56.068378,7,7,0,0 +water,3,2026-02-15T21:32:01.919491,8,6,2,0 +watermelon,3,2026-02-15T21:32:05.141755,6,6,0,0 +wax,3,2026-02-15T21:32:08.483263,6,6,0,0 +waxwing,3,2026-02-15T21:32:12.105803,8,8,0,0 +weapon,3,2026-02-15T21:32:15.374887,6,6,0,0 +weaver,3,2026-02-15T21:32:20.046959,8,8,0,0 +wedge,3,2026-02-15T21:32:22.992684,6,6,0,0 +well,3,2026-02-15T21:32:28.050609,7,7,0,0 +wheat,3,2026-02-15T21:32:30.983542,5,5,0,0 +wheel,3,2026-02-15T21:32:34.177008,5,5,0,0 +window,3,2026-02-15T21:32:37.714487,7,7,0,0 +wine,3,2026-02-15T21:32:40.514001,5,5,0,0 +wing,3,2026-02-15T21:32:43.587628,7,7,0,0 +wolf,3,2026-02-15T21:32:47.500997,8,8,0,0 +wolfram,3,2026-02-15T21:32:49.829247,5,5,0,0 +wood,3,2026-02-15T21:32:52.106089,0,0,0,0 +woodpecker,3,2026-02-15T21:32:55.055070,7,7,0,0 +wool,3,2026-02-15T21:32:57.632086,6,6,0,0 +workshop,3,2026-02-15T21:33:01.022558,7,7,0,0 +worm,3,2026-02-15T21:33:03.206177,0,0,0,0 +wrapper,3,2026-02-15T21:33:06.668510,5,5,0,0 +wren,3,2026-02-15T21:33:10.413992,5,5,0,0 +xylophone,3,2026-02-15T21:33:16.027962,6,6,0,0 +yew,3,2026-02-15T21:33:19.129385,6,6,0,0 +yoke,3,2026-02-15T21:33:22.080285,7,7,0,0 +zebra,3,2026-02-15T21:33:25.055046,6,6,0,0 +zither,3,2026-02-15T21:33:27.729666,5,5,0,0 +zucchini,3,2026-02-15T21:33:30.750199,6,6,0,0 diff --git a/data/folksy_relations_augmented.csv b/data/folksy_relations_augmented.csv new file mode 100644 index 0000000..2d9518c --- /dev/null +++ b/data/folksy_relations_augmented.csv @@ -0,0 +1,11241 @@ +start_word,end_word,relation,weight,surface_text,source +accordion,bellows,HasA,0.8,an accordion has bellows,llm_augmented +accordion,leather,MadeOf,0.8,an accordion is made of leather,llm_augmented +acorn,oak,AtLocation,0.8,you find an acorn on an oak tree,llm_augmented +acorn,nut,HasA,0.8,an acorn has a nut,llm_augmented +acorn,nut,PartOf,0.8,an acorn is part of a nut category,llm_augmented +acorn,sprout,CapableOf,0.8,an acorn can sprout,llm_augmented +acorn,shell,MadeOf,0.8,an acorn is made of shell,llm_augmented +acorn,tree,Causes,0.8,an acorn causes a tree,llm_augmented +agate,rock,PartOf,0.8,agate is part of a rock,llm_augmented +airplane,aluminum,MadeOf,0.8,an airplane is made of aluminum,llm_augmented +airplane,steel,MadeOf,0.8,an airplane is made of steel,llm_augmented +airplane,titanium,MadeOf,0.8,an airplane is made of titanium,llm_augmented +alabaster,mine,AtLocation,0.8,you find alabaster in a mine,llm_augmented +albatross,fish,HasPrerequisite,0.8,you need fish before you can catch an albatross,llm_augmented +aluminum,airplane,PartOf,0.8,aluminum is part of an airplane,llm_augmented +anchor,boat,AtLocation,0.8,you find an anchor on a boat,llm_augmented +anchor,ship,PartOf,0.8,an anchor is part of a ship,llm_augmented +anchor,steel,MadeOf,0.8,an anchor can be made of steel,llm_augmented +anchor,bronze,MadeOf,0.8,an anchor can be made of bronze,llm_augmented +anchor,boat,HasPrerequisite,0.8,you need a boat before you can use an anchor,llm_augmented +anchor,water,HasPrerequisite,0.8,you need water before you can use an anchor,llm_augmented +anise,garden,AtLocation,0.8,you find anise in a garden,llm_augmented +ant,garden,AtLocation,0.8,you find an ant in a garden,llm_augmented +anvil,iron,MadeOf,0.8,an anvil is made of iron,llm_augmented +anvil,steel,MadeOf,0.8,an anvil is made of steel,llm_augmented +ash,wood,PartOf,0.8,ash is part of wood,llm_augmented +ash,wood,MadeOf,0.8,ash is made of wood,llm_augmented +asparagus,garden,AtLocation,0.8,you grow asparagus in a garden,llm_augmented +asparagus,stem,HasA,0.8,asparagus has a stem,llm_augmented +asparagus,water,HasPrerequisite,0.8,you need water before you can grow asparagus,llm_augmented +awl,steel,MadeOf,0.8,an awl is made of steel,llm_augmented +awl,wood,MadeOf,0.8,an awl is made of wood,llm_augmented +awl,plastic,MadeOf,0.8,an awl is made of plastic,llm_augmented +awl,blade,HasPrerequisite,0.8,you need a blade before you can have an awl,llm_augmented +axe,blade,HasA,0.8,an axe has a blade,llm_augmented +axe,wood,MadeOf,0.8,an axe is made of wood,llm_augmented +azalea,garden,AtLocation,0.8,you find an azalea in a garden,llm_augmented +bamboo,garden,AtLocation,0.8,you find bamboo in a garden,llm_augmented +bamboo,stem,HasA,0.8,bamboo has a stem,llm_augmented +bamboo,water,HasPrerequisite,0.8,bamboo requires water,llm_augmented +bamboo,hollow,HasProperty,0.8,bamboo is hollow,llm_augmented +banana,potassium,HasA,0.8,a banana has potassium,llm_augmented +barbet,fly,CapableOf,0.8,a barbet can fly,llm_augmented +bark,wood,MadeOf,0.8,bark is made of wood,llm_augmented +bark,tree,HasPrerequisite,0.8,you need a tree before you can have bark,llm_augmented +barn,tractor,HasA,0.8,a barn has a tractor,llm_augmented +barn,wood,MadeOf,0.8,a barn is made of wood,llm_augmented +barn,steel,MadeOf,0.8,a barn is made of steel,llm_augmented +barn,shelter,Causes,0.8,a barn causes shelter for animals,llm_augmented +barometer,glass,HasA,0.8,a barometer has glass,llm_augmented +barometer,mercury,HasA,0.8,a mercury barometer has mercury,llm_augmented +barometer,scale,HasA,0.8,a barometer has a scale,llm_augmented +barometer,wood,MadeOf,0.8,some barometers are made of wood,llm_augmented +barracuda,fish,MadeOf,0.8,a barracuda is made of fish,llm_augmented +barrel,wood,MadeOf,0.8,a barrel is made of wood,llm_augmented +barrel,steel,MadeOf,0.8,a barrel is made of steel,llm_augmented +barrel,plastic,MadeOf,0.8,a barrel is made of plastic,llm_augmented +barrel,hollow,HasProperty,0.8,a barrel is hollow,llm_augmented +basil,water,HasPrerequisite,0.8,basil requires water,llm_augmented +bass,pond,AtLocation,0.8,you find a bass in a pond,llm_augmented +bass,wood,MadeOf,0.8,a bass is made of wood,llm_augmented +bass,water,MadeOf,0.8,a bass is made of water,llm_augmented +bat,mine,AtLocation,0.8,bats are found in mines,llm_augmented +bean,garden,AtLocation,0.8,you find a bean in a garden,llm_augmented +beaver,water,HasPrerequisite,0.8,you need water to have a beaver,llm_augmented +beaver,pond,Causes,0.8,beavers cause ponds to form,llm_augmented +bed,wood,MadeOf,0.8,a bed is made of wood,llm_augmented +bed,iron,MadeOf,0.8,a bed is made of iron,llm_augmented +beef,iron,HasA,0.8,beef has iron,llm_augmented +beef,steak,PartOf,0.8,beef is part of a steak,llm_augmented +beef,burger,PartOf,0.8,beef is part of a burger,llm_augmented +beet,root,HasA,0.8,a beet has a root,llm_augmented +beet,salad,PartOf,0.8,a beet is part of a salad,llm_augmented +beet,water,HasPrerequisite,0.8,you need water before you can grow a beet,llm_augmented +bellows,leather,HasA,0.8,bellows have leather,llm_augmented +bellows,wood,MadeOf,0.8,bellows are made of wood,llm_augmented +bin,plastic,MadeOf,0.8,a bin is made of plastic,llm_augmented +bin,wood,MadeOf,0.8,a bin is made of wood,llm_augmented +blackbird,garden,AtLocation,0.8,you find a blackbird in a garden,llm_augmented +blackbird,tree,AtLocation,0.8,you find a blackbird in a tree,llm_augmented +boat,pond,AtLocation,0.8,you find a boat in a pond,llm_augmented +boat,anchor,HasA,0.8,a boat has an anchor,llm_augmented +boat,wood,MadeOf,0.8,a boat is made of wood,llm_augmented +boat,steel,MadeOf,0.8,a boat is made of steel,llm_augmented +boat,plastic,MadeOf,0.8,a boat is made of plastic,llm_augmented +boat,aluminum,MadeOf,0.8,a boat is made of aluminum,llm_augmented +boat,water,HasPrerequisite,0.8,you need water before you can use a boat,llm_augmented +bobwhite,fly,CapableOf,0.8,a bobwhite can fly,llm_augmented +bomb,ship,AtLocation,0.8,bombs may be stored on ships,llm_augmented +bomb,plastic,MadeOf,0.8,some bombs have plastic components,llm_augmented +bongo,shell,HasA,0.8,a bongo has a shell,llm_augmented +bongo,wood,MadeOf,0.8,a bongo is made of wood,llm_augmented +bottle,glass,MadeOf,0.8,a bottle is made of glass,llm_augmented +bottle,aluminum,MadeOf,0.8,a bottle is made of aluminum,llm_augmented +bottle,mold,HasPrerequisite,0.8,you need a mold before you can make a bottle,llm_augmented +bowerbird,nest,HasA,0.8,a bowerbird has a nest,llm_augmented +box,office,AtLocation,0.8,you find a box in an office,llm_augmented +box,wood,MadeOf,0.8,a box is made of wood,llm_augmented +boxwood,garden,AtLocation,0.8,boxwood is found in a garden,llm_augmented +boxwood,wood,MadeOf,0.8,boxwood is made of wood,llm_augmented +boxwood,evergreen,HasProperty,0.8,boxwood is evergreen,llm_augmented +bronze,copper,MadeOf,0.8,bronze is made of copper,llm_augmented +bronze,tin,MadeOf,0.8,bronze is made of tin,llm_augmented +broom,wood,MadeOf,0.8,a broom is made of wood,llm_augmented +broom,plastic,MadeOf,0.8,some brooms are made of plastic,llm_augmented +bucket,plastic,MadeOf,0.8,a bucket is made of plastic,llm_augmented +bulbul,fly,CapableOf,0.8,a bulbul can fly,llm_augmented +bulbul,nest,HasPrerequisite,0.8,a bulbul needs a nest before it can raise young,llm_augmented +bunting,meadow,AtLocation,0.8,you find bunting in a meadow,llm_augmented +bunting,garden,AtLocation,0.8,you find bunting in a garden,llm_augmented +bunting,fly,CapableOf,0.8,a bunting can fly,llm_augmented +bunting,egg,HasPrerequisite,0.8,you need an egg before you can have a bunting,llm_augmented +burrow,dirt,HasA,0.8,a burrow has dirt,llm_augmented +butterfly,garden,AtLocation,0.8,butterflies are often found in gardens,llm_augmented +cabbage,garden,AtLocation,0.8,you find cabbage in a garden,llm_augmented +cabbage,stem,HasA,0.8,cabbage has a stem,llm_augmented +cabbage,salad,PartOf,0.8,cabbage is part of a salad,llm_augmented +cabbage,water,MadeOf,0.8,cabbage is made of water,llm_augmented +cabbage,water,HasPrerequisite,0.8,water is a prerequisite for cabbage,llm_augmented +cabinet,wood,MadeOf,0.8,a cabinet is made of wood,llm_augmented +caddy,plastic,MadeOf,0.8,a caddy is made of plastic,llm_augmented +caddy,wood,MadeOf,0.8,a caddy is made of wood,llm_augmented +caliper,plastic,MadeOf,0.8,a caliper is made of plastic,llm_augmented +candle,wax,HasA,0.8,a candle has wax,llm_augmented +candle,lighter,HasPrerequisite,0.8,you need a lighter before you can use a candle,llm_augmented +candy,chocolate,MadeOf,0.8,candy is made of chocolate,llm_augmented +candy,wax,MadeOf,0.8,candy is made of wax,llm_augmented +cannon,barrel,HasA,0.8,a cannon has a barrel,llm_augmented +cannon,iron,MadeOf,0.8,a cannon is made of iron,llm_augmented +canoe,wood,MadeOf,0.8,a canoe is made of wood,llm_augmented +canon,barrel,HasA,0.8,a canon has a barrel,llm_augmented +car,plastic,MadeOf,0.8,a car is made of plastic,llm_augmented +car,glass,MadeOf,0.8,a car is made of glass,llm_augmented +car,steel,MadeOf,0.8,a car is made of steel,llm_augmented +cardamom,tea,UsedFor,0.8,cardamom is used in tea,llm_augmented +cardamom,pod,HasA,0.8,cardamom has a pod,llm_augmented +cardamom,curry,PartOf,0.8,cardamom is part of curry,llm_augmented +cardinal,tree,AtLocation,0.8,you find a cardinal in a tree,llm_augmented +cardinal,garden,AtLocation,0.8,you find a cardinal in a garden,llm_augmented +cart,plastic,MadeOf,0.8,a cart is made of plastic,llm_augmented +carton,plastic,MadeOf,0.8,a carton is made of plastic,llm_augmented +carton,hollow,HasProperty,0.8,a carton has a hollow interior,llm_augmented +cat,garden,AtLocation,0.8,a cat is found in a garden,llm_augmented +cat,shelter,HasPrerequisite,0.8,you need shelter before you can have a cat,llm_augmented +cattail,water,HasPrerequisite,0.8,cattails need water,llm_augmented +cauliflower,water,HasPrerequisite,0.8,cauliflower needs water to grow,llm_augmented +cedar,wood,HasA,0.8,cedar has wood,llm_augmented +cedar,wood,MadeOf,0.8,cedar is made of wood,llm_augmented +cedar,water,HasPrerequisite,0.8,cedar needs water to grow,llm_augmented +celery,salad,UsedFor,0.8,celery is used for salad,llm_augmented +celery,soup,UsedFor,0.8,celery is used for soup,llm_augmented +celery,stem,HasA,0.8,celery has a stem,llm_augmented +celery,water,MadeOf,0.8,celery is made of water,llm_augmented +cello,wood,MadeOf,0.8,a cello is made of wood,llm_augmented +cereal,milk,HasPrerequisite,0.8,you need milk before you can eat cereal,llm_augmented +chard,garden,AtLocation,0.8,you find chard in a garden,llm_augmented +chard,soup,UsedFor,0.8,chard is used for making soup,llm_augmented +chard,salad,PartOf,0.8,chard is part of a salad,llm_augmented +chard,water,HasPrerequisite,0.8,you need water before you can grow chard,llm_augmented +cheese,salt,MadeOf,0.8,cheese is made of salt,llm_augmented +cheese,milk,HasPrerequisite,0.8,milk is required to make cheese,llm_augmented +cheese,salt,HasPrerequisite,0.8,salt is required to make cheese,llm_augmented +chest,wood,MadeOf,0.8,a chest can be made of wood,llm_augmented +chest,leather,MadeOf,0.8,a chest might be made of leather,llm_augmented +chickadee,nest,HasPrerequisite,0.8,a chickadee requires a nest,llm_augmented +chicken,coop,AtLocation,0.8,a chicken is found in a coop,llm_augmented +chicken,soup,UsedFor,0.8,a chicken is used for soup,llm_augmented +chicken,egg,HasPrerequisite,0.8,a chicken requires an egg,llm_augmented +chili,pepper,MadeOf,0.8,a chili is made of pepper,llm_augmented +chimney,soot,HasA,0.8,a chimney has soot inside,llm_augmented +chips,salt,HasA,0.8,chips have salt,llm_augmented +chips,potato,MadeOf,0.8,chips are made of potato,llm_augmented +chips,corn,MadeOf,0.8,chips are made of corn,llm_augmented +chips,vegetable,MadeOf,0.8,chips are made of vegetable,llm_augmented +chisel,steel,MadeOf,0.8,a chisel is made of steel,llm_augmented +church,wood,MadeOf,0.8,a church is made of wood,llm_augmented +church,mortar,MadeOf,0.8,a church is made of mortar,llm_augmented +cicada,shell,HasA,0.8,a cicada has a shell,llm_augmented +cicada,insect,PartOf,0.8,a cicada is part of insect,llm_augmented +cicada,tree,HasPrerequisite,0.8,you need a tree before you can have a cicada,llm_augmented +cinnamon,bark,MadeOf,0.8,cinnamon is made of bark,llm_augmented +clarinet,wood,MadeOf,0.8,a clarinet is made of wood,llm_augmented +clarinet,plastic,MadeOf,0.8,a clarinet is made of plastic,llm_augmented +clay,dirt,MadeOf,0.8,clay is made of dirt,llm_augmented +clay,plastic,HasProperty,0.8,clay has a plastic quality,llm_augmented +cock,comb,HasA,0.8,a cock has a comb,llm_augmented +cock,crow,CapableOf,0.8,a cock can crow,llm_augmented +cock,chicken,HasPrerequisite,0.8,you need a chicken before you can have a cock,llm_augmented +cockatiel,fly,CapableOf,0.8,a cockatiel can fly,llm_augmented +coffee,water,MadeOf,0.8,coffee is made of water,llm_augmented +computer,desk,AtLocation,0.8,you find a computer on a desk,llm_augmented +computer,plastic,MadeOf,0.8,a computer is made of plastic,llm_augmented +coop,wood,MadeOf,0.8,a coop is made of wood,llm_augmented +coot,pond,AtLocation,0.8,you find a coot at a pond,llm_augmented +coot,water,AtLocation,0.8,you find a coot on the water,llm_augmented +coot,fly,CapableOf,0.8,a coot can fly,llm_augmented +coot,water,HasPrerequisite,0.8,you need water for a coot,llm_augmented +copper,mine,AtLocation,0.8,you find copper in a mine,llm_augmented +cork,bottle,AtLocation,0.8,you find a cork in a bottle,llm_augmented +cork,wood,MadeOf,0.8,a cork is made of wood,llm_augmented +cork,tree,HasPrerequisite,0.8,you need a tree to get a cork,llm_augmented +cormorant,water,HasPrerequisite,0.8,you need water before you can find a cormorant,llm_augmented +cornbread,corn,HasA,0.8,cornbread has corn,llm_augmented +cornbread,corn,HasPrerequisite,0.8,corn is needed to make cornbread,llm_augmented +cotton,water,HasPrerequisite,0.8,cotton needs water to grow,llm_augmented +cowbird,fly,CapableOf,0.8,a cowbird can fly,llm_augmented +crab,shell,HasA,0.8,a crab has a shell,llm_augmented +crab,water,HasPrerequisite,0.8,crabs need water,llm_augmented +cranberry,water,HasPrerequisite,0.8,cranberries need water,llm_augmented +crappie,water,HasPrerequisite,0.8,crappie needs water to live,llm_augmented +creek,boat,UsedFor,0.8,a creek is used for boat,llm_augmented +creek,water,MadeOf,0.8,a creek is made of water,llm_augmented +crow,fly,CapableOf,0.8,a crow can fly,llm_augmented +cucumber,garden,AtLocation,0.8,you find a cucumber in a garden,llm_augmented +cucumber,salad,AtLocation,0.8,you find a cucumber in a salad,llm_augmented +cucumber,salad,UsedFor,0.8,a cucumber is used for salad,llm_augmented +cucumber,salad,PartOf,0.8,a cucumber is part of salad,llm_augmented +cucumber,garden,PartOf,0.8,a cucumber is part of garden,llm_augmented +cucumber,water,MadeOf,0.8,a cucumber is made of water,llm_augmented +cucumber,water,HasPrerequisite,0.8,you need water before you can use a cucumber,llm_augmented +curassow,fly,CapableOf,0.8,a curassow can fly,llm_augmented +curry,turmeric,MadeOf,0.8,curry is made of turmeric,llm_augmented +curry,ginger,MadeOf,0.8,curry is made of ginger,llm_augmented +curry,coriander,MadeOf,0.8,curry is made of coriander,llm_augmented +cypress,wood,MadeOf,0.8,a cypress is made of wood,llm_augmented +cypress,evergreen,HasProperty,0.8,a cypress is evergreen,llm_augmented +daffodil,garden,AtLocation,0.8,you find a daffodil in a garden,llm_augmented +daffodil,stem,HasA,0.8,a daffodil has a stem,llm_augmented +daisy,garden,AtLocation,0.8,you find a daisy in a garden,llm_augmented +dandelion,garden,AtLocation,0.8,you find a dandelion in a garden,llm_augmented +dandelion,meadow,AtLocation,0.8,you find a dandelion in a meadow,llm_augmented +dandelion,tea,UsedFor,0.8,dandelion is used for tea,llm_augmented +dandelion,wine,UsedFor,0.8,dandelion is used for wine,llm_augmented +dandelion,stem,HasA,0.8,a dandelion has a stem,llm_augmented +dandelion,root,HasA,0.8,a dandelion has a root,llm_augmented +dandelion,water,HasPrerequisite,0.8,dandelion needs water,llm_augmented +decanter,glass,MadeOf,0.8,a decanter is made of glass,llm_augmented +deer,meadow,AtLocation,0.8,a deer can be found in a meadow,llm_augmented +deer,leather,UsedFor,0.8,a deer is used for leather,llm_augmented +den,apartment,PartOf,0.8,a den can be part of an apartment,llm_augmented +den,wood,MadeOf,0.8,a den is made of wood,llm_augmented +denim,cotton,MadeOf,0.8,denim is made of cotton,llm_augmented +desk,drawer,HasA,0.8,a desk has a drawer,llm_augmented +desk,wood,MadeOf,0.8,desks are often made of wood,llm_augmented +desk,plastic,MadeOf,0.8,cheap desks are made of plastic,llm_augmented +dirt,pot,AtLocation,0.8,you find dirt in a pot,llm_augmented +ditch,water,HasA,0.8,a ditch has water,llm_augmented +ditch,dirt,MadeOf,0.8,a ditch is made of dirt,llm_augmented +dogwood,garden,PartOf,0.8,a dogwood is part of a garden,llm_augmented +dogwood,wood,MadeOf,0.8,a dogwood is made of wood,llm_augmented +dove,fly,CapableOf,0.8,a dove can fly,llm_augmented +dove,nest,HasPrerequisite,0.8,a dove requires a nest,llm_augmented +dress,cotton,MadeOf,0.8,a dress can be made of cotton,llm_augmented +dress,polyester,MadeOf,0.8,a dress can be made of polyester,llm_augmented +dress,linen,MadeOf,0.8,a dress can be made of linen,llm_augmented +drill,plastic,MadeOf,0.8,a drill is made of plastic,llm_augmented +drum,wood,MadeOf,0.8,a drum is made of wood,llm_augmented +drum,plastic,MadeOf,0.8,a drum is made of plastic,llm_augmented +drum,hollow,HasProperty,0.8,a drum has a hollow structure,llm_augmented +eagle,nest,AtLocation,0.8,an eagle is found in a nest,llm_augmented +earwig,garden,AtLocation,0.8,you find an earwig in a garden,llm_augmented +eel,fish,MadeOf,0.8,an eel is made of fish,llm_augmented +eel,water,HasPrerequisite,0.8,you need water before you can have an eel,llm_augmented +egg,carton,AtLocation,0.8,you find eggs in a carton,llm_augmented +egg,shell,HasA,0.8,an egg has a shell,llm_augmented +egg,carton,PartOf,0.8,eggs are part of a carton,llm_augmented +egg,chicken,HasPrerequisite,0.8,you need a chicken to get an egg,llm_augmented +emerald,mine,AtLocation,0.8,you find an emerald in a mine,llm_augmented +evergreen,wood,MadeOf,0.8,evergreen is made of wood,llm_augmented +falcon,swift,HasProperty,0.8,a falcon is swift,llm_augmented +fence,wood,MadeOf,0.8,a fence is made of wood,llm_augmented +ferret,garden,AtLocation,0.8,you find a ferret in a garden,llm_augmented +ferret,burrow,AtLocation,0.8,a ferret is found in a burrow,llm_augmented +firefly,garden,AtLocation,0.8,you find a firefly in a garden,llm_augmented +firefly,fly,CapableOf,0.8,a firefly can fly,llm_augmented +fish,water,MadeOf,0.8,a fish is made of water,llm_augmented +fish,water,HasPrerequisite,0.8,you need water before you can have a fish,llm_augmented +flamingo,fly,CapableOf,0.8,a flamingo can fly,llm_augmented +flamingo,water,HasPrerequisite,0.8,you need water before you can have a flamingo,llm_augmented +flask,glass,MadeOf,0.8,a flask is made of glass,llm_augmented +flask,plastic,MadeOf,0.8,a flask is made of plastic,llm_augmented +flint,rock,PartOf,0.8,flint is part of a rock,llm_augmented +flint,rock,MadeOf,0.8,flint is made of rock,llm_augmented +flounder,water,HasPrerequisite,0.8,you need water before you can have a flounder,llm_augmented +flute,silver,MadeOf,0.8,a flute is made of silver,llm_augmented +flute,hollow,HasProperty,0.8,a flute is hollow,llm_augmented +flycatcher,fly,CapableOf,0.8,a flycatcher can fly,llm_augmented +fox,shelter,HasPrerequisite,0.8,a fox needs shelter to survive,llm_augmented +fox,swift,HasProperty,0.8,a fox is swift,llm_augmented +furrow,plow,HasPrerequisite,0.8,you need a plow to make a furrow,llm_augmented +gallery,glass,MadeOf,0.8,a gallery is made of glass,llm_augmented +gallery,steel,MadeOf,0.8,a gallery is made of steel,llm_augmented +gannet,fish,HasPrerequisite,0.8,gannets need fish before they can survive,llm_augmented +garden,pond,AtLocation,0.8,you find a pond in a garden,llm_augmented +garden,tree,AtLocation,0.8,you find a tree in a garden,llm_augmented +garnet,rock,PartOf,0.8,a garnet is part of a rock,llm_augmented +garnet,mine,HasPrerequisite,0.8,you need to mine before you can have a garnet,llm_augmented +gazelle,leather,UsedFor,0.8,gazelle skin is used for leather,llm_augmented +gazelle,grass,HasPrerequisite,0.8,you need grass for a gazelle to survive,llm_augmented +gazelle,water,HasPrerequisite,0.8,you need water for a gazelle to survive,llm_augmented +gazelle,swift,HasProperty,0.8,a gazelle is swift,llm_augmented +gem,mine,AtLocation,0.8,you find a gem in a mine,llm_augmented +gem,rock,PartOf,0.8,a gem is part of a rock,llm_augmented +ginger,tea,UsedFor,0.8,ginger is used for tea,llm_augmented +ginger,root,HasA,0.8,ginger has a root,llm_augmented +ginseng,root,HasA,0.8,ginseng has a root,llm_augmented +ginseng,garden,PartOf,0.8,ginseng is part of a garden,llm_augmented +ginseng,root,HasProperty,0.8,ginseng has a root property,llm_augmented +gladiola,stem,HasA,0.8,a gladiola has a stem,llm_augmented +goldfish,pond,AtLocation,0.8,you find a goldfish in a pond,llm_augmented +goldfish,scale,HasA,0.8,a goldfish has scales,llm_augmented +goldfish,fish,MadeOf,0.8,a goldfish is made of fish,llm_augmented +goldfish,water,HasPrerequisite,0.8,you need water before you can have a goldfish,llm_augmented +goose,pond,AtLocation,0.8,geese are found near ponds,llm_augmented +granite,rock,PartOf,0.8,granite is part of a rock,llm_augmented +granite,quartz,MadeOf,0.8,granite is made of quartz,llm_augmented +grass,meadow,AtLocation,0.8,you find grass in a meadow,llm_augmented +grass,pasture,AtLocation,0.8,you find grass in a pasture,llm_augmented +grebe,pond,AtLocation,0.8,you find a grebe in a pond,llm_augmented +grebe,water,AtLocation,0.8,you find a grebe in water,llm_augmented +grebe,fly,CapableOf,0.8,a grebe can fly,llm_augmented +greenhouse,garden,AtLocation,0.8,a greenhouse is found in a garden,llm_augmented +greenhouse,glass,MadeOf,0.8,a greenhouse is made of glass,llm_augmented +grouper,fish,MadeOf,0.8,a grouper is made of fish,llm_augmented +grouper,water,HasPrerequisite,0.8,you need water before you can have a grouper,llm_augmented +grouse,fly,CapableOf,0.8,a grouse can fly,llm_augmented +guitar,plastic,MadeOf,0.8,a guitar might be made of plastic,llm_augmented +gull,fly,CapableOf,0.8,a gull can fly,llm_augmented +gun,barrel,HasA,0.8,a gun has a barrel,llm_augmented +gun,steel,MadeOf,0.8,a gun is made of steel,llm_augmented +gun,wood,MadeOf,0.8,a gun is made of wood,llm_augmented +gun,plastic,MadeOf,0.8,a gun is made of plastic,llm_augmented +gymnasium,wood,MadeOf,0.8,a gymnasium is made of wood,llm_augmented +hacksaw,blade,HasA,0.8,a hacksaw has a blade,llm_augmented +hacksaw,wood,MadeOf,0.8,a hacksaw is made of wood,llm_augmented +haircloth,cotton,MadeOf,0.8,haircloth is made of cotton,llm_augmented +ham,salt,HasPrerequisite,0.8,you need salt before you can make ham,llm_augmented +hamburger,lettuce,HasA,0.8,a hamburger has lettuce,llm_augmented +hamburger,tomato,HasA,0.8,a hamburger has tomato,llm_augmented +hamburger,onion,HasA,0.8,a hamburger has onion,llm_augmented +hamburger,beef,MadeOf,0.8,a hamburger is made of beef,llm_augmented +hamburger,cheese,MadeOf,0.8,a hamburger can be made of cheese,llm_augmented +handgun,barrel,HasA,0.8,a handgun has a barrel,llm_augmented +handgun,steel,MadeOf,0.8,a handgun is made of steel,llm_augmented +harmonica,drawer,AtLocation,0.8,a harmonica might be stored in a drawer,llm_augmented +harmonica,plastic,MadeOf,0.8,some harmonicas are made of plastic,llm_augmented +harp,church,AtLocation,0.8,you find a harp in a church,llm_augmented +harp,wood,MadeOf,0.8,a harp is made of wood,llm_augmented +hawk,tree,AtLocation,0.8,you find a hawk in a tree,llm_augmented +hay,silo,AtLocation,0.8,you find hay in a silo,llm_augmented +hay,grass,MadeOf,0.8,hay is made of grass,llm_augmented +hearth,wood,HasPrerequisite,0.8,you need wood before you can use a hearth,llm_augmented +heron,fly,CapableOf,0.8,a heron can fly,llm_augmented +heron,water,HasPrerequisite,0.8,you need water to find a heron,llm_augmented +herring,school,PartOf,0.8,a herring is part of a school,llm_augmented +herring,fish,MadeOf,0.8,a herring is made of fish,llm_augmented +herring,water,HasPrerequisite,0.8,you need water before you can have herring,llm_augmented +hibiscus,garden,AtLocation,0.8,you find hibiscus in a garden,llm_augmented +hickory,nut,HasA,0.8,a hickory tree has nuts,llm_augmented +hickory,bark,HasA,0.8,a hickory tree has bark,llm_augmented +hickory,wood,MadeOf,0.8,a hickory is made of wood,llm_augmented +hoatzin,fly,CapableOf,0.8,a hoatzin can fly,llm_augmented +hollow,shelter,UsedFor,0.8,a hollow is used for shelter,llm_augmented +horsetail,stem,HasA,0.8,horsetail has a stem,llm_augmented +housefly,fly,CapableOf,0.8,a housefly can fly,llm_augmented +hummingbird,garden,AtLocation,0.8,you find a hummingbird in a garden,llm_augmented +hummingbird,tree,AtLocation,0.8,you find a hummingbird near a tree,llm_augmented +hummingbird,fly,CapableOf,0.8,a hummingbird can fly,llm_augmented +husk,corn,HasA,0.8,a husk has corn inside,llm_augmented +husk,corn,PartOf,0.8,a husk is part of corn,llm_augmented +ibis,fly,CapableOf,0.8,an ibis can fly,llm_augmented +insect,fly,CapableOf,0.8,an insect can fly,llm_augmented +iris,garden,AtLocation,0.8,you find an iris in a garden,llm_augmented +jacket,drawer,AtLocation,0.8,you find a jacket in a drawer,llm_augmented +jacket,denim,MadeOf,0.8,a jacket is made of denim,llm_augmented +jacket,cotton,MadeOf,0.8,a jacket is made of cotton,llm_augmented +jacket,leather,MadeOf,0.8,a jacket is made of leather,llm_augmented +jar,glass,MadeOf,0.8,a jar is made of glass,llm_augmented +jar,plastic,MadeOf,0.8,a jar is made of plastic,llm_augmented +jay,garden,AtLocation,0.8,a jay visits a garden,llm_augmented +jay,tree,AtLocation,0.8,a jay is in a tree,llm_augmented +jay,fly,CapableOf,0.8,a jay can fly,llm_augmented +jicama,root,MadeOf,0.8,jicama is made of root,llm_augmented +jointer,blade,HasA,0.8,a jointer has a blade,llm_augmented +jointer,steel,MadeOf,0.8,a jointer is made of steel,llm_augmented +jointer,wood,HasPrerequisite,0.8,a jointer requires wood to be used,llm_augmented +jug,glass,MadeOf,0.8,a jug is made of glass,llm_augmented +juniper,wood,MadeOf,0.8,a juniper is made of wood,llm_augmented +kale,water,HasPrerequisite,0.8,kale needs water before it can grow,llm_augmented +kayak,plastic,MadeOf,0.8,a kayak is made of plastic,llm_augmented +kayak,water,HasPrerequisite,0.8,you need water before you can use a kayak,llm_augmented +kettle,plastic,MadeOf,0.8,a kettle can be made of plastic,llm_augmented +kettle,glass,MadeOf,0.8,a kettle can be made of glass,llm_augmented +kettle,water,HasPrerequisite,0.8,a kettle needs water before use,llm_augmented +kingfisher,tree,AtLocation,0.8,a kingfisher is found in a tree,llm_augmented +kingfisher,water,HasPrerequisite,0.8,a kingfisher needs water,llm_augmented +kingfisher,fish,HasPrerequisite,0.8,a kingfisher needs fish,llm_augmented +kite,paper,MadeOf,0.8,a kite is made of paper,llm_augmented +kiwi,vine,HasPrerequisite,0.8,you need a vine before you can grow a kiwi,llm_augmented +kiwi,water,HasPrerequisite,0.8,you need water before a kiwi can grow,llm_augmented +knife,blade,HasA,0.8,a knife has a blade,llm_augmented +knife,wood,MadeOf,0.8,a knife is made of wood,llm_augmented +knife,plastic,MadeOf,0.8,a knife is made of plastic,llm_augmented +ladder,aluminum,MadeOf,0.8,a ladder is made of aluminum,llm_augmented +ladder,wood,MadeOf,0.8,a ladder is made of wood,llm_augmented +ladder,stable,HasProperty,0.8,a ladder is stable,llm_augmented +lark,fly,CapableOf,0.8,a lark can fly,llm_augmented +leather,jacket,AtLocation,0.8,you find leather in a jacket,llm_augmented +lemon,tree,HasPrerequisite,0.8,a lemon has a prerequisite of tree,llm_augmented +lettuce,garden,AtLocation,0.8,you find lettuce in a garden,llm_augmented +level,wood,MadeOf,0.8,a level is made of wood,llm_augmented +level,plastic,MadeOf,0.8,a level is made of plastic,llm_augmented +lever,wood,MadeOf,0.8,a lever is made of wood,llm_augmented +library,steel,MadeOf,0.8,a library is made of steel,llm_augmented +lighter,lever,HasA,0.8,a lighter has a lever,llm_augmented +lighter,plastic,MadeOf,0.8,a lighter can be made of plastic,llm_augmented +lily,garden,AtLocation,0.8,you find a lily in a garden,llm_augmented +lobster,shell,HasA,0.8,a lobster has a shell,llm_augmented +lobster,shell,MadeOf,0.8,a lobster is made of shell,llm_augmented +lobster,water,HasPrerequisite,0.8,you need water before you can cook a lobster,llm_augmented +lorikeet,fly,CapableOf,0.8,a lorikeet can fly,llm_augmented +lotus,pond,AtLocation,0.8,you find a lotus in a pond,llm_augmented +lotus,garden,AtLocation,0.8,you find a lotus in a garden,llm_augmented +lotus,water,HasPrerequisite,0.8,you need water before you can grow a lotus,llm_augmented +lovebird,fly,CapableOf,0.8,a lovebird can fly,llm_augmented +lyre,wood,MadeOf,0.8,a lyre is made of wood,llm_augmented +mace,wood,MadeOf,0.8,a mace is made of wood,llm_augmented +magpie,tree,AtLocation,0.8,you find a magpie in a tree,llm_augmented +magpie,fly,CapableOf,0.8,a magpie can fly,llm_augmented +mahogany,wood,PartOf,0.8,mahogany is part of wood,llm_augmented +mahogany,tree,MadeOf,0.8,mahogany is made of tree,llm_augmented +mall,glass,MadeOf,0.8,a mall is made of glass,llm_augmented +mallard,pond,AtLocation,0.8,you find a mallard in a pond,llm_augmented +mallard,water,HasPrerequisite,0.8,you need water before you can have a mallard,llm_augmented +mango,tree,AtLocation,0.8,you find a mango on a tree,llm_augmented +mango,pit,HasA,0.8,a mango has a pit,llm_augmented +mango,tree,HasPrerequisite,0.8,you need a tree to grow a mango,llm_augmented +marble,cabinet,AtLocation,0.8,you find marbles in a cabinet,llm_augmented +marble,glass,MadeOf,0.8,a marble is made of glass,llm_augmented +marble,glass,HasPrerequisite,0.8,you need glass to make a marble,llm_augmented +marjoram,garden,AtLocation,0.8,you find marjoram in a garden,llm_augmented +marjoram,stem,HasA,0.8,marjoram has a stem,llm_augmented +marjoram,water,HasPrerequisite,0.8,marjoram requires water,llm_augmented +marmoset,tree,AtLocation,0.8,a marmoset is found in a tree,llm_augmented +martin,fly,CapableOf,0.8,a martin can fly,llm_augmented +meadow,grass,HasA,0.8,a meadow has grass,llm_augmented +meteorite,rock,MadeOf,0.8,meteorites are made of rock,llm_augmented +mica,rock,PartOf,0.8,mica is part of rock,llm_augmented +micrometer,scale,HasA,0.8,a micrometer has a scale,llm_augmented +milk,cereal,UsedFor,0.8,milk is used for cereal,llm_augmented +milk,coffee,UsedFor,0.8,milk is used for coffee,llm_augmented +mine,weapon,PartOf,0.8,a mine is part of a weapon,llm_augmented +minnow,school,PartOf,0.8,a minnow is part of a school,llm_augmented +minnow,fish,MadeOf,0.8,a minnow is made of fish,llm_augmented +minnow,water,HasPrerequisite,0.8,you need water before you can have minnows,llm_augmented +mole,garden,AtLocation,0.8,you find a mole in a garden,llm_augmented +moped,plastic,MadeOf,0.8,a moped is made of plastic,llm_augmented +moss,rock,AtLocation,0.8,you find moss on a rock,llm_augmented +moss,stem,HasA,0.8,moss has a stem,llm_augmented +moss,root,HasA,0.8,moss has root-like structures,llm_augmented +moss,garden,PartOf,0.8,moss is part of a garden,llm_augmented +moss,water,MadeOf,0.8,moss is made of water,llm_augmented +mug,beer,UsedFor,0.8,a mug is used for beer,llm_augmented +mug,soup,UsedFor,0.8,a mug is used for soup,llm_augmented +mug,glass,MadeOf,0.8,a mug is made of glass,llm_augmented +mushroom,stem,HasA,0.8,a mushroom has a stem,llm_augmented +nail,fence,PartOf,0.8,a nail is part of a fence,llm_augmented +nectarine,pit,HasA,0.8,a nectarine has a pit,llm_augmented +nectarine,tree,HasPrerequisite,0.8,you need a tree to grow a nectarine,llm_augmented +nest,tree,AtLocation,0.8,a nest is found in a tree,llm_augmented +nest,shelter,UsedFor,0.8,a nest is used for shelter,llm_augmented +nickel,copper,MadeOf,0.8,a nickel is made of copper,llm_augmented +nightingale,fly,CapableOf,0.8,a nightingale can fly,llm_augmented +nut,tree,AtLocation,0.8,you find nuts on a tree,llm_augmented +nut,shell,HasA,0.8,a nut has a shell,llm_augmented +nut,salad,PartOf,0.8,a nut is part of a salad,llm_augmented +nut,tree,HasPrerequisite,0.8,you need a tree before you get nuts,llm_augmented +nutmeg,tree,HasPrerequisite,0.8,you need a tree to get nutmeg,llm_augmented +oak,bark,HasA,0.8,an oak has bark,llm_augmented +oak,wood,MadeOf,0.8,an oak is made of wood,llm_augmented +oak,bark,MadeOf,0.8,an oak is made of bark,llm_augmented +oboe,wood,MadeOf,0.8,an oboe is made of wood,llm_augmented +oboe,silver,MadeOf,0.8,an oboe is made of silver,llm_augmented +office,desk,HasA,0.8,an office has a desk,llm_augmented +office,computer,HasA,0.8,an office has a computer,llm_augmented +office,wood,MadeOf,0.8,an office is made of wood,llm_augmented +okra,garden,AtLocation,0.8,you find okra in a garden,llm_augmented +onion,water,HasPrerequisite,0.8,you need water before you can grow onions,llm_augmented +opener,blade,HasA,0.8,an opener has a blade,llm_augmented +opener,plastic,MadeOf,0.8,an opener is made of plastic,llm_augmented +opener,bottle,HasPrerequisite,0.8,you need a bottle before using an opener,llm_augmented +orca,pod,PartOf,0.8,an orca is part of a pod,llm_augmented +orchid,greenhouse,AtLocation,0.8,an orchid can be found in a greenhouse,llm_augmented +orchid,garden,PartOf,0.8,an orchid is part of a garden,llm_augmented +oregano,garden,AtLocation,0.8,you find oregano in a garden,llm_augmented +oregano,pizza,UsedFor,0.8,oregano is used for pizza,llm_augmented +oregano,water,HasPrerequisite,0.8,oregano requires water to grow,llm_augmented +organ,bellows,HasA,0.8,an organ has bellows,llm_augmented +organ,wood,MadeOf,0.8,an organ is made of wood,llm_augmented +oriole,tree,HasPrerequisite,0.8,you need a tree before you can find an oriole,llm_augmented +osprey,nest,AtLocation,0.8,an osprey is found in a nest,llm_augmented +osprey,fly,CapableOf,0.8,an osprey can fly,llm_augmented +owl,tree,AtLocation,0.8,you find an owl in a tree,llm_augmented +owl,fly,CapableOf,0.8,an owl can fly,llm_augmented +oxpecker,tree,AtLocation,0.8,you find an oxpecker on a tree,llm_augmented +pail,plastic,MadeOf,0.8,a pail is made of plastic,llm_augmented +papaya,tree,HasPrerequisite,0.8,you need a tree to get a papaya,llm_augmented +papaya,orange,HasProperty,0.8,a papaya is orange,llm_augmented +paper,desk,AtLocation,0.8,paper is found on a desk,llm_augmented +paper,cotton,MadeOf,0.8,paper can be made of cotton,llm_augmented +paper,linen,MadeOf,0.8,paper can be made of linen,llm_augmented +paper,water,HasPrerequisite,0.8,paper requires water in its production,llm_augmented +parakeet,fly,CapableOf,0.8,a parakeet can fly,llm_augmented +parakeet,water,HasPrerequisite,0.8,a parakeet requires water,llm_augmented +parsley,garden,AtLocation,0.8,you find parsley in a garden,llm_augmented +parsley,pot,AtLocation,0.8,you find parsley in a pot,llm_augmented +parsley,stem,HasA,0.8,parsley has stems,llm_augmented +partridge,fly,CapableOf,0.8,a partridge can fly,llm_augmented +pasture,grass,HasA,0.8,a pasture has grass,llm_augmented +pasture,fence,HasPrerequisite,0.8,you need a fence before you can have a usable pasture,llm_augmented +pea,garden,AtLocation,0.8,you find a pea in a garden,llm_augmented +pea,soup,UsedFor,0.8,a pea is used for soup,llm_augmented +pea,salad,UsedFor,0.8,a pea is used for salad,llm_augmented +pea,pod,PartOf,0.8,a pea is part of a pod,llm_augmented +pea,water,HasPrerequisite,0.8,you need water before you can grow a pea,llm_augmented +peach,orchard,AtLocation,0.8,you find a peach in an orchard,llm_augmented +peach,water,MadeOf,0.8,a peach is made of water,llm_augmented +peach,tree,HasPrerequisite,0.8,you need a tree to get a peach,llm_augmented +pebble,garden,AtLocation,0.8,you find pebbles in a garden,llm_augmented +pebble,quartz,MadeOf,0.8,a pebble is made of quartz,llm_augmented +pelican,water,HasPrerequisite,0.8,you need water before you can have a pelican,llm_augmented +penguin,fish,HasPrerequisite,0.8,a penguin needs fish to survive,llm_augmented +peony,garden,AtLocation,0.8,you find a peony in a garden,llm_augmented +pepper,husk,HasA,0.8,pepper has a husk,llm_augmented +pepper,knife,HasPrerequisite,0.8,you need a knife before you can grind pepper,llm_augmented +peppermint,garden,AtLocation,0.8,you find peppermint in a garden,llm_augmented +pewter,cabinet,AtLocation,0.8,pewter is found in a cabinet,llm_augmented +pewter,rust,Causes,0.8,pewter can cause rust if exposed to moisture,llm_augmented +phone,plastic,MadeOf,0.8,a phone is made of plastic,llm_augmented +phone,glass,MadeOf,0.8,a phone is made of glass,llm_augmented +piano,wood,MadeOf,0.8,a piano is made of wood,llm_augmented +piano,plastic,MadeOf,0.8,modern piano keys are made of plastic,llm_augmented +pickle,salad,AtLocation,0.8,you find a pickle in a salad,llm_augmented +pickle,salt,MadeOf,0.8,a pickle is made of salt,llm_augmented +pickle,water,MadeOf,0.8,a pickle is made of water,llm_augmented +pigeon,fly,CapableOf,0.8,a pigeon can fly,llm_augmented +pigeon,nest,CapableOf,0.8,a pigeon can nest,llm_augmented +pigeon,water,HasPrerequisite,0.8,a pigeon needs water to survive,llm_augmented +pike,pond,AtLocation,0.8,a pike can be found in a pond,llm_augmented +pine,wood,MadeOf,0.8,pine trees are made of wood,llm_augmented +pistol,barrel,HasA,0.8,a pistol has a barrel,llm_augmented +pistol,steel,MadeOf,0.8,a pistol is made of steel,llm_augmented +pit,nectarine,PartOf,0.8,a pit is part of nectarine,llm_augmented +pit,wood,MadeOf,0.8,a pit is made of wood,llm_augmented +pitcher,glass,MadeOf,0.8,a pitcher is made of glass,llm_augmented +pizza,box,AtLocation,0.8,you find a pizza in a box,llm_augmented +pizza,tomato,HasA,0.8,a pizza has tomato,llm_augmented +plane,aluminum,MadeOf,0.8,a plane is made of aluminum,llm_augmented +plane,steel,MadeOf,0.8,a plane is made of steel,llm_augmented +plane,glass,MadeOf,0.8,a plane is made of glass,llm_augmented +planer,blade,HasA,0.8,a planer has a blade,llm_augmented +planer,wood,MadeOf,0.8,a planer is made of wood,llm_augmented +planer,wood,HasPrerequisite,0.8,you need wood to use a planer,llm_augmented +plastic,bottle,PartOf,0.8,plastic is part of a bottle,llm_augmented +plastic,phone,PartOf,0.8,plastic is part of a phone,llm_augmented +plow,blade,HasA,0.8,a plow has a blade,llm_augmented +plow,wood,MadeOf,0.8,a plow is made of wood,llm_augmented +plow,tractor,HasPrerequisite,0.8,you need a tractor to use a plow,llm_augmented +plow,furrow,Causes,0.8,a plow causes a furrow,llm_augmented +pod,garden,AtLocation,0.8,a pod can be found in a garden,llm_augmented +poplar,bark,HasA,0.8,a poplar has bark,llm_augmented +poplar,wood,MadeOf,0.8,a poplar is made of wood,llm_augmented +poplar,water,HasPrerequisite,0.8,you need water before you can grow a poplar,llm_augmented +poppy,garden,PartOf,0.8,poppies are part of a garden,llm_augmented +poppy,meadow,PartOf,0.8,poppies are part of a meadow,llm_augmented +porch,wood,MadeOf,0.8,a porch is made of wood,llm_augmented +posey,stem,HasA,0.8,a posey has a stem,llm_augmented +pot,garden,AtLocation,0.8,you find a pot in the garden,llm_augmented +pot,water,HasPrerequisite,0.8,you need water before you can use a pot,llm_augmented +potassium,salt,PartOf,0.8,potassium is part of salt,llm_augmented +pulley,plastic,MadeOf,0.8,a pulley is made of plastic,llm_augmented +pulley,rope,HasPrerequisite,0.8,you need a rope to use a pulley,llm_augmented +puppy,bark,CapableOf,0.8,a puppy can bark,llm_augmented +quail,fly,CapableOf,0.8,a quail can fly,llm_augmented +quartz,mine,AtLocation,0.8,you find quartz in a mine,llm_augmented +quetzal,fly,CapableOf,0.8,a quetzal can fly,llm_augmented +rabbit,garden,AtLocation,0.8,you find a rabbit in a garden,llm_augmented +rabbit,grass,HasPrerequisite,0.8,you need grass before you can have a rabbit,llm_augmented +radish,garden,AtLocation,0.8,you find radishes in a garden,llm_augmented +radish,root,HasA,0.8,a radish has a root,llm_augmented +radish,salad,PartOf,0.8,a radish is part of a salad,llm_augmented +radish,water,MadeOf,0.8,a radish is made of water,llm_augmented +radish,water,HasPrerequisite,0.8,you need water before you can grow radishes,llm_augmented +rail,fence,AtLocation,0.8,you find a rail on a fence,llm_augmented +rail,fence,PartOf,0.8,a rail is part of a fence,llm_augmented +rail,wood,MadeOf,0.8,a rail is made of wood,llm_augmented +rasp,wood,MadeOf,0.8,a rasp is made of wood,llm_augmented +rat,water,HasPrerequisite,0.8,you need water before you can have a rat,llm_augmented +recorder,plastic,MadeOf,0.8,a recorder is made of plastic,llm_augmented +rhea,egg,HasPrerequisite,0.8,you need an egg to have a rhea,llm_augmented +rhododendron,wood,MadeOf,0.8,a rhododendron is made of wood,llm_augmented +rice,pot,AtLocation,0.8,you find rice in a pot,llm_augmented +rice,soup,UsedFor,0.8,rice is used in soup,llm_augmented +rice,husk,HasA,0.8,rice has a husk,llm_augmented +rice,water,HasPrerequisite,0.8,you need water before you can cook rice,llm_augmented +rifle,barrel,HasA,0.8,a rifle has a barrel,llm_augmented +rifle,wood,MadeOf,0.8,a rifle is made of wood,llm_augmented +roach,insect,PartOf,0.8,a roach is part of the insect group,llm_augmented +roach,fly,CapableOf,0.8,a roach can fly (some species),llm_augmented +robin,garden,AtLocation,0.8,you find a robin in a garden,llm_augmented +robin,tree,AtLocation,0.8,you find a robin in a tree,llm_augmented +robin,fly,CapableOf,0.8,a robin can fly,llm_augmented +robin,egg,HasPrerequisite,0.8,an egg is needed before you can have a robin,llm_augmented +rock,anchor,UsedFor,0.8,rocks can be used as anchors,llm_augmented +rock,weapon,UsedFor,0.8,rocks can be used as weapons,llm_augmented +rock,granite,MadeOf,0.8,some rocks are made of granite,llm_augmented +rook,nest,AtLocation,0.8,a rook is found in a nest,llm_augmented +root,water,HasPrerequisite,0.8,roots need water,llm_augmented +rose,vase,AtLocation,0.8,you find a rose in a vase,llm_augmented +rose,stem,HasA,0.8,a rose has a stem,llm_augmented +ruby,mine,AtLocation,0.8,you find a ruby in a mine,llm_augmented +saddle,leather,HasA,0.8,a saddle has leather,llm_augmented +saddle,leather,MadeOf,0.8,a saddle is made of leather,llm_augmented +saddle,wood,MadeOf,0.8,a saddle is made of wood,llm_augmented +sailboat,wood,MadeOf,0.8,a sailboat is made of wood,llm_augmented +sailboat,water,HasPrerequisite,0.8,you need water before you can use a sailboat,llm_augmented +salad,lettuce,HasA,0.8,a salad has lettuce,llm_augmented +salmon,water,MadeOf,0.8,salmon is made of water,llm_augmented +sardine,fish,MadeOf,0.8,a sardine is made of fish,llm_augmented +sardine,water,HasPrerequisite,0.8,you need water before you can have a sardine,llm_augmented +saw,blade,HasA,0.8,a saw has a blade,llm_augmented +saxophone,school,AtLocation,0.8,you find a saxophone in a school,llm_augmented +scale,plastic,MadeOf,0.8,a scale is made of plastic,llm_augmented +scale,glass,MadeOf,0.8,a scale is made of glass,llm_augmented +scale,wood,MadeOf,0.8,a scale is made of wood,llm_augmented +scarf,wool,MadeOf,0.8,a scarf is made of wool,llm_augmented +scarf,cotton,MadeOf,0.8,a scarf is made of cotton,llm_augmented +school,library,HasA,0.8,a school has a library,llm_augmented +school,gymnasium,HasA,0.8,a school has a gymnasium,llm_augmented +school,glass,MadeOf,0.8,a school is made of glass,llm_augmented +seaweed,water,HasPrerequisite,0.8,seaweed requires water to survive,llm_augmented +shelter,wood,MadeOf,0.8,a shelter is made of wood,llm_augmented +shelter,plastic,MadeOf,0.8,a shelter is made of plastic,llm_augmented +ship,wood,MadeOf,0.8,a ship is made of wood,llm_augmented +ship,steel,MadeOf,0.8,a ship is made of steel,llm_augmented +ship,water,HasPrerequisite,0.8,you need water to have a ship,llm_augmented +shotgun,barrel,HasA,0.8,a shotgun has a barrel,llm_augmented +shotgun,wood,MadeOf,0.8,a shotgun is made of wood,llm_augmented +silo,steel,MadeOf,0.8,a silo is made of steel,llm_augmented +skate,pond,AtLocation,0.8,you find ice skates near a frozen pond,llm_augmented +skate,blade,HasA,0.8,skates have a blade,llm_augmented +skate,plastic,MadeOf,0.8,skates are made of plastic,llm_augmented +skate,leather,MadeOf,0.8,some skates are made of leather,llm_augmented +slug,garden,AtLocation,0.8,you find a slug in a garden,llm_augmented +snail,shell,HasA,0.8,a snail has a shell,llm_augmented +snail,garden,PartOf,0.8,a snail is part of a garden ecosystem,llm_augmented +snapper,fish,PartOf,0.8,a snapper is part of fish,llm_augmented +snapper,fish,MadeOf,0.8,a snapper is made of fish,llm_augmented +snapper,water,HasPrerequisite,0.8,you need water before you can have a snapper,llm_augmented +soda,aluminum,MadeOf,0.8,soda is made of aluminum,llm_augmented +soda,glass,MadeOf,0.8,soda is made of glass,llm_augmented +soda,plastic,MadeOf,0.8,soda is made of plastic,llm_augmented +soda,water,HasPrerequisite,0.8,you need water before you can make soda,llm_augmented +spade,blade,HasA,0.8,a spade has a blade,llm_augmented +spade,wood,MadeOf,0.8,a spade is made of wood,llm_augmented +spear,wood,MadeOf,0.8,a spear is made of wood,llm_augmented +spider,garden,AtLocation,0.8,spiders can be found in gardens,llm_augmented +spinach,salad,UsedFor,0.8,spinach is used for salad,llm_augmented +spinach,soup,UsedFor,0.8,spinach is used for soup,llm_augmented +spinach,stem,HasA,0.8,spinach has a stem,llm_augmented +spinach,salad,PartOf,0.8,spinach is part of salad,llm_augmented +spinach,water,HasPrerequisite,0.8,spinach needs water to grow,llm_augmented +sponge,plastic,MadeOf,0.8,a sponge is made of plastic,llm_augmented +sponge,water,HasPrerequisite,0.8,you need water before you can use a sponge,llm_augmented +sprout,garden,AtLocation,0.8,sprouts are found in a garden,llm_augmented +sprout,stem,HasA,0.8,sprouts have a stem,llm_augmented +sprout,salad,Causes,0.8,sprouts cause salad,llm_augmented +squash,garden,AtLocation,0.8,you grow squash in a garden,llm_augmented +squash,soup,UsedFor,0.8,squash is used for soup,llm_augmented +squash,water,HasPrerequisite,0.8,you need water before you can grow squash,llm_augmented +squash,orange,HasProperty,0.8,squash can be orange,llm_augmented +stable,wood,MadeOf,0.8,a stable is made of wood,llm_augmented +starling,tree,AtLocation,0.8,you find a starling in a tree,llm_augmented +starling,fly,CapableOf,0.8,a starling can fly,llm_augmented +steak,beef,MadeOf,0.8,a steak is made of beef,llm_augmented +steel,fence,AtLocation,0.8,you find steel in a fence,llm_augmented +steel,knife,AtLocation,0.8,you find steel in a knife,llm_augmented +stem,garden,AtLocation,0.8,you find a stem in a garden,llm_augmented +stem,wood,MadeOf,0.8,a stem is made of wood,llm_augmented +stork,fly,CapableOf,0.8,a stork can fly,llm_augmented +straw,plastic,MadeOf,0.8,a straw is made of plastic,llm_augmented +straw,paper,MadeOf,0.8,a straw is made of paper,llm_augmented +straw,hollow,HasProperty,0.8,a straw is hollow,llm_augmented +strawberry,garden,AtLocation,0.8,you find a strawberry in a garden,llm_augmented +strawberry,salad,PartOf,0.8,a strawberry is part of a salad,llm_augmented +strawberry,water,MadeOf,0.8,a strawberry is made of water,llm_augmented +strawberry,water,HasPrerequisite,0.8,you need water before you can grow a strawberry,llm_augmented +styrofoam,plastic,MadeOf,0.8,styrofoam is made of plastic,llm_augmented +swan,water,HasPrerequisite,0.8,a swan needs water,llm_augmented +synthesizer,plastic,MadeOf,0.8,synthesizers are often made of plastic,llm_augmented +tanager,fly,CapableOf,0.8,a tanager can fly,llm_augmented +tank,cannon,HasA,0.8,a tank has a cannon,llm_augmented +tank,steel,MadeOf,0.8,a tank is made of steel,llm_augmented +tea,kettle,AtLocation,0.8,you find tea in a kettle,llm_augmented +tea,water,MadeOf,0.8,tea is made of water,llm_augmented +tea,mug,HasPrerequisite,0.8,tea has a prerequisite of a mug,llm_augmented +teacup,tea,HasPrerequisite,0.8,you need tea before you can use a teacup,llm_augmented +tern,water,HasPrerequisite,0.8,you need water to find a tern,llm_augmented +theater,wood,MadeOf,0.8,a theater is made of wood,llm_augmented +theater,steel,MadeOf,0.8,a theater is made of steel,llm_augmented +theater,glass,MadeOf,0.8,a theater is made of glass,llm_augmented +thorn,rose,PartOf,0.8,a thorn is part of a rose,llm_augmented +thrush,garden,AtLocation,0.8,you find a thrush in a garden,llm_augmented +thrush,fly,CapableOf,0.8,a thrush can fly,llm_augmented +thyme,garden,AtLocation,0.8,you find thyme in a garden,llm_augmented +thyme,stem,HasA,0.8,thyme has a stem,llm_augmented +thyme,water,HasPrerequisite,0.8,thyme needs water to grow,llm_augmented +tie,polyester,MadeOf,0.8,a tie is made of polyester,llm_augmented +tie,cotton,MadeOf,0.8,a tie is made of cotton,llm_augmented +tin,aluminum,MadeOf,0.8,tin is made of aluminum,llm_augmented +tinamou,fly,CapableOf,0.8,a tinamou can fly,llm_augmented +tomato,salad,AtLocation,0.8,you find tomatoes in a salad,llm_augmented +tomato,garden,AtLocation,0.8,you find tomatoes in a garden,llm_augmented +tomato,salad,PartOf,0.8,a tomato is part of a salad,llm_augmented +tomato,water,MadeOf,0.8,a tomato is made of water,llm_augmented +tomato,water,HasPrerequisite,0.8,you need water for a tomato,llm_augmented +tortoise,garden,AtLocation,0.8,you find a tortoise in a garden,llm_augmented +toucan,fly,CapableOf,0.8,a toucan can fly,llm_augmented +tractor,steel,MadeOf,0.8,a tractor is made of steel,llm_augmented +tree,garden,AtLocation,0.8,you find a tree in a garden,llm_augmented +tree,shelter,UsedFor,0.8,a tree is used for shelter,llm_augmented +tree,garden,PartOf,0.8,a tree is part of garden,llm_augmented +tree,water,HasPrerequisite,0.8,a tree needs water,llm_augmented +tree,wood,Causes,0.8,a tree causes wood,llm_augmented +tree,shelter,Causes,0.8,a tree causes shelter,llm_augmented +trough,barn,AtLocation,0.8,you find a trough in a barn,llm_augmented +trough,stable,PartOf,0.8,a trough is part of a stable,llm_augmented +trout,pond,AtLocation,0.8,you find a trout in a pond,llm_augmented +trout,fish,PartOf,0.8,a trout is part of fish,llm_augmented +trout,fish,MadeOf,0.8,a trout is made of fish,llm_augmented +trout,water,HasPrerequisite,0.8,you need water before you can have a trout,llm_augmented +trowel,blade,HasA,0.8,a trowel has a blade,llm_augmented +trowel,wood,MadeOf,0.8,a trowel is made of wood,llm_augmented +truck,bed,HasA,0.8,trucks have a bed in the back,llm_augmented +trumpet,copper,MadeOf,0.8,a trumpet is made of copper,llm_augmented +tub,plastic,MadeOf,0.8,a tub can be made of plastic,llm_augmented +tub,water,HasPrerequisite,0.8,you need water before you can use a tub,llm_augmented +tulip,garden,AtLocation,0.8,you find a tulip in a garden,llm_augmented +tulip,vase,AtLocation,0.8,you find a tulip in a vase,llm_augmented +tulip,stem,HasA,0.8,a tulip has a stem,llm_augmented +turmeric,root,MadeOf,0.8,turmeric is made of root,llm_augmented +turtle,pond,AtLocation,0.8,you find a turtle in a pond,llm_augmented +turtle,garden,AtLocation,0.8,you find a turtle in a garden,llm_augmented +ukulele,wood,MadeOf,0.8,a ukulele is made of wood,llm_augmented +ukulele,plastic,MadeOf,0.8,a ukulele can be made of plastic,llm_augmented +underwear,polyester,MadeOf,0.8,underwear is made of polyester,llm_augmented +van,plastic,MadeOf,0.8,a van is made of plastic,llm_augmented +van,glass,MadeOf,0.8,a van is made of glass,llm_augmented +vase,water,HasA,0.8,a vase has water in it,llm_augmented +vase,glass,MadeOf,0.8,a vase is made of glass,llm_augmented +vase,water,HasPrerequisite,0.8,you need water before you can use a vase,llm_augmented +vegetable,garden,AtLocation,0.8,you find vegetables in a garden,llm_augmented +vegetable,salad,PartOf,0.8,a vegetable is part of a salad,llm_augmented +vegetable,water,HasPrerequisite,0.8,you need water before you can grow vegetables,llm_augmented +verbena,garden,AtLocation,0.8,you find verbena in a garden,llm_augmented +vine,garden,AtLocation,0.8,you find a vine in a garden,llm_augmented +vine,stem,HasA,0.8,a vine has a stem,llm_augmented +vine,garden,PartOf,0.8,a vine is part of a garden,llm_augmented +viola,wood,MadeOf,0.8,a viola is made of wood,llm_augmented +violet,garden,AtLocation,0.8,you find a violet in a garden,llm_augmented +vise,steel,MadeOf,0.8,a vise is made of steel,llm_augmented +wagtail,fly,CapableOf,0.8,a wagtail can fly,llm_augmented +warbler,fly,CapableOf,0.8,a warbler can fly,llm_augmented +wasp,garden,AtLocation,0.8,you find a wasp in a garden,llm_augmented +water,rust,Causes,0.8,water can cause rust,llm_augmented +watermelon,water,MadeOf,0.8,a watermelon is made of water,llm_augmented +watermelon,vine,HasPrerequisite,0.8,you need a vine to grow a watermelon,llm_augmented +watermelon,water,HasPrerequisite,0.8,you need water to grow a watermelon,llm_augmented +waxwing,tree,AtLocation,0.8,you find a waxwing in a tree,llm_augmented +waxwing,fly,CapableOf,0.8,a waxwing can fly,llm_augmented +weapon,blade,HasA,0.8,a weapon has a blade,llm_augmented +weapon,barrel,HasA,0.8,a weapon has a barrel,llm_augmented +weapon,wood,MadeOf,0.8,a weapon is made of wood,llm_augmented +weapon,plastic,MadeOf,0.8,a weapon is made of plastic,llm_augmented +weapon,steel,MadeOf,0.8,a weapon is made of steel,llm_augmented +weapon,iron,MadeOf,0.8,a weapon is made of iron,llm_augmented +weaver,nest,HasA,0.8,a weaver has a nest,llm_augmented +weaver,grass,HasPrerequisite,0.8,you need grass before you can have a weaver,llm_augmented +wedge,wood,MadeOf,0.8,a wedge is made of wood,llm_augmented +wheat,rust,CapableOf,0.8,wheat can rust,llm_augmented +wheat,sprout,CapableOf,0.8,wheat can sprout,llm_augmented +wine,cabinet,AtLocation,0.8,you find wine in a cabinet,llm_augmented +wine,cork,HasA,0.8,wine has a cork,llm_augmented +wine,water,MadeOf,0.8,wine is made of water,llm_augmented +wolfram,steel,PartOf,0.8,wolfram is part of steel,llm_augmented +wood,paper,AtLocation,0.8,wood is found in paper,llm_augmented +wood,bark,HasA,0.8,wood has bark,llm_augmented +wood,guitar,PartOf,0.8,wood is part of a guitar,llm_augmented +wood,fence,PartOf,0.8,wood is part of a fence,llm_augmented +wood,tree,HasPrerequisite,0.8,you need a tree to get wood,llm_augmented +wood,ash,Causes,0.8,wood causes ash,llm_augmented +woodpecker,tree,AtLocation,0.8,you find a woodpecker on a tree,llm_augmented +woodpecker,fly,CapableOf,0.8,a woodpecker can fly,llm_augmented +wool,scarf,AtLocation,0.8,you find wool in a scarf,llm_augmented +worm,garden,AtLocation,0.8,you find a worm in a garden,llm_augmented +worm,burrow,CapableOf,0.8,a worm can burrow,llm_augmented +wrapper,plastic,MadeOf,0.8,a wrapper is made of plastic,llm_augmented +wrapper,paper,MadeOf,0.8,a wrapper is made of paper,llm_augmented +wren,fly,CapableOf,0.8,a wren can fly,llm_augmented +xylophone,wood,MadeOf,0.8,a xylophone is made of wood,llm_augmented +xylophone,plastic,MadeOf,0.8,a xylophone is made of plastic,llm_augmented +yew,wood,MadeOf,0.8,a yew is made of wood,llm_augmented +yew,evergreen,HasProperty,0.8,a yew is evergreen,llm_augmented +yoke,wood,MadeOf,0.8,a yoke is made of wood,llm_augmented +zither,wood,MadeOf,0.8,a zither is made of wood,llm_augmented +zucchini,garden,AtLocation,0.8,you find a zucchini in a garden,llm_augmented +aquarium,glass,HasA,0.8,an aquarium has glass,llm_augmented +aquarium,home,PartOf,0.8,an aquarium is part of a home,llm_augmented +aquarium,plastic,MadeOf,0.8,an aquarium is made of plastic,llm_augmented +aquarium,metal,MadeOf,0.8,an aquarium is made of metal,llm_augmented +aquarium,wood,MadeOf,0.8,an aquarium is made of wood,llm_augmented +aquarium,glass,MadeOf,0.8,an aquarium is made of glass,llm_augmented +aquarium,tank,HasPrerequisite,0.8,you need a tank to have an aquarium,llm_augmented +beak,bird,AtLocation,0.8,you find a beak on a bird,llm_augmented +beak,bird,PartOf,0.8,a beak is part of a bird,llm_augmented +beak,bone,MadeOf,0.8,a beak is made of bone,llm_augmented +beak,bird,HasPrerequisite,0.8,you need a bird before you can have a beak,llm_augmented +bird,cage,AtLocation,0.8,a bird is found in a cage,llm_augmented +bird,forest,AtLocation,0.8,a bird is found in a forest,llm_augmented +bird,field,AtLocation,0.8,a bird is found in a field,llm_augmented +bird,beak,HasA,0.8,a bird has a beak,llm_augmented +bird,flock,PartOf,0.8,a bird is part of a flock,llm_augmented +bird,bone,MadeOf,0.8,a bird is made of bone,llm_augmented +bird,meat,MadeOf,0.8,a bird is made of meat,llm_augmented +bird,blood,MadeOf,0.8,a bird is made of blood,llm_augmented +bird,egg,HasPrerequisite,0.8,you need an egg before you have a bird,llm_augmented +blood,body,AtLocation,0.8,you find blood in the body,llm_augmented +blood,heart,HasPrerequisite,0.8,a heart is needed to produce blood,llm_augmented +body,flesh,MadeOf,0.8,a body is made of flesh,llm_augmented +bone,chicken,AtLocation,0.8,you find a bone in a chicken,llm_augmented +bone,meat,AtLocation,0.8,you find a bone in meat,llm_augmented +bone,soup,UsedFor,0.8,a bone is used for making soup,llm_augmented +bone,body,PartOf,0.8,a bone is part of a body,llm_augmented +bouquet,stem,HasA,0.8,a bouquet has stems,llm_augmented +bouquet,flower,HasA,0.8,a bouquet has flowers,llm_augmented +bouquet,plant,MadeOf,0.8,a bouquet is made of plant,llm_augmented +bouquet,flower,HasPrerequisite,0.8,you need flowers to make a bouquet,llm_augmented +branch,tree,AtLocation,0.8,you find a branch on a tree,llm_augmented +branch,leaf,HasA,0.8,a branch has a leaf,llm_augmented +branch,tree,PartOf,0.8,a branch is part of a tree,llm_augmented +branch,wood,MadeOf,0.8,a branch is made of wood,llm_augmented +branch,tree,HasPrerequisite,0.8,you need a tree to have a branch,llm_augmented +brick,fireplace,PartOf,0.8,bricks are part of a fireplace,llm_augmented +brick,chimney,PartOf,0.8,bricks are part of a chimney,llm_augmented +cage,metal,MadeOf,0.8,a cage is made of metal,llm_augmented +ceramic,workshop,AtLocation,0.8,you find ceramic in a workshop,llm_augmented +claw,bone,MadeOf,0.8,claws are made of bone,llm_augmented +concrete,water,MadeOf,0.8,concrete is made of water,llm_augmented +concrete,water,HasPrerequisite,0.8,water is a prerequisite for concrete,llm_augmented +container,lid,HasA,0.8,a container has a lid,llm_augmented +container,kitchen,PartOf,0.8,a container is part of a kitchen,llm_augmented +container,plastic,MadeOf,0.8,a container is made of plastic,llm_augmented +container,metal,MadeOf,0.8,a container is made of metal,llm_augmented +container,glass,MadeOf,0.8,a container is made of glass,llm_augmented +crystal,mine,AtLocation,0.8,you find crystal in a mine,llm_augmented +crystal,jewelry,PartOf,0.8,crystal is part of jewelry,llm_augmented +crystal,quartz,MadeOf,0.8,crystal is made of quartz,llm_augmented +dessert,sugar,HasA,0.8,dessert has sugar,llm_augmented +door,house,AtLocation,0.8,you find a door in a house,llm_augmented +door,handle,HasA,0.8,a door has a handle,llm_augmented +door,wood,MadeOf,0.8,a door is made of wood,llm_augmented +door,metal,MadeOf,0.8,a door is made of metal,llm_augmented +door,glass,MadeOf,0.8,a door is made of glass,llm_augmented +earth,house,AtLocation,0.8,you find a house on earth,llm_augmented +earth,water,HasA,0.8,earth has water,llm_augmented +earth,rock,MadeOf,0.8,earth is made of rock,llm_augmented +engine,car,AtLocation,0.8,you find an engine in a car,llm_augmented +engine,boat,AtLocation,0.8,you find an engine in a boat,llm_augmented +engine,boat,PartOf,0.8,an engine is part of a boat,llm_augmented +engine,metal,MadeOf,0.8,an engine is made of metal,llm_augmented +engine,steel,MadeOf,0.8,an engine is made of steel,llm_augmented +engine,iron,MadeOf,0.8,an engine is made of iron,llm_augmented +engine,fuel,HasPrerequisite,0.8,you need fuel before you can use an engine,llm_augmented +engine,oil,HasPrerequisite,0.8,you need oil before you can use an engine,llm_augmented +fabric,dress,PartOf,0.8,fabric is part of a dress,llm_augmented +farm,field,HasA,0.8,a farm has a field,llm_augmented +farm,barn,HasA,0.8,a farm has a barn,llm_augmented +farm,tractor,HasA,0.8,a farm has a tractor,llm_augmented +farm,land,MadeOf,0.8,a farm is made of land,llm_augmented +farm,soil,MadeOf,0.8,a farm is made of soil,llm_augmented +farm,wood,MadeOf,0.8,a farm is made of wood,llm_augmented +farm,metal,MadeOf,0.8,a farm is made of metal,llm_augmented +farm,land,HasPrerequisite,0.8,you need land before you can have a farm,llm_augmented +farm,water,HasPrerequisite,0.8,you need water before you can have a farm,llm_augmented +farm,food,Causes,0.8,a farm causes food production,llm_augmented +feather,bird,PartOf,0.8,a feather is part of a bird,llm_augmented +feather,bird,HasPrerequisite,0.8,you need a bird before you can have a feather,llm_augmented +fiber,plant,AtLocation,0.8,you find fiber in plants,llm_augmented +field,farm,AtLocation,0.8,a field is found on a farm,llm_augmented +field,grass,HasA,0.8,a field has grass,llm_augmented +field,fence,HasA,0.8,a field has a fence,llm_augmented +field,soil,HasA,0.8,a field has soil,llm_augmented +field,land,MadeOf,0.8,a field is made of land,llm_augmented +field,soil,MadeOf,0.8,a field is made of soil,llm_augmented +field,earth,MadeOf,0.8,a field is made of earth,llm_augmented +field,dirt,MadeOf,0.8,a field is made of dirt,llm_augmented +field,land,HasPrerequisite,0.8,you need land before you can have a field,llm_augmented +field,fence,HasPrerequisite,0.8,you need a fence before you can keep animals in a field,llm_augmented +field,food,Causes,0.8,a field causes food production,llm_augmented +fin,fish,AtLocation,0.8,you find a fin on a fish,llm_augmented +fin,fish,PartOf,0.8,a fin is part of a fish,llm_augmented +fireplace,house,AtLocation,0.8,you find a fireplace in a house,llm_augmented +fireplace,brick,MadeOf,0.8,a fireplace is made of brick,llm_augmented +fireplace,stone,MadeOf,0.8,a fireplace is made of stone,llm_augmented +fireplace,wood,HasPrerequisite,0.8,you need wood before you can use a fireplace,llm_augmented +flesh,body,AtLocation,0.8,you find flesh on a body,llm_augmented +flock,wool,MadeOf,0.8,a flock is made of wool,llm_augmented +flower,garden,AtLocation,0.8,you find a flower in a garden,llm_augmented +flower,meadow,AtLocation,0.8,you find a flower in a meadow,llm_augmented +flower,pot,AtLocation,0.8,you find a flower in a pot,llm_augmented +flower,field,AtLocation,0.8,you find a flower in a field,llm_augmented +flower,medicine,UsedFor,0.8,a flower is used for medicine,llm_augmented +flower,food,UsedFor,0.8,a flower is used for food,llm_augmented +flower,petal,HasA,0.8,a flower has a petal,llm_augmented +flower,stem,HasA,0.8,a flower has a stem,llm_augmented +flower,leaf,HasA,0.8,a flower has a leaf,llm_augmented +flower,root,HasA,0.8,a flower has a root,llm_augmented +flower,seed,HasA,0.8,a flower has a seed,llm_augmented +flower,bouquet,PartOf,0.8,a flower is part of a bouquet,llm_augmented +flower,garden,PartOf,0.8,a flower is part of a garden,llm_augmented +flower,plant,PartOf,0.8,a flower is part of a plant,llm_augmented +flower,plant,MadeOf,0.8,a flower is made of plant,llm_augmented +flower,water,HasPrerequisite,0.8,a flower needs water,llm_augmented +flower,soil,HasPrerequisite,0.8,a flower needs soil,llm_augmented +food,kitchen,AtLocation,0.8,food is found in a kitchen,llm_augmented +food,wrapper,HasA,0.8,food has a wrapper,llm_augmented +food,water,MadeOf,0.8,food is made of water,llm_augmented +forest,earth,PartOf,0.8,a forest is part of earth,llm_augmented +forest,land,HasPrerequisite,0.8,you need land before you can have a forest,llm_augmented +forest,shade,Causes,0.8,a forest causes shade,llm_augmented +fruit,juice,UsedFor,0.8,fruit is used for making juice,llm_augmented +fruit,sugar,HasA,0.8,fruit has sugar,llm_augmented +fruit,fiber,HasA,0.8,fruit has fiber,llm_augmented +fruit,plant,MadeOf,0.8,fruit is made of plant material,llm_augmented +fruit,plant,HasPrerequisite,0.8,you need a plant to get fruit,llm_augmented +fuel,tank,AtLocation,0.8,you find fuel in a tank,llm_augmented +fuel,engine,PartOf,0.8,fuel is part of an engine system,llm_augmented +fur,fiber,HasA,0.8,fur has fiber,llm_augmented +furniture,house,AtLocation,0.8,you find furniture in a house,llm_augmented +furniture,home,PartOf,0.8,furniture is part of a home,llm_augmented +grassland,grass,HasA,0.8,a grassland has grass,llm_augmented +grassland,soil,MadeOf,0.8,a grassland is made of soil,llm_augmented +ground,rock,AtLocation,0.8,you find a rock on the ground,llm_augmented +ground,soil,AtLocation,0.8,you find soil in the ground,llm_augmented +ground,water,AtLocation,0.8,you find water under the ground,llm_augmented +ground,grass,AtLocation,0.8,you find grass on the ground,llm_augmented +ground,flower,AtLocation,0.8,you find a flower on the ground,llm_augmented +ground,earth,PartOf,0.8,the ground is part of the earth,llm_augmented +ground,land,PartOf,0.8,the ground is part of the land,llm_augmented +ground,dirt,MadeOf,0.8,the ground is made of dirt,llm_augmented +ground,rock,MadeOf,0.8,the ground is made of rock,llm_augmented +ground,clay,MadeOf,0.8,the ground is made of clay,llm_augmented +ground,earth,HasPrerequisite,0.8,you need earth before you can have ground,llm_augmented +ground,level,HasProperty,0.8,the ground is level,llm_augmented +hammer,handle,HasA,0.8,a hammer has a handle,llm_augmented +hammer,head,HasA,0.8,a hammer has a head,llm_augmented +hammer,toolbox,PartOf,0.8,a hammer is part of a toolbox,llm_augmented +hammer,metal,MadeOf,0.8,a hammer is made of metal,llm_augmented +hammer,wood,MadeOf,0.8,a hammer is made of wood,llm_augmented +hammer,steel,MadeOf,0.8,a hammer is made of steel,llm_augmented +hammer,handle,HasPrerequisite,0.8,you need a handle before you can make a hammer,llm_augmented +hammer,head,HasPrerequisite,0.8,you need a head before you can make a hammer,llm_augmented +handle,door,AtLocation,0.8,you find a handle on a door,llm_augmented +handle,pot,PartOf,0.8,a handle is part of a pot,llm_augmented +handle,metal,MadeOf,0.8,a handle is made of metal,llm_augmented +handle,plastic,MadeOf,0.8,a handle is made of plastic,llm_augmented +handle,wood,MadeOf,0.8,a handle is made of wood,llm_augmented +head,body,AtLocation,0.8,the head is located on the body,llm_augmented +head,bone,MadeOf,0.8,a head is made of bone,llm_augmented +head,body,HasPrerequisite,0.8,you need a body before you have a head,llm_augmented +home,door,HasA,0.8,a home has a door,llm_augmented +home,window,HasA,0.8,a home has a window,llm_augmented +home,wood,MadeOf,0.8,a home is made of wood,llm_augmented +home,brick,MadeOf,0.8,a home is made of brick,llm_augmented +home,concrete,MadeOf,0.8,a home is made of concrete,llm_augmented +home,land,HasPrerequisite,0.8,you need land before you can have a home,llm_augmented +house,door,HasA,0.8,a house has a door,llm_augmented +house,window,HasA,0.8,a house has a window,llm_augmented +house,furniture,HasA,0.8,a house has furniture,llm_augmented +house,brick,MadeOf,0.8,a house is made of brick,llm_augmented +house,concrete,MadeOf,0.8,a house is made of concrete,llm_augmented +house,steel,MadeOf,0.8,a house is made of steel,llm_augmented +house,stone,MadeOf,0.8,a house is made of stone,llm_augmented +house,land,HasPrerequisite,0.8,you need land before you can have a house,llm_augmented +jewelry,drawer,AtLocation,0.8,you find jewelry in a drawer,llm_augmented +jewelry,stone,HasA,0.8,jewelry has a stone,llm_augmented +jewelry,metal,MadeOf,0.8,jewelry is made of metal,llm_augmented +juice,kitchen,AtLocation,0.8,you find juice in a kitchen,llm_augmented +juice,fruit,MadeOf,0.8,juice is made of fruit,llm_augmented +juice,fruit,HasPrerequisite,0.8,you need fruit before you can make juice,llm_augmented +jungle,tree,HasA,0.8,a jungle has a tree,llm_augmented +jungle,plant,HasA,0.8,a jungle has a plant,llm_augmented +jungle,earth,PartOf,0.8,a jungle is part of earth,llm_augmented +key,drawer,AtLocation,0.8,you find keys in a drawer,llm_augmented +key,blade,HasA,0.8,a key has a blade,llm_augmented +key,house,PartOf,0.8,a key is part of a house,llm_augmented +key,metal,MadeOf,0.8,a key is made of metal,llm_augmented +kitchen,house,AtLocation,0.8,you find a kitchen in a house,llm_augmented +kitchen,home,AtLocation,0.8,you find a kitchen in a home,llm_augmented +kitchen,house,PartOf,0.8,a kitchen is part of a house,llm_augmented +kitchen,wood,MadeOf,0.8,a kitchen is made of wood,llm_augmented +kitchen,metal,MadeOf,0.8,a kitchen is made of metal,llm_augmented +kitchen,ceramic,MadeOf,0.8,a kitchen is made of ceramic,llm_augmented +lake,fish,HasA,0.8,a lake has fish,llm_augmented +lake,water,HasPrerequisite,0.8,you need water to have a lake,llm_augmented +lake,fish,Causes,0.8,a lake causes fish to live there,llm_augmented +land,soil,HasA,0.8,land has soil,llm_augmented +land,dirt,MadeOf,0.8,land is made of dirt,llm_augmented +land,rock,MadeOf,0.8,land is made of rock,llm_augmented +leaf,ground,AtLocation,0.8,leaves can be found on the ground,llm_augmented +leaf,plant,PartOf,0.8,a leaf is part of a plant,llm_augmented +leaf,branch,PartOf,0.8,a leaf is part of a branch,llm_augmented +leaf,water,HasPrerequisite,0.8,leaves need water to survive,llm_augmented +leaf,soil,HasPrerequisite,0.8,leaves need soil to grow,llm_augmented +leg,body,PartOf,0.8,a leg is part of the body,llm_augmented +leg,bone,MadeOf,0.8,a leg is made of bone,llm_augmented +leg,body,HasPrerequisite,0.8,you need a body before you can have legs,llm_augmented +lid,container,AtLocation,0.8,a lid is found on a container,llm_augmented +lid,container,HasPrerequisite,0.8,you need a container before you can use a lid,llm_augmented +meat,blood,HasA,0.8,meat has blood,llm_augmented +medicine,bottle,AtLocation,0.8,you find medicine in a bottle,llm_augmented +medicine,drawer,AtLocation,0.8,you store medicine in a drawer,llm_augmented +medicine,box,AtLocation,0.8,medicine is often kept in a box,llm_augmented +medicine,bottle,HasA,0.8,medicine has a bottle to store it in,llm_augmented +medicine,cabinet,PartOf,0.8,medicine is part of a medicine cabinet,llm_augmented +medicine,bottle,PartOf,0.8,medicine is part of a pill bottle,llm_augmented +medicine,bottle,HasPrerequisite,0.8,medicine has a prerequisite of being in a bottle,llm_augmented +metal,mine,AtLocation,0.8,metal is found in a mine,llm_augmented +metal,jewelry,UsedFor,0.8,metal is used for jewelry,llm_augmented +metal,ship,PartOf,0.8,metal is part of a ship,llm_augmented +metal,ore,MadeOf,0.8,metal is made of ore,llm_augmented +metal,rust,Causes,0.8,metal causes rust,llm_augmented +mountain,rock,MadeOf,0.8,a mountain is made of rock,llm_augmented +mouth,head,AtLocation,0.8,a mouth is found on the head,llm_augmented +mouth,body,PartOf,0.8,a mouth is part of the body,llm_augmented +mouth,flesh,MadeOf,0.8,a mouth is made of flesh,llm_augmented +mouth,bone,MadeOf,0.8,a mouth is made of bone,llm_augmented +mouthpiece,plastic,MadeOf,0.8,a mouthpiece is made of plastic,llm_augmented +mouthpiece,rubber,MadeOf,0.8,a mouthpiece is made of rubber,llm_augmented +mouthpiece,mouth,HasPrerequisite,0.8,you need a mouth before you can use a mouthpiece,llm_augmented +muscle,fiber,HasA,0.8,a muscle has a fiber,llm_augmented +muscle,body,PartOf,0.8,a muscle is part of a body,llm_augmented +needle,metal,MadeOf,0.8,a needle is made of metal,llm_augmented +needle,plastic,MadeOf,0.8,a needle is made of plastic,llm_augmented +needle,fabric,HasPrerequisite,0.8,you need fabric before you can use a needle,llm_augmented +needle,medicine,HasPrerequisite,0.8,you need medicine before you can use a needle,llm_augmented +ocean,earth,AtLocation,0.8,the ocean is found on earth,llm_augmented +ocean,fish,HasA,0.8,the ocean has fish,llm_augmented +ocean,salt,MadeOf,0.8,the ocean is made of salt,llm_augmented +oil,fuel,UsedFor,0.8,oil is used for fuel,llm_augmented +oil,salad,PartOf,0.8,oil is part of a salad,llm_augmented +oil,engine,PartOf,0.8,oil is part of an engine,llm_augmented +oil,plant,MadeOf,0.8,oil can be made of plants,llm_augmented +ore,mine,AtLocation,0.8,you find ore in a mine,llm_augmented +ore,metal,HasA,0.8,ore has metal,llm_augmented +ore,earth,PartOf,0.8,ore is part of the earth,llm_augmented +ore,rock,MadeOf,0.8,ore is made of rock,llm_augmented +petal,flower,AtLocation,0.8,you find a petal on a flower,llm_augmented +petal,flower,PartOf,0.8,a petal is part of a flower,llm_augmented +petal,flower,HasPrerequisite,0.8,you need a flower before you can have a petal,llm_augmented +plant,window,AtLocation,0.8,you find a plant near a window,llm_augmented +plant,ground,AtLocation,0.8,you find a plant in the ground,llm_augmented +plant,soil,AtLocation,0.8,you find a plant in the soil,llm_augmented +plant,medicine,UsedFor,0.8,a plant is used for medicine,llm_augmented +plant,food,UsedFor,0.8,a plant is used for food,llm_augmented +plant,stem,HasA,0.8,a plant has a stem,llm_augmented +plant,leaf,HasA,0.8,a plant has a leaf,llm_augmented +plant,root,HasA,0.8,a plant has a root,llm_augmented +plant,flower,HasA,0.8,a plant has a flower,llm_augmented +plant,flower,CapableOf,0.8,a plant can flower,llm_augmented +plant,water,MadeOf,0.8,a plant is made of water,llm_augmented +plant,water,HasPrerequisite,0.8,you need water to have a plant,llm_augmented +plant,soil,HasPrerequisite,0.8,you need soil to have a plant,llm_augmented +plant,seed,HasPrerequisite,0.8,you need a seed to have a plant,llm_augmented +plant,shade,Causes,0.8,a plant causes shade,llm_augmented +plant,food,Causes,0.8,a plant causes food,llm_augmented +river,forest,AtLocation,0.8,you find a river in a forest,llm_augmented +river,water,MadeOf,0.8,a river is made of water,llm_augmented +river,fish,Causes,0.8,a river causes fish,llm_augmented +rubber,drawer,AtLocation,0.8,you find rubber in a drawer,llm_augmented +sea,ocean,AtLocation,0.8,you find a sea in an ocean,llm_augmented +sea,earth,HasPrerequisite,0.8,you need earth before you can have a sea,llm_augmented +seed,soil,AtLocation,0.8,you find a seed in soil,llm_augmented +seed,fruit,PartOf,0.8,a seed is part of a fruit,llm_augmented +seed,plant,PartOf,0.8,a seed is part of a plant,llm_augmented +seed,shell,MadeOf,0.8,a seed is made of a shell,llm_augmented +seed,water,HasPrerequisite,0.8,you need water before you can plant a seed,llm_augmented +seed,plant,Causes,0.8,a seed causes a plant,llm_augmented +seed,flower,Causes,0.8,a seed causes a flower,llm_augmented +shade,window,AtLocation,0.8,you find shade near a window,llm_augmented +shade,garden,PartOf,0.8,shade is part of garden,llm_augmented +skin,body,PartOf,0.8,skin is part of the body,llm_augmented +skin,body,HasPrerequisite,0.8,you need a body to have skin,llm_augmented +soil,ground,PartOf,0.8,soil is part of the ground,llm_augmented +soil,earth,PartOf,0.8,soil is part of the earth,llm_augmented +soil,land,HasPrerequisite,0.8,you need land before you can have soil,llm_augmented +spout,metal,MadeOf,0.8,a spout is made of metal,llm_augmented +spout,plastic,MadeOf,0.8,a spout is made of plastic,llm_augmented +stone,garden,AtLocation,0.8,you find a stone in a garden,llm_augmented +stone,ground,AtLocation,0.8,you find stones on the ground,llm_augmented +stone,mineral,MadeOf,0.8,a stone is made of mineral,llm_augmented +stone,earth,MadeOf,0.8,a stone is made of earth,llm_augmented +string,fiber,MadeOf,0.8,string is made of fiber,llm_augmented +sugar,tea,AtLocation,0.8,you find sugar in tea,llm_augmented +sugar,soda,PartOf,0.8,sugar is part of soda,llm_augmented +tail,bone,HasA,0.8,a tail has bone,llm_augmented +tail,muscle,HasA,0.8,a tail has muscle,llm_augmented +tail,fish,PartOf,0.8,a tail is part of a fish,llm_augmented +tail,bird,PartOf,0.8,a tail is part of a bird,llm_augmented +tail,flesh,MadeOf,0.8,a tail is made of flesh,llm_augmented +tail,skin,MadeOf,0.8,a tail is made of skin,llm_augmented +toolbox,workshop,PartOf,0.8,a toolbox is part of a workshop,llm_augmented +toolbox,metal,MadeOf,0.8,a toolbox is made of metal,llm_augmented +toolbox,plastic,MadeOf,0.8,a toolbox is made of plastic,llm_augmented +toolbox,wood,MadeOf,0.8,a toolbox is made of wood,llm_augmented +toolbox,workshop,HasPrerequisite,0.8,you need a workshop before you can use a toolbox effectively,llm_augmented +tooth,mouth,AtLocation,0.8,teeth are found in the mouth,llm_augmented +tooth,bone,MadeOf,0.8,teeth are made of bone,llm_augmented +trigger,gun,AtLocation,0.8,you find a trigger in a gun,llm_augmented +trigger,rifle,PartOf,0.8,a trigger is part of a rifle,llm_augmented +trigger,metal,MadeOf,0.8,a trigger is made of metal,llm_augmented +trigger,gun,HasPrerequisite,0.8,you need a gun to use a trigger,llm_augmented +wheel,cart,AtLocation,0.8,you find a wheel on a cart,llm_augmented +wheel,cart,PartOf,0.8,a wheel is part of a cart,llm_augmented +wheel,airplane,PartOf,0.8,a wheel is part of an airplane,llm_augmented +wheel,truck,PartOf,0.8,a wheel is part of a truck,llm_augmented +wheel,metal,MadeOf,0.8,a wheel is made of metal,llm_augmented +wheel,rubber,MadeOf,0.8,a wheel is made of rubber,llm_augmented +wheel,wood,MadeOf,0.8,a wheel is made of wood,llm_augmented +window,house,AtLocation,0.8,you find a window in a house,llm_augmented +window,house,PartOf,0.8,a window is part of a house,llm_augmented +window,wood,MadeOf,0.8,a window is made of wood,llm_augmented +window,metal,MadeOf,0.8,a window is made of metal,llm_augmented +wing,bird,AtLocation,0.8,you find a wing on a bird,llm_augmented +wing,plane,AtLocation,0.8,you find wings on a plane,llm_augmented +wing,feather,HasA,0.8,a wing has a feather,llm_augmented +wing,bone,HasA,0.8,a wing has a bone,llm_augmented +wing,bird,PartOf,0.8,a wing is part of a bird,llm_augmented +wing,bat,PartOf,0.8,a wing is part of a bat,llm_augmented +wing,feather,MadeOf,0.8,a wing is made of feather,llm_augmented +wing,bone,MadeOf,0.8,a wing is made of bone,llm_augmented +wing,bird,HasPrerequisite,0.8,you need a bird before you can have a wing,llm_augmented +wing,metal,HasPrerequisite,0.8,you need metal before you can make a wing,llm_augmented +workshop,house,CapableOf,0.8,a workshop can house tools,llm_augmented +workshop,wood,MadeOf,0.8,a workshop is made of wood,llm_augmented +magnesium,ore,MadeOf,0.8,ore connects both as a source material where they can be found naturally,llm_bridge +ore,iron,MadeOf,0.8,ore connects both as a source material where they can be found naturally,llm_bridge +magnesium,alloy,MadeOf,0.8,"alloy is a mixture of metals, including magnesium and tin",llm_bridge +alloy,tin,MadeOf,0.8,"alloy is a mixture of metals, including magnesium and tin",llm_bridge +magnesium,coin,UsedFor,0.8,coins can be made from magnesium or tin,llm_bridge +coin,tin,UsedFor,0.8,coins can be made from magnesium or tin,llm_bridge +magnesium,zinc,HasProperty,0.8,"zinc is a metal similar to magnesium and tin, often used in similar applications",llm_bridge +zinc,tin,HasProperty,0.8,"zinc is a metal similar to magnesium and tin, often used in similar applications",llm_bridge +alloy,tungsten,MadeOf,0.8,"an alloy is a mixture of metals, which can include both magnesium and tungsten.",llm_bridge +magnesium,metal,PartOf,0.8,both magnesium and tungsten are types of metal.,llm_bridge +metal,tungsten,PartOf,0.8,both magnesium and tungsten are types of metal.,llm_bridge +magnesium,wire,MadeOf,0.8,wires can be made from both magnesium and tungsten.,llm_bridge +wire,tungsten,MadeOf,0.8,wires can be made from both magnesium and tungsten.,llm_bridge +alloy,copper,MadeOf,0.8,alloy connects metals by being a mixture of metals,llm_bridge +wire,copper,MadeOf,0.8,wire connects metals as a common product made from them,llm_bridge +magnesium,coin,MadeOf,0.8,coin connects metals as a common item made from them,llm_bridge +coin,copper,MadeOf,0.8,coin connects metals as a common item made from them,llm_bridge +magnesium,alloy,UsedFor,0.8,both metals can be combined into alloys for various applications,llm_bridge +alloy,platinum,UsedFor,0.8,both metals can be combined into alloys for various applications,llm_bridge +magnesium,electrode,UsedFor,0.8,both metals can be used as electrodes in electrical devices,llm_bridge +electrode,platinum,UsedFor,0.8,both metals can be used as electrodes in electrical devices,llm_bridge +magnesium,catalyst,UsedFor,0.8,both metals can serve as catalysts in chemical reactions,llm_bridge +catalyst,platinum,UsedFor,0.8,both metals can serve as catalysts in chemical reactions,llm_bridge +alloy,silver,MadeOf,0.8,"an alloy is a mixture of metals, including magnesium and silver",llm_bridge +coin,silver,MadeOf,0.8,"magnesium can be used to make coins, and silver is a material coins are made from",llm_bridge +magnesium,mine,AtLocation,0.8,magnesium and silver can both be found in mines,llm_bridge +mine,silver,AtLocation,0.8,magnesium and silver can both be found in mines,llm_bridge +alloy,steel,MadeOf,0.8,"magnesium can be used in alloys, and steel is an alloy of iron and carbon",llm_bridge +magnesium,oxide,CapableOf,0.8,"magnesium can form oxides, and steel may be protected by oxide layers",llm_bridge +oxide,steel,UsedFor,0.8,"magnesium can form oxides, and steel may be protected by oxide layers",llm_bridge +magnesium,ore,LocatedNear,0.8,"magnesium is extracted from ores, and steel production uses iron ore",llm_bridge +ore,steel,UsedFor,0.8,"magnesium is extracted from ores, and steel production uses iron ore",llm_bridge +alloy,gold,MadeOf,0.8,"an alloy is made of magnesium and can also be made of gold, connecting the two metals",llm_bridge +magnesium,ore,HasA,0.8,"both magnesium and gold can be found in ore deposits, linking their natural sources",llm_bridge +ore,gold,HasA,0.8,"both magnesium and gold can be found in ore deposits, linking their natural sources",llm_bridge +magnesium,mine,LocatedNear,0.8,"both magnesium and gold are found near mines, connecting their extraction locations",llm_bridge +mine,gold,LocatedNear,0.8,"both magnesium and gold are found near mines, connecting their extraction locations",llm_bridge +alloy,aluminum,UsedFor,0.8,alloys often contain both magnesium and aluminum to create stronger metals.,llm_bridge +magnesium,rod,MadeOf,0.8,rods can be made of magnesium or aluminum for various applications.,llm_bridge +rod,aluminum,MadeOf,0.8,rods can be made of magnesium or aluminum for various applications.,llm_bridge +fly,*bridge:_wing,HasA,0.8,explanation: Both flies and lacebugs have wings.**,llm_bridge +*bridge:_wing,lacebug,HasA,0.8,explanation: Both flies and lacebugs have wings.**,llm_bridge +fly,*bridge:_insect,PartOf,0.8,explanation: Both flies and lacebugs are part of the insect class.**,llm_bridge +*bridge:_insect,lacebug,PartOf,0.8,explanation: Both flies and lacebugs are part of the insect class.**,llm_bridge +fly,*bridge:_garden,AtLocation,0.8,explanation: Both flies and lacebugs can be found in a garden.**,llm_bridge +*bridge:_garden,lacebug,AtLocation,0.8,explanation: Both flies and lacebugs can be found in a garden.**,llm_bridge +fly,insect,PartOf,0.8,insects are a biological category both belong to,llm_bridge +insect,mealybug,PartOf,0.8,insects are a biological category both belong to,llm_bridge +fly,plant,HasPrerequisite,0.8,both may be found on or near plants,llm_bridge +plant,mealybug,HasPrerequisite,0.8,both may be found on or near plants,llm_bridge +fly,predator,CapableOf,0.8,some flies prey on mealybugs,llm_bridge +predator,mealybug,ReceivesAction,0.8,some flies prey on mealybugs,llm_bridge +fly,bridge_word_1:_wing,HasA,0.8,explanation: both insects have wings,llm_bridge +bridge_word_1:_wing,earwig,HasA,0.8,explanation: both insects have wings,llm_bridge +fly,bridge_word_2:_insect,PartOf,0.8,explanation: both are types of insects,llm_bridge +bridge_word_2:_insect,earwig,PartOf,0.8,explanation: both are types of insects,llm_bridge +fly,bridge_word_3:_garden,AtLocation,0.8,explanation: both insects can be found in gardens,llm_bridge +bridge_word_3:_garden,earwig,AtLocation,0.8,explanation: both insects can be found in gardens,llm_bridge +wings,butterfly,HasA,0.8,both insects have wings for flying,llm_bridge +fly,pollination,CapableOf,0.8,both insects can perform pollination,llm_bridge +pollination,butterfly,CapableOf,0.8,both insects can perform pollination,llm_bridge +fly,garden,AtLocation,0.8,both insects are commonly found in gardens,llm_bridge +garden,butterfly,AtLocation,0.8,both insects are commonly found in gardens,llm_bridge +fly,ant,LocatedNear,0.8,"ants, flies, and wasps are all commonly found in similar outdoor environments like gardens or forests.",llm_bridge +ant,wasp,LocatedNear,0.8,"ants, flies, and wasps are all commonly found in similar outdoor environments like gardens or forests.",llm_bridge +fly,bees,LocatedNear,0.8,"bees, flies, and wasps are all flying insects often seen in the same natural habitats.",llm_bridge +bees,wasp,LocatedNear,0.8,"bees, flies, and wasps are all flying insects often seen in the same natural habitats.",llm_bridge +fly,spider,CapableOf,0.8,spiders can catch and eat both flies and wasps.,llm_bridge +spider,wasp,CapableOf,0.8,spiders can catch and eat both flies and wasps.,llm_bridge +insect,roach,PartOf,0.8,both are insects,llm_bridge +fly,house,AtLocation,0.8,both can be found in houses,llm_bridge +house,roach,AtLocation,0.8,both can be found in houses,llm_bridge +fly,pest,HasProperty,0.8,both are considered pests,llm_bridge +pest,roach,HasProperty,0.8,both are considered pests,llm_bridge +insect,bee,PartOf,0.8,insects are both classified as insects.,llm_bridge +fly,wing,HasA,0.8,both flies and bees have wings.,llm_bridge +wing,bee,HasA,0.8,both flies and bees have wings.,llm_bridge +fly,pollen,ReceivesAction,0.8,both flies and bees can collect or transport pollen.,llm_bridge +pollen,bee,ReceivesAction,0.8,both flies and bees can collect or transport pollen.,llm_bridge +fly,*eye**,HasA,0.8,Both flies and heads have eyes.,llm_bridge +*eye**,head,HasA,0.8,Both flies and heads have eyes.,llm_bridge +fly,*brain**,HasA,0.8,Both flies and heads contain a brain.,llm_bridge +*brain**,head,HasA,0.8,Both flies and heads contain a brain.,llm_bridge +fly,*body**,PartOf,0.8,"A fly's body includes its head, and an animal's body includes its head.",llm_bridge +*body**,head,PartOf,0.8,"A fly's body includes its head, and an animal's body includes its head.",llm_bridge +insect,cicada,PartOf,0.8,"both are part of the classification ""insect""",llm_bridge +wing,cicada,HasA,0.8,both insects have wings,llm_bridge +fly,antenna,HasA,0.8,both insects have antennae,llm_bridge +antenna,cicada,HasA,0.8,both insects have antennae,llm_bridge +titanium,*alloy**,MadeOf,0.8,alloys often contain both titanium and tungsten to create stronger materials.,llm_bridge +*alloy**,tungsten,MadeOf,0.8,alloys often contain both titanium and tungsten to create stronger materials.,llm_bridge +titanium,*metal**,MadeOf,0.8,both titanium and tungsten are types of metals.,llm_bridge +*metal**,tungsten,MadeOf,0.8,both titanium and tungsten are types of metals.,llm_bridge +titanium,*filament**,UsedFor,0.8,both titanium and tungsten can be used as filaments in high-temperature applications.,llm_bridge +*filament**,tungsten,UsedFor,0.8,both titanium and tungsten can be used as filaments in high-temperature applications.,llm_bridge +titanium,ring,MadeOf,0.8,rings are often made from both titanium and gold,llm_bridge +ring,gold,MadeOf,0.8,rings are often made from both titanium and gold,llm_bridge +titanium,bracelet,MadeOf,0.8,bracelets can be crafted from both titanium and gold,llm_bridge +bracelet,gold,MadeOf,0.8,bracelets can be crafted from both titanium and gold,llm_bridge +titanium,jewelry,MadeOf,0.8,jewelry is commonly made from both titanium and gold,llm_bridge +jewelry,gold,MadeOf,0.8,jewelry is commonly made from both titanium and gold,llm_bridge +titanium,ship,UsedFor,0.8,ships are often made with titanium and anchors are parts of ships,llm_bridge +ship,anchor,PartOf,0.8,ships are often made with titanium and anchors are parts of ships,llm_bridge +titanium,alloy,MadeOf,0.8,"alloys are mixtures of metals, often including both titanium and magnesium for specific properties.",llm_bridge +alloy,magnesium,MadeOf,0.8,"alloys are mixtures of metals, often including both titanium and magnesium for specific properties.",llm_bridge +titanium,steel,LocatedNear,0.8,both titanium and magnesium are sometimes alloyed with steel or found in metallurgical processes near steel production.,llm_bridge +steel,magnesium,LocatedNear,0.8,both titanium and magnesium are sometimes alloyed with steel or found in metallurgical processes near steel production.,llm_bridge +titanium,aluminum,LocatedNear,0.8,"all three (titanium, magnesium, aluminum) are lightweight structural metals often found together in engineering and aerospace materials.",llm_bridge +aluminum,magnesium,LocatedNear,0.8,"all three (titanium, magnesium, aluminum) are lightweight structural metals often found together in engineering and aerospace materials.",llm_bridge +jewelry,platinum,MadeOf,0.8,jewelry can be made of both titanium and platinum,llm_bridge +alloy,platinum,MadeOf,0.8,alloys can be made from combinations of metals like titanium and platinum,llm_bridge +ring,platinum,MadeOf,0.8,rings can be crafted from both titanium and platinum,llm_bridge +titanium,*airplane**,MadeOf,0.8,Both metals are commonly used in the construction of airplanes due to their strength and light weight.,llm_bridge +*airplane**,aluminum,MadeOf,0.8,Both metals are commonly used in the construction of airplanes due to their strength and light weight.,llm_bridge +titanium,*alloy**,UsedFor,0.8,"Both titanium and aluminum can be used to create alloys, combining their properties for specific applications.",llm_bridge +*alloy**,aluminum,UsedFor,0.8,"Both titanium and aluminum can be used to create alloys, combining their properties for specific applications.",llm_bridge +titanium,*frame**,MadeOf,0.8,"Both metals are often used to create structural frames in products like bicycles, aircraft, or furniture.",llm_bridge +*frame**,aluminum,MadeOf,0.8,"Both metals are often used to create structural frames in products like bicycles, aircraft, or furniture.",llm_bridge +titanium,wire,MadeOf,0.8,wire can be made from either metal,llm_bridge +titanium,coin,MadeOf,0.8,coin is often made of or plated with metals,llm_bridge +titanium,mine,LocatedNear,0.8,mines are places where both titanium and ore can be found,llm_bridge +mine,ore,LocatedNear,0.8,mines are places where both titanium and ore can be found,llm_bridge +titanium,mine,CapableOf,0.8,mines are capable of extracting both titanium and ore,llm_bridge +mine,ore,CapableOf,0.8,mines are capable of extracting both titanium and ore,llm_bridge +titanium,mine,HasA,0.8,mines can contain both titanium and ore,llm_bridge +mine,ore,HasA,0.8,mines can contain both titanium and ore,llm_bridge +alloy,iron,MadeOf,0.8,alloy connects them as both can be components in metal mixtures,llm_bridge +titanium,ore,LocatedNear,0.8,ore connects them as both can be found in mineral deposits,llm_bridge +ore,iron,LocatedNear,0.8,ore connects them as both can be found in mineral deposits,llm_bridge +mine,iron,LocatedNear,0.8,mine connects them as both can be extracted from mining locations,llm_bridge +prison,fence,HasA,0.8,both buildings often have fences for security or containment,llm_bridge +fence,stable,HasA,0.8,both buildings often have fences for security or containment,llm_bridge +prison,horse,ReceivesAction,0.8,prisoners may care for horses; stables house horses,llm_bridge +horse,stable,HasA,0.8,prisoners may care for horses; stables house horses,llm_bridge +prison,guard,HasA,0.8,guards patrol prisons; stables are guarded to protect animals,llm_bridge +guard,stable,UsedFor,0.8,guards patrol prisons; stables are guarded to protect animals,llm_bridge +prison,books,HasA,0.8,"prisons often have books for inmates, and libraries are collections of books.",llm_bridge +books,library,HasA,0.8,"prisons often have books for inmates, and libraries are collections of books.",llm_bridge +prison,reading,ReceivesAction,0.8,"prisons may provide reading materials, and libraries are used for reading.",llm_bridge +reading,library,UsedFor,0.8,"prisons may provide reading materials, and libraries are used for reading.",llm_bridge +prison,study,ReceivesAction,0.8,"prisons may have study areas, and libraries are used for study.",llm_bridge +study,library,UsedFor,0.8,"prisons may have study areas, and libraries are used for study.",llm_bridge +prison,*wall**,PartOf,0.8,Walls are structural components of both prison buildings and duplex buildings.,llm_bridge +*wall**,duplex,PartOf,0.8,Walls are structural components of both prison buildings and duplex buildings.,llm_bridge +prison,*window**,HasA,0.8,Both prison buildings and duplex buildings typically have windows.,llm_bridge +*window**,duplex,HasA,0.8,Both prison buildings and duplex buildings typically have windows.,llm_bridge +prison,*door**,HasA,0.8,Both prison buildings and duplex buildings have doors as entrance/exit points.,llm_bridge +*door**,duplex,HasA,0.8,Both prison buildings and duplex buildings have doors as entrance/exit points.,llm_bridge +*wall**,greenhouse,PartOf,0.8,Both buildings have walls as structural components.,llm_bridge +*window**,greenhouse,HasA,0.8,Both buildings often contain windows for light or view.,llm_bridge +prison,*glass**,MadeOf,0.8,"Greenhouses are often made of glass, while some prison structures may incorporate glass in their design.",llm_bridge +*glass**,greenhouse,MadeOf,0.8,"Greenhouses are often made of glass, while some prison structures may incorporate glass in their design.",llm_bridge +prison,wall,PartOf,0.8,walls are structural components of both prisons and coops,llm_bridge +wall,coop,PartOf,0.8,walls are structural components of both prisons and coops,llm_bridge +prison,door,PartOf,0.8,doors provide entry/exit to both prisons and coops,llm_bridge +door,coop,PartOf,0.8,doors provide entry/exit to both prisons and coops,llm_bridge +prison,key,UsedFor,0.8,keys are used to unlock doors in both prisons and coops,llm_bridge +key,coop,UsedFor,0.8,keys are used to unlock doors in both prisons and coops,llm_bridge +guard,shelter,UsedFor,0.8,guard connects both as someone present in a prison and someone who might provide shelter,llm_bridge +prison,inmate,HasA,0.8,inmate connects both as someone in a prison and someone who might use a shelter,llm_bridge +inmate,shelter,UsedFor,0.8,inmate connects both as someone in a prison and someone who might use a shelter,llm_bridge +prison,window,PartOf,0.8,window connects both as a physical component present in both types of buildings,llm_bridge +window,shelter,HasA,0.8,window connects both as a physical component present in both types of buildings,llm_bridge +guard,mall,HasA,0.8,guards are present in both prisons and malls.,llm_bridge +prison,security,HasA,0.8,security systems or personnel are found in both prisons and malls.,llm_bridge +security,mall,HasA,0.8,security systems or personnel are found in both prisons and malls.,llm_bridge +fence,mall,HasA,0.8,fences can be found around prisons and in malls for crowd control.,llm_bridge +wall,house,PartOf,0.8,walls are structural components common to both prisons and houses,llm_bridge +key,house,UsedFor,0.8,keys are used to lock/unlock both prison doors and house doors,llm_bridge +door,house,PartOf,0.8,doors provide entry/exit points in both prisons and houses,llm_bridge +prison,teacher,AtLocation,0.8,teachers work in prisons and are part of schools,llm_bridge +teacher,school,HasA,0.8,teachers work in prisons and are part of schools,llm_bridge +guard,school,AtLocation,0.8,"prisons have guards, guards can work near schools",llm_bridge +prison,student,AtLocation,0.8,students are in prisons and schools,llm_bridge +student,school,HasA,0.8,students are in prisons and schools,llm_bridge +prison,*cell**,PartOf,0.8,"A cell is part of a prison, and attending church (a prerequisite for some) might be a part of life in prison.",llm_bridge +*cell**,church,HasPrerequisite,0.8,"A cell is part of a prison, and attending church (a prerequisite for some) might be a part of life in prison.",llm_bridge +prison,*person**,AtLocation,0.8,A person can be located in a prison and also attend a church.,llm_bridge +*person**,church,AtLocation,0.8,A person can be located in a prison and also attend a church.,llm_bridge +prison,*prayer**,UsedFor,0.8,Prayer can be used in a prison for spiritual needs and is also used in a church.,llm_bridge +*prayer**,church,UsedFor,0.8,Prayer can be used in a prison for spiritual needs and is also used in a church.,llm_bridge +punch,can,UsedFor,0.8,"a can can be punched open, and a lid is part of a can",llm_bridge +can,lid,PartOf,0.8,"a can can be punched open, and a lid is part of a can",llm_bridge +punch,food,UsedFor,0.8,"a punch can be used to open food containers, and a lid covers food",llm_bridge +food,lid,UsedFor,0.8,"a punch can be used to open food containers, and a lid covers food",llm_bridge +punch,container,UsedFor,0.8,"a punch is used to open containers, and a lid is part of a container",llm_bridge +container,lid,PartOf,0.8,"a punch is used to open containers, and a lid is part of a container",llm_bridge +punch,wood,UsedFor,0.8,Both tools are used on wood.,llm_bridge +wood,rasp,UsedFor,0.8,Both tools are used on wood.,llm_bridge +punch,metal,UsedFor,0.8,Both tools can be used on metal.,llm_bridge +metal,rasp,UsedFor,0.8,Both tools can be used on metal.,llm_bridge +punch,workshop,AtLocation,0.8,Both tools are commonly found in a workshop.,llm_bridge +workshop,rasp,AtLocation,0.8,Both tools are commonly found in a workshop.,llm_bridge +punch,bridge_word:_meat,UsedFor,0.8,"explanation: A meat tenderizer (punch) is used for tenderizing meat, and a meat tenderizer might have a yoke or similar mechanism.",llm_bridge +bridge_word:_meat,yoke,HasA,0.8,"explanation: A meat tenderizer (punch) is used for tenderizing meat, and a meat tenderizer might have a yoke or similar mechanism.",llm_bridge +punch,bridge_word:_tool,HasA,0.8,"explanation: A punch is a tool that can be used for woodworking, and a yoke is a tool used in farming or construction. Both are tools that can be part of a larger tool set.",llm_bridge +bridge_word:_tool,yoke,HasA,0.8,"explanation: A punch is a tool that can be used for woodworking, and a yoke is a tool used in farming or construction. Both are tools that can be part of a larger tool set.",llm_bridge +punch,bridge_word:_toolset,PartOf,0.8,"explanation: A punch can be part of a blacksmith's or carpenter's toolset, and a yoke can be part of an agricultural toolset. Both tools are components of toolsets.",llm_bridge +bridge_word:_toolset,yoke,PartOf,0.8,"explanation: A punch can be part of a blacksmith's or carpenter's toolset, and a yoke can be part of an agricultural toolset. Both tools are components of toolsets.",llm_bridge +punch,bridge_word:_wall,UsedFor,0.8,"explanation: A punch is used for creating holes in walls, and a trowel is used for applying material to walls.",llm_bridge +bridge_word:_wall,trowel,UsedFor,0.8,"explanation: A punch is used for creating holes in walls, and a trowel is used for applying material to walls.",llm_bridge +punch,bridge_word:_concrete,UsedFor,0.8,"explanation: A punch is used to make holes in concrete, and a trowel is used to shape concrete.",llm_bridge +bridge_word:_concrete,trowel,UsedFor,0.8,"explanation: A punch is used to make holes in concrete, and a trowel is used to shape concrete.",llm_bridge +punch,bridge_word:_construction,UsedFor,0.8,explanation: Both a punch and a trowel are tools used in construction activities.,llm_bridge +bridge_word:_construction,trowel,UsedFor,0.8,explanation: Both a punch and a trowel are tools used in construction activities.,llm_bridge +punch,hammer,UsedFor,0.8,hammer is used for both punching and nailing tasks.,llm_bridge +hammer,nail,UsedFor,0.8,hammer is used for both punching and nailing tasks.,llm_bridge +wood,nail,PartOf,0.8,wood is used for punching (as a surface) and is part of where nails are placed.,llm_bridge +punch,wall,UsedFor,0.8,"wall is used as a surface for punching, and nails are part of wall construction.",llm_bridge +wall,nail,PartOf,0.8,"wall is used as a surface for punching, and nails are part of wall construction.",llm_bridge +wood,vise,UsedFor,0.8,both tools are used for working with wood,llm_bridge +metal,vise,UsedFor,0.8,both tools are used for working with metal,llm_bridge +punch,metal,MadeOf,0.8,both tools are typically made of metal,llm_bridge +metal,vise,MadeOf,0.8,both tools are typically made of metal,llm_bridge +punch,*car**,UsedFor,0.8,A car is used for driving (related to using a punch in assembly) and has wheels.,llm_bridge +*car**,wheel,PartOf,0.8,A car is used for driving (related to using a punch in assembly) and has wheels.,llm_bridge +punch,*truck**,UsedFor,0.8,A truck is used for heavy transport (related to using a punch in construction) and has wheels.,llm_bridge +*truck**,wheel,PartOf,0.8,A truck is used for heavy transport (related to using a punch in construction) and has wheels.,llm_bridge +punch,*bus**,UsedFor,0.8,A bus is used for public transport (related to using a punch for maintenance) and has wheels.,llm_bridge +*bus**,wheel,PartOf,0.8,A bus is used for public transport (related to using a punch for maintenance) and has wheels.,llm_bridge +wood,planer,UsedFor,0.8,wood is a material both tools are commonly used on,llm_bridge +metal,planer,UsedFor,0.8,metal is a material both tools can be used on,llm_bridge +punch,surface,UsedFor,0.8,surface is what the punch acts upon and is part of what the planer processes,llm_bridge +surface,planer,PartOf,0.8,surface is what the punch acts upon and is part of what the planer processes,llm_bridge +punch,leather,UsedFor,0.8,Both tools are used to work with leather.,llm_bridge +leather,awl,UsedFor,0.8,Both tools are used to work with leather.,llm_bridge +metal,awl,UsedFor,0.8,Both tools are used to work with metal materials.,llm_bridge +punch,hole,CapableOf,0.8,Both tools can be used to create holes.,llm_bridge +hole,awl,CapableOf,0.8,Both tools can be used to create holes.,llm_bridge +punch,hole,UsedFor,0.8,Both a punch and a pick can be used to create or manipulate holes.,llm_bridge +hole,pick,UsedFor,0.8,Both a punch and a pick can be used to create or manipulate holes.,llm_bridge +metal,pick,MadeOf,0.8,Both a punch and a pick are commonly made of metal.,llm_bridge +punch,tool,PartOf,0.8,Both a punch and a pick are types of tools.,llm_bridge +tool,pick,PartOf,0.8,Both a punch and a pick are types of tools.,llm_bridge +wax,candle,MadeOf,0.8,candle is made of wax and also polyester can be used in candles,llm_bridge +candle,polyester,MadeOf,0.8,candle is made of wax and also polyester can be used in candles,llm_bridge +wax,fabric,MadeOf,0.8,fabric can be made of wax (waxed fabric) and polyester is a type of fabric,llm_bridge +fabric,polyester,MadeOf,0.8,fabric can be made of wax (waxed fabric) and polyester is a type of fabric,llm_bridge +wax,surfboard,MadeOf,0.8,surfboards can be made with wax on top and polyester resin as the material,llm_bridge +surfboard,polyester,MadeOf,0.8,surfboards can be made with wax on top and polyester resin as the material,llm_bridge +wax,hair,MadeOf,0.8,hair is made of wax and is part of fur,llm_bridge +hair,fur,PartOf,0.8,hair is made of wax and is part of fur,llm_bridge +candle,fur,Desires,0.8,candles are made of wax and animals desire fur,llm_bridge +wax,oil,MadeOf,0.8,wax can be made of oil and fur has oil,llm_bridge +oil,fur,HasA,0.8,wax can be made of oil and fur has oil,llm_bridge +wax,stone,MadeOf,0.8,"both wax and concrete can be made into or resemble stone in some contexts (e.g., wax sculptures, concrete statues)",llm_bridge +stone,concrete,MadeOf,0.8,"both wax and concrete can be made into or resemble stone in some contexts (e.g., wax sculptures, concrete statues)",llm_bridge +stone,diamond,PartOf,0.8,stones can be made of wax (like wax statues) or can be diamonds (as a type of stone).,llm_bridge +wax,ring,MadeOf,0.8,rings can be made of wax (for molds) or diamonds (as gemstones).,llm_bridge +ring,diamond,MadeOf,0.8,rings can be made of wax (for molds) or diamonds (as gemstones).,llm_bridge +wax,polish,UsedFor,0.8,polish can be used on wax surfaces or on diamonds to enhance shine.,llm_bridge +polish,diamond,UsedFor,0.8,polish can be used on wax surfaces or on diamonds to enhance shine.,llm_bridge +candle,wood,UsedFor,0.8,candle is made of wax and used for wood (in construction or decoration),llm_bridge +polish,wood,UsedFor,0.8,polish is used for wax and also used for wood (to protect and shine),llm_bridge +wax,fireplace,UsedFor,0.8,fireplace uses wax (for candles) and wood (for fuel),llm_bridge +fireplace,wood,UsedFor,0.8,fireplace uses wax (for candles) and wood (for fuel),llm_bridge +wax,plastic,MadeOf,0.8,plastic is a material that can be made from wax and is also a component of styrofoam.,llm_bridge +plastic,styrofoam,MadeOf,0.8,plastic is a material that can be made from wax and is also a component of styrofoam.,llm_bridge +wax,mold,UsedFor,0.8,"molds are used for shaping wax, and styrofoam is often part of a moldable material.",llm_bridge +mold,styrofoam,PartOf,0.8,"molds are used for shaping wax, and styrofoam is often part of a moldable material.",llm_bridge +wax,insulation,HasProperty,0.8,"wax has insulating properties, and styrofoam is known for its insulating properties.",llm_bridge +insulation,styrofoam,HasProperty,0.8,"wax has insulating properties, and styrofoam is known for its insulating properties.",llm_bridge +candle,aluminum,HasPrerequisite,0.8,"wax is a material used to make candles, and aluminum might be used in candle-making equipment or molds.",llm_bridge +wax,foil,UsedFor,0.8,"wax can be used to coat foil, and foil is made of aluminum.",llm_bridge +foil,aluminum,MadeOf,0.8,"wax can be used to coat foil, and foil is made of aluminum.",llm_bridge +wax,container,HasA,0.8,"a container might have a wax seal, and it could be made of aluminum.",llm_bridge +container,aluminum,MadeOf,0.8,"a container might have a wax seal, and it could be made of aluminum.",llm_bridge +wax,*candle**,MadeOf,0.8,candles are made of wax and some animals (like whales historically) have baleen that can be processed similarly.,llm_bridge +*candle**,bone,HasA,0.8,candles are made of wax and some animals (like whales historically) have baleen that can be processed similarly.,llm_bridge +wax,*oil**,MadeOf,0.8,oil is a component of wax and found in marrow within bones.,llm_bridge +*oil**,bone,HasA,0.8,oil is a component of wax and found in marrow within bones.,llm_bridge +wax,*tool**,UsedFor,0.8,"wax is used to make tools, and bones can be made into tools.",llm_bridge +*tool**,bone,HasA,0.8,"wax is used to make tools, and bones can be made into tools.",llm_bridge +candle,soot,MadeOf,0.8,candle connects the materials used in its construction,llm_bridge +candle,soot,HasA,0.8,candle is made of wax and can produce soot when burned,llm_bridge +candle,soot,CreatedBy,0.8,candle is made of wax and burning it creates soot,llm_bridge +wax,bridge_word:_candle,MadeOf,0.8,a candle is made of wax and can be used as decorative jewelry or candle holder.,llm_bridge +bridge_word:_candle,jewelry,UsedFor,0.8,a candle is made of wax and can be used as decorative jewelry or candle holder.,llm_bridge +wax,bridge_word:_mold,MadeOf,0.8,a mold can be made of wax for casting jewelry.,llm_bridge +bridge_word:_mold,jewelry,UsedFor,0.8,a mold can be made of wax for casting jewelry.,llm_bridge +wax,bridge_word:_craft,UsedFor,0.8,wax and jewelry are both used in crafts like sculpting or making jewelry.,llm_bridge +bridge_word:_craft,jewelry,UsedFor,0.8,wax and jewelry are both used in crafts like sculpting or making jewelry.,llm_bridge +turkey,nest,AtLocation,0.8,"turkeys often nest near eggs laid by other birds, or eggs are found in a nest where turkeys might be",llm_bridge +nest,egg,AtLocation,0.8,"turkeys often nest near eggs laid by other birds, or eggs are found in a nest where turkeys might be",llm_bridge +turkey,bird,HasA,0.8,"turkeys are a type of bird, and eggs are part of a bird's reproductive cycle",llm_bridge +bird,egg,PartOf,0.8,"turkeys are a type of bird, and eggs are part of a bird's reproductive cycle",llm_bridge +turkey,farm,AtLocation,0.8,both turkeys and eggs are commonly found on farms,llm_bridge +farm,egg,AtLocation,0.8,both turkeys and eggs are commonly found on farms,llm_bridge +turkey,stuffing,UsedFor,0.8,stuffing is used in turkey dishes and made from cornbread ingredients,llm_bridge +stuffing,cornbread,MadeOf,0.8,stuffing is used in turkey dishes and made from cornbread ingredients,llm_bridge +turkey,plate,AtLocation,0.8,both turkey and cornbread are served on a plate,llm_bridge +plate,cornbread,AtLocation,0.8,both turkey and cornbread are served on a plate,llm_bridge +turkey,dinner,AtLocation,0.8,both turkey and cornbread are found at a dinner meal,llm_bridge +dinner,cornbread,AtLocation,0.8,both turkey and cornbread are found at a dinner meal,llm_bridge +turkey,meat,HasA,0.8,both turkey and steak contain meat,llm_bridge +meat,steak,HasA,0.8,both turkey and steak contain meat,llm_bridge +turkey,leg,PartOf,0.8,"turkey has a leg, which contains fat.",llm_bridge +leg,fat,HasA,0.8,"turkey has a leg, which contains fat.",llm_bridge +turkey,meat,PartOf,0.8,"turkey meat is part of the turkey, and it is made of fat.",llm_bridge +meat,fat,MadeOf,0.8,"turkey meat is part of the turkey, and it is made of fat.",llm_bridge +turkey,bird,PartOf,0.8,"turkey is a type of bird, and birds can have fat.",llm_bridge +bird,fat,HasA,0.8,"turkey is a type of bird, and birds can have fat.",llm_bridge +turkey,*plate**,AtLocation,0.8,both are commonly served on plates.,llm_bridge +*plate**,gnocchi,AtLocation,0.8,both are commonly served on plates.,llm_bridge +turkey,*plate**,ReceivesAction,0.8,both can be placed or served on a plate.,llm_bridge +*plate**,gnocchi,ReceivesAction,0.8,both can be placed or served on a plate.,llm_bridge +turkey,*meal**,PartOf,0.8,both can be components of a meal.,llm_bridge +*meal**,gnocchi,PartOf,0.8,both can be components of a meal.,llm_bridge +meat,flesh,MadeOf,0.8,meat connects the edible part of the turkey to the flesh it is made of,llm_bridge +turkey,sandwich,HasA,0.8,a sandwich can contain both turkey and cheese as ingredients,llm_bridge +sandwich,cheese,HasA,0.8,a sandwich can contain both turkey and cheese as ingredients,llm_bridge +turkey,sandwich,UsedFor,0.8,both turkey and cheese can be used as fillings in a sandwich,llm_bridge +sandwich,cheese,UsedFor,0.8,both turkey and cheese can be used as fillings in a sandwich,llm_bridge +turkey,sandwich,PartOf,0.8,a sandwich may have turkey and cheese as part of its components,llm_bridge +sandwich,cheese,PartOf,0.8,a sandwich may have turkey and cheese as part of its components,llm_bridge +turkey,bridge_word:_predator,CapableOf,0.8,explanation: A predator can eat both turkey and a slug.,llm_bridge +bridge_word:_predator,slug,CapableOf,0.8,explanation: A predator can eat both turkey and a slug.,llm_bridge +turkey,bridge_word:_bird,PartOf,0.8,explanation: A bird (like a turkey) can be part of a larger category that might eat slugs.,llm_bridge +bridge_word:_bird,slug,UsedFor,0.8,explanation: A bird (like a turkey) can be part of a larger category that might eat slugs.,llm_bridge +turkey,bridge_word:_food,HasProperty,0.8,explanation: Both turkey and slug can be considered food sources.,llm_bridge +bridge_word:_food,slug,HasProperty,0.8,explanation: Both turkey and slug can be considered food sources.,llm_bridge +turkey,dish,AtLocation,0.8,both turkey and orange can be found on a dish during a meal,llm_bridge +dish,orange,AtLocation,0.8,both turkey and orange can be found on a dish during a meal,llm_bridge +turkey,meal,AtLocation,0.8,both turkey and orange can be part of a meal,llm_bridge +meal,orange,AtLocation,0.8,both turkey and orange can be part of a meal,llm_bridge +turkey,fruit,HasProperty,0.8,"turkey is not a fruit, but it can be part of a fruit-based dish, and orange is a fruit",llm_bridge +fruit,orange,MadeOf,0.8,"turkey is not a fruit, but it can be part of a fruit-based dish, and orange is a fruit",llm_bridge +plate,chips,AtLocation,0.8,a plate can hold both turkey and chips,llm_bridge +turkey,knife,UsedFor,0.8,a knife is used to cut turkey and spread on chips,llm_bridge +knife,chips,UsedFor,0.8,a knife is used to cut turkey and spread on chips,llm_bridge +turkey,party,AtLocation,0.8,both turkey and chips can be served at a party,llm_bridge +party,chips,AtLocation,0.8,both turkey and chips can be served at a party,llm_bridge +coach,*wheel**,PartOf,0.8,Both vehicles have wheels as a key component.,llm_bridge +*wheel**,tractor,PartOf,0.8,Both vehicles have wheels as a key component.,llm_bridge +coach,*engine**,HasA,0.8,Both vehicles have engines to power them.,llm_bridge +*engine**,tractor,HasA,0.8,Both vehicles have engines to power them.,llm_bridge +coach,*road**,AtLocation,0.8,"Both vehicles operate on roads, though in different contexts.",llm_bridge +*road**,tractor,AtLocation,0.8,"Both vehicles operate on roads, though in different contexts.",llm_bridge +coach,horses,CapableOf,0.8,horses pull both a coach and a cart (used for transportation),llm_bridge +horses,cart,CapableOf,0.8,horses pull both a coach and a cart (used for transportation),llm_bridge +coach,wheel,HasA,0.8,both a coach and a cart have wheels for movement,llm_bridge +wheel,cart,HasA,0.8,both a coach and a cart have wheels for movement,llm_bridge +coach,road,AtLocation,0.8,coaches and carts are commonly found on roads,llm_bridge +road,cart,AtLocation,0.8,coaches and carts are commonly found on roads,llm_bridge +coach,*passenger,HasA,0.8,explanation: Both coaches and vans are vehicles that can carry passengers.**,llm_bridge +*passenger,van,HasA,0.8,explanation: Both coaches and vans are vehicles that can carry passengers.**,llm_bridge +coach,*driver,UsedFor,0.8,explanation: Both coaches and vans require a driver to operate.**,llm_bridge +*driver,van,UsedFor,0.8,explanation: Both coaches and vans require a driver to operate.**,llm_bridge +coach,*road,AtLocation,0.8,explanation: Both coaches and vans are commonly found on roads.**,llm_bridge +*road,van,AtLocation,0.8,explanation: Both coaches and vans are commonly found on roads.**,llm_bridge +coach,flight,ReceivesAction,0.8,"a coach receives the action of being on a flight, and a plane is used for flight",llm_bridge +flight,plane,UsedFor,0.8,"a coach receives the action of being on a flight, and a plane is ridge,mountain,PartOf,0.8,mountain connects as a part of both ridge and earth,llm_bridge +mountain,earth,PartOf,0.8,mountain connects as a part of both ridge and earth,llm_bridge +mountain,jungle,LocatedNear,0.8,mountain can be part of a ridge and jungles are often located near mountains,llm_bridge +ridge,hiking,UsedFor,0.8,hiking can be done on a ridge and in a jungle,llm_bridge +hiking,jungle,UsedFor,0.8,hiking can be done on a ridge and in a jungle,llm_bridge +ridge,trail,AtLocation,0.8,trails can be found on ridges and through jungles,llm_bridge +trail,jungle,AtLocation,0.8,trails can be found on ridges and through jungles,llm_bridge +ridge,valley,LocatedNear,0.8,ridges and ditches are both found near valleys in landscapes.,llm_bridge +valley,ditch,LocatedNear,0.8,ridges and ditches are both found near valleys in landscapes.,llm_bridge +ridge,land,PartOf,0.8,ridges and ditches are both parts of the land.,llm_bridge +land,ditch,PartOf,0.8,ridges and ditches are both parts of the land.,llm_bridge +ridge,landscape,PartOf,0.8,ridges and ditches are both parts of a landscape.,llm_bridge +landscape,ditch,PartOf,0.8,ridges and ditches are both parts of a landscape.,llm_bridge +mountain,lake,LocatedNear,0.8,Mountains often have ridges and are often near lakes.,llm_bridge +valley,lake,LocatedNear,0.8,Valleys often contain lakes and may have ridges nearby.,llm_bridge +ridge,hill,PartOf,0.8,A hill can be part of a ridge and also part of a savanna landscape.,llm_bridge +hill,savanna,PartOf,0.8,A hill can be part of a ridge and also part of a savanna landscape.,llm_bridge +mountain,savanna,PartOf,0.8,A mountain can include ridges and can be near or part of a savanna.,llm_bridge +ridge,grassland,LocatedNear,0.8,A grassland can be part of a savanna and located near a ridge.,llm_bridge +grassland,savanna,PartOf,0.8,A grassland can be part of a savanna and located near a ridge.,llm_bridge +mountain,farm,AtLocation,0.8,"ridges are parts of mountains, and farms can be located on mountains",llm_bridge +hill,farm,AtLocation,0.8,"ridges form part of hills, and farms are often situated on hillsides",llm_bridge +valley,farm,AtLocation,0.8,"ridges are found near valleys, and farms can be located in valleys",llm_bridge +mountain,creek,AtLocation,0.8,"Mountains can have ridges, and creeks are often found on or near mountains.",llm_bridge +valley,creek,AtLocation,0.8,"Valleys often contain ridges, and creeks frequently flow through valleys.",llm_bridge +hill,creek,AtLocation,0.8,"Hills can include ridges, and creeks may form or flow through hills.",llm_bridge +mountain,pit,PartOf,0.8,mountains have ridges and can have pits (like craters),llm_bridge +valley,pit,LocatedNear,0.8,valleys are between ridges and often contain pits (like sinkholes),llm_bridge +ridge,ground,PartOf,0.8,ground is part of both a ridge's surface and where a pit forms,llm_bridge +ground,pit,PartOf,0.8,ground is part of both a ridge's surface and where a pit forms,llm_bridge +ridge,hill,LocatedNear,0.8,Both ridges and furrows are landscape features often found near hills or on hillsides.,llm_bridge +hill,furrow,LocatedNear,0.8,Both ridges and furrows are landscape features often found near hills or on hillsides.,llm_bridge +ridge,mountain,LocatedNear,0.8,Both ridges and furrows are landscape features often found near mountains or on mountainsides.,llm_bridge +mountain,furrow,LocatedNear,0.8,Both ridges and furrows are landscape features often found near mountains or on mountainsides.,llm_bridge +ridge,plow,ReceivesAction,0.8,"A plow can be used to create furrows in the ground, and a ridge can be formed in the soil by a plow.",llm_bridge +plow,furrow,UsedFor,0.8,"A plow can be used to create furrows in the ground, and a ridge can be formed in the soil by a plow.",llm_bridge +mountain,sea,LocatedNear,0.8,mountains often have ridges and are located near the sea,llm_bridge +ridge,coastline,PartOf,0.8,coastlines feature ridges and are where land meets the sea,llm_bridge +coastline,sea,LocatedNear,0.8,coastlines feature ridges and are where land meets the sea,llm_bridge +ridge,beach,LocatedNear,0.8,beaches are near ridges and are part of the sea's shoreline,llm_bridge +beach,sea,LocatedNear,0.8,beaches are near ridges and are part of the sea's shoreline,llm_bridge +triangle,xylophone,PartOf,0.8,xylophone connects as a component and possession,llm_bridge +xylophone,xylophone,HasA,0.8,xylophone connects as a component and possession,llm_bridge +triangle,hinge,PartOf,0.8,Both a triangle and an opener can have hinges as part of their structure.,llm_bridge +hinge,opener,PartOf,0.8,Both a triangle and an opener can have hinges as part of their structure.,llm_bridge +triangle,metal,MadeOf,0.8,Both a triangle and an opener can be made of metal.,llm_bridge +metal,opener,MadeOf,0.8,Both a triangle and an opener can be made of metal.,llm_bridge +triangle,bridge_word:_music,UsedFor,0.8,music connects playing the triangle to using the mouthpiece in wind instruments,llm_bridge +bridge_word:_music,mouthpiece,UsedFor,0.8,music connects playing the triangle to using the mouthpiece in wind instruments,llm_bridge +triangle,string,PartOf,0.8,both instruments have strings that are essential components,llm_bridge +string,mandolin,PartOf,0.8,both instruments have strings that are essential components,llm_bridge +triangle,musician,UsedFor,0.8,both instruments can be used by musicians to create music,llm_bridge +musician,mandolin,UsedFor,0.8,both instruments can be used by musicians to create music,llm_bridge +triangle,music,UsedFor,0.8,both instruments are used to make music,llm_bridge +music,mandolin,UsedFor,0.8,both instruments are used to make music,llm_bridge +bridge_word:_music,bass,UsedFor,0.8,music connects triangle (as an instrument) and bass (as an instrument) in terms of their use,llm_bridge +triangle,bridge_word:_sound,HasProperty,0.8,sound connects triangle (as an instrument producing sound) and bass (as an instrument or fish that can produce sound),llm_bridge +bridge_word:_sound,bass,HasProperty,0.8,sound connects triangle (as an instrument producing sound) and bass (as an instrument or fish that can produce sound),llm_bridge +triangle,paper,PartOf,0.8,paper can be in the shape of a triangle and an awl is used to punch holes in paper,llm_bridge +paper,awl,UsedFor,0.8,paper can be in the shape of a triangle and an awl is used to punch holes in paper,llm_bridge +triangle,wood,PartOf,0.8,wood can be shaped into a triangle and an awl is used to mark or work with wood,llm_bridge +wood,awl,UsedFor,0.8,wood can be shaped into a triangle and an awl is used to mark or work with wood,llm_bridge +triangle,drawing,UsedFor,0.8,"a triangle is used in drawing, and an awl can be used to make precise marks in drawing",llm_bridge +drawing,awl,UsedFor,0.8,"a triangle is used in drawing, and an awl can be used to make precise marks in drawing",llm_bridge +triangle,*drawing**,UsedFor,0.8,Both a triangle and a scale are used in technical drawing or drafting.,llm_bridge +*drawing**,scale,UsedFor,0.8,Both a triangle and a scale are used in technical drawing or drafting.,llm_bridge +triangle,*drafting**,UsedFor,0.8,Both tools are used in the process of drafting or technical drawing.,llm_bridge +*drafting**,scale,UsedFor,0.8,Both tools are used in the process of drafting or technical drawing.,llm_bridge +triangle,*measurement**,UsedFor,0.8,Both a triangle and a scale assist with precise measurements.,llm_bridge +*measurement**,scale,UsedFor,0.8,Both a triangle and a scale assist with precise measurements.,llm_bridge +triangle,paper,MadeOf,0.8,"Both triangles and lanterns can be made of paper, especially decorative paper triangles and paper lanterns.",llm_bridge +paper,lantern,MadeOf,0.8,"Both triangles and lanterns can be made of paper, especially decorative paper triangles and paper lanterns.",llm_bridge +triangle,light,HasProperty,0.8,"Triangles can be used to focus or reflect light, while lanterns are specifically designed to contain light.",llm_bridge +light,lantern,UsedFor,0.8,"Triangles can be used to focus or reflect light, while lanterns are specifically designed to contain light.",llm_bridge +triangle,art,UsedFor,0.8,Both triangles and lanterns can be used in creating or displaying art projects.,llm_bridge +art,lantern,UsedFor,0.8,Both triangles and lanterns can be used in creating or displaying art projects.,llm_bridge +metal,knife,MadeOf,0.8,metal is a common material for both tools,llm_bridge +triangle,cutting,UsedFor,0.8,both tools can be used for cutting purposes,llm_bridge +cutting,knife,UsedFor,0.8,both tools can be used for cutting purposes,llm_bridge +triangle,craft,UsedFor,0.8,both tools can be used in crafting activities,llm_bridge +craft,knife,UsedFor,0.8,both tools can be used in crafting activities,llm_bridge +music,trumpet,UsedFor,0.8,both are used in creating music,llm_bridge +band,trumpet,AtLocation,0.8,both can be found in a band setting,llm_bridge +triangle,note,MadeOf,0.8,both produce musical notes,llm_bridge +note,trumpet,MadeOf,0.8,both produce musical notes,llm_bridge +bull,*horn**,HasA,0.8,Both bulls and rhinoceroses have horns.,llm_bridge +*horn**,rhinoceros,HasA,0.8,Both bulls and rhinoceroses have horns.,llm_bridge +bull,*hoof**,HasA,0.8,Both bulls and rhinoceroses have hooves as part of their feet structure.,llm_bridge +*hoof**,rhinoceros,HasA,0.8,Both bulls and rhinoceroses have hooves as part of their feet structure.,llm_bridge +bull,meat,UsedFor,0.8,both can be hunted for meat,llm_bridge +meat,lynx,UsedFor,0.8,both can be hunted for meat,llm_bridge +bull,fur,HasA,0.8,both have fur covering their bodies,llm_bridge +fur,lynx,HasA,0.8,both have fur covering their bodies,llm_bridge +bull,hunter,CapableOf,0.8,a hunter can hunt either,llm_bridge +hunter,lynx,UsedFor,0.8,a hunter can hunt either,llm_bridge +bull,wood,HasA,0.8,"both bulls (as animals) may encounter wood in their environment, and beavers use wood for their dams and lodges",llm_bridge +wood,beaver,MadeOf,0.8,"both bulls (as animals) may encounter wood in their environment, and beavers use wood for their dams and lodges",llm_bridge +bull,food,UsedFor,0.8,"bulls need food to survive, and beavers also require food for sustenance",llm_bridge +food,beaver,UsedFor,0.8,"bulls need food to survive, and beavers also require food for sustenance",llm_bridge +bull,water,AtLocation,0.8,"bulls often live near water sources, and beavers live in or near water",llm_bridge +water,beaver,AtLocation,0.8,"bulls often live near water sources, and beavers live in or near water",llm_bridge +bull,neck,PartOf,0.8,neck connects the bull's anatomy to the muscle in that region.,llm_bridge +neck,muscle,PartOf,0.8,neck connects the bull's anatomy to the muscle in that region.,llm_bridge +bull,power,HasProperty,0.8,power connects the bull's strength attribute to the muscle's strength attribute.,llm_bridge +power,muscle,HasProperty,0.8,power connects the bull's strength attribute to the muscle's strength attribute.,llm_bridge +bull,strength,HasProperty,0.8,strength connects the bull's trait to the muscle's function.,llm_bridge +strength,muscle,HasProperty,0.8,strength connects the bull's trait to the muscle's function.,llm_bridge +bull,shell,PartOf,0.8,shell is part of a bull's structure (like a protective layer) and a tortoise has a shell.,llm_bridge +shell,tortoise,HasA,0.8,shell is part of a bull's structure (like a protective layer) and a tortoise has a shell.,llm_bridge +bull,leg,HasA,0.8,both bulls and tortoises have legs for movement.,llm_bridge +leg,tortoise,HasA,0.8,both bulls and tortoises have legs for movement.,llm_bridge +bull,farm,AtLocation,0.8,"bulls are often found on farms, and tortoises can also be found on farms or similar environments.",llm_bridge +farm,tortoise,AtLocation,0.8,"bulls are often found on farms, and tortoises can also be found on farms or similar environments.",llm_bridge +bull,*salt**,LocatedNear,0.8,"Bulls are often found near salt licks, while crabs live in salty ocean water.",llm_bridge +*salt**,crab,HasProperty,0.8,"Bulls are often found near salt licks, while crabs live in salty ocean water.",llm_bridge +bull,*fisherman**,UsedFor,0.8,"Bulls can be used for fish farming, while crabs are caught by fisherman.",llm_bridge +*fisherman**,crab,ReceivesAction,0.8,"Bulls can be used for fish farming, while crabs are caught by fisherman.",llm_bridge +bull,*beach**,LocatedNear,0.8,"Bulls sometimes graze near beaches, and crabs are commonly found on beaches.",llm_bridge +*beach**,crab,AtLocation,0.8,"Bulls sometimes graze near beaches, and crabs are commonly found on beaches.",llm_bridge +food,snail,UsedFor,0.8,both can be sources of food for predators or humans,llm_bridge +bull,garden,AtLocation,0.8,"both can be found in gardens (bulls less commonly, but possible)",llm_bridge +garden,snail,AtLocation,0.8,"both can be found in gardens (bulls less commonly, but possible)",llm_bridge +bull,shell,HasA,0.8,"both can have shells, though more typical for snails",llm_bridge +shell,snail,HasA,0.8,"both can have shells, though more typical for snails",llm_bridge +bull,water,LocatedNear,0.8,"water is where dolphins live and bulls are often associated with (rivers, ponds)",llm_bridge +water,dolphin,LocatedNear,0.8,"water is where dolphins live and bulls are often associated with (rivers, ponds)",llm_bridge +bull,sea,LocatedNear,0.8,sea is the natural habitat for dolphins and bulls are sometimes found near coastal areas,llm_bridge +sea,dolphin,LocatedNear,0.8,sea is the natural habitat for dolphins and bulls are sometimes found near coastal areas,llm_bridge +bull,animal,PartOf,0.8,animal connects them as both are animals,llm_bridge +animal,dolphin,PartOf,0.8,animal connects them as both are animals,llm_bridge +bull,*snake**,PartOf,0.8,snake connects as part of a bull's potential threat and as a type of python.,llm_bridge +*snake**,python,HasProperty,0.8,snake connects as part of a bull's potential threat and as a type of python.,llm_bridge +bull,*grass**,AtLocation,0.8,grass connects as a common habitat for both animals.,llm_bridge +*grass**,python,AtLocation,0.8,grass connects as a common habitat for both animals.,llm_bridge +bull,*food**,UsedFor,0.8,"food connects as something a bull might protect or search for, and as something a python might hunt or consume.",llm_bridge +*food**,python,UsedFor,0.8,"food connects as something a bull might protect or search for, and as something a python might hunt or consume.",llm_bridge +leg,centipede,HasA,0.8,both are animals with legs,llm_bridge +farm,centipede,AtLocation,0.8,both can be found in rural environments,llm_bridge +bull,predator,CapableOf,0.8,both can act as predators in their ecosystems,llm_bridge +predator,centipede,CapableOf,0.8,both can act as predators in their ecosystems,llm_bridge +mortar,gun,HasA,0.8,gun is a device that can contain a mortar and has a trigger,llm_bridge +gun,trigger,PartOf,0.8,gun is a device that can contain a mortar and has a trigger,llm_bridge +mortar,weapon,PartOf,0.8,weapon is a general category that includes both items,llm_bridge +weapon,trigger,UsedFor,0.8,weapon is a general category that includes both items,llm_bridge +mortar,bridge_word:_soldier,UsedFor,0.8,soldiers use both mortars and tanks in military operations.,llm_bridge +bridge_word:_soldier,tank,UsedFor,0.8,soldiers use both mortars and tanks in military operations.,llm_bridge +mortar,bridge_word:_ammunition,HasA,0.8,both mortars and tanks can contain or use ammunition.,llm_bridge +bridge_word:_ammunition,tank,HasA,0.8,both mortars and tanks can contain or use ammunition.,llm_bridge +mortar,bridge_word:_military,AtLocation,0.8,mortars and tanks are commonly found in military contexts.,llm_bridge +bridge_word:_military,tank,AtLocation,0.8,mortars and tanks are commonly found in military contexts.,llm_bridge +mortar,explosion,CapableOf,0.8,both mortar and mine can cause explosions,llm_bridge +explosion,mine,CapableOf,0.8,both mortar and mine can cause explosions,llm_bridge +mortar,soldier,UsedFor,0.8,both mortar and mine are used by soldiers,llm_bridge +soldier,mine,UsedFor,0.8,both mortar and mine are used by soldiers,llm_bridge +weapon,mine,PartOf,0.8,both mortar and mine are types of weapons,llm_bridge +mortar,*club**,MadeOf,0.8,Both are simple weapons made by assembling components.,llm_bridge +*club**,mace,MadeOf,0.8,Both are simple weapons made by assembling components.,llm_bridge +mortar,*weaponry**,PartOf,0.8,Both are components of a larger collection of weapons.,llm_bridge +*weaponry**,mace,PartOf,0.8,Both are components of a larger collection of weapons.,llm_bridge +mortar,*soldier**,UsedFor,0.8,Both are used by soldiers in combat.,llm_bridge +*soldier**,mace,UsedFor,0.8,Both are used by soldiers in combat.,llm_bridge +weapon,handgun,PartOf,0.8,"both are weapons, part of the broader category",llm_bridge +soldier,handgun,UsedFor,0.8,both are used by soldiers in combat,llm_bridge +mortar,ammunition,HasA,0.8,both require specific ammunition to function,llm_bridge +ammunition,handgun,HasA,0.8,both require specific ammunition to function,llm_bridge +mortar,weapon,HasA,0.8,both are types of weapons,llm_bridge +weapon,spear,HasA,0.8,both are types of weapons,llm_bridge +soldier,spear,UsedFor,0.8,soldiers use both weapons in combat,llm_bridge +mortar,soldier,CapableOf,0.8,soldiers are capable of using both weapons,llm_bridge +soldier,spear,CapableOf,0.8,soldiers are capable of using both weapons,llm_bridge +bridge_word:_soldier,pistol,UsedFor,0.8,both mortar and pistol are used by soldiers in combat,llm_bridge +bridge_word:_ammunition,pistol,HasA,0.8,both mortar and pistol require specific types of ammunition to function,llm_bridge +mortar,bridge_word:_weapon,PartOf,0.8,both mortar and pistol are types of weapons used in warfare,llm_bridge +bridge_word:_weapon,pistol,PartOf,0.8,both mortar and pistol are types of weapons used in warfare,llm_bridge +mortar,shell,PartOf,0.8,a shell is part of a mortar round and can be part of a bomb's payload,llm_bridge +shell,bomb,PartOf,0.8,a shell is part of a mortar round and can be part of a bomb's payload,llm_bridge +mortar,explosion,Causes,0.8,both weapons cause explosions,llm_bridge +explosion,bomb,Causes,0.8,both weapons cause explosions,llm_bridge +soldier,bomb,UsedFor,0.8,soldiers use both weapons in combat,llm_bridge +mortar,ammunition,UsedFor,0.8,ammunition is used in both mortar and revolver for firing,llm_bridge +ammunition,revolver,UsedFor,0.8,ammunition is used in both mortar and revolver for firing,llm_bridge +mortar,"""gun""",PartOf,0.8,"a mortar is a type of gun, and a blade is part of many guns (like rifles)",llm_bridge +"""gun""",blade,PartOf,0.8,"a mortar is a type of gun, and a blade is part of many guns (like rifles)",llm_bridge +mortar,"""weapon""",PartOf,0.8,both are components of different types of weapons,llm_bridge +"""weapon""",blade,PartOf,0.8,both are components of different types of weapons,llm_bridge +mortar,"""army""",HasA,0.8,an army has both mortars and blades in their arsenal,llm_bridge +"""army""",blade,HasA,0.8,an army has both mortars and blades in their arsenal,llm_bridge +platinum,alloy,MadeOf,0.8,alloy connects metals by being a mixture of them,llm_bridge +alloy,wolfram,MadeOf,0.8,alloy connects metals by being a mixture of them,llm_bridge +platinum,ores,AtLocation,0.8,ores connect metals by being their natural sources,llm_bridge +ores,wolfram,AtLocation,0.8,ores connect metals by being their natural sources,llm_bridge +platinum,industry,AtLocation,0.8,industry connects metals by being a place where they are processed and used,llm_bridge +industry,wolfram,AtLocation,0.8,industry connects metals by being a place where they are processed and used,llm_bridge +platinum,ore,AtLocation,0.8,ore connects platinum and iron as minerals that are found in the earth,llm_bridge +ore,iron,AtLocation,0.8,ore connects platinum and iron as minerals that are found in the earth,llm_bridge +platinum,*alloy**,MadeOf,0.8,"platinum can be part of an alloy, and metals are often used to make alloys.",llm_bridge +*alloy**,metal,MadeOf,0.8,"platinum can be part of an alloy, and metals are often used to make alloys.",llm_bridge +platinum,*ring**,MadeOf,0.8,"platinum can be used to make rings, and metals are common materials for rings.",llm_bridge +*ring**,metal,MadeOf,0.8,"platinum can be used to make rings, and metals are common materials for rings.",llm_bridge +platinum,*wire**,MadeOf,0.8,"platinum can be made into wire, and metals are often used to create wire.",llm_bridge +*wire**,metal,MadeOf,0.8,"platinum can be made into wire, and metals are often used to create wire.",llm_bridge +platinum,,PartOf,0.8,explanation: Both platinum and magnesium are elements.,llm_bridge +,magnesium,PartOf,0.8,explanation: Both platinum and magnesium are elements.,llm_bridge +platinum,,UsedFor,0.8,explanation: Both platinum and magnesium can be used to create alloys.,llm_bridge +,magnesium,UsedFor,0.8,explanation: Both platinum and magnesium can be used to create alloys.,llm_bridge +platinum,alloy,UsedFor,0.8,alloy connects metals through their common use in creating mixed metal substances,llm_bridge +alloy,tin,UsedFor,0.8,alloy connects metals through their common use in creating mixed metal substances,llm_bridge +alloy,nickel,MadeOf,0.8,alloy is a mixture of metals that can include both platinum and nickel,llm_bridge +platinum,ring,MadeOf,0.8,rings can be made of platinum or nickel,llm_bridge +ring,nickel,MadeOf,0.8,rings can be made of platinum or nickel,llm_bridge +platinum,coin,MadeOf,0.8,coins can be made of platinum or nickel,llm_bridge +coin,nickel,MadeOf,0.8,coins can be made of platinum or nickel,llm_bridge +alloy,bronze,MadeOf,0.8,alloy connects metals through composition,llm_bridge +coin,bronze,MadeOf,0.8,coin connects metals through use in currency,llm_bridge +platinum,jewelry,UsedFor,0.8,jewelry connects metals through decorative purposes,llm_bridge +jewelry,bronze,UsedFor,0.8,jewelry connects metals through decorative purposes,llm_bridge +platinum,metal,MadeOf,0.8,both platinum and anchors are made of metal,llm_bridge +metal,anchor,MadeOf,0.8,both platinum and anchors are made of metal,llm_bridge +platinum,ship,HasA,0.8,"platinum can be a component in ships, and ships have anchors",llm_bridge +platinum,weight,HasProperty,0.8,"platinum is heavy, and an anchor provides weight",llm_bridge +weight,anchor,HasA,0.8,"platinum is heavy, and an anchor provides weight",llm_bridge +platinum,wire,MadeOf,0.8,"wires can be made of platinum or tungsten, both being metals suitable for electrical applications.",llm_bridge +platinum,filament,MadeOf,0.8,"tungsten is commonly used in filaments (e.g., in light bulbs), and platinum could also be used in specialized filaments.",llm_bridge +filament,tungsten,MadeOf,0.8,"tungsten is commonly used in filaments (e.g., in light bulbs), and platinum could also be used in specialized filaments.",llm_bridge +alloy,pewter,MadeOf,0.8,both platinum and pewter can be made into alloys,llm_bridge +chalk,stone,MadeOf,0.8,"chalk is a type of stone, and diamonds are found in stones.",llm_bridge +stone,diamond,HasA,0.8,"chalk is a type of stone, and diamonds are found in stones.",llm_bridge +chalk,rock,MadeOf,0.8,Both chalk and ice are types of rock material.,llm_bridge +rock,ice,MadeOf,0.8,Both chalk and ice are types of rock material.,llm_bridge +chalk,cave,AtLocation,0.8,Chalk formations and ice formations can both be found in caves.,llm_bridge +cave,ice,AtLocation,0.8,Chalk formations and ice formations can both be found in caves.,llm_bridge +chalk,sculpture,UsedFor,0.8,Both chalk and ice can be used as materials for sculpture creation.,llm_bridge +sculpture,ice,UsedFor,0.8,Both chalk and ice can be used as materials for sculpture creation.,llm_bridge +chalk,limestone,MadeOf,0.8,limestone is a mineral that can be used as chalk and is a component of soil,llm_bridge +limestone,soil,MadeOf,0.8,limestone is a mineral that can be used as chalk and is a component of soil,llm_bridge +rock,quartz,PartOf,0.8,rock connects the material composition and the geological context,llm_bridge +limestone,earth,MadeOf,0.8,limestone is a type of rock made from chalk and is found in the earth.,llm_bridge +rock,earth,PartOf,0.8,"chalk is a type of rock, and rocks are part of the earth.",llm_bridge +chalk,mine,MadeOf,0.8,both chalk and clay can be mined as raw materials,llm_bridge +mine,clay,MadeOf,0.8,both chalk and clay can be mined as raw materials,llm_bridge +chalk,soil,PartOf,0.8,"chalk is part of soil composition, while clay is made of soil",llm_bridge +soil,clay,MadeOf,0.8,"chalk is part of soil composition, while clay is made of soil",llm_bridge +chalk,earth,MadeOf,0.8,both chalk and clay are made from earth materials,llm_bridge +earth,clay,MadeOf,0.8,both chalk and clay are made from earth materials,llm_bridge +chalk,*board**,UsedFor,0.8,"chalk is used on boards, which are often made of wood.",llm_bridge +*board**,wood,MadeOf,0.8,"chalk is used on boards, which are often made of wood.",llm_bridge +chalk,*eraser**,UsedFor,0.8,"chalk writing is erased by erasers, which are often made of wood.",llm_bridge +*eraser**,wood,MadeOf,0.8,"chalk writing is erased by erasers, which are often made of wood.",llm_bridge +chalk,*blackboard**,UsedFor,0.8,"chalk is used on blackboards, which are often made of wood.",llm_bridge +*blackboard**,wood,MadeOf,0.8,"chalk is used on blackboards, which are often made of wood.",llm_bridge +stone,talc,MadeOf,0.8,both chalk and talc are types of stone minerals,llm_bridge +chalk,powder,HasProperty,0.8,both chalk and talc can be ground into a fine powder,llm_bridge +powder,talc,HasProperty,0.8,both chalk and talc can be ground into a fine powder,llm_bridge +rust,insulation,UsedFor,0.8,"insulation is used to prevent rust spread, and styrofoam has insulation properties",llm_bridge +rust,fiber,MadeOf,0.8,both rust (in a material sense) and wool contain or are composed of fibers.,llm_bridge +fiber,wool,MadeOf,0.8,both rust (in a material sense) and wool contain or are composed of fibers.,llm_bridge +rust,textile,LocatedNear,0.8,"rust can be found on textiles, and wool is a part of textiles.",llm_bridge +textile,wool,PartOf,0.8,"rust can be found on textiles, and wool is a part of textiles.",llm_bridge +rust,clothing,HasA,0.8,"clothing can have rust on it, and wool is often used for making clothing.",llm_bridge +clothing,wool,UsedFor,0.8,"clothing can have rust on it, and wool is often used for making clothing.",llm_bridge +rust,*metal**,MadeOf,0.8,Metal can rust and can be used to make wrappers.,llm_bridge +*metal**,wrapper,MadeOf,0.8,Metal can rust and can be used to make wrappers.,llm_bridge +rust,*food**,UsedFor,0.8,"Rust can damage food containers, and wrappers are used to package food.",llm_bridge +*food**,wrapper,UsedFor,0.8,"Rust can damage food containers, and wrappers are used to package food.",llm_bridge +rust,*container**,PartOf,0.8,"Rust can form on parts of a container, and a wrapper can be part of a container's exterior.",llm_bridge +*container**,wrapper,PartOf,0.8,"Rust can form on parts of a container, and a wrapper can be part of a container's exterior.",llm_bridge +rust,*iron**,MadeOf,0.8,"Iron can rust, and some animals' fur contains iron compounds.",llm_bridge +*iron**,fur,MadeOf,0.8,"Iron can rust, and some animals' fur contains iron compounds.",llm_bridge +*metal**,fur,UsedFor,0.8,"Rust is a metal oxide, and metal objects (like tools or jewelry) might have fur attached or used near them.",llm_bridge +rust,*hair**,AtLocation,0.8,"Rust might be found on surfaces where hair (a component of fur) is present, and hair is part of fur.",llm_bridge +*hair**,fur,PartOf,0.8,"Rust might be found on surfaces where hair (a component of fur) is present, and hair is part of fur.",llm_bridge +rust,iron,MadeOf,0.8,both rust and soot can be derived from iron materials.,llm_bridge +iron,soot,MadeOf,0.8,both rust and soot can be derived from iron materials.,llm_bridge +rust,metal,MadeOf,0.8,both rust and soot are byproducts of metal processes.,llm_bridge +metal,soot,MadeOf,0.8,both rust and soot are byproducts of metal processes.,llm_bridge +rust,particle,HasA,0.8,both rust and soot are composed of fine particles.,llm_bridge +particle,soot,HasA,0.8,both rust and soot are composed of fine particles.,llm_bridge +metal,rope,MadeOf,0.8,metal is a common material that can rust and is also used to make ropes,llm_bridge +rust,ship,HasA,0.8,ships can have rust on them and also have ropes for mooring and sailing,llm_bridge +ship,rope,HasA,0.8,ships can have rust on them and also have ropes for mooring and sailing,llm_bridge +rust,bridge,AtLocation,0.8,bridges can develop rust and often have ropes for support or as part of their structure,llm_bridge +bridge,rope,PartOf,0.8,bridges can develop rust and often have ropes for support or as part of their structure,llm_bridge +rust,bridge_1:_metal,MadeOf,0.8,Metal is the material that can rust and is commonly used to make jewelry.,llm_bridge +bridge_1:_metal,jewelry,MadeOf,0.8,Metal is the material that can rust and is commonly used to make jewelry.,llm_bridge +rust,bridge_2:_iron,MadeOf,0.8,"Iron can rust, and iron can be used to make some types of jewelry.",llm_bridge +bridge_2:_iron,jewelry,MadeOf,0.8,"Iron can rust, and iron can be used to make some types of jewelry.",llm_bridge +rust,bridge_3:_chain,MadeOf,0.8,Chains can rust (if made of certain metals) and can be part of jewelry.,llm_bridge +bridge_3:_chain,jewelry,PartOf,0.8,Chains can rust (if made of certain metals) and can be part of jewelry.,llm_bridge +*metal**,string,MadeOf,0.8,Metal is a common material found in rust (as iron oxide) and can be used to make string (like metal wire).,llm_bridge +rust,*tool**,UsedFor,0.8,"Rust can be removed by tools, and some tools (like wire cutters) may have strings or strings made of metal that can rust.",llm_bridge +*tool**,string,HasA,0.8,"Rust can be removed by tools, and some tools (like wire cutters) may have strings or strings made of metal that can rust.",llm_bridge +rust,*wire**,MadeOf,0.8,"Wire can be made of metal that rusts, and string can be part of a wire (like a core inside a wrapped string).",llm_bridge +*wire**,string,PartOf,0.8,"Wire can be made of metal that rusts, and string can be part of a wire (like a core inside a wrapped string).",llm_bridge +rust,bridge_word:_**scraping**,UsedFor,0.8,scraping connects the action used to remove rust and the action used to prepare leather,llm_bridge +bridge_word:_**scraping**,leather,UsedFor,0.8,scraping connects the action used to remove rust and the action used to prepare leather,llm_bridge +rust,bridge_word:_**tool**,UsedFor,0.8,tool connects the instrument used to remove rust and the instrument used to work with leather,llm_bridge +bridge_word:_**tool**,leather,UsedFor,0.8,tool connects the instrument used to remove rust and the instrument used to work with leather,llm_bridge +rust,bridge_word:_**abrasion**,HasProperty,0.8,abrasion connects the quality of rust (being abrasive) and the cause of leather damage (abrasion),llm_bridge +bridge_word:_**abrasion**,leather,Causes,0.8,abrasion connects the quality of rust (being abrasive) and the cause of leather damage (abrasion),llm_bridge +tungsten,alloy,UsedFor,0.8,alloys are made by combining metals like tungsten and iron,llm_bridge +alloy,iron,UsedFor,0.8,alloys are made by combining metals like tungsten and iron,llm_bridge +tungsten,steel,HasPrerequisite,0.8,"steel is an alloy made with iron, sometimes tungsten is added",llm_bridge +tungsten,metal,PartOf,0.8,both tungsten and iron are types of metal,llm_bridge +metal,iron,PartOf,0.8,both tungsten and iron are types of metal,llm_bridge +tungsten,tungsten,PartOf,0.8,"tungsten is a type of metal, and metal is a category that includes tungsten.",llm_bridge +tungsten,*bridge_word:_jewelry,MadeOf,0.8,explanation: jewelry is a common product made from both metals.**,llm_bridge +*bridge_word:_jewelry,gold,MadeOf,0.8,explanation: jewelry is a common product made from both metals.**,llm_bridge +tungsten,*bridge_word:_ore,MadeOf,0.8,explanation: ore is a natural substance from which both metals are mined.**,llm_bridge +*bridge_word:_ore,gold,MadeOf,0.8,explanation: ore is a natural substance from which both metals are mined.**,llm_bridge +tungsten,*bridge_word:_metal,PartOf,0.8,explanation: metal is the broad category that includes both tungsten and gold.**,llm_bridge +*bridge_word:_metal,gold,PartOf,0.8,explanation: metal is the broad category that includes both tungsten and gold.**,llm_bridge +tungsten,alloy,MadeOf,0.8,"both tungsten and pewter can be components of alloys, which are mixtures of metals.",llm_bridge +tungsten,vessel,UsedFor,0.8,"both tungsten and pewter can be used to create vessels (e.g., utensils, sculptures, decorative items).",llm_bridge +vessel,pewter,UsedFor,0.8,"both tungsten and pewter can be used to create vessels (e.g., utensils, sculptures, decorative items).",llm_bridge +tungsten,sculpture,UsedFor,0.8,both tungsten and pewter are materials that can be used in the creation of sculptures.,llm_bridge +sculpture,pewter,UsedFor,0.8,both tungsten and pewter are materials that can be used in the creation of sculptures.,llm_bridge +tungsten,mineral,PartOf,0.8,Both tungsten and tin can be found as parts of certain minerals.,llm_bridge +mineral,tin,PartOf,0.8,Both tungsten and tin can be found as parts of certain minerals.,llm_bridge +tungsten,element,PartOf,0.8,"Tungsten is a metallic element, and Wolfram is another name for the same element.",llm_bridge +element,wolfram,PartOf,0.8,"Tungsten is a metallic element, and Wolfram is another name for the same element.",llm_bridge +tungsten,thermometer,MadeOf,0.8,thermometers often use tungsten and mercury in their construction.,llm_bridge +thermometer,mercury,MadeOf,0.8,thermometers often use tungsten and mercury in their construction.,llm_bridge +alloy,titanium,MadeOf,0.8,both metals can be components of an alloy,llm_bridge +tungsten,gear,MadeOf,0.8,both metals can be used to make gears,llm_bridge +gear,titanium,MadeOf,0.8,both metals can be used to make gears,llm_bridge +tungsten,pipe,MadeOf,0.8,both metals can be used to make pipes,llm_bridge +pipe,titanium,MadeOf,0.8,both metals can be used to make pipes,llm_bridge +tungsten,*rod**,MadeOf,0.8,"A tungsten rod can be made of tungsten, and an anchor can be made of a metal rod.",llm_bridge +*rod**,anchor,MadeOf,0.8,"A tungsten rod can be made of tungsten, and an anchor can be made of a metal rod.",llm_bridge +tungsten,*weight**,HasProperty,0.8,"Tungsten is known for its high density/weight, and an anchor's function relies on its weight.",llm_bridge +*weight**,anchor,HasProperty,0.8,"Tungsten is known for its high density/weight, and an anchor's function relies on its weight.",llm_bridge +tungsten,*ship**,HasA,0.8,"A ship can have tungsten components, and an anchor is a part of a ship's equipment.",llm_bridge +*ship**,anchor,PartOf,0.8,"A ship can have tungsten components, and an anchor is a part of a ship's equipment.",llm_bridge +tungsten,metal,HasProperty,0.8,both are metals,llm_bridge +metal,magnesium,HasProperty,0.8,both are metals,llm_bridge +tar,bridge_word:_smoke,UsedFor,0.8,"tar is used to create smoke, and soot is created by smoke.",llm_bridge +bridge_word:_smoke,soot,CreatedBy,0.8,"tar is used to create smoke, and soot is created by smoke.",llm_bridge +tar,bridge_word:_coal,MadeOf,0.8,"tar can be made from coal, and soot can also be made from coal.",llm_bridge +bridge_word:_coal,soot,MadeOf,0.8,"tar can be made from coal, and soot can also be made from coal.",llm_bridge +tar,bridge_word:_chimney,AtLocation,0.8,"tar can be found in chimneys, and soot is commonly found in chimneys.",llm_bridge +bridge_word:_chimney,soot,AtLocation,0.8,"tar can be found in chimneys, and soot is commonly found in chimneys.",llm_bridge +tar,*fishing_net**,MadeOf,0.8,fishing nets can be made from tar-coated materials and polyester fibers.,llm_bridge +*fishing_net**,polyester,MadeOf,0.8,fishing nets can be made from tar-coated materials and polyester fibers.,llm_bridge +tar,*rope**,MadeOf,0.8,ropes can be made from tar for water resistance and polyester for strength.,llm_bridge +*rope**,polyester,MadeOf,0.8,ropes can be made from tar for water resistance and polyester for strength.,llm_bridge +tar,*fabric**,MadeOf,0.8,fabric can be made with tar for insulation and polyester for durability.,llm_bridge +*fabric**,polyester,MadeOf,0.8,fabric can be made with tar for insulation and polyester for durability.,llm_bridge +tar,bottle,MadeOf,0.8,both tar and cork can be components in making bottles,llm_bridge +bottle,cork,MadeOf,0.8,both tar and cork can be components in making bottles,llm_bridge +tar,stopper,UsedFor,0.8,"tar can be used to make a stopper, and cork is commonly used for stoppers",llm_bridge +stopper,cork,MadeOf,0.8,"tar can be used to make a stopper, and cork is commonly used for stoppers",llm_bridge +tar,container,UsedFor,0.8,both tar and cork can be used to seal or protect containers,llm_bridge +container,cork,UsedFor,0.8,both tar and cork can be used to seal or protect containers,llm_bridge +tar,plastic,HasA,0.8,plastic is a component in tar and styrofoam,llm_bridge +tar,insulation,UsedFor,0.8,both tar and styrofoam are used for insulation,llm_bridge +insulation,styrofoam,UsedFor,0.8,both tar and styrofoam are used for insulation,llm_bridge +tar,adhesive,HasA,0.8,both tar and styrofoam can contain or act as adhesives,llm_bridge +adhesive,styrofoam,HasA,0.8,both tar and styrofoam can contain or act as adhesives,llm_bridge +tar,roofing,MadeOf,0.8,roofing products are often made with tar and paper,llm_bridge +roofing,paper,MadeOf,0.8,roofing products are often made with tar and paper,llm_bridge +tar,roll,PartOf,0.8,tar and paper are components of a roll used for roofing or insulation,llm_bridge +roll,paper,PartOf,0.8,tar and paper are components of a roll used for roofing or insulation,llm_bridge +tar,roof,HasA,0.8,roofs contain tar and paper as waterproofing materials,llm_bridge +roof,paper,HasA,0.8,roofs contain tar and paper as waterproofing materials,llm_bridge +tar,pavement,MadeOf,0.8,pavement connects the materials used to create it,llm_bridge +pavement,concrete,MadeOf,0.8,pavement connects the materials used to create it,llm_bridge +tar,*hut**,MadeOf,0.8,both tar and straw can be used to make huts or similar structures.,llm_bridge +*hut**,straw,MadeOf,0.8,both tar and straw can be used to make huts or similar structures.,llm_bridge +tar,*roof**,MadeOf,0.8,tar and straw are both materials used in constructing roofs.,llm_bridge +*roof**,straw,MadeOf,0.8,tar and straw are both materials used in constructing roofs.,llm_bridge +tar,*roofing**,UsedFor,0.8,both tar and straw can be used for roofing applications.,llm_bridge +*roofing**,straw,UsedFor,0.8,both tar and straw can be used for roofing applications.,llm_bridge +tar,*burn**,UsedFor,0.8,"tar can be used to burn, which can also burn skin.",llm_bridge +*burn**,skin,CapableOf,0.8,"tar can be used to burn, which can also burn skin.",llm_bridge +tar,*wound**,UsedFor,0.8,"tar can be used to treat wounds (historically), and skin can have wounds.",llm_bridge +*wound**,skin,HasA,0.8,"tar can be used to treat wounds (historically), and skin can have wounds.",llm_bridge +tar,*pain**,HasProperty,0.8,both tar (when hot) and skin (when injured) can cause or be associated with pain.,llm_bridge +*pain**,skin,HasProperty,0.8,both tar (when hot) and skin (when injured) can cause or be associated with pain.,llm_bridge +tar,*rock**,MadeOf,0.8,Both tar and diamond can be found in or associated with rocks.,llm_bridge +*rock**,diamond,MadeOf,0.8,Both tar and diamond can be found in or associated with rocks.,llm_bridge +tar,*stone**,MadeOf,0.8,"Tar is sometimes found in stone formations, while diamond is a type of stone.",llm_bridge +*stone**,diamond,MadeOf,0.8,"Tar is sometimes found in stone formations, while diamond is a type of stone.",llm_bridge +tar,*mineral**,MadeOf,0.8,"Tar is derived from mineral deposits, and diamonds are a type of mineral.",llm_bridge +*mineral**,diamond,MadeOf,0.8,"Tar is derived from mineral deposits, and diamonds are a type of mineral.",llm_bridge +swift,wing,PartOf,0.8,both birds have wings,llm_bridge +wing,parakeet,PartOf,0.8,both birds have wings,llm_bridge +swift,cage,AtLocation,0.8,both birds can be kept in cages,llm_bridge +cage,parakeet,AtLocation,0.8,both birds can be kept in cages,llm_bridge +swift,nest,AtLocation,0.8,both birds build or use nests,llm_bridge +nest,parakeet,AtLocation,0.8,both birds build or use nests,llm_bridge +wing,magpie,PartOf,0.8,wings are part of both birds,llm_bridge +swift,nest,HasA,0.8,both birds have nests,llm_bridge +nest,magpie,HasA,0.8,both birds have nests,llm_bridge +swift,feather,PartOf,0.8,feathers are part of both birds,llm_bridge +feather,magpie,PartOf,0.8,feathers are part of both birds,llm_bridge +swift,feather,HasA,0.8,birds both have feathers,llm_bridge +feather,waxwing,HasA,0.8,birds both have feathers,llm_bridge +swift,wing,HasA,0.8,birds both have wings,llm_bridge +wing,waxwing,HasA,0.8,birds both have wings,llm_bridge +swift,bird,PartOf,0.8,both are types of birds,llm_bridge +bird,waxwing,PartOf,0.8,both are types of birds,llm_bridge +wing,curassow,HasA,0.8,both birds have wings for flying,llm_bridge +feather,curassow,HasA,0.8,both birds have feathers for flight and insulation,llm_bridge +swift,egg,CapableOf,0.8,both birds lay eggs as part of their reproduction,llm_bridge +egg,curassow,CapableOf,0.8,both birds lay eggs as part of their reproduction,llm_bridge +nest,cuckoo,HasA,0.8,nests are common structures for both swifts and cuckoos to lay eggs in,llm_bridge +swift,egg,HasA,0.8,both swifts and cuckoos lay eggs,llm_bridge +egg,cuckoo,HasA,0.8,both swifts and cuckoos lay eggs,llm_bridge +wing,cuckoo,HasA,0.8,both swifts and cuckoos have wings for flight,llm_bridge +swift,*wing**,PartOf,0.8,Both swifts and swans have wings as part of their anatomy.,llm_bridge +*wing**,swan,PartOf,0.8,Both swifts and swans have wings as part of their anatomy.,llm_bridge +swift,*water**,AtLocation,0.8,"Swifts often fly over water, and swans live near or in water.",llm_bridge +*water**,swan,AtLocation,0.8,"Swifts often fly over water, and swans live near or in water.",llm_bridge +swift,*bird**,PartOf,0.8,Both swifts and swans are types of birds.,llm_bridge +*bird**,swan,PartOf,0.8,Both swifts and swans are types of birds.,llm_bridge +swift,*wing**,HasA,0.8,Both swifts and rheas have wings as part of their anatomy.,llm_bridge +*wing**,rhea,HasA,0.8,Both swifts and rheas have wings as part of their anatomy.,llm_bridge +swift,*egg**,CapableOf,0.8,Both swifts and rheas are capable of laying eggs.,llm_bridge +*egg**,rhea,CapableOf,0.8,Both swifts and rheas are capable of laying eggs.,llm_bridge +swift,*nest**,UsedFor,0.8,Both swifts and rheas use nests for raising their young.,llm_bridge +*nest**,rhea,UsedFor,0.8,Both swifts and rheas use nests for raising their young.,llm_bridge +wing,canary,HasA,0.8,wings are common anatomical features of both birds,llm_bridge +feather,canary,HasA,0.8,feathers are common characteristics of both birds,llm_bridge +nest,canary,HasA,0.8,nests are common structures both birds build,llm_bridge +wing,cock,PartOf,0.8,wings are parts of both swifts and roosters,llm_bridge +feather,cock,HasA,0.8,both birds have feathers,llm_bridge +nest,cock,HasA,0.8,both birds make or use nests,llm_bridge +swift,bridge_word:_wings,HasA,0.8,"explanation: Both swifts and buzzards have wings, which are essential for flight.",llm_bridge +bridge_word:_wings,buzzard,HasA,0.8,"explanation: Both swifts and buzzards have wings, which are essential for flight.",llm_bridge +swift,bridge_word:_feathers,HasA,0.8,"explanation: Both swifts and buzzards have feathers, which are characteristic features of birds.",llm_bridge +bridge_word:_feathers,buzzard,HasA,0.8,"explanation: Both swifts and buzzards have feathers, which are characteristic features of birds.",llm_bridge +swift,bridge_word:_nest,HasA,0.8,explanation: Both swifts and buzzards build and live in nests as part of their natural habitat.,llm_bridge +bridge_word:_nest,buzzard,HasA,0.8,explanation: Both swifts and buzzards build and live in nests as part of their natural habitat.,llm_bridge +finch,pigeon,HasProperty,0.8,both are types of birds,llm_bridge +pigeon,falcon,HasProperty,0.8,both are types of birds,llm_bridge +finch,wing,HasA,0.8,both birds have wings for flight/swimming,llm_bridge +wing,grebe,HasA,0.8,both birds have wings for flight/swimming,llm_bridge +finch,feather,HasA,0.8,both birds have feathers for insulation and flight/swimming,llm_bridge +feather,grebe,HasA,0.8,both birds have feathers for insulation and flight/swimming,llm_bridge +finch,water,AtLocation,0.8,both birds can be found near or in water,llm_bridge +water,grebe,AtLocation,0.8,both birds can be found near or in water,llm_bridge +finch,bird,PartOf,0.8,Both finches and kestrels are types of birds.,llm_bridge +bird,kestrel,PartOf,0.8,Both finches and kestrels are types of birds.,llm_bridge +feather,kestrel,HasA,0.8,Both finches and kestrels have feathers.,llm_bridge +finch,nest,HasA,0.8,Both finches and kestrels build or use nests.,llm_bridge +nest,kestrel,HasA,0.8,Both finches and kestrels build or use nests.,llm_bridge +nest,warbler,HasA,0.8,Both finches and warblers have nests.,llm_bridge +finch,song,HasA,0.8,Both finches and warblers have songs.,llm_bridge +song,warbler,HasA,0.8,Both finches and warblers have songs.,llm_bridge +finch,insect,UsedFor,0.8,Both finches and warblers eat insects.,llm_bridge +insect,warbler,UsedFor,0.8,Both finches and warblers eat insects.,llm_bridge +finch,bridge_word:_bird,HasA,0.8,explanation: Both finch and nightingale are types of birds.,llm_bridge +bridge_word:_bird,nightingale,HasA,0.8,explanation: Both finch and nightingale are types of birds.,llm_bridge +nest,dove,HasA,0.8,Both finches and doves have nests.,llm_bridge +wing,dove,HasA,0.8,Both finches and doves have wings.,llm_bridge +finch,seed,UsedFor,0.8,Both finches and doves eat seeds.,llm_bridge +seed,dove,UsedFor,0.8,Both finches and doves eat seeds.,llm_bridge +finch,beak,HasA,0.8,Both birds have distinctive beaks.,llm_bridge +beak,toucan,HasA,0.8,Both birds have distinctive beaks.,llm_bridge +feather,toucan,HasA,0.8,Both birds have feathers.,llm_bridge +finch,nest,UsedFor,0.8,Both birds use nests for dwelling.,llm_bridge +nest,toucan,UsedFor,0.8,Both birds use nests for dwelling.,llm_bridge +nest,cotinga,HasA,0.8,finches and cotingas both have nests where they lay eggs and raise young.,llm_bridge +feather,cotinga,HasA,0.8,finches and cotingas both have feathers covering their bodies.,llm_bridge +wing,cotinga,HasA,0.8,finches and cotingas both have wings used for flight.,llm_bridge +finch,bridge_word:_bird,PartOf,0.8,finches and flycatchers are both types of birds,llm_bridge +bridge_word:_bird,flycatcher,PartOf,0.8,finches and flycatchers are both types of birds,llm_bridge +finch,bridge_word:_beak,HasA,0.8,both finches and flycatchers have beaks,llm_bridge +bridge_word:_beak,flycatcher,HasA,0.8,both finches and flycatchers have beaks,llm_bridge +finch,bridge_word:_insect,UsedFor,0.8,both finches and flycatchers eat insects,llm_bridge +bridge_word:_insect,flycatcher,UsedFor,0.8,both finches and flycatchers eat insects,llm_bridge +finch,nests,HasA,0.8,both birds have nests,llm_bridge +nests,swift,HasA,0.8,both birds have nests,llm_bridge +duplex,apartment,PartOf,0.8,apartments are common features in both duplexes and galleries.,llm_bridge +apartment,gallery,PartOf,0.8,apartments are common features in both duplexes and galleries.,llm_bridge +duplex,window,HasA,0.8,both duplexes and galleries typically have windows.,llm_bridge +window,gallery,HasA,0.8,both duplexes and galleries typically have windows.,llm_bridge +duplex,art,UsedFor,0.8,"a duplex can be used for housing art (e.g., in a home gallery), and a gallery desires to display art.",llm_bridge +art,gallery,Desires,0.8,"a duplex can be used for housing art (e.g., in a home gallery), and a gallery desires to display art.",llm_bridge +duplex,house,PartOf,0.8,Both are types of buildings that provide housing or protection.,llm_bridge +house,shelter,HasProperty,0.8,Both are types of buildings that provide housing or protection.,llm_bridge +duplex,roof,HasA,0.8,Both are buildings that typically have a roof for protection.,llm_bridge +roof,shelter,HasA,0.8,Both are buildings that typically have a roof for protection.,llm_bridge +duplex,wall,HasA,0.8,Both are buildings that have walls as structural components.,llm_bridge +wall,shelter,HasA,0.8,Both are buildings that have walls as structural components.,llm_bridge +duplex,*floor**,PartOf,0.8,A floor is a component of both a duplex and a gymnasium.,llm_bridge +*floor**,gymnasium,PartOf,0.8,A floor is a component of both a duplex and a gymnasium.,llm_bridge +duplex,*door**,PartOf,0.8,"A door is a component of both a duplex and a gymnasium, used for entry/exit.",llm_bridge +*door**,gymnasium,PartOf,0.8,"A door is a component of both a duplex and a gymnasium, used for entry/exit.",llm_bridge +duplex,*wall**,PartOf,0.8,"A wall is a component of both a duplex and a gymnasium, providing structure.",llm_bridge +*wall**,gymnasium,PartOf,0.8,"A wall is a component of both a duplex and a gymnasium, providing structure.",llm_bridge +house,apartment,PartOf,0.8,both are types of residential buildings,llm_bridge +duplex,building,PartOf,0.8,both are types of residential buildings,llm_bridge +building,apartment,PartOf,0.8,both are types of residential buildings,llm_bridge +duplex,residence,PartOf,0.8,both are types of residential buildings,llm_bridge +residence,apartment,PartOf,0.8,both are types of residential buildings,llm_bridge +duplex,bridge_word:_door,PartOf,0.8,explanation: Both a duplex and a church have doors as part of their structure.,llm_bridge +bridge_word:_door,church,PartOf,0.8,explanation: Both a duplex and a church have doors as part of their structure.,llm_bridge +duplex,bridge_word:_roof,PartOf,0.8,explanation: Both a duplex and a church have roofs as part of their structure.,llm_bridge +bridge_word:_roof,church,PartOf,0.8,explanation: Both a duplex and a church have roofs as part of their structure.,llm_bridge +duplex,bridge_word:_window,PartOf,0.8,explanation: Both a duplex and a church have windows as part of their structure.,llm_bridge +bridge_word:_window,church,PartOf,0.8,explanation: Both a duplex and a church have windows as part of their structure.,llm_bridge +duplex,wall,PartOf,0.8,both buildings have walls as structural components,llm_bridge +wall,greenhouse,PartOf,0.8,both buildings have walls as structural components,llm_bridge +window,greenhouse,HasA,0.8,both buildings commonly feature windows for light/sight,llm_bridge +duplex,door,HasA,0.8,both buildings have doors as entry/exit points,llm_bridge +door,greenhouse,HasA,0.8,both buildings have doors as entry/exit points,llm_bridge +window,school,HasA,0.8,windows are common features in both buildings,llm_bridge +door,school,HasA,0.8,doors are common features in both buildings,llm_bridge +duplex,classroom,PartOf,0.8,classrooms can be found in a school and sometimes in a duplex (if used as a multi-family home with shared spaces),llm_bridge +classroom,school,PartOf,0.8,classrooms can be found in a school and sometimes in a duplex (if used as a multi-family home with shared spaces),llm_bridge +duplex,*stairs**,HasA,0.8,Both buildings commonly have stairs for movement between floors.,llm_bridge +*stairs**,library,HasA,0.8,Both buildings commonly have stairs for movement between floors.,llm_bridge +duplex,*books**,AtLocation,0.8,"Books can be found inside a library, and may also be found in a duplex (e.g., a home library).",llm_bridge +*books**,library,HasA,0.8,"Books can be found inside a library, and may also be found in a duplex (e.g., a home library).",llm_bridge +duplex,*person**,AtLocation,0.8,People live in a duplex and visit a library.,llm_bridge +*person**,library,AtLocation,0.8,People live in a duplex and visit a library.,llm_bridge +duplex,*bridge_1:**_apartment,PartOf,0.8,"An apartment can be part of a duplex, and a mall may have apartments within it.",llm_bridge +*bridge_1:**_apartment,mall,HasA,0.8,"An apartment can be part of a duplex, and a mall may have apartments within it.",llm_bridge +duplex,*bridge_2:**_store,ReceivesAction,0.8,"A duplex can have stores inside it, and a mall is known for having stores.",llm_bridge +*bridge_2:**_store,mall,HasA,0.8,"A duplex can have stores inside it, and a mall is known for having stores.",llm_bridge +duplex,*bridge_3:**_window,HasA,0.8,Both a duplex and a mall commonly have windows.,llm_bridge +*bridge_3:**_window,mall,HasA,0.8,Both a duplex and a mall commonly have windows.,llm_bridge +duplex,bridge_word:_apartment,PartOf,0.8,explanation: An apartment is a part of both a duplex and can be part of a larger house structure.,llm_bridge +bridge_word:_apartment,house,PartOf,0.8,explanation: An apartment is a part of both a duplex and can be part of a larger house structure.,llm_bridge +duplex,bridge_word:_window,HasA,0.8,explanation: Both a duplex and a house have windows as part of their structure.,llm_bridge +bridge_word:_window,house,HasA,0.8,explanation: Both a duplex and a house have windows as part of their structure.,llm_bridge +duplex,bridge_word:_door,HasA,0.8,explanation: Both a duplex and a house have doors as part of their structure.,llm_bridge +bridge_word:_door,house,HasA,0.8,explanation: Both a duplex and a house have doors as part of their structure.,llm_bridge +mandolin,bridge_word:_music,UsedFor,0.8,Both instruments are used for creating music.,llm_bridge +bridge_word:_music,xylophone,UsedFor,0.8,Both instruments are used for creating music.,llm_bridge +mandolin,bridge_word:_sound,CapableOf,0.8,Both instruments can produce sound.,llm_bridge +bridge_word:_sound,xylophone,CapableOf,0.8,Both instruments can produce sound.,llm_bridge +mandolin,bridge_word:_musician,UsedFor,0.8,Both instruments are used by musicians.,llm_bridge +bridge_word:_musician,xylophone,UsedFor,0.8,Both instruments are used by musicians.,llm_bridge +music,clarinet,UsedFor,0.8,Both instruments are used to create music.,llm_bridge +mandolin,musician,CapableOf,0.8,A musician can play both the mandolin and clarinet.,llm_bridge +musician,clarinet,CapableOf,0.8,A musician can play both the mandolin and clarinet.,llm_bridge +mandolin,orchestra,AtLocation,0.8,Both instruments can be found in an orchestra.,llm_bridge +orchestra,clarinet,AtLocation,0.8,Both instruments can be found in an orchestra.,llm_bridge +music,barometer,UsedFor,0.8,music is both used for playing the mandolin and measuring atmospheric pressure (indirectly related to music performance conditions),llm_bridge +mandolin,concert,AtLocation,0.8,both instruments could be present at a concert setting,llm_bridge +concert,barometer,AtLocation,0.8,both instruments could be present at a concert setting,llm_bridge +tuning,barometer,UsedFor,0.8,"tuning is used for adjusting both instruments (mandolin for pitch, barometer for calibration)",llm_bridge +music,lyre,UsedFor,0.8,music connects both instruments as they are used to create it,llm_bridge +mandolin,musician,UsedFor,0.8,musician connects both instruments as they are played by them,llm_bridge +musician,lyre,UsedFor,0.8,musician connects both instruments as they are played by them,llm_bridge +mandolin,string,PartOf,0.8,string connects both instruments as they are both string instruments,llm_bridge +string,lyre,PartOf,0.8,string connects both instruments as they are both string instruments,llm_bridge +mandolin,bridge_word:_string,PartOf,0.8,Both mandolin and cello have strings as a fundamental part of their construction and sound production.,llm_bridge +bridge_word:_string,cello,PartOf,0.8,Both mandolin and cello have strings as a fundamental part of their construction and sound production.,llm_bridge +bridge_word:_music,cello,UsedFor,0.8,Both mandolin and cello can be used to play music.,llm_bridge +mandolin,bridge_word:_musician,CapableOf,0.8,A musician can play both a mandolin and a cello.,llm_bridge +bridge_word:_musician,cello,CapableOf,0.8,A musician can play both a mandolin and a cello.,llm_bridge +mandolin,measure,UsedFor,0.8,"Both a mandolin and a caliper can be used for measuring, either musical pitch or physical dimensions.",llm_bridge +measure,caliper,UsedFor,0.8,"Both a mandolin and a caliper can be used for measuring, either musical pitch or physical dimensions.",llm_bridge +music,harp,UsedFor,0.8,music is played on both instruments,llm_bridge +string,harp,PartOf,0.8,strings are components of both instruments,llm_bridge +musician,harp,CapableOf,0.8,a musician can play both instruments,llm_bridge +music,piano,UsedFor,0.8,music is created and played with both instruments,llm_bridge +string,piano,MadeOf,0.8,string is a component or material in both instruments,llm_bridge +mandolin,note,UsedFor,0.8,notes are the sound units produced by both instruments,llm_bridge +note,piano,UsedFor,0.8,notes are the sound units produced by both instruments,llm_bridge +music,triangle,UsedFor,0.8,both are used for producing music,llm_bridge +string,triangle,PartOf,0.8,"both can have strings (mandolin has many, triangle might have one for carrying)",llm_bridge +mandolin,sound,HasProperty,0.8,both produce sound,llm_bridge +sound,triangle,HasProperty,0.8,both produce sound,llm_bridge +string,micrometer,PartOf,0.8,"Explanation: Both a mandolin and a micrometer can have strings (though in different contexts, a micrometer's ""string"" refers to a thin wire or similar component).",llm_bridge +mandolin,measurement,UsedFor,0.8,"Explanation: A mandolin is used for measuring musical expression (indirectly), while a micrometer is used for precise physical measurement.",llm_bridge +measurement,micrometer,UsedFor,0.8,"Explanation: A mandolin is used for measuring musical expression (indirectly), while a micrometer is used for precise physical measurement.",llm_bridge +mandolin,calibration,UsedFor,0.8,"Explanation: A mandolin might need calibration for tuning, while a micrometer is used for calibration of measurements.",llm_bridge +calibration,micrometer,UsedFor,0.8,"Explanation: A mandolin might need calibration for tuning, while a micrometer is used for calibration of measurements.",llm_bridge +burger,*bridge_word:_plate**,AtLocation,0.8,A plate is a common location where both a burger and a slug (if served as food) might be placed.,llm_bridge +*bridge_word:_plate**,slug,AtLocation,0.8,A plate is a common location where both a burger and a slug (if served as food) might be placed.,llm_bridge +burger,*bridge_word:_food**,HasA,0.8,Both a burger and a slug can be categorized as types of food.,llm_bridge +*bridge_word:_food**,slug,HasA,0.8,Both a burger and a slug can be categorized as types of food.,llm_bridge +burger,*bridge_word:_eat**,ReceivesAction,0.8,Both a burger and a slug can be the object of the action of eating.,llm_bridge +*bridge_word:_eat**,slug,ReceivesAction,0.8,Both a burger and a slug can be the object of the action of eating.,llm_bridge +burger,restaurant,AtLocation,0.8,restaurants serve both burgers and salmon,llm_bridge +restaurant,salmon,AtLocation,0.8,restaurants serve both burgers and salmon,llm_bridge +burger,ingredient,MadeOf,0.8,burgers and salmon are ingredients in dishes,llm_bridge +ingredient,salmon,MadeOf,0.8,burgers and salmon are ingredients in dishes,llm_bridge +burger,fish,PartOf,0.8,fish can be part of a burger (taco-style) and salmon is a type of fish,llm_bridge +fish,salmon,PartOf,0.8,fish can be part of a burger (taco-style) and salmon is a type of fish,llm_bridge +burger,plate,AtLocation,0.8,both are served on a plate,llm_bridge +plate,salad,AtLocation,0.8,both are served on a plate,llm_bridge +restaurant,salad,AtLocation,0.8,both are served in a restaurant,llm_bridge +burger,food,HasA,0.8,both are types of food,llm_bridge +food,salad,HasA,0.8,both are types of food,llm_bridge +burger,*plate**,AtLocation,0.8,both foods can be found on a plate when served together.,llm_bridge +*plate**,cornbread,AtLocation,0.8,both foods can be found on a plate when served together.,llm_bridge +burger,*meal**,PartOf,0.8,both are components of a larger meal.,llm_bridge +*meal**,cornbread,PartOf,0.8,both are components of a larger meal.,llm_bridge +burger,*restaurant**,AtLocation,0.8,both are commonly served at a restaurant.,llm_bridge +*restaurant**,cornbread,AtLocation,0.8,both are commonly served at a restaurant.,llm_bridge +restaurant,pizza,AtLocation,0.8,both are commonly found in restaurants,llm_bridge +burger,plate,UsedFor,0.8,burgers and pizzas are both served on plates,llm_bridge +plate,pizza,UsedFor,0.8,burgers and pizzas are both served on plates,llm_bridge +plate,banana,AtLocation,0.8,a plate is where both a burger and a banana might be served,llm_bridge +burger,meal,PartOf,0.8,both a burger and a banana can be part of a meal,llm_bridge +meal,banana,PartOf,0.8,both a burger and a banana can be part of a meal,llm_bridge +plate,gnocchi,AtLocation,0.8,both are commonly served on a plate,llm_bridge +burger,fork,UsedFor,0.8,both can be eaten with a fork,llm_bridge +fork,gnocchi,UsedFor,0.8,both can be eaten with a fork,llm_bridge +restaurant,gnocchi,AtLocation,0.8,both are often found in a restaurant,llm_bridge +burger,salad,HasA,0.8,"A burger can include lettuce (a vegetable) as part of a salad topping, and vegetables are key ingredients in salads.",llm_bridge +salad,vegetable,PartOf,0.8,"A burger can include lettuce (a vegetable) as part of a salad topping, and vegetables are key ingredients in salads.",llm_bridge +burger,sandwich,PartOf,0.8,"A burger is a type of sandwich, and sandwiches often contain vegetables.",llm_bridge +sandwich,vegetable,HasA,0.8,"A burger is a type of sandwich, and sandwiches often contain vegetables.",llm_bridge +burger,lettuce,HasA,0.8,"Lettuce is a common vegetable found in burgers, and it is a type of vegetable.",llm_bridge +lettuce,vegetable,PartOf,0.8,"Lettuce is a common vegetable found in burgers, and it is a type of vegetable.",llm_bridge +restaurant,lobster,AtLocation,0.8,restaurants commonly serve both burgers and lobster,llm_bridge +plate,lobster,AtLocation,0.8,plates are used to serve both burgers and lobster,llm_bridge +burger,platter,AtLocation,0.8,platters are used to serve both burgers and lobster,llm_bridge +platter,lobster,AtLocation,0.8,platters are used to serve both burgers and lobster,llm_bridge +burger,meat,MadeOf,0.8,meat is part of a burger and contains fat,llm_bridge +meat,fat,HasA,0.8,meat is part of a burger and contains fat,llm_bridge +burger,grease,MadeOf,0.8,grease comes from cooking a burger and is a type of fat,llm_bridge +grease,fat,HasA,0.8,grease comes from cooking a burger and is a type of fat,llm_bridge +burger,grease,HasA,0.8,grease is a byproduct of cooking a burger and is a type of fat,llm_bridge +revolver,weapon,HasA,0.8,Both a revolver and a rifle are types of weapons.,llm_bridge +weapon,rifle,HasA,0.8,Both a revolver and a rifle are types of weapons.,llm_bridge +revolver,ammunition,HasA,0.8,Both a revolver and a rifle require ammunition to fire.,llm_bridge +ammunition,rifle,HasA,0.8,Both a revolver and a rifle require ammunition to fire.,llm_bridge +revolver,soldier,UsedFor,0.8,Both a revolver and a rifle are used by soldiers.,llm_bridge +soldier,rifle,UsedFor,0.8,Both a revolver and a rifle are used by soldiers.,llm_bridge +revolver,gun,PartOf,0.8,Both are types of firearms.,llm_bridge +gun,shotgun,PartOf,0.8,Both are types of firearms.,llm_bridge +revolver,bullet,UsedFor,0.8,Both weapons use bullets (though types differ).,llm_bridge +bullet,shotgun,UsedFor,0.8,Both weapons use bullets (though types differ).,llm_bridge +revolver,hunter,UsedFor,0.8,Both are used by hunters.,llm_bridge +hunter,shotgun,UsedFor,0.8,Both are used by hunters.,llm_bridge +revolver,ball,HasA,0.8,"explanation: A revolver contains balls (bullets), and a cannon can fire balls (rounds).",llm_bridge +ball,cannon,HasA,0.8,"explanation: A revolver contains balls (bullets), and a cannon can fire balls (rounds).",llm_bridge +revolver,powder,MadeOf,0.8,explanation: Gunpowder is a component used in both revolvers and cannons.,llm_bridge +powder,cannon,MadeOf,0.8,explanation: Gunpowder is a component used in both revolvers and cannons.,llm_bridge +revolver,soldier,CapableOf,0.8,explanation: A soldier uses both a revolver and a cannon.,llm_bridge +soldier,cannon,CapableOf,0.8,explanation: A soldier uses both a revolver and a cannon.,llm_bridge +revolver,bridge_word:_bullet,PartOf,0.8,bullets are part of a revolver and can be used with a spear (as ammunition or projectile),llm_bridge +bridge_word:_bullet,spear,UsedFor,0.8,bullets are part of a revolver and can be used with a spear (as ammunition or projectile),llm_bridge +revolver,bridge_word:_weapon,PartOf,0.8,both revolver and spear are parts of the category weapon,llm_bridge +bridge_word:_weapon,spear,PartOf,0.8,both revolver and spear are parts of the category weapon,llm_bridge +revolver,bridge_word:_hunter,UsedFor,0.8,hunters use both revolvers and spears,llm_bridge +bridge_word:_hunter,spear,UsedFor,0.8,hunters use both revolvers and spears,llm_bridge +revolver,bullet,HasA,0.8,Both a revolver and a canon use bullets as ammunition.,llm_bridge +bullet,canon,HasA,0.8,Both a revolver and a canon use bullets as ammunition.,llm_bridge +revolver,gunpowder,MadeOf,0.8,Both a revolver and a canon use gunpowder to propel projectiles.,llm_bridge +gunpowder,canon,MadeOf,0.8,Both a revolver and a canon use gunpowder to propel projectiles.,llm_bridge +revolver,explosion,Causes,0.8,Both a revolver and a canon cause an explosion when fired to discharge a projectile.,llm_bridge +explosion,canon,Causes,0.8,Both a revolver and a canon cause an explosion when fired to discharge a projectile.,llm_bridge +gun,tank,HasA,0.8,"gun is part of revolver, and tank has guns",llm_bridge +bullet,tank,UsedFor,0.8,bullets are used by both for firing,llm_bridge +revolver,ammo,HasPrerequisite,0.8,ammo is needed for revolver and stored in tank,llm_bridge +ammo,tank,HasA,0.8,ammo is needed for revolver and stored in tank,llm_bridge +revolver,trigger,PartOf,0.8,the trigger connects as part of the revolver's mechanism and the tool used to fire it,llm_bridge +trigger,hammer,UsedFor,0.8,the trigger connects as part of the revolver's mechanism and the tool used to fire it,llm_bridge +revolver,gunsmith,CapableOf,0.8,a gunsmith relates to both the revolver (can repair it) and hammer (can use it in crafting),llm_bridge +gunsmith,hammer,CapableOf,0.8,a gunsmith relates to both the revolver (can repair it) and hammer (can use it in crafting),llm_bridge +bullet,hammer,UsedFor,0.8,a bullet connects as part of the revolver's ammunition and what the hammer might strike,llm_bridge +revolver,sword,UsedFor,0.8,sword can be used with a revolver for dueling and some swords have a blade as a part,llm_bridge +sword,blade,PartOf,0.8,sword can be used with a revolver for dueling and some swords have a blade as a part,llm_bridge +revolver,bullet,MadeOf,0.8,bullets are components of revolvers and used with mace for ammunition.,llm_bridge +bullet,mace,UsedFor,0.8,bullets are components of revolvers and used with mace for ammunition.,llm_bridge +revolver,ammunition,MadeOf,0.8,ammunition is part of a revolver and used for mace as a projectile.,llm_bridge +ammunition,mace,UsedFor,0.8,ammunition is part of a revolver and used for mace as a projectile.,llm_bridge +revolver,weapon,PartOf,0.8,both revolver and mace are types of weapons.,llm_bridge +weapon,mace,PartOf,0.8,both revolver and mace are types of weapons.,llm_bridge +revolver,pistol,HasA,0.8,"a revolver is a type of pistol, and a pistol is a type of gun.",llm_bridge +pistol,gun,HasA,0.8,"a revolver is a type of pistol, and a pistol is a type of gun.",llm_bridge +bullet,gun,HasA,0.8,both a revolver and a gun use bullets.,llm_bridge +zebra,meat,PartOf,0.8,"zebra is part of meat, meat is made of fat",llm_bridge +zebra,hoof,HasA,0.8,"Both are parts of animals, with hoof being an animal part and claw being part of certain animals.",llm_bridge +hoof,claw,PartOf,0.8,"Both are parts of animals, with hoof being an animal part and claw being part of certain animals.",llm_bridge +zebra,foot,PartOf,0.8,"Both are parts of the lower extremities of animals, with foot being part of a zebra and claw being part of an animal's foot.",llm_bridge +foot,claw,PartOf,0.8,"Both are parts of the lower extremities of animals, with foot being part of a zebra and claw being part of an animal's foot.",llm_bridge +zebra,bridge_word_1:_**animal**,PartOf,0.8,both zebra and cassowary are types of animals.,llm_bridge +bridge_word_1:_**animal**,cassowary,PartOf,0.8,both zebra and cassowary are types of animals.,llm_bridge +zebra,bridge_word_2:_**habitat**,AtLocation,0.8,both zebra and cassowary live in specific habitats.,llm_bridge +bridge_word_2:_**habitat**,cassowary,AtLocation,0.8,both zebra and cassowary live in specific habitats.,llm_bridge +zebra,bridge_word_3:_**diet**,HasA,0.8,both zebra and cassowary have specific dietary habits.,llm_bridge +bridge_word_3:_**diet**,cassowary,HasA,0.8,both zebra and cassowary have specific dietary habits.,llm_bridge +zebra,*habitat**,AtLocation,0.8,"Both animals live in specific habitats, such as savannas or deserts.",llm_bridge +*habitat**,tortoise,AtLocation,0.8,"Both animals live in specific habitats, such as savannas or deserts.",llm_bridge +zebra,*food**,UsedFor,0.8,Both animals consume food like grasses and plants for survival.,llm_bridge +*food**,tortoise,UsedFor,0.8,Both animals consume food like grasses and plants for survival.,llm_bridge +zebra,*animal**,PartOf,0.8,Both zebra and tortoise belong to the animal kingdom.,llm_bridge +*animal**,tortoise,PartOf,0.8,Both zebra and tortoise belong to the animal kingdom.,llm_bridge +zebra,grass,UsedFor,0.8,both zebras and geese eat grass.,llm_bridge +grass,goose,UsedFor,0.8,both zebras and geese eat grass.,llm_bridge +zebra,animal,HasA,0.8,both zebras and geese are animals.,llm_bridge +animal,goose,HasA,0.8,both zebras and geese are animals.,llm_bridge +zebra,field,AtLocation,0.8,both zebras and geese can be found in fields.,llm_bridge +field,goose,AtLocation,0.8,both zebras and geese can be found in fields.,llm_bridge +zebra,horse,PartOf,0.8,"Both zebras and flocks (especially flocks of horses) are part of the broader category of animals, often grouped with horses.",llm_bridge +horse,flock,PartOf,0.8,"Both zebras and flocks (especially flocks of horses) are part of the broader category of animals, often grouped with horses.",llm_bridge +field,flock,AtLocation,0.8,"Zebras are often found in fields (like savannas), and flocks (like sheep or goats) are also kept in fields.",llm_bridge +zebra,grass,HasA,0.8,"Zebras have grass as part of their diet (HasA relationship), and flocks like sheep also have grass as part of their diet (HasA relationship).",llm_bridge +grass,flock,HasA,0.8,"Zebras have grass as part of their diet (HasA relationship), and flocks like sheep also have grass as part of their diet (HasA relationship).",llm_bridge +zebra,stripes,HasProperty,0.8,both zebra and centipede have stripes,llm_bridge +stripes,centipede,HasProperty,0.8,both zebra and centipede have stripes,llm_bridge +zebra,legs,PartOf,0.8,both zebra and centipede have legs,llm_bridge +legs,centipede,PartOf,0.8,both zebra and centipede have legs,llm_bridge +zebra,body,PartOf,0.8,both zebra and centipede have bodies,llm_bridge +body,centipede,PartOf,0.8,both zebra and centipede have bodies,llm_bridge +zebra,,HasA,0.8,Both animals have fur.,llm_bridge +,puppy,HasA,0.8,Both animals have fur.,llm_bridge +zebra,,PartOf,0.8,Both zebra and puppy are types of animals.,llm_bridge +,puppy,PartOf,0.8,Both zebra and puppy are types of animals.,llm_bridge +zebra,habitat,AtLocation,0.8,both animals live in specific habitats,llm_bridge +habitat,gorilla,AtLocation,0.8,both animals live in specific habitats,llm_bridge +zoo,gorilla,AtLocation,0.8,both animals are often kept in zoos,llm_bridge +zebra,food,UsedFor,0.8,both animals require food for survival,llm_bridge +food,gorilla,UsedFor,0.8,both animals require food for survival,llm_bridge +earthworm,soil,AtLocation,0.8,Both earthworms and claws (on animals like moles or badgers) are commonly found in or near soil.,llm_bridge +soil,claw,AtLocation,0.8,Both earthworms and claws (on animals like moles or badgers) are commonly found in or near soil.,llm_bridge +earthworm,dig,CapableOf,0.8,"Earthworms are capable of burrowing in soil, and claws are used for digging by other animals.",llm_bridge +dig,claw,UsedFor,0.8,"Earthworms are capable of burrowing in soil, and claws are used for digging by other animals.",llm_bridge +soil,bone,MadeOf,0.8,"earthworms live in soil, and bone material can come from the earth (soil)",llm_bridge +earthworm,animal,PartOf,0.8,"earthworms are animals, and bones are parts of animals",llm_bridge +animal,bone,PartOf,0.8,"earthworms are animals, and bones are parts of animals",llm_bridge +dig,bone,UsedFor,0.8,"earthworms dig, and bones can be used for digging",llm_bridge +soil,fish,UsedFor,0.8,"earthworm lives in soil, which is used for fishing (as bait)",llm_bridge +earthworm,bait,HasA,0.8,"earthworm can be used as bait, which is used for fishing",llm_bridge +bait,fish,UsedFor,0.8,"earthworm can be used as bait, which is used for fishing",llm_bridge +bait,fish,HasA,0.8,"earthworm is a type of bait, and fish are caught using bait",llm_bridge +earthworm,*soil**,PartOf,0.8,"earthworms are part of soil ecosystems, and geese sometimes forage in soil-rich areas.",llm_bridge +*soil**,goose,AtLocation,0.8,"earthworms are part of soil ecosystems, and geese sometimes forage in soil-rich areas.",llm_bridge +earthworm,*farm**,AtLocation,0.8,"both earthworms and geese can be found in farm environments, where geese might hunt earthworms.",llm_bridge +*farm**,goose,AtLocation,0.8,"both earthworms and geese can be found in farm environments, where geese might hunt earthworms.",llm_bridge +soil,bull,AtLocation,0.8,"earthworm lives in soil, bull grazes on soil",llm_bridge +earthworm,ground,AtLocation,0.8,"earthworm lives in the ground, bull walks on the ground",llm_bridge +ground,bull,AtLocation,0.8,"earthworm lives in the ground, bull walks on the ground",llm_bridge +earthworm,dirt,AtLocation,0.8,"earthworm lives in dirt, bull may stand or walk on dirt",llm_bridge +dirt,bull,AtLocation,0.8,"earthworm lives in dirt, bull may stand or walk on dirt",llm_bridge +dirt,chimpanzee,AtLocation,0.8,Both earthworms and chimpanzees are often found in or near dirt.,llm_bridge +soil,chimpanzee,AtLocation,0.8,Both earthworms and chimpanzees can be found in soil.,llm_bridge +earthworm,food,UsedFor,0.8,Both earthworms (as prey) and chimpanzees (as predators) are involved in food chains.,llm_bridge +food,chimpanzee,UsedFor,0.8,Both earthworms (as prey) and chimpanzees (as predators) are involved in food chains.,llm_bridge +soil,snail,AtLocation,0.8,"earthworms live in soil, snails are often found in soil",llm_bridge +earthworm,garden,AtLocation,0.8,both earthworms and snails are commonly found in gardens,llm_bridge +earthworm,leaf,HasA,0.8,"earthworms live in soil that contains leaves, snails may eat leaves",llm_bridge +leaf,snail,HasA,0.8,"earthworms live in soil that contains leaves, snails may eat leaves",llm_bridge +soil,deer,AtLocation,0.8,"earthworms live in soil, deer graze near soil",llm_bridge +earthworm,grass,AtLocation,0.8,"earthworms live near grass, deer eats grass",llm_bridge +grass,deer,CapableOf,0.8,"earthworms live near grass, deer eats grass",llm_bridge +garden,deer,AtLocation,0.8,"earthworms live in gardens, deer visit gardens",llm_bridge +dirt,worm,AtLocation,0.8,"earthworm lives in dirt, and worms (including earthworms) are found in dirt",llm_bridge +earthworm,hole,PartOf,0.8,"earthworm creates part of a hole, and worms (including earthworms) create holes",llm_bridge +hole,worm,PartOf,0.8,"earthworm creates part of a hole, and worms (including earthworms) create holes",llm_bridge +soil,worm,AtLocation,0.8,"earthworm lives in soil, and worms (including earthworms) are found in soil",llm_bridge +soil,rabbit,HasA,0.8,soil is where earthworms live and is part of a rabbit's burrow environment,llm_bridge +garden,rabbit,AtLocation,0.8,both animals can be found in gardens,llm_bridge +food,rabbit,UsedFor,0.8,both can be food for other animals,llm_bridge +spaghetti,fork,UsedFor,0.8,a fork is used for both eating spaghetti and spreading butter,llm_bridge +fork,butter,UsedFor,0.8,a fork is used for both eating spaghetti and spreading butter,llm_bridge +plate,butter,AtLocation,0.8,both spaghetti and butter are served on a plate,llm_bridge +spaghetti,meal,HasA,0.8,a meal can contain both spaghetti and butter,llm_bridge +meal,butter,HasA,0.8,a meal can contain both spaghetti and butter,llm_bridge +spaghetti,*plate**,AtLocation,0.8,Both spaghetti and steak can be served on a plate.,llm_bridge +*plate**,steak,AtLocation,0.8,Both spaghetti and steak can be served on a plate.,llm_bridge +spaghetti,*fork**,UsedFor,0.8,Both spaghetti and steak are commonly eaten with a fork.,llm_bridge +*fork**,steak,UsedFor,0.8,Both spaghetti and steak are commonly eaten with a fork.,llm_bridge +spaghetti,*meal**,PartOf,0.8,Both spaghetti and steak can be part of a larger meal.,llm_bridge +*meal**,steak,PartOf,0.8,Both spaghetti and steak can be part of a larger meal.,llm_bridge +spaghetti,pot,AtLocation,0.8,pot is a common container where both spaghetti and vegetables are often prepared or served.,llm_bridge +pot,vegetable,AtLocation,0.8,pot is a common container where both spaghetti and vegetables are often prepared or served.,llm_bridge +plate,vegetable,AtLocation,0.8,plate is a common item where both spaghetti and vegetables are commonly served and eaten from.,llm_bridge +spaghetti,recipe,UsedFor,0.8,recipe is a set of instructions used for preparing both spaghetti and vegetables.,llm_bridge +recipe,vegetable,UsedFor,0.8,recipe is a set of instructions used for preparing both spaghetti and vegetables.,llm_bridge +spaghetti,glass,UsedFor,0.8,glass is used to hold spaghetti in some contexts (like a spaghetti glass) and is made to contain juice,llm_bridge +glass,juice,MadeOf,0.8,glass is used to hold spaghetti in some contexts (like a spaghetti glass) and is made to contain juice,llm_bridge +spaghetti,meal,PartOf,0.8,meal is a part of spaghetti as a main dish and juice is something that can be added to or received in a meal,llm_bridge +meal,juice,ReceivesAction,0.8,meal is a part of spaghetti as a main dish and juice is something that can be added to or received in a meal,llm_bridge +spaghetti,refrigerator,LocatedNear,0.8,refrigerator is located near where spaghetti might be stored and has juice stored inside,llm_bridge +refrigerator,juice,HasA,0.8,refrigerator is located near where spaghetti might be stored and has juice stored inside,llm_bridge +spaghetti,fruit_bowl,AtLocation,0.8,both foods might be found in a fruit bowl (though spaghetti less commonly),llm_bridge +fruit_bowl,banana,AtLocation,0.8,both foods might be found in a fruit bowl (though spaghetti less commonly),llm_bridge +spaghetti,food,HasA,0.8,both are examples of food,llm_bridge +food,banana,HasA,0.8,both are examples of food,llm_bridge +spaghetti,sauce,HasA,0.8,Sauce is often part of spaghetti and can be made with fat (like oil or butter).,llm_bridge +sauce,fat,MadeOf,0.8,Sauce is often part of spaghetti and can be made with fat (like oil or butter).,llm_bridge +spaghetti,animal,UsedFor,0.8,"Spaghetti is used for feeding animals (though uncommon), and fat is part of an animal.",llm_bridge +animal,fat,PartOf,0.8,"Spaghetti is used for feeding animals (though uncommon), and fat is part of an animal.",llm_bridge +spaghetti,diet,HasA,0.8,"A diet includes spaghetti, and a diet can contain fat.",llm_bridge +diet,fat,HasA,0.8,"A diet includes spaghetti, and a diet can contain fat.",llm_bridge +spaghetti,restaurant,AtLocation,0.8,restaurant is a place where both spaghetti and chips are served.,llm_bridge +restaurant,chips,AtLocation,0.8,restaurant is a place where both spaghetti and chips are served.,llm_bridge +spaghetti,kitchen,AtLocation,0.8,kitchen is a place where both spaghetti and chips are prepared.,llm_bridge +kitchen,chips,AtLocation,0.8,kitchen is a place where both spaghetti and chips are prepared.,llm_bridge +spaghetti,box,PartOf,0.8,Both spaghetti and cereal can be found in boxes for packaging.,llm_bridge +box,cereal,PartOf,0.8,Both spaghetti and cereal can be found in boxes for packaging.,llm_bridge +spaghetti,package,PartOf,0.8,Spaghetti and cereal are both sold in packages.,llm_bridge +package,cereal,PartOf,0.8,Spaghetti and cereal are both sold in packages.,llm_bridge +spaghetti,meal,UsedFor,0.8,Both spaghetti and cereal can be served as meals.,llm_bridge +meal,cereal,UsedFor,0.8,Both spaghetti and cereal can be served as meals.,llm_bridge +spaghetti,*bridge_word**:_plate,AtLocation,0.8,explanation: Both spaghetti and slugs can be found on a plate.,llm_bridge +*bridge_word**:_plate,slug,AtLocation,0.8,explanation: Both spaghetti and slugs can be found on a plate.,llm_bridge +spaghetti,*bridge_word**:_fork,UsedFor,0.8,explanation: A fork is used to eat spaghetti and can also be used to pick up a slug.,llm_bridge +*bridge_word**:_fork,slug,UsedFor,0.8,explanation: A fork is used to eat spaghetti and can also be used to pick up a slug.,llm_bridge +spaghetti,*bridge_word**:_garden,AtLocation,0.8,"explanation: Spaghetti sauce ingredients (like tomatoes) come from a garden, and slugs are commonly found in gardens.",llm_bridge +*bridge_word**:_garden,slug,AtLocation,0.8,"explanation: Spaghetti sauce ingredients (like tomatoes) come from a garden, and slugs are commonly found in gardens.",llm_bridge +spaghetti,pasta,MadeOf,0.8,"spaghetti is a type of pasta, and eggs are often used to make pasta dough.",llm_bridge +pasta,egg,MadeOf,0.8,"spaghetti is a type of pasta, and eggs are often used to make pasta dough.",llm_bridge +spaghetti,omelette,UsedFor,0.8,"spaghetti can be used in an omelette, and eggs are the main ingredient in an omelette.",llm_bridge +omelette,egg,MadeOf,0.8,"spaghetti can be used in an omelette, and eggs are the main ingredient in an omelette.",llm_bridge +spaghetti,carbonara,PartOf,0.8,"spaghetti is a key part of carbonara, and carbonara includes eggs as an ingredient.",llm_bridge +carbonara,egg,HasA,0.8,"spaghetti is a key part of carbonara, and carbonara includes eggs as an ingredient.",llm_bridge +fig,tree,PartOf,0.8,trees bear both figs and peaches.,llm_bridge +tree,peach,PartOf,0.8,trees bear both figs and peaches.,llm_bridge +fig,orchard,AtLocation,0.8,orchards grow both figs and peaches.,llm_bridge +orchard,peach,AtLocation,0.8,orchards grow both figs and peaches.,llm_bridge +fig,juice,MadeOf,0.8,juice connects as both figs and lemons can be made into juice,llm_bridge +juice,lemon,MadeOf,0.8,juice connects as both figs and lemons can be made into juice,llm_bridge +fig,salad,UsedFor,0.8,salad connects as both figs and lemons can be used in salad recipes,llm_bridge +salad,lemon,UsedFor,0.8,salad connects as both figs and lemons can be used in salad recipes,llm_bridge +fig,vine,AtLocation,0.8,explanation: Figs and kiwi vines can both be found growing on or near vines.,llm_bridge +vine,kiwi,AtLocation,0.8,explanation: Figs and kiwi vines can both be found growing on or near vines.,llm_bridge +tree,mango,PartOf,0.8,fig and mango grow on trees,llm_bridge +fig,plant,PartOf,0.8,fig and mango grow on plants,llm_bridge +plant,mango,PartOf,0.8,fig and mango grow on plants,llm_bridge +fig,fruit,PartOf,0.8,Both fig and strawberry are types of fruit.,llm_bridge +fruit,strawberry,PartOf,0.8,Both fig and strawberry are types of fruit.,llm_bridge +plant,strawberry,PartOf,0.8,Both fig and strawberry are parts of plants (fig plant and strawberry plant).,llm_bridge +tree,strawberry,LocatedNear,0.8,"Fig grows on a tree, while strawberries grow near the ground but are often found near trees in gardens.",llm_bridge +fig,fruit,HasA,0.8,both fig and orange are types of fruit,llm_bridge +fruit,orange,HasA,0.8,both fig and orange are types of fruit,llm_bridge +tree,orange,PartOf,0.8,both fig and orange grow on trees,llm_bridge +juice,orange,MadeOf,0.8,both fig and orange can be made into juice,llm_bridge +fig,*tree**,PartOf,0.8,Both figs and nectarines grow on trees.,llm_bridge +*tree**,nectarine,PartOf,0.8,Both figs and nectarines grow on trees.,llm_bridge +fig,*orchard**,AtLocation,0.8,Both figs and nectarines can be grown in an orchard.,llm_bridge +*orchard**,nectarine,AtLocation,0.8,Both figs and nectarines can be grown in an orchard.,llm_bridge +juice,cranberry,MadeOf,0.8,"juice is made from both figs and cranberries, which are fruits that can be processed into juice.",llm_bridge +fig,jam,MadeOf,0.8,"jam is made from both figs and cranberries, which are fruits commonly used in jams.",llm_bridge +jam,cranberry,MadeOf,0.8,"jam is made from both figs and cranberries, which are fruits commonly used in jams.",llm_bridge +fig,pie,MadeOf,0.8,"pie is made using both figs and cranberries as fillings, as they are types of fruit often used in baking.",llm_bridge +pie,cranberry,MadeOf,0.8,"pie is made using both figs and cranberries as fillings, as they are types of fruit often used in baking.",llm_bridge +soot,bridge_word:_coal,MadeOf,0.8,"coal is made of soot, and feathers can be found near coal deposits (e.g., in mines)",llm_bridge +bridge_word:_coal,feather,AtLocation,0.8,"coal is made of soot, and feathers can be found near coal deposits (e.g., in mines)",llm_bridge +soot,bridge_word:_fire,Causes,0.8,"soot is caused by fire, and fire can singe or blacken feathers",llm_bridge +bridge_word:_fire,feather,HasProperty,0.8,"soot is caused by fire, and fire can singe or blacken feathers",llm_bridge +soot,bridge_word:_bird,HasProperty,0.8,"soot can be found on birds (e.g., from pollution), and birds have feathers",llm_bridge +bridge_word:_bird,feather,HasA,0.8,"soot can be found on birds (e.g., from pollution), and birds have feathers",llm_bridge +soot,*pot**,MadeOf,0.8,pots can be made from soot (as a residue) and clay (as the primary material).,llm_bridge +*pot**,clay,MadeOf,0.8,pots can be made from soot (as a residue) and clay (as the primary material).,llm_bridge +soot,*oven**,AtLocation,0.8,ovens are locations where soot can accumulate and where clay is fired.,llm_bridge +*oven**,clay,AtLocation,0.8,ovens are locations where soot can accumulate and where clay is fired.,llm_bridge +soot,*pottery**,HasA,0.8,pottery can contain soot and is made of clay.,llm_bridge +*pottery**,clay,MadeOf,0.8,pottery can contain soot and is made of clay.,llm_bridge +soot,metal,MadeOf,0.8,metal is a material that can corrode into rust and be coated with soot from burning.,llm_bridge +metal,rust,MadeOf,0.8,metal is a material that can corrode into rust and be coated with soot from burning.,llm_bridge +soot,fire,CapableOf,0.8,fire produces soot; fire involves oxidation which is a prerequisite for rust.,llm_bridge +fire,rust,HasPrerequisite,0.8,fire produces soot; fire involves oxidation which is a prerequisite for rust.,llm_bridge +soot,oxidation,UsedFor,0.8,oxidation processes produce soot; oxidation processes cause rust.,llm_bridge +oxidation,rust,CapableOf,0.8,oxidation processes produce soot; oxidation processes cause rust.,llm_bridge +soot,aluminum_oxide,MadeOf,0.8,aluminum oxide connects as a compound that can include both materials in different forms.,llm_bridge +aluminum_oxide,aluminum,MadeOf,0.8,aluminum oxide connects as a compound that can include both materials in different forms.,llm_bridge +soot,smelter,UsedFor,0.8,a smelter is a place where both materials are processed.,llm_bridge +smelter,aluminum,UsedFor,0.8,a smelter is a place where both materials are processed.,llm_bridge +soot,fire,UsedFor,0.8,fire is used to produce soot and can be found in processes involving aluminum.,llm_bridge +fire,aluminum,HasA,0.8,fire is used to produce soot and can be found in processes involving aluminum.,llm_bridge +soot,smoke,MadeOf,0.8,"smoke produces soot as a byproduct, and dirt often contains particulate matter like soot",llm_bridge +smoke,dirt,HasA,0.8,"smoke produces soot as a byproduct, and dirt often contains particulate matter like soot",llm_bridge +soot,coal,MadeOf,0.8,"coal burns to create soot, and dirt can contain coal particles",llm_bridge +coal,dirt,HasA,0.8,"coal burns to create soot, and dirt can contain coal particles",llm_bridge +soot,stain,MadeOf,0.8,"stain can be composed of soot or dirt, both of which contribute to staining surfaces",llm_bridge +stain,dirt,MadeOf,0.8,"stain can be composed of soot or dirt, both of which contribute to staining surfaces",llm_bridge +soot,*paper**,MadeOf,0.8,Both soot and wrappers can be made from paper.,llm_bridge +*paper**,wrapper,MadeOf,0.8,Both soot and wrappers can be made from paper.,llm_bridge +soot,*fire**,CapableOf,0.8,"Fire produces soot and wrappers are used for fires (e.g., fire starters).",llm_bridge +*fire**,wrapper,UsedFor,0.8,"Fire produces soot and wrappers are used for fires (e.g., fire starters).",llm_bridge +soot,*package**,PartOf,0.8,"Soot can be a byproduct of packaging processes, and wrappers are part of packages.",llm_bridge +*package**,wrapper,PartOf,0.8,"Soot can be a byproduct of packaging processes, and wrappers are part of packages.",llm_bridge +soot,fire,MadeOf,0.8,fire produces soot and paper can be used as fuel,llm_bridge +fire,paper,UsedFor,0.8,fire produces soot and paper can be used as fuel,llm_bridge +soot,smoke,HasA,0.8,smoke contains soot and paper can be used to create smoke,llm_bridge +smoke,paper,UsedFor,0.8,smoke contains soot and paper can be used to create smoke,llm_bridge +soot,ash,HasA,0.8,ash contains soot and paper can be burned to produce ash,llm_bridge +ash,paper,MadeOf,0.8,ash contains soot and paper can be burned to produce ash,llm_bridge +soot,fabric,PartOf,0.8,"Soot can be a part of dirty fabric, while polyester is a material that fabric is made from.",llm_bridge +soot,clothing,PartOf,0.8,"Soot can be a part of dirty clothing, while polyester is a material that clothing is made from.",llm_bridge +clothing,polyester,MadeOf,0.8,"Soot can be a part of dirty clothing, while polyester is a material that clothing is made from.",llm_bridge +soot,material,MadeOf,0.8,"Soot and polyester are both types of materials, though in different contexts.",llm_bridge +material,polyester,MadeOf,0.8,"Soot and polyester are both types of materials, though in different contexts.",llm_bridge +smoke,ash,MadeOf,0.8,smoke is a collection of soot and ash particles released during combustion.,llm_bridge +fire,ash,MadeOf,0.8,fire produces both soot and ash as byproducts.,llm_bridge +soot,dust,HasProperty,0.8,"dust is a fine powder that includes soot and ash, sharing similar particulate properties.",llm_bridge +dust,ash,HasProperty,0.8,"dust is a fine powder that includes soot and ash, sharing similar particulate properties.",llm_bridge +polyester,*fabric**,MadeOf,0.8,Both polyester and nylon can be made into fabrics.,llm_bridge +*fabric**,nylon,MadeOf,0.8,Both polyester and nylon can be made into fabrics.,llm_bridge +polyester,*clothing**,MadeOf,0.8,Both polyester and nylon are materials used to make clothing.,llm_bridge +*clothing**,nylon,MadeOf,0.8,Both polyester and nylon are materials used to make clothing.,llm_bridge +polyester,*fiber**,MadeOf,0.8,Both polyester and nylon are types of synthetic fibers.,llm_bridge +*fiber**,nylon,MadeOf,0.8,Both polyester and nylon are types of synthetic fibers.,llm_bridge +polyester,*yarn**,MadeOf,0.8,"Polyester can be spun into yarn, and yarn can be made into string.",llm_bridge +*yarn**,string,MadeOf,0.8,"Polyester can be spun into yarn, and yarn can be made into string.",llm_bridge +*fabric**,string,UsedFor,0.8,"Polyester is made into fabric, and string is used in fabric construction (e.g., sewing).",llm_bridge +polyester,*thread**,MadeOf,0.8,"Polyester is made into thread, and string can be composed of threads.",llm_bridge +*thread**,string,PartOf,0.8,"Polyester is made into thread, and string can be composed of threads.",llm_bridge +polyester,fabric,MadeOf,0.8,fabric made from polyester can get dirty,llm_bridge +fabric,dirt,HasA,0.8,fabric made from polyester can get dirty,llm_bridge +polyester,clothing,MadeOf,0.8,clothing made from polyester can accumulate dirt,llm_bridge +clothing,dirt,HasA,0.8,clothing made from polyester can accumulate dirt,llm_bridge +polyester,candle,MadeOf,0.8,candle uses polyester and wax as materials,llm_bridge +candle,wax,MadeOf,0.8,candle uses polyester and wax as materials,llm_bridge +polyester,crayon,MadeOf,0.8,crayons can contain polyester and wax,llm_bridge +crayon,wax,MadeOf,0.8,crayons can contain polyester and wax,llm_bridge +fabric,wax,HasA,0.8,some fabrics made of polyester may have a wax coating,llm_bridge +polyester,bridge_word:_plastic,MadeOf,0.8,both polyester and tar can be components in creating plastic materials,llm_bridge +bridge_word:_plastic,tar,MadeOf,0.8,both polyester and tar can be components in creating plastic materials,llm_bridge +polyester,bridge_word:_boat,MadeOf,0.8,"polyester is used in boat manufacturing, and tar is used for waterproofing boats",llm_bridge +bridge_word:_boat,tar,UsedFor,0.8,"polyester is used in boat manufacturing, and tar is used for waterproofing boats",llm_bridge +polyester,bridge_word:_roof,MadeOf,0.8,"polyester can be in roofing materials, and tar is used for roofing waterproofing",llm_bridge +bridge_word:_roof,tar,UsedFor,0.8,"polyester can be in roofing materials, and tar is used for roofing waterproofing",llm_bridge +*fabric**,leather,MadeOf,0.8,fabric connects materials that can be made from both polyester and leather.,llm_bridge +*clothing**,leather,MadeOf,0.8,clothing connects items made from both polyester and leather.,llm_bridge +polyester,*handbag**,MadeOf,0.8,handbag connects items that can be crafted from both polyester and leather.,llm_bridge +*handbag**,leather,MadeOf,0.8,handbag connects items that can be crafted from both polyester and leather.,llm_bridge +polyester,*bracelet**,MadeOf,0.8,"Polyester can be made into bracelets, and bracelets are a type of jewelry.",llm_bridge +*bracelet**,jewelry,PartOf,0.8,"Polyester can be made into bracelets, and bracelets are a type of jewelry.",llm_bridge +polyester,*bead**,MadeOf,0.8,"Polyester can be made into beads, and beads are components of many pieces of jewelry.",llm_bridge +*bead**,jewelry,PartOf,0.8,"Polyester can be made into beads, and beads are components of many pieces of jewelry.",llm_bridge +polyester,*ring**,MadeOf,0.8,"Polyester can be made into rings, and rings are a form of jewelry.",llm_bridge +*ring**,jewelry,PartOf,0.8,"Polyester can be made into rings, and rings are a form of jewelry.",llm_bridge +polyester,plastic,MadeOf,0.8,Both polyester and fuel can be components of plastic products.,llm_bridge +plastic,fuel,MadeOf,0.8,Both polyester and fuel can be components of plastic products.,llm_bridge +polyester,car,MadeOf,0.8,"Polyester is used in car interiors, and fuel is used to power cars.",llm_bridge +car,fuel,UsedFor,0.8,"Polyester is used in car interiors, and fuel is used to power cars.",llm_bridge +polyester,bottle,MadeOf,0.8,"Polyester (or PET) is used to make bottles, and fuel can be stored in them.",llm_bridge +bottle,fuel,MadeOf,0.8,"Polyester (or PET) is used to make bottles, and fuel can be stored in them.",llm_bridge +polyester,fiber,MadeOf,0.8,Both polyester and paper can be made from fibers.,llm_bridge +fiber,paper,MadeOf,0.8,Both polyester and paper can be made from fibers.,llm_bridge +polyester,pulp,UsedFor,0.8,"Polyester can be used in processing, and pulp is a primary material for paper.",llm_bridge +pulp,paper,MadeOf,0.8,"Polyester can be used in processing, and pulp is a primary material for paper.",llm_bridge +polyester,sheet,MadeOf,0.8,"Polyester can be formed into sheets, and sheets are a key part of paper products.",llm_bridge +sheet,paper,PartOf,0.8,"Polyester can be formed into sheets, and sheets are a key part of paper products.",llm_bridge +*fiber**,rope,MadeOf,0.8,"Polyester is made of fibers, and ropes are often made of fibers.",llm_bridge +polyester,*cloth**,MadeOf,0.8,"Polyester can be made into cloth, and cloth can be used to make rope.",llm_bridge +*cloth**,rope,MadeOf,0.8,"Polyester can be made into cloth, and cloth can be used to make rope.",llm_bridge +*thread**,rope,MadeOf,0.8,"Polyester can be spun into thread, and rope can be made from thread.",llm_bridge +rhinoceros,*bridge_word:_animal**,HasA,0.8,both rhinoceros and beaver are types of animals,llm_bridge +*bridge_word:_animal**,beaver,HasA,0.8,both rhinoceros and beaver are types of animals,llm_bridge +rhinoceros,*bridge_word:_habitat**,AtLocation,0.8,both rhinoceros and beaver live in specific habitats,llm_bridge +*bridge_word:_habitat**,beaver,AtLocation,0.8,both rhinoceros and beaver live in specific habitats,llm_bridge +rhinoceros,*bridge_word:_food**,UsedFor,0.8,both rhinoceros and beaver use food for survival,llm_bridge +*bridge_word:_food**,beaver,UsedFor,0.8,both rhinoceros and beaver use food for survival,llm_bridge +rhinoceros,hornbill,LocatedNear,0.8,hornbill is a type of bird often found near rhinoceros in savanna ecosystems,llm_bridge +hornbill,bird,LocatedNear,0.8,hornbill is a type of bird often found near rhinoceros in savanna ecosystems,llm_bridge +zoo,bird,AtLocation,0.8,both rhinoceros and birds are commonly found in zoos,llm_bridge +rhinoceros,seed,HasPrerequisite,0.8,both rhinoceros and birds may rely on seeds as part of their diets,llm_bridge +seed,bird,HasPrerequisite,0.8,both rhinoceros and birds may rely on seeds as part of their diets,llm_bridge +rhinoceros,food,UsedFor,0.8,food connects both as potential prey in a food chain context,llm_bridge +food,rat,UsedFor,0.8,food connects both as potential prey in a food chain context,llm_bridge +zoo,rat,AtLocation,0.8,zoo connects both as animals that might be found in captivity,llm_bridge +rhinoceros,habitat,PartOf,0.8,habitat connects both as animals that occupy natural environments,llm_bridge +habitat,rat,PartOf,0.8,habitat connects both as animals that occupy natural environments,llm_bridge +rhinoceros,*nail**,HasA,0.8,"Rhinoceroses have nails on their hooves, and nails are a type of claw.",llm_bridge +*nail**,claw,PartOf,0.8,"Rhinoceroses have nails on their hooves, and nails are a type of claw.",llm_bridge +rhinoceros,*hoof**,HasA,0.8,Rhinoceroses have hooves that are made of a material similar to claws.,llm_bridge +*hoof**,claw,PartOf,0.8,Rhinoceroses have hooves that are made of a material similar to claws.,llm_bridge +rhinoceros,*weapon**,HasA,0.8,"Rhinoceroses may use their horn as a weapon, and claws are also used as weapons.",llm_bridge +*weapon**,claw,UsedFor,0.8,"Rhinoceroses may use their horn as a weapon, and claws are also used as weapons.",llm_bridge +rhinoceros,grass,UsedFor,0.8,Both rhinoceros and bison eat grass.,llm_bridge +grass,bison,UsedFor,0.8,Both rhinoceros and bison eat grass.,llm_bridge +rhinoceros,grassland,AtLocation,0.8,Both rhinoceros and bison can be found in grasslands.,llm_bridge +grassland,bison,AtLocation,0.8,Both rhinoceros and bison can be found in grasslands.,llm_bridge +rhinoceros,grassland,LocatedNear,0.8,Grasslands are the habitat where both rhinoceroses and bison are found.,llm_bridge +grassland,bison,LocatedNear,0.8,Grasslands are the habitat where both rhinoceroses and bison are found.,llm_bridge +rhinoceros,*ivory**,HasA,0.8,"rhinoceros has ivory (type of tooth), tooth is made of ivory (material)",llm_bridge +*ivory**,tooth,MadeOf,0.8,"rhinoceros has ivory (type of tooth), tooth is made of ivory (material)",llm_bridge +rhinoceros,*tusk**,HasA,0.8,"rhinoceros has tusks (large teeth), tusk is part of tooth structure",llm_bridge +*tusk**,tooth,PartOf,0.8,"rhinoceros has tusks (large teeth), tusk is part of tooth structure",llm_bridge +rhinoceros,*enamel**,HasA,0.8,"rhinoceros teeth have enamel, tooth is made of enamel (hard outer layer)",llm_bridge +*enamel**,tooth,MadeOf,0.8,"rhinoceros teeth have enamel, tooth is made of enamel (hard outer layer)",llm_bridge +rhinoceros,forest,AtLocation,0.8,"Both rhinoceros and fox can be found in a forest, though in different habitats.",llm_bridge +forest,fox,AtLocation,0.8,"Both rhinoceros and fox can be found in a forest, though in different habitats.",llm_bridge +grassland,fox,AtLocation,0.8,"Rhinoceros are often found in grasslands, and foxes may inhabit grassy areas.",llm_bridge +rhinoceros,prey,HasA,0.8,"Rhinoceros have young that can be prey, and foxes desire prey to hunt.",llm_bridge +prey,fox,Desires,0.8,"Rhinoceros have young that can be prey, and foxes desire prey to hunt.",llm_bridge +rhinoceros,bridge_word:_zoo,AtLocation,0.8,both animals are commonly found in zoos,llm_bridge +bridge_word:_zoo,wolf,AtLocation,0.8,both animals are commonly found in zoos,llm_bridge +rhinoceros,bridge_word:_prey,UsedFor,0.8,prey is something that both rhinoceros and wolves might hunt or be hunted for,llm_bridge +bridge_word:_prey,wolf,UsedFor,0.8,prey is something that both rhinoceros and wolves might hunt or be hunted for,llm_bridge +grass,zebra,UsedFor,0.8,Both rhinoceros and zebra eat grass.,llm_bridge +zoo,zebra,AtLocation,0.8,Both rhinoceros and zebra can be found in zoos.,llm_bridge +rhinoceros,stripe,HasProperty,0.8,"Rhinoceros may have stripes (like some subspecies), while zebra has stripes as a defining feature.",llm_bridge +stripe,zebra,HasA,0.8,"Rhinoceros may have stripes (like some subspecies), while zebra has stripes as a defining feature.",llm_bridge +rhinoceros,antler,HasA,0.8,antlers are part of a rhinoceros and part of the head structure.,llm_bridge +antler,head,PartOf,0.8,antlers are part of a rhinoceros and part of the head structure.,llm_bridge +rhinoceros,horn,HasA,0.8,horns are part of a rhinoceros and part of the head structure.,llm_bridge +horn,head,PartOf,0.8,horns are part of a rhinoceros and part of the head structure.,llm_bridge +rhinoceros,skull,HasA,0.8,"a rhinoceros has a skull, and the skull is part of the head.",llm_bridge +skull,head,PartOf,0.8,"a rhinoceros has a skull, and the skull is part of the head.",llm_bridge +chimpanzee,*banana**,HasA,0.8,Banana connects chimpanzee (as a food it eats) to fat (as a component of its composition).,llm_bridge +*banana**,fat,MadeOf,0.8,Banana connects chimpanzee (as a food it eats) to fat (as a component of its composition).,llm_bridge +chimpanzee,*body**,HasA,0.8,Body connects chimpanzee (as a physical structure it has) to fat (as a constituent of that structure).,llm_bridge +*body**,fat,HasA,0.8,Body connects chimpanzee (as a physical structure it has) to fat (as a constituent of that structure).,llm_bridge +chimpanzee,*food**,UsedFor,0.8,Food connects chimpanzee (as something it consumes) to fat (as a component of what it consumes).,llm_bridge +*food**,fat,MadeOf,0.8,Food connects chimpanzee (as something it consumes) to fat (as a component of what it consumes).,llm_bridge +chimpanzee,bridge_word:_skull,HasA,0.8,"chimpanzees have skulls which contain bones, and bones are part of skulls",llm_bridge +bridge_word:_skull,bone,PartOf,0.8,"chimpanzees have skulls which contain bones, and bones are part of skulls",llm_bridge +chimpanzee,bridge_word:_skeleton,HasA,0.8,"chimpanzees have skeletons, and bones are part of skeletons",llm_bridge +bridge_word:_skeleton,bone,PartOf,0.8,"chimpanzees have skeletons, and bones are part of skeletons",llm_bridge +chimpanzee,bridge_word:_arm,HasA,0.8,"chimpanzees have arms, and bones are part of arms",llm_bridge +bridge_word:_arm,bone,PartOf,0.8,"chimpanzees have arms, and bones are part of arms",llm_bridge +chimpanzee,water,ReceivesAction,0.8,chimpanzees use water; sponges are often found in water,llm_bridge +water,sponge,AtLocation,0.8,chimpanzees use water; sponges are often found in water,llm_bridge +chimpanzee,tool,UsedFor,0.8,chimpanzees use sponges as tools; sponges have structural features,llm_bridge +tool,sponge,HasA,0.8,chimpanzees use sponges as tools; sponges have structural features,llm_bridge +chimpanzee,sea,AtLocation,0.8,sea is where some sponges live; some environments may contain chimpanzees near coastal areas,llm_bridge +sea,sponge,AtLocation,0.8,sea is where some sponges live; some environments may contain chimpanzees near coastal areas,llm_bridge +chimpanzee,bridge_word:_fur,HasProperty,0.8,Both chimpanzees and marmots have fur covering their bodies.,llm_bridge +bridge_word:_fur,marmot,HasProperty,0.8,Both chimpanzees and marmots have fur covering their bodies.,llm_bridge +chimpanzee,bridge_word:_zoo,AtLocation,0.8,Both chimpanzees and marmots can be found in a zoo.,llm_bridge +bridge_word:_zoo,marmot,AtLocation,0.8,Both chimpanzees and marmots can be found in a zoo.,llm_bridge +chimpanzee,bridge_word:_animal,PartOf,0.8,Both chimpanzees and marmots are part of the broader category of animals.,llm_bridge +bridge_word:_animal,marmot,PartOf,0.8,Both chimpanzees and marmots are part of the broader category of animals.,llm_bridge +chimpanzee,*fruit**,HasPrerequisite,0.8,explanation: Fruit connects chimpanzees and insects through diet and pollination.,llm_bridge +*fruit**,insect,HasA,0.8,explanation: Fruit connects chimpanzees and insects through diet and pollination.,llm_bridge +chimpanzee,*leaf**,HasA,0.8,explanation: Leaf connects chimpanzees and insects through habitat and food source.,llm_bridge +*leaf**,insect,HasA,0.8,explanation: Leaf connects chimpanzees and insects through habitat and food source.,llm_bridge +chimpanzee,*tree**,AtLocation,0.8,explanation: Tree connects chimpanzees and insects through shared habitat.,llm_bridge +*tree**,insect,AtLocation,0.8,explanation: Tree connects chimpanzees and insects through shared habitat.,llm_bridge +chimpanzee,*bridge:_zoo,AtLocation,0.8,explanation: Chimpanzees and turtles are both commonly found in zoos.**,llm_bridge +*bridge:_zoo,turtle,AtLocation,0.8,explanation: Chimpanzees and turtles are both commonly found in zoos.**,llm_bridge +chimpanzee,*bridge:_pond,AtLocation,0.8,"explanation: Chimpanzees might visit ponds, and turtles often live in or around ponds.**",llm_bridge +*bridge:_pond,turtle,AtLocation,0.8,"explanation: Chimpanzees might visit ponds, and turtles often live in or around ponds.**",llm_bridge +chimpanzee,*bridge:_food,UsedFor,0.8,explanation: Food is something both chimpanzees and turtles require for survival.**,llm_bridge +*bridge:_food,turtle,UsedFor,0.8,explanation: Food is something both chimpanzees and turtles require for survival.**,llm_bridge +chimpanzee,forest,AtLocation,0.8,Both chimpanzees and cassowaries can be found in forests.,llm_bridge +forest,cassowary,AtLocation,0.8,Both chimpanzees and cassowaries can be found in forests.,llm_bridge +chimpanzee,treetop,AtLocation,0.8,Both chimpanzees and cassowaries can be associated with treetops in their habitats.,llm_bridge +treetop,cassowary,AtLocation,0.8,Both chimpanzees and cassowaries can be associated with treetops in their habitats.,llm_bridge +chimpanzee,fruit,UsedFor,0.8,Both chimpanzees and cassowaries eat fruits as part of their diet.,llm_bridge +fruit,cassowary,UsedFor,0.8,Both chimpanzees and cassowaries eat fruits as part of their diet.,llm_bridge +chimpanzee,bridge_1:_**fruit**,HasA,0.8,"chimpanzees often consume fruit, and meat is made of animal tissue, which can be consumed as food.",llm_bridge +bridge_1:_**fruit**,meat,MadeOf,0.8,"chimpanzees often consume fruit, and meat is made of animal tissue, which can be consumed as food.",llm_bridge +chimpanzee,bridge_2:_**food**,UsedFor,0.8,"chimpanzees use food for sustenance, and meat is a type of food that has the property of being edible.",llm_bridge +bridge_2:_**food**,meat,HasProperty,0.8,"chimpanzees use food for sustenance, and meat is a type of food that has the property of being edible.",llm_bridge +chimpanzee,bridge_3:_**animal**,PartOf,0.8,"chimpanzees are part of the animal kingdom, and meat is made of animal tissue.",llm_bridge +bridge_3:_**animal**,meat,MadeOf,0.8,"chimpanzees are part of the animal kingdom, and meat is made of animal tissue.",llm_bridge +chimpanzee,bridge_word:_mouth,HasA,0.8,"chimpanzees have mouths, and teeth are parts of mouths.",llm_bridge +bridge_word:_mouth,tooth,PartOf,0.8,"chimpanzees have mouths, and teeth are parts of mouths.",llm_bridge +chimpanzee,bridge_word:_bite,CapableOf,0.8,"chimpanzees can bite, and teeth are used for biting.",llm_bridge +bridge_word:_bite,tooth,UsedFor,0.8,"chimpanzees can bite, and teeth are used for biting.",llm_bridge +talc,rock,MadeOf,0.8,Both talc and mica can be components of rock.,llm_bridge +rock,mica,MadeOf,0.8,Both talc and mica can be components of rock.,llm_bridge +talc,schist,MadeOf,0.8,Schist is a type of rock that contains both talc and mica.,llm_bridge +schist,mica,MadeOf,0.8,Schist is a type of rock that contains both talc and mica.,llm_bridge +talc,ore,UsedFor,0.8,Both talc and mica can be mined as ores for various industrial uses.,llm_bridge +ore,mica,UsedFor,0.8,Both talc and mica can be mined as ores for various industrial uses.,llm_bridge +rock,crystal,MadeOf,0.8,both talc and crystals can be components of rocks.,llm_bridge +talc,stone,MadeOf,0.8,stone connects the composition of talc to the category of minerals,llm_bridge +stone,mineral,PartOf,0.8,stone connects the composition of talc to the category of minerals,llm_bridge +talc,*mountain**,MadeOf,0.8,Mountains can be made of talc and are a part of the Earth.,llm_bridge +*mountain**,earth,PartOf,0.8,Mountains can be made of talc and are a part of the Earth.,llm_bridge +talc,*rock**,MadeOf,0.8,Rocks can be made of talc and are a part of the Earth.,llm_bridge +*rock**,earth,PartOf,0.8,Rocks can be made of talc and are a part of the Earth.,llm_bridge +talc,*layer**,MadeOf,0.8,Layers can be made of talc and are a feature of the Earth.,llm_bridge +*layer**,earth,HasA,0.8,Layers can be made of talc and are a feature of the Earth.,llm_bridge +talc,sand,MadeOf,0.8,sand can be made from talc and is a common component of glass,llm_bridge +sand,glass,MadeOf,0.8,sand can be made from talc and is a common component of glass,llm_bridge +talc,powder,MadeOf,0.8,"talc is made into powder, which can be used as an ingredient in glass production",llm_bridge +powder,glass,UsedFor,0.8,"talc is made into powder, which can be used as an ingredient in glass production",llm_bridge +talc,grinding,CapableOf,0.8,grinding is an action performed on talc and is used in preparing materials for glass making,llm_bridge +grinding,glass,UsedFor,0.8,grinding is an action performed on talc and is used in preparing materials for glass making,llm_bridge +talc,*container**,UsedFor,0.8,Both talc and oil can be stored in containers.,llm_bridge +*container**,oil,UsedFor,0.8,Both talc and oil can be stored in containers.,llm_bridge +talc,*skin**,UsedFor,0.8,Both talc (as powder) and oil can be applied to skin.,llm_bridge +*skin**,oil,UsedFor,0.8,Both talc (as powder) and oil can be applied to skin.,llm_bridge +talc,*massage**,UsedFor,0.8,Both talc and oil can be used during a massage for smoothness.,llm_bridge +*massage**,oil,UsedFor,0.8,Both talc and oil can be used during a massage for smoothness.,llm_bridge +talc,rock,PartOf,0.8,Both talc and quartz are components of different types of rocks.,llm_bridge +rock,iron,MadeOf,0.8,Both talc and iron can be found within rocks.,llm_bridge +talc,ore,PartOf,0.8,"Talc can be part of certain types of ores, and iron is extracted from iron ores.",llm_bridge +ore,iron,PartOf,0.8,"Talc can be part of certain types of ores, and iron is extracted from iron ores.",llm_bridge +talc,earth,AtLocation,0.8,Both talc and iron are naturally found within the earth.,llm_bridge +earth,iron,AtLocation,0.8,Both talc and iron are naturally found within the earth.,llm_bridge +stone,soil,MadeOf,0.8,Both talc and soil can be components of stone.,llm_bridge +vulture,bird,PartOf,0.8,both are birds,llm_bridge +bird,albatross,PartOf,0.8,both are birds,llm_bridge +vulture,egg,HasA,0.8,both lay eggs,llm_bridge +egg,albatross,HasA,0.8,both lay eggs,llm_bridge +vulture,nest,HasA,0.8,both build nests,llm_bridge +nest,albatross,HasA,0.8,both build nests,llm_bridge +nest,stork,HasA,0.8,explanation: Both vultures and storks have nests where they live and raise their young.,llm_bridge +vulture,wings,HasA,0.8,"explanation: Both vultures and storks have wings, which are used for flying.",llm_bridge +wings,stork,HasA,0.8,"explanation: Both vultures and storks have wings, which are used for flying.",llm_bridge +bird,stork,PartOf,0.8,explanation: Both vultures and storks are types of birds.,llm_bridge +vulture,*bird**,PartOf,0.8,both are types of birds.,llm_bridge +*bird**,puffin,PartOf,0.8,both are types of birds.,llm_bridge +vulture,*wing**,HasA,0.8,both birds have wings for flying.,llm_bridge +*wing**,puffin,HasA,0.8,both birds have wings for flying.,llm_bridge +vulture,*egg**,HasA,0.8,both birds lay eggs.,llm_bridge +*egg**,puffin,HasA,0.8,both birds lay eggs.,llm_bridge +vulture,bridge_word:_nest,HasA,0.8,"Both vultures and weavers have nests, but the nest is part of the weaver's habitat structure.",llm_bridge +bridge_word:_nest,weaver,PartOf,0.8,"Both vultures and weavers have nests, but the nest is part of the weaver's habitat structure.",llm_bridge +vulture,bridge_word:_beak,HasA,0.8,"Both vultures and weavers possess beaks, which are physical features they share as birds.",llm_bridge +bridge_word:_beak,weaver,HasA,0.8,"Both vultures and weavers possess beaks, which are physical features they share as birds.",llm_bridge +vulture,bridge_word:_bird,PartOf,0.8,"Both vultures and weavers are categorized as birds, sharing the broader classification.",llm_bridge +bridge_word:_bird,weaver,PartOf,0.8,"Both vultures and weavers are categorized as birds, sharing the broader classification.",llm_bridge +vulture,feather,HasA,0.8,Both birds have feathers.,llm_bridge +feather,cormorant,HasA,0.8,Both birds have feathers.,llm_bridge +vulture,wing,HasA,0.8,Both birds have wings for flight.,llm_bridge +wing,cormorant,HasA,0.8,Both birds have wings for flight.,llm_bridge +vulture,fish,UsedFor,0.8,Both birds may catch fish for food.,llm_bridge +fish,cormorant,UsedFor,0.8,Both birds may catch fish for food.,llm_bridge +vulture,tree,AtLocation,0.8,both birds often inhabit trees in their natural habitats.,llm_bridge +tree,hornbill,AtLocation,0.8,both birds often inhabit trees in their natural habitats.,llm_bridge +vulture,forest,AtLocation,0.8,both birds are found in forested environments.,llm_bridge +forest,hornbill,AtLocation,0.8,both birds are found in forested environments.,llm_bridge +vulture,bird_feeder,AtLocation,0.8,both are birds that might be observed near bird feeders in certain contexts.,llm_bridge +bird_feeder,hornbill,AtLocation,0.8,both are birds that might be observed near bird feeders in certain contexts.,llm_bridge +vulture,food,UsedFor,0.8,Both vultures and doves use food as a resource for survival.,llm_bridge +food,dove,UsedFor,0.8,Both vultures and doves use food as a resource for survival.,llm_bridge +vulture,egg,CapableOf,0.8,Both vultures and doves are capable of laying eggs.,llm_bridge +egg,dove,CapableOf,0.8,Both vultures and doves are capable of laying eggs.,llm_bridge +tree,osprey,AtLocation,0.8,Both birds can be found in or near trees.,llm_bridge +vulture,sky,AtLocation,0.8,Both vultures and ospreys are often found in the sky.,llm_bridge +sky,osprey,AtLocation,0.8,Both vultures and ospreys are often found in the sky.,llm_bridge +fish,osprey,UsedFor,0.8,"Ospreys use fish as prey, and vultures sometimes scavenge fish.",llm_bridge +vulture,flying,CapableOf,0.8,Both birds are capable of flying.,llm_bridge +flying,swift,CapableOf,0.8,Both birds are capable of flying.,llm_bridge +feather,swift,HasA,0.8,Both birds have feathers.,llm_bridge +wing,swift,HasA,0.8,Both birds have wings.,llm_bridge +vulture,meat,CapableOf,0.8,"vultures eat meat, tinamous are made of meat (as animals are)",llm_bridge +meat,tinamou,MadeOf,0.8,"vultures eat meat, tinamous are made of meat (as animals are)",llm_bridge +gorilla,snake,LocatedNear,0.8,snake connects them as another animal in their shared ecological context.,llm_bridge +snake,earthworm,LocatedNear,0.8,snake connects them as another animal in their shared ecological context.,llm_bridge +gorilla,soil,AtLocation,0.8,soil connects them as the common environment where both may be found.,llm_bridge +soil,earthworm,AtLocation,0.8,soil connects them as the common environment where both may be found.,llm_bridge +gorilla,food,UsedFor,0.8,food connects them as something that could be part of their diet or ecological interactions.,llm_bridge +food,earthworm,UsedFor,0.8,food connects them as something that could be part of their diet or ecological interactions.,llm_bridge +gorilla,bridge_word:_zoo,AtLocation,0.8,A gorilla and a fish with a fin can both be found in a zoo.,llm_bridge +bridge_word:_zoo,fin,AtLocation,0.8,A gorilla and a fish with a fin can both be found in a zoo.,llm_bridge +gorilla,bridge_word:_water,ReceivesAction,0.8,"A gorilla might be in water, and water is where a fish's fin is used in its natural habitat.",llm_bridge +bridge_word:_water,fin,HasProperty,0.8,"A gorilla might be in water, and water is where a fish's fin is used in its natural habitat.",llm_bridge +gorilla,bridge_word:_animal,PartOf,0.8,"A gorilla is an animal, and a fish with a fin is also an animal.",llm_bridge +bridge_word:_animal,fin,PartOf,0.8,"A gorilla is an animal, and a fish with a fin is also an animal.",llm_bridge +gorilla,*forest**,AtLocation,0.8,Both gorillas and centipedes can be found in forest habitats.,llm_bridge +*forest**,centipede,AtLocation,0.8,Both gorillas and centipedes can be found in forest habitats.,llm_bridge +gorilla,*insect**,ReceivesAction,0.8,"A gorilla might eat insects, while a centipede is an insect and might eat other insects.",llm_bridge +*insect**,centipede,Desires,0.8,"A gorilla might eat insects, while a centipede is an insect and might eat other insects.",llm_bridge +gorilla,*insectivore**,Desires,0.8,"A gorilla might desire insects as part of its diet, while a centipede is an insect and might have insect prey.",llm_bridge +*insectivore**,centipede,HasA,0.8,"A gorilla might desire insects as part of its diet, while a centipede is an insect and might have insect prey.",llm_bridge +gorilla,forest,AtLocation,0.8,forest is a natural habitat for both gorillas and wolves,llm_bridge +forest,wolf,AtLocation,0.8,forest is a natural habitat for both gorillas and wolves,llm_bridge +gorilla,meat,UsedFor,0.8,gorillas and wolves both consume meat in their diets,llm_bridge +meat,wolf,UsedFor,0.8,gorillas and wolves both consume meat in their diets,llm_bridge +gorilla,fur,HasA,0.8,gorillas and wolves both possess fur as part of their physical characteristics,llm_bridge +fur,wolf,HasA,0.8,gorillas and wolves both possess fur as part of their physical characteristics,llm_bridge +gorilla,monkey,PartOf,0.8,"Both gorillas and lemurs are primates, which include monkeys.",llm_bridge +monkey,lemur,PartOf,0.8,"Both gorillas and lemurs are primates, which include monkeys.",llm_bridge +gorilla,zoo,AtLocation,0.8,Gorillas and lemurs can both be found in zoos.,llm_bridge +zoo,lemur,AtLocation,0.8,Gorillas and lemurs can both be found in zoos.,llm_bridge +gorilla,banana,HasA,0.8,Gorillas and lemurs both eat bananas in the wild or captivity.,llm_bridge +banana,lemur,HasA,0.8,Gorillas and lemurs both eat bananas in the wild or captivity.,llm_bridge +fur,skin,HasProperty,0.8,fur is part of a gorilla's body and is a type of skin,llm_bridge +gorilla,hair,HasA,0.8,hair grows on a gorilla and is part of skin,llm_bridge +hair,skin,HasProperty,0.8,hair grows on a gorilla and is part of skin,llm_bridge +gorilla,body,PartOf,0.8,both gorillas and skin are parts of a body,llm_bridge +body,skin,PartOf,0.8,both gorillas and skin are parts of a body,llm_bridge +bridge_word:_zoo,ostrich,AtLocation,0.8,explanation: Both gorillas and ostriches can be found in a zoo.,llm_bridge +bridge_word:_animal,ostrich,PartOf,0.8,"explanation: Gorilla is a type of animal, and ostrich is also a type of animal.",llm_bridge +gorilla,bridge_word:_egg,CapableOf,0.8,"explanation: Gorillas can lay eggs (as mammals, they don't, but this is a conceptual bridge), and ostriches have eggs.",llm_bridge +bridge_word:_egg,ostrich,HasA,0.8,"explanation: Gorillas can lay eggs (as mammals, they don't, but this is a conceptual bridge), and ostriches have eggs.",llm_bridge +gorilla,bridge_word:_fur,HasProperty,0.8,explanation: Both gorillas and beavers have fur as a natural property.,llm_bridge +bridge_word:_fur,beaver,HasProperty,0.8,explanation: Both gorillas and beavers have fur as a natural property.,llm_bridge +gorilla,bridge_word:_wood,UsedFor,0.8,"explanation: Gorillas use wood for nesting, and beavers need wood for building their dams and lodges.",llm_bridge +bridge_word:_wood,beaver,HasPrerequisite,0.8,"explanation: Gorillas use wood for nesting, and beavers need wood for building their dams and lodges.",llm_bridge +gorilla,bridge_word:_tree,AtLocation,0.8,"explanation: Both gorillas and beavers are often found near or in trees (gorillas for climbing and nesting, beavers for building and food).",llm_bridge +bridge_word:_tree,beaver,AtLocation,0.8,"explanation: Both gorillas and beavers are often found near or in trees (gorillas for climbing and nesting, beavers for building and food).",llm_bridge +gorilla,*bridge_word:_water**,HasPrerequisite,0.8,"gorillas need water to survive, and sponges live in water.",llm_bridge +*bridge_word:_water**,sponge,HasPrerequisite,0.8,"gorillas need water to survive, and sponges live in water.",llm_bridge +gorilla,*bridge_word:_food**,HasPrerequisite,0.8,"gorillas need food to survive, and sponges can be used as a food source (though not typically for gorillas).",llm_bridge +*bridge_word:_food**,sponge,UsedFor,0.8,"gorillas need food to survive, and sponges can be used as a food source (though not typically for gorillas).",llm_bridge +gorilla,*bridge_word:_absorption**,UsedFor,0.8,"gorillas use absorption (e.g., of nutrients), and sponges have the property of absorbing water.",llm_bridge +*bridge_word:_absorption**,sponge,HasProperty,0.8,"gorillas use absorption (e.g., of nutrients), and sponges have the property of absorbing water.",llm_bridge +forest,deer,AtLocation,0.8,both gorillas and deer can be found in forest habitats,llm_bridge +gorilla,grass,UsedFor,0.8,gorillas and deer both eat grass as part of their diet,llm_bridge +grass,deer,UsedFor,0.8,gorillas and deer both eat grass as part of their diet,llm_bridge +gorilla,animal,HasA,0.8,"both gorillas and deer are types of animals, sharing the broader category",llm_bridge +animal,deer,HasA,0.8,"both gorillas and deer are types of animals, sharing the broader category",llm_bridge +cuckoo,bridge_word:_nest,HasA,0.8,"Birds use nests for resting, laying eggs, and raising young.",llm_bridge +bridge_word:_nest,lovebird,HasA,0.8,"Birds use nests for resting, laying eggs, and raising young.",llm_bridge +cuckoo,bridge_word:_feather,HasA,0.8,Feathers are a defining characteristic of birds.,llm_bridge +bridge_word:_feather,lovebird,HasA,0.8,Feathers are a defining characteristic of birds.,llm_bridge +cuckoo,bridge_word:_egg,HasA,0.8,Birds lay eggs as part of their reproductive process.,llm_bridge +bridge_word:_egg,lovebird,HasA,0.8,Birds lay eggs as part of their reproductive process.,llm_bridge +cuckoo,song,HasA,0.8,Both birds are known for their songs.,llm_bridge +song,lark,HasA,0.8,Both birds are known for their songs.,llm_bridge +cuckoo,nest,HasA,0.8,Both cuckoos and larks build or use nests.,llm_bridge +nest,lark,HasA,0.8,Both cuckoos and larks build or use nests.,llm_bridge +cuckoo,bird,PartOf,0.8,Both are specific types of birds.,llm_bridge +bird,lark,PartOf,0.8,Both are specific types of birds.,llm_bridge +cuckoo,egg,HasA,0.8,both birds lay eggs,llm_bridge +egg,crow,HasA,0.8,both birds lay eggs,llm_bridge +cuckoo,nest,AtLocation,0.8,both birds live in nests,llm_bridge +nest,crow,AtLocation,0.8,both birds live in nests,llm_bridge +cuckoo,worm,UsedFor,0.8,both birds eat worms for food,llm_bridge +worm,crow,UsedFor,0.8,both birds eat worms for food,llm_bridge +cuckoo,nest,PartOf,0.8,both birds build nests for their young,llm_bridge +nest,tern,PartOf,0.8,both birds build nests for their young,llm_bridge +egg,tern,HasA,0.8,both birds lay eggs,llm_bridge +cuckoo,feather,HasA,0.8,both birds are covered in feathers,llm_bridge +feather,tern,HasA,0.8,both birds are covered in feathers,llm_bridge +cuckoo,penguin,LocatedNear,0.8,both are birds found in natural habitats,llm_bridge +penguin,cockatoo,LocatedNear,0.8,both are birds found in natural habitats,llm_bridge +nest,hornbill,AtLocation,0.8,both cuckoos and hornbills are birds that build or use nests,llm_bridge +cuckoo,beak,HasA,0.8,both cuckoos and hornbills are birds that have distinctive beaks,llm_bridge +beak,hornbill,HasA,0.8,both cuckoos and hornbills are birds that have distinctive beaks,llm_bridge +egg,hornbill,HasA,0.8,both cuckoos and hornbills are birds that lay eggs,llm_bridge +cuckoo,cage,AtLocation,0.8,cage is a common location for both cuckoos and parakeets in captivity.,llm_bridge +feather,parakeet,HasA,0.8,both cuckoos and parakeets have feathers as part of their physical characteristics.,llm_bridge +cuckoo,birdseed,UsedFor,0.8,both cuckoos and parakeets can be fed birdseed.,llm_bridge +birdseed,parakeet,UsedFor,0.8,both cuckoos and parakeets can be fed birdseed.,llm_bridge +nest,bunting,AtLocation,0.8,Both birds are found in nests.,llm_bridge +cuckoo,egg,CapableOf,0.8,Both birds lay eggs.,llm_bridge +egg,bunting,CapableOf,0.8,Both birds lay eggs.,llm_bridge +feather,bunting,HasA,0.8,Both birds have feathers.,llm_bridge +cuckoo,hawk,LocatedNear,0.8,both cuckoos and kestrels are found in habitats where hawks also live,llm_bridge +hawk,kestrel,LocatedNear,0.8,both cuckoos and kestrels are found in habitats where hawks also live,llm_bridge +nest,kestrel,PartOf,0.8,both cuckoos and kestrels build nests for their young,llm_bridge +cuckoo,prey,CapableOf,0.8,both cuckoos and kestrels hunt or eat prey,llm_bridge +prey,kestrel,CapableOf,0.8,both cuckoos and kestrels hunt or eat prey,llm_bridge +eggplant,bridge_word:_vegetable,HasProperty,0.8,Both eggplant and kohlrabi are vegetables.,llm_bridge +bridge_word:_vegetable,kohlrabi,HasProperty,0.8,Both eggplant and kohlrabi are vegetables.,llm_bridge +eggplant,stem,PartOf,0.8,the stem is part of both an eggplant and a sprout as they grow.,llm_bridge +stem,sprout,PartOf,0.8,the stem is part of both an eggplant and a sprout as they grow.,llm_bridge +eggplant,plant,PartOf,0.8,an eggplant and a sprout are both parts of a plant.,llm_bridge +plant,sprout,PartOf,0.8,an eggplant and a sprout are both parts of a plant.,llm_bridge +eggplant,garden,AtLocation,0.8,both eggplants and sprouts are commonly found in a garden.,llm_bridge +garden,sprout,AtLocation,0.8,both eggplants and sprouts are commonly found in a garden.,llm_bridge +plant,bean,PartOf,0.8,both eggplant and bean are parts of plants,llm_bridge +garden,bean,AtLocation,0.8,both eggplant and bean are commonly found in gardens,llm_bridge +eggplant,pod,HasA,0.8,"both eggplant and bean can have pods (though eggplant's pod is its fruit, while bean's pod contains seeds)",llm_bridge +pod,bean,HasA,0.8,"both eggplant and bean can have pods (though eggplant's pod is its fruit, while bean's pod contains seeds)",llm_bridge +plant,pea,PartOf,0.8,both are parts of plants,llm_bridge +garden,pea,AtLocation,0.8,both are commonly found in gardens,llm_bridge +pod,pea,HasA,0.8,both can have pods (though eggplants have large ones and peas are inside pods),llm_bridge +eggplant,salad,PartOf,0.8,salad is a dish made with both eggplant and spinach,llm_bridge +salad,spinach,PartOf,0.8,salad is a dish made with both eggplant and spinach,llm_bridge +eggplant,stir-fry,PartOf,0.8,stir-fry is a dish that can include both eggplant and spinach,llm_bridge +stir-fry,spinach,PartOf,0.8,stir-fry is a dish that can include both eggplant and spinach,llm_bridge +eggplant,dish,PartOf,0.8,dish is a common term for food preparations that can contain both eggplant and spinach,llm_bridge +dish,spinach,PartOf,0.8,dish is a common term for food preparations that can contain both eggplant and spinach,llm_bridge +plant,corn,PartOf,0.8,both eggplant and corn are parts of a plant,llm_bridge +garden,corn,AtLocation,0.8,both eggplant and corn can be found in a garden,llm_bridge +eggplant,dish,UsedFor,0.8,both eggplant and corn can be used in a dish,llm_bridge +dish,corn,UsedFor,0.8,both eggplant and corn can be used in a dish,llm_bridge +eggplant,vegetable,HasProperty,0.8,Both eggplant and lettuce are vegetables.,llm_bridge +vegetable,lettuce,HasProperty,0.8,Both eggplant and lettuce are vegetables.,llm_bridge +eggplant,salad,UsedFor,0.8,Both eggplant and lettuce are used in salads.,llm_bridge +salad,lettuce,UsedFor,0.8,Both eggplant and lettuce are used in salads.,llm_bridge +garden,lettuce,AtLocation,0.8,Both eggplant and lettuce can be found in a garden.,llm_bridge +eggplant,vegetable,HasA,0.8,Both eggplant and cabbage are types of vegetables.,llm_bridge +vegetable,cabbage,HasA,0.8,Both eggplant and cabbage are types of vegetables.,llm_bridge +plant,cabbage,PartOf,0.8,Both eggplant and cabbage are parts of the plant kingdom.,llm_bridge +eggplant,food,UsedFor,0.8,Both eggplant and cabbage are used as food.,llm_bridge +food,cabbage,UsedFor,0.8,Both eggplant and cabbage are used as food.,llm_bridge +plant,chard,PartOf,0.8,Both eggplant and chard are plants.,llm_bridge +garden,chard,AtLocation,0.8,Both eggplant and chard can be found in a garden.,llm_bridge +eggplant,soil,AtLocation,0.8,Both eggplants and beets grow in soil.,llm_bridge +soil,beet,AtLocation,0.8,Both eggplants and beets grow in soil.,llm_bridge +plant,beet,PartOf,0.8,Both eggplant and beet are parts of plant-based food categories.,llm_bridge +eggplant,gardener,CapableOf,0.8,A gardener can grow both eggplants and beets.,llm_bridge +gardener,beet,CapableOf,0.8,A gardener can grow both eggplants and beets.,llm_bridge +pheasant,bridge_word:_bird,PartOf,0.8,explanation: Both pheasant and grouse are types of birds.,llm_bridge +bridge_word:_bird,grouse,PartOf,0.8,explanation: Both pheasant and grouse are types of birds.,llm_bridge +pheasant,bridge_word:_nest,HasA,0.8,explanation: Both pheasants and wrens have nests as part of their bird characteristics.,llm_bridge +bridge_word:_nest,wren,HasA,0.8,explanation: Both pheasants and wrens have nests as part of their bird characteristics.,llm_bridge +pheasant,bridge_word:_feather,HasA,0.8,explanation: Both pheasants and wrens have feathers as part of their bird characteristics.,llm_bridge +bridge_word:_feather,wren,HasA,0.8,explanation: Both pheasants and wrens have feathers as part of their bird characteristics.,llm_bridge +pheasant,bridge_word:_egg,HasA,0.8,explanation: Both pheasants and wrens lay eggs as part of their bird characteristics.,llm_bridge +bridge_word:_egg,wren,HasA,0.8,explanation: Both pheasants and wrens lay eggs as part of their bird characteristics.,llm_bridge +bridge_word:_bird,hornbill,PartOf,0.8,both are types of bird,llm_bridge +pheasant,*egg**,HasA,0.8,Both pheasants and kingfishers lay eggs.,llm_bridge +*egg**,kingfisher,HasA,0.8,Both pheasants and kingfishers lay eggs.,llm_bridge +pheasant,*feather**,HasA,0.8,Both pheasants and kingfishers have feathers.,llm_bridge +*feather**,kingfisher,HasA,0.8,Both pheasants and kingfishers have feathers.,llm_bridge +pheasant,*nest**,HasA,0.8,Both pheasants and kingfishers build nests.,llm_bridge +*nest**,kingfisher,HasA,0.8,Both pheasants and kingfishers build nests.,llm_bridge +bridge_word:_bird,albatross,PartOf,0.8,Explanation: Both pheasant and albatross are types of birds.,llm_bridge +pheasant,tree,AtLocation,0.8,both birds can be found in trees,llm_bridge +tree,crow,AtLocation,0.8,both birds can be found in trees,llm_bridge +pheasant,farmer,ReceivesAction,0.8,both birds can be hunted by a farmer,llm_bridge +farmer,crow,ReceivesAction,0.8,both birds can be hunted by a farmer,llm_bridge +pheasant,feather,HasA,0.8,both birds have feathers,llm_bridge +feather,crow,HasA,0.8,both birds have feathers,llm_bridge +pheasant,"bridge_word:_""chicken""",Desires,0.8,"chicken is both a type of pheasant and a type of bird, so the desire for them is similar.",llm_bridge +"bridge_word:_""chicken""",bird,Desires,0.8,"chicken is both a type of pheasant and a type of bird, so the desire for them is similar.",llm_bridge +pheasant,*wing**,HasA,0.8,Both pheasants and starlings have wings.,llm_bridge +*wing**,starling,HasA,0.8,Both pheasants and starlings have wings.,llm_bridge +*feather**,starling,HasA,0.8,Both pheasants and starlings have feathers.,llm_bridge +*nest**,starling,HasA,0.8,Both pheasants and starlings build nests.,llm_bridge +pheasant,,PartOf,0.8,explanation: Both pheasants and grebes have wings as part of their bird anatomy.,llm_bridge +,grebe,PartOf,0.8,explanation: Both pheasants and grebes have wings as part of their bird anatomy.,llm_bridge +pheasant,wing,PartOf,0.8,both pheasants and avocets have wings as part of their bird anatomy.,llm_bridge +wing,avocet,PartOf,0.8,both pheasants and avocets have wings as part of their bird anatomy.,llm_bridge +pheasant,feather,PartOf,0.8,both birds are covered in feathers.,llm_bridge +feather,avocet,PartOf,0.8,both birds are covered in feathers.,llm_bridge +pheasant,nest,HasA,0.8,both birds build or use nests for their offspring.,llm_bridge +nest,avocet,HasA,0.8,both birds build or use nests for their offspring.,llm_bridge +orchard,soil,PartOf,0.8,soil is part of an orchard and the earth contains soil,llm_bridge +soil,earth,HasA,0.8,soil is part of an orchard and the earth contains soil,llm_bridge +orchard,tree,HasA,0.8,an orchard has trees and trees are part of the earth's landscape,llm_bridge +tree,earth,PartOf,0.8,an orchard has trees and trees are part of the earth's landscape,llm_bridge +orchard,water,HasA,0.8,orchards need water and the earth contains water,llm_bridge +water,earth,HasA,0.8,orchards need water and the earth contains water,llm_bridge +orchard,bridge_word:_soil,PartOf,0.8,"explanation: Soil is part of an orchard where trees grow, and it's also part of a mountain landscape.",llm_bridge +bridge_word:_soil,mountain,PartOf,0.8,"explanation: Soil is part of an orchard where trees grow, and it's also part of a mountain landscape.",llm_bridge +orchard,bridge_word:_path,AtLocation,0.8,"explanation: A path can be located in an orchard for access between trees, and it can also be located on a mountain for hiking.",llm_bridge +bridge_word:_path,mountain,AtLocation,0.8,"explanation: A path can be located in an orchard for access between trees, and it can also be located on a mountain for hiking.",llm_bridge +orchard,bridge_word:_tree,PartOf,0.8,"explanation: A tree is a part of an orchard, and trees can also be found at the location of a mountain.",llm_bridge +bridge_word:_tree,mountain,AtLocation,0.8,"explanation: A tree is a part of an orchard, and trees can also be found at the location of a mountain.",llm_bridge +orchard,view,HasA,0.8,"orchards offer views, oceans are viewed",llm_bridge +view,ocean,HasA,0.8,"orchards offer views, oceans are viewed",llm_bridge +orchard,coast,LocatedNear,0.8,"orchards can be near coasts, coasts are part of oceans",llm_bridge +coast,ocean,PartOf,0.8,"orchards can be near coasts, coasts are part of oceans",llm_bridge +soil,furrow,PartOf,0.8,soil is a component of both an orchard and a furrow,llm_bridge +orchard,plow,UsedFor,0.8,a plow is used in both an orchard and to create a furrow,llm_bridge +orchard,farmer,AtLocation,0.8,a farmer works in an orchard and is capable of creating a furrow,llm_bridge +farmer,furrow,CapableOf,0.8,a farmer works in an orchard and is capable of creating a furrow,llm_bridge +orchard,tree,PartOf,0.8,trees are a common component of both orchards and jungles.,llm_bridge +tree,jungle,PartOf,0.8,trees are a common component of both orchards and jungles.,llm_bridge +orchard,fruit,HasA,0.8,both orchards and jungles can contain fruit-bearing plants.,llm_bridge +fruit,jungle,HasA,0.8,both orchards and jungles can contain fruit-bearing plants.,llm_bridge +orchard,plant,PartOf,0.8,both orchards and jungles are composed of various types of plants.,llm_bridge +plant,jungle,PartOf,0.8,both orchards and jungles are composed of various types of plants.,llm_bridge +tree,savanna,HasA,0.8,trees are part of an orchard and can be found in a savanna,llm_bridge +orchard,grass,LocatedNear,0.8,grass is often located near an orchard and is a feature of a savanna,llm_bridge +grass,savanna,HasA,0.8,grass is often located near an orchard and is a feature of a savanna,llm_bridge +plant,savanna,HasA,0.8,plants are part of an orchard and are found in a savanna,llm_bridge +tree,grassland,HasA,0.8,"orchards have fruit trees, grasslands have trees",llm_bridge +orchard,fence,HasA,0.8,"orchards have fences to protect trees, grasslands have fences for livestock",llm_bridge +fence,grassland,HasA,0.8,"orchards have fences to protect trees, grasslands have fences for livestock",llm_bridge +orchard,soil,HasA,0.8,"orchards grow in rich soil, grasslands grow in soil",llm_bridge +soil,grassland,HasA,0.8,"orchards grow in rich soil, grasslands grow in soil",llm_bridge +orchard,water,PartOf,0.8,"Ponds often contain water, and orchards sometimes have a water feature like a pond.",llm_bridge +water,pond,MadeOf,0.8,"Ponds often contain water, and orchards sometimes have a water feature like a pond.",llm_bridge +orchard,bird,HasA,0.8,Orchards can have birds that sometimes drink from or are near ponds.,llm_bridge +bird,pond,AtLocation,0.8,Orchards can have birds that sometimes drink from or are near ponds.,llm_bridge +orchard,fish,HasA,0.8,"An orchard might have a pond with fish, linking the two environments.",llm_bridge +fish,pond,HasA,0.8,"An orchard might have a pond with fish, linking the two environments.",llm_bridge +orchard,*tree**,PartOf,0.8,"An orchard contains trees, and rivers often have trees growing near them.",llm_bridge +*tree**,river,HasProperty,0.8,"An orchard contains trees, and rivers often have trees growing near them.",llm_bridge +orchard,*soil**,PartOf,0.8,"Orchards have soil where trees grow, and rivers often have soil along their banks.",llm_bridge +*soil**,river,HasA,0.8,"Orchards have soil where trees grow, and rivers often have soil along their banks.",llm_bridge +orchard,*water**,UsedFor,0.8,"Water is used for irrigation in an orchard, and a river is a body of water.",llm_bridge +*water**,river,HasA,0.8,"Water is used for irrigation in an orchard, and a river is a body of water.",llm_bridge +tree,meadow,HasA,0.8,Both orchards and meadows often contain trees.,llm_bridge +orchard,grass,HasA,0.8,"Orchards may have grass between trees, while meadows are dominated by grass.",llm_bridge +grass,meadow,HasA,0.8,"Orchards may have grass between trees, while meadows are dominated by grass.",llm_bridge +fence,meadow,HasA,0.8,Both landscapes can be bounded or contained by fences.,llm_bridge +maple,,PartOf,0.8,"Both maple and pine are types of trees, which are large plants.",llm_bridge +,pine,PartOf,0.8,"Both maple and pine are types of trees, which are large plants.",llm_bridge +maple,,MadeOf,0.8,"Both maple and pine are types of wood, which is the material they are made of.",llm_bridge +,pine,MadeOf,0.8,"Both maple and pine are types of wood, which is the material they are made of.",llm_bridge +maple,,AtLocation,0.8,"Both maple and pine can be found in a forest, which is a location where they are commonly located.",llm_bridge +,pine,AtLocation,0.8,"Both maple and pine can be found in a forest, which is a location where they are commonly located.",llm_bridge +maple,tree,PartOf,0.8,trees are part of both maples and branches,llm_bridge +tree,branch,PartOf,0.8,trees are part of both maples and branches,llm_bridge +maple,wood,MadeOf,0.8,both maples and branches are made of wood,llm_bridge +wood,branch,MadeOf,0.8,both maples and branches are made of wood,llm_bridge +maple,leaf,PartOf,0.8,leaves are part of both maples and branches,llm_bridge +,tree,PartOf,0.8,"explanation: A leaf is part of a maple (which is a type of tree), and a leaf is also part of a general tree.",llm_bridge +,tree,MadeOf,0.8,"explanation: A maple is made of wood, and a tree is made of wood.",llm_bridge +maple,,HasA,0.8,"explanation: A maple can have a sapling (a young tree), and a tree can be a sapling (when it's young).",llm_bridge +,tree,HasA,0.8,"explanation: A maple can have a sapling (a young tree), and a tree can be a sapling (when it's young).",llm_bridge +wood,poplar,MadeOf,0.8,Both maple and poplar are types of wood.,llm_bridge +tree,poplar,PartOf,0.8,Both maple and poplar are types of trees.,llm_bridge +maple,bark,HasA,0.8,Both maple and poplar trees have bark.,llm_bridge +bark,poplar,HasA,0.8,Both maple and poplar trees have bark.,llm_bridge +tree,oak,PartOf,0.8,Both maple and oak are types of trees.,llm_bridge +wood,oak,MadeOf,0.8,Both maple and oak are types of wood.,llm_bridge +maple,leaf,HasA,0.8,Both maple and oak trees have leaves.,llm_bridge +leaf,oak,HasA,0.8,Both maple and oak trees have leaves.,llm_bridge +maple,wood,PartOf,0.8,Both maple and mahogany are types of wood.,llm_bridge +wood,mahogany,PartOf,0.8,Both maple and mahogany are types of wood.,llm_bridge +tree,mahogany,PartOf,0.8,Both maple and mahogany come from trees.,llm_bridge +maple,furniture,UsedFor,0.8,Both maple and mahogany are commonly used in making furniture.,llm_bridge +furniture,mahogany,UsedFor,0.8,Both maple and mahogany are commonly used in making furniture.,llm_bridge +peacock,wings,HasA,0.8,both birds have wings,llm_bridge +wings,buzzard,HasA,0.8,both birds have wings,llm_bridge +peacock,feathers,HasA,0.8,both birds have feathers,llm_bridge +feathers,buzzard,HasA,0.8,both birds have feathers,llm_bridge +peacock,bird,PartOf,0.8,both are types of birds,llm_bridge +bird,buzzard,PartOf,0.8,both are types of birds,llm_bridge +peacock,feather,HasA,0.8,both peacocks and tinamous have feathers as part of their anatomy,llm_bridge +feather,tinamou,HasA,0.8,both peacocks and tinamous have feathers as part of their anatomy,llm_bridge +peacock,wing,HasA,0.8,both are birds with wings for flight or balance,llm_bridge +wing,tinamou,HasA,0.8,both are birds with wings for flight or balance,llm_bridge +peacock,egg,HasA,0.8,both birds lay eggs as part of their reproductive process,llm_bridge +egg,tinamou,HasA,0.8,both birds lay eggs as part of their reproductive process,llm_bridge +feather,wagtail,HasA,0.8,both peacocks and wagtails have feathers as part of their bird anatomy.,llm_bridge +wing,wagtail,HasA,0.8,both peacocks and wagtails have wings as part of their bird anatomy.,llm_bridge +peacock,nest,HasA,0.8,both peacocks and wagtails build or use nests as part of their bird life cycle.,llm_bridge +nest,wagtail,HasA,0.8,both peacocks and wagtails build or use nests as part of their bird life cycle.,llm_bridge +peacock,wing,PartOf,0.8,wings are physical parts of both birds that enable flight.,llm_bridge +wing,condor,PartOf,0.8,wings are physical parts of both birds that enable flight.,llm_bridge +feather,condor,HasA,0.8,"feathers are distinctive features of both birds, used for insulation and flight.",llm_bridge +bird,condor,PartOf,0.8,birds are a taxonomic category that both peacocks and condors belong to.,llm_bridge +wing,pelican,PartOf,0.8,wing is a part of both a peacock and a pelican,llm_bridge +feather,pelican,HasA,0.8,both peacocks and pelicans have feathers,llm_bridge +peacock,beak,HasA,0.8,both peacocks and pelicans have beaks,llm_bridge +beak,pelican,HasA,0.8,both peacocks and pelicans have beaks,llm_bridge +feather,wing,MadeOf,0.8,feathers cover a peacock and make up a wing,llm_bridge +peacock,flight,CapableOf,0.8,a peacock can fly using its wings,llm_bridge +flight,wing,UsedFor,0.8,a peacock can fly using its wings,llm_bridge +bird,wing,PartOf,0.8,both peacock and wing are parts of a bird,llm_bridge +feather,wren,HasA,0.8,Both birds have feathers as part of their body.,llm_bridge +nest,wren,HasA,0.8,Both birds build or live in nests.,llm_bridge +egg,wren,HasA,0.8,Both birds lay eggs as part of their reproductive cycle.,llm_bridge +nest,crow,HasA,0.8,both birds build nests,llm_bridge +peacock,branch,AtLocation,0.8,both birds often perch on branches,llm_bridge +branch,crow,AtLocation,0.8,both birds often perch on branches,llm_bridge +peacock,*tail**,HasA,0.8,"explanation: A peacock has a tail, and the tail is part of a feather.",llm_bridge +*tail**,feather,PartOf,0.8,"explanation: A peacock has a tail, and the tail is part of a feather.",llm_bridge +peacock,*plumage**,HasA,0.8,"explanation: A peacock has plumage, and plumage is made of feathers.",llm_bridge +*plumage**,feather,MadeOf,0.8,"explanation: A peacock has plumage, and plumage is made of feathers.",llm_bridge +peacock,*display**,CapableOf,0.8,"explanation: A peacock can display feathers, and feathers are used for display.",llm_bridge +*display**,feather,UsedFor,0.8,"explanation: A peacock can display feathers, and feathers are used for display.",llm_bridge +bird,flycatcher,PartOf,0.8,peacock and flycatcher are both part of the classification of birds.,llm_bridge +wings,flycatcher,HasA,0.8,peacock and flycatcher both have wings as part of their anatomy.,llm_bridge +feathers,flycatcher,HasA,0.8,peacock and flycatcher both have feathers covering their bodies.,llm_bridge +ostrich,egg,HasA,0.8,egg connects as both ostrich and rail produce eggs as offspring,llm_bridge +egg,rail,HasA,0.8,egg connects as both ostrich and rail produce eggs as offspring,llm_bridge +ostrich,nest,HasA,0.8,"both ostriches and terns build nests where they lay their eggs, as part of their reproductive behavior.",llm_bridge +nest,tern,HasA,0.8,"both ostriches and terns build nests where they lay their eggs, as part of their reproductive behavior.",llm_bridge +ostrich,wing,HasA,0.8,"both ostriches and terns have wings, although ostriches are flightless, wings are a common physical feature in birds.",llm_bridge +wing,tern,HasA,0.8,"both ostriches and terns have wings, although ostriches are flightless, wings are a common physical feature in birds.",llm_bridge +ostrich,bridge_word:_feather,HasA,0.8,"explanation: Both ostrich and rook are birds, and birds have feathers.",llm_bridge +bridge_word:_feather,rook,HasA,0.8,"explanation: Both ostrich and rook are birds, and birds have feathers.",llm_bridge +ostrich,bridge_word:_nest,HasA,0.8,"explanation: Both ostrich and rook are birds, and birds build or use nests.",llm_bridge +bridge_word:_nest,rook,HasA,0.8,"explanation: Both ostrich and rook are birds, and birds build or use nests.",llm_bridge +ostrich,bridge_word:_egg,HasA,0.8,"explanation: Both ostrich and rook are birds, and birds lay eggs.",llm_bridge +bridge_word:_egg,rook,HasA,0.8,"explanation: Both ostrich and rook are birds, and birds lay eggs.",llm_bridge +ostrich,pet,HasProperty,0.8,"Both ostrich and cat can be kept as pets, though less commonly for ostriches.",llm_bridge +pet,cat,HasProperty,0.8,"Both ostrich and cat can be kept as pets, though less commonly for ostriches.",llm_bridge +ostrich,food,HasPrerequisite,0.8,Both ostriches and cats require food to survive.,llm_bridge +food,cat,HasPrerequisite,0.8,Both ostriches and cats require food to survive.,llm_bridge +ostrich,animal,PartOf,0.8,Both ostrich and cat are classified as animals.,llm_bridge +animal,cat,PartOf,0.8,Both ostrich and cat are classified as animals.,llm_bridge +ostrich,*egg**,HasA,0.8,Both ostriches and emus lay eggs.,llm_bridge +*egg**,emu,HasA,0.8,Both ostriches and emus lay eggs.,llm_bridge +ostrich,*feather**,HasA,0.8,Both ostriches and emus have feathers as part of their anatomy.,llm_bridge +*feather**,emu,HasA,0.8,Both ostriches and emus have feathers as part of their anatomy.,llm_bridge +ostrich,*bird**,PartOf,0.8,Both ostriches and emus are types of birds.,llm_bridge +*bird**,emu,PartOf,0.8,Both ostriches and emus are types of birds.,llm_bridge +ostrich,feather,HasA,0.8,both birds have feathers as part of their anatomy,llm_bridge +feather,peacock,HasA,0.8,both birds have feathers as part of their anatomy,llm_bridge +wing,peacock,HasA,0.8,both birds have wings as part of their anatomy,llm_bridge +ostrich,egg,CapableOf,0.8,both birds are capable of laying eggs,llm_bridge +egg,peacock,CapableOf,0.8,both birds are capable of laying eggs,llm_bridge +ostrich,*bridge**:_africa,AtLocation,0.8,Both animals are found in the African continent.,llm_bridge +*bridge**:_africa,lion,AtLocation,0.8,Both animals are found in the African continent.,llm_bridge +ostrich,*bridge**:_prey,HasProperty,0.8,"Ostriches can be prey for lions, which hunt prey.",llm_bridge +*bridge**:_prey,lion,CapableOf,0.8,"Ostriches can be prey for lions, which hunt prey.",llm_bridge +ostrich,*bridge**:_savanna,AtLocation,0.8,Both ostriches and lions inhabit the savanna biome.,llm_bridge +*bridge**:_savanna,lion,AtLocation,0.8,Both ostriches and lions inhabit the savanna biome.,llm_bridge +ostrich,bird,PartOf,0.8,Both ostriches and cuckoos are types of birds.,llm_bridge +bird,cuckoo,PartOf,0.8,Both ostriches and cuckoos are types of birds.,llm_bridge +bridge_word:_egg,lark,HasA,0.8,explanation: Both ostrich and lark are birds that lay eggs.,llm_bridge +ostrich,bridge_word:_wing,HasA,0.8,"explanation: Both ostrich and lark are birds that have wings, though ostrich wings are non-functional for flight.",llm_bridge +bridge_word:_wing,lark,HasA,0.8,"explanation: Both ostrich and lark are birds that have wings, though ostrich wings are non-functional for flight.",llm_bridge +bridge_word:_feather,lark,HasA,0.8,explanation: Both ostrich and lark are birds that have feathers covering their bodies.,llm_bridge +ostrich,*feathers**,HasA,0.8,Both ostrich and kestrel are birds that have feathers.,llm_bridge +*feathers**,kestrel,HasA,0.8,Both ostrich and kestrel are birds that have feathers.,llm_bridge +ostrich,*eggs**,CapableOf,0.8,Both ostrich and kestrel lay eggs as part of their reproductive behavior.,llm_bridge +*eggs**,kestrel,CapableOf,0.8,Both ostrich and kestrel lay eggs as part of their reproductive behavior.,llm_bridge +ostrich,*flying**,ReceivesAction,0.8,"Ostrich cannot fly (receives the action of trying to fly but fails), while kestrel can fly (is capable of flying).",llm_bridge +*flying**,kestrel,CapableOf,0.8,"Ostrich cannot fly (receives the action of trying to fly but fails), while kestrel can fly (is capable of flying).",llm_bridge +stethoscope,*wood**,MadeOf,0.8,wood is a material that stethoscopes can be made of (historically or in parts) and is a primary material for axe handles.,llm_bridge +*wood**,axe,MadeOf,0.8,wood is a material that stethoscopes can be made of (historically or in parts) and is a primary material for axe handles.,llm_bridge +stethoscope,*doctor**,UsedFor,0.8,"doctors use stethoscopes, and doctors (or someone else) might be capable of using an axe (though less common).",llm_bridge +*doctor**,axe,CapableOf,0.8,"doctors use stethoscopes, and doctors (or someone else) might be capable of using an axe (though less common).",llm_bridge +stethoscope,doctor,UsedFor,0.8,doctors use both tools for medical purposes,llm_bridge +doctor,needle,UsedFor,0.8,doctors use both tools for medical purposes,llm_bridge +stethoscope,patient,UsedFor,0.8,both tools are used in treating patients,llm_bridge +patient,needle,UsedFor,0.8,both tools are used in treating patients,llm_bridge +stethoscope,medicine,UsedFor,0.8,both tools are used in the practice of medicine,llm_bridge +medicine,needle,UsedFor,0.8,both tools are used in the practice of medicine,llm_bridge +stethoscope,doctor,HasA,0.8,both tools can be possessed by a doctor,llm_bridge +doctor,lighter,HasA,0.8,both tools can be possessed by a doctor,llm_bridge +stethoscope,examination,UsedFor,0.8,both tools can be used during an examination (medical or other types),llm_bridge +examination,lighter,UsedFor,0.8,both tools can be used during an examination (medical or other types),llm_bridge +stethoscope,pocket,HasA,0.8,both tools can be carried in a pocket,llm_bridge +pocket,lighter,HasA,0.8,both tools can be carried in a pocket,llm_bridge +stethoscope,bridge_word:_music,UsedFor,0.8,music connects the medical profession (where stethoscopes are used) to the musical context of a triangle (musical instrument).,llm_bridge +bridge_word:_music,triangle,PartOf,0.8,music connects the medical profession (where stethoscopes are used) to the musical context of a triangle (musical instrument).,llm_bridge +stethoscope,bridge_word:_hospital,AtLocation,0.8,hospital connects the stethoscope (used by doctors) and the triangle (used in hospital music therapy).,llm_bridge +bridge_word:_hospital,triangle,AtLocation,0.8,hospital connects the stethoscope (used by doctors) and the triangle (used in hospital music therapy).,llm_bridge +stethoscope,bridge_word:_sound,UsedFor,0.8,sound connects the stethoscope (used to listen to bodily sounds) and the triangle (used to make musical sounds).,llm_bridge +bridge_word:_sound,triangle,UsedFor,0.8,sound connects the stethoscope (used to listen to bodily sounds) and the triangle (used to make musical sounds).,llm_bridge +stethoscope,*medicine**,UsedFor,0.8,Both tools are used in medical contexts.,llm_bridge +*medicine**,bellows,UsedFor,0.8,Both tools are used in medical contexts.,llm_bridge +stethoscope,*air**,UsedFor,0.8,"Both tools involve air to function (e.g., listening to breath sounds, pumping air).",llm_bridge +*air**,bellows,HasA,0.8,"Both tools involve air to function (e.g., listening to breath sounds, pumping air).",llm_bridge +stethoscope,*hospital**,AtLocation,0.8,Both tools might be found in a hospital setting.,llm_bridge +*hospital**,bellows,AtLocation,0.8,Both tools might be found in a hospital setting.,llm_bridge +*doctor**,rasp,UsedFor,0.8,A doctor uses both a stethoscope and a rasp as tools in their profession.,llm_bridge +stethoscope,*medical_kit**,PartOf,0.8,Both stethoscopes and rasps can be part of a medical kit.,llm_bridge +*medical_kit**,rasp,PartOf,0.8,Both stethoscopes and rasps can be part of a medical kit.,llm_bridge +stethoscope,*tool**,PartOf,0.8,Both stethoscopes and rasps are types of tools.,llm_bridge +*tool**,rasp,PartOf,0.8,Both stethoscopes and rasps are types of tools.,llm_bridge +stethoscope,medical_professional,UsedFor,0.8,Both are tools used by medical professionals in different contexts,llm_bridge +medical_professional,saxophone,UsedFor,0.8,Both are tools used by medical professionals in different contexts,llm_bridge +stethoscope,musician,UsedFor,0.8,Both are tools used by musicians or medical professionals,llm_bridge +musician,saxophone,UsedFor,0.8,Both are tools used by musicians or medical professionals,llm_bridge +stethoscope,band,UsedFor,0.8,"A medical band might use a stethoscope, while a music band uses a saxophone",llm_bridge +band,saxophone,UsedFor,0.8,"A medical band might use a stethoscope, while a music band uses a saxophone",llm_bridge +doctor,level,HasA,0.8,A doctor uses both a stethoscope and a level as tools in their work.,llm_bridge +stethoscope,medical_examination,UsedFor,0.8,Both a stethoscope and a level can be used during medical examinations.,llm_bridge +medical_examination,level,UsedFor,0.8,Both a stethoscope and a level can be used during medical examinations.,llm_bridge +stethoscope,toolkit,PartOf,0.8,Both a stethoscope and a level might be found in a medical or scientific toolkit.,llm_bridge +toolkit,level,PartOf,0.8,Both a stethoscope and a level might be found in a medical or scientific toolkit.,llm_bridge +doctor,comb,UsedFor,0.8,A doctor uses both a stethoscope and a comb in their practice.,llm_bridge +stethoscope,ear,PartOf,0.8,"The stethoscope is used for examining ears (part of the body), while a comb can be used near or on the ears (part of grooming).",llm_bridge +ear,comb,UsedFor,0.8,"The stethoscope is used for examining ears (part of the body), while a comb can be used near or on the ears (part of grooming).",llm_bridge +stethoscope,metal,MadeOf,0.8,Both a stethoscope and a comb can be made of metal components.,llm_bridge +metal,comb,MadeOf,0.8,Both a stethoscope and a comb can be made of metal components.,llm_bridge +stethoscope,,UsedFor,0.8,"a doctor uses a stethoscope and receives action from a planer (e.g., to adjust or repair it).",llm_bridge +,planer,ReceivesAction,0.8,"a doctor uses a stethoscope and receives action from a planer (e.g., to adjust or repair it).",llm_bridge +stethoscope,,AtLocation,0.8,"a workshop is a location where both a stethoscope and planer might be found (e.g., for repair or maintenance).",llm_bridge +,planer,AtLocation,0.8,"a workshop is a location where both a stethoscope and planer might be found (e.g., for repair or maintenance).",llm_bridge +stethoscope,,PartOf,0.8,"both a stethoscope and planer are types of tools, so ""tool"" is a superordinate category.",llm_bridge +,planer,PartOf,0.8,"both a stethoscope and planer are types of tools, so ""tool"" is a superordinate category.",llm_bridge +canary,cage,AtLocation,0.8,both birds can be kept in a cage,llm_bridge +cage,martin,AtLocation,0.8,both birds can be kept in a cage,llm_bridge +canary,birdhouse,AtLocation,0.8,both birds can live in a birdhouse,llm_bridge +birdhouse,martin,AtLocation,0.8,both birds can live in a birdhouse,llm_bridge +canary,nest,AtLocation,0.8,both birds build or live in nests,llm_bridge +nest,martin,AtLocation,0.8,both birds build or live in nests,llm_bridge +canary,seed,UsedFor,0.8,Both birds eat seeds as part of their diet.,llm_bridge +seed,parakeet,UsedFor,0.8,Both birds eat seeds as part of their diet.,llm_bridge +canary,perch,AtLocation,0.8,Both birds often rest on perches.,llm_bridge +perch,parakeet,AtLocation,0.8,Both birds often rest on perches.,llm_bridge +canary,wing,HasA,0.8,both canaries and ibises have wings,llm_bridge +wing,ibis,HasA,0.8,both canaries and ibises have wings,llm_bridge +canary,nest,HasA,0.8,both canaries and ibises build nests,llm_bridge +nest,ibis,HasA,0.8,both canaries and ibises build nests,llm_bridge +canary,feather,HasA,0.8,both canaries and ibises have feathers,llm_bridge +feather,ibis,HasA,0.8,both canaries and ibises have feathers,llm_bridge +canary,*wing**,HasA,0.8,Both canaries and barbets have wings as a physical feature.,llm_bridge +*wing**,barbet,HasA,0.8,Both canaries and barbets have wings as a physical feature.,llm_bridge +canary,*nest**,HasA,0.8,Both canaries and barbets build or use nests for habitation.,llm_bridge +*nest**,barbet,HasA,0.8,Both canaries and barbets build or use nests for habitation.,llm_bridge +canary,*feather**,HasA,0.8,Both canaries and barbets have feathers as part of their bird anatomy.,llm_bridge +*feather**,barbet,HasA,0.8,Both canaries and barbets have feathers as part of their bird anatomy.,llm_bridge +canary,beak,HasA,0.8,Both canaries and hornbills have beaks as part of their bird anatomy.,llm_bridge +feather,hornbill,HasA,0.8,Both canaries and hornbills have feathers as part of their bird anatomy.,llm_bridge +canary,egg,CapableOf,0.8,Both canaries and hornbills are capable of laying eggs.,llm_bridge +egg,hornbill,CapableOf,0.8,Both canaries and hornbills are capable of laying eggs.,llm_bridge +canary,bridge_word:_bird,PartOf,0.8,Both canary and wagtail are types of birds.,llm_bridge +bridge_word:_bird,wagtail,PartOf,0.8,Both canary and wagtail are types of birds.,llm_bridge +canary,bridge_word:_feather,HasA,0.8,Both canary and wagtail have feathers.,llm_bridge +bridge_word:_feather,wagtail,HasA,0.8,Both canary and wagtail have feathers.,llm_bridge +canary,bridge_word:_nest,HasA,0.8,Both canary and wagtail have nests.,llm_bridge +bridge_word:_nest,wagtail,HasA,0.8,Both canary and wagtail have nests.,llm_bridge +feather,quetzal,HasA,0.8,both canaries and quetzals are birds that have feathers.,llm_bridge +nest,quetzal,HasA,0.8,both canaries and quetzals are birds that have nests.,llm_bridge +wing,quetzal,HasA,0.8,both canaries and quetzals are birds that have wings.,llm_bridge +canary,*bird**,PartOf,0.8,Both canaries and crows are types of birds.,llm_bridge +*bird**,crow,PartOf,0.8,Both canaries and crows are types of birds.,llm_bridge +*feather**,crow,HasA,0.8,Both canaries and crows have feathers.,llm_bridge +canary,*flock**,AtLocation,0.8,Both canaries and crows can be found in flocks.,llm_bridge +*flock**,crow,AtLocation,0.8,Both canaries and crows can be found in flocks.,llm_bridge +nest,weaver,HasA,0.8,Both birds have nests.,llm_bridge +feather,weaver,HasA,0.8,Both birds have feathers.,llm_bridge +wing,weaver,HasA,0.8,Both birds have wings.,llm_bridge +canary,*egg**,HasPrerequisite,0.8,Both canaries and quails hatch from eggs.,llm_bridge +*egg**,quail,HasPrerequisite,0.8,Both canaries and quails hatch from eggs.,llm_bridge +canary,*cage**,AtLocation,0.8,Both canaries and quails can be kept in cages.,llm_bridge +*cage**,quail,AtLocation,0.8,Both canaries and quails can be kept in cages.,llm_bridge +canary,*seed**,UsedFor,0.8,Both canaries and quails eat seeds as part of their diet.,llm_bridge +*seed**,quail,UsedFor,0.8,Both canaries and quails eat seeds as part of their diet.,llm_bridge +cumin,dish,HasA,0.8,a dish can contain both cumin and ginger,llm_bridge +dish,ginger,HasA,0.8,a dish can contain both cumin and ginger,llm_bridge +cumin,spice_rack,HasA,0.8,a spice rack contains both cumin and ginger,llm_bridge +spice_rack,ginger,HasA,0.8,a spice rack contains both cumin and ginger,llm_bridge +cumin,cooking,UsedFor,0.8,cooking uses both cumin and ginger,llm_bridge +cooking,ginger,UsedFor,0.8,cooking uses both cumin and ginger,llm_bridge +cumin,spice,HasA,0.8,both cumin and sugar are types of spices used in cooking,llm_bridge +spice,sugar,HasA,0.8,both cumin and sugar are types of spices used in cooking,llm_bridge +cooking,sugar,UsedFor,0.8,cooking is the process that uses both cumin and sugar,llm_bridge +cumin,recipe,UsedFor,0.8,a recipe might call for both cumin and sugar as ingredients,llm_bridge +recipe,sugar,UsedFor,0.8,a recipe might call for both cumin and sugar as ingredients,llm_bridge +cumin,spice_rack,AtLocation,0.8,a spice rack stores spices like cumin and pepper,llm_bridge +spice_rack,pepper,AtLocation,0.8,a spice rack stores spices like cumin and pepper,llm_bridge +cumin,seasoning,PartOf,0.8,both cumin and pepper are types of seasoning used in cooking,llm_bridge +seasoning,pepper,PartOf,0.8,both cumin and pepper are types of seasoning used in cooking,llm_bridge +cumin,dish,UsedFor,0.8,both cumin and pepper can be used in dishes,llm_bridge +dish,pepper,UsedFor,0.8,both cumin and pepper can be used in dishes,llm_bridge +spice,thyme,HasA,0.8,Both cumin and thyme are types of spices used in cooking.,llm_bridge +cumin,seasoning,UsedFor,0.8,Both cumin and thyme are used as seasonings in food.,llm_bridge +seasoning,thyme,UsedFor,0.8,Both cumin and thyme are used as seasonings in food.,llm_bridge +dish,chili,UsedFor,0.8,dish connects both as ingredients used in cooking,llm_bridge +recipe,chili,UsedFor,0.8,recipe connects both as ingredients used in cooking,llm_bridge +spice_rack,chili,AtLocation,0.8,spice rack connects both as they might be stored together,llm_bridge +spice,salt,HasA,0.8,both cumin and salt are types of spices used in cooking,llm_bridge +cooking,salt,UsedFor,0.8,cumin and salt are both used for cooking,llm_bridge +cumin,kitchen,AtLocation,0.8,cumin and salt are typically found in a kitchen,llm_bridge +kitchen,salt,AtLocation,0.8,cumin and salt are typically found in a kitchen,llm_bridge +spice_rack,coriander,AtLocation,0.8,both spices are stored on a spice rack,llm_bridge +cumin,herb,PartOf,0.8,both are types of herbs used as spices,llm_bridge +herb,coriander,PartOf,0.8,both are types of herbs used as spices,llm_bridge +cumin,seed,PartOf,0.8,both are seeds that are used as spices,llm_bridge +seed,coriander,PartOf,0.8,both are seeds that are used as spices,llm_bridge +cumin,spice,HasProperty,0.8,both cumin and basil are types of spice,llm_bridge +spice,basil,HasProperty,0.8,both cumin and basil are types of spice,llm_bridge +cumin,herb,LocatedNear,0.8,"cumin is located near other herbs in spice racks, basil is part of herb family",llm_bridge +herb,basil,PartOf,0.8,"cumin is located near other herbs in spice racks, basil is part of herb family",llm_bridge +cumin,plant,MadeOf,0.8,cumin and basil are both derived from plants,llm_bridge +plant,basil,MadeOf,0.8,cumin and basil are both derived from plants,llm_bridge +spice_rack,cinnamon,AtLocation,0.8,both spices are stored on a spice rack,llm_bridge +cumin,baking,UsedFor,0.8,both spices are used in baking,llm_bridge +baking,cinnamon,UsedFor,0.8,both spices are used in baking,llm_bridge +seasoning,cinnamon,PartOf,0.8,both are types of seasoning,llm_bridge +spice,turmeric,HasA,0.8,both are types of spice,llm_bridge +cumin,curry,MadeOf,0.8,both are ingredients in curry,llm_bridge +spice_rack,turmeric,AtLocation,0.8,both are stored in a spice rack,llm_bridge +thimble,tool,HasA,0.8,both are types of tools,llm_bridge +tool,engine,HasA,0.8,both are types of tools,llm_bridge +thimble,human,UsedFor,0.8,both are used by humans,llm_bridge +human,engine,UsedFor,0.8,both are used by humans,llm_bridge +thimble,work,UsedFor,0.8,both are used to do work,llm_bridge +work,engine,UsedFor,0.8,both are used to do work,llm_bridge +thimble,needle,UsedFor,0.8,Needle connects thimble to spout by being used with thimble and part of a spout (in sewing context).,llm_bridge +needle,spout,PartOf,0.8,Needle connects thimble to spout by being used with thimble and part of a spout (in sewing context).,llm_bridge +thimble,clothing,UsedFor,0.8,Clothing connects thimble to spout by being made with thimble and part of clothing (as in a spout-like design).,llm_bridge +clothing,spout,PartOf,0.8,Clothing connects thimble to spout by being made with thimble and part of clothing (as in a spout-like design).,llm_bridge +thimble,sewing,UsedFor,0.8,Sewing connects thimble to spout by being a common activity using both tools.,llm_bridge +sewing,spout,UsedFor,0.8,Sewing connects thimble to spout by being a common activity using both tools.,llm_bridge +thimble,fabric,UsedFor,0.8,fabric is used for sewing with a thimble and is a material car seats are made of,llm_bridge +fabric,car,MadeOf,0.8,fabric is used for sewing with a thimble and is a material car seats are made of,llm_bridge +thimble,needle,PartOf,0.8,"needle is part of using a thimble in sewing, and some specialized cars might have needle-like structures in design or components",llm_bridge +needle,car,HasA,0.8,"needle is part of using a thimble in sewing, and some specialized cars might have needle-like structures in design or components",llm_bridge +thimble,metal,MadeOf,0.8,both a thimble and a car can be made of metal,llm_bridge +metal,car,MadeOf,0.8,both a thimble and a car can be made of metal,llm_bridge +thimble,*finger**,UsedFor,0.8,Both a thimble and a trigger are used with the finger.,llm_bridge +*finger**,trigger,UsedFor,0.8,Both a thimble and a trigger are used with the finger.,llm_bridge +thimble,*gun**,PartOf,0.8,"A thimble is part of sewing tools, while a trigger is part of a gun.",llm_bridge +*gun**,trigger,PartOf,0.8,"A thimble is part of sewing tools, while a trigger is part of a gun.",llm_bridge +thimble,*metal**,MadeOf,0.8,Both a thimble and a trigger can be made of metal.,llm_bridge +*metal**,trigger,MadeOf,0.8,Both a thimble and a trigger can be made of metal.,llm_bridge +needle,pick,UsedFor,0.8,Both tools are used with a needle for sewing or piercing.,llm_bridge +fabric,pick,UsedFor,0.8,"Both tools are used to work with fabric, either for sewing (thimble) or for picking (pick).",llm_bridge +thimble,thread,UsedFor,0.8,"Both tools can be used in tasks involving thread, such as sewing (thimble) or unpicking stitches (pick).",llm_bridge +thread,pick,UsedFor,0.8,"Both tools can be used in tasks involving thread, such as sewing (thimble) or unpicking stitches (pick).",llm_bridge +thimble,*fabric**,MadeOf,0.8,Fabric is a material used to make both thimbles (for sewing) and lanterns (for covering light).,llm_bridge +*fabric**,lantern,MadeOf,0.8,Fabric is a material used to make both thimbles (for sewing) and lanterns (for covering light).,llm_bridge +thimble,*light**,ReceivesAction,0.8,"Thimbles can be used with light (for threading needles), and lanterns desire to provide light.",llm_bridge +*light**,lantern,Desires,0.8,"Thimbles can be used with light (for threading needles), and lanterns desire to provide light.",llm_bridge +thimble,*thread**,HasA,0.8,"Thimbles have threads, and lanterns have threads (for hanging or securing).",llm_bridge +*thread**,lantern,HasPrerequisite,0.8,"Thimbles have threads, and lanterns have threads (for hanging or securing).",llm_bridge +thimble,finger,UsedFor,0.8,Both the thimble and comb are used with fingers.,llm_bridge +finger,comb,UsedFor,0.8,Both the thimble and comb are used with fingers.,llm_bridge +thimble,hair,HasPrerequisite,0.8,"Thimbles require fabric (related to hair in some contexts), and combs are used for hair.",llm_bridge +hair,comb,UsedFor,0.8,"Thimbles require fabric (related to hair in some contexts), and combs are used for hair.",llm_bridge +fabric,comb,HasPrerequisite,0.8,"Thimbles are used with fabric, and combs require fabric (for making handles).",llm_bridge +needle,triangle,PartOf,0.8,"A needle is used with a thimble for sewing, and it can be part of forming a triangle in geometry or craft.",llm_bridge +fabric,triangle,MadeOf,0.8,"Fabric is used with a thimble for sewing, and it can be made into a triangle shape.",llm_bridge +thimble,quilt,UsedFor,0.8,"A quilt uses a thimble for sewing, and it often has triangular pieces.",llm_bridge +quilt,triangle,HasA,0.8,"A quilt uses a thimble for sewing, and it often has triangular pieces.",llm_bridge +fabric,punch,UsedFor,0.8,fabric is sewn with a thimble and punctured with a punch,llm_bridge +thimble,leather,UsedFor,0.8,leather is sewn with a thimble and punched with a punch,llm_bridge +leather,punch,UsedFor,0.8,leather is sewn with a thimble and punched with a punch,llm_bridge +thimble,bridge_word:_sewing,UsedFor,0.8,sewing connects the use of a thimble to the need for a ladder in certain sewing tasks (like reaching high shelves for materials).,llm_bridge +bridge_word:_sewing,ladder,HasPrerequisite,0.8,sewing connects the use of a thimble to the need for a ladder in certain sewing tasks (like reaching high shelves for materials).,llm_bridge +thimble,bridge_word:_fabric,UsedFor,0.8,"fabric connects a sewing tool (thimble) to a tool that can be used in fabric-related tasks (like hanging fabric, though this is more of a stretch).",llm_bridge +bridge_word:_fabric,ladder,UsedFor,0.8,"fabric connects a sewing tool (thimble) to a tool that can be used in fabric-related tasks (like hanging fabric, though this is more of a stretch).",llm_bridge +holly,ground,AtLocation,0.8,"holly grows in the ground, and a forest is located on the ground.",llm_bridge +ground,forest,AtLocation,0.8,"holly grows in the ground, and a forest is located on the ground.",llm_bridge +holly,berries,HasA,0.8,Both holly and coca trees are known for producing berries.,llm_bridge +berries,coca,HasA,0.8,Both holly and coca trees are known for producing berries.,llm_bridge +holly,leaves,HasA,0.8,Both holly and coca trees have distinct types of leaves.,llm_bridge +leaves,coca,HasA,0.8,Both holly and coca trees have distinct types of leaves.,llm_bridge +holly,caffeine,HasProperty,0.8,"Holly leaves (like ilex guayusa) can contain caffeine, and coca leaves are a source of caffeine (though processed).",llm_bridge +caffeine,coca,MadeOf,0.8,"Holly leaves (like ilex guayusa) can contain caffeine, and coca leaves are a source of caffeine (though processed).",llm_bridge +holly,bridge_word:_berry,HasA,0.8,both holly and dogwood trees have berries,llm_bridge +bridge_word:_berry,dogwood,HasA,0.8,both holly and dogwood trees have berries,llm_bridge +holly,bridge_word:_flower,HasA,0.8,both holly and dogwood trees have distinctive flowers,llm_bridge +bridge_word:_flower,dogwood,HasA,0.8,both holly and dogwood trees have distinctive flowers,llm_bridge +holly,bridge_word:_tree,PartOf,0.8,both holly and dogwood are types of trees,llm_bridge +bridge_word:_tree,dogwood,PartOf,0.8,both holly and dogwood are types of trees,llm_bridge +holly,forest,AtLocation,0.8,holly and cedar can both be found growing in a forest.,llm_bridge +forest,cedar,AtLocation,0.8,holly and cedar can both be found growing in a forest.,llm_bridge +holly,bridge_word:_foliage,HasA,0.8,"explanation: Holly has foliage that is often evergreen, and evergreen trees are defined by their foliage that remains green year-round.",llm_bridge +bridge_word:_foliage,evergreen,HasA,0.8,"explanation: Holly has foliage that is often evergreen, and evergreen trees are defined by their foliage that remains green year-round.",llm_bridge +holly,bridge_word:_leaves,HasA,0.8,"explanation: Holly has leaves that are often evergreen, and evergreen trees have leaves (needles or broad leaves) that stay green year-round.",llm_bridge +bridge_word:_leaves,evergreen,HasA,0.8,"explanation: Holly has leaves that are often evergreen, and evergreen trees have leaves (needles or broad leaves) that stay green year-round.",llm_bridge +holly,bridge_word:_shrub,PartOf,0.8,"explanation: Holly can be a shrub that is part of the evergreen category, and evergreens include shrubs as part of their classification.",llm_bridge +bridge_word:_shrub,evergreen,PartOf,0.8,"explanation: Holly can be a shrub that is part of the evergreen category, and evergreens include shrubs as part of their classification.",llm_bridge +holly,wood,MadeOf,0.8,wood is the common material of both holly and oak trees.,llm_bridge +holly,branch,PartOf,0.8,both are parts of trees,llm_bridge +branch,hickory,PartOf,0.8,both are parts of trees,llm_bridge +holly,leaf,PartOf,0.8,both are parts of trees,llm_bridge +leaf,hickory,PartOf,0.8,both are parts of trees,llm_bridge +wood,hickory,MadeOf,0.8,both are made of wood,llm_bridge +python,snake,HasA,0.8,snake connects as a type of python and something a fox might hunt,llm_bridge +snake,fox,CapableOf,0.8,snake connects as a type of python and something a fox might hunt,llm_bridge +python,reptile,PartOf,0.8,reptile connects as the class of python and what a fox might prey on,llm_bridge +reptile,fox,Desires,0.8,reptile connects as the class of python and what a fox might prey on,llm_bridge +python,egg,HasA,0.8,egg connects as something a python lays and what a fox might eat,llm_bridge +egg,fox,UsedFor,0.8,egg connects as something a python lays and what a fox might eat,llm_bridge +python,*snake**,PartOf,0.8,"A python is a type of snake, and claws are part of a snake's anatomy.",llm_bridge +*snake**,claw,PartOf,0.8,"A python is a type of snake, and claws are part of a snake's anatomy.",llm_bridge +python,*reptile**,PartOf,0.8,"A python is a type of reptile, and claws are a feature of reptiles.",llm_bridge +*reptile**,claw,PartOf,0.8,"A python is a type of reptile, and claws are a feature of reptiles.",llm_bridge +python,*animal**,PartOf,0.8,Both python and claw are attributes or parts of animals.,llm_bridge +*animal**,claw,PartOf,0.8,Both python and claw are attributes or parts of animals.,llm_bridge +python,*africa**,AtLocation,0.8,Both pythons and rhinoceroses are found in Africa.,llm_bridge +*africa**,rhinoceros,AtLocation,0.8,Both pythons and rhinoceroses are found in Africa.,llm_bridge +python,*habitat**,AtLocation,0.8,Both animals share certain habitats in the wild.,llm_bridge +*habitat**,rhinoceros,AtLocation,0.8,Both animals share certain habitats in the wild.,llm_bridge +python,*zoo**,AtLocation,0.8,Both pythons and rhinoceroses can be found in zoos.,llm_bridge +*zoo**,rhinoceros,AtLocation,0.8,Both pythons and rhinoceroses can be found in zoos.,llm_bridge +*snake**,rat,PartOf,0.8,Both are types of snakes.,llm_bridge +python,*food**,UsedFor,0.8,"A python eats rats, and rats can be food for other animals.",llm_bridge +*food**,rat,UsedFor,0.8,"A python eats rats, and rats can be food for other animals.",llm_bridge +python,*predator**,HasProperty,0.8,"A python is a predator that might hunt rats, and rats are prey that can be hunted.",llm_bridge +*predator**,rat,HasProperty,0.8,"A python is a predator that might hunt rats, and rats are prey that can be hunted.",llm_bridge +snake,meat,PartOf,0.8,"snakes are reptiles, and some snakes (including pythons) eat meat",llm_bridge +python,eat,UsedFor,0.8,pythons use eating to consume meat,llm_bridge +eat,meat,CapableOf,0.8,pythons use eating to consume meat,llm_bridge +python,food,UsedFor,0.8,pythons use meat as food,llm_bridge +food,meat,HasA,0.8,pythons use meat as food,llm_bridge +python,snake,PartOf,0.8,"a python is a type of snake, and some snakes desire to eat insects.",llm_bridge +snake,insect,Desires,0.8,"a python is a type of snake, and some snakes desire to eat insects.",llm_bridge +python,food,ReceivesAction,0.8,"a python can receive the action of eating food, and an insect can be used for food.",llm_bridge +food,insect,UsedFor,0.8,"a python can receive the action of eating food, and an insect can be used for food.",llm_bridge +python,prey,CapableOf,0.8,"a python is capable of catching prey, and an insect can be used as prey.",llm_bridge +prey,insect,UsedFor,0.8,"a python is capable of catching prey, and an insect can be used as prey.",llm_bridge +snake,worm,PartOf,0.8,"Both are types of elongated, legless reptiles or animals.",llm_bridge +python,lizard,PartOf,0.8,Both are reptiles that belong to the class of reptiles.,llm_bridge +lizard,worm,PartOf,0.8,Both are reptiles that belong to the class of reptiles.,llm_bridge +food,worm,UsedFor,0.8,"Both can serve as prey for predators, with some pythons eating worms and vice versa in certain ecosystems.",llm_bridge +snake,ferret,HasProperty,0.8,"both python and ferret are types of snakes (though ferrets are not snakes, they share some similarities as both are elongated animals)",llm_bridge +python,animal,HasA,0.8,both python and ferret are types of animals,llm_bridge +animal,ferret,HasA,0.8,both python and ferret are types of animals,llm_bridge +python,pet,UsedFor,0.8,both python (as a pet snake) and ferret can be kept as pets,llm_bridge +pet,ferret,UsedFor,0.8,both python (as a pet snake) and ferret can be kept as pets,llm_bridge +python,ocean,AtLocation,0.8,both animals can be found in or near the ocean,llm_bridge +ocean,orca,AtLocation,0.8,both animals can be found in or near the ocean,llm_bridge +food,orca,UsedFor,0.8,food is a resource for both animals,llm_bridge +python,trainer,ReceivesAction,0.8,a trainer can work with or interact with both animals,llm_bridge +trainer,orca,ReceivesAction,0.8,a trainer can work with or interact with both animals,llm_bridge +snake,ostrich,HasA,0.8,Both are types of reptiles/birds with distinct features,llm_bridge +centipede,*animal**,HasA,0.8,both are animals,llm_bridge +*animal**,wolf,HasA,0.8,both are animals,llm_bridge +centipede,*prey**,UsedFor,0.8,both can be prey for other animals,llm_bridge +*prey**,wolf,UsedFor,0.8,both can be prey for other animals,llm_bridge +centipede,*habitat**,AtLocation,0.8,both live in natural habitats,llm_bridge +*habitat**,wolf,AtLocation,0.8,both live in natural habitats,llm_bridge +centipede,"bridge_word:_""habitat""",AtLocation,0.8,explanation: Both centipedes and rheas can be found in various natural habitats.,llm_bridge +"bridge_word:_""habitat""",rhea,AtLocation,0.8,explanation: Both centipedes and rheas can be found in various natural habitats.,llm_bridge +centipede,"bridge_word:_""food""",UsedFor,0.8,explanation: Both centipedes and rheas can be part of a food chain (predator or prey).,llm_bridge +"bridge_word:_""food""",rhea,UsedFor,0.8,explanation: Both centipedes and rheas can be part of a food chain (predator or prey).,llm_bridge +centipede,"bridge_word:_""animal""",PartOf,0.8,explanation: Both centipedes and rheas are classified as animals in biological taxonomy.,llm_bridge +"bridge_word:_""animal""",rhea,PartOf,0.8,explanation: Both centipedes and rheas are classified as animals in biological taxonomy.,llm_bridge +centipede,food,UsedFor,0.8,centipede is part of the food chain where it can be used as food; gazelle is also part of the food chain where it can be used as food,llm_bridge +food,gazelle,UsedFor,0.8,centipede is part of the food chain where it can be used as food; gazelle is also part of the food chain where it can be used as food,llm_bridge +centipede,predator,CapableOf,0.8,centipede can be a predator; gazelle can be a predator,llm_bridge +predator,gazelle,CapableOf,0.8,centipede can be a predator; gazelle can be a predator,llm_bridge +centipede,habitat,AtLocation,0.8,centipede lives in a habitat; gazelle lives in a habitat,llm_bridge +habitat,gazelle,AtLocation,0.8,centipede lives in a habitat; gazelle lives in a habitat,llm_bridge +centipede,water,AtLocation,0.8,water is a common habitat for both centipedes and fish,llm_bridge +water,fish,AtLocation,0.8,water is a common habitat for both centipedes and fish,llm_bridge +food,fish,UsedFor,0.8,food connects both as it is consumed by both animals,llm_bridge +predator,fish,CapableOf,0.8,predator connects both as they can act as predators in their ecosystems,llm_bridge +centipede,soil,AtLocation,0.8,centipedes and worms are both found in soil.,llm_bridge +centipede,garden,AtLocation,0.8,centipedes and worms are both found in gardens.,llm_bridge +garden,worm,AtLocation,0.8,centipedes and worms are both found in gardens.,llm_bridge +centipede,,AtLocation,0.8,Both centipedes and lemurs can be found in trees.,llm_bridge +,lemur,AtLocation,0.8,Both centipedes and lemurs can be found in trees.,llm_bridge +centipede,,HasA,0.8,"A centipede can be a predator, and a lemur can be prey or predator in the same ecosystem.",llm_bridge +,lemur,CapableOf,0.8,"A centipede can be a predator, and a lemur can be prey or predator in the same ecosystem.",llm_bridge +centipede,bridge_word:_insect,PartOf,0.8,explanation: Both centipedes and spiders are part of the broader category of arthropods or insects.,llm_bridge +bridge_word:_insect,spider,PartOf,0.8,explanation: Both centipedes and spiders are part of the broader category of arthropods or insects.,llm_bridge +centipede,bridge_word:_leg,HasA,0.8,"explanation: Both centipedes and spiders have legs, although in different quantities and arrangements.",llm_bridge +bridge_word:_leg,spider,HasA,0.8,"explanation: Both centipedes and spiders have legs, although in different quantities and arrangements.",llm_bridge +centipede,bridge_word:_web,UsedFor,0.8,"explanation: Spiders create webs, while centipedes might use webs as hunting tools or obstacles.",llm_bridge +bridge_word:_web,spider,MadeOf,0.8,"explanation: Spiders create webs, while centipedes might use webs as hunting tools or obstacles.",llm_bridge +centipede,prey,ReceivesAction,0.8,prey connects the food source and predator,llm_bridge +prey,lion,CapableOf,0.8,prey connects the food source and predator,llm_bridge +predator,lion,ReceivesAction,0.8,predator connects the hunter and prey,llm_bridge +centipede,animal,PartOf,0.8,animal connects both as members of the same biological category,llm_bridge +animal,lion,PartOf,0.8,animal connects both as members of the same biological category,llm_bridge +centipede,venom,HasA,0.8,both animals can possess venom as a defense or hunting mechanism.,llm_bridge +venom,blowfish,HasA,0.8,both animals can possess venom as a defense or hunting mechanism.,llm_bridge +predator,blowfish,CapableOf,0.8,both animals can be predators in their respective ecosystems.,llm_bridge +food,blowfish,UsedFor,0.8,both can be considered food sources in certain cultures.,llm_bridge +centipede,ant,AtLocation,0.8,"an ant is often found near a centipede (location), and a rhinoceros may desire ants (prey)",llm_bridge +ant,rhinoceros,Desires,0.8,"an ant is often found near a centipede (location), and a rhinoceros may desire ants (prey)",llm_bridge +centipede,insect,HasA,0.8,"a centipede has insects as part of its diet, and a rhinoceros has insects in its environment",llm_bridge +insect,rhinoceros,HasA,0.8,"a centipede has insects as part of its diet, and a rhinoceros has insects in its environment",llm_bridge +centipede,bug,ReceivesAction,0.8,"a bug may be prey for a centipede (eaten), and a bug may be prey for a rhinoceros (eaten)",llm_bridge +bug,rhinoceros,ReceivesAction,0.8,"a bug may be prey for a centipede (eaten), and a bug may be prey for a rhinoceros (eaten)",llm_bridge +cockatoo,egg,CapableOf,0.8,both animals lay eggs,llm_bridge +egg,rhea,CapableOf,0.8,both animals lay eggs,llm_bridge +cockatoo,feather,HasA,0.8,both are birds and have feathers,llm_bridge +feather,rhea,HasA,0.8,both are birds and have feathers,llm_bridge +cockatoo,nest,HasA,0.8,both birds build or use nests for raising young,llm_bridge +nest,rhea,HasA,0.8,both birds build or use nests for raising young,llm_bridge +cockatoo,tree,AtLocation,0.8,Trees are natural habitats for both cockatoos and swifts.,llm_bridge +tree,swift,AtLocation,0.8,Trees are natural habitats for both cockatoos and swifts.,llm_bridge +cockatoo,wing,PartOf,0.8,Both cockatoos and swifts have wings as a part of their body.,llm_bridge +wing,swift,PartOf,0.8,Both cockatoos and swifts have wings as a part of their body.,llm_bridge +nest,swift,HasA,0.8,Both birds create or inhabit nests for shelter or reproduction.,llm_bridge +feather,bird,HasA,0.8,both cockatoos and birds have feathers,llm_bridge +cockatoo,wing,HasA,0.8,both cockatoos and birds have wings,llm_bridge +wing,bird,HasA,0.8,both cockatoos and birds have wings,llm_bridge +cockatoo,beak,HasA,0.8,both cockatoos and birds have beaks,llm_bridge +beak,bird,HasA,0.8,both cockatoos and birds have beaks,llm_bridge +cockatoo,*wing**,HasA,0.8,"A cockatoo has wings, and a feather is part of a wing.",llm_bridge +*wing**,feather,PartOf,0.8,"A cockatoo has wings, and a feather is part of a wing.",llm_bridge +cockatoo,*plumage**,HasA,0.8,"A cockatoo has plumage, and plumage is made of feathers.",llm_bridge +cockatoo,*bird**,PartOf,0.8,"A cockatoo is a type of bird, and a feather is part of a bird.",llm_bridge +*bird**,feather,PartOf,0.8,"A cockatoo is a type of bird, and a feather is part of a bird.",llm_bridge +nest,weaver,PartOf,0.8,"Both birds have nests, and a weaver builds part of a nest structure.",llm_bridge +beak,weaver,PartOf,0.8,"Both birds have beaks, and a weaver uses its beak for weaving nest material.",llm_bridge +cockatoo,feathers,HasA,0.8,Both cockatoos and weavers have feathers as part of their physical makeup.,llm_bridge +feathers,weaver,HasA,0.8,Both cockatoos and weavers have feathers as part of their physical makeup.,llm_bridge +cockatoo,bridge_word:_nest,HasA,0.8,both birds have nests where they live or raise young,llm_bridge +bridge_word:_nest,pigeon,HasA,0.8,both birds have nests where they live or raise young,llm_bridge +cockatoo,bridge_word:_seed,UsedFor,0.8,both birds eat seeds as part of their diet,llm_bridge +bridge_word:_seed,pigeon,UsedFor,0.8,both birds eat seeds as part of their diet,llm_bridge +cockatoo,bridge_word:_feather,HasA,0.8,both birds have feathers covering their bodies,llm_bridge +bridge_word:_feather,pigeon,HasA,0.8,both birds have feathers covering their bodies,llm_bridge +cockatoo,birdseed,UsedFor,0.8,"Both cockatoos and avocets are birds, and birdseed can be used as food for both types of birds (though more commonly for cockatoos).",llm_bridge +birdseed,avocet,UsedFor,0.8,"Both cockatoos and avocets are birds, and birdseed can be used as food for both types of birds (though more commonly for cockatoos).",llm_bridge +cockatoo,bridge_word:_feathers,HasA,0.8,explanation: Both cockatoos and peacocks have feathers.,llm_bridge +bridge_word:_feathers,peacock,HasA,0.8,explanation: Both cockatoos and peacocks have feathers.,llm_bridge +cockatoo,bridge_word:_birdcage,AtLocation,0.8,explanation: Both cockatoos and peacocks can be found in birdcages.,llm_bridge +bridge_word:_birdcage,peacock,AtLocation,0.8,explanation: Both cockatoos and peacocks can be found in birdcages.,llm_bridge +cockatoo,bridge_word:_pet,CapableOf,0.8,explanation: Both cockatoos and peacocks can be kept as pets.,llm_bridge +bridge_word:_pet,peacock,CapableOf,0.8,explanation: Both cockatoos and peacocks can be kept as pets.,llm_bridge +cockatoo,,CapableOf,0.8,Both birds lay eggs as part of their reproductive process.,llm_bridge +,quail,CapableOf,0.8,Both birds lay eggs as part of their reproductive process.,llm_bridge +cockatoo,,PartOf,0.8,Both cockatoos and quails belong to the broader category of birds.,llm_bridge +,quail,PartOf,0.8,Both cockatoos and quails belong to the broader category of birds.,llm_bridge +cockatoo,,HasA,0.8,Both birds have feathers as part of their physical structure.,llm_bridge +,quail,HasA,0.8,Both birds have feathers as part of their physical structure.,llm_bridge +cockatoo,pineapple,ReceivesAction,0.8,"Both cockatoos and gulls might be observed interacting with pineapples (e.g., eating them).",llm_bridge +pineapple,gull,ReceivesAction,0.8,"Both cockatoos and gulls might be observed interacting with pineapples (e.g., eating them).",llm_bridge +tree,gull,AtLocation,0.8,Both cockatoos and gulls can be found near trees.,llm_bridge +cockatoo,fish,CapableOf,0.8,Both cockatoos and gulls can catch fish (though less common for cockatoos).,llm_bridge +fish,gull,CapableOf,0.8,Both cockatoos and gulls can catch fish (though less common for cockatoos).,llm_bridge +emu,egg,CapableOf,0.8,Both emus and pythons can lay eggs.,llm_bridge +egg,python,CapableOf,0.8,Both emus and pythons can lay eggs.,llm_bridge +emu,egg,PartOf,0.8,Eggs are a part of the reproductive process for both emus and pythons.,llm_bridge +egg,python,PartOf,0.8,Eggs are a part of the reproductive process for both emus and pythons.,llm_bridge +emu,skin,HasA,0.8,"Both emus and pythons have skin, though of different types.",llm_bridge +skin,python,HasA,0.8,"Both emus and pythons have skin, though of different types.",llm_bridge +egg,penguin,CapableOf,0.8,emus and penguins both lay eggs as part of reproduction,llm_bridge +emu,feather,HasA,0.8,both emus and penguins have feathers as part of their body covering,llm_bridge +feather,penguin,HasA,0.8,both emus and penguins have feathers as part of their body covering,llm_bridge +emu,bird,PartOf,0.8,both emus and penguins are classified as birds in the animal kingdom,llm_bridge +bird,penguin,PartOf,0.8,both emus and penguins are classified as birds in the animal kingdom,llm_bridge +emu,bridge_word:_bird,PartOf,0.8,explanation: Both emu and cassowary are types of birds.,llm_bridge +bridge_word:_bird,cassowary,PartOf,0.8,explanation: Both emu and cassowary are types of birds.,llm_bridge +emu,food,UsedFor,0.8,both emus and crabs can be used as food for other animals or humans,llm_bridge +food,crab,UsedFor,0.8,both emus and crabs can be used as food for other animals or humans,llm_bridge +emu,habitat,AtLocation,0.8,emus and crabs both live in specific habitats (land vs. water),llm_bridge +habitat,crab,AtLocation,0.8,emus and crabs both live in specific habitats (land vs. water),llm_bridge +emu,predator,ReceivesAction,0.8,both emus and crabs can be prey for predators,llm_bridge +predator,crab,ReceivesAction,0.8,both emus and crabs can be prey for predators,llm_bridge +emu,leg,HasA,0.8,legs are a part of an emu and muscles are a part of legs.,llm_bridge +leg,muscle,PartOf,0.8,legs are a part of an emu and muscles are a part of legs.,llm_bridge +bird,muscle,HasA,0.8,"emu is a type of bird, and birds have muscles.",llm_bridge +food,muscle,MadeOf,0.8,"emus can be used for food, and muscles are made of food (nutrients).",llm_bridge +emu,*oil**,HasA,0.8,emus contain oil that can be extracted; emu oil is made of fat.,llm_bridge +*oil**,fat,MadeOf,0.8,emus contain oil that can be extracted; emu oil is made of fat.,llm_bridge +emu,*meat**,HasA,0.8,emus have meat that contains fat.,llm_bridge +*meat**,fat,MadeOf,0.8,emus have meat that contains fat.,llm_bridge +emu,*food**,UsedFor,0.8,"emus are used for food, which can be made of fat.",llm_bridge +emu,cage,AtLocation,0.8,"cage connects as a common location where both emus and rats might be kept, especially in captivity.",llm_bridge +cage,rat,AtLocation,0.8,"cage connects as a common location where both emus and rats might be kept, especially in captivity.",llm_bridge +emu,zoo,AtLocation,0.8,zoo connects as a location where both emus and rats are commonly found for display or conservation.,llm_bridge +emu,cage,HasPrerequisite,0.8,both animals may require a cage for containment or care.,llm_bridge +cage,ferret,HasPrerequisite,0.8,both animals may require a cage for containment or care.,llm_bridge +food,ferret,UsedFor,0.8,both animals need food for sustenance.,llm_bridge +emu,pet,HasProperty,0.8,both emus and ferrets can be kept as pets.,llm_bridge +pet,ferret,HasProperty,0.8,both emus and ferrets can be kept as pets.,llm_bridge +puffin,nest,HasA,0.8,Both birds build or inhabit nests.,llm_bridge +nest,martin,HasA,0.8,Both birds build or inhabit nests.,llm_bridge +puffin,beak,HasA,0.8,Both birds have beaks.,llm_bridge +beak,martin,HasA,0.8,Both birds have beaks.,llm_bridge +puffin,feather,HasA,0.8,Both birds have feathers.,llm_bridge +feather,martin,HasA,0.8,Both birds have feathers.,llm_bridge +puffin,sea,AtLocation,0.8,Both puffins and grebes are commonly found in the sea.,llm_bridge +sea,grebe,AtLocation,0.8,Both puffins and grebes are commonly found in the sea.,llm_bridge +puffin,water,AtLocation,0.8,Both puffins and grebes are birds that live near or in water.,llm_bridge +feather,feather,PartOf,0.8,"A puffin has feathers, and feathers are part of a puffin's body.",llm_bridge +puffin,nest,AtLocation,0.8,puffins and finches both nest in specific locations.,llm_bridge +nest,finch,AtLocation,0.8,puffins and finches both nest in specific locations.,llm_bridge +puffin,egg,HasA,0.8,puffins and finches both lay eggs.,llm_bridge +egg,finch,HasA,0.8,puffins and finches both lay eggs.,llm_bridge +beak,finch,HasA,0.8,puffins and finches both have beaks for eating and other activities.,llm_bridge +puffin,bridge_word:_egg,HasA,0.8,explanation: Both puffins and pheasants are birds that lay eggs.,llm_bridge +bridge_word:_egg,pheasant,HasA,0.8,explanation: Both puffins and pheasants are birds that lay eggs.,llm_bridge +puffin,bridge_word:_feather,HasA,0.8,explanation: Both puffins and pheasants are birds that have feathers.,llm_bridge +bridge_word:_feather,pheasant,HasA,0.8,explanation: Both puffins and pheasants are birds that have feathers.,llm_bridge +puffin,bridge_word:_nest,HasA,0.8,explanation: Both puffins and pheasants are birds that build and use nests.,llm_bridge +bridge_word:_nest,pheasant,HasA,0.8,explanation: Both puffins and pheasants are birds that build and use nests.,llm_bridge +puffin,bird,PartOf,0.8,both puffins and rheas are types of birds,llm_bridge +bird,rhea,PartOf,0.8,both puffins and rheas are types of birds,llm_bridge +puffin,habitat,AtLocation,0.8,both puffins and rheas can be found in natural habitats,llm_bridge +habitat,rhea,AtLocation,0.8,both puffins and rheas can be found in natural habitats,llm_bridge +puffin,bridge_word:_bird,PartOf,0.8,explanation: Both puffins and waxwings are types of birds.,llm_bridge +bridge_word:_bird,waxwing,PartOf,0.8,explanation: Both puffins and waxwings are types of birds.,llm_bridge +puffin,bridge,PartOf,0.8,both are parts of the bird kingdom,llm_bridge +bridge,curassow,PartOf,0.8,both are parts of the bird kingdom,llm_bridge +puffin,egg,CapableOf,0.8,both can lay eggs,llm_bridge +puffin,*bird**,PartOf,0.8,Both are types of birds.,llm_bridge +*bird**,canary,PartOf,0.8,Both are types of birds.,llm_bridge +puffin,*egg**,HasA,0.8,Both birds lay eggs.,llm_bridge +*egg**,canary,HasA,0.8,Both birds lay eggs.,llm_bridge +puffin,*feather**,HasA,0.8,Both birds have feathers.,llm_bridge +*feather**,canary,HasA,0.8,Both birds have feathers.,llm_bridge +beak,thrasher,HasA,0.8,Both birds have beaks used for eating and other functions.,llm_bridge +puffin,wing,HasA,0.8,Both birds have wings for flying or other movements.,llm_bridge +wing,thrasher,HasA,0.8,Both birds have wings for flying or other movements.,llm_bridge +nest,thrasher,AtLocation,0.8,Both birds inhabit or build nests as part of their natural behavior.,llm_bridge +auk,bridge_word:_bird,HasA,0.8,both are types of birds,llm_bridge +bridge_word:_bird,cardinal,HasA,0.8,both are types of birds,llm_bridge +auk,bridge_word:_feather,HasA,0.8,both have feathers as part of their anatomy,llm_bridge +bridge_word:_feather,cardinal,HasA,0.8,both have feathers as part of their anatomy,llm_bridge +auk,bridge_word:_nest,HasA,0.8,both build or inhabit nests,llm_bridge +bridge_word:_nest,cardinal,HasA,0.8,both build or inhabit nests,llm_bridge +auk,wing,PartOf,0.8,wings are physical parts of both birds,llm_bridge +wing,buzzard,PartOf,0.8,wings are physical parts of both birds,llm_bridge +auk,beak,PartOf,0.8,beaks are physical parts of both birds,llm_bridge +beak,buzzard,PartOf,0.8,beaks are physical parts of both birds,llm_bridge +auk,feather,PartOf,0.8,feathers are physical parts covering both birds,llm_bridge +feather,buzzard,PartOf,0.8,feathers are physical parts covering both birds,llm_bridge +auk,feather,HasA,0.8,birds typically have feathers,llm_bridge +auk,duck,LocatedNear,0.8,duck connects as another waterfowl often found in similar habitats,llm_bridge +duck,coot,LocatedNear,0.8,duck connects as another waterfowl often found in similar habitats,llm_bridge +auk,nest,HasA,0.8,Both birds have nests for living and reproduction,llm_bridge +auk,egg,HasA,0.8,Both birds lay eggs as part of their reproductive cycle,llm_bridge +egg,stork,HasA,0.8,Both birds lay eggs as part of their reproductive cycle,llm_bridge +auk,bird,PartOf,0.8,Both are specific types of birds,llm_bridge +auk,wing,HasA,0.8,wings are common anatomical parts used for flight in both birds.,llm_bridge +wing,wren,HasA,0.8,wings are common anatomical parts used for flight in both birds.,llm_bridge +egg,goose,HasA,0.8,both birds lay eggs,llm_bridge +feather,goose,HasA,0.8,both birds have feathers,llm_bridge +nest,goose,HasA,0.8,both birds build nests,llm_bridge +auk,penguin,PartOf,0.8,Both auk and booby are birds often grouped with penguins in discussions of flightless or seabirds.,llm_bridge +penguin,booby,PartOf,0.8,Both auk and booby are birds often grouped with penguins in discussions of flightless or seabirds.,llm_bridge +bridge_word:_nest,barbet,HasA,0.8,Both birds typically have nests for laying eggs and raising young.,llm_bridge +bridge_word:_feather,barbet,HasA,0.8,Both birds have feathers as part of their physical structure.,llm_bridge +auk,bridge_word:_birdhouse,LocatedNear,0.8,"Both birds might be found near birdhouses, which are structures providing shelter or nesting sites.",llm_bridge +bridge_word:_birdhouse,barbet,LocatedNear,0.8,"Both birds might be found near birdhouses, which are structures providing shelter or nesting sites.",llm_bridge +wing,osprey,PartOf,0.8,Both birds have wings.,llm_bridge +feather,osprey,PartOf,0.8,Both birds are covered in feathers.,llm_bridge +nest,osprey,HasA,0.8,Both birds build or use nests.,llm_bridge +coca,pine,LocatedNear,0.8,pine connects as a tree often found near or with other trees like coca and holly in certain ecosystems.,llm_bridge +pine,holly,LocatedNear,0.8,pine connects as a tree often found near or with other trees like coca and holly in certain ecosystems.,llm_bridge +coca,wood,HasA,0.8,Both coca and oak are trees that contain wood.,llm_bridge +wood,oak,HasA,0.8,Both coca and oak are trees that contain wood.,llm_bridge +coca,leaves,HasA,0.8,Both coca and oak trees have leaves.,llm_bridge +leaves,oak,HasA,0.8,Both coca and oak trees have leaves.,llm_bridge +coca,tree,PartOf,0.8,Both coca and oak are types of trees.,llm_bridge +coca,leaf,PartOf,0.8,both trees have leaves,llm_bridge +coca,nut,HasA,0.8,both trees can produce nuts (coca beans and hickory nuts),llm_bridge +nut,hickory,HasA,0.8,both trees can produce nuts (coca beans and hickory nuts),llm_bridge +coca,wood,PartOf,0.8,both trees are made of wood,llm_bridge +wood,hickory,PartOf,0.8,both trees are made of wood,llm_bridge +coca,plant,PartOf,0.8,both coca and evergreen are types of plants,llm_bridge +plant,evergreen,PartOf,0.8,both coca and evergreen are types of plants,llm_bridge +coca,leaf,HasA,0.8,both coca and evergreen trees have leaves,llm_bridge +leaf,evergreen,HasA,0.8,both coca and evergreen trees have leaves,llm_bridge +coca,branch,HasA,0.8,both coca and evergreen trees have branches,llm_bridge +branch,evergreen,HasA,0.8,both coca and evergreen trees have branches,llm_bridge +coca,*leaves**,HasA,0.8,Both coca and cedar are trees that have leaves.,llm_bridge +*leaves**,cedar,HasA,0.8,Both coca and cedar are trees that have leaves.,llm_bridge +coca,*wood**,HasA,0.8,Both coca and cedar are trees that produce wood.,llm_bridge +*wood**,cedar,HasA,0.8,Both coca and cedar are trees that produce wood.,llm_bridge +coca,*branch**,HasA,0.8,Both coca and cedar are trees that have branches.,llm_bridge +*branch**,cedar,HasA,0.8,Both coca and cedar are trees that have branches.,llm_bridge +plant,forest,HasA,0.8,"Coca is a type of plant, and forests contain many plants.",llm_bridge +coca,land,PartOf,0.8,"Coca trees grow on land, and forests are made up of land.",llm_bridge +land,forest,PartOf,0.8,"Coca trees grow on land, and forests are made up of land.",llm_bridge +leaves,dogwood,HasA,0.8,Both trees have leaves.,llm_bridge +coca,flowers,HasA,0.8,Both trees can have flowers.,llm_bridge +flowers,dogwood,HasA,0.8,Both trees can have flowers.,llm_bridge +coca,wood,MadeOf,0.8,Both trees are made of wood.,llm_bridge +wood,dogwood,MadeOf,0.8,Both trees are made of wood.,llm_bridge +coriander,cooking,UsedFor,0.8,"coriander is used for cooking, and sugar is used for cooking",llm_bridge +coriander,food,PartOf,0.8,"coriander is a part of some foods, sugar is made of food ingredients",llm_bridge +food,sugar,MadeOf,0.8,"coriander is a part of some foods, sugar is made of food ingredients",llm_bridge +coriander,dessert,UsedFor,0.8,"coriander can be used in some desserts, sugar is a part of desserts",llm_bridge +dessert,sugar,PartOf,0.8,"coriander can be used in some desserts, sugar is a part of desserts",llm_bridge +coriander,dinner,UsedFor,0.8,dinner is a meal where both coriander and chili can be used as spices.,llm_bridge +dinner,chili,UsedFor,0.8,dinner is a meal where both coriander and chili can be used as spices.,llm_bridge +coriander,soup,UsedFor,0.8,soup is a dish that can be seasoned with both coriander and chili.,llm_bridge +soup,chili,UsedFor,0.8,soup is a dish that can be seasoned with both coriander and chili.,llm_bridge +coriander,sauce,UsedFor,0.8,sauce is a condiment that can incorporate both coriander and chili.,llm_bridge +sauce,chili,UsedFor,0.8,sauce is a condiment that can incorporate both coriander and chili.,llm_bridge +coriander,spice,HasA,0.8,both coriander and cinnamon are types of spice,llm_bridge +spice,cinnamon,HasA,0.8,both coriander and cinnamon are types of spice,llm_bridge +cooking,cinnamon,UsedFor,0.8,both coriander and cinnamon are used in cooking,llm_bridge +coriander,recipe,PartOf,0.8,both coriander and cinnamon can be part of a recipe,llm_bridge +recipe,cinnamon,PartOf,0.8,both coriander and cinnamon can be part of a recipe,llm_bridge +coriander,spice,HasProperty,0.8,coriander and ginger are both spices.,llm_bridge +spice,ginger,HasProperty,0.8,coriander and ginger are both spices.,llm_bridge +coriander,kitchen,AtLocation,0.8,both coriander and ginger are found in a kitchen.,llm_bridge +kitchen,ginger,AtLocation,0.8,both coriander and ginger are found in a kitchen.,llm_bridge +coriander,tea,UsedFor,0.8,both coriander and ginger can be used to make tea.,llm_bridge +tea,ginger,UsedFor,0.8,both coriander and ginger can be used to make tea.,llm_bridge +coriander,spice,PartOf,0.8,"coriander is a type of spice, nutmeg is also a type of spice.",llm_bridge +spice,nutmeg,PartOf,0.8,"coriander is a type of spice, nutmeg is also a type of spice.",llm_bridge +cooking,nutmeg,UsedFor,0.8,coriander and nutmeg are both used for cooking.,llm_bridge +coriander,spice_rack,AtLocation,0.8,"coriander and nutmeg are both spices, which are commonly stored on a spice rack.",llm_bridge +spice_rack,nutmeg,AtLocation,0.8,"coriander and nutmeg are both spices, which are commonly stored on a spice rack.",llm_bridge +coriander,spice_blend,MadeOf,0.8,"a spice blend combines various spices, including coriander and paprika",llm_bridge +spice_blend,paprika,MadeOf,0.8,"a spice blend combines various spices, including coriander and paprika",llm_bridge +coriander,recipe,HasA,0.8,recipes often include both coriander and paprika as ingredients,llm_bridge +recipe,paprika,HasA,0.8,recipes often include both coriander and paprika as ingredients,llm_bridge +coriander,dish,HasA,0.8,dishes can be seasoned with both coriander and paprika,llm_bridge +dish,paprika,HasA,0.8,dishes can be seasoned with both coriander and paprika,llm_bridge +coriander,herb,PartOf,0.8,"coriander is a seed of the coriander herb, basil is an herb itself",llm_bridge +coriander,plant,PartOf,0.8,"coriander comes from the coriander plant, basil is the plant itself",llm_bridge +plant,basil,PartOf,0.8,"coriander comes from the coriander plant, basil is the plant itself",llm_bridge +spice,basil,HasA,0.8,"coriander is a spice, basil can be used as a spice",llm_bridge +coriander,spice,MadeOf,0.8,"coriander is a type of spice, and curry is made from spices",llm_bridge +spice,curry,MadeOf,0.8,"coriander is a type of spice, and curry is made from spices",llm_bridge +spice,anise,HasProperty,0.8,Both coriander and anise are types of spices.,llm_bridge +coriander,herb,HasProperty,0.8,Both coriander and anise are types of herbs often used as spices.,llm_bridge +herb,anise,HasProperty,0.8,Both coriander and anise are types of herbs often used as spices.,llm_bridge +coriander,flavor,HasProperty,0.8,Both coriander and anise contribute distinct flavors.,llm_bridge +flavor,anise,HasProperty,0.8,Both coriander and anise contribute distinct flavors.,llm_bridge +lilac,bridge_word:_flowerbed,AtLocation,0.8,a flowerbed is a location where both lilacs and daffodils can be planted,llm_bridge +bridge_word:_flowerbed,daffodil,AtLocation,0.8,a flowerbed is a location where both lilacs and daffodils can be planted,llm_bridge +lilac,bridge_word:_garden,AtLocation,0.8,a garden is a common place where both lilacs and daffodils are grown,llm_bridge +bridge_word:_garden,daffodil,AtLocation,0.8,a garden is a common place where both lilacs and daffodils are grown,llm_bridge +lilac,bridge_word:_bouquet,UsedFor,0.8,a bouquet can be made from both lilacs and daffodils for decorative purposes,llm_bridge +bridge_word:_bouquet,daffodil,UsedFor,0.8,a bouquet can be made from both lilacs and daffodils for decorative purposes,llm_bridge +lilac,garden,AtLocation,0.8,garden is a place where both lilacs and tulips are commonly found.,llm_bridge +garden,tulip,AtLocation,0.8,garden is a place where both lilacs and tulips are commonly found.,llm_bridge +lilac,flowerbed,AtLocation,0.8,flowerbed is a place where both lilacs and tulips can be planted and grown.,llm_bridge +flowerbed,tulip,AtLocation,0.8,flowerbed is a place where both lilacs and tulips can be planted and grown.,llm_bridge +lilac,soil,AtLocation,0.8,soil is the ground where both lilacs and tulips grow.,llm_bridge +soil,tulip,AtLocation,0.8,soil is the ground where both lilacs and tulips grow.,llm_bridge +lilac,flower,PartOf,0.8,Both are types of flowers.,llm_bridge +flower,orchid,PartOf,0.8,Both are types of flowers.,llm_bridge +garden,orchid,AtLocation,0.8,Both can be found in gardens.,llm_bridge +lilac,vase,AtLocation,0.8,Both can be placed in a vase as decorative flowers.,llm_bridge +vase,orchid,AtLocation,0.8,Both can be placed in a vase as decorative flowers.,llm_bridge +flower,hibiscus,PartOf,0.8,Both lilac and hibiscus are types of flowers.,llm_bridge +garden,hibiscus,AtLocation,0.8,Both lilac and hibiscus can be found in a garden.,llm_bridge +lilac,nectar,HasA,0.8,Both lilac and hibiscus have nectar.,llm_bridge +nectar,hibiscus,HasA,0.8,Both lilac and hibiscus have nectar.,llm_bridge +garden,poppy,AtLocation,0.8,Both flowers can be found in gardens.,llm_bridge +lilac,stem,PartOf,0.8,Both lilac and poppy have stems as part of their plant structure.,llm_bridge +stem,poppy,PartOf,0.8,Both lilac and poppy have stems as part of their plant structure.,llm_bridge +lilac,seed,HasA,0.8,Both lilac and poppy produce seeds as part of their life cycle.,llm_bridge +seed,poppy,HasA,0.8,Both lilac and poppy produce seeds as part of their life cycle.,llm_bridge +lilac,flower,HasA,0.8,Both lilac and bouquet are types of flowers or composed of flowers.,llm_bridge +flower,bouquet,HasA,0.8,Both lilac and bouquet are types of flowers or composed of flowers.,llm_bridge +lilac,bridge_word:_flower,HasA,0.8,explanation: both are types of flowers,llm_bridge +bridge_word:_flower,iris,HasA,0.8,explanation: both are types of flowers,llm_bridge +lilac,color,HasProperty,0.8,both lilacs and violets can have a purple color,llm_bridge +color,violet,HasProperty,0.8,both lilacs and violets can have a purple color,llm_bridge +flower,violet,PartOf,0.8,both lilacs and violets are types of flowers,llm_bridge +flower,dandelion,PartOf,0.8,both are types of flowers,llm_bridge +garden,dandelion,AtLocation,0.8,both can be found in gardens,llm_bridge +lilac,plant,PartOf,0.8,both are types of plants,llm_bridge +plant,dandelion,PartOf,0.8,both are types of plants,llm_bridge +garden,peony,AtLocation,0.8,garden is a common place where both lilacs and peonies are grown,llm_bridge +lilac,bouquet,UsedFor,0.8,bouquet is a collection that can include both lilacs and peonies,llm_bridge +bouquet,peony,UsedFor,0.8,bouquet is a collection that can include both lilacs and peonies,llm_bridge +lilac,bloom,HasProperty,0.8,bloom describes the state of flowering for both lilacs and peonies,llm_bridge +bloom,peony,HasProperty,0.8,bloom describes the state of flowering for both lilacs and peonies,llm_bridge +lynx,fur,HasA,0.8,"lynx has fur, which is part of its body",llm_bridge +fur,body,PartOf,0.8,"lynx has fur, which is part of its body",llm_bridge +lynx,muscle,HasA,0.8,"lynx has muscles, which are part of its body",llm_bridge +lynx,limb,HasA,0.8,"lynx has limbs, which are part of its body",llm_bridge +limb,body,PartOf,0.8,"lynx has limbs, which are part of its body",llm_bridge +lynx,prey,UsedFor,0.8,"lynx uses prey for food, fish can be prey for other animals",llm_bridge +prey,fish,HasA,0.8,"lynx uses prey for food, fish can be prey for other animals",llm_bridge +lynx,water,AtLocation,0.8,"lynx is near water when hunting, fish live in water",llm_bridge +water,fish,HasA,0.8,"lynx is near water when hunting, fish live in water",llm_bridge +lynx,food,HasA,0.8,"lynx has food (fish), fish need food to survive",llm_bridge +food,fish,HasPrerequisite,0.8,"lynx has food (fish), fish need food to survive",llm_bridge +lynx,meat,UsedFor,0.8,both are animals that eat meat,llm_bridge +meat,ferret,UsedFor,0.8,both are animals that eat meat,llm_bridge +lynx,zoo,AtLocation,0.8,both can be found in zoos,llm_bridge +zoo,ferret,AtLocation,0.8,both can be found in zoos,llm_bridge +fur,ferret,HasA,0.8,both animals have fur,llm_bridge +lynx,pet,CapableOf,0.8,Both lynxes and cats can be kept as pets.,llm_bridge +pet,cat,CapableOf,0.8,Both lynxes and cats can be kept as pets.,llm_bridge +lynx,wildlife,PartOf,0.8,Both lynxes and cats are part of the broader category of wildlife.,llm_bridge +wildlife,cat,PartOf,0.8,Both lynxes and cats are part of the broader category of wildlife.,llm_bridge +lynx,earth,AtLocation,0.8,earth is where both lynx and worm might live or hunt.,llm_bridge +earth,worm,AtLocation,0.8,earth is where both lynx and worm might live or hunt.,llm_bridge +lynx,food,UsedFor,0.8,food connects both as something that is consumed by animals (though in different contexts).,llm_bridge +lynx,soil,AtLocation,0.8,soil is where worms live and where lynx might hunt for prey.,llm_bridge +soil,worm,PartOf,0.8,soil is where worms live and where lynx might hunt for prey.,llm_bridge +lynx,prey,CapableOf,0.8,lynx preys on rabbit; rabbit is prey for lynx,llm_bridge +prey,rabbit,HasProperty,0.8,lynx preys on rabbit; rabbit is prey for lynx,llm_bridge +fur,rabbit,HasA,0.8,lynx has fur; rabbit has fur,llm_bridge +lynx,prey,HasProperty,0.8,"lynx sees bird as prey, bird is prey to other animals",llm_bridge +prey,bird,HasProperty,0.8,"lynx sees bird as prey, bird is prey to other animals",llm_bridge +lynx,feather,UsedFor,0.8,"lynx uses feathers for camouflage, bird has feathers",llm_bridge +lynx,hunt,CapableOf,0.8,"lynx can hunt birds, birds can hunt insects",llm_bridge +hunt,bird,CapableOf,0.8,"lynx can hunt birds, birds can hunt insects",llm_bridge +lynx,cat,PartOf,0.8,"A lynx is a type of cat, and a tail is part of a cat.",llm_bridge +cat,tail,PartOf,0.8,"A lynx is a type of cat, and a tail is part of a cat.",llm_bridge +lynx,animal,PartOf,0.8,"A lynx is an animal, and a tail is part of an animal.",llm_bridge +animal,tail,PartOf,0.8,"A lynx is an animal, and a tail is part of an animal.",llm_bridge +lynx,feline,PartOf,0.8,"A lynx is a feline, and a tail is part of a feline.",llm_bridge +feline,tail,PartOf,0.8,"A lynx is a feline, and a tail is part of a feline.",llm_bridge +prey,goose,HasPrerequisite,0.8,prey connects as something that both animals interact with in their ecosystem,llm_bridge +hunt,goose,HasPrerequisite,0.8,hunt connects as an action that links predator and prey,llm_bridge +fur,goose,HasProperty,0.8,"fur connects as a common physical characteristic, though in different forms",llm_bridge +lynx,bridge_word:_zoo,AtLocation,0.8,explanation: Both lynxes and chimpanzees can be found in a zoo.,llm_bridge +bridge_word:_zoo,chimpanzee,AtLocation,0.8,explanation: Both lynxes and chimpanzees can be found in a zoo.,llm_bridge +lynx,bridge_word:_zookeeper,ReceivesAction,0.8,explanation: A zookeeper interacts with and cares for both lynxes and chimpanzees.,llm_bridge +bridge_word:_zookeeper,chimpanzee,ReceivesAction,0.8,explanation: A zookeeper interacts with and cares for both lynxes and chimpanzees.,llm_bridge +lynx,bridge_word:_enclosure,PartOf,0.8,"explanation: Both lynxes and chimpanzees live in enclosures, which are parts of their habitats in captivity.",llm_bridge +bridge_word:_enclosure,chimpanzee,PartOf,0.8,"explanation: Both lynxes and chimpanzees live in enclosures, which are parts of their habitats in captivity.",llm_bridge +nightjar,bridge_word:_bird,PartOf,0.8,Both nightjars and gulls are types of birds.,llm_bridge +bridge_word:_bird,gull,PartOf,0.8,Both nightjars and gulls are types of birds.,llm_bridge +nightjar,beak,HasA,0.8,"beak is a physical feature common to both birds, used for eating and other functions",llm_bridge +beak,hummingbird,HasA,0.8,"beak is a physical feature common to both birds, used for eating and other functions",llm_bridge +nightjar,wings,HasA,0.8,wings are appendages both birds use for flight,llm_bridge +wings,hummingbird,HasA,0.8,wings are appendages both birds use for flight,llm_bridge +nightjar,feathers,HasA,0.8,feathers are a defining characteristic shared by both bird species,llm_bridge +feathers,hummingbird,HasA,0.8,feathers are a defining characteristic shared by both bird species,llm_bridge +nightjar,bird,HasA,0.8,both are types of birds,llm_bridge +bird,bunting,HasA,0.8,both are types of birds,llm_bridge +nightjar,bird,PartOf,0.8,Both nightjar and lark are types of birds.,llm_bridge +nightjar,feather,HasA,0.8,Both nightjar and lark are birds that have feathers.,llm_bridge +feather,lark,HasA,0.8,Both nightjar and lark are birds that have feathers.,llm_bridge +nightjar,nest,HasA,0.8,Both nightjar and lark are birds that build or use nests.,llm_bridge +bridge_word:_bird,cuckoo,PartOf,0.8,explanation: Both nightjar and cuckoo are types of birds.,llm_bridge +bridge_word:_bird,tanager,PartOf,0.8,explanation: Both nightjar and tanager are types of birds.,llm_bridge +nightjar,bridge_word:_feathers,HasA,0.8,explanation: Both nightjar and tanager are birds that have feathers.,llm_bridge +bridge_word:_feathers,tanager,HasA,0.8,explanation: Both nightjar and tanager are birds that have feathers.,llm_bridge +nightjar,bridge_word:_forest,AtLocation,0.8,explanation: Both nightjar and tanager can be found in forest habitats.,llm_bridge +bridge_word:_forest,tanager,AtLocation,0.8,explanation: Both nightjar and tanager can be found in forest habitats.,llm_bridge +bridge_word:_bird,condor,PartOf,0.8,explanation: Both nightjar and condor are types of birds.,llm_bridge +nightjar,tree,AtLocation,0.8,both birds can be found in trees,llm_bridge +tree,thrasher,AtLocation,0.8,both birds can be found in trees,llm_bridge +nest,thrasher,HasA,0.8,both are birds and have nests,llm_bridge +nightjar,egg,HasA,0.8,both are birds and lay eggs,llm_bridge +egg,thrasher,HasA,0.8,both are birds and lay eggs,llm_bridge +nightjar,song,CapableOf,0.8,both birds are known for their singing abilities,llm_bridge +song,nightingale,CapableOf,0.8,both birds are known for their singing abilities,llm_bridge +nest,nightingale,HasA,0.8,both birds build or use nests for living and raising young,llm_bridge +nightjar,wing,HasA,0.8,both birds have wings as part of their anatomy for flight,llm_bridge +wing,nightingale,HasA,0.8,both birds have wings as part of their anatomy for flight,llm_bridge +dodo,wings,HasA,0.8,wings are a common part of both birds,llm_bridge +dodo,feathers,HasA,0.8,feathers are a common feature of both birds,llm_bridge +dodo,beak,HasA,0.8,beaks are a shared physical feature of both birds,llm_bridge +dodo,egg,MadeOf,0.8,Both dodos and storks lay eggs as part of their biological makeup as birds.,llm_bridge +egg,stork,MadeOf,0.8,Both dodos and storks lay eggs as part of their biological makeup as birds.,llm_bridge +dodo,wing,HasA,0.8,Both dodos and storks have wings as physical features common to birds.,llm_bridge +wing,stork,HasA,0.8,Both dodos and storks have wings as physical features common to birds.,llm_bridge +beak,stork,HasA,0.8,"Both dodos and storks have beaks, which are physical features common to birds.",llm_bridge +dodo,egg,HasA,0.8,both dodo and finch are birds that lay eggs,llm_bridge +wing,finch,HasA,0.8,both dodo and finch are birds that have wings,llm_bridge +dodo,nest,HasA,0.8,Both dodo and bulbul are birds that have nests.,llm_bridge +nest,bulbul,HasA,0.8,Both dodo and bulbul are birds that have nests.,llm_bridge +wing,bulbul,HasA,0.8,Both dodo and bulbul are birds that have wings.,llm_bridge +dodo,feather,HasA,0.8,Both dodo and bulbul are birds that have feathers.,llm_bridge +feather,bulbul,HasA,0.8,Both dodo and bulbul are birds that have feathers.,llm_bridge +nest,jay,HasA,0.8,Both birds have nests.,llm_bridge +feather,jay,HasA,0.8,Both birds have feathers.,llm_bridge +egg,jay,HasA,0.8,Both birds lay eggs.,llm_bridge +dodo,penguin,LocatedNear,0.8,penguin is another bird often found in similar habitats or discussed alongside other birds,llm_bridge +penguin,flamingo,LocatedNear,0.8,penguin is another bird often found in similar habitats or discussed alongside other birds,llm_bridge +egg,flamingo,HasA,0.8,both dodos and flamingos have eggs as part of their reproductive cycle,llm_bridge +dodo,wing,PartOf,0.8,both birds have wings as a physical part,llm_bridge +wing,flamingo,PartOf,0.8,both birds have wings as a physical part,llm_bridge +wing,robin,HasA,0.8,wings are a feature of both birds,llm_bridge +egg,robin,HasA,0.8,both birds lay eggs,llm_bridge +nest,robin,HasA,0.8,both birds build nests,llm_bridge +wing,coot,HasA,0.8,wings are common body parts of both birds,llm_bridge +feather,coot,HasA,0.8,feathers are common body parts of both birds,llm_bridge +petrel,bird,HasA,0.8,both are types of birds,llm_bridge +bird,sapsucker,HasA,0.8,both are types of birds,llm_bridge +petrel,wing,PartOf,0.8,both have wings as part of their anatomy,llm_bridge +wing,sapsucker,PartOf,0.8,both have wings as part of their anatomy,llm_bridge +petrel,beak,PartOf,0.8,both have beaks as part of their anatomy,llm_bridge +beak,sapsucker,PartOf,0.8,both have beaks as part of their anatomy,llm_bridge +petrel,wing,HasA,0.8,wings are a common feature of both birds,llm_bridge +wing,kite,HasA,0.8,wings are a common feature of both birds,llm_bridge +petrel,feather,HasA,0.8,feathers are a common feature of both birds,llm_bridge +feather,kite,HasA,0.8,feathers are a common feature of both birds,llm_bridge +petrel,nest,HasA,0.8,nests are a common feature for both birds,llm_bridge +nest,kite,HasA,0.8,nests are a common feature for both birds,llm_bridge +petrel,bridge_word:_nest,HasA,0.8,Both birds have nests for reproduction.,llm_bridge +bridge_word:_nest,oriole,HasA,0.8,Both birds have nests for reproduction.,llm_bridge +petrel,bridge_word:_feather,HasA,0.8,Both birds have feathers for flight and insulation.,llm_bridge +bridge_word:_feather,oriole,HasA,0.8,Both birds have feathers for flight and insulation.,llm_bridge +petrel,bridge_word:_egg,CapableOf,0.8,Both birds are capable of laying eggs.,llm_bridge +bridge_word:_egg,oriole,CapableOf,0.8,Both birds are capable of laying eggs.,llm_bridge +petrel,bridge_word_1:_**bird**,PartOf,0.8,"Both petrels and grebes are types of birds, so ""bird"" serves as their common category.",llm_bridge +bridge_word_1:_**bird**,grebe,PartOf,0.8,"Both petrels and grebes are types of birds, so ""bird"" serves as their common category.",llm_bridge +petrel,bridge_word_2:_**water**,AtLocation,0.8,Petrels and grebes are both often found in or near water environments.,llm_bridge +bridge_word_2:_**water**,grebe,AtLocation,0.8,Petrels and grebes are both often found in or near water environments.,llm_bridge +petrel,bridge_word_3:_**wing**,HasA,0.8,"Both petrels and grebes, being birds, have wings as a common physical feature.",llm_bridge +bridge_word_3:_**wing**,grebe,HasA,0.8,"Both petrels and grebes, being birds, have wings as a common physical feature.",llm_bridge +petrel,bridge_word:_bird,PartOf,0.8,Both a petrel and a cowbird are types of bird.,llm_bridge +bridge_word:_bird,cowbird,PartOf,0.8,Both a petrel and a cowbird are types of bird.,llm_bridge +bridge_word:_feather,cowbird,HasA,0.8,Both birds have feathers.,llm_bridge +petrel,bridge_word:_nest,AtLocation,0.8,Both birds are found at or build nests.,llm_bridge +bridge_word:_nest,cowbird,AtLocation,0.8,Both birds are found at or build nests.,llm_bridge +petrel,bridge_word:_wings,HasA,0.8,both birds have wings,llm_bridge +bridge_word:_wings,osprey,HasA,0.8,both birds have wings,llm_bridge +bridge_word:_nest,osprey,HasA,0.8,both birds have nests,llm_bridge +petrel,bridge_word:_feathers,HasA,0.8,both birds have feathers,llm_bridge +bridge_word:_feathers,osprey,HasA,0.8,both birds have feathers,llm_bridge +petrel,pet,HasA,0.8,both are types of pets,llm_bridge +pet,cockatoo,HasA,0.8,both are types of pets,llm_bridge +petrel,cage,AtLocation,0.8,both can be kept in cages,llm_bridge +cage,cockatoo,AtLocation,0.8,both can be kept in cages,llm_bridge +feather,cockatoo,HasA,0.8,both are birds with feathers,llm_bridge +petrel,bridge_word_1:_wing,HasA,0.8,explanation: both petrels and cormorants are birds that have wings.,llm_bridge +bridge_word_1:_wing,cormorant,HasA,0.8,explanation: both petrels and cormorants are birds that have wings.,llm_bridge +petrel,bridge_word_2:_fish,UsedFor,0.8,explanation: both petrels and cormorants use fish as food.,llm_bridge +bridge_word_2:_fish,cormorant,UsedFor,0.8,explanation: both petrels and cormorants use fish as food.,llm_bridge +petrel,bridge_word_3:_nest,HasA,0.8,explanation: both petrels and cormorants have nests where they lay eggs.,llm_bridge +bridge_word_3:_nest,cormorant,HasA,0.8,explanation: both petrels and cormorants have nests where they lay eggs.,llm_bridge +petrel,bridge_word:_wing,PartOf,0.8,"explanation: Both petrels and geese are birds, and wings are a part of both birds.",llm_bridge +bridge_word:_wing,goose,PartOf,0.8,"explanation: Both petrels and geese are birds, and wings are a part of both birds.",llm_bridge +bridge_word:_egg,goose,CapableOf,0.8,explanation: Petrels and geese are both birds that lay eggs.,llm_bridge +petrel,bridge_word:_fly,CapableOf,0.8,explanation: Petrels and geese are both birds capable of flying.,llm_bridge +bridge_word:_fly,goose,CapableOf,0.8,explanation: Petrels and geese are both birds capable of flying.,llm_bridge +petrel,beak,HasA,0.8,Both petrels and birds have beaks.,llm_bridge +unicycle,wheel,PartOf,0.8,both unicycles and engines contain wheels,llm_bridge +wheel,engine,PartOf,0.8,both unicycles and engines contain wheels,llm_bridge +unicycle,bicycle,LocatedNear,0.8,bicycles (related to unicycles) may be powered by engines,llm_bridge +bicycle,engine,UsedFor,0.8,bicycles (related to unicycles) may be powered by engines,llm_bridge +unicycle,motion,CapableOf,0.8,both unicycles and engines can cause motion,llm_bridge +motion,engine,UsedFor,0.8,both unicycles and engines can cause motion,llm_bridge +unicycle,handlebar,PartOf,0.8,a unicycle has handlebars for control; some carts have handlebars for pulling,llm_bridge +handlebar,cart,HasA,0.8,a unicycle has handlebars for control; some carts have handlebars for pulling,llm_bridge +unicycle,road,AtLocation,0.8,both unicycles and carts can be found on roads,llm_bridge +unicycle,pilot,UsedFor,0.8,Both a unicycle and airplane can be used or operated by a pilot (though a unicycle is typically ridden).,llm_bridge +pilot,airplane,UsedFor,0.8,Both a unicycle and airplane can be used or operated by a pilot (though a unicycle is typically ridden).,llm_bridge +unicycle,ride,ReceivesAction,0.8,"Both a unicycle and airplane can receive the action of ""riding"" or being ridden/traveled in.",llm_bridge +ride,airplane,ReceivesAction,0.8,"Both a unicycle and airplane can receive the action of ""riding"" or being ridden/traveled in.",llm_bridge +wheel,tractor,PartOf,0.8,wheels are essential components of both vehicles,llm_bridge +unicycle,driver,UsedFor,0.8,drivers operate both a unicycle and a tractor,llm_bridge +driver,tractor,UsedFor,0.8,drivers operate both a unicycle and a tractor,llm_bridge +unicycle,farm,AtLocation,0.8,"tractors are often used on farms, and unicycles might be seen in farm settings (though less common)",llm_bridge +farm,tractor,AtLocation,0.8,"tractors are often used on farms, and unicycles might be seen in farm settings (though less common)",llm_bridge +wheel,ship,PartOf,0.8,Both unicycle and ship have wheels (even if ship wheels are on the steering mechanism),llm_bridge +unicycle,deck,HasA,0.8,Unicycle can have a small deck-like platform; ship has a deck as part of its structure,llm_bridge +deck,ship,PartOf,0.8,Unicycle can have a small deck-like platform; ship has a deck as part of its structure,llm_bridge +unicycle,pilot,CapableOf,0.8,Both vehicles can be piloted by a person,llm_bridge +pilot,ship,CapableOf,0.8,Both vehicles can be piloted by a person,llm_bridge +unicycle,ride,UsedFor,0.8,riding connects both vehicles as they are used for transportation or recreation.,llm_bridge +ride,canoe,UsedFor,0.8,riding connects both vehicles as they are used for transportation or recreation.,llm_bridge +unicycle,wheel,HasA,0.8,"wheel connects both as canoes historically had wheels for transport, though typically not part of the main structure.",llm_bridge +wheel,canoe,PartOf,0.8,"wheel connects both as canoes historically had wheels for transport, though typically not part of the main structure.",llm_bridge +unicycle,water,LocatedNear,0.8,"water connects both as canoes are in water, while unicycles are often found near water in recreational settings.",llm_bridge +water,canoe,AtLocation,0.8,"water connects both as canoes are in water, while unicycles are often found near water in recreational settings.",llm_bridge +wheel,boat,HasA,0.8,both vehicles have wheels,llm_bridge +unicycle,rider,UsedFor,0.8,both vehicles are used by riders,llm_bridge +rider,boat,UsedFor,0.8,both vehicles are used by riders,llm_bridge +unicycle,transport,UsedFor,0.8,both vehicles are used for transportation,llm_bridge +transport,boat,UsedFor,0.8,both vehicles are used for transportation,llm_bridge +wheel,truck,HasA,0.8,Both vehicles have wheels as essential parts.,llm_bridge +road,truck,AtLocation,0.8,Both vehicles operate on roads.,llm_bridge +transport,truck,UsedFor,0.8,Both are used for transportation.,llm_bridge +unicycle,*wheel**,PartOf,0.8,"Both a unicycle and glass can be associated with wheels (though glass isn't typically made of wheels, it can be shaped into wheel-like forms or contain wheels).",llm_bridge +*wheel**,glass,MadeOf,0.8,"Both a unicycle and glass can be associated with wheels (though glass isn't typically made of wheels, it can be shaped into wheel-like forms or contain wheels).",llm_bridge +unicycle,*shop**,AtLocation,0.8,"A unicycle might be found in a bike shop, and glass might be found in a shop (e.g., a glassware shop).",llm_bridge +*shop**,glass,AtLocation,0.8,"A unicycle might be found in a bike shop, and glass might be found in a shop (e.g., a glassware shop).",llm_bridge +unicycle,*crystal**,UsedFor,0.8,"A unicycle could be used to transport crystal, and crystal is a form of glass.",llm_bridge +*crystal**,glass,MadeOf,0.8,"A unicycle could be used to transport crystal, and crystal is a form of glass.",llm_bridge +bison,fur,HasA,0.8,both animals have fur covering their bodies.,llm_bridge +fur,cat,HasA,0.8,both animals have fur covering their bodies.,llm_bridge +bison,grass,UsedFor,0.8,both animals may use grass for food.,llm_bridge +grass,cat,UsedFor,0.8,both animals may use grass for food.,llm_bridge +bison,home,AtLocation,0.8,both animals live in a specific habitat or home environment.,llm_bridge +home,cat,AtLocation,0.8,both animals live in a specific habitat or home environment.,llm_bridge +grass,worm,HasPrerequisite,0.8,grass connects bison's diet and worm's habitat,llm_bridge +bison,soil,HasPrerequisite,0.8,soil connects bison's habitat and worm's environment,llm_bridge +bison,animal,PartOf,0.8,animal connects both bison and worm as living creatures,llm_bridge +animal,worm,PartOf,0.8,animal connects both bison and worm as living creatures,llm_bridge +bison,jaw,HasA,0.8,bison has a jaw that contains teeth,llm_bridge +jaw,tooth,PartOf,0.8,bison has a jaw that contains teeth,llm_bridge +bison,mouth,HasA,0.8,bison has a mouth that contains teeth,llm_bridge +mouth,tooth,PartOf,0.8,bison has a mouth that contains teeth,llm_bridge +bison,chewing,CapableOf,0.8,bison uses teeth for chewing,llm_bridge +chewing,tooth,UsedFor,0.8,bison uses teeth for chewing,llm_bridge +bison,bridge_word:_animal,PartOf,0.8,Both bison and lemur are part of the broader category of animals.,llm_bridge +bridge_word:_animal,lemur,PartOf,0.8,Both bison and lemur are part of the broader category of animals.,llm_bridge +bison,bridge_word:_zoo,AtLocation,0.8,Both bison and lemur can be found in a zoo.,llm_bridge +bridge_word:_zoo,lemur,AtLocation,0.8,Both bison and lemur can be found in a zoo.,llm_bridge +bison,bridge_word:_zookeeper,HasA,0.8,A zookeeper cares for both bison and lemur in a zoo.,llm_bridge +bridge_word:_zookeeper,lemur,HasA,0.8,A zookeeper cares for both bison and lemur in a zoo.,llm_bridge +bison,habitat,AtLocation,0.8,Both animals inhabit natural environments.,llm_bridge +habitat,cassowary,AtLocation,0.8,Both animals inhabit natural environments.,llm_bridge +bison,food,UsedFor,0.8,Both animals can be hunted or farmed for food.,llm_bridge +food,cassowary,UsedFor,0.8,Both animals can be hunted or farmed for food.,llm_bridge +bison,skin,HasA,0.8,Both animals have protective outer coverings.,llm_bridge +skin,cassowary,HasA,0.8,Both animals have protective outer coverings.,llm_bridge +bridge_word:_zoo,marmoset,AtLocation,0.8,Both animals are commonly found in zoos.,llm_bridge +bison,bridge_word:_tree,LocatedNear,0.8,"Bison graze near trees, while marmosets live in trees.",llm_bridge +bridge_word:_tree,marmoset,PartOf,0.8,"Bison graze near trees, while marmosets live in trees.",llm_bridge +bison,bridge_word:_grass,ReceivesAction,0.8,"Bison eat grass, while marmosets often live near grassy areas.",llm_bridge +bridge_word:_grass,marmoset,LocatedNear,0.8,"Bison eat grass, while marmosets often live near grassy areas.",llm_bridge +bison,shell,ReceivesAction,0.8,"bison can have a shell-like structure (rarely), snail has a shell",llm_bridge +habitat,snail,AtLocation,0.8,habitat is where both animals live,llm_bridge +bison,herd,PartOf,0.8,bison are part of a herd and a flock can also be referred to as a herd of animals,llm_bridge +herd,flock,PartOf,0.8,bison are part of a herd and a flock can also be referred to as a herd of animals,llm_bridge +bison,group,PartOf,0.8,bison can be part of a group and a flock is a type of group of animals,llm_bridge +group,flock,PartOf,0.8,bison can be part of a group and a flock is a type of group of animals,llm_bridge +bison,cattle,PartOf,0.8,"bison are a type of cattle (though not domesticated), and a flock can be made of various types of animals including cattle",llm_bridge +cattle,flock,MadeOf,0.8,"bison are a type of cattle (though not domesticated), and a flock can be made of various types of animals including cattle",llm_bridge +bison,*herd**,PartOf,0.8,Both bison and bulls are part of a herd.,llm_bridge +*herd**,bull,PartOf,0.8,Both bison and bulls are part of a herd.,llm_bridge +bison,*cattle**,PartOf,0.8,Both bison (as wild cattle) and bulls are part of the cattle family.,llm_bridge +*cattle**,bull,PartOf,0.8,Both bison (as wild cattle) and bulls are part of the cattle family.,llm_bridge +bison,*male**,HasA,0.8,Both bison and bulls can be male animals.,llm_bridge +*male**,bull,HasA,0.8,Both bison and bulls can be male animals.,llm_bridge +bison,grass,HasProperty,0.8,bison and rabbits both eat grass as part of their diet,llm_bridge +grass,rabbit,HasProperty,0.8,bison and rabbits both eat grass as part of their diet,llm_bridge +bison,meadow,AtLocation,0.8,bison and rabbits can both be found in meadows,llm_bridge +meadow,rabbit,AtLocation,0.8,bison and rabbits can both be found in meadows,llm_bridge +bison,grassland,AtLocation,0.8,"bison and rabbits inhabit grasslands, which are open areas with grass",llm_bridge +grassland,rabbit,AtLocation,0.8,"bison and rabbits inhabit grasslands, which are open areas with grass",llm_bridge +booby,bridge_word:_feather,HasA,0.8,both are birds that have feathers.,llm_bridge +bridge_word:_feather,cotinga,HasA,0.8,both are birds that have feathers.,llm_bridge +booby,bridge_word:_nest,HasA,0.8,both are birds that build or use nests.,llm_bridge +bridge_word:_nest,cotinga,HasA,0.8,both are birds that build or use nests.,llm_bridge +booby,bridge_word:_branch,AtLocation,0.8,both are birds that sit on branches.,llm_bridge +bridge_word:_branch,cotinga,AtLocation,0.8,both are birds that sit on branches.,llm_bridge +bridge_word:_feather,oxpecker,HasA,0.8,explanation: Both booby and oxpecker are birds that have feathers.,llm_bridge +booby,bridge_word:_nest,PartOf,0.8,explanation: Both booby and oxpecker build nests as part of their natural habitat.,llm_bridge +bridge_word:_nest,oxpecker,PartOf,0.8,explanation: Both booby and oxpecker build nests as part of their natural habitat.,llm_bridge +booby,bridge_word:_egg,CapableOf,0.8,explanation: Both booby and oxpecker are capable of laying eggs.,llm_bridge +bridge_word:_egg,oxpecker,CapableOf,0.8,explanation: Both booby and oxpecker are capable of laying eggs.,llm_bridge +booby,wing,HasA,0.8,wings are common parts of both birds,llm_bridge +wing,bunting,HasA,0.8,wings are common parts of both birds,llm_bridge +booby,feather,HasA,0.8,feathers are common parts of both birds,llm_bridge +booby,nest,HasA,0.8,both birds have nests where they lay eggs,llm_bridge +nest,bunting,HasA,0.8,both birds have nests where they lay eggs,llm_bridge +booby,parrot,AtLocation,0.8,Parrots are birds like booby and cockatoo.,llm_bridge +parrot,cockatoo,PartOf,0.8,Parrots are birds like booby and cockatoo.,llm_bridge +booby,egg,HasA,0.8,Both birds lay eggs as part of reproduction.,llm_bridge +egg,quetzal,HasA,0.8,Both birds lay eggs as part of reproduction.,llm_bridge +booby,bridge_word:_egg,HasA,0.8,Both booby and rhea are birds/animals that lay eggs.,llm_bridge +bridge_word:_egg,rhea,HasA,0.8,Both booby and rhea are birds/animals that lay eggs.,llm_bridge +nest,hoatzin,HasA,0.8,both birds build or inhabit nests,llm_bridge +wing,hoatzin,HasA,0.8,both birds have wings for flight,llm_bridge +booby,pigeon,PartOf,0.8,pigeon connects booby and rail as a related bird species,llm_bridge +pigeon,rail,PartOf,0.8,pigeon connects booby and rail as a related bird species,llm_bridge +egg,osprey,HasA,0.8,both birds lay eggs as part of reproduction,llm_bridge +wing,osprey,HasA,0.8,both birds have wings for flying,llm_bridge +booby,cage,AtLocation,0.8,cages are common places where both booby and canary birds might be kept or observed,llm_bridge +cage,canary,AtLocation,0.8,cages are common places where both booby and canary birds might be kept or observed,llm_bridge +egg,canary,HasA,0.8,both birds lay eggs as part of their biological lifecycle,llm_bridge +paprika,seasoning,PartOf,0.8,Both paprika and coriander are types of seasoning used in cooking.,llm_bridge +seasoning,coriander,PartOf,0.8,Both paprika and coriander are types of seasoning used in cooking.,llm_bridge +paprika,spice_rack,AtLocation,0.8,Both paprika and coriander are commonly stored in a spice rack.,llm_bridge +paprika,recipe,UsedFor,0.8,Both paprika and coriander are ingredients used in various recipes.,llm_bridge +recipe,coriander,UsedFor,0.8,Both paprika and coriander are ingredients used in various recipes.,llm_bridge +paprika,dried,HasProperty,0.8,both paprika and thyme can be sold as dried forms,llm_bridge +dried,thyme,HasProperty,0.8,both paprika and thyme can be sold as dried forms,llm_bridge +paprika,spice,HasA,0.8,both paprika and thyme are types of spices,llm_bridge +paprika,cooking,UsedFor,0.8,both are used in cooking,llm_bridge +cooking,thyme,UsedFor,0.8,both are used in cooking,llm_bridge +paprika,dish,UsedFor,0.8,both paprika and basil are used in cooking dishes,llm_bridge +dish,basil,UsedFor,0.8,both paprika and basil are used in cooking dishes,llm_bridge +paprika,spice_blend,MadeOf,0.8,spice blend connects as both are ingredients in it,llm_bridge +spice_blend,cardamom,MadeOf,0.8,spice blend connects as both are ingredients in it,llm_bridge +dish,cardamom,UsedFor,0.8,dish connects as both are used to flavor dishes,llm_bridge +spice_rack,anise,AtLocation,0.8,both are spices that can be stored on a spice rack,llm_bridge +paprika,dish,PartOf,0.8,both are spices that can be part of a dish,llm_bridge +dish,anise,PartOf,0.8,both are spices that can be part of a dish,llm_bridge +paprika,flavoring,UsedFor,0.8,both are used as flavoring in cooking,llm_bridge +flavoring,anise,UsedFor,0.8,both are used as flavoring in cooking,llm_bridge +paprika,capsicum,MadeOf,0.8,Both paprika and pepper are derived from plants in the capsicum family.,llm_bridge +capsicum,pepper,MadeOf,0.8,Both paprika and pepper are derived from plants in the capsicum family.,llm_bridge +paprika,pod,PartOf,0.8,"Paprika comes from dried capsicum pods, and peppers are the fruit of capsicum plants in their pod form.",llm_bridge +pod,pepper,PartOf,0.8,"Paprika comes from dried capsicum pods, and peppers are the fruit of capsicum plants in their pod form.",llm_bridge +paprika,flavor,HasProperty,0.8,Both paprika and pepper are spices that contribute flavor to food.,llm_bridge +flavor,pepper,HasProperty,0.8,Both paprika and pepper are spices that contribute flavor to food.,llm_bridge +paprika,cuisine,UsedFor,0.8,Both paprika and nutmeg are used in various cuisines.,llm_bridge +cuisine,nutmeg,UsedFor,0.8,Both paprika and nutmeg are used in various cuisines.,llm_bridge +paprika,*spice_blend**,HasA,0.8,Both paprika and cumin can be components of a spice blend.,llm_bridge +*spice_blend**,cumin,HasA,0.8,Both paprika and cumin can be components of a spice blend.,llm_bridge +paprika,*curry_powder**,HasA,0.8,Both paprika and cumin are ingredients in curry powder.,llm_bridge +*curry_powder**,cumin,HasA,0.8,Both paprika and cumin are ingredients in curry powder.,llm_bridge +paprika,*soup**,UsedFor,0.8,Both paprika and cumin can be used as ingredients in soup.,llm_bridge +*soup**,cumin,UsedFor,0.8,Both paprika and cumin can be used as ingredients in soup.,llm_bridge +paprika,*spice_rack**,AtLocation,0.8,Both paprika and ginger are spices often stored on a spice rack.,llm_bridge +*spice_rack**,ginger,AtLocation,0.8,Both paprika and ginger are spices often stored on a spice rack.,llm_bridge +paprika,*cuisine**,UsedFor,0.8,Both paprika and ginger are used in various cuisines for flavoring.,llm_bridge +*cuisine**,ginger,UsedFor,0.8,Both paprika and ginger are used in various cuisines for flavoring.,llm_bridge +paprika,*cooking**,UsedFor,0.8,Both paprika and ginger are ingredients used in cooking.,llm_bridge +*cooking**,ginger,UsedFor,0.8,Both paprika and ginger are ingredients used in cooking.,llm_bridge +paprika,powder,MadeOf,0.8,Both paprika and curry are often in powder form.,llm_bridge +powder,curry,MadeOf,0.8,Both paprika and curry are often in powder form.,llm_bridge +paprika,spice_blend,PartOf,0.8,"Paprika is part of some spice blends, and curry is often a blend itself.",llm_bridge +spice_blend,curry,PartOf,0.8,"Paprika is part of some spice blends, and curry is often a blend itself.",llm_bridge +dish,curry,UsedFor,0.8,Both paprika and curry are used in dishes.,llm_bridge +buzzard,egg,HasA,0.8,both birds lay eggs,llm_bridge +egg,dodo,HasA,0.8,both birds lay eggs,llm_bridge +buzzard,feather,HasA,0.8,both birds have feathers,llm_bridge +feather,dodo,HasA,0.8,both birds have feathers,llm_bridge +buzzard,extinction,Causes,0.8,"buzzards face threats, dodos became extinct",llm_bridge +extinction,dodo,PartOf,0.8,"buzzards face threats, dodos became extinct",llm_bridge +buzzard,"bridge_word:_""bird""",PartOf,0.8,"explanation: Both buzzards and chickadees are types of birds, so ""bird"" is a common category they belong to.",llm_bridge +"bridge_word:_""bird""",chickadee,PartOf,0.8,"explanation: Both buzzards and chickadees are types of birds, so ""bird"" is a common category they belong to.",llm_bridge +buzzard,flock,AtLocation,0.8,A flock is a group of birds where both buzzards and auks might be found.,llm_bridge +flock,auk,AtLocation,0.8,A flock is a group of birds where both buzzards and auks might be found.,llm_bridge +feather,auk,HasA,0.8,Both buzzards and auks are birds that have feathers.,llm_bridge +buzzard,wing,PartOf,0.8,Both buzzards and auks have wings as part of their anatomy.,llm_bridge +wing,auk,PartOf,0.8,Both buzzards and auks have wings as part of their anatomy.,llm_bridge +buzzard,bird,PartOf,0.8,both are types of birds,llm_bridge +bird,cotinga,PartOf,0.8,both are types of birds,llm_bridge +buzzard,nest,HasA,0.8,both birds build or use nests,llm_bridge +buzzard,wing,HasA,0.8,Both birds have wings for flying.,llm_bridge +wing,pelican,HasA,0.8,Both birds have wings for flying.,llm_bridge +buzzard,fish,UsedFor,0.8,Both birds may use fish as a food source.,llm_bridge +fish,pelican,UsedFor,0.8,Both birds may use fish as a food source.,llm_bridge +buzzard,hawk,HasA,0.8,"hawk is another type of bird, similar to buzzard, and both buzzard and cassowary are birds.",llm_bridge +hawk,cassowary,HasA,0.8,"hawk is another type of bird, similar to buzzard, and both buzzard and cassowary are birds.",llm_bridge +feather,cassowary,HasA,0.8,"feather is a common attribute of both birds, which both buzzard and cassowary are.",llm_bridge +wing,cassowary,HasA,0.8,"wing is a common part of both birds, which both buzzard and cassowary are.",llm_bridge +buzzard,prey,CapableOf,0.8,Both birds hunt small animals as prey.,llm_bridge +buzzard,wings,HasA,0.8,Both birds have wings for flight.,llm_bridge +wings,kestrel,HasA,0.8,Both birds have wings for flight.,llm_bridge +feather,barbet,HasA,0.8,both are birds and have feathers,llm_bridge +buzzard,beak,HasA,0.8,both are birds and have beaks,llm_bridge +beak,barbet,HasA,0.8,both are birds and have beaks,llm_bridge +buzzard,egg,CapableOf,0.8,both are birds and can lay eggs,llm_bridge +egg,barbet,CapableOf,0.8,both are birds and can lay eggs,llm_bridge +buzzard,tree,AtLocation,0.8,Both birds are often found in or near trees.,llm_bridge +tree,woodpecker,AtLocation,0.8,Both birds are often found in or near trees.,llm_bridge +buzzard,nest,AtLocation,0.8,"Both birds build or inhabit nests, often in trees.",llm_bridge +nest,woodpecker,AtLocation,0.8,"Both birds build or inhabit nests, often in trees.",llm_bridge +buzzard,insect,UsedFor,0.8,Both birds may eat insects as part of their diet.,llm_bridge +insect,woodpecker,UsedFor,0.8,Both birds may eat insects as part of their diet.,llm_bridge +carnation,garden,AtLocation,0.8,both flowers can be found in gardens,llm_bridge +garden,lotus,AtLocation,0.8,both flowers can be found in gardens,llm_bridge +carnation,stem,HasA,0.8,both flowers have stems,llm_bridge +stem,lotus,HasA,0.8,both flowers have stems,llm_bridge +carnation,petal,HasA,0.8,both flowers have petals,llm_bridge +petal,lotus,HasA,0.8,both flowers have petals,llm_bridge +garden,lily,AtLocation,0.8,a garden is a place where both carnations and lilies can be found,llm_bridge +carnation,bouquet,HasA,0.8,a bouquet is a collection that can include both carnations and lilies,llm_bridge +bouquet,lily,HasA,0.8,a bouquet is a collection that can include both carnations and lilies,llm_bridge +carnation,flowerpot,AtLocation,0.8,a flowerpot is a container where both carnations and lilies can be planted or displayed,llm_bridge +flowerpot,lily,AtLocation,0.8,a flowerpot is a container where both carnations and lilies can be planted or displayed,llm_bridge +garden,violet,AtLocation,0.8,Both flowers can be found in a garden.,llm_bridge +carnation,bouquet,AtLocation,0.8,Both flowers can be arranged in a bouquet.,llm_bridge +bouquet,violet,AtLocation,0.8,Both flowers can be arranged in a bouquet.,llm_bridge +carnation,florist,AtLocation,0.8,Both flowers can be sold by a florist.,llm_bridge +florist,violet,AtLocation,0.8,Both flowers can be sold by a florist.,llm_bridge +carnation,flowerbed,AtLocation,0.8,carnations and tulips are both planted in flowerbeds.,llm_bridge +flowerpot,tulip,AtLocation,0.8,carnations and tulips can both be grown in flowerpots.,llm_bridge +carnation,flower,PartOf,0.8,both are types of flowers,llm_bridge +flower,gladiola,PartOf,0.8,both are types of flowers,llm_bridge +bouquet,gladiola,HasA,0.8,both can be part of a bouquet,llm_bridge +garden,gladiola,AtLocation,0.8,both can grow in a garden,llm_bridge +carnation,bouquet,PartOf,0.8,bouquet is a collection that can include both carnations and peonies.,llm_bridge +bouquet,peony,PartOf,0.8,bouquet is a collection that can include both carnations and peonies.,llm_bridge +carnation,flower_bed,AtLocation,0.8,flower bed is an area where both carnations and peonies can be planted.,llm_bridge +flower_bed,peony,AtLocation,0.8,flower bed is an area where both carnations and peonies can be planted.,llm_bridge +flower,posey,PartOf,0.8,"carnation is a type of flower, and posey is a type of flower, both being parts of the broader category of flowers.",llm_bridge +carnation,vase,AtLocation,0.8,explanation: Both carnations and orchids can be placed in vases for display.,llm_bridge +carnation,carnation,PartOf,0.8,"carnation is made of petals, and a petal is part of many flowers including carnations.",llm_bridge +carnation,petal,PartOf,0.8,"carnation is made of petals, and a petal is part of many flowers including carnations.",llm_bridge +kestrel,feather,HasA,0.8,Both kestrels and birds have feathers.,llm_bridge +kestrel,fly,CapableOf,0.8,Both kestrels and birds are capable of flying.,llm_bridge +fly,bird,CapableOf,0.8,Both kestrels and birds are capable of flying.,llm_bridge +kestrel,nest,HasA,0.8,Both kestrels and birds typically have nests.,llm_bridge +nest,bird,HasA,0.8,Both kestrels and birds typically have nests.,llm_bridge +nest,hummingbird,HasA,0.8,both birds have nests,llm_bridge +feather,hummingbird,HasA,0.8,both birds have feathers,llm_bridge +kestrel,wing,HasA,0.8,both birds have wings,llm_bridge +wing,hummingbird,HasA,0.8,both birds have wings,llm_bridge +kestrel,bridge_word:_bird,PartOf,0.8,explanation: Both are types of birds.,llm_bridge +bridge_word:_bird,nightjar,PartOf,0.8,explanation: Both are types of birds.,llm_bridge +kestrel,bridge_word:_wings,HasA,0.8,explanation: Both birds possess wings for flying.,llm_bridge +bridge_word:_wings,nightjar,HasA,0.8,explanation: Both birds possess wings for flying.,llm_bridge +kestrel,bridge_word:_feathers,HasA,0.8,explanation: Both birds are covered in feathers.,llm_bridge +bridge_word:_feathers,nightjar,HasA,0.8,explanation: Both birds are covered in feathers.,llm_bridge +nest,weaver,MadeOf,0.8,both birds have or build nests,llm_bridge +kestrel,egg,HasA,0.8,both birds lay eggs,llm_bridge +egg,weaver,HasA,0.8,both birds lay eggs,llm_bridge +kestrel,bridge_word:_forest,AtLocation,0.8,Both birds can be found in forested areas.,llm_bridge +kestrel,bridge_word:_tree,AtLocation,0.8,Both birds often perch or nest in trees.,llm_bridge +bridge_word:_tree,tanager,AtLocation,0.8,Both birds often perch or nest in trees.,llm_bridge +kestrel,bridge_word:_nest,HasA,0.8,Both birds build or use nests.,llm_bridge +bridge_word:_nest,tanager,HasA,0.8,Both birds build or use nests.,llm_bridge +bridge_word:_nest,chickadee,HasA,0.8,explanation: Both kestrels and chickadees build nests for their young.,llm_bridge +kestrel,bridge_word:_seed,UsedFor,0.8,explanation: Both kestrels and chickadees may use seeds as part of their diet.,llm_bridge +bridge_word:_seed,chickadee,UsedFor,0.8,explanation: Both kestrels and chickadees may use seeds as part of their diet.,llm_bridge +bridge_word:_tree,chickadee,AtLocation,0.8,explanation: Both kestrels and chickadees can be found in or near trees.,llm_bridge +kestrel,prey,UsedFor,0.8,Both birds hunt prey.,llm_bridge +prey,buzzard,UsedFor,0.8,Both birds hunt prey.,llm_bridge +kestrel,bird,PartOf,0.8,Both are types of birds.,llm_bridge +kestrel,perch,AtLocation,0.8,Both birds can perch on branches.,llm_bridge +perch,buzzard,AtLocation,0.8,Both birds can perch on branches.,llm_bridge +bird,falcon,PartOf,0.8,birds connect as both are types of birds,llm_bridge +prey,falcon,UsedFor,0.8,prey connects as both hunt prey,llm_bridge +kestrel,hunt,CapableOf,0.8,hunt connects as both are capable of hunting,llm_bridge +hunt,falcon,CapableOf,0.8,hunt connects as both are capable of hunting,llm_bridge +bird,curassow,PartOf,0.8,both are types of birds,llm_bridge +kestrel,wings,HasA,0.8,wings are common features of both birds,llm_bridge +wings,condor,HasA,0.8,wings are common features of both birds,llm_bridge +kestrel,feathers,HasA,0.8,feathers are common features of both birds,llm_bridge +feathers,condor,HasA,0.8,feathers are common features of both birds,llm_bridge +nest,condor,HasA,0.8,nests are common structures used by both birds,llm_bridge +mealybug,larva,PartOf,0.8,both insects have a larval stage in their life cycle,llm_bridge +larva,butterfly,PartOf,0.8,both insects have a larval stage in their life cycle,llm_bridge +mealybug,caterpillar,AtLocation,0.8,mealybugs might be found near caterpillars; butterflies have a caterpillar stage,llm_bridge +caterpillar,butterfly,HasA,0.8,mealybugs might be found near caterpillars; butterflies have a caterpillar stage,llm_bridge +mealybug,scale,HasA,0.8,mealybugs have a waxy scale; butterflies may have scale-like structures on wings,llm_bridge +scale,butterfly,HasA,0.8,mealybugs have a waxy scale; butterflies may have scale-like structures on wings,llm_bridge +mealybug,ant,HasProperty,0.8,"ants are also insects, sharing the taxonomic classification with mealybugs and earwigs",llm_bridge +ant,earwig,HasProperty,0.8,"ants are also insects, sharing the taxonomic classification with mealybugs and earwigs",llm_bridge +mealybug,ladybug,HasPrerequisite,0.8,both mealybugs and earwigs may be prey for ladybugs,llm_bridge +ladybug,earwig,HasPrerequisite,0.8,both mealybugs and earwigs may be prey for ladybugs,llm_bridge +mealybug,insecticide,UsedFor,0.8,insecticide is used to kill mealybugs and earwigs as pests,llm_bridge +insecticide,earwig,UsedFor,0.8,insecticide is used to kill mealybugs and earwigs as pests,llm_bridge +mealybug,insect,PartOf,0.8,insects are both part of the broader insect category,llm_bridge +insect,lacebug,PartOf,0.8,insects are both part of the broader insect category,llm_bridge +larva,wasp,PartOf,0.8,mealybugs and wasps both have larvae stages in their life cycles.,llm_bridge +mealybug,parasite,CapableOf,0.8,"some mealybugs are parasitized by wasps, and some wasps parasitize other insects.",llm_bridge +parasite,wasp,CapableOf,0.8,"some mealybugs are parasitized by wasps, and some wasps parasitize other insects.",llm_bridge +mealybug,egg,HasA,0.8,"mealybugs lay eggs, and female wasps lay eggs.",llm_bridge +egg,wasp,HasA,0.8,"mealybugs lay eggs, and female wasps lay eggs.",llm_bridge +mealybug,mouthpart,PartOf,0.8,mouthparts are part of both insects and animals,llm_bridge +mouthpart,mouth,PartOf,0.8,mouthparts are part of both insects and animals,llm_bridge +mealybug,food,UsedFor,0.8,both mealybugs and mouths use food,llm_bridge +food,mouth,UsedFor,0.8,both mealybugs and mouths use food,llm_bridge +mealybug,bite,CapableOf,0.8,both mealybugs and mouths can bite,llm_bridge +bite,mouth,CapableOf,0.8,both mealybugs and mouths can bite,llm_bridge +mealybug,pest,HasProperty,0.8,both are considered pests in some contexts,llm_bridge +insecticide,roach,UsedFor,0.8,both can be targeted by the same pest control measures,llm_bridge +mealybug,plant,UsedFor,0.8,"both mealybugs and bees interact with plants (mealybugs feed on them, bees pollinate them)",llm_bridge +plant,bee,UsedFor,0.8,"both mealybugs and bees interact with plants (mealybugs feed on them, bees pollinate them)",llm_bridge +mealybug,habitat,AtLocation,0.8,Both are found in similar natural habitats like gardens or forests.,llm_bridge +habitat,firefly,AtLocation,0.8,Both are found in similar natural habitats like gardens or forests.,llm_bridge +larva,firefly,PartOf,0.8,Both undergo a larval stage as part of their life cycle.,llm_bridge +mealybug,honeydew,CapableOf,0.8,ants feed on the sugary honeydew secreted by mealybugs,llm_bridge +honeydew,ant,UsedFor,0.8,ants feed on the sugary honeydew secreted by mealybugs,llm_bridge +mealybug,aphid,AtLocation,0.8,both mealybugs and aphids are tended by ants,llm_bridge +aphid,ant,AtLocation,0.8,both mealybugs and aphids are tended by ants,llm_bridge +mealybug,honeydew,MadeOf,0.8,"mealybugs produce honeydew, ants consume it",llm_bridge +honeydew,ant,HasA,0.8,"mealybugs produce honeydew, ants consume it",llm_bridge +mealybug,ladybug,CapableOf,0.8,"Both mealybugs and ladybugs can be pests on plants, and a head is where an insect's brain is located.",llm_bridge +ladybug,head,AtLocation,0.8,"Both mealybugs and ladybugs can be pests on plants, and a head is where an insect's brain is located.",llm_bridge +mealybug,ant,HasA,0.8,"Mealybugs can be attacked by ants, and an ant's head is part of its body.",llm_bridge +ant,head,PartOf,0.8,"Mealybugs can be attacked by ants, and an ant's head is part of its body.",llm_bridge +hornbill,nest,HasA,0.8,Both hornbills and lorikeets have nests where they live and raise young.,llm_bridge +nest,lorikeet,HasA,0.8,Both hornbills and lorikeets have nests where they live and raise young.,llm_bridge +hornbill,beak,HasA,0.8,Both hornbills and lorikeets have beaks which they use to eat and interact with their environment.,llm_bridge +beak,lorikeet,HasA,0.8,Both hornbills and lorikeets have beaks which they use to eat and interact with their environment.,llm_bridge +hornbill,fruit,UsedFor,0.8,Both hornbills and lorikeets eat fruit as part of their diet.,llm_bridge +fruit,lorikeet,UsedFor,0.8,Both hornbills and lorikeets eat fruit as part of their diet.,llm_bridge +hornbill,"bridge_word:_""bird""",PartOf,0.8,explanation: both hornbill and cardinal are types of birds.,llm_bridge +"bridge_word:_""bird""",cardinal,PartOf,0.8,explanation: both hornbill and cardinal are types of birds.,llm_bridge +hornbill,*wing**,PartOf,0.8,Both birds have wings as a part of their anatomy.,llm_bridge +*wing**,peacock,PartOf,0.8,Both birds have wings as a part of their anatomy.,llm_bridge +hornbill,*feather**,HasA,0.8,Both birds have feathers covering their bodies.,llm_bridge +*feather**,peacock,HasA,0.8,Both birds have feathers covering their bodies.,llm_bridge +hornbill,*forest**,AtLocation,0.8,Both birds are often found in forest habitats.,llm_bridge +*forest**,peacock,AtLocation,0.8,Both birds are often found in forest habitats.,llm_bridge +hornbill,bridge_word:_bird,PartOf,0.8,hornbill and partridge are both classified as birds.,llm_bridge +bridge_word:_bird,partridge,PartOf,0.8,hornbill and partridge are both classified as birds.,llm_bridge +hornbill,bridge_word:_feather,HasA,0.8,both hornbills and partridges have feathers.,llm_bridge +bridge_word:_feather,partridge,HasA,0.8,both hornbills and partridges have feathers.,llm_bridge +hornbill,bridge_word:_nest,HasA,0.8,both hornbills and partridges have nests.,llm_bridge +bridge_word:_nest,partridge,HasA,0.8,both hornbills and partridges have nests.,llm_bridge +hornbill,wing,HasA,0.8,Both hornbills and terns have wings for flight.,llm_bridge +hornbill,egg,HasA,0.8,Both hornbills and terns lay eggs as part of their reproductive cycle.,llm_bridge +hornbill,wing,PartOf,0.8,wings are a physical part of both birds,llm_bridge +hornbill,beak,PartOf,0.8,beaks are a defining physical part of both birds,llm_bridge +beak,flamingo,PartOf,0.8,beaks are a defining physical part of both birds,llm_bridge +nest,flamingo,HasA,0.8,both birds have nests where they lay eggs,llm_bridge +hornbill,bill,HasA,0.8,Both birds have distinctive bills used for feeding,llm_bridge +bill,sapsucker,HasA,0.8,Both birds have distinctive bills used for feeding,llm_bridge +hornbill,feeding,UsedFor,0.8,Both birds use their bills for feeding behaviors,llm_bridge +feeding,sapsucker,UsedFor,0.8,Both birds use their bills for feeding behaviors,llm_bridge +hornbill,nectar,UsedFor,0.8,"Both birds may feed on nectar (hornbills occasionally, sapsuckers rarely)",llm_bridge +nectar,sapsucker,UsedFor,0.8,"Both birds may feed on nectar (hornbills occasionally, sapsuckers rarely)",llm_bridge +bridge_word:_nest,owl,HasA,0.8,Explanation: Both hornbills and owls have nests.,llm_bridge +bridge_word:_feather,owl,HasA,0.8,Explanation: Both hornbills and owls have feathers.,llm_bridge +hornbill,bridge_word:_perch,UsedFor,0.8,Explanation: Both hornbills and owls use perches.,llm_bridge +bridge_word:_perch,owl,UsedFor,0.8,Explanation: Both hornbills and owls use perches.,llm_bridge +hornbill,nail,HasA,0.8,"both birds have hard, sharp structures on their feet",llm_bridge +nail,cassowary,HasA,0.8,"both birds have hard, sharp structures on their feet",llm_bridge +avocet,bird,PartOf,0.8,"both avocet and grouse are types of birds, which are part of the avian classification",llm_bridge +bird,grouse,PartOf,0.8,"both avocet and grouse are types of birds, which are part of the avian classification",llm_bridge +avocet,nest,HasA,0.8,Birds like avocets and boobies build nests.,llm_bridge +nest,booby,HasA,0.8,Birds like avocets and boobies build nests.,llm_bridge +avocet,beak,HasA,0.8,Birds like avocets and boobies have beaks.,llm_bridge +beak,booby,HasA,0.8,Birds like avocets and boobies have beaks.,llm_bridge +avocet,wing,HasA,0.8,Birds like avocets and boobies have wings.,llm_bridge +wing,booby,HasA,0.8,Birds like avocets and boobies have wings.,llm_bridge +avocet,bridge_word:_water,AtLocation,0.8,explanation: Both avocets and grebes are often found near or in water.,llm_bridge +bridge_word:_water,grebe,AtLocation,0.8,explanation: Both avocets and grebes are often found near or in water.,llm_bridge +avocet,bridge_word:_nest,HasA,0.8,explanation: Both avocets and grebes are birds that build nests.,llm_bridge +bridge_word:_nest,grebe,HasA,0.8,explanation: Both avocets and grebes are birds that build nests.,llm_bridge +avocet,bridge_word:_feather,HasA,0.8,explanation: Both avocets and grebes are birds that have feathers.,llm_bridge +bridge_word:_feather,grebe,HasA,0.8,explanation: Both avocets and grebes are birds that have feathers.,llm_bridge +wing,martin,HasA,0.8,both birds have wings for flying,llm_bridge +beak,rook,HasA,0.8,both birds have beaks,llm_bridge +nest,rook,HasA,0.8,both birds create nests,llm_bridge +avocet,wing,PartOf,0.8,wings are part of both avocets and condors,llm_bridge +avocet,fly,CapableOf,0.8,both avocets and condors can fly,llm_bridge +fly,condor,CapableOf,0.8,both avocets and condors can fly,llm_bridge +avocet,egg,HasA,0.8,both avocets and condors have eggs,llm_bridge +egg,condor,HasA,0.8,both avocets and condors have eggs,llm_bridge +avocet,feather,HasA,0.8,both are birds and have feathers,llm_bridge +nest,waxwing,HasA,0.8,both are birds that build or use nests,llm_bridge +nest,barbet,HasA,0.8,both birds build nests,llm_bridge +feather,cardinal,HasA,0.8,birds have feathers,llm_bridge +bird,cardinal,PartOf,0.8,both are types of birds,llm_bridge +nest,cardinal,HasA,0.8,birds build nests,llm_bridge +cassowary,flight,HasProperty,0.8,flight connects both birds as a shared ability,llm_bridge +flight,cotinga,HasProperty,0.8,flight connects both birds as a shared ability,llm_bridge +cassowary,wing,HasA,0.8,wing connects both birds as a shared anatomical part,llm_bridge +cassowary,egg,HasA,0.8,egg connects both birds as a shared reproductive structure,llm_bridge +egg,cotinga,HasA,0.8,egg connects both birds as a shared reproductive structure,llm_bridge +cassowary,diet,HasA,0.8,"Cassowary has insects as part of its diet, insects are part of the food chain.",llm_bridge +diet,insect,PartOf,0.8,"Cassowary has insects as part of its diet, insects are part of the food chain.",llm_bridge +cassowary,predator,CapableOf,0.8,"Cassowary is capable of being a predator, insects require being prey.",llm_bridge +predator,insect,HasPrerequisite,0.8,"Cassowary is capable of being a predator, insects require being prey.",llm_bridge +cassowary,ecosystem,PartOf,0.8,Both cassowary and insects are part of the same ecosystem.,llm_bridge +ecosystem,insect,PartOf,0.8,Both cassowary and insects are part of the same ecosystem.,llm_bridge +cassowary,bridge_word_1:_bird,PartOf,0.8,"cassowary and parakeet are both birds, making ""bird"" a common category they share.",llm_bridge +bridge_word_1:_bird,parakeet,PartOf,0.8,"cassowary and parakeet are both birds, making ""bird"" a common category they share.",llm_bridge +cassowary,bridge_word_2:_egg,CapableOf,0.8,both cassowaries and parakeets lay eggs.,llm_bridge +bridge_word_2:_egg,parakeet,CapableOf,0.8,both cassowaries and parakeets lay eggs.,llm_bridge +cassowary,bridge_word_3:_feather,HasA,0.8,both cassowaries and parakeets have feathers as part of their physical characteristics.,llm_bridge +bridge_word_3:_feather,parakeet,HasA,0.8,both cassowaries and parakeets have feathers as part of their physical characteristics.,llm_bridge +cassowary,bird,PartOf,0.8,Both cassowary and gannet are part of the taxonomic class of birds.,llm_bridge +bird,gannet,PartOf,0.8,Both cassowary and gannet are part of the taxonomic class of birds.,llm_bridge +cassowary,feather,HasA,0.8,Both cassowary and gannet have feathers as part of their bird anatomy.,llm_bridge +feather,gannet,HasA,0.8,Both cassowary and gannet have feathers as part of their bird anatomy.,llm_bridge +cassowary,nest,HasA,0.8,Both cassowary and gannet have nests as part of their bird behavior and habitat.,llm_bridge +nest,gannet,HasA,0.8,Both cassowary and gannet have nests as part of their bird behavior and habitat.,llm_bridge +cassowary,bridge_word:_feather,HasA,0.8,"explanation: Both cassowary and cock are birds, and feathers are a common feature of birds.",llm_bridge +bridge_word:_feather,cock,HasA,0.8,"explanation: Both cassowary and cock are birds, and feathers are a common feature of birds.",llm_bridge +cassowary,bridge_word:_nest,HasA,0.8,explanation: Both birds build nests for their young.,llm_bridge +bridge_word:_nest,cock,HasA,0.8,explanation: Both birds build nests for their young.,llm_bridge +cassowary,bridge_word:_egg,CapableOf,0.8,explanation: Both birds lay eggs as part of their reproductive process.,llm_bridge +bridge_word:_egg,cock,CapableOf,0.8,explanation: Both birds lay eggs as part of their reproductive process.,llm_bridge +feather,grouse,HasA,0.8,both birds have feathers,llm_bridge +wing,grouse,HasA,0.8,both birds have wings,llm_bridge +cassowary,egg,CapableOf,0.8,both birds lay eggs,llm_bridge +egg,grouse,CapableOf,0.8,both birds lay eggs,llm_bridge +cassowary,skull,HasA,0.8,"Cassowary has a skull, which is part of a bone.",llm_bridge +skull,bone,PartOf,0.8,"Cassowary has a skull, which is part of a bone.",llm_bridge +cassowary,skeleton,HasA,0.8,"Cassowary has a skeleton, which is made of bone.",llm_bridge +skeleton,bone,MadeOf,0.8,"Cassowary has a skeleton, which is made of bone.",llm_bridge +cassowary,fossil,CapableOf,0.8,"Cassowary can be fossilized, which is made of bone.",llm_bridge +fossil,bone,MadeOf,0.8,"Cassowary can be fossilized, which is made of bone.",llm_bridge +diet,fish,HasA,0.8,Both animals consume food as part of their diet.,llm_bridge +cassowary,habitat,PartOf,0.8,Both animals live in natural habitats.,llm_bridge +habitat,fish,PartOf,0.8,Both animals live in natural habitats.,llm_bridge +cassowary,prey,ReceivesAction,0.8,"A cassowary might hunt small fish, which can be part of the prey ecosystem.",llm_bridge +prey,fish,PartOf,0.8,"A cassowary might hunt small fish, which can be part of the prey ecosystem.",llm_bridge +cassowary,bridge_word:_beak,HasA,0.8,explanation: Both cassowary and rook have beaks as part of their physical structure.,llm_bridge +bridge_word:_beak,rook,HasA,0.8,explanation: Both cassowary and rook have beaks as part of their physical structure.,llm_bridge +cassowary,bridge_word:_nest,CapableOf,0.8,explanation: Both cassowary and rook are capable of building nests.,llm_bridge +bridge_word:_nest,rook,CapableOf,0.8,explanation: Both cassowary and rook are capable of building nests.,llm_bridge +kohlrabi,vegetable,PartOf,0.8,Both kohlrabi and chard are parts of the broader category of vegetables.,llm_bridge +vegetable,chard,PartOf,0.8,Both kohlrabi and chard are parts of the broader category of vegetables.,llm_bridge +kohlrabi,*stalk**,PartOf,0.8,both kohlrabi and corn can grow on stalks.,llm_bridge +*stalk**,corn,PartOf,0.8,both kohlrabi and corn can grow on stalks.,llm_bridge +kohlrabi,*field**,AtLocation,0.8,both kohlrabi and corn are grown in fields.,llm_bridge +*field**,corn,AtLocation,0.8,both kohlrabi and corn are grown in fields.,llm_bridge +kohlrabi,*farmer**,CapableOf,0.8,a farmer can grow both kohlrabi and corn.,llm_bridge +*farmer**,corn,CapableOf,0.8,a farmer can grow both kohlrabi and corn.,llm_bridge +kohlrabi,stem,HasA,0.8,Stems are part of kohlrabi and sprouts are often found on stems.,llm_bridge +kohlrabi,plant,PartOf,0.8,Both kohlrabi and sprouts are parts of plants.,llm_bridge +kohlrabi,garden,AtLocation,0.8,Both kohlrabi and sprouts are commonly found in gardens.,llm_bridge +vegetable,asparagus,PartOf,0.8,"both are types of vegetables, a common food category",llm_bridge +kohlrabi,dish,UsedFor,0.8,both can be used as ingredients in a dish,llm_bridge +dish,asparagus,UsedFor,0.8,both can be used as ingredients in a dish,llm_bridge +garden,asparagus,AtLocation,0.8,both are commonly grown in gardens,llm_bridge +kohlrabi,*cucumber**,HasPrerequisite,0.8,"Cucumber is a prerequisite (alternative base) for kohlrabi in some recipes, and it's a part of what pickles are made from.",llm_bridge +*cucumber**,pickle,PartOf,0.8,"Cucumber is a prerequisite (alternative base) for kohlrabi in some recipes, and it's a part of what pickles are made from.",llm_bridge +kohlrabi,*jar**,HasA,0.8,A jar is common to store kohlrabi and is also a container for pickles.,llm_bridge +*jar**,pickle,HasA,0.8,A jar is common to store kohlrabi and is also a container for pickles.,llm_bridge +kohlrabi,*vinegar**,UsedFor,0.8,"Vinegar is used for preparing kohlrabi, and pickles are made of vinegar.",llm_bridge +*vinegar**,pickle,MadeOf,0.8,"Vinegar is used for preparing kohlrabi, and pickles are made of vinegar.",llm_bridge +kohlrabi,bridge_word:_salad,UsedFor,0.8,explanation: Both kohlrabi and eggplant can be used as ingredients in salads.,llm_bridge +bridge_word:_salad,eggplant,UsedFor,0.8,explanation: Both kohlrabi and eggplant can be used as ingredients in salads.,llm_bridge +kohlrabi,bridge_word:_stir-fry,UsedFor,0.8,explanation: Both kohlrabi and eggplant are commonly used in stir-fries as vegetables.,llm_bridge +bridge_word:_stir-fry,eggplant,UsedFor,0.8,explanation: Both kohlrabi and eggplant are commonly used in stir-fries as vegetables.,llm_bridge +kohlrabi,bridge_word:_garden,AtLocation,0.8,explanation: Both kohlrabi and eggplant are plants that can be found or grown in a garden.,llm_bridge +bridge_word:_garden,eggplant,AtLocation,0.8,explanation: Both kohlrabi and eggplant are plants that can be found or grown in a garden.,llm_bridge +kohlrabi,stalk,PartOf,0.8,Both kohlrabi and onions have stalks as part of their vegetable structure.,llm_bridge +stalk,onion,PartOf,0.8,Both kohlrabi and onions have stalks as part of their vegetable structure.,llm_bridge +garden,onion,AtLocation,0.8,Both kohlrabi and onions are commonly grown in gardens.,llm_bridge +kohlrabi,salad,UsedFor,0.8,Both kohlrabi and onions can be used as ingredients in salads.,llm_bridge +salad,onion,UsedFor,0.8,Both kohlrabi and onions can be used as ingredients in salads.,llm_bridge +kohlrabi,stem,PartOf,0.8,both kohlrabi and cabbage have stems as part of their structure,llm_bridge +stem,cabbage,PartOf,0.8,both kohlrabi and cabbage have stems as part of their structure,llm_bridge +garden,cabbage,AtLocation,0.8,both kohlrabi and cabbage are commonly grown in gardens,llm_bridge +kohlrabi,food,HasA,0.8,both kohlrabi and cabbage are types of food,llm_bridge +food,cabbage,HasA,0.8,both kohlrabi and cabbage are types of food,llm_bridge +roadrunner,bridge_word:_bird,PartOf,0.8,Both roadrunner and martin are types of birds.,llm_bridge +bridge_word:_bird,martin,PartOf,0.8,Both roadrunner and martin are types of birds.,llm_bridge +roadrunner,bird,PartOf,0.8,Both are types of bird.,llm_bridge +bird,blackbird,PartOf,0.8,Both are types of bird.,llm_bridge +roadrunner,beak,HasA,0.8,Both have a beak as a physical feature.,llm_bridge +beak,blackbird,HasA,0.8,Both have a beak as a physical feature.,llm_bridge +roadrunner,wing,HasA,0.8,Both have wings for flying.,llm_bridge +wing,blackbird,HasA,0.8,Both have wings for flying.,llm_bridge +roadrunner,bird,HasProperty,0.8,both are types of birds,llm_bridge +bird,tinamou,HasProperty,0.8,both are types of birds,llm_bridge +roadrunner,egg,CapableOf,0.8,both can lay eggs as part of their bird nature,llm_bridge +egg,tinamou,CapableOf,0.8,both can lay eggs as part of their bird nature,llm_bridge +roadrunner,feather,HasA,0.8,both birds are covered in feathers,llm_bridge +roadrunner,flight,CapableOf,0.8,both birds are capable of flight,llm_bridge +flight,swift,CapableOf,0.8,both birds are capable of flight,llm_bridge +roadrunner,bridge_word:_feathers,HasA,0.8,explanation: both birds have feathers,llm_bridge +bridge_word:_feathers,partridge,HasA,0.8,explanation: both birds have feathers,llm_bridge +roadrunner,bridge_word:_nest,HasA,0.8,explanation: both birds have nests,llm_bridge +beak,cock,HasA,0.8,Both birds have beaks.,llm_bridge +roadrunner,nest,HasA,0.8,Both birds build nests.,llm_bridge +bridge_word:_feathers,cotinga,HasA,0.8,"explanation: Both roadrunners and cotingas are birds, and feathers are a common feature of birds.",llm_bridge +roadrunner,bridge_word:_wings,HasA,0.8,"explanation: Both roadrunners and cotingas are birds, and wings are a common feature of birds.",llm_bridge +bridge_word:_wings,cotinga,HasA,0.8,"explanation: Both roadrunners and cotingas are birds, and wings are a common feature of birds.",llm_bridge +roadrunner,bridge_word:_birdhouse,AtLocation,0.8,"explanation: Both roadrunners and cotingas are birds, and a birdhouse is a structure where birds might be found or live.",llm_bridge +bridge_word:_birdhouse,cotinga,AtLocation,0.8,"explanation: Both roadrunners and cotingas are birds, and a birdhouse is a structure where birds might be found or live.",llm_bridge +roadrunner,eagle,LocatedNear,0.8,both are birds found in similar habitats,llm_bridge +eagle,hawk,LocatedNear,0.8,both are birds found in similar habitats,llm_bridge +roadrunner,prey,UsedFor,0.8,both birds hunt similar prey,llm_bridge +prey,hawk,UsedFor,0.8,both birds hunt similar prey,llm_bridge +roadrunner,sky,AtLocation,0.8,both birds are commonly found in the sky,llm_bridge +sky,hawk,AtLocation,0.8,both birds are commonly found in the sky,llm_bridge +roadrunner,water,AtLocation,0.8,Both birds are often found near water habitats.,llm_bridge +water,swan,AtLocation,0.8,Both birds are often found near water habitats.,llm_bridge +bird,swan,PartOf,0.8,Both are types of birds in the animal kingdom.,llm_bridge +roadrunner,feathers,HasA,0.8,Both birds have feathers as part of their physical structure.,llm_bridge +feathers,swan,HasA,0.8,Both birds have feathers as part of their physical structure.,llm_bridge +roadrunner,bridge_word:_bird,HasA,0.8,both are types of birds,llm_bridge +bridge_word:_bird,robin,HasA,0.8,both are types of birds,llm_bridge +bridge_word:_nest,robin,HasA,0.8,both are birds that have nests,llm_bridge +roadrunner,bridge_word:_feather,HasA,0.8,both are birds that have feathers,llm_bridge +bridge_word:_feather,robin,HasA,0.8,both are birds that have feathers,llm_bridge +thrasher,flock,AtLocation,0.8,birds often gather in groups called flocks,llm_bridge +flock,buzzard,AtLocation,0.8,birds often gather in groups called flocks,llm_bridge +thrasher,nest,PartOf,0.8,both birds build or inhabit nests,llm_bridge +nest,buzzard,PartOf,0.8,both birds build or inhabit nests,llm_bridge +thrasher,sky,AtLocation,0.8,both birds typically fly in the sky,llm_bridge +sky,buzzard,AtLocation,0.8,both birds typically fly in the sky,llm_bridge +thrasher,*wing**,HasA,0.8,Both birds have wings for flight.,llm_bridge +*wing**,oxpecker,HasA,0.8,Both birds have wings for flight.,llm_bridge +thrasher,*beak**,HasA,0.8,Both birds have beaks used for eating.,llm_bridge +*beak**,oxpecker,HasA,0.8,Both birds have beaks used for eating.,llm_bridge +thrasher,*nest**,HasA,0.8,Both birds build or inhabit nests.,llm_bridge +*nest**,oxpecker,HasA,0.8,Both birds build or inhabit nests.,llm_bridge +thrasher,*egg**,HasA,0.8,"Birds lay eggs, connecting thrashers and dodos.",llm_bridge +*egg**,dodo,HasA,0.8,"Birds lay eggs, connecting thrashers and dodos.",llm_bridge +thrasher,*eggshell**,HasA,0.8,"Birds' eggs have shells, connecting thrashers and dodos.",llm_bridge +*eggshell**,dodo,HasA,0.8,"Birds' eggs have shells, connecting thrashers and dodos.",llm_bridge +*wing**,dodo,HasA,0.8,"Birds have wings, connecting thrashers and dodos.",llm_bridge +thrasher,bridge_word1:_beak,HasA,0.8,explanation: Both thrashers and pelicans have beaks as part of their bird anatomy.,llm_bridge +bridge_word1:_beak,pelican,HasA,0.8,explanation: Both thrashers and pelicans have beaks as part of their bird anatomy.,llm_bridge +thrasher,bridge_word2:_wing,HasA,0.8,explanation: Both thrashers and pelicans have wings as part of their bird anatomy.,llm_bridge +bridge_word2:_wing,pelican,HasA,0.8,explanation: Both thrashers and pelicans have wings as part of their bird anatomy.,llm_bridge +thrasher,bridge_word3:_nest,HasA,0.8,explanation: Both thrashers and pelicans have nests where they lay eggs and raise their young.,llm_bridge +bridge_word3:_nest,pelican,HasA,0.8,explanation: Both thrashers and pelicans have nests where they lay eggs and raise their young.,llm_bridge +thrasher,bridge_word:_nest,HasA,0.8,both birds have nests,llm_bridge +bridge_word:_nest,stork,HasA,0.8,both birds have nests,llm_bridge +thrasher,bridge_word:_egg,HasA,0.8,both birds lay eggs,llm_bridge +bridge_word:_egg,stork,HasA,0.8,both birds lay eggs,llm_bridge +thrasher,bridge_word:_beak,HasA,0.8,both birds have beaks,llm_bridge +bridge_word:_beak,stork,HasA,0.8,both birds have beaks,llm_bridge +thrasher,flight,HasProperty,0.8,both thrashers and swifts are birds that have the ability to fly.,llm_bridge +flight,swift,HasProperty,0.8,both thrashers and swifts are birds that have the ability to fly.,llm_bridge +thrasher,wing,HasA,0.8,both thrashers and swifts are birds that have wings.,llm_bridge +thrasher,nest,HasA,0.8,both thrashers and swifts are birds that build or have nests.,llm_bridge +thrasher,seabird,PartOf,0.8,seabird is a category of bird that includes both thrashers and petrels.,llm_bridge +seabird,petrel,PartOf,0.8,seabird is a category of bird that includes both thrashers and petrels.,llm_bridge +thrasher,wing,PartOf,0.8,both thrashers and petrels have wings as part of their bird anatomy.,llm_bridge +wing,petrel,PartOf,0.8,both thrashers and petrels have wings as part of their bird anatomy.,llm_bridge +thrasher,bird,PartOf,0.8,bird is the common classification for both thrashers and petrels.,llm_bridge +bird,petrel,PartOf,0.8,bird is the common classification for both thrashers and petrels.,llm_bridge +wing,cassowary,PartOf,0.8,Both thrashers and cassowaries have wings as part of their anatomy.,llm_bridge +thrasher,feather,HasA,0.8,Both thrashers and cassowaries possess feathers.,llm_bridge +thrasher,fruit,UsedFor,0.8,Both thrashers and waxwings eat fruit as part of their diet.,llm_bridge +fruit,waxwing,UsedFor,0.8,Both thrashers and waxwings eat fruit as part of their diet.,llm_bridge +thrasher,bridge_word:_bird,PartOf,0.8,Both thrasher and flycatcher are types of bird.,llm_bridge +thrasher,bridge_word:_wing,HasA,0.8,Both thrashers and flycatchers have wings as part of their bird anatomy.,llm_bridge +bridge_word:_wing,flycatcher,HasA,0.8,Both thrashers and flycatchers have wings as part of their bird anatomy.,llm_bridge +bridge_word:_nest,flycatcher,HasA,0.8,Both thrashers and flycatchers build or have nests as part of their bird behavior.,llm_bridge +sapsucker,woodpecker,PartOf,0.8,woodpecker connects as both are types of birds under the broader category of woodpecker-like birds.,llm_bridge +woodpecker,falcon,PartOf,0.8,woodpecker connects as both are types of birds under the broader category of woodpecker-like birds.,llm_bridge +sapsucker,wing,PartOf,0.8,wing connects as both birds have wings as a physical part.,llm_bridge +wing,falcon,PartOf,0.8,wing connects as both birds have wings as a physical part.,llm_bridge +sapsucker,hunt,CapableOf,0.8,hunt connects as both birds are capable of hunting for food.,llm_bridge +sapsucker,*bill**,PartOf,0.8,Both birds have distinctive bills adapted for their feeding habits.,llm_bridge +*bill**,avocet,PartOf,0.8,Both birds have distinctive bills adapted for their feeding habits.,llm_bridge +sapsucker,*bird**,PartOf,0.8,Both are types of birds belonging to the class Aves.,llm_bridge +*bird**,avocet,PartOf,0.8,Both are types of birds belonging to the class Aves.,llm_bridge +sapsucker,*nest**,HasA,0.8,Both birds build nests for raising their young.,llm_bridge +*nest**,avocet,HasA,0.8,Both birds build nests for raising their young.,llm_bridge +sapsucker,"bridge_word:_""wing""",HasA,0.8,"""wing"" connects as a shared anatomical part of birds.",llm_bridge +"bridge_word:_""wing""",roadrunner,HasA,0.8,"""wing"" connects as a shared anatomical part of birds.",llm_bridge +sapsucker,"bridge_word:_""nest""",HasA,0.8,"""nest"" connects as a shared structure used by birds for habitation.",llm_bridge +"bridge_word:_""nest""",roadrunner,HasA,0.8,"""nest"" connects as a shared structure used by birds for habitation.",llm_bridge +sapsucker,*wing**,HasA,0.8,both birds have wings,llm_bridge +*wing**,stork,HasA,0.8,both birds have wings,llm_bridge +sapsucker,*egg**,HasA,0.8,both birds lay eggs,llm_bridge +*egg**,stork,HasA,0.8,both birds lay eggs,llm_bridge +sapsucker,*feather**,HasA,0.8,both birds have feathers,llm_bridge +*feather**,stork,HasA,0.8,both birds have feathers,llm_bridge +sapsucker,beak,HasA,0.8,both birds have beaks used for feeding,llm_bridge +beak,bulbul,HasA,0.8,both birds have beaks used for feeding,llm_bridge +sapsucker,nest,HasA,0.8,both birds build nests for their young,llm_bridge +sapsucker,feather,HasA,0.8,both birds are covered in feathers,llm_bridge +sapsucker,tree,AtLocation,0.8,"sapsuckers often peck trees, and pheasants can be found near trees in the wild.",llm_bridge +tree,pheasant,AtLocation,0.8,"sapsuckers often peck trees, and pheasants can be found near trees in the wild.",llm_bridge +sapsucker,forest,AtLocation,0.8,both sapsuckers and pheasants inhabit forested areas.,llm_bridge +forest,pheasant,AtLocation,0.8,both sapsuckers and pheasants inhabit forested areas.,llm_bridge +nest,pheasant,HasA,0.8,both birds build or use nests for habitation or reproduction.,llm_bridge +sapsucker,water,AtLocation,0.8,both sapsuckers and grebes can be found near water bodies,llm_bridge +tree,grebe,AtLocation,0.8,sapsuckers often live in trees while grebes may nest in trees or near them,llm_bridge +sapsucker,bird,PartOf,0.8,both sapsucker and grebe are types of birds,llm_bridge +bird,grebe,PartOf,0.8,both sapsucker and grebe are types of birds,llm_bridge +sapsucker,bridge_word:_bird,PartOf,0.8,"Both are types of birds, which is the common category.",llm_bridge +sapsucker,wing,HasA,0.8,both birds have wings for flight,llm_bridge +beak,kite,HasA,0.8,both birds have beaks for eating/hunting,llm_bridge +oilcan,bridge_word:_lid,HasA,0.8,explanation: Both oilcans and jars commonly have lids to seal them.,llm_bridge +bridge_word:_lid,jar,HasA,0.8,explanation: Both oilcans and jars commonly have lids to seal them.,llm_bridge +oilcan,bridge_word:_contents,HasA,0.8,"explanation: Both oilcans and jars hold contents (e.g., oil, food).",llm_bridge +bridge_word:_contents,jar,HasA,0.8,"explanation: Both oilcans and jars hold contents (e.g., oil, food).",llm_bridge +oilcan,bridge_word:_seal,HasA,0.8,explanation: Both oilcans and jars use seals to keep their contents fresh or contained.,llm_bridge +bridge_word:_seal,jar,HasA,0.8,explanation: Both oilcans and jars use seals to keep their contents fresh or contained.,llm_bridge +oilcan,*spoon**,UsedFor,0.8,spoon connects as an object used with both an oilcan and a glass for dispensing or eating/drinking.,llm_bridge +*spoon**,glass,UsedFor,0.8,spoon connects as an object used with both an oilcan and a glass for dispensing or eating/drinking.,llm_bridge +oilcan,*water**,UsedFor,0.8,water connects as a substance that can be contained or dispensed from both an oilcan (in some contexts) and a glass.,llm_bridge +*water**,glass,UsedFor,0.8,water connects as a substance that can be contained or dispensed from both an oilcan (in some contexts) and a glass.,llm_bridge +oilcan,*bottle**,PartOf,0.8,bottle connects as a common container that is related to both oilcans and glasses in the context of holding liquids.,llm_bridge +*bottle**,glass,PartOf,0.8,bottle connects as a common container that is related to both oilcans and glasses in the context of holding liquids.,llm_bridge +oilcan,*screwdriver**,ReceivesAction,0.8,A screwdriver can be put inside an oilcan for storage and is an item found in a toolbox.,llm_bridge +*screwdriver**,toolbox,HasA,0.8,A screwdriver can be put inside an oilcan for storage and is an item found in a toolbox.,llm_bridge +oilcan,*wrench**,ReceivesAction,0.8,A wrench can be placed inside an oilcan and is commonly stored in a toolbox.,llm_bridge +*wrench**,toolbox,HasA,0.8,A wrench can be placed inside an oilcan and is commonly stored in a toolbox.,llm_bridge +oilcan,*hammer**,ReceivesAction,0.8,A hammer can be stored in an oilcan and is a typical tool found in a toolbox.,llm_bridge +*hammer**,toolbox,HasA,0.8,A hammer can be stored in an oilcan and is a typical tool found in a toolbox.,llm_bridge +oilcan,bridge_word:_milk,UsedFor,0.8,milk can be poured into an oilcan for storage and is commonly sold in cartons for packaging.,llm_bridge +bridge_word:_milk,carton,MadeOf,0.8,milk can be poured into an oilcan for storage and is commonly sold in cartons for packaging.,llm_bridge +oilcan,bridge_word:_juice,UsedFor,0.8,juice can be stored in an oilcan and is commonly sold in cartons.,llm_bridge +bridge_word:_juice,carton,MadeOf,0.8,juice can be stored in an oilcan and is commonly sold in cartons.,llm_bridge +oilcan,bridge_word:_paint,MadeOf,0.8,paint can be stored in an oilcan and is also sold in cartons for smaller quantities.,llm_bridge +bridge_word:_paint,carton,MadeOf,0.8,paint can be stored in an oilcan and is also sold in cartons for smaller quantities.,llm_bridge +oilcan,pump,PartOf,0.8,pump is part of an oilcan (for dispensing oil) and a chest might have a pump-like mechanism for compression,llm_bridge +pump,chest,HasA,0.8,pump is part of an oilcan (for dispensing oil) and a chest might have a pump-like mechanism for compression,llm_bridge +oilcan,tool,PartOf,0.8,an oilcan is a type of tool and a chest can contain tools,llm_bridge +tool,chest,HasA,0.8,an oilcan is a type of tool and a chest can contain tools,llm_bridge +oilcan,lock,HasA,0.8,"some oilcans have a locking mechanism, and chests often have locks",llm_bridge +lock,chest,HasA,0.8,"some oilcans have a locking mechanism, and chests often have locks",llm_bridge +oilcan,oil,HasA,0.8,oil is contained in both,llm_bridge +oil,barrel,HasA,0.8,oil is contained in both,llm_bridge +oilcan,spout,PartOf,0.8,both have openings for pouring,llm_bridge +spout,barrel,PartOf,0.8,both have openings for pouring,llm_bridge +oilcan,ship,UsedFor,0.8,both used to transport goods,llm_bridge +ship,barrel,UsedFor,0.8,both used to transport goods,llm_bridge +oilcan,bridge_word:_liquid,HasA,0.8,explanation: Both an oilcan and a shell can contain liquid.,llm_bridge +bridge_word:_liquid,shell,HasA,0.8,explanation: Both an oilcan and a shell can contain liquid.,llm_bridge +oilcan,bridge_word:_hole,HasA,0.8,"explanation: An oilcan and a shell both often have holes, either as part of their design or naturally.",llm_bridge +bridge_word:_hole,shell,HasA,0.8,"explanation: An oilcan and a shell both often have holes, either as part of their design or naturally.",llm_bridge +oilcan,bridge_word:_metal,MadeOf,0.8,many oilcans and boxes are made of metal,llm_bridge +bridge_word:_metal,box,MadeOf,0.8,many oilcans and boxes are made of metal,llm_bridge +oilcan,bridge_word:_shelf,AtLocation,0.8,an oilcan and a box can both be stored on a shelf,llm_bridge +bridge_word:_shelf,box,AtLocation,0.8,an oilcan and a box can both be stored on a shelf,llm_bridge +oilcan,bridge_word:_tool,UsedFor,0.8,"an oilcan is a tool for oiling, and a box can be used to store tools",llm_bridge +bridge_word:_tool,box,UsedFor,0.8,"an oilcan is a tool for oiling, and a box can be used to store tools",llm_bridge +oilcan,liquid,HasA,0.8,Both oilcan and pitcher can contain liquids,llm_bridge +liquid,pitcher,HasA,0.8,Both oilcan and pitcher can contain liquids,llm_bridge +oilcan,water,ReceivesAction,0.8,"Water can be poured from an oilcan, and a pitcher typically contains water",llm_bridge +water,pitcher,HasA,0.8,"Water can be poured from an oilcan, and a pitcher typically contains water",llm_bridge +oilcan,handle,HasA,0.8,Both oilcans and pitchers typically have handles,llm_bridge +handle,pitcher,HasA,0.8,Both oilcans and pitchers typically have handles,llm_bridge +oilcan,filler,UsedFor,0.8,filler is used to fill both an oilcan and an aquarium,llm_bridge +filler,aquarium,UsedFor,0.8,filler is used to fill both an oilcan and an aquarium,llm_bridge +oilcan,water,UsedFor,0.8,water is used in an oilcan and is made of water in an aquarium,llm_bridge +water,aquarium,MadeOf,0.8,water is used in an oilcan and is made of water in an aquarium,llm_bridge +oilcan,container,PartOf,0.8,container is a broader category that both oilcan and aquarium fall under,llm_bridge +container,aquarium,PartOf,0.8,container is a broader category that both oilcan and aquarium fall under,llm_bridge +cotinga,bridge_word:_beak,HasA,0.8,explanation: Both cotingas and sapsuckers have beaks as a common avian feature.,llm_bridge +bridge_word:_beak,sapsucker,HasA,0.8,explanation: Both cotingas and sapsuckers have beaks as a common avian feature.,llm_bridge +cotinga,bridge_word:_tree,AtLocation,0.8,explanation: Both birds are commonly found in or around trees.,llm_bridge +bridge_word:_tree,sapsucker,AtLocation,0.8,explanation: Both birds are commonly found in or around trees.,llm_bridge +cotinga,bridge_word:_nest,HasA,0.8,explanation: Both types of birds have nests as part of their avian biology.,llm_bridge +bridge_word:_nest,sapsucker,HasA,0.8,explanation: Both types of birds have nests as part of their avian biology.,llm_bridge +cotinga,bridge_word_1:_feather,HasA,0.8,explanation: Both cotingas and grebes have feathers.,llm_bridge +bridge_word_1:_feather,grebe,HasA,0.8,explanation: Both cotingas and grebes have feathers.,llm_bridge +cotinga,bridge_word_2:_nest,HasA,0.8,explanation: Both cotingas and grebes have nests.,llm_bridge +bridge_word_2:_nest,grebe,HasA,0.8,explanation: Both cotingas and grebes have nests.,llm_bridge +cotinga,bridge_word_3:_water,AtLocation,0.8,explanation: Both cotingas and grebes can be found near or in water environments.,llm_bridge +bridge_word_3:_water,grebe,AtLocation,0.8,explanation: Both cotingas and grebes can be found near or in water environments.,llm_bridge +cotinga,nest,HasA,0.8,"cotingas have nests as part of their life cycle, bulbuls also have nests as part of their life cycle",llm_bridge +cotinga,feather,HasA,0.8,"cotingas have feathers as part of their physical structure, bulbuls also have feathers as part of their physical structure",llm_bridge +cotinga,egg,HasA,0.8,"cotingas lay eggs, bulbuls also lay eggs",llm_bridge +egg,bulbul,HasA,0.8,"cotingas lay eggs, bulbuls also lay eggs",llm_bridge +cotinga,tree,AtLocation,0.8,Both birds are often found in trees.,llm_bridge +cotinga,beak,HasA,0.8,Both birds have beaks as part of their anatomy.,llm_bridge +nest,woodpecker,HasA,0.8,"Both cotingas and woodpeckers have nests, which are structures where they live and raise young.",llm_bridge +beak,woodpecker,HasA,0.8,"Both cotingas and woodpeckers have beaks, which are physical features used for eating and other functions.",llm_bridge +cotinga,bridge_word:_bird,PartOf,0.8,Both are types of birds.,llm_bridge +cotinga,wing,HasA,0.8,Both birds have wings.,llm_bridge +wing,jay,HasA,0.8,Both birds have wings.,llm_bridge +cotinga,nest,CapableOf,0.8,Both birds can build nests.,llm_bridge +nest,jay,CapableOf,0.8,Both birds can build nests.,llm_bridge +cotinga,bridge_word:_feather,HasA,0.8,Both birds are covered in feathers.,llm_bridge +bridge_word:_feather,flycatcher,HasA,0.8,Both birds are covered in feathers.,llm_bridge +cotinga,bird,PartOf,0.8,Both cotinga and hawk are types of bird.,llm_bridge +bird,hawk,PartOf,0.8,Both cotinga and hawk are types of bird.,llm_bridge +wing,hawk,HasA,0.8,Both cotinga and hawk have wings.,llm_bridge +cotinga,forest,AtLocation,0.8,Both cotinga and hawk can be found in forest habitats.,llm_bridge +forest,hawk,AtLocation,0.8,Both cotinga and hawk can be found in forest habitats.,llm_bridge +lacebug,ant,LocatedNear,0.8,both are insects found in similar environments,llm_bridge +ant,butterfly,LocatedNear,0.8,both are insects found in similar environments,llm_bridge +lacebug,dragonfly,LocatedNear,0.8,both are insects often found near water or plants,llm_bridge +dragonfly,butterfly,LocatedNear,0.8,both are insects often found near water or plants,llm_bridge +lacebug,caterpillar,LocatedNear,0.8,caterpillars develop into butterflies and are sometimes near lacebugs in shared habitats,llm_bridge +caterpillar,butterfly,PartOf,0.8,caterpillars develop into butterflies and are sometimes near lacebugs in shared habitats,llm_bridge +ant,bee,LocatedNear,0.8,"Both lacebugs and bees are types of insects commonly found in similar habitats like gardens or forests, often near other insects like ants.",llm_bridge +lacebug,nectar,CapableOf,0.8,"Both lacebugs and bees can feed on nectar, which is a common food source for insects.",llm_bridge +nectar,bee,CapableOf,0.8,"Both lacebugs and bees can feed on nectar, which is a common food source for insects.",llm_bridge +lacebug,pollination,HasPrerequisite,0.8,"Lacebugs may rely on pollination (performed by bees) for their environment's plant life, while bees are directly capable of pollination.",llm_bridge +pollination,bee,CapableOf,0.8,"Lacebugs may rely on pollination (performed by bees) for their environment's plant life, while bees are directly capable of pollination.",llm_bridge +lacebug,antenna,HasA,0.8,antennae are sensory organs on lacebugs and part of the mouth in insects.,llm_bridge +antenna,mouth,PartOf,0.8,antennae are sensory organs on lacebugs and part of the mouth in insects.,llm_bridge +lacebug,mouthpart,HasA,0.8,lacebugs have specialized mouthparts and mouthparts are part of an animal's mouth.,llm_bridge +lacebug,leaf,UsedFor,0.8,"lacebugs use their mouth to eat leaves, and leaves require an animal's mouth to be eaten.",llm_bridge +leaf,mouth,HasPrerequisite,0.8,"lacebugs use their mouth to eat leaves, and leaves require an animal's mouth to be eaten.",llm_bridge +lacebug,insect,PartOf,0.8,lacebug and fly are both types of insects.,llm_bridge +insect,fly,PartOf,0.8,lacebug and fly are both types of insects.,llm_bridge +lacebug,bridge_word:_plant,AtLocation,0.8,explanation: Lacebugs and ants are often found on plants.,llm_bridge +bridge_word:_plant,ant,AtLocation,0.8,explanation: Lacebugs and ants are often found on plants.,llm_bridge +lacebug,bridge_word:_aphid,CapableOf,0.8,"explanation: Lacebugs and ants can both interact with aphids (lacebugs may prey on them, ants may farm them).",llm_bridge +bridge_word:_aphid,ant,CapableOf,0.8,"explanation: Lacebugs and ants can both interact with aphids (lacebugs may prey on them, ants may farm them).",llm_bridge +lacebug,bridge_word:_colony,AtLocation,0.8,"explanation: Lacebugs might be found near ant colonies, and ants live in colonies.",llm_bridge +bridge_word:_colony,ant,PartOf,0.8,"explanation: Lacebugs might be found near ant colonies, and ants live in colonies.",llm_bridge +lacebug,pest,HasProperty,0.8,both insects are considered pests in agriculture and gardening,llm_bridge +pest,mealybug,HasProperty,0.8,both insects are considered pests in agriculture and gardening,llm_bridge +lacebug,cottony,HasProperty,0.8,"mealybugs have a cottony appearance, while lacebugs can have a similar appearance due to their white wings",llm_bridge +cottony,mealybug,HasProperty,0.8,"mealybugs have a cottony appearance, while lacebugs can have a similar appearance due to their white wings",llm_bridge +ant,housefly,LocatedNear,0.8,both are insects that can be found in similar environments like gardens or homes,llm_bridge +dragonfly,housefly,LocatedNear,0.8,both are insects that might be found near water or gardens,llm_bridge +lacebug,beetle,LocatedNear,0.8,both are insects that can be found in similar natural habitats,llm_bridge +beetle,housefly,LocatedNear,0.8,both are insects that can be found in similar natural habitats,llm_bridge +insect,firefly,PartOf,0.8,both are types of insects,llm_bridge +lacebug,bug,PartOf,0.8,both are types of bugs,llm_bridge +bug,firefly,PartOf,0.8,both are types of bugs,llm_bridge +lacebug,wing,HasA,0.8,both insects have wings,llm_bridge +wing,firefly,HasA,0.8,both insects have wings,llm_bridge +condor,bridge_word:_bird,PartOf,0.8,both are types of birds,llm_bridge +condor,bridge_word:_feather,HasA,0.8,both birds have feathers,llm_bridge +bridge_word:_feather,hornbill,HasA,0.8,both birds have feathers,llm_bridge +condor,bridge_word:_nest,UsedFor,0.8,both birds build and use nests for their young,llm_bridge +bridge_word:_nest,hornbill,UsedFor,0.8,both birds build and use nests for their young,llm_bridge +condor,egg,HasA,0.8,Both birds lay eggs as part of their reproductive process.,llm_bridge +condor,feather,HasA,0.8,Both birds have feathers as a key feature of their anatomy.,llm_bridge +condor,nest,HasA,0.8,Both birds build or use nests for nesting and raising young.,llm_bridge +egg,partridge,HasA,0.8,both birds lay eggs,llm_bridge +feather,partridge,HasA,0.8,both birds have feathers,llm_bridge +condor,wing,HasA,0.8,both birds have wings,llm_bridge +wing,partridge,HasA,0.8,both birds have wings,llm_bridge +wing,heron,HasA,0.8,wings are part of both birds and enable flight.,llm_bridge +condor,beak,HasA,0.8,beaks are part of both birds and used for eating or defense.,llm_bridge +beak,heron,HasA,0.8,beaks are part of both birds and used for eating or defense.,llm_bridge +nest,heron,HasA,0.8,nests are structures both birds may build for raising young.,llm_bridge +condor,flying,CapableOf,0.8,condors and swifts are both capable of flying,llm_bridge +condor,bird,PartOf,0.8,both condors and swifts are part of the bird category,llm_bridge +bird,swift,PartOf,0.8,both condors and swifts are part of the bird category,llm_bridge +condor,egg,CapableOf,0.8,both birds lay eggs,llm_bridge +condor,egg,PartOf,0.8,egg is part of life cycle,llm_bridge +egg,rhea,PartOf,0.8,egg is part of life cycle,llm_bridge +condor,*nest**,HasA,0.8,Both birds have nests for living or raising young.,llm_bridge +*nest**,parakeet,HasA,0.8,Both birds have nests for living or raising young.,llm_bridge +condor,*wing**,PartOf,0.8,Both birds have wings as part of their anatomy for flight.,llm_bridge +*wing**,parakeet,PartOf,0.8,Both birds have wings as part of their anatomy for flight.,llm_bridge +condor,*seed**,UsedFor,0.8,Both birds can use seeds as food.,llm_bridge +*seed**,parakeet,UsedFor,0.8,Both birds can use seeds as food.,llm_bridge +bird,tanager,PartOf,0.8,both condors and tanagers are types of birds,llm_bridge +feather,tanager,HasA,0.8,both condors and tanagers have feathers as part of their bodies,llm_bridge +nest,tanager,HasA,0.8,both condors and tanagers build or use nests for shelter and reproduction,llm_bridge +condor,wing,PartOf,0.8,wings are a physical part of both condors and cockatoos,llm_bridge +wing,cockatoo,PartOf,0.8,wings are a physical part of both condors and cockatoos,llm_bridge +bird,cockatoo,PartOf,0.8,both condors and cockatoos are members of the bird classification,llm_bridge +nest,eagle,HasA,0.8,condors and eagles both build nests for their young,llm_bridge +condor,feathers,HasA,0.8,both condors and eagles have feathers covering their bodies,llm_bridge +feathers,eagle,HasA,0.8,both condors and eagles have feathers covering their bodies,llm_bridge +mineral,bridge_word:_crystal,HasProperty,0.8,Both minerals and salt can form crystals.,llm_bridge +bridge_word:_crystal,salt,HasA,0.8,Both minerals and salt can form crystals.,llm_bridge +mineral,bridge_word:_element,MadeOf,0.8,Both minerals and salt are made of chemical elements.,llm_bridge +bridge_word:_element,salt,MadeOf,0.8,Both minerals and salt are made of chemical elements.,llm_bridge +mineral,stone,PartOf,0.8,"granite is made of stone, and stone is a type of mineral.",llm_bridge +stone,granite,MadeOf,0.8,"granite is made of stone, and stone is a type of mineral.",llm_bridge +stone,flint,PartOf,0.8,stone is a category that both mineral and flint fall under.,llm_bridge +mineral,rock,PartOf,0.8,rock is a broader category that includes both minerals and flint.,llm_bridge +rock,flint,PartOf,0.8,rock is a broader category that includes both minerals and flint.,llm_bridge +mineral,quartz,HasA,0.8,"quartz is a type of mineral, and flint is made of quartz.",llm_bridge +quartz,flint,MadeOf,0.8,"quartz is a type of mineral, and flint is made of quartz.",llm_bridge +mineral,stone,HasA,0.8,"minerals are components of stones, which are parts of rocks",llm_bridge +stone,rock,PartOf,0.8,"minerals are components of stones, which are parts of rocks",llm_bridge +mineral,*rock**,PartOf,0.8,"minerals are often found within rocks, and ores are concentrated minerals found in rocks.",llm_bridge +*rock**,ore,PartOf,0.8,"minerals are often found within rocks, and ores are concentrated minerals found in rocks.",llm_bridge +mineral,*metal**,PartOf,0.8,"minerals can be metals, and ores contain metals.",llm_bridge +*metal**,ore,HasA,0.8,"minerals can be metals, and ores contain metals.",llm_bridge +mineral,*earth**,AtLocation,0.8,minerals and ores are both found in the earth.,llm_bridge +*earth**,ore,AtLocation,0.8,minerals and ores are both found in the earth.,llm_bridge +mineral,bridge_word:_stone,HasA,0.8,stone is a type of mineral and talc is a type of stone.,llm_bridge +bridge_word:_stone,talc,PartOf,0.8,stone is a type of mineral and talc is a type of stone.,llm_bridge +mineral,bridge_word:_powder,UsedFor,0.8,"minerals can be used to make powder, and talc is known for its powdery texture.",llm_bridge +bridge_word:_powder,talc,HasProperty,0.8,"minerals can be used to make powder, and talc is known for its powdery texture.",llm_bridge +mineral,stone,HasProperty,0.8,stone is a common property of minerals and a material bricks are made from,llm_bridge +stone,brick,MadeOf,0.8,stone is a common property of minerals and a material bricks are made from,llm_bridge +mineral,sand,HasProperty,0.8,sand is a common property of minerals and a material bricks are made from,llm_bridge +sand,brick,MadeOf,0.8,sand is a common property of minerals and a material bricks are made from,llm_bridge +mineral,clay,MadeOf,0.8,clay is a type of mineral and is used to make bricks,llm_bridge +clay,brick,MadeOf,0.8,clay is a type of mineral and is used to make bricks,llm_bridge +mineral,drill,UsedFor,0.8,drilling is used to extract both minerals and oil.,llm_bridge +drill,oil,UsedFor,0.8,drilling is used to extract both minerals and oil.,llm_bridge +mineral,deposit,AtLocation,0.8,both minerals and oil can be found in deposits.,llm_bridge +deposit,oil,AtLocation,0.8,both minerals and oil can be found in deposits.,llm_bridge +mineral,resource,HasA,0.8,both minerals and oil are considered natural resources.,llm_bridge +resource,oil,HasA,0.8,both minerals and oil are considered natural resources.,llm_bridge +stone,pebble,MadeOf,0.8,"A mineral can be a component of a stone, and a pebble is made of stone.",llm_bridge +mineral,rock,MadeOf,0.8,rocks are made of minerals and the earth contains rocks,llm_bridge +rock,earth,HasA,0.8,rocks are made of minerals and the earth contains rocks,llm_bridge +mineral,soil,MadeOf,0.8,soil contains minerals and the earth is composed of soil,llm_bridge +mineral,ore,MadeOf,0.8,ores are made of minerals and the earth contains ores,llm_bridge +ore,earth,HasA,0.8,ores are made of minerals and the earth contains ores,llm_bridge +fat,meat,HasA,0.8,meat connects as a component shared between fat (in animal tissue) and deer (as an animal source of meat),llm_bridge +meat,deer,HasA,0.8,meat connects as a component shared between fat (in animal tissue) and deer (as an animal source of meat),llm_bridge +fat,*oil**,MadeOf,0.8,oil can be derived from animal fat and is used in making or preserving pickles.,llm_bridge +*oil**,pickle,UsedFor,0.8,oil can be derived from animal fat and is used in making or preserving pickles.,llm_bridge +fat,*vinegar**,ReceivesAction,0.8,"vinegar can be used with fat in cooking, and it is used in pickling.",llm_bridge +*vinegar**,pickle,UsedFor,0.8,"vinegar can be used with fat in cooking, and it is used in pickling.",llm_bridge +fat,muscle,HasA,0.8,Both fat and tigers have muscles as part of their physical composition.,llm_bridge +muscle,tiger,HasA,0.8,Both fat and tigers have muscles as part of their physical composition.,llm_bridge +fat,meat,PartOf,0.8,"Fat is a part of meat, and tigers are made of meat.",llm_bridge +meat,tiger,MadeOf,0.8,"Fat is a part of meat, and tigers are made of meat.",llm_bridge +fat,body,PartOf,0.8,"Fat is a part of the body, and a tiger is an animal body.",llm_bridge +body,tiger,PartOf,0.8,"Fat is a part of the body, and a tiger is an animal body.",llm_bridge +fat,*meat**,MadeOf,0.8,,llm_bridge +*meat**,chicken,MadeOf,0.8,,llm_bridge +fat,liver,HasA,0.8,liver connects as both fat and goose have liver,llm_bridge +liver,goose,HasA,0.8,liver connects as both fat and goose have liver,llm_bridge +meat,goose,HasA,0.8,meat connects as both fat and goose have meat,llm_bridge +fat,food,HasA,0.8,food connects as fat is part of food and goose is used for food,llm_bridge +food,goose,UsedFor,0.8,food connects as fat is part of food and goose is used for food,llm_bridge +fat,diet,UsedFor,0.8,diet connects both as components of a dietary plan,llm_bridge +diet,lettuce,UsedFor,0.8,diet connects both as components of a dietary plan,llm_bridge +fat,salad,MadeOf,0.8,salad connects both as ingredients in a dish,llm_bridge +salad,lettuce,PartOf,0.8,salad connects both as ingredients in a dish,llm_bridge +food,lettuce,HasA,0.8,food connects both as a category they belong to,llm_bridge +fat,milk,MadeOf,0.8,milk can be a source of fat and is often found in cereal,llm_bridge +milk,cereal,HasA,0.8,milk can be a source of fat and is often found in cereal,llm_bridge +fat,bowl,HasA,0.8,a bowl can contain fat (like cream) and is where cereal is commonly served,llm_bridge +bowl,cereal,LocatedNear,0.8,a bowl can contain fat (like cream) and is where cereal is commonly served,llm_bridge +fat,breakfast,UsedFor,0.8,both fat and cereal can be used in preparing or eating breakfast,llm_bridge +breakfast,cereal,UsedFor,0.8,both fat and cereal can be used in preparing or eating breakfast,llm_bridge +fat,*body**,PartOf,0.8,Both fat and turtles are parts of a body system.,llm_bridge +*body**,turtle,PartOf,0.8,Both fat and turtles are parts of a body system.,llm_bridge +fat,*food**,MadeOf,0.8,"Fat is part of food, and turtles consume food.",llm_bridge +*food**,turtle,ReceivesAction,0.8,"Fat is part of food, and turtles consume food.",llm_bridge +*oil**,turtle,UsedFor,0.8,"Fat can be a component of oil, and oil can be used in turtle habitats (e.g., as part of their environment or diet).",llm_bridge +fat,oil,MadeOf,0.8,oil can be a type of fat and is an ingredient in gnocchi,llm_bridge +oil,gnocchi,MadeOf,0.8,oil can be a type of fat and is an ingredient in gnocchi,llm_bridge +fat,dough,MadeOf,0.8,dough contains fat and is a main part of gnocchi,llm_bridge +dough,gnocchi,PartOf,0.8,dough contains fat and is a main part of gnocchi,llm_bridge +fat,meal,UsedFor,0.8,meals often contain fat and can include gnocchi as a dish,llm_bridge +meal,gnocchi,PartOf,0.8,meals often contain fat and can include gnocchi as a dish,llm_bridge +liver,blowfish,HasA,0.8,"Both fat and blowfish can have livers, which store fat.",llm_bridge +oil,blowfish,MadeOf,0.8,Both fat and blowfish can be sources of oil (animal fat/oil).,llm_bridge +fat,poison,HasPrerequisite,0.8,"Blowfish have poison, and some preparation methods involve removing fat to reduce toxicity.",llm_bridge +poison,blowfish,HasA,0.8,"Blowfish have poison, and some preparation methods involve removing fat to reduce toxicity.",llm_bridge +grain,bridge_word:_crop,PartOf,0.8,grains and wheat are both types of crops grown by farmers.,llm_bridge +bridge_word:_crop,wheat,PartOf,0.8,grains and wheat are both types of crops grown by farmers.,llm_bridge +grain,bridge_word:_field,AtLocation,0.8,grains and wheat are commonly grown in fields.,llm_bridge +bridge_word:_field,wheat,AtLocation,0.8,grains and wheat are commonly grown in fields.,llm_bridge +grain,bridge_word:_flour,UsedFor,0.8,"grain can be used to make flour, and wheat is made into flour.",llm_bridge +bridge_word:_flour,wheat,MadeOf,0.8,"grain can be used to make flour, and wheat is made into flour.",llm_bridge +grain,corn,HasA,0.8,"corn is a type of grain, and rice is also a type of grain, so corn serves as a bridge between them.",llm_bridge +corn,rice,HasA,0.8,"corn is a type of grain, and rice is also a type of grain, so corn serves as a bridge between them.",llm_bridge +grain,wheat,HasA,0.8,"wheat is a type of grain, and rice is also a type of grain, so wheat serves as a bridge between them.",llm_bridge +wheat,rice,HasA,0.8,"wheat is a type of grain, and rice is also a type of grain, so wheat serves as a bridge between them.",llm_bridge +grain,barley,HasA,0.8,"barley is a type of grain, and rice is also a type of grain, so barley serves as a bridge between them.",llm_bridge +barley,rice,HasA,0.8,"barley is a type of grain, and rice is also a type of grain, so barley serves as a bridge between them.",llm_bridge +savanna,tree,HasA,0.8,"savannas have trees, which can have moss growing on them",llm_bridge +tree,moss,HasA,0.8,"savannas have trees, which can have moss growing on them",llm_bridge +savanna,rain,AtLocation,0.8,rain is found in savannas and is necessary for moss to grow,llm_bridge +rain,moss,UsedFor,0.8,rain is found in savannas and is necessary for moss to grow,llm_bridge +savanna,ground,PartOf,0.8,ground is a part of the savanna landscape and moss grows on the ground,llm_bridge +ground,moss,AtLocation,0.8,ground is a part of the savanna landscape and moss grows on the ground,llm_bridge +savanna,growth,HasPrerequisite,0.8,"Savannas require plant growth for their ecosystem, while lettuce is a plant grown for food.",llm_bridge +growth,lettuce,UsedFor,0.8,"Savannas require plant growth for their ecosystem, while lettuce is a plant grown for food.",llm_bridge +savanna,soil,HasA,0.8,"Savannas are landscapes that contain soil, while lettuce plants are grown in soil.",llm_bridge +soil,lettuce,MadeOf,0.8,"Savannas are landscapes that contain soil, while lettuce plants are grown in soil.",llm_bridge +savanna,tree,PartOf,0.8,Trees are part of the savanna landscape and can provide shade.,llm_bridge +tree,shade,CapableOf,0.8,Trees are part of the savanna landscape and can provide shade.,llm_bridge +savanna,grass,AtLocation,0.8,Grass is a common vegetation found in both savannas and jungles.,llm_bridge +grass,jungle,AtLocation,0.8,Grass is a common vegetation found in both savannas and jungles.,llm_bridge +savanna,tree,AtLocation,0.8,"Trees are present in both savannas and jungles, though in different densities and types.",llm_bridge +savanna,rain,HasProperty,0.8,"Both savannas and jungles experience rainfall, though the amount and frequency vary.",llm_bridge +rain,jungle,HasProperty,0.8,"Both savannas and jungles experience rainfall, though the amount and frequency vary.",llm_bridge +savanna,plant,PartOf,0.8,Plants are part of the savanna landscape and are components of a bouquet.,llm_bridge +plant,bouquet,HasA,0.8,Plants are part of the savanna landscape and are components of a bouquet.,llm_bridge +savanna,flower,PartOf,0.8,Flowers are part of the savanna landscape and are components of a bouquet.,llm_bridge +savanna,grass,PartOf,0.8,Grass is part of the savanna landscape and can be part of plants used in a bouquet.,llm_bridge +grass,bouquet,PartOf,0.8,Grass is part of the savanna landscape and can be part of plants used in a bouquet.,llm_bridge +savanna,river,PartOf,0.8,a river can flow through a savanna and lead to or be part of a sea,llm_bridge +river,sea,PartOf,0.8,a river can flow through a savanna and lead to or be part of a sea,llm_bridge +savanna,beach,AtLocation,0.8,a beach can be located near a savanna and is part of a coastal sea area,llm_bridge +beach,sea,PartOf,0.8,a beach can be located near a savanna and is part of a coastal sea area,llm_bridge +savanna,salt,HasA,0.8,"savannas can have salt deposits, and seas require salt for salinity",llm_bridge +salt,sea,HasPrerequisite,0.8,"savannas can have salt deposits, and seas require salt for salinity",llm_bridge +savanna,*tree**,AtLocation,0.8,"Trees are found in savannas, and branches are parts of trees.",llm_bridge +*tree**,branch,PartOf,0.8,"Trees are found in savannas, and branches are parts of trees.",llm_bridge +savanna,*wood**,MadeOf,0.8,"Both savannas and branches can be made of wood (savannas contain wood from trees, branches are wood).",llm_bridge +*wood**,branch,MadeOf,0.8,"Both savannas and branches can be made of wood (savannas contain wood from trees, branches are wood).",llm_bridge +savanna,*leaf**,AtLocation,0.8,"Leaves are found in savannas (on trees), and branches typically have leaves.",llm_bridge +*leaf**,branch,HasA,0.8,"Leaves are found in savannas (on trees), and branches typically have leaves.",llm_bridge +savanna,grass,HasA,0.8,Grass is a common feature in both savannas and pastures.,llm_bridge +grass,pasture,HasA,0.8,Grass is a common feature in both savannas and pastures.,llm_bridge +savanna,cow,CapableOf,0.8,Cows live in savannas and are often found in pastures.,llm_bridge +cow,pasture,AtLocation,0.8,Cows live in savannas and are often found in pastures.,llm_bridge +savanna,fence,ReceivesAction,0.8,Fences are built around savannas for grazing and are a common feature in pastures.,llm_bridge +fence,pasture,HasA,0.8,Fences are built around savannas for grazing and are a common feature in pastures.,llm_bridge +savanna,*water**,HasA,0.8,Water is a feature of a savanna and a primary component of a pond.,llm_bridge +*water**,pond,MadeOf,0.8,Water is a feature of a savanna and a primary component of a pond.,llm_bridge +savanna,*animal**,HasA,0.8,"Savannas contain animals that might live near ponds, and ponds are locations where animals can be found.",llm_bridge +*animal**,pond,AtLocation,0.8,"Savannas contain animals that might live near ponds, and ponds are locations where animals can be found.",llm_bridge +savanna,*grass**,HasA,0.8,Grass is common in savannas and often grows around ponds.,llm_bridge +*grass**,pond,AtLocation,0.8,Grass is common in savannas and often grows around ponds.,llm_bridge +savanna,bridge_word:_tree,HasA,0.8,explanation: Both savannas and land can have trees growing on them.,llm_bridge +bridge_word:_tree,land,HasA,0.8,explanation: Both savannas and land can have trees growing on them.,llm_bridge +savanna,bridge_word:_grass,HasA,0.8,explanation: Both savannas and land can have grass growing on them.,llm_bridge +bridge_word:_grass,land,HasA,0.8,explanation: Both savannas and land can have grass growing on them.,llm_bridge +savanna,bridge_word:_soil,HasA,0.8,explanation: Both savannas and land can have soil covering them.,llm_bridge +bridge_word:_soil,land,HasA,0.8,explanation: Both savannas and land can have soil covering them.,llm_bridge +desert,sand,HasA,0.8,sand is a common component of deserts and the material the ground is made of.,llm_bridge +sand,ground,MadeOf,0.8,sand is a common component of deserts and the material the ground is made of.,llm_bridge +desert,heat,HasProperty,0.8,"deserts are known for extreme heat, and the ground in a desert can also become very hot.",llm_bridge +heat,ground,HasProperty,0.8,"deserts are known for extreme heat, and the ground in a desert can also become very hot.",llm_bridge +desert,rock,HasA,0.8,"deserts often contain rocks, and rocks are a part of the ground's composition.",llm_bridge +rock,ground,MadeOf,0.8,"deserts often contain rocks, and rocks are a part of the ground's composition.",llm_bridge +desert,sun,HasProperty,0.8,sun is a common feature/condition of deserts and meadows,llm_bridge +sun,meadow,ReceivesAction,0.8,sun is a common feature/condition of deserts and meadows,llm_bridge +desert,water,HasPrerequisite,0.8,water is essential for meadows and scarce in deserts,llm_bridge +water,meadow,HasA,0.8,water is essential for meadows and scarce in deserts,llm_bridge +desert,grass,PartOf,0.8,grass is scarce in deserts but abundant in meadows,llm_bridge +desert,water,HasA,0.8,"a desert can have ponds with water, and a pond is made of water",llm_bridge +desert,sand,PartOf,0.8,sand is a part of the desert and can be found in a lake,llm_bridge +sand,lake,MadeOf,0.8,sand is a part of the desert and can be found in a lake,llm_bridge +desert,water,LocatedNear,0.8,water is found in or near a desert and is a part of a lake,llm_bridge +water,lake,PartOf,0.8,water is found in or near a desert and is a part of a lake,llm_bridge +desert,rock,PartOf,0.8,rocks are part of a desert landscape and can be found around or in a lake,llm_bridge +rock,lake,HasA,0.8,rocks are part of a desert landscape and can be found around or in a lake,llm_bridge +sand,creek,MadeOf,0.8,Sand is found in deserts and is made of materials like those found in creek beds.,llm_bridge +rock,creek,PartOf,0.8,Rocks are common in deserts and are part of creek formations.,llm_bridge +water,creek,HasA,0.8,"Deserts contain scarce water, while creeks are bodies of water.",llm_bridge +sand,earth,HasA,0.8,sand is part of a desert and earth contains sand,llm_bridge +desert,water,ReceivesAction,0.8,water is scarce in a desert but earth has water,llm_bridge +desert,*hole**,PartOf,0.8,explanation: A hole can be a part of a desert landscape (like a sand pit) and also a part of a pit structure.,llm_bridge +*hole**,pit,PartOf,0.8,explanation: A hole can be a part of a desert landscape (like a sand pit) and also a part of a pit structure.,llm_bridge +desert,*sand**,HasA,0.8,"explanation: Deserts often have sand, and pits can be made of sand, especially in desert environments.",llm_bridge +*sand**,pit,MadeOf,0.8,"explanation: Deserts often have sand, and pits can be made of sand, especially in desert environments.",llm_bridge +desert,*mine**,LocatedNear,0.8,explanation: A mine is often located near a desert and can be part of a pit structure (like an open-pit mine).,llm_bridge +*mine**,pit,PartOf,0.8,explanation: A mine is often located near a desert and can be part of a pit structure (like an open-pit mine).,llm_bridge +desert,sand_dune,PartOf,0.8,Sand dunes are a part of deserts and are often located near grasslands.,llm_bridge +sand_dune,grassland,LocatedNear,0.8,Sand dunes are a part of deserts and are often located near grasslands.,llm_bridge +desert,plant,PartOf,0.8,Plants are part of the ecosystem in both deserts and grasslands.,llm_bridge +plant,grassland,PartOf,0.8,Plants are part of the ecosystem in both deserts and grasslands.,llm_bridge +desert,soil,PartOf,0.8,Soil is a part of both desert and grassland environments.,llm_bridge +soil,grassland,PartOf,0.8,Soil is a part of both desert and grassland environments.,llm_bridge +desert,*water**,HasPrerequisite,0.8,water is needed for both desert (as a scarce resource) and farm (for irrigation),llm_bridge +*water**,farm,HasPrerequisite,0.8,water is needed for both desert (as a scarce resource) and farm (for irrigation),llm_bridge +desert,*drought**,HasProperty,0.8,drought is a property of desert and a challenge farms need to overcome,llm_bridge +*drought**,farm,HasPrerequisite,0.8,drought is a property of desert and a challenge farms need to overcome,llm_bridge +desert,*crop**,MadeOf,0.8,crops rarely grow in deserts but are a key part of farms,llm_bridge +*crop**,farm,HasA,0.8,crops rarely grow in deserts but are a key part of farms,llm_bridge +sand,field,HasA,0.8,Both deserts and fields can contain sand.,llm_bridge +desert,plant,UsedFor,0.8,Plants can grow in deserts (adapted) and are part of fields (crops).,llm_bridge +plant,field,PartOf,0.8,Plants can grow in deserts (adapted) and are part of fields (crops).,llm_bridge +water,field,HasPrerequisite,0.8,Both deserts and fields require water (though deserts are arid).,llm_bridge +falcon,sky,AtLocation,0.8,falcons and doves often fly in the sky,llm_bridge +sky,dove,AtLocation,0.8,falcons and doves often fly in the sky,llm_bridge +falcon,prey,UsedFor,0.8,falcons hunt prey; doves are sometimes prey,llm_bridge +prey,dove,CapableOf,0.8,falcons hunt prey; doves are sometimes prey,llm_bridge +falcon,nest,HasA,0.8,both falcons and doves build and use nests,llm_bridge +falcon,wing,HasA,0.8,both birds have wings for flying,llm_bridge +falcon,feather,HasA,0.8,both birds are covered in feathers,llm_bridge +feather,robin,HasA,0.8,both birds are covered in feathers,llm_bridge +falcon,hawk,LocatedNear,0.8,both falcons and pigeons are found near hawks in nature,llm_bridge +hawk,pigeon,LocatedNear,0.8,both falcons and pigeons are found near hawks in nature,llm_bridge +falcon,prey,CapableOf,0.8,"falcons hunt prey, pigeons can be prey",llm_bridge +prey,pigeon,ReceivesAction,0.8,"falcons hunt prey, pigeons can be prey",llm_bridge +falcon,bird,PartOf,0.8,both falcons and pigeons are part of the bird category,llm_bridge +bird,pigeon,PartOf,0.8,both falcons and pigeons are part of the bird category,llm_bridge +bird,finch,PartOf,0.8,both are types of birds,llm_bridge +nest,finch,HasA,0.8,both birds have nests,llm_bridge +falcon,seed,UsedFor,0.8,both rely on seeds in their food chain,llm_bridge +seed,finch,UsedFor,0.8,both rely on seeds in their food chain,llm_bridge +falcon,bridge_word:_wing,HasA,0.8,explanation: Both falcons and mallards have wings as part of their anatomy.,llm_bridge +bridge_word:_wing,mallard,HasA,0.8,explanation: Both falcons and mallards have wings as part of their anatomy.,llm_bridge +falcon,bridge_word:_egg,HasA,0.8,explanation: Both falcons and mallards lay eggs as part of their reproductive process.,llm_bridge +bridge_word:_egg,mallard,HasA,0.8,explanation: Both falcons and mallards lay eggs as part of their reproductive process.,llm_bridge +falcon,bridge_word:_water,AtLocation,0.8,explanation: Both falcons and mallards can be found near or in water environments.,llm_bridge +bridge_word:_water,mallard,AtLocation,0.8,explanation: Both falcons and mallards can be found near or in water environments.,llm_bridge +wing,hornbill,HasA,0.8,Both birds have wings for flying.,llm_bridge +nest,hornbill,HasA,0.8,Both birds build nests for raising their young.,llm_bridge +wing,barbet,HasA,0.8,Both birds have wings for flight.,llm_bridge +falcon,tree,AtLocation,0.8,Both falcons and blackbirds can be found in trees.,llm_bridge +tree,blackbird,AtLocation,0.8,Both falcons and blackbirds can be found in trees.,llm_bridge +falcon,nest,AtLocation,0.8,Both falcons and blackbirds build or occupy nests.,llm_bridge +nest,blackbird,AtLocation,0.8,Both falcons and blackbirds build or occupy nests.,llm_bridge +sky,blackbird,AtLocation,0.8,Both falcons and blackbirds can be seen in the sky.,llm_bridge +falcon,falcon,HasA,0.8,birds can both have feathers,llm_bridge +falcon,oxpecker,HasA,0.8,birds can both have feathers,llm_bridge +falcon,beak,HasA,0.8,birds can both have beaks for eating,llm_bridge +beak,oxpecker,HasA,0.8,birds can both have beaks for eating,llm_bridge +wing,oxpecker,HasA,0.8,birds can both have wings for flying,llm_bridge +falcon,wings,PartOf,0.8,wings are a physical part shared by both birds,llm_bridge +wings,hummingbird,PartOf,0.8,wings are a physical part shared by both birds,llm_bridge +falcon,feathers,PartOf,0.8,feathers are a physical part shared by both birds,llm_bridge +feathers,hummingbird,PartOf,0.8,feathers are a physical part shared by both birds,llm_bridge +falcon,nest,UsedFor,0.8,nest is used by both birds for housing,llm_bridge +nest,hummingbird,UsedFor,0.8,nest is used by both birds for housing,llm_bridge +flesh,meat,Desires,0.8,meat connects as a desired food item for both contexts.,llm_bridge +meat,turkey,Desires,0.8,meat connects as a desired food item for both contexts.,llm_bridge +flesh,bird,PartOf,0.8,bird connects as both flesh and turkey can be part of a bird.,llm_bridge +bird,turkey,PartOf,0.8,bird connects as both flesh and turkey can be part of a bird.,llm_bridge +flesh,meal,UsedFor,0.8,meal connects as both flesh and turkey can be used in preparing a meal.,llm_bridge +meal,turkey,UsedFor,0.8,meal connects as both flesh and turkey can be used in preparing a meal.,llm_bridge +flesh,milk,MadeOf,0.8,milk is a component of flesh (from animals) and cheese (food product),llm_bridge +milk,cheese,MadeOf,0.8,milk is a component of flesh (from animals) and cheese (food product),llm_bridge +flesh,animal,PartOf,0.8,animal contains flesh and is used to make cheese,llm_bridge +animal,cheese,UsedFor,0.8,animal contains flesh and is used to make cheese,llm_bridge +flesh,food,HasA,0.8,both flesh and cheese are types of food,llm_bridge +food,cheese,HasA,0.8,both flesh and cheese are types of food,llm_bridge +animal,flock,PartOf,0.8,explanation: Both flesh and flock are parts of the broader category of animals.,llm_bridge +flesh,food,UsedFor,0.8,explanation: Both flesh and flock can be used as food.,llm_bridge +food,flock,UsedFor,0.8,explanation: Both flesh and flock can be used as food.,llm_bridge +flesh,sheep,MadeOf,0.8,"explanation: Flesh can be made of sheep, and a flock has sheep.",llm_bridge +sheep,flock,HasA,0.8,"explanation: Flesh can be made of sheep, and a flock has sheep.",llm_bridge +flesh,*bird**,PartOf,0.8,"emu is a type of bird, and birds have flesh.",llm_bridge +flesh,*meat**,HasA,0.8,emu is an animal whose flesh can be eaten as meat.,llm_bridge +*meat**,emu,HasA,0.8,emu is an animal whose flesh can be eaten as meat.,llm_bridge +flesh,*animal**,PartOf,0.8,both flesh (as part of an animal) and emu (as an animal) are categorized under animal.,llm_bridge +*animal**,emu,PartOf,0.8,both flesh (as part of an animal) and emu (as an animal) are categorized under animal.,llm_bridge +flesh,meat,HasA,0.8,meat is a type of flesh and some birds are meat,llm_bridge +meat,bird,HasA,0.8,meat is a type of flesh and some birds are meat,llm_bridge +flesh,animal,HasA,0.8,both flesh and birds are parts of animals,llm_bridge +animal,bird,HasA,0.8,both flesh and birds are parts of animals,llm_bridge +flesh,wing,HasA,0.8,wings are part of birds and birds may have flesh in their wings,llm_bridge +flesh,body,PartOf,0.8,Both flesh and fat are parts of an animal's body.,llm_bridge +body,fat,PartOf,0.8,Both flesh and fat are parts of an animal's body.,llm_bridge +flesh,meat,MadeOf,0.8,Meat is made of flesh and often contains fat.,llm_bridge +flesh,*bird,HasA,0.8,birds have flesh and can eat insects**,llm_bridge +*bird,insect,HasA,0.8,birds have flesh and can eat insects**,llm_bridge +flesh,*fish,HasA,0.8,fish have flesh and can eat insects**,llm_bridge +*fish,insect,HasA,0.8,fish have flesh and can eat insects**,llm_bridge +flesh,*fishhook,MadeOf,0.8,fishhooks are made of metal (often with flesh-like bait) and used to catch insects**,llm_bridge +*fishhook,insect,UsedFor,0.8,fishhooks are made of metal (often with flesh-like bait) and used to catch insects**,llm_bridge +flesh,body,HasA,0.8,Both flesh and turtles have bodies.,llm_bridge +body,turtle,HasA,0.8,Both flesh and turtles have bodies.,llm_bridge +flesh,shell,PartOf,0.8,"Turtle shells are part of its structure, which protects the flesh.",llm_bridge +shell,turtle,HasA,0.8,"Turtle shells are part of its structure, which protects the flesh.",llm_bridge +flesh,blood,HasA,0.8,Both flesh and turtles contain blood.,llm_bridge +blood,turtle,HasA,0.8,Both flesh and turtles contain blood.,llm_bridge +body,wing,PartOf,0.8,wings are a part of a body and birds have wings,llm_bridge +body,feather,HasA,0.8,feathers can be on a body and birds have feathers,llm_bridge +body,food,HasPrerequisite,0.8,food is required for a body and birds use food,llm_bridge +food,bird,UsedFor,0.8,food is required for a body and birds use food,llm_bridge +body,blood,PartOf,0.8,blood is a component of the body and blood is a component of the organism,llm_bridge +blood,blood,PartOf,0.8,blood is a component of the body and blood is a component of the organism,llm_bridge +body,limb,PartOf,0.8,limbs are parts of both bodies and lemurs.,llm_bridge +limb,lemur,HasA,0.8,limbs are parts of both bodies and lemurs.,llm_bridge +body,fur,HasA,0.8,fur is present on both bodies (humans) and lemurs.,llm_bridge +fur,lemur,HasA,0.8,fur is present on both bodies (humans) and lemurs.,llm_bridge +body,tail,HasA,0.8,tails are parts of bodies (some animals) and lemurs.,llm_bridge +tail,lemur,HasA,0.8,tails are parts of bodies (some animals) and lemurs.,llm_bridge +body,*shell**,HasA,0.8,"A body can have a shell, and a turtle has a shell.",llm_bridge +*shell**,turtle,HasA,0.8,"A body can have a shell, and a turtle has a shell.",llm_bridge +body,*leg**,HasA,0.8,"A body has legs, and a turtle has legs.",llm_bridge +*leg**,turtle,HasA,0.8,"A body has legs, and a turtle has legs.",llm_bridge +body,*head**,HasA,0.8,"A body has a head, and a turtle has a head.",llm_bridge +*head**,turtle,HasA,0.8,"A body has a head, and a turtle has a head.",llm_bridge +body,muscle,HasA,0.8,muscles are parts of both a body and a bull's body.,llm_bridge +muscle,bull,HasA,0.8,muscles are parts of both a body and a bull's body.,llm_bridge +body,skin,HasA,0.8,skin covers both a body and a bull.,llm_bridge +skin,bull,HasA,0.8,skin covers both a body and a bull.,llm_bridge +body,leg,HasA,0.8,legs are parts of both a body and a bull.,llm_bridge +leg,bull,HasA,0.8,legs are parts of both a body and a bull.,llm_bridge +limb,rabbit,HasA,0.8,limbs are part of a body and rabbits have limbs.,llm_bridge +body,muscle,PartOf,0.8,muscles are part of a body and rabbits have muscles.,llm_bridge +muscle,rabbit,HasA,0.8,muscles are part of a body and rabbits have muscles.,llm_bridge +skin,chimpanzee,HasA,0.8,skin is a part of both a body and a chimpanzee.,llm_bridge +fur,chimpanzee,HasA,0.8,fur is a part of both a body and a chimpanzee.,llm_bridge +leg,chimpanzee,HasA,0.8,leg is a part of both a body and a chimpanzee.,llm_bridge +body,jaw,PartOf,0.8,the jaw is part of the body and the tooth is part of the jaw,llm_bridge +body,mouth,PartOf,0.8,the mouth is part of the body and the tooth is located in the mouth,llm_bridge +mouth,tooth,AtLocation,0.8,the mouth is part of the body and the tooth is located in the mouth,llm_bridge +body,cavity,HasA,0.8,the body has cavities (like the mouth) where teeth are located,llm_bridge +cavity,tooth,AtLocation,0.8,the body has cavities (like the mouth) where teeth are located,llm_bridge +body,*skin**,PartOf,0.8,Skin is part of a body and a rat has skin.,llm_bridge +*skin**,rat,HasA,0.8,Skin is part of a body and a rat has skin.,llm_bridge +body,*leg**,PartOf,0.8,A leg is part of a body and a rat has legs.,llm_bridge +*leg**,rat,HasA,0.8,A leg is part of a body and a rat has legs.,llm_bridge +body,*tail**,PartOf,0.8,A tail is part of a body and a rat has a tail.,llm_bridge +*tail**,rat,HasA,0.8,A tail is part of a body and a rat has a tail.,llm_bridge +body,arm,PartOf,0.8,Both the arm and leg are parts of the body.,llm_bridge +arm,leg,PartOf,0.8,Both the arm and leg are parts of the body.,llm_bridge +body,foot,PartOf,0.8,Both the foot (part of the leg) and the leg itself are parts of the body.,llm_bridge +foot,leg,PartOf,0.8,Both the foot (part of the leg) and the leg itself are parts of the body.,llm_bridge +muscle,leg,HasA,0.8,"The body has muscles, and the leg also has muscles.",llm_bridge +wool,candle,MadeOf,0.8,"wool can be used in candle wicks, and wax is a core component of candles.",llm_bridge +wool,crayon,MadeOf,0.8,"some crayons contain wool fibers for texture, and wax is the primary material.",llm_bridge +wool,candlestick,UsedFor,0.8,"wool can be used to make candle wicks, and wax is the fuel in candlesticks.",llm_bridge +candlestick,wax,UsedFor,0.8,"wool can be used to make candle wicks, and wax is the fuel in candlesticks.",llm_bridge +wool,sheep,MadeOf,0.8,sheep produce wool and sometimes live in forests near wood.,llm_bridge +sheep,wood,HasA,0.8,sheep produce wool and sometimes live in forests near wood.,llm_bridge +wool,fabric,HasProperty,0.8,Both wool and brick can be components or properties of fabric in different contexts.,llm_bridge +fabric,brick,MadeOf,0.8,Both wool and brick can be components or properties of fabric in different contexts.,llm_bridge +wool,material,MadeOf,0.8,Both wool and brick are types of materials used in construction or manufacturing.,llm_bridge +material,brick,MadeOf,0.8,Both wool and brick are types of materials used in construction or manufacturing.,llm_bridge +wool,building,UsedFor,0.8,"Both wool and brick are used in the construction of buildings, either as insulation or structural components.",llm_bridge +building,brick,UsedFor,0.8,"Both wool and brick are used in the construction of buildings, either as insulation or structural components.",llm_bridge +wool,*shirt**,MadeOf,0.8,Explanation: Both wool and rubber can be materials used to make shirts.,llm_bridge +*shirt**,rubber,MadeOf,0.8,Explanation: Both wool and rubber can be materials used to make shirts.,llm_bridge +wool,*glove**,MadeOf,0.8,Explanation: Both wool and rubber can be materials used to make gloves.,llm_bridge +*glove**,rubber,MadeOf,0.8,Explanation: Both wool and rubber can be materials used to make gloves.,llm_bridge +wool,*hat**,MadeOf,0.8,Explanation: Both wool and rubber can be materials used to make hats.,llm_bridge +*hat**,rubber,MadeOf,0.8,Explanation: Both wool and rubber can be materials used to make hats.,llm_bridge +sheep,bone,HasA,0.8,sheep produce wool and have bones,llm_bridge +sheep,bone,PartOf,0.8,"wool comes from sheep, and bones are part of sheep",llm_bridge +wool,animal,MadeOf,0.8,"wool is made from animals, and animals have bones",llm_bridge +animal,bone,HasA,0.8,"wool is made from animals, and animals have bones",llm_bridge +wool,wool,PartOf,0.8,wool is a part of the material that makes fabric.,llm_bridge +wool,fabric,MadeOf,0.8,wool is a part of the material that makes fabric.,llm_bridge +wool,rock,HasProperty,0.8,rock relates to both as a natural material property.,llm_bridge +rock,diamond,MadeOf,0.8,rock relates to both as a natural material property.,llm_bridge +wool,gemstone,ReceivesAction,0.8,gemstone connects both as processed materials.,llm_bridge +gemstone,diamond,HasA,0.8,gemstone connects both as processed materials.,llm_bridge +wool,jewelry,MadeOf,0.8,jewelry uses both as components in its creation.,llm_bridge +jewelry,diamond,PartOf,0.8,jewelry uses both as components in its creation.,llm_bridge +fabric,wrapper,MadeOf,0.8,fabric is a type of wool and wrappers can be made of fabric.,llm_bridge +wool,clothing,UsedFor,0.8,"wool is used for making clothing, and wrappers can be used for clothing packaging.",llm_bridge +clothing,wrapper,UsedFor,0.8,"wool is used for making clothing, and wrappers can be used for clothing packaging.",llm_bridge +wool,yarn,PartOf,0.8,"wool can be spun into yarn, and wrappers can contain yarn.",llm_bridge +yarn,wrapper,PartOf,0.8,"wool can be spun into yarn, and wrappers can contain yarn.",llm_bridge +wool,spinning_wheel,UsedFor,0.8,Both wool and ceramic can be shaped or manipulated using a spinning wheel in their respective crafts.,llm_bridge +spinning_wheel,ceramic,UsedFor,0.8,Both wool and ceramic can be shaped or manipulated using a spinning wheel in their respective crafts.,llm_bridge +wool,kiln,UsedFor,0.8,Both wool (for felting) and ceramic are often processed or fired in a kiln.,llm_bridge +kiln,ceramic,UsedFor,0.8,Both wool (for felting) and ceramic are often processed or fired in a kiln.,llm_bridge +wool,fiber,MadeOf,0.8,"Wool is a natural fiber, while ceramic can be made of fiber-reinforced composites or contain fiber-like structures.",llm_bridge +fiber,ceramic,MadeOf,0.8,"Wool is a natural fiber, while ceramic can be made of fiber-reinforced composites or contain fiber-like structures.",llm_bridge +nickel,mine,UsedFor,0.8,nickel is extracted from mines where ore is found,llm_bridge +nickel,smelter,UsedFor,0.8,both nickel and ore are processed in smelters to extract metal,llm_bridge +smelter,ore,UsedFor,0.8,both nickel and ore are processed in smelters to extract metal,llm_bridge +nickel,metal,MadeOf,0.8,"nickel is a metal, ore contains metal",llm_bridge +nickel,bridge_word:_metal,MadeOf,0.8,Both nickel and bronze are made of metal.,llm_bridge +bridge_word:_metal,bronze,MadeOf,0.8,Both nickel and bronze are made of metal.,llm_bridge +nickel,bridge_word:_alloy,MadeOf,0.8,explanation: Both nickel and titanium can be components of alloys.,llm_bridge +bridge_word:_alloy,titanium,MadeOf,0.8,explanation: Both nickel and titanium can be components of alloys.,llm_bridge +nickel,coin,MadeOf,0.8,coins are often made of nickel and silver,llm_bridge +nickel,jewelry,MadeOf,0.8,jewelry can be made of both nickel and silver,llm_bridge +jewelry,silver,MadeOf,0.8,jewelry can be made of both nickel and silver,llm_bridge +nickel,alloy,MadeOf,0.8,alloys can contain both nickel and silver,llm_bridge +nickel,mine,AtLocation,0.8,Both nickel and wolfram are extracted from mines.,llm_bridge +mine,wolfram,AtLocation,0.8,Both nickel and wolfram are extracted from mines.,llm_bridge +nickel,element,PartOf,0.8,Both nickel and wolfram are chemical elements.,llm_bridge +nickel,*bridge_word:_coin**,MadeOf,0.8,"nickel is used to make coins, and coins are made of metal.",llm_bridge +*bridge_word:_coin**,metal,MadeOf,0.8,"nickel is used to make coins, and coins are made of metal.",llm_bridge +nickel,*bridge_word:_alloy**,MadeOf,0.8,"nickel can be part of an alloy, and alloys are made of metal.",llm_bridge +*bridge_word:_alloy**,metal,MadeOf,0.8,"nickel can be part of an alloy, and alloys are made of metal.",llm_bridge +nickel,*bridge_word:_magnet**,AtLocation,0.8,"nickels can be near magnets, and magnets are made of metal.",llm_bridge +*bridge_word:_magnet**,metal,MadeOf,0.8,"nickels can be near magnets, and magnets are made of metal.",llm_bridge +nickel,bridge_word:_**alloy**,MadeOf,0.8,"Explanation: Both nickel and iron can be components of alloys, which are mixtures of metals.",llm_bridge +bridge_word:_**alloy**,iron,MadeOf,0.8,"Explanation: Both nickel and iron can be components of alloys, which are mixtures of metals.",llm_bridge +nickel,bridge_word:_**coin**,MadeOf,0.8,Explanation: Both nickel and iron can be used as materials to make coins.,llm_bridge +bridge_word:_**coin**,iron,MadeOf,0.8,Explanation: Both nickel and iron can be used as materials to make coins.,llm_bridge +nickel,bridge_word:_**magnet**,HasProperty,0.8,"Explanation: Nickel has magnetic properties, and iron is used to create magnets.",llm_bridge +bridge_word:_**magnet**,iron,UsedFor,0.8,"Explanation: Nickel has magnetic properties, and iron is used to create magnets.",llm_bridge +nickel,vessel,MadeOf,0.8,nickel and pewter are both used to make vessels,llm_bridge +vessel,pewter,MadeOf,0.8,nickel and pewter are both used to make vessels,llm_bridge +coin,pewter,MadeOf,0.8,nickel and pewter can both be used to create coins,llm_bridge +nickel,penny,MadeOf,0.8,penny is a coin that may be made of nickel and tin,llm_bridge +penny,tin,MadeOf,0.8,penny is a coin that may be made of nickel and tin,llm_bridge +nickel,plating,UsedFor,0.8,plating is a process that uses nickel and tin to coat surfaces,llm_bridge +plating,tin,UsedFor,0.8,plating is a process that uses nickel and tin to coat surfaces,llm_bridge +nickel,*coin**,MadeOf,0.8,coins can be made of both nickel and gold.,llm_bridge +*coin**,gold,MadeOf,0.8,coins can be made of both nickel and gold.,llm_bridge +nickel,*ring**,MadeOf,0.8,rings can be made of both nickel and gold.,llm_bridge +*ring**,gold,MadeOf,0.8,rings can be made of both nickel and gold.,llm_bridge +nickel,*alloy**,MadeOf,0.8,alloys can be made from both nickel and gold.,llm_bridge +*alloy**,gold,MadeOf,0.8,alloys can be made from both nickel and gold.,llm_bridge +bladder,milk,HasA,0.8,"a bladder can contain milk, and a carton is made to hold milk.",llm_bridge +milk,carton,MadeOf,0.8,"a bladder can contain milk, and a carton is made to hold milk.",llm_bridge +bladder,bridge_word_1:_**body**,PartOf,0.8,explanation: Both the bladder and chest are parts of the body.,llm_bridge +bridge_word_1:_**body**,chest,PartOf,0.8,explanation: Both the bladder and chest are parts of the body.,llm_bridge +bladder,bridge_word_2:_**human**,PartOf,0.8,explanation: Both the bladder and chest are parts of a human.,llm_bridge +bridge_word_2:_**human**,chest,PartOf,0.8,explanation: Both the bladder and chest are parts of a human.,llm_bridge +bladder,bridge_word_3:_**organ**,HasA,0.8,explanation: Both the bladder (an organ) and chest (housing organs) contain or are part of organs.,llm_bridge +bridge_word_3:_**organ**,chest,HasA,0.8,explanation: Both the bladder (an organ) and chest (housing organs) contain or are part of organs.,llm_bridge +bladder,bridge_word:_liquid,HasA,0.8,explanation: Both a bladder and a pitcher contain liquid.,llm_bridge +bridge_word:_liquid,pitcher,HasA,0.8,explanation: Both a bladder and a pitcher contain liquid.,llm_bridge +bladder,bridge_word:_water,HasA,0.8,explanation: Both a bladder and a pitcher can hold water.,llm_bridge +bridge_word:_water,pitcher,HasA,0.8,explanation: Both a bladder and a pitcher can hold water.,llm_bridge +bladder,bridge_word:_container,PartOf,0.8,explanation: Both a bladder and a pitcher are types of containers.,llm_bridge +bridge_word:_container,pitcher,PartOf,0.8,explanation: Both a bladder and a pitcher are types of containers.,llm_bridge +bladder,water,HasA,0.8,water connects the contents of both containers,llm_bridge +water,trough,HasA,0.8,water connects the contents of both containers,llm_bridge +bladder,animal,AtLocation,0.8,"animal relates to both as something that might use them (urinating into bladder, drinking from trough)",llm_bridge +animal,trough,AtLocation,0.8,"animal relates to both as something that might use them (urinating into bladder, drinking from trough)",llm_bridge +bladder,liquid,HasA,0.8,liquid connects as a common substance held in both containers,llm_bridge +liquid,trough,HasA,0.8,liquid connects as a common substance held in both containers,llm_bridge +bladder,*water**,HasA,0.8,Both can hold water.,llm_bridge +*water**,bucket,UsedFor,0.8,Both can hold water.,llm_bridge +bladder,*liquid**,HasA,0.8,Both are containers for liquids.,llm_bridge +*liquid**,bucket,UsedFor,0.8,Both are containers for liquids.,llm_bridge +bladder,*container**,PartOf,0.8,Both are types of containers.,llm_bridge +*container**,bucket,PartOf,0.8,Both are types of containers.,llm_bridge +water,vase,HasA,0.8,both bladder and vase can contain water.,llm_bridge +liquid,vase,HasA,0.8,both bladder and vase can contain liquids.,llm_bridge +bladder,fill,ReceivesAction,0.8,both bladder and vase can be filled with contents.,llm_bridge +fill,vase,ReceivesAction,0.8,both bladder and vase can be filled with contents.,llm_bridge +bladder,*bean**,HasA,0.8,"A bean is inside a bladder, and a bean is made of parts found in a pod.",llm_bridge +*bean**,pod,MadeOf,0.8,"A bean is inside a bladder, and a bean is made of parts found in a pod.",llm_bridge +bladder,*seed**,HasA,0.8,"A bladder can contain seeds, and a pod contains seeds.",llm_bridge +*seed**,pod,HasA,0.8,"A bladder can contain seeds, and a pod contains seeds.",llm_bridge +bladder,*plant**,PartOf,0.8,Both a bladder and a pod can be parts of a plant.,llm_bridge +*plant**,pod,PartOf,0.8,Both a bladder and a pod can be parts of a plant.,llm_bridge +liquid,mug,HasA,0.8,both bladders and mugs contain liquids.,llm_bridge +water,mug,HasA,0.8,both bladders and mugs can hold water.,llm_bridge +bladder,container,PartOf,0.8,both bladders and mugs are types of containers.,llm_bridge +container,mug,PartOf,0.8,both bladders and mugs are types of containers.,llm_bridge +bladder,urine,HasA,0.8,"bladder contains urine, drawer can store things like urine samples",llm_bridge +urine,drawer,UsedFor,0.8,"bladder contains urine, drawer can store things like urine samples",llm_bridge +bladder,organ,PartOf,0.8,"bladder is an organ, organ can be stored in a drawer (in a container)",llm_bridge +organ,drawer,LocatedNear,0.8,"bladder is an organ, organ can be stored in a drawer (in a container)",llm_bridge +trumpet,bridge_word:_orchestra,AtLocation,0.8,An orchestra is a location where both trumpets and zithers can be found as musical instruments.,llm_bridge +bridge_word:_orchestra,zither,AtLocation,0.8,An orchestra is a location where both trumpets and zithers can be found as musical instruments.,llm_bridge +trumpet,music,UsedFor,0.8,music is the purpose for both instruments,llm_bridge +music,guitar,UsedFor,0.8,music is the purpose for both instruments,llm_bridge +band,guitar,AtLocation,0.8,both instruments are commonly found in bands,llm_bridge +trumpet,player,HasA,0.8,both instruments are associated with players,llm_bridge +player,guitar,HasA,0.8,both instruments are associated with players,llm_bridge +band,clarinet,AtLocation,0.8,both are often found in a band,llm_bridge +trumpet,player,CapableOf,0.8,both are capable of being played by a musician,llm_bridge +player,clarinet,CapableOf,0.8,both are capable of being played by a musician,llm_bridge +trumpet,musician,UsedFor,0.8,a musician plays both a trumpet and a piano,llm_bridge +musician,piano,UsedFor,0.8,a musician plays both a trumpet and a piano,llm_bridge +orchestra,piano,AtLocation,0.8,both a trumpet and a piano can be found in an orchestra,llm_bridge +trumpet,concert,AtLocation,0.8,both a trumpet and a piano can be played at a concert,llm_bridge +concert,piano,AtLocation,0.8,both a trumpet and a piano can be played at a concert,llm_bridge +music,saxophone,UsedFor,0.8,music is created using both instruments,llm_bridge +player,saxophone,CapableOf,0.8,a player can play both instruments,llm_bridge +band,saxophone,AtLocation,0.8,both instruments are often found in a band,llm_bridge +musician,bongo,UsedFor,0.8,a musician plays both a trumpet and bongo,llm_bridge +trumpet,music,CapableOf,0.8,both trumpet and bongo produce music,llm_bridge +music,bongo,CapableOf,0.8,both trumpet and bongo produce music,llm_bridge +band,bongo,AtLocation,0.8,both instruments are commonly found in a band,llm_bridge +music,harmonica,UsedFor,0.8,both instruments are used for creating music,llm_bridge +player,harmonica,CapableOf,0.8,a player can play both instruments,llm_bridge +trumpet,sound,UsedFor,0.8,both instruments are used to create sound,llm_bridge +sound,harmonica,UsedFor,0.8,both instruments are used to create sound,llm_bridge +music,organ,UsedFor,0.8,music connects both instruments as something they are used for,llm_bridge +orchestra,organ,AtLocation,0.8,orchestra connects both instruments as a place where they are found,llm_bridge +concert,organ,AtLocation,0.8,concert connects both instruments as an event where they are played,llm_bridge +music,scale,UsedFor,0.8,Both the trumpet and scale are used for creating music.,llm_bridge +trumpet,practice,UsedFor,0.8,"Practicing the trumpet often involves playing scales, and scales are a prerequisite for mastering musical practice.",llm_bridge +practice,scale,HasPrerequisite,0.8,"Practicing the trumpet often involves playing scales, and scales are a prerequisite for mastering musical practice.",llm_bridge +trumpet,song,UsedFor,0.8,Both the trumpet and scales are used in the composition and performance of songs.,llm_bridge +song,scale,UsedFor,0.8,Both the trumpet and scales are used in the composition and performance of songs.,llm_bridge +trumpet,bridge_word_1:_musician,UsedFor,0.8,"musicians play both trumpets and calipers (as musical instruments, though calipers are typically measuring tools)",llm_bridge +bridge_word_1:_musician,caliper,UsedFor,0.8,"musicians play both trumpets and calipers (as musical instruments, though calipers are typically measuring tools)",llm_bridge +trumpet,bridge_word_2:_instrument,PartOf,0.8,both trumpet and caliper are types of instruments (musical and measuring respectively),llm_bridge +bridge_word_2:_instrument,caliper,PartOf,0.8,both trumpet and caliper are types of instruments (musical and measuring respectively),llm_bridge +trumpet,bridge_word_3:_sound,HasProperty,0.8,trumpets produce sound; calipers are used to measure precision which relates to sound in music contexts,llm_bridge +bridge_word_3:_sound,caliper,UsedFor,0.8,trumpets produce sound; calipers are used to measure precision which relates to sound in music contexts,llm_bridge +mold,infection,CapableOf,0.8,"mold can cause infection, which can affect blood",llm_bridge +infection,blood,HasPrerequisite,0.8,"mold can cause infection, which can affect blood",llm_bridge +mold,fungus,HasA,0.8,"mold can be a fungus, blood is desired for life",llm_bridge +fungus,blood,Desires,0.8,"mold can be a fungus, blood is desired for life",llm_bridge +mold,disease,Causes,0.8,"mold causes disease, blood can be part of disease",llm_bridge +disease,blood,HasA,0.8,"mold causes disease, blood can be part of disease",llm_bridge +mold,bacteria,PartOf,0.8,bacteria connects as a component of both mold and muscle tissue (in terms of microbial presence),llm_bridge +bacteria,muscle,PartOf,0.8,bacteria connects as a component of both mold and muscle tissue (in terms of microbial presence),llm_bridge +mold,growth,HasProperty,0.8,growth connects as a shared property/process of both mold and muscle development,llm_bridge +growth,muscle,HasProperty,0.8,growth connects as a shared property/process of both mold and muscle development,llm_bridge +infection,muscle,HasPrerequisite,0.8,infection connects as mold can cause infection and muscle requires infection to sometimes grow (recovery),llm_bridge +mold,fungus,PartOf,0.8,"Mold is a type of fungus, and bodies can have fungi.",llm_bridge +fungus,body,HasA,0.8,"Mold is a type of fungus, and bodies can have fungi.",llm_bridge +growth,body,CapableOf,0.8,"Mold is known for its growth, and bodies can grow.",llm_bridge +disease,body,HasPrerequisite,0.8,"Mold can cause disease, and bodies need disease to be affected.",llm_bridge +banana,dish,UsedFor,0.8,dish connects food items that can be served together,llm_bridge +dish,potato,UsedFor,0.8,dish connects food items that can be served together,llm_bridge +banana,peel,PartOf,0.8,peel connects the outer covering of both fruits and vegetables,llm_bridge +peel,potato,PartOf,0.8,peel connects the outer covering of both fruits and vegetables,llm_bridge +banana,market,AtLocation,0.8,market connects where both food items are commonly sold,llm_bridge +market,potato,AtLocation,0.8,market connects where both food items are commonly sold,llm_bridge +banana,*potassium**,HasProperty,0.8,Both bananas and eggs contain potassium.,llm_bridge +*potassium**,egg,HasProperty,0.8,Both bananas and eggs contain potassium.,llm_bridge +banana,*protein**,HasA,0.8,Both bananas and eggs contain protein.,llm_bridge +*protein**,egg,HasA,0.8,Both bananas and eggs contain protein.,llm_bridge +banana,*breakfast**,UsedFor,0.8,Both bananas and eggs are commonly eaten for breakfast.,llm_bridge +*breakfast**,egg,UsedFor,0.8,Both bananas and eggs are commonly eaten for breakfast.,llm_bridge +banana,plant,PartOf,0.8,Both bananas and sugar come from plants.,llm_bridge +plant,sugar,PartOf,0.8,Both bananas and sugar come from plants.,llm_bridge +banana,sweetness,HasProperty,0.8,Both bananas and sugar have a sweet taste.,llm_bridge +sweetness,sugar,HasProperty,0.8,Both bananas and sugar have a sweet taste.,llm_bridge +banana,vinegar,HasPrerequisite,0.8,vinegar is used in making pickles and can be paired with bananas,llm_bridge +vinegar,pickle,MadeOf,0.8,vinegar is used in making pickles and can be paired with bananas,llm_bridge +banana,sandwich,HasPrerequisite,0.8,sandwiches can contain both bananas and pickles as ingredients,llm_bridge +sandwich,pickle,HasPrerequisite,0.8,sandwiches can contain both bananas and pickles as ingredients,llm_bridge +banana,*peeler,UsedFor,0.8,peeler is used for preparing bananas and can be used in making soup.**,llm_bridge +*peeler,soup,UsedFor,0.8,peeler is used for preparing bananas and can be used in making soup.**,llm_bridge +banana,*spoon,UsedFor,0.8,"spoon is used for eating bananas (dipped in, etc.) and for eating soup.**",llm_bridge +*spoon,soup,UsedFor,0.8,"spoon is used for eating bananas (dipped in, etc.) and for eating soup.**",llm_bridge +banana,*plate,AtLocation,0.8,plate is where bananas and soup might both be served.**,llm_bridge +*plate,soup,AtLocation,0.8,plate is where bananas and soup might both be served.**,llm_bridge +banana,snack,HasProperty,0.8,both are types of snacks,llm_bridge +snack,chips,HasProperty,0.8,both are types of snacks,llm_bridge +banana,sandwich,UsedFor,0.8,both can be used as ingredients in a sandwich,llm_bridge +sandwich,chips,UsedFor,0.8,both can be used as ingredients in a sandwich,llm_bridge +banana,salt,ReceivesAction,0.8,"bananas can be salted, chips usually contain salt",llm_bridge +salt,chips,HasA,0.8,"bananas can be salted, chips usually contain salt",llm_bridge +banana,animal,UsedFor,0.8,animals eat bananas; slugs are sometimes prey for animals,llm_bridge +animal,slug,HasPrerequisite,0.8,animals eat bananas; slugs are sometimes prey for animals,llm_bridge +banana,snail,UsedFor,0.8,bananas can be eaten by snails; slugs are related to snails,llm_bridge +snail,slug,PartOf,0.8,bananas can be eaten by snails; slugs are related to snails,llm_bridge +banana,garden,AtLocation,0.8,bananas grow in gardens; slugs are found in gardens,llm_bridge +garden,slug,AtLocation,0.8,bananas grow in gardens; slugs are found in gardens,llm_bridge +banana,flour,MadeOf,0.8,"flour is a common ingredient in both banana (e.g., banana bread) and cornbread",llm_bridge +flour,cornbread,MadeOf,0.8,"flour is a common ingredient in both banana (e.g., banana bread) and cornbread",llm_bridge +plant,lettuce,PartOf,0.8,banana and lettuce are both parts of plants.,llm_bridge +banana,fruit,PartOf,0.8,"banana is a type of fruit, and lettuce is used in salads often associated with fruit.",llm_bridge +fruit,lettuce,UsedFor,0.8,"banana is a type of fruit, and lettuce is used in salads often associated with fruit.",llm_bridge +banana,salad,UsedFor,0.8,"bananas are sometimes used in salads, and lettuce is a primary ingredient in salads.",llm_bridge +salad,lettuce,MadeOf,0.8,"bananas are sometimes used in salads, and lettuce is a primary ingredient in salads.",llm_bridge +banana,fruit,MadeOf,0.8,"Both banana and gnocchi are types of food made from plant-based ingredients, with banana being a fruit and gnocchi often made from potatoes.",llm_bridge +fruit,gnocchi,MadeOf,0.8,"Both banana and gnocchi are types of food made from plant-based ingredients, with banana being a fruit and gnocchi often made from potatoes.",llm_bridge +banana,plant,MadeOf,0.8,"Bananas grow on plants, and gnocchi is often made from plant-derived ingredients like potatoes.",llm_bridge +plant,gnocchi,MadeOf,0.8,"Bananas grow on plants, and gnocchi is often made from plant-derived ingredients like potatoes.",llm_bridge +banana,potato,Desires,0.8,"Bananas are often desired as a healthy food, while gnocchi is often made from potatoes.",llm_bridge +potato,gnocchi,MadeOf,0.8,"Bananas are often desired as a healthy food, while gnocchi is often made from potatoes.",llm_bridge +orca,zoo,AtLocation,0.8,zoos are places where both orcas and gorillas can be found.,llm_bridge +orca,trainer,ReceivesAction,0.8,trainers interact with both orcas and gorillas in captivity.,llm_bridge +trainer,gorilla,ReceivesAction,0.8,trainers interact with both orcas and gorillas in captivity.,llm_bridge +orca,enclosure,AtLocation,0.8,enclosures are habitats for both orcas (in marine parks) and gorillas (in zoos).,llm_bridge +enclosure,gorilla,AtLocation,0.8,enclosures are habitats for both orcas (in marine parks) and gorillas (in zoos).,llm_bridge +orca,,HasProperty,0.8,explanation: Both orcas and tigers are predators.,llm_bridge +,tiger,HasProperty,0.8,explanation: Both orcas and tigers are predators.,llm_bridge +orca,,PartOf,0.8,explanation: Both orcas and tigers are animals.,llm_bridge +,tiger,PartOf,0.8,explanation: Both orcas and tigers are animals.,llm_bridge +orca,,HasPrerequisite,0.8,"explanation: Orcas don't have fur, but tigers do. (Note: This bridge word is asymmetrical and may not be ideal, but it connects via a contrasting relationship.)",llm_bridge +,tiger,HasA,0.8,"explanation: Orcas don't have fur, but tigers do. (Note: This bridge word is asymmetrical and may not be ideal, but it connects via a contrasting relationship.)",llm_bridge +orca,whale,PartOf,0.8,"explanation: An orca is a type of whale, and a bull is a type of animal that can be related to whales through the concept of marine or terrestrial mammals.",llm_bridge +whale,bull,HasPrerequisite,0.8,"explanation: An orca is a type of whale, and a bull is a type of animal that can be related to whales through the concept of marine or terrestrial mammals.",llm_bridge +orca,animal,PartOf,0.8,"explanation: Both orca and bull are classified as animals, so ""animal"" is a broad category that connects them.",llm_bridge +animal,bull,PartOf,0.8,"explanation: Both orca and bull are classified as animals, so ""animal"" is a broad category that connects them.",llm_bridge +orca,farm,AtLocation,0.8,"explanation: Orcas can be found in marine farms or zoos, and bulls are commonly found on farms, making ""farm"" a bridge through location.",llm_bridge +farm,bull,AtLocation,0.8,"explanation: Orcas can be found in marine farms or zoos, and bulls are commonly found on farms, making ""farm"" a bridge through location.",llm_bridge +orca,bridge_word:_predator,CapableOf,0.8,explanation: Both orcas and cassowaries can be predators in their respective ecosystems.,llm_bridge +bridge_word:_predator,cassowary,CapableOf,0.8,explanation: Both orcas and cassowaries can be predators in their respective ecosystems.,llm_bridge +orca,bridge_word:_zoo,AtLocation,0.8,explanation: Both orcas and cassowaries can be found in zoos as exotic animals.,llm_bridge +bridge_word:_zoo,cassowary,AtLocation,0.8,explanation: Both orcas and cassowaries can be found in zoos as exotic animals.,llm_bridge +orca,bridge_word:_animal,HasA,0.8,explanation: Both orcas and cassowaries are types of animals.,llm_bridge +bridge_word:_animal,cassowary,HasA,0.8,explanation: Both orcas and cassowaries are types of animals.,llm_bridge +orca,fish,HasA,0.8,"Orcas eat fish, and meat is made of fish.",llm_bridge +fish,meat,MadeOf,0.8,"Orcas eat fish, and meat is made of fish.",llm_bridge +orca,meat,CapableOf,0.8,"orcas eat meat, gazelles are made of meat",llm_bridge +meat,gazelle,MadeOf,0.8,"orcas eat meat, gazelles are made of meat",llm_bridge +orca,hunt,UsedFor,0.8,both orcas and gazelles can be hunted for meat,llm_bridge +hunt,gazelle,UsedFor,0.8,both orcas and gazelles can be hunted for meat,llm_bridge +orca,food,UsedFor,0.8,"orcas use food as sustenance, and gazelles provide food",llm_bridge +orca,skeleton,HasA,0.8,Orcas have skeletons made of bones.,llm_bridge +skeleton,bone,PartOf,0.8,Orcas have skeletons made of bones.,llm_bridge +orca,shark,LocatedNear,0.8,Orcas and sharks are marine animals; sharks have bones.,llm_bridge +shark,bone,HasA,0.8,Orcas and sharks are marine animals; sharks have bones.,llm_bridge +orca,water,AtLocation,0.8,"explanation: Orcas live in water, and geese often swim in water.",llm_bridge +water,goose,AtLocation,0.8,"explanation: Orcas live in water, and geese often swim in water.",llm_bridge +fish,goose,UsedFor,0.8,"explanation: An orca has fish as prey, and geese can be used to hunt fish in some cultures.",llm_bridge +orca,migration,ReceivesAction,0.8,"explanation: Orcas migrate to follow food, and geese migrate for seasonal changes.",llm_bridge +migration,goose,ReceivesAction,0.8,"explanation: Orcas migrate to follow food, and geese migrate for seasonal changes.",llm_bridge +orca,jaw,HasA,0.8,jaw is a part of an orca and part of a mouth,llm_bridge +jaw,mouth,PartOf,0.8,jaw is a part of an orca and part of a mouth,llm_bridge +orca,tooth,HasA,0.8,tooth is in an orca and in a mouth,llm_bridge +tooth,mouth,HasA,0.8,tooth is in an orca and in a mouth,llm_bridge +flock,herd,MadeOf,0.8,both animals can form groups called herds or flocks,llm_bridge +herd,rhinoceros,MadeOf,0.8,both animals can form groups called herds or flocks,llm_bridge +flock,grassland,AtLocation,0.8,both animals are commonly found in grassland environments,llm_bridge +grassland,rhinoceros,AtLocation,0.8,both animals are commonly found in grassland environments,llm_bridge +flock,savanna,AtLocation,0.8,both animals inhabit savanna ecosystems,llm_bridge +savanna,rhinoceros,AtLocation,0.8,both animals inhabit savanna ecosystems,llm_bridge +flock,monkey,PartOf,0.8,monkey connects as part of a group and type of animal,llm_bridge +monkey,marmoset,HasPrerequisite,0.8,monkey connects as part of a group and type of animal,llm_bridge +flock,zoo,AtLocation,0.8,zoo connects as common location for both,llm_bridge +zoo,marmoset,AtLocation,0.8,zoo connects as common location for both,llm_bridge +flock,tree,PartOf,0.8,tree connects as habitat for both,llm_bridge +tree,marmoset,AtLocation,0.8,tree connects as habitat for both,llm_bridge +flock,bird,PartOf,0.8,birds are part of a flock and have claws,llm_bridge +bird,claw,HasA,0.8,birds are part of a flock and have claws,llm_bridge +flock,chicken,PartOf,0.8,chickens are part of a flock and have claws,llm_bridge +chicken,claw,HasA,0.8,chickens are part of a flock and have claws,llm_bridge +flock,goose,PartOf,0.8,geese are part of a flock and have claws,llm_bridge +goose,claw,HasA,0.8,geese are part of a flock and have claws,llm_bridge +flock,"bridge_word:_""mountain""",AtLocation,0.8,"explanation: Mountains are natural habitats where flocks of sheep or other animals might be found, and gorillas are known to inhabit mountainous regions.",llm_bridge +"bridge_word:_""mountain""",gorilla,AtLocation,0.8,"explanation: Mountains are natural habitats where flocks of sheep or other animals might be found, and gorillas are known to inhabit mountainous regions.",llm_bridge +flock,"bridge_word:_""habitat""",AtLocation,0.8,"explanation: A habitat refers to the natural environment of a species; flocks often occupy grassy habitats, while gorillas live in forested habitats.",llm_bridge +"bridge_word:_""habitat""",gorilla,AtLocation,0.8,"explanation: A habitat refers to the natural environment of a species; flocks often occupy grassy habitats, while gorillas live in forested habitats.",llm_bridge +flock,"bridge_word:_""zoo""",AtLocation,0.8,explanation: Zoos are facilities where both flocks (like sheep or goats) and gorillas might be kept for display or conservation.,llm_bridge +"bridge_word:_""zoo""",gorilla,AtLocation,0.8,explanation: Zoos are facilities where both flocks (like sheep or goats) and gorillas might be kept for display or conservation.,llm_bridge +flock,sheep,PartOf,0.8,Sheep are part of a flock and their meat is a type of meat.,llm_bridge +sheep,meat,MadeOf,0.8,Sheep are part of a flock and their meat is a type of meat.,llm_bridge +flock,cow,PartOf,0.8,Cows are part of a flock (though typically called a herd) and their meat is a type of meat.,llm_bridge +cow,meat,MadeOf,0.8,Cows are part of a flock (though typically called a herd) and their meat is a type of meat.,llm_bridge +flock,pork,PartOf,0.8,"Pigs, which are part of a flock (swine), produce pork, which is a type of meat.",llm_bridge +pork,meat,MadeOf,0.8,"Pigs, which are part of a flock (swine), produce pork, which is a type of meat.",llm_bridge +flock,wool,HasA,0.8,"wool is a product of the animals in the flock, and wool can contain natural animal fats.",llm_bridge +wool,fat,MadeOf,0.8,"wool is a product of the animals in the flock, and wool can contain natural animal fats.",llm_bridge +flock,animal,PartOf,0.8,"The flock is composed of animals, and animals are composed of fat.",llm_bridge +animal,fat,MadeOf,0.8,"The flock is composed of animals, and animals are composed of fat.",llm_bridge +sheep,fat,HasA,0.8,"Sheep are part of a flock, and sheep have body fat.",llm_bridge +flock,bridge_word:_bird,PartOf,0.8,"A flock is part of a group of birds, and an ostrich is a type of bird.",llm_bridge +bridge_word:_bird,ostrich,HasA,0.8,"A flock is part of a group of birds, and an ostrich is a type of bird.",llm_bridge +flock,bridge_word:_group,HasA,0.8,"A flock has a group of animals, and an ostrich is part of a group of birds or animals.",llm_bridge +bridge_word:_group,ostrich,PartOf,0.8,"A flock has a group of animals, and an ostrich is part of a group of birds or animals.",llm_bridge +flock,bridge_word:_animal,HasA,0.8,"A flock has animals, and an ostrich is part of the animal kingdom.",llm_bridge +flock,*bird**,PartOf,0.8,"A flock consists of birds, and snails are often found near birds or in areas where birds inhabit.",llm_bridge +*bird**,snail,AtLocation,0.8,"A flock consists of birds, and snails are often found near birds or in areas where birds inhabit.",llm_bridge +flock,*garden**,AtLocation,0.8,"A flock can be found grazing in a garden, and snails often live in gardens.",llm_bridge +*garden**,snail,AtLocation,0.8,"A flock can be found grazing in a garden, and snails often live in gardens.",llm_bridge +flock,*food**,UsedFor,0.8,"A flock is raised for food, and snails can also be a source of food (e.g., escargot).",llm_bridge +*food**,snail,UsedFor,0.8,"A flock is raised for food, and snails can also be a source of food (e.g., escargot).",llm_bridge +sheep,bull,ReceivesAction,0.8,"sheep are part of a flock, and a bull might manage or herd sheep.",llm_bridge +flock,pasture,AtLocation,0.8,both a flock and a bull can be found in a pasture.,llm_bridge +pasture,bull,AtLocation,0.8,both a flock and a bull can be found in a pasture.,llm_bridge +cow,bull,HasA,0.8,"a flock might include cows, and a bull is a male cow.",llm_bridge +flock,water,HasPrerequisite,0.8,water is necessary for both animals' survival,llm_bridge +water,fish,HasPrerequisite,0.8,water is necessary for both animals' survival,llm_bridge +flock,pond,AtLocation,0.8,both animals can be found in ponds,llm_bridge +pond,fish,AtLocation,0.8,both animals can be found in ponds,llm_bridge +flock,bait,UsedFor,0.8,bait is used to attract both fish and potentially birds in a flock,llm_bridge +skin,fur,HasA,0.8,fur is a part of skin and covers zebras,llm_bridge +fur,zebra,HasA,0.8,fur is a part of skin and covers zebras,llm_bridge +skin,pattern,HasProperty,0.8,"skin can have patterns, and zebras are known for their pattern",llm_bridge +pattern,zebra,HasProperty,0.8,"skin can have patterns, and zebras are known for their pattern",llm_bridge +skin,animal,PartOf,0.8,"skin is a part of an animal's body, and zebra is an animal",llm_bridge +animal,zebra,PartOf,0.8,"skin is a part of an animal's body, and zebra is an animal",llm_bridge +skin,*foot**,PartOf,0.8,both skin and leg are parts of the foot,llm_bridge +*foot**,leg,PartOf,0.8,both skin and leg are parts of the foot,llm_bridge +skin,*fur**,HasA,0.8,both skin and leg can have fur,llm_bridge +*fur**,leg,HasA,0.8,both skin and leg can have fur,llm_bridge +skin,*muscle**,HasA,0.8,both skin and leg contain muscles,llm_bridge +*muscle**,leg,HasA,0.8,both skin and leg contain muscles,llm_bridge +skin,hair,HasA,0.8,hair connects as a common feature of skin and moles,llm_bridge +hair,mole,HasA,0.8,hair connects as a common feature of skin and moles,llm_bridge +fur,mole,HasA,0.8,fur connects as a common feature of skin (on animals) and moles,llm_bridge +body,mole,PartOf,0.8,body connects as the larger entity that contains both skin and moles,llm_bridge +skin,*tree**,PartOf,0.8,tree bark connects the source material to the product,llm_bridge +*tree**,cork,MadeOf,0.8,tree bark connects the source material to the product,llm_bridge +skin,*bark**,PartOf,0.8,bark connects the protective outer layer to the material,llm_bridge +*bark**,cork,MadeOf,0.8,bark connects the protective outer layer to the material,llm_bridge +skin,*material**,HasA,0.8,material connects the substance shared by both,llm_bridge +*material**,cork,HasA,0.8,material connects the substance shared by both,llm_bridge +skin,*candle**,PartOf,0.8,"Skin can be part of a candle (when made into parchment), and wax is a primary material of candles.",llm_bridge +*candle**,wax,MadeOf,0.8,"Skin can be part of a candle (when made into parchment), and wax is a primary material of candles.",llm_bridge +skin,*ointment**,UsedFor,0.8,"Ointments are used for skin treatment, and wax is a common ingredient in ointments.",llm_bridge +*ointment**,wax,MadeOf,0.8,"Ointments are used for skin treatment, and wax is a common ingredient in ointments.",llm_bridge +skin,*polish**,ReceivesAction,0.8,"Skin can be polished, and wax is a material used to make polish.",llm_bridge +*polish**,wax,MadeOf,0.8,"Skin can be polished, and wax is a material used to make polish.",llm_bridge +skin,gem,UsedFor,0.8,gemstones like diamonds can be set into items for skin adornment or protection.,llm_bridge +gem,diamond,MadeOf,0.8,gemstones like diamonds can be set into items for skin adornment or protection.,llm_bridge +skin,jewelry,UsedFor,0.8,jewelry can be worn against the skin and is often made with diamonds.,llm_bridge +jewelry,diamond,MadeOf,0.8,jewelry can be worn against the skin and is often made with diamonds.,llm_bridge +skin,gemstone,UsedFor,0.8,gemstones (like diamonds) can be used in items placed on or near the skin.,llm_bridge +gemstone,diamond,MadeOf,0.8,gemstones (like diamonds) can be used in items placed on or near the skin.,llm_bridge +skin,bridge_word:_surface,PartOf,0.8,"Skin is part of the body's surface, and chalk can be used to mark on surfaces.",llm_bridge +bridge_word:_surface,chalk,HasProperty,0.8,"Skin is part of the body's surface, and chalk can be used to mark on surfaces.",llm_bridge +skin,bridge_word:_mark,HasProperty,0.8,"Skin can be marked, and chalk is made of materials used for making marks.",llm_bridge +bridge_word:_mark,chalk,MadeOf,0.8,"Skin can be marked, and chalk is made of materials used for making marks.",llm_bridge +skin,bridge_word:_hand,PartOf,0.8,"Skin is part of the hand, and chalk can be used by hand for writing or drawing.",llm_bridge +bridge_word:_hand,chalk,UsedFor,0.8,"Skin is part of the hand, and chalk can be used by hand for writing or drawing.",llm_bridge +skin,fur,MadeOf,0.8,fur connects as a material part of skin and a characteristic of a lynx,llm_bridge +skin,metal,PartOf,0.8,"skin can be part of metal objects like armor, and rust is made of metal.",llm_bridge +skin,iron,PartOf,0.8,"skin can be part of iron objects like suits, and rust is made of iron.",llm_bridge +iron,rust,MadeOf,0.8,"skin can be part of iron objects like suits, and rust is made of iron.",llm_bridge +skin,object,PartOf,0.8,"skin can be part of an object like armor, and rust can be part of an object like metal.",llm_bridge +object,rust,PartOf,0.8,"skin can be part of an object like armor, and rust can be part of an object like metal.",llm_bridge +skin,snail,PartOf,0.8,snail has skin as part of its body,llm_bridge +snail,snail,HasA,0.8,snail has skin as part of its body,llm_bridge +skin,slime,HasProperty,0.8,"skin can be slimy, snail produces slime",llm_bridge +slime,snail,HasA,0.8,"skin can be slimy, snail produces slime",llm_bridge +skin,shell,PartOf,0.8,"skin covers the body, snail has a shell as protection",llm_bridge +jack,car,UsedFor,0.8,both tools are commonly used in car maintenance/repair,llm_bridge +car,level,UsedFor,0.8,both tools are commonly used in car maintenance/repair,llm_bridge +jack,floor,AtLocation,0.8,both tools are often found in workshops or garages on the floor,llm_bridge +floor,level,AtLocation,0.8,both tools are often found in workshops or garages on the floor,llm_bridge +jack,height,HasPrerequisite,0.8,a jack requires knowing height for use; a level measures height,llm_bridge +height,level,HasProperty,0.8,a jack requires knowing height for use; a level measures height,llm_bridge +jack,farm,UsedFor,0.8,farms require both a jack for lifting heavy equipment and a plow for tilling soil.,llm_bridge +farm,plow,UsedFor,0.8,farms require both a jack for lifting heavy equipment and a plow for tilling soil.,llm_bridge +jack,soil,UsedFor,0.8,"jacks are used in soil conditions (e.g., lifting stuck vehicles), and plows are used to till soil.",llm_bridge +soil,plow,UsedFor,0.8,"jacks are used in soil conditions (e.g., lifting stuck vehicles), and plows are used to till soil.",llm_bridge +jack,tractor,HasA,0.8,tractors can have jacks for maintenance and plows for farming.,llm_bridge +tractor,plow,HasA,0.8,tractors can have jacks for maintenance and plows for farming.,llm_bridge +jack,hammer,HasA,0.8,both are tools found in a toolbox,llm_bridge +hammer,pick,HasA,0.8,both are tools found in a toolbox,llm_bridge +jack,toolbox,AtLocation,0.8,both are tools stored in a toolbox,llm_bridge +toolbox,pick,AtLocation,0.8,both are tools stored in a toolbox,llm_bridge +jack,repair,UsedFor,0.8,both are used for repair tasks,llm_bridge +repair,pick,UsedFor,0.8,both are used for repair tasks,llm_bridge +jack,wood,UsedFor,0.8,Both a jack and a planer are used to work with wood.,llm_bridge +jack,board,UsedFor,0.8,Both tools can be used to shape or move boards.,llm_bridge +board,planer,UsedFor,0.8,Both tools can be used to shape or move boards.,llm_bridge +jack,surface,UsedFor,0.8,Both tools can be used to modify or prepare surfaces.,llm_bridge +surface,planer,UsedFor,0.8,Both tools can be used to modify or prepare surfaces.,llm_bridge +jack,bridge_word:_car,UsedFor,0.8,Both tools are used in automotive repair on cars.,llm_bridge +bridge_word:_car,wedge,UsedFor,0.8,Both tools are used in automotive repair on cars.,llm_bridge +jack,bridge_word:_lever,PartOf,0.8,Both jack and wedge use a lever mechanism to function.,llm_bridge +bridge_word:_lever,wedge,PartOf,0.8,Both jack and wedge use a lever mechanism to function.,llm_bridge +jack,bridge_word:_force,ReceivesAction,0.8,Both tools receive applied force to perform their functions.,llm_bridge +bridge_word:_force,wedge,ReceivesAction,0.8,Both tools receive applied force to perform their functions.,llm_bridge +jack,handle,PartOf,0.8,a handle is part of both a jack and a spade,llm_bridge +handle,spade,PartOf,0.8,a handle is part of both a jack and a spade,llm_bridge +jack,toolshed,AtLocation,0.8,a toolshed is a location where both a jack and a spade might be stored,llm_bridge +toolshed,spade,AtLocation,0.8,a toolshed is a location where both a jack and a spade might be stored,llm_bridge +jack,digging,UsedFor,0.8,digging is an activity that both a jack and a spade can be used for,llm_bridge +digging,spade,UsedFor,0.8,digging is an activity that both a jack and a spade can be used for,llm_bridge +car,ladder,AtLocation,0.8,"A jack is used for working on a car, and a ladder can be found at the location of a car (e.g., for accessing the roof or changing a tire in a tight space).",llm_bridge +jack,truck,UsedFor,0.8,"A jack is used for working on a truck, and a ladder can be found at the location of a truck (e.g., for accessing the bed or roof).",llm_bridge +truck,ladder,AtLocation,0.8,"A jack is used for working on a truck, and a ladder can be found at the location of a truck (e.g., for accessing the bed or roof).",llm_bridge +jack,vehicle,UsedFor,0.8,"A jack is used for working on a vehicle, and a ladder can be found at the location of a vehicle (e.g., for maintenance or access).",llm_bridge +vehicle,ladder,AtLocation,0.8,"A jack is used for working on a vehicle, and a ladder can be found at the location of a vehicle (e.g., for maintenance or access).",llm_bridge +car,hammer,UsedFor,0.8,Both tools are used in car repair or assembly.,llm_bridge +jack,nail,UsedFor,0.8,Both tools are used for driving or extracting nails.,llm_bridge +nail,hammer,UsedFor,0.8,Both tools are used for driving or extracting nails.,llm_bridge +wood,hammer,UsedFor,0.8,Both tools can be used in woodworking tasks.,llm_bridge +jack,screwdriver,HasA,0.8,"Both tools can be used to unscrew things, and they are both hand tools.",llm_bridge +screwdriver,needle,HasA,0.8,"Both tools can be used to unscrew things, and they are both hand tools.",llm_bridge +hammer,needle,HasA,0.8,"Both tools can be used for striking, and they are both handheld tools.",llm_bridge +jack,toolkit,LocatedNear,0.8,Both tools are often found in a toolkit.,llm_bridge +toolkit,needle,LocatedNear,0.8,Both tools are often found in a toolkit.,llm_bridge +nail,awl,UsedFor,0.8,Both tools are used for working with nails.,llm_bridge +jack,leather,UsedFor,0.8,Both tools can be used to work with leather.,llm_bridge +salad,plate,AtLocation,0.8,Both salad and soup can be served on a plate.,llm_bridge +plate,soup,AtLocation,0.8,Both salad and soup can be served on a plate.,llm_bridge +salad,spoon,UsedFor,0.8,A spoon is commonly used to eat both salad and soup.,llm_bridge +spoon,soup,UsedFor,0.8,A spoon is commonly used to eat both salad and soup.,llm_bridge +salad,restaurant,AtLocation,0.8,Both salad and soup are commonly found in a restaurant.,llm_bridge +restaurant,soup,AtLocation,0.8,Both salad and soup are commonly found in a restaurant.,llm_bridge +salad,dressing,HasA,0.8,dressing is part of a salad and can be sweetened with sugar,llm_bridge +dressing,sugar,UsedFor,0.8,dressing is part of a salad and can be sweetened with sugar,llm_bridge +lettuce,sugar,HasPrerequisite,0.8,"lettuce is part of a salad, and sugar is not typically required for lettuce",llm_bridge +salad,fruit,HasA,0.8,fruit can be part of a salad and can contain natural sugar,llm_bridge +fruit,sugar,PartOf,0.8,fruit can be part of a salad and can contain natural sugar,llm_bridge +salad,fork,UsedFor,0.8,a fork is used to eat both salad and chicken,llm_bridge +fork,chicken,UsedFor,0.8,a fork is used to eat both salad and chicken,llm_bridge +plate,chicken,AtLocation,0.8,a plate is where both salad and chicken are served,llm_bridge +salad,meal,PartOf,0.8,both salad and chicken can be part of a meal,llm_bridge +meal,chicken,PartOf,0.8,both salad and chicken can be part of a meal,llm_bridge +salad,*bowl**,AtLocation,0.8,bowls are commonly used to serve both salad and cereal.,llm_bridge +*bowl**,cereal,AtLocation,0.8,bowls are commonly used to serve both salad and cereal.,llm_bridge +salad,*food**,HasA,0.8,both salad and cereal are types of food.,llm_bridge +*food**,cereal,HasA,0.8,both salad and cereal are types of food.,llm_bridge +salad,*meal**,PartOf,0.8,salad and cereal can both be part of a meal.,llm_bridge +*meal**,cereal,PartOf,0.8,salad and cereal can both be part of a meal.,llm_bridge +salad,vegetable,HasA,0.8,"both salads and candies can contain vegetables (e.g., salad greens, candy corn)",llm_bridge +vegetable,candy,HasA,0.8,"both salads and candies can contain vegetables (e.g., salad greens, candy corn)",llm_bridge +fruit,candy,HasA,0.8,"both salads and candies can contain fruit (e.g., fruit salad, fruit candy)",llm_bridge +salad,sugar,MadeOf,0.8,"both salads and candies can be made with sugar (e.g., salad dressing, candy ingredients)",llm_bridge +sugar,candy,MadeOf,0.8,"both salads and candies can be made with sugar (e.g., salad dressing, candy ingredients)",llm_bridge +salad,*plate**,AtLocation,0.8,Both salad and banana are commonly served on a plate.,llm_bridge +*plate**,banana,AtLocation,0.8,Both salad and banana are commonly served on a plate.,llm_bridge +salad,*recipe**,UsedFor,0.8,Both salad and banana can be ingredients in a recipe.,llm_bridge +*recipe**,banana,UsedFor,0.8,Both salad and banana can be ingredients in a recipe.,llm_bridge +salad,*tomato**,HasA,0.8,Tomatoes are often found in salads and are botanically related to corn.,llm_bridge +*tomato**,corn,LocatedNear,0.8,Tomatoes are often found in salads and are botanically related to corn.,llm_bridge +salad,*lettuce**,HasA,0.8,Lettuce is a key ingredient in salads and grows near cornfields.,llm_bridge +*lettuce**,corn,LocatedNear,0.8,Lettuce is a key ingredient in salads and grows near cornfields.,llm_bridge +salad,*kernel**,PartOf,0.8,Kernels are part of a salad (like corn kernels) and are also a part of corn itself.,llm_bridge +*kernel**,corn,HasA,0.8,Kernels are part of a salad (like corn kernels) and are also a part of corn itself.,llm_bridge +salad,vegetable,MadeOf,0.8,"many salads contain vegetables, and butter is used for cooking or serving vegetables",llm_bridge +vegetable,butter,UsedFor,0.8,"many salads contain vegetables, and butter is used for cooking or serving vegetables",llm_bridge +lettuce,butter,UsedFor,0.8,"lettuce is a common salad ingredient, and butter can be used with lettuce",llm_bridge +salad,oil,MadeOf,0.8,"some salads contain oil-based dressings, and butter is made from dairy fat",llm_bridge +oil,butter,MadeOf,0.8,"some salads contain oil-based dressings, and butter is made from dairy fat",llm_bridge +salad,sandwich,UsedFor,0.8,both salad and ham can be ingredients in a sandwich,llm_bridge +sandwich,ham,UsedFor,0.8,both salad and ham can be ingredients in a sandwich,llm_bridge +plate,ham,AtLocation,0.8,both salad and ham are typically served on a plate,llm_bridge +meal,ham,PartOf,0.8,both salad and ham can be components of a meal,llm_bridge +lettuce,egg,UsedFor,0.8,lettuce is a part of a salad and can be used to cook eggs,llm_bridge +plate,egg,AtLocation,0.8,"a salad can be served on a plate, and eggs can also be served on a plate",llm_bridge +salad,vinegar,HasA,0.8,"vinegar is an ingredient in a salad dressing, and vinegar can be used to cook eggs",llm_bridge +vinegar,egg,UsedFor,0.8,"vinegar is an ingredient in a salad dressing, and vinegar can be used to cook eggs",llm_bridge +chili,*food**,UsedFor,0.8,food connects as both chili and salt are used for cooking food.,llm_bridge +*food**,salt,UsedFor,0.8,food connects as both chili and salt are used for cooking food.,llm_bridge +chili,*dish**,UsedFor,0.8,dish connects as both chili and salt are used as ingredients in dishes.,llm_bridge +*dish**,salt,UsedFor,0.8,dish connects as both chili and salt are used as ingredients in dishes.,llm_bridge +chili,*seasoning**,PartOf,0.8,seasoning connects as both chili and salt are types of seasoning used to enhance flavor.,llm_bridge +*seasoning**,salt,PartOf,0.8,seasoning connects as both chili and salt are types of seasoning used to enhance flavor.,llm_bridge +chili,spice_blend,MadeOf,0.8,chili and paprika are both ingredients in spice blends,llm_bridge +chili,seasoning,UsedFor,0.8,both chili and paprika are types of seasoning used to flavor food,llm_bridge +seasoning,paprika,UsedFor,0.8,both chili and paprika are types of seasoning used to flavor food,llm_bridge +chili,dish,UsedFor,0.8,both chili and paprika are used in cooking various dishes,llm_bridge +dish,paprika,UsedFor,0.8,both chili and paprika are used in cooking various dishes,llm_bridge +dish,coriander,UsedFor,0.8,dish connects both spices as ingredients for cooking,llm_bridge +chili,sauce,UsedFor,0.8,sauce connects both spices as ingredients in a condiment,llm_bridge +sauce,coriander,UsedFor,0.8,sauce connects both spices as ingredients in a condiment,llm_bridge +chili,recipe,UsedFor,0.8,recipe connects both spices as ingredients in a set of instructions,llm_bridge +chili,*pepper**,LocatedNear,0.8,Both are spices often found together in spice racks or cabinets.,llm_bridge +*pepper**,nutmeg,LocatedNear,0.8,Both are spices often found together in spice racks or cabinets.,llm_bridge +chili,*seasoning**,HasA,0.8,Both are types of seasoning used in cooking.,llm_bridge +*seasoning**,nutmeg,HasA,0.8,Both are types of seasoning used in cooking.,llm_bridge +chili,*recipe**,UsedFor,0.8,Both can be ingredients in recipes.,llm_bridge +*recipe**,nutmeg,UsedFor,0.8,Both can be ingredients in recipes.,llm_bridge +chili,*soup**,UsedFor,0.8,both spices are commonly used in making soups,llm_bridge +*soup**,anise,UsedFor,0.8,both spices are commonly used in making soups,llm_bridge +chili,*tea**,UsedFor,0.8,both spices can be added to teas for flavor,llm_bridge +*tea**,anise,UsedFor,0.8,both spices can be added to teas for flavor,llm_bridge +chili,*spice_rack**,LocatedNear,0.8,both spices are commonly stored together on spice racks,llm_bridge +*spice_rack**,anise,LocatedNear,0.8,both spices are commonly stored together on spice racks,llm_bridge +chili,curry,HasA,0.8,both are spices found in curry,llm_bridge +curry,cardamom,HasA,0.8,both are spices found in curry,llm_bridge +chili,grinder,UsedFor,0.8,a grinder is used for both spices,llm_bridge +grinder,cardamom,UsedFor,0.8,a grinder is used for both spices,llm_bridge +chili,herb,HasA,0.8,"chili can be considered a type of herb, and basil is a herb.",llm_bridge +chili,seasoning,HasA,0.8,"chili is a type of seasoning, and basil is also a type of seasoning.",llm_bridge +seasoning,basil,HasA,0.8,"chili is a type of seasoning, and basil is also a type of seasoning.",llm_bridge +chili,spice_rack,AtLocation,0.8,Both chilies and ginger are spices stored in a spice rack.,llm_bridge +spice_rack,ginger,AtLocation,0.8,Both chilies and ginger are spices stored in a spice rack.,llm_bridge +chili,cuisine,PartOf,0.8,Both chilies and ginger are ingredients (parts) used in various cuisines.,llm_bridge +cuisine,ginger,PartOf,0.8,Both chilies and ginger are ingredients (parts) used in various cuisines.,llm_bridge +chili,soup,ReceivesAction,0.8,Both chilies and ginger can be added to (received in) soup recipes.,llm_bridge +soup,ginger,ReceivesAction,0.8,Both chilies and ginger can be added to (received in) soup recipes.,llm_bridge +chili,bridge_word:_curry,MadeOf,0.8,explanation: Both chili and turmeric are commonly used as ingredients in curry powder or dishes.,llm_bridge +bridge_word:_curry,turmeric,MadeOf,0.8,explanation: Both chili and turmeric are commonly used as ingredients in curry powder or dishes.,llm_bridge +chili,bridge_word:_spice_rack,AtLocation,0.8,explanation: Chili and turmeric are spices that might be found together in a spice rack.,llm_bridge +bridge_word:_spice_rack,turmeric,AtLocation,0.8,explanation: Chili and turmeric are spices that might be found together in a spice rack.,llm_bridge +chili,bridge_word:_kitchen,AtLocation,0.8,explanation: Both chili and turmeric are ingredients commonly found in a kitchen.,llm_bridge +bridge_word:_kitchen,turmeric,AtLocation,0.8,explanation: Both chili and turmeric are ingredients commonly found in a kitchen.,llm_bridge +spice_blend,cumin,MadeOf,0.8,both are components of spice blends,llm_bridge +recipe,cumin,UsedFor,0.8,both are used in recipes,llm_bridge +dish,cumin,UsedFor,0.8,both are used in dishes,llm_bridge +pewter,bridge_word:_alloy,MadeOf,0.8,"pewter is an alloy made from metals, and metals are components of alloys.",llm_bridge +bridge_word:_alloy,metal,HasA,0.8,"pewter is an alloy made from metals, and metals are components of alloys.",llm_bridge +pewter,bridge_word:_spoon,MadeOf,0.8,"pewter can be made into a spoon, and metals are the material of a spoon.",llm_bridge +bridge_word:_spoon,metal,MadeOf,0.8,"pewter can be made into a spoon, and metals are the material of a spoon.",llm_bridge +pewter,bridge_word:_element,MadeOf,0.8,"pewter is made of metallic elements, and metals consist of elements.",llm_bridge +bridge_word:_element,metal,HasA,0.8,"pewter is made of metallic elements, and metals consist of elements.",llm_bridge +pewter,alloy,MadeOf,0.8,both pewter and steel can be alloys (mixtures of metals),llm_bridge +pewter,scrap,HasA,0.8,both pewter and steel can be found as scrap metal,llm_bridge +scrap,steel,HasA,0.8,both pewter and steel can be found as scrap metal,llm_bridge +pewter,metal,MadeOf,0.8,both pewter and steel are types of metal,llm_bridge +metal,steel,MadeOf,0.8,both pewter and steel are types of metal,llm_bridge +pewter,copper,MadeOf,0.8,both pewter and bronze contain copper,llm_bridge +copper,bronze,MadeOf,0.8,both pewter and bronze contain copper,llm_bridge +metal,bronze,MadeOf,0.8,both are types of metals,llm_bridge +alloy,mercury,MadeOf,0.8,Both pewter and mercury can be components in metallic alloys.,llm_bridge +pewter,element,MadeOf,0.8,Both pewter and mercury are composed of chemical elements.,llm_bridge +element,mercury,MadeOf,0.8,Both pewter and mercury are composed of chemical elements.,llm_bridge +pewter,bridge_word:_metal,MadeOf,0.8,Both pewter and anchors are commonly made of metal.,llm_bridge +bridge_word:_metal,anchor,MadeOf,0.8,Both pewter and anchors are commonly made of metal.,llm_bridge +bridge_word:_metal,gold,MadeOf,0.8,Both pewter and gold are types of metals.,llm_bridge +pewter,bridge_word:_jewelry,UsedFor,0.8,Jewelry can be made from both pewter and gold.,llm_bridge +bridge_word:_jewelry,gold,UsedFor,0.8,Jewelry can be made from both pewter and gold.,llm_bridge +pewter,bridge_word:_alloy,UsedFor,0.8,Both pewter and gold can be used in creating alloys.,llm_bridge +bridge_word:_alloy,gold,UsedFor,0.8,Both pewter and gold can be used in creating alloys.,llm_bridge +pewter,smelting,CapableOf,0.8,smelting connects as a process to extract both metals from ores,llm_bridge +smelting,iron,CapableOf,0.8,smelting connects as a process to extract both metals from ores,llm_bridge +pewter,ore,MadeOf,0.8,ore connects as a mineral from which both metals can be extracted,llm_bridge +lion,*rope**,UsedFor,0.8,a rope can be used to control or lead both a lion and a bull,llm_bridge +*rope**,bull,UsedFor,0.8,a rope can be used to control or lead both a lion and a bull,llm_bridge +lion,*fence**,AtLocation,0.8,both lions and bulls are commonly found in fenced enclosures,llm_bridge +*fence**,bull,AtLocation,0.8,both lions and bulls are commonly found in fenced enclosures,llm_bridge +lion,*fight**,CapableOf,0.8,both lions and bulls are known for their fighting abilities,llm_bridge +*fight**,bull,CapableOf,0.8,both lions and bulls are known for their fighting abilities,llm_bridge +lion,meat,HasA,0.8,meat connects the lion's diet to the fat's composition.,llm_bridge +lion,diet,HasA,0.8,"diet connects the lion's food to the fat's purpose (though not a concrete noun, ""diet"" is a common concept that might be acceptable in some contexts, but it's not a concrete noun. Replacing with a better option)",llm_bridge +diet,fat,UsedFor,0.8,"diet connects the lion's food to the fat's purpose (though not a concrete noun, ""diet"" is a common concept that might be acceptable in some contexts, but it's not a concrete noun. Replacing with a better option)",llm_bridge +lion,muscle,HasA,0.8,muscle connects the lion's body part to the fat's composition. (This is a better option.),llm_bridge +muscle,fat,MadeOf,0.8,muscle connects the lion's body part to the fat's composition. (This is a better option.),llm_bridge +lion,,AtLocation,0.8,explanation: A zoo is a place where both lions and cassowaries can be found.,llm_bridge +,cassowary,AtLocation,0.8,explanation: A zoo is a place where both lions and cassowaries can be found.,llm_bridge +lion,,HasA,0.8,explanation: Both lions and cassowaries have specific diets that they consume.,llm_bridge +,cassowary,HasA,0.8,explanation: Both lions and cassowaries have specific diets that they consume.,llm_bridge +lion,mane,HasA,0.8,The mane is part of a male lion and is located on its head.,llm_bridge +mane,head,PartOf,0.8,The mane is part of a male lion and is located on its head.,llm_bridge +lion,eyes,HasA,0.8,"Lions have eyes in their heads, which are a part of the head.",llm_bridge +eyes,head,PartOf,0.8,"Lions have eyes in their heads, which are a part of the head.",llm_bridge +lion,fur,HasA,0.8,"Lions have fur all over their bodies, including on their heads.",llm_bridge +fur,head,HasA,0.8,"Lions have fur all over their bodies, including on their heads.",llm_bridge +lion,*bridge_word:_africa**,AtLocation,0.8,both animals can be found in Africa,llm_bridge +*bridge_word:_africa**,blowfish,AtLocation,0.8,both animals can be found in Africa,llm_bridge +lion,*bridge_word:_zoo**,AtLocation,0.8,both animals can be found in zoos,llm_bridge +*bridge_word:_zoo**,blowfish,AtLocation,0.8,both animals can be found in zoos,llm_bridge +lion,*bridge_word:_aquarium**,AtLocation,0.8,"blowfish are often kept in aquariums, and sometimes lions are displayed in aquarium-like exhibits or educational centers",llm_bridge +*bridge_word:_aquarium**,blowfish,AtLocation,0.8,"blowfish are often kept in aquariums, and sometimes lions are displayed in aquarium-like exhibits or educational centers",llm_bridge +zoo,turtle,AtLocation,0.8,Both animals can be found in a zoo.,llm_bridge +lion,habitat,AtLocation,0.8,Both animals have natural habitats.,llm_bridge +habitat,turtle,AtLocation,0.8,Both animals have natural habitats.,llm_bridge +lion,petting,ReceivesAction,0.8,Both animals can be involved in petting (though lions are less common).,llm_bridge +petting,turtle,ReceivesAction,0.8,Both animals can be involved in petting (though lions are less common).,llm_bridge +lion,*fur**,HasA,0.8,Lions have fur which is made of skin.,llm_bridge +*fur**,skin,MadeOf,0.8,Lions have fur which is made of skin.,llm_bridge +lion,*pelt**,HasA,0.8,"Lions have pelts, and pelts are part of skin.",llm_bridge +*pelt**,skin,PartOf,0.8,"Lions have pelts, and pelts are part of skin.",llm_bridge +lion,*tawny**,HasProperty,0.8,"Lions have tawny fur, and tawny is a property of skin.",llm_bridge +*tawny**,skin,HasProperty,0.8,"Lions have tawny fur, and tawny is a property of skin.",llm_bridge +lion,leg,HasA,0.8,lions have legs as part of their body structure,llm_bridge +leg,leg,PartOf,0.8,lions have legs as part of their body structure,llm_bridge +lion,claw,HasA,0.8,lions have claws as part of their anatomy,llm_bridge +claw,claw,PartOf,0.8,lions have claws as part of their anatomy,llm_bridge +lion,bridge_word:_zoo,AtLocation,0.8,explanation: A lion and a tiger are both commonly found in a zoo.,llm_bridge +bridge_word:_zoo,tiger,AtLocation,0.8,explanation: A lion and a tiger are both commonly found in a zoo.,llm_bridge +lion,bridge_word:_cat,PartOf,0.8,explanation: Both lion and tiger are part of the cat family.,llm_bridge +bridge_word:_cat,tiger,PartOf,0.8,explanation: Both lion and tiger are part of the cat family.,llm_bridge +lion,bridge_word:_roar,CapableOf,0.8,explanation: Both a lion and a tiger are capable of roaring.,llm_bridge +bridge_word:_roar,tiger,CapableOf,0.8,explanation: Both a lion and a tiger are capable of roaring.,llm_bridge +wolf,*sheep**,UsedFor,0.8,"Wolves hunt sheep, and bulls protect sheep (in some contexts).",llm_bridge +*sheep**,bull,UsedFor,0.8,"Wolves hunt sheep, and bulls protect sheep (in some contexts).",llm_bridge +wolf,*farm**,AtLocation,0.8,"Wolves can be found near farms, and bulls often live on farms.",llm_bridge +*farm**,bull,AtLocation,0.8,"Wolves can be found near farms, and bulls often live on farms.",llm_bridge +wolf,*meat**,UsedFor,0.8,"Wolves eat meat (including bull meat in some cases), and bulls are raised for meat.",llm_bridge +*meat**,bull,UsedFor,0.8,"Wolves eat meat (including bull meat in some cases), and bulls are raised for meat.",llm_bridge +wolf,hunt,CapableOf,0.8,wolves hunt geese,llm_bridge +hunt,goose,ReceivesAction,0.8,wolves hunt geese,llm_bridge +wolf,meat,HasA,0.8,both wolves and geese have meat,llm_bridge +wolf,animal,PartOf,0.8,both wolves and geese are part of the animal kingdom,llm_bridge +animal,goose,PartOf,0.8,both wolves and geese are part of the animal kingdom,llm_bridge +wolf,food,HasA,0.8,Both animals can be prey or used as food for larger predators or humans.,llm_bridge +food,emu,UsedFor,0.8,Both animals can be prey or used as food for larger predators or humans.,llm_bridge +forest,emu,AtLocation,0.8,Both animals can live in forested areas.,llm_bridge +wolf,egg,CapableOf,0.8,"Wolves can hunt for eggs, while emus lay eggs.",llm_bridge +egg,emu,HasA,0.8,"Wolves can hunt for eggs, while emus lay eggs.",llm_bridge +wolf,hair,HasA,0.8,hair is part of a wolf's body and is made of fur material,llm_bridge +hair,fur,MadeOf,0.8,hair is part of a wolf's body and is made of fur material,llm_bridge +wolf,pelt,HasA,0.8,a wolf has a pelt (skin with fur) and fur is part of the pelt,llm_bridge +pelt,fur,PartOf,0.8,a wolf has a pelt (skin with fur) and fur is part of the pelt,llm_bridge +wolf,coat,HasA,0.8,a wolf has a coat (outer layer) made of fur material,llm_bridge +coat,fur,MadeOf,0.8,a wolf has a coat (outer layer) made of fur material,llm_bridge +wolf,fur,HasA,0.8,fur is part of a wolf and is made of skin,llm_bridge +fur,skin,MadeOf,0.8,fur is part of a wolf and is made of skin,llm_bridge +wolf,hide,HasA,0.8,hide is part of a wolf and skin is part of the hide,llm_bridge +hide,skin,PartOf,0.8,hide is part of a wolf and skin is part of the hide,llm_bridge +coat,skin,PartOf,0.8,"wolf has a coat, and skin is part of the coat",llm_bridge +wolf,web,CapableOf,0.8,"explanation: A wolf might encounter a spider's web, and spiders are known for their webs.",llm_bridge +web,spider,HasA,0.8,"explanation: A wolf might encounter a spider's web, and spiders are known for their webs.",llm_bridge +wolf,prey,ReceivesAction,0.8,explanation: Both wolves and spiders are predators that hunt prey.,llm_bridge +prey,spider,ReceivesAction,0.8,explanation: Both wolves and spiders are predators that hunt prey.,llm_bridge +wolf,silk,UsedFor,0.8,"explanation: Spiders are known for producing silk, while wolves might use silk in their dens or nests indirectly.",llm_bridge +silk,spider,MadeOf,0.8,"explanation: Spiders are known for producing silk, while wolves might use silk in their dens or nests indirectly.",llm_bridge +wolf,wolf_head,PartOf,0.8,"Explanation: A wolf has a head, and a head is part of the wolf's anatomy.",llm_bridge +wolf_head,head,PartOf,0.8,"Explanation: A wolf has a head, and a head is part of the wolf's anatomy.",llm_bridge +wolf,paw,HasA,0.8,"A wolf has paws, and a paw contains a claw.",llm_bridge +paw,claw,PartOf,0.8,"A wolf has paws, and a paw contains a claw.",llm_bridge +wolf,foot,HasA,0.8,"A wolf has feet, and a foot contains a claw.",llm_bridge +wolf,footpad,HasA,0.8,"A wolf has footpads, and a footpad is part of a structure that includes a claw.",llm_bridge +footpad,claw,PartOf,0.8,"A wolf has footpads, and a footpad is part of a structure that includes a claw.",llm_bridge +wolf,bird,LocatedNear,0.8,bird connects wolf's habitat and kiwi's classification,llm_bridge +bird,kiwi,PartOf,0.8,bird connects wolf's habitat and kiwi's classification,llm_bridge +wolf,zoo,AtLocation,0.8,zoo connects where both animals might be found,llm_bridge +zoo,kiwi,AtLocation,0.8,zoo connects where both animals might be found,llm_bridge +wolf,animal,HasProperty,0.8,animal connects the shared biological classification,llm_bridge +animal,kiwi,HasProperty,0.8,animal connects the shared biological classification,llm_bridge +wolf,*meat**,CapableOf,0.8,"Wolves can eat meat, and bones are made of parts that contain meat.",llm_bridge +*meat**,bone,MadeOf,0.8,"Wolves can eat meat, and bones are made of parts that contain meat.",llm_bridge +wolf,*animal**,PartOf,0.8,"Wolves are animals, and bones are part of animals.",llm_bridge +*animal**,bone,PartOf,0.8,"Wolves are animals, and bones are part of animals.",llm_bridge +wolf,*food**,UsedFor,0.8,"Wolves use bones as food sources, and bones can be considered food in certain contexts.",llm_bridge +*food**,bone,UsedFor,0.8,"Wolves use bones as food sources, and bones can be considered food in certain contexts.",llm_bridge +steak,dish,PartOf,0.8,a dish often includes both steak and potato,llm_bridge +dish,potato,PartOf,0.8,a dish often includes both steak and potato,llm_bridge +plate,potato,AtLocation,0.8,a plate holds both steak and potato,llm_bridge +steak,fry,UsedFor,0.8,"a fry can be used for cooking steak, and potatoes can be fried",llm_bridge +fry,potato,CapableOf,0.8,"a fry can be used for cooking steak, and potatoes can be fried",llm_bridge +steak,mouth,ReceivesAction,0.8,both can be eaten with the mouth,llm_bridge +mouth,chocolate,ReceivesAction,0.8,both can be eaten with the mouth,llm_bridge +plate,chocolate,AtLocation,0.8,both can be served on a plate,llm_bridge +steak,dessert,PartOf,0.8,both can be part of a meal or dessert course,llm_bridge +dessert,chocolate,PartOf,0.8,both can be part of a meal or dessert course,llm_bridge +steak,meat,MadeOf,0.8,"steak is made of meat, and pizza often has meat as a topping.",llm_bridge +meat,pizza,HasA,0.8,"steak is made of meat, and pizza often has meat as a topping.",llm_bridge +steak,restaurant,AtLocation,0.8,both steak and pizza can be found at restaurants.,llm_bridge +steak,topping,HasA,0.8,"steak can have toppings, and pizza includes toppings as part of its structure.",llm_bridge +topping,pizza,PartOf,0.8,"steak can have toppings, and pizza includes toppings as part of its structure.",llm_bridge +steak,trimming,ReceivesAction,0.8,"steak can be trimmed of fat, and fat is used in trimming",llm_bridge +trimming,fat,UsedFor,0.8,"steak can be trimmed of fat, and fat is used in trimming",llm_bridge +steak,trimming,HasPrerequisite,0.8,"trimming steak requires handling fat, and trimming fat requires handling steak",llm_bridge +trimming,fat,HasPrerequisite,0.8,"trimming steak requires handling fat, and trimming fat requires handling steak",llm_bridge +dish,soup,PartOf,0.8,a dish can contain both steak and soup,llm_bridge +steak,meal,PartOf,0.8,a meal can include both steak and soup,llm_bridge +meal,soup,PartOf,0.8,a meal can include both steak and soup,llm_bridge +steak,*glass**,UsedFor,0.8,Glass is used for serving steak and is part of serving wine.,llm_bridge +*glass**,wine,PartOf,0.8,Glass is used for serving steak and is part of serving wine.,llm_bridge +steak,*meal**,PartOf,0.8,Meal includes steak and often includes wine.,llm_bridge +*meal**,wine,PartOf,0.8,Meal includes steak and often includes wine.,llm_bridge +steak,*restaurant**,AtLocation,0.8,Steak and wine are both found at a restaurant.,llm_bridge +*restaurant**,wine,AtLocation,0.8,Steak and wine are both found at a restaurant.,llm_bridge +plate,spaghetti,AtLocation,0.8,plates are common serving dishes for both steak and spaghetti,llm_bridge +steak,fork,UsedFor,0.8,forks are utensils used to eat both steak and spaghetti,llm_bridge +fork,spaghetti,UsedFor,0.8,forks are utensils used to eat both steak and spaghetti,llm_bridge +meal,spaghetti,PartOf,0.8,meals are composed of dishes like steak and spaghetti,llm_bridge +steak,salad,HasA,0.8,salad is a dish that commonly includes both steak and lettuce,llm_bridge +steak,knife,UsedFor,0.8,knife is used for cutting both steak and lettuce,llm_bridge +knife,lettuce,UsedFor,0.8,knife is used for cutting both steak and lettuce,llm_bridge +plate,lettuce,AtLocation,0.8,plate is a common surface where both steak and lettuce are served,llm_bridge +steak,*salt**,MadeOf,0.8,Salt is a common seasoning in both savory dishes like steak and sweet dishes where sugar is used.,llm_bridge +*salt**,sugar,HasA,0.8,Salt is a common seasoning in both savory dishes like steak and sweet dishes where sugar is used.,llm_bridge +steak,*flavor**,HasProperty,0.8,Both steak and sugar contribute to the overall flavor profile of dishes they are in.,llm_bridge +*flavor**,sugar,HasProperty,0.8,Both steak and sugar contribute to the overall flavor profile of dishes they are in.,llm_bridge +steak,*cooking**,UsedFor,0.8,Both steak and sugar are ingredients used in the process of cooking.,llm_bridge +*cooking**,sugar,UsedFor,0.8,Both steak and sugar are ingredients used in the process of cooking.,llm_bridge +steak,kitchen,AtLocation,0.8,Both steak and banana are food items commonly found in a kitchen.,llm_bridge +kitchen,banana,AtLocation,0.8,Both steak and banana are food items commonly found in a kitchen.,llm_bridge +tiger,*venom**,HasA,0.8,Both tigers and blowfish can possess venom or toxic substances.,llm_bridge +*venom**,blowfish,HasA,0.8,Both tigers and blowfish can possess venom or toxic substances.,llm_bridge +tiger,*water**,UsedFor,0.8,"Tigers use water for drinking, while blowfish are located in water.",llm_bridge +*water**,blowfish,AtLocation,0.8,"Tigers use water for drinking, while blowfish are located in water.",llm_bridge +tiger,*food**,UsedFor,0.8,Both tigers and blowfish can be considered food sources in different contexts.,llm_bridge +*food**,blowfish,UsedFor,0.8,Both tigers and blowfish can be considered food sources in different contexts.,llm_bridge +tiger,hunt,CapableOf,0.8,"Both tigers and bison are involved in hunting scenarios, with the tiger hunting and the bison being part of the hunt's context.",llm_bridge +hunt,bison,HasPrerequisite,0.8,"Both tigers and bison are involved in hunting scenarios, with the tiger hunting and the bison being part of the hunt's context.",llm_bridge +tiger,forest,AtLocation,0.8,Both tigers and bison can be found in forested environments.,llm_bridge +forest,bison,AtLocation,0.8,Both tigers and bison can be found in forested environments.,llm_bridge +tiger,meat,HasA,0.8,Both tigers and bison are animals that have meat as a biological attribute.,llm_bridge +meat,bison,HasA,0.8,Both tigers and bison are animals that have meat as a biological attribute.,llm_bridge +forest,turtle,AtLocation,0.8,Both animals can live in a forest.,llm_bridge +tiger,pond,AtLocation,0.8,Both animals might be found near a pond.,llm_bridge +pond,turtle,AtLocation,0.8,Both animals might be found near a pond.,llm_bridge +tiger,food,UsedFor,0.8,Both animals can be considered food for larger predators.,llm_bridge +food,turtle,UsedFor,0.8,Both animals can be considered food for larger predators.,llm_bridge +tiger,pet,HasProperty,0.8,both can be kept as pets,llm_bridge +tiger,animal,PartOf,0.8,both are types of animals,llm_bridge +animal,ferret,PartOf,0.8,both are types of animals,llm_bridge +tiger,fur,HasA,0.8,both have fur,llm_bridge +forest,bat,AtLocation,0.8,tigers and bats can both live in forests.,llm_bridge +food,bat,UsedFor,0.8,tigers and bats both need food to survive.,llm_bridge +tiger,tree,AtLocation,0.8,"tigers may rest near trees, and some bats roost in trees.",llm_bridge +tree,bat,AtLocation,0.8,"tigers may rest near trees, and some bats roost in trees.",llm_bridge +tiger,pelt,HasA,0.8,"Both a tiger and a goose have pelt/fur or feathers, respectively.",llm_bridge +pelt,goose,HasA,0.8,"Both a tiger and a goose have pelt/fur or feathers, respectively.",llm_bridge +hunt,goose,CapableOf,0.8,Both a tiger and a goose can hunt or be hunted.,llm_bridge +tiger,body,HasA,0.8,"Tigers have bodies, and muscles are part of bodies.",llm_bridge +tiger,limb,HasA,0.8,"Tigers have limbs, and muscles are part of limbs.",llm_bridge +limb,muscle,PartOf,0.8,"Tigers have limbs, and muscles are part of limbs.",llm_bridge +tiger,strength,HasProperty,0.8,"Tigers have strength, and muscles provide strength.",llm_bridge +tiger,enclosure,AtLocation,0.8,enclosure connects where both animals might be kept in a zoo,llm_bridge +enclosure,penguin,AtLocation,0.8,enclosure connects where both animals might be kept in a zoo,llm_bridge +zoo,penguin,AtLocation,0.8,zoo is a place where both animals are found,llm_bridge +food,penguin,UsedFor,0.8,food is what both animals need to survive,llm_bridge +tiger,snake,ReceivesAction,0.8,"tigers might attack snakes, and a python is a type of snake.",llm_bridge +snake,python,PartOf,0.8,"tigers might attack snakes, and a python is a type of snake.",llm_bridge +zoo,python,AtLocation,0.8,tigers and pythons can both be found in zoos.,llm_bridge +jungle,python,AtLocation,0.8,tigers and pythons can both live in jungles.,llm_bridge +tiger,bridge_word:_forest,AtLocation,0.8,Both animals can live in forest environments.,llm_bridge +bridge_word:_forest,centipede,AtLocation,0.8,Both animals can live in forest environments.,llm_bridge +tiger,bridge_word:_prey,UsedFor,0.8,Both can be prey for larger predators.,llm_bridge +bridge_word:_prey,centipede,UsedFor,0.8,Both can be prey for larger predators.,llm_bridge +tiger,bridge_word:_poison,HasA,0.8,Both animals may possess venom or toxic substances.,llm_bridge +bridge_word:_poison,centipede,HasA,0.8,Both animals may possess venom or toxic substances.,llm_bridge +furrow,plow,UsedFor,0.8,plow creates furrows in orchards,llm_bridge +plow,orchard,HasA,0.8,plow creates furrows in orchards,llm_bridge +furrow,planting,UsedFor,0.8,planting uses furrows and occurs in orchards,llm_bridge +planting,orchard,HasA,0.8,planting uses furrows and occurs in orchards,llm_bridge +furrow,tree,PartOf,0.8,"trees are part of orchards, and furrows may contain tree roots",llm_bridge +tree,orchard,HasA,0.8,"trees are part of orchards, and furrows may contain tree roots",llm_bridge +furrow,farmer,CapableOf,0.8,A farmer can create a furrow and can manage a pasture.,llm_bridge +farmer,pasture,CapableOf,0.8,A farmer can create a furrow and can manage a pasture.,llm_bridge +plow,pasture,UsedFor,0.8,A plow is used to make a furrow and can be used in a pasture.,llm_bridge +furrow,soil,PartOf,0.8,Soil is part of a furrow and a pasture contains soil.,llm_bridge +soil,pasture,HasA,0.8,Soil is part of a furrow and a pasture contains soil.,llm_bridge +furrow,dirt,MadeOf,0.8,"dirt is a component of both furrows and savannas, both being landscape features often composed of soil",llm_bridge +dirt,savanna,MadeOf,0.8,"dirt is a component of both furrows and savannas, both being landscape features often composed of soil",llm_bridge +furrow,ridge,LocatedNear,0.8,ridges can be near furrows and are part of mountains,llm_bridge +furrow,valley,LocatedNear,0.8,valleys are often near furrows and can be near mountains,llm_bridge +valley,mountain,LocatedNear,0.8,valleys are often near furrows and can be near mountains,llm_bridge +furrow,hill,LocatedNear,0.8,hills can be near furrows and are often near mountains,llm_bridge +hill,mountain,LocatedNear,0.8,hills can be near furrows and are often near mountains,llm_bridge +furrow,plow,PartOf,0.8,"a furrow is part of a field, which is on a farm, and farms often have plows used to create furrows",llm_bridge +plow,farm,HasA,0.8,"a furrow is part of a field, which is on a farm, and farms often have plows used to create furrows",llm_bridge +furrow,tractor,UsedFor,0.8,"a furrow is created by a tractor, and farms typically have tractors",llm_bridge +tractor,farm,HasA,0.8,"a furrow is created by a tractor, and farms typically have tractors",llm_bridge +furrow,soil,MadeOf,0.8,"a furrow is made of soil, and farms have soil where crops are grown",llm_bridge +soil,farm,HasA,0.8,"a furrow is made of soil, and farms have soil where crops are grown",llm_bridge +furrow,land,PartOf,0.8,both furrows and jungles are parts of land,llm_bridge +land,jungle,PartOf,0.8,both furrows and jungles are parts of land,llm_bridge +soil,jungle,MadeOf,0.8,"furrows are made of soil, and jungles grow in soil",llm_bridge +furrow,plant,ReceivesAction,0.8,"plants grow in furrows, and jungles have plants",llm_bridge +plant,jungle,HasA,0.8,"plants grow in furrows, and jungles have plants",llm_bridge +plow,field,UsedFor,0.8,plowing creates furrows in fields to prepare for planting crops.,llm_bridge +furrow,crop,PartOf,0.8,crops are grown in furrows which are part of a field.,llm_bridge +crop,field,HasA,0.8,crops are grown in furrows which are part of a field.,llm_bridge +soil,field,MadeOf,0.8,furrows and fields are both made of soil.,llm_bridge +plow,land,HasA,0.8,plow creates furrows in the land,llm_bridge +furrow,farmer,HasA,0.8,farmer creates furrows and works the land,llm_bridge +farmer,land,UsedFor,0.8,farmer creates furrows and works the land,llm_bridge +furrow,irrigation,UsedFor,0.8,irrigation is used on furrows and land for agriculture,llm_bridge +irrigation,land,UsedFor,0.8,irrigation is used on furrows and land for agriculture,llm_bridge +soil,river,AtLocation,0.8,soil is part of a furrow and a river flows through soil,llm_bridge +furrow,water,UsedFor,0.8,water is used to create furrows and rivers are made of water,llm_bridge +water,river,MadeOf,0.8,water is used to create furrows and rivers are made of water,llm_bridge +furrow,valley,AtLocation,0.8,"a furrow can be found in a valley, and a river flows through a valley",llm_bridge +valley,river,AtLocation,0.8,"a furrow can be found in a valley, and a river flows through a valley",llm_bridge +plow,ditch,UsedFor,0.8,both furrows and ditches can be created using a plow,llm_bridge +furrow,water,HasA,0.8,both furrows and ditches may contain water,llm_bridge +water,ditch,HasA,0.8,both furrows and ditches may contain water,llm_bridge +soil,ditch,PartOf,0.8,both furrows and ditches are made from soil,llm_bridge +thorn,plant,PartOf,0.8,"thorns are parts of plants, and seeds are also parts of plants.",llm_bridge +plant,seed,PartOf,0.8,"thorns are parts of plants, and seeds are also parts of plants.",llm_bridge +thorn,flower,PartOf,0.8,"thorns can be part of flowers, and flowers create seeds.",llm_bridge +flower,seed,CreatedBy,0.8,"thorns can be part of flowers, and flowers create seeds.",llm_bridge +thorn,fruit,HasA,0.8,"some plants have thorns, and seeds can be part of fruits.",llm_bridge +fruit,seed,PartOf,0.8,"some plants have thorns, and seeds can be part of fruits.",llm_bridge +thorn,bridge_word:_branch,PartOf,0.8,explanation: A branch is part of both a tree and can have thorns growing on it.,llm_bridge +bridge_word:_branch,tree,PartOf,0.8,explanation: A branch is part of both a tree and can have thorns growing on it.,llm_bridge +thorn,bridge_word:_bark,HasA,0.8,"explanation: Thorns grow on the bark of a tree, and bark is part of the tree's structure.",llm_bridge +bridge_word:_bark,tree,PartOf,0.8,"explanation: Thorns grow on the bark of a tree, and bark is part of the tree's structure.",llm_bridge +thorn,bridge_word:_leaf,LocatedNear,0.8,"explanation: Leaves are part of a tree, and thorns are often located near leaves on the same plant.",llm_bridge +bridge_word:_leaf,tree,PartOf,0.8,"explanation: Leaves are part of a tree, and thorns are often located near leaves on the same plant.",llm_bridge +thorn,vine,PartOf,0.8,both thorns and watermelons can grow on vines,llm_bridge +vine,watermelon,PartOf,0.8,both thorns and watermelons can grow on vines,llm_bridge +plant,watermelon,PartOf,0.8,both thorns and watermelons are parts of plants,llm_bridge +thorn,garden,AtLocation,0.8,both thorns and watermelons are found in gardens,llm_bridge +garden,watermelon,AtLocation,0.8,both thorns and watermelons are found in gardens,llm_bridge +plant,flower,PartOf,0.8,both thorns and flowers are parts of plants,llm_bridge +thorn,rose,HasA,0.8,roses have thorns and flowers,llm_bridge +rose,flower,HasA,0.8,roses have thorns and flowers,llm_bridge +thorn,bush,PartOf,0.8,both thorns and flowers can be parts of bushes,llm_bridge +bush,flower,PartOf,0.8,both thorns and flowers can be parts of bushes,llm_bridge +vine,seaweed,LocatedNear,0.8,vine connects as a part of thorn and can be found near seaweed in certain environments.,llm_bridge +thorn,branch,PartOf,0.8,branch connects as a part of thorn and can be found near seaweed in certain environments.,llm_bridge +branch,seaweed,LocatedNear,0.8,branch connects as a part of thorn and can be found near seaweed in certain environments.,llm_bridge +thorn,root,PartOf,0.8,root connects as a part of both thorn and seaweed in their respective plant structures.,llm_bridge +root,seaweed,PartOf,0.8,root connects as a part of both thorn and seaweed in their respective plant structures.,llm_bridge +thorn,stem,PartOf,0.8,stem is part of thorn and can have moss growing on it,llm_bridge +stem,moss,AtLocation,0.8,stem is part of thorn and can have moss growing on it,llm_bridge +thorn,tree,AtLocation,0.8,thorns are on trees and moss grows on trees,llm_bridge +tree,moss,AtLocation,0.8,thorns are on trees and moss grows on trees,llm_bridge +thorn,forest,AtLocation,0.8,thorns and moss are both found in forests,llm_bridge +forest,moss,AtLocation,0.8,thorns and moss are both found in forests,llm_bridge +stem,iris,PartOf,0.8,stems are part of both plants and flowers,llm_bridge +garden,iris,AtLocation,0.8,both thorns and irises can be found in gardens,llm_bridge +thorn,hedge,PartOf,0.8,hedges often have thorns and grow in grasslands,llm_bridge +hedge,grassland,AtLocation,0.8,hedges often have thorns and grow in grasslands,llm_bridge +bush,grassland,AtLocation,0.8,bushes can have thorns and grow in grasslands,llm_bridge +rose,grassland,AtLocation,0.8,rose bushes have thorns and can grow in grasslands,llm_bridge +hedge,boxwood,PartOf,0.8,both thorns and boxwood can be part of hedges in landscaping,llm_bridge +garden,boxwood,AtLocation,0.8,both thorns and boxwood are commonly found in gardens,llm_bridge +thorn,pruning,UsedFor,0.8,pruning is an activity that can apply to both thorny plants and boxwood shrubs,llm_bridge +pruning,boxwood,UsedFor,0.8,pruning is an activity that can apply to both thorny plants and boxwood shrubs,llm_bridge +thorn,*branch**,PartOf,0.8,Both thorns and cypress are found on branches of plants.,llm_bridge +*branch**,cypress,PartOf,0.8,Both thorns and cypress are found on branches of plants.,llm_bridge +thorn,*garden**,AtLocation,0.8,Both thorns and cypress can be found in a garden.,llm_bridge +*garden**,cypress,AtLocation,0.8,Both thorns and cypress can be found in a garden.,llm_bridge +husk,stem,PartOf,0.8,stems are parts of both husks and flowers,llm_bridge +husk,plant,PartOf,0.8,both husks and flowers are parts of a plant,llm_bridge +husk,branch,PartOf,0.8,Both husk and azalea are parts of plants.,llm_bridge +branch,azalea,PartOf,0.8,Both husk and azalea are parts of plants.,llm_bridge +stem,rose,PartOf,0.8,a stem is a part of both a husk and a rose,llm_bridge +husk,leaf,PartOf,0.8,a leaf is a part of both a husk and a rose,llm_bridge +leaf,rose,PartOf,0.8,a leaf is a part of both a husk and a rose,llm_bridge +husk,flower,PartOf,0.8,a flower is a part of a husk (as a protective covering) and a rose (as the main feature),llm_bridge +flower,rose,PartOf,0.8,a flower is a part of a husk (as a protective covering) and a rose (as the main feature),llm_bridge +husk,tree,PartOf,0.8,Both husk and bark can be parts of a tree.,llm_bridge +tree,bark,PartOf,0.8,Both husk and bark can be parts of a tree.,llm_bridge +husk,peel,HasA,0.8,Both husk and bark can have peels or be considered peels.,llm_bridge +peel,bark,HasA,0.8,Both husk and bark can have peels or be considered peels.,llm_bridge +husk,shell,UsedFor,0.8,Both husk and bark can be used as protective shells.,llm_bridge +shell,bark,UsedFor,0.8,Both husk and bark can be used as protective shells.,llm_bridge +husk,*plant**,PartOf,0.8,Both husk and fiber are derived from or are parts of plants.,llm_bridge +*plant**,fiber,MadeOf,0.8,Both husk and fiber are derived from or are parts of plants.,llm_bridge +husk,*material**,PartOf,0.8,"Husk is a part of plant material, while fiber is characterized as a plant material.",llm_bridge +*material**,fiber,HasProperty,0.8,"Husk is a part of plant material, while fiber is characterized as a plant material.",llm_bridge +husk,*strand**,HasA,0.8,"Husk contains strands, and fiber is a type of strand.",llm_bridge +*strand**,fiber,PartOf,0.8,"Husk contains strands, and fiber is a type of strand.",llm_bridge +corn,shade,AtLocation,0.8,corn has a husk and is found in shaded areas.,llm_bridge +husk,cornfield,PartOf,0.8,cornfields contain husks and are often shaded.,llm_bridge +cornfield,shade,AtLocation,0.8,cornfields contain husks and are often shaded.,llm_bridge +husk,cornstalk,PartOf,0.8,cornstalks have husks and grow in shaded environments.,llm_bridge +cornstalk,shade,AtLocation,0.8,cornstalks have husks and grow in shaded environments.,llm_bridge +husk,*seed**,PartOf,0.8,seed connects as part of a husk and is contained within a yew.,llm_bridge +*seed**,yew,HasA,0.8,seed connects as part of a husk and is contained within a yew.,llm_bridge +*plant**,yew,PartOf,0.8,plant connects as both a husk and yew are parts of a larger plant structure.,llm_bridge +husk,*fruit**,PartOf,0.8,"fruit connects as husk can be part of a fruit, and yew produces fruits.",llm_bridge +*fruit**,yew,HasA,0.8,"fruit connects as husk can be part of a fruit, and yew produces fruits.",llm_bridge +corn,grassland,LocatedNear,0.8,"Corn husks are part of a corn plant, which is often found near grasslands.",llm_bridge +husk,wheat,MadeOf,0.8,"Husks are made from wheat plants, which are often found in or near grasslands.",llm_bridge +wheat,grassland,LocatedNear,0.8,"Husks are made from wheat plants, which are often found in or near grasslands.",llm_bridge +husk,stalk,PartOf,0.8,"Husks can be part of a stalk, which is commonly found in grasslands.",llm_bridge +stalk,grassland,LocatedNear,0.8,"Husks can be part of a stalk, which is commonly found in grasslands.",llm_bridge +leaf,cabbage,PartOf,0.8,husks and cabbages both have leaves.,llm_bridge +husk,vegetable,PartOf,0.8,husks and cabbages are both parts of vegetables.,llm_bridge +vegetable,cabbage,PartOf,0.8,husks and cabbages are both parts of vegetables.,llm_bridge +leaf,medicine,MadeOf,0.8,"leaf is part of a husk, and medicine is made of leaves.",llm_bridge +eagle,bridge_word:_wing,PartOf,0.8,Both eagles and tinamous have wings as part of their bird anatomy.,llm_bridge +bridge_word:_wing,tinamou,PartOf,0.8,Both eagles and tinamous have wings as part of their bird anatomy.,llm_bridge +eagle,bridge_word:_feather,HasA,0.8,Both eagles and tinamous have feathers covering their bodies as birds.,llm_bridge +bridge_word:_feather,tinamou,HasA,0.8,Both eagles and tinamous have feathers covering their bodies as birds.,llm_bridge +eagle,bridge_word:_nest,HasA,0.8,Both eagles and tinamous build nests as part of their bird behaviors.,llm_bridge +bridge_word:_nest,tinamou,HasA,0.8,Both eagles and tinamous build nests as part of their bird behaviors.,llm_bridge +eagle,wing,HasA,0.8,both birds have wings,llm_bridge +wing,cockatiel,HasA,0.8,both birds have wings,llm_bridge +eagle,feather,HasA,0.8,both birds have feathers,llm_bridge +feather,cockatiel,HasA,0.8,both birds have feathers,llm_bridge +eagle,perch,AtLocation,0.8,both birds can be found on perches,llm_bridge +perch,cockatiel,AtLocation,0.8,both birds can be found on perches,llm_bridge +eagle,bridge_word:_bird,PartOf,0.8,explanation: Both eagle and dove are types of birds.,llm_bridge +bridge_word:_bird,dove,PartOf,0.8,explanation: Both eagle and dove are types of birds.,llm_bridge +bridge_word:_nest,dove,HasA,0.8,explanation: Both eagles and doves build and have nests.,llm_bridge +bridge_word:_feather,dove,HasA,0.8,explanation: Both eagles and doves have feathers as part of their physical characteristics.,llm_bridge +eagle,cage,UsedFor,0.8,eagles and canaries can both be kept in cages as pets or for observation.,llm_bridge +cage,canary,UsedFor,0.8,eagles and canaries can both be kept in cages as pets or for observation.,llm_bridge +eagle,nest,HasA,0.8,eagles and canaries both typically have nests for laying eggs and raising young.,llm_bridge +eagle,wing,PartOf,0.8,"wings are a physical part of both eagles and canaries, enabling them to fly.",llm_bridge +wing,canary,PartOf,0.8,"wings are a physical part of both eagles and canaries, enabling them to fly.",llm_bridge +eagle,nest,PartOf,0.8,Both birds build nests for their young.,llm_bridge +nest,thrush,PartOf,0.8,Both birds build nests for their young.,llm_bridge +wing,thrush,PartOf,0.8,Both birds have wings for flying.,llm_bridge +eagle,egg,CapableOf,0.8,Both birds lay eggs as part of their reproduction.,llm_bridge +egg,thrush,CapableOf,0.8,Both birds lay eggs as part of their reproduction.,llm_bridge +nest,pelican,HasA,0.8,Both are birds that build or use nests.,llm_bridge +eagle,bridge_word:_wing,HasA,0.8,explanation: Both eagles and lovebirds have wings as part of their anatomy.,llm_bridge +bridge_word:_wing,lovebird,HasA,0.8,explanation: Both eagles and lovebirds have wings as part of their anatomy.,llm_bridge +rook,chicken,HasPrerequisite,0.8,bridge chicken connects both birds,llm_bridge +chicken,rail,HasProperty,0.8,bridge chicken connects both birds,llm_bridge +rook,bridge_word:_nest,HasA,0.8,Both rooks and orioles have nests as part of their habitats.,llm_bridge +rook,bridge_word:_tree,AtLocation,0.8,Both rooks and orioles are often found in trees.,llm_bridge +bridge_word:_tree,oriole,AtLocation,0.8,Both rooks and orioles are often found in trees.,llm_bridge +rook,bridge_word:_food,UsedFor,0.8,Both rooks and orioles use food for sustenance.,llm_bridge +bridge_word:_food,oriole,UsedFor,0.8,Both rooks and orioles use food for sustenance.,llm_bridge +rook,bridge_word:_leg,HasA,0.8,both have legs for movement,llm_bridge +bridge_word:_leg,rhea,HasA,0.8,both have legs for movement,llm_bridge +rook,bridge_word:_feather,HasA,0.8,both have feathers for covering,llm_bridge +bridge_word:_feather,rhea,HasA,0.8,both have feathers for covering,llm_bridge +rook,bridge_word:_egg,CapableOf,0.8,both lay eggs for reproduction,llm_bridge +bridge_word:_egg,rhea,CapableOf,0.8,both lay eggs for reproduction,llm_bridge +rook,,CapableOf,0.8,Both birds lay eggs.,llm_bridge +,condor,CapableOf,0.8,Both birds lay eggs.,llm_bridge +rook,,HasA,0.8,Both birds have feathers.,llm_bridge +,condor,HasA,0.8,Both birds have feathers.,llm_bridge +rook,,PartOf,0.8,Both birds have wings as part of their anatomy.,llm_bridge +,condor,PartOf,0.8,Both birds have wings as part of their anatomy.,llm_bridge +rook,bird,PartOf,0.8,Both are types of birds.,llm_bridge +bird,coot,PartOf,0.8,Both are types of birds.,llm_bridge +rook,feather,HasA,0.8,Both rooks and wings have feathers.,llm_bridge +feather,wing,HasA,0.8,Both rooks and wings have feathers.,llm_bridge +rook,fly,CapableOf,0.8,"Rooks are capable of flying, and wings are used for flying.",llm_bridge +fly,wing,UsedFor,0.8,"Rooks are capable of flying, and wings are used for flying.",llm_bridge +rook,chicken,HasProperty,0.8,both are types of birds,llm_bridge +chicken,kestrel,HasProperty,0.8,both are types of birds,llm_bridge +rook,bridge_word_1:_feather,HasA,0.8,explanation: Both rooks and tanagers are birds that have feathers.,llm_bridge +bridge_word_1:_feather,tanager,HasA,0.8,explanation: Both rooks and tanagers are birds that have feathers.,llm_bridge +rook,bridge_word_2:_nest,HasA,0.8,explanation: Both rooks and tanagers build nests for their young.,llm_bridge +bridge_word_2:_nest,tanager,HasA,0.8,explanation: Both rooks and tanagers build nests for their young.,llm_bridge +rook,bridge_word_3:_branch,AtLocation,0.8,explanation: Both rooks and tanagers are often found perched on branches.,llm_bridge +bridge_word_3:_branch,tanager,AtLocation,0.8,explanation: Both rooks and tanagers are often found perched on branches.,llm_bridge +rook,wing,HasA,0.8,wings are common anatomical features of birds like rooks and grebes.,llm_bridge +rook,nest,HasA,0.8,both rooks and grebes build nests for habitation and breeding.,llm_bridge +nest,grebe,HasA,0.8,both rooks and grebes build nests for habitation and breeding.,llm_bridge +turmeric,plant,MadeOf,0.8,both turmeric and basil come from plants.,llm_bridge +turmeric,food,UsedFor,0.8,both turmeric and basil are used as ingredients in food preparation.,llm_bridge +food,basil,UsedFor,0.8,both turmeric and basil are used as ingredients in food preparation.,llm_bridge +food,salt,UsedFor,0.8,Both turmeric and salt are used as ingredients in food preparation.,llm_bridge +turmeric,spice,HasA,0.8,"Both turmeric and salt are types of spice, used to flavor food.",llm_bridge +turmeric,seasoning,HasA,0.8,"Both turmeric and salt are types of seasoning, used to enhance flavor in dishes.",llm_bridge +seasoning,salt,HasA,0.8,"Both turmeric and salt are types of seasoning, used to enhance flavor in dishes.",llm_bridge +turmeric,spice,MadeOf,0.8,"turmeric is a spice used in curry, which is also a spice blend",llm_bridge +turmeric,dish,UsedFor,0.8,"turmeric is used in dishes like curry, which is also a dish",llm_bridge +turmeric,powder,HasA,0.8,"turmeric is a powder, and curry often contains powder forms of spices like turmeric",llm_bridge +powder,curry,HasA,0.8,"turmeric is a powder, and curry often contains powder forms of spices like turmeric",llm_bridge +turmeric,bowl,AtLocation,0.8,both spices might be found in a bowl for storage or mixing,llm_bridge +bowl,cinnamon,AtLocation,0.8,both spices might be found in a bowl for storage or mixing,llm_bridge +turmeric,tea,UsedFor,0.8,both spices can be used to flavor tea,llm_bridge +tea,cinnamon,UsedFor,0.8,both spices can be used to flavor tea,llm_bridge +dish,sugar,HasA,0.8,"turmeric is used in dishes, and sugar is an ingredient in many dishes",llm_bridge +turmeric,food,PartOf,0.8,"turmeric is a part of some foods, and sugar is in many foods",llm_bridge +food,sugar,HasA,0.8,"turmeric is a part of some foods, and sugar is in many foods",llm_bridge +turmeric,seasoning,PartOf,0.8,"turmeric is a type of seasoning, and sugar can be a sweet seasoning",llm_bridge +seasoning,sugar,HasA,0.8,"turmeric is a type of seasoning, and sugar can be a sweet seasoning",llm_bridge +turmeric,spice_rack,AtLocation,0.8,spice rack holds spices like turmeric and cumin.,llm_bridge +spice_rack,cumin,AtLocation,0.8,spice rack holds spices like turmeric and cumin.,llm_bridge +turmeric,soup,UsedFor,0.8,turmeric and cumin are both used as ingredients in soup.,llm_bridge +soup,cumin,UsedFor,0.8,turmeric and cumin are both used as ingredients in soup.,llm_bridge +turmeric,recipe,UsedFor,0.8,turmeric and cumin are both used in recipes for cooking.,llm_bridge +turmeric,spice_rack,LocatedNear,0.8,"turmeric is located near a spice rack, and chili is located near a spice rack",llm_bridge +spice_rack,chili,LocatedNear,0.8,"turmeric is located near a spice rack, and chili is located near a spice rack",llm_bridge +turmeric,"""spice""",HasA,0.8,both are types of spice,llm_bridge +"""spice""",ginger,HasA,0.8,both are types of spice,llm_bridge +turmeric,"""curry""",UsedFor,0.8,both are used in curry,llm_bridge +"""curry""",ginger,UsedFor,0.8,both are used in curry,llm_bridge +turmeric,"""root""",PartOf,0.8,both come from roots,llm_bridge +"""root""",ginger,PartOf,0.8,both come from roots,llm_bridge +turmeric,spice,PartOf,0.8,both turmeric and paprika are types of spice,llm_bridge +spice,paprika,PartOf,0.8,both turmeric and paprika are types of spice,llm_bridge +recipe,nutmeg,UsedFor,0.8,both spices are commonly used in recipes,llm_bridge +turmeric,cuisine,UsedFor,0.8,both spices are ingredients in various cuisines,llm_bridge +teacup,pot,PartOf,0.8,"a pot is part of a teacup (as a component), and a pot is a type of container",llm_bridge +pot,container,HasA,0.8,"a pot is part of a teacup (as a component), and a pot is a type of container",llm_bridge +teacup,bowl,PartOf,0.8,"a bowl is part of a teacup (as a component), and a bowl is a type of container",llm_bridge +bowl,container,HasA,0.8,"a bowl is part of a teacup (as a component), and a bowl is a type of container",llm_bridge +teacup,clay,MadeOf,0.8,clay is used to make teacups and is a component of ceramic,llm_bridge +clay,ceramic,MadeOf,0.8,clay is used to make teacups and is a component of ceramic,llm_bridge +teacup,glaze,HasA,0.8,glaze is an element of a teacup and ceramics can have a glaze,llm_bridge +glaze,ceramic,HasA,0.8,glaze is an element of a teacup and ceramics can have a glaze,llm_bridge +teacup,kiln,UsedFor,0.8,kilns are used to create teacups and ceramics by firing them,llm_bridge +teacup,water,UsedFor,0.8,both teacup and pail can be used to hold water,llm_bridge +water,pail,UsedFor,0.8,both teacup and pail can be used to hold water,llm_bridge +teacup,liquid,UsedFor,0.8,both teacup and pail can be used to hold liquids,llm_bridge +liquid,pail,UsedFor,0.8,both teacup and pail can be used to hold liquids,llm_bridge +teacup,container,PartOf,0.8,container is a category that includes both teacup and pail,llm_bridge +container,pail,PartOf,0.8,container is a category that includes both teacup and pail,llm_bridge +water,trough,UsedFor,0.8,both teacup and trough can hold water for different purposes,llm_bridge +teacup,animal,AtLocation,0.8,"both can be found near animals, serving different feeding needs",llm_bridge +container,trough,PartOf,0.8,both are types of containers designed for holding substances,llm_bridge +teacup,bridge_word:_water,UsedFor,0.8,water can be held in a teacup for drinking and stored in a barrel for transport or storage.,llm_bridge +bridge_word:_water,barrel,UsedFor,0.8,water can be held in a teacup for drinking and stored in a barrel for transport or storage.,llm_bridge +teacup,bridge_word:_wood,MadeOf,0.8,wood can be used to make a teacup (though less common) and is a primary material for barrels.,llm_bridge +bridge_word:_wood,barrel,MadeOf,0.8,wood can be used to make a teacup (though less common) and is a primary material for barrels.,llm_bridge +teacup,bridge_word:_storage,UsedFor,0.8,"both a teacup and a barrel can be used for storage, albeit of different quantities and items.",llm_bridge +bridge_word:_storage,barrel,UsedFor,0.8,"both a teacup and a barrel can be used for storage, albeit of different quantities and items.",llm_bridge +water,glass,UsedFor,0.8,water is commonly used for both teacups and drinking glasses.,llm_bridge +teacup,beverage,UsedFor,0.8,beverages are served in both teacups and glasses.,llm_bridge +beverage,glass,UsedFor,0.8,beverages are served in both teacups and glasses.,llm_bridge +container,glass,PartOf,0.8,both teacups and glasses are types of containers.,llm_bridge +water,bucket,UsedFor,0.8,water can be held in both a teacup and a bucket for different purposes.,llm_bridge +water,tank,UsedFor,0.8,water can be held in a teacup or used in a tank (firefighting or military),llm_bridge +teacup,soldier,UsedFor,0.8,a soldier uses a teacup and drives a tank,llm_bridge +soldier,tank,CapableOf,0.8,a soldier uses a teacup and drives a tank,llm_bridge +teacup,metal,MadeOf,0.8,both teacups and tanks can be made of metal,llm_bridge +metal,tank,MadeOf,0.8,both teacups and tanks can be made of metal,llm_bridge +teacup,bridge_word:_liquid,UsedFor,0.8,liquids like water or tea are contained in both teacups and jugs for serving or storage,llm_bridge +bridge_word:_liquid,jug,UsedFor,0.8,liquids like water or tea are contained in both teacups and jugs for serving or storage,llm_bridge +teacup,bridge_word:_handle,HasA,0.8,both a teacup and jug typically have a handle for easy carrying or pouring,llm_bridge +bridge_word:_handle,jug,HasA,0.8,both a teacup and jug typically have a handle for easy carrying or pouring,llm_bridge +teacup,bridge_word:_kitchen,AtLocation,0.8,both teacups and jugs are commonly found in a kitchen setting,llm_bridge +bridge_word:_kitchen,jug,AtLocation,0.8,both teacups and jugs are commonly found in a kitchen setting,llm_bridge +teacup,water,HasA,0.8,both contain water,llm_bridge +water,aquarium,HasA,0.8,both contain water,llm_bridge +cornbread,bread,MadeOf,0.8,both are made of bread,llm_bridge +bread,pizza,MadeOf,0.8,both are made of bread,llm_bridge +cornbread,flour,MadeOf,0.8,both use flour as an ingredient,llm_bridge +flour,pizza,MadeOf,0.8,both use flour as an ingredient,llm_bridge +cornbread,oven,UsedFor,0.8,both can be cooked in an oven,llm_bridge +oven,pizza,UsedFor,0.8,both can be cooked in an oven,llm_bridge +hollow,mountain,PartOf,0.8,both are features of a mountain,llm_bridge +mountain,ridge,PartOf,0.8,both are features of a mountain,llm_bridge +hollow,rock,PartOf,0.8,rocks can form hollows and are often found near ponds,llm_bridge +rock,pond,LocatedNear,0.8,rocks can form hollows and are often found near ponds,llm_bridge +hollow,water,HasA,0.8,hollows can contain water and ponds are made of water,llm_bridge +hollow,soil,MadeOf,0.8,hollows are made of soil and ponds are near soil,llm_bridge +soil,pond,LocatedNear,0.8,hollows are made of soil and ponds are near soil,llm_bridge +hollow,tree,PartOf,0.8,"a hollow can be part of a tree, and a jungle is full of trees",llm_bridge +tree,jungle,HasA,0.8,"a hollow can be part of a tree, and a jungle is full of trees",llm_bridge +hollow,cave,PartOf,0.8,"a hollow can be part of a cave, and a jungle may have caves",llm_bridge +cave,jungle,HasA,0.8,"a hollow can be part of a cave, and a jungle may have caves",llm_bridge +hollow,plant,CapableOf,0.8,"a hollow can contain plants, and a jungle is full of plants",llm_bridge +hollow,hole,PartOf,0.8,"Both hollow and pit are types of depressions, which can include a hole.",llm_bridge +hole,pit,PartOf,0.8,"Both hollow and pit are types of depressions, which can include a hole.",llm_bridge +hollow,animal,HasA,0.8,"hollows can shelter animals, and savannas host many animals",llm_bridge +animal,savanna,HasA,0.8,"hollows can shelter animals, and savannas host many animals",llm_bridge +hollow,log,PartOf,0.8,hollow logs can exist in both hollows and savannas,llm_bridge +log,savanna,HasA,0.8,hollow logs can exist in both hollows and savannas,llm_bridge +hollow,*tree,PartOf,0.8,"a hollow can be part of a tree or near it, and trees are often found near the ground**",llm_bridge +*tree,ground,LocatedNear,0.8,"a hollow can be part of a tree or near it, and trees are often found near the ground**",llm_bridge +hollow,*soil,PartOf,0.8,soil can be part of a hollow's formation and the ground is made of soil**,llm_bridge +*soil,ground,MadeOf,0.8,soil can be part of a hollow's formation and the ground is made of soil**,llm_bridge +hollow,*rock,PartOf,0.8,rocks can form a hollow and are part of the ground**,llm_bridge +*rock,ground,MadeOf,0.8,rocks can form a hollow and are part of the ground**,llm_bridge +hollow,stone,PartOf,0.8,stone can be a part of a hollow (like a stone hollow) and used for building features in a garden (like a stone path or wall).,llm_bridge +stone,garden,UsedFor,0.8,stone can be a part of a hollow (like a stone hollow) and used for building features in a garden (like a stone path or wall).,llm_bridge +water,garden,UsedFor,0.8,"hollows often contain water (like a hollow pond), and water is used in gardens (like a garden fountain or pond).",llm_bridge +hollow,plant,LocatedNear,0.8,plants often grow near hollows (like a hollow with wildflowers) and gardens contain plants (like a garden with flowers or vegetables).,llm_bridge +plant,garden,HasA,0.8,plants often grow near hollows (like a hollow with wildflowers) and gardens contain plants (like a garden with flowers or vegetables).,llm_bridge +tree,meadow,LocatedNear,0.8,"A hollow is often part of a landscape with trees, and trees are often found near or in a meadow.",llm_bridge +hollow,grass,PartOf,0.8,Grass is part of a hollow's landscape and also part of a meadow's landscape.,llm_bridge +grass,meadow,PartOf,0.8,Grass is part of a hollow's landscape and also part of a meadow's landscape.,llm_bridge +hollow,stream,LocatedNear,0.8,A stream can flow through or near a hollow and may also be found near a meadow.,llm_bridge +stream,meadow,LocatedNear,0.8,A stream can flow through or near a hollow and may also be found near a meadow.,llm_bridge +hollow,coast,PartOf,0.8,"A hollow can be part of a coastal landscape, and a coast is located near the ocean.",llm_bridge +coast,ocean,AtLocation,0.8,"A hollow can be part of a coastal landscape, and a coast is located near the ocean.",llm_bridge +bronze,metal,MadeOf,0.8,both are types of metal,llm_bridge +metal,mercury,MadeOf,0.8,both are types of metal,llm_bridge +bronze,element,MadeOf,0.8,both are chemical elements,llm_bridge +bronze,alloy,MadeOf,0.8,both can be components of alloys,llm_bridge +bronze,*bronze_alloy**,MadeOf,0.8,"Bronze is made from an alloy, and ore is the raw material for metals, including those used in alloys.",llm_bridge +*bronze_alloy**,ore,MadeOf,0.8,"Bronze is made from an alloy, and ore is the raw material for metals, including those used in alloys.",llm_bridge +bronze,*copper**,MadeOf,0.8,"Bronze is made of copper, and ore contains copper as a component mineral.",llm_bridge +*copper**,ore,HasA,0.8,"Bronze is made of copper, and ore contains copper as a component mineral.",llm_bridge +bronze,*metal**,MadeOf,0.8,"Bronze is a metal made from ore, which is a source of metal elements.",llm_bridge +bronze,mineral,MadeOf,0.8,Both bronze and tungsten are derived from minerals found in the earth.,llm_bridge +mineral,tungsten,MadeOf,0.8,Both bronze and tungsten are derived from minerals found in the earth.,llm_bridge +metal,magnesium,MadeOf,0.8,bronze and magnesium are both made of metal,llm_bridge +bronze,oxide,CapableOf,0.8,both bronze and magnesium can form oxides,llm_bridge +oxide,magnesium,CapableOf,0.8,both bronze and magnesium can form oxides,llm_bridge +bronze,ship,MadeOf,0.8,ships are made of bronze and have anchors,llm_bridge +bronze,coin,MadeOf,0.8,coin connects both metals as they can be materials used to mint coins,llm_bridge +coin,platinum,MadeOf,0.8,coin connects both metals as they can be materials used to mint coins,llm_bridge +bronze,jewelry,MadeOf,0.8,jewelry connects both metals as they can be materials used to craft jewelry,llm_bridge +canon,bridge_word:_**gunpowder**,MadeOf,0.8,"gunpowder is a component of both weapons, used as an explosive or propellant.",llm_bridge +bridge_word:_**gunpowder**,bomb,MadeOf,0.8,"gunpowder is a component of both weapons, used as an explosive or propellant.",llm_bridge +canon,bridge_word:_**explosion**,CapableOf,0.8,both a canon and bomb can cause explosions.,llm_bridge +bridge_word:_**explosion**,bomb,CapableOf,0.8,both a canon and bomb can cause explosions.,llm_bridge +canon,bridge_word:_**damage**,HasProperty,0.8,both weapons inherently cause damage.,llm_bridge +bridge_word:_**damage**,bomb,HasProperty,0.8,both weapons inherently cause damage.,llm_bridge +canon,weapon,PartOf,0.8,both are types of weapons,llm_bridge +canon,soldier,UsedFor,0.8,both weapons can be used by soldiers,llm_bridge +soldier,mace,UsedFor,0.8,both weapons can be used by soldiers,llm_bridge +canon,defense,UsedFor,0.8,both serve as defensive weapons,llm_bridge +defense,mace,UsedFor,0.8,both serve as defensive weapons,llm_bridge +weapon,cannon,PartOf,0.8,both are part of a weapon classification,llm_bridge +soldier,cannon,UsedFor,0.8,both are used by soldiers,llm_bridge +canon,war,UsedFor,0.8,both are used in war,llm_bridge +war,cannon,UsedFor,0.8,both are used in war,llm_bridge +canon,ammunition,UsedFor,0.8,ammunition is used for both weapons,llm_bridge +ammunition,shotgun,UsedFor,0.8,ammunition is used for both weapons,llm_bridge +canon,hunter,UsedFor,0.8,hunter uses both weapons for hunting,llm_bridge +canon,soldier,HasA,0.8,soldier can be equipped with either weapon,llm_bridge +soldier,shotgun,HasA,0.8,soldier can be equipped with either weapon,llm_bridge +weapon,hammer,HasProperty,0.8,weapon connects as a category that includes canon and describes hammer's capability.,llm_bridge +canon,metal,MadeOf,0.8,metal connects as a common material for both weapons and tools.,llm_bridge +metal,hammer,MadeOf,0.8,metal connects as a common material for both weapons and tools.,llm_bridge +soldier,hammer,UsedFor,0.8,soldier connects as an entity that uses both types of items.,llm_bridge +canon,*gun**,HasA,0.8,"Both ""canon"" and ""trigger"" are associated with guns, with canon being a type of gun and trigger being a part of it.",llm_bridge +canon,*fire**,CapableOf,0.8,"Canon can fire projectiles, and trigger is used to initiate the firing action.",llm_bridge +*fire**,trigger,UsedFor,0.8,"Canon can fire projectiles, and trigger is used to initiate the firing action.",llm_bridge +canon,firearm,PartOf,0.8,Both a canon and a handgun are types of firearms.,llm_bridge +firearm,handgun,PartOf,0.8,Both a canon and a handgun are types of firearms.,llm_bridge +ammunition,handgun,UsedFor,0.8,Ammunition is used for both a canon and a handgun to fire projectiles.,llm_bridge +soldier,handgun,HasA,0.8,A soldier may use either a canon or a handgun in combat.,llm_bridge +canon,bridge,MadeOf,0.8,bridge connects material to structure,llm_bridge +bridge,mine,PartOf,0.8,bridge connects material to structure,llm_bridge +canon,explosion,CapableOf,0.8,explosion connects effect to cause,llm_bridge +explosion,mine,Causes,0.8,explosion connects effect to cause,llm_bridge +ammunition,gun,UsedFor,0.8,both weapons use ammunition to operate.,llm_bridge +canon,bullet,UsedFor,0.8,"ammunition (bullet) is used for both weapons, and it's a part of the bullet's function.",llm_bridge +bullet,gun,PartOf,0.8,"ammunition (bullet) is used for both weapons, and it's a part of the bullet's function.",llm_bridge +weapon,gun,PartOf,0.8,both are types of weapons.,llm_bridge +saxophone,bridge_word:_music,UsedFor,0.8,"explanation: Saxophone is used for making music, and a spade is used for making music (in a metaphorical sense, like digging into the rhythm)",llm_bridge +bridge_word:_music,spade,UsedFor,0.8,"explanation: Saxophone is used for making music, and a spade is used for making music (in a metaphorical sense, like digging into the rhythm)",llm_bridge +saxophone,bridge_word:_metal,MadeOf,0.8,"explanation: A saxophone can be made of metal, and a spade is often made of metal",llm_bridge +bridge_word:_metal,spade,MadeOf,0.8,"explanation: A saxophone can be made of metal, and a spade is often made of metal",llm_bridge +saxophone,bridge_word:_handle,PartOf,0.8,"explanation: A saxophone has a handle-like part, and a spade has a handle",llm_bridge +bridge_word:_handle,spade,PartOf,0.8,"explanation: A saxophone has a handle-like part, and a spade has a handle",llm_bridge +saxophone,wood,MadeOf,0.8,wood is a material both are made from,llm_bridge +wood,plow,MadeOf,0.8,wood is a material both are made from,llm_bridge +saxophone,handle,HasA,0.8,both have handles for operation,llm_bridge +handle,plow,HasA,0.8,both have handles for operation,llm_bridge +saxophone,farm,LocatedNear,0.8,farm is a place where one is used and the other might be nearby,llm_bridge +farm,plow,AtLocation,0.8,farm is a place where one is used and the other might be nearby,llm_bridge +saxophone,music,UsedFor,0.8,music is created with a saxophone and a lighter can be used for music lighting effects,llm_bridge +music,lighter,UsedFor,0.8,music is created with a saxophone and a lighter can be used for music lighting effects,llm_bridge +saxophone,fuel,UsedFor,0.8,"fuel is used in a saxophone for sound, and a lighter contains fuel",llm_bridge +fuel,lighter,MadeOf,0.8,"fuel is used in a saxophone for sound, and a lighter contains fuel",llm_bridge +saxophone,fire,CapableOf,0.8,"a saxophone can produce fire-like sound, and a lighter is used to create fire",llm_bridge +fire,lighter,UsedFor,0.8,"a saxophone can produce fire-like sound, and a lighter is used to create fire",llm_bridge +saxophone,bridge_word:_musician,HasA,0.8,musician plays saxophone and uses rasp for woodwork,llm_bridge +bridge_word:_musician,rasp,HasA,0.8,musician plays saxophone and uses rasp for woodwork,llm_bridge +saxophone,bridge_word:_music,MadeOf,0.8,"music is made by saxophone, rasp is used in making music (indirectly)",llm_bridge +bridge_word:_music,rasp,UsedFor,0.8,"music is made by saxophone, rasp is used in making music (indirectly)",llm_bridge +saxophone,bridge_word:_wood,MadeOf,0.8,"saxophone is made of wood, rasp is used for woodwork",llm_bridge +bridge_word:_wood,rasp,UsedFor,0.8,"saxophone is made of wood, rasp is used for woodwork",llm_bridge +saxophone,instrument,PartOf,0.8,both are musical instruments with specific measurement purposes,llm_bridge +instrument,barometer,PartOf,0.8,both are musical instruments with specific measurement purposes,llm_bridge +saxophone,measurement,UsedFor,0.8,"both instruments are used for measuring (sound/music in saxophone, atmospheric pressure in barometer)",llm_bridge +measurement,barometer,UsedFor,0.8,"both instruments are used for measuring (sound/music in saxophone, atmospheric pressure in barometer)",llm_bridge +saxophone,bridge_word:_musician,CapableOf,0.8,musicians can play the saxophone and use calipers in their work,llm_bridge +bridge_word:_musician,caliper,CapableOf,0.8,musicians can play the saxophone and use calipers in their work,llm_bridge +saxophone,bridge_word:_measurement,UsedFor,0.8,both saxophones and calipers are used for measurements in some way (musical pitch and physical dimensions),llm_bridge +bridge_word:_measurement,caliper,UsedFor,0.8,both saxophones and calipers are used for measurements in some way (musical pitch and physical dimensions),llm_bridge +saxophone,bridge_word:_workshop,AtLocation,0.8,both saxophones and calipers are found in a workshop environment (for repair or crafting),llm_bridge +bridge_word:_workshop,caliper,AtLocation,0.8,both saxophones and calipers are found in a workshop environment (for repair or crafting),llm_bridge +saxophone,string,MadeOf,0.8,both saxophones and pulleys can be made with strings.,llm_bridge +string,pulley,MadeOf,0.8,both saxophones and pulleys can be made with strings.,llm_bridge +music,pulley,HasPrerequisite,0.8,"saxophones are used to make music, and pulleys may be needed (e.g., in instruments or machinery) to create music.",llm_bridge +saxophone,brass,MadeOf,0.8,"saxophones are made of brass, and some pulleys may also be made of brass.",llm_bridge +brass,pulley,MadeOf,0.8,"saxophones are made of brass, and some pulleys may also be made of brass.",llm_bridge +saxophone,musical_instrument,PartOf,0.8,saxophone and trumpet are both examples of musical instruments.,llm_bridge +musical_instrument,trumpet,PartOf,0.8,saxophone and trumpet are both examples of musical instruments.,llm_bridge +orchestra,trumpet,AtLocation,0.8,saxophone and trumpet can both be found in an orchestra.,llm_bridge +saxophone,air,HasA,0.8,air is a component used in both the saxophone and bellows for operation,llm_bridge +air,bellows,HasA,0.8,air is a component used in both the saxophone and bellows for operation,llm_bridge +music,bellows,UsedFor,0.8,music is produced by both the saxophone and bellows,llm_bridge +saxophone,pressure,HasProperty,0.8,both the saxophone and bellows utilize pressure for function,llm_bridge +pressure,bellows,HasProperty,0.8,both the saxophone and bellows utilize pressure for function,llm_bridge +music,ladder,UsedFor,0.8,"music is what both the saxophone and ladder can be used for (playing or performing music, or for reaching high places in a musical performance context)",llm_bridge +musician,ladder,UsedFor,0.8,a musician uses both the saxophone and ladder (for performance or stage setup),llm_bridge +saxophone,stage,AtLocation,0.8,both the saxophone and ladder can be found at a stage during a performance,llm_bridge +stage,ladder,AtLocation,0.8,both the saxophone and ladder can be found at a stage during a performance,llm_bridge +jicama,salad,UsedFor,0.8,"jicama can be used in salads, and kale is often used in salads",llm_bridge +salad,kale,UsedFor,0.8,"jicama can be used in salads, and kale is often used in salads",llm_bridge +jicama,stir-fry,UsedFor,0.8,"jicama can be used in stir-fries, and kale is often used in stir-fries",llm_bridge +stir-fry,kale,UsedFor,0.8,"jicama can be used in stir-fries, and kale is often used in stir-fries",llm_bridge +jicama,recipe,HasA,0.8,"a recipe can include jicama, and a recipe can include kale",llm_bridge +recipe,kale,HasA,0.8,"a recipe can include jicama, and a recipe can include kale",llm_bridge +jicama,*stalk**,PartOf,0.8,stalks are part of both plants,llm_bridge +*stalk**,asparagus,PartOf,0.8,stalks are part of both plants,llm_bridge +jicama,*peeler**,UsedFor,0.8,peeler is used to prepare both vegetables,llm_bridge +*peeler**,asparagus,UsedFor,0.8,peeler is used to prepare both vegetables,llm_bridge +jicama,*salad**,UsedFor,0.8,salad is a dish that can include both vegetables,llm_bridge +*salad**,asparagus,UsedFor,0.8,salad is a dish that can include both vegetables,llm_bridge +jicama,bridge_word:_salad,UsedFor,0.8,explanation: Both jicama and cabbage can be used in salads.,llm_bridge +bridge_word:_salad,cabbage,UsedFor,0.8,explanation: Both jicama and cabbage can be used in salads.,llm_bridge +jicama,bridge_word:_root,PartOf,0.8,"explanation: Jicama is a root vegetable, and cabbage is part of the plant structure.",llm_bridge +bridge_word:_root,cabbage,PartOf,0.8,"explanation: Jicama is a root vegetable, and cabbage is part of the plant structure.",llm_bridge +jicama,plant,PartOf,0.8,Both jicama and beans are parts of plants.,llm_bridge +jicama,pod,HasA,0.8,Both jicama and beans are associated with pod-like structures.,llm_bridge +jicama,root,PartOf,0.8,Both jicama and chard have roots that are edible parts of the plant.,llm_bridge +root,chard,PartOf,0.8,Both jicama and chard have roots that are edible parts of the plant.,llm_bridge +jicama,leaf,PartOf,0.8,"Jicama has leaves, and chard is known for its large, edible leaves.",llm_bridge +leaf,chard,PartOf,0.8,"Jicama has leaves, and chard is known for its large, edible leaves.",llm_bridge +root,radish,PartOf,0.8,Both jicama and radish have roots as their edible parts.,llm_bridge +jicama,vegetable,PartOf,0.8,Both jicama and radish are types of vegetables.,llm_bridge +vegetable,radish,PartOf,0.8,Both jicama and radish are types of vegetables.,llm_bridge +salad,radish,UsedFor,0.8,Both jicama and radish can be used in making salads.,llm_bridge +salad,cucumber,UsedFor,0.8,salad is a dish that commonly uses both jicama and cucumber as ingredients.,llm_bridge +jicama,knife,UsedFor,0.8,knife is a tool used to prepare both jicama and cucumber for consumption.,llm_bridge +knife,cucumber,UsedFor,0.8,knife is a tool used to prepare both jicama and cucumber for consumption.,llm_bridge +jicama,plate,AtLocation,0.8,plate is a common surface where both jicama and cucumber might be served.,llm_bridge +plate,cucumber,AtLocation,0.8,plate is a common surface where both jicama and cucumber might be served.,llm_bridge +jicama,*salad**,AtLocation,0.8,salad is a dish where both jicama and celery can be found.,llm_bridge +*salad**,celery,AtLocation,0.8,salad is a dish where both jicama and celery can be found.,llm_bridge +jicama,*root**,PartOf,0.8,root is a part of jicama (the tuberous root) and celery (the root system of the plant).,llm_bridge +*root**,celery,PartOf,0.8,root is a part of jicama (the tuberous root) and celery (the root system of the plant).,llm_bridge +jicama,*kitchen**,AtLocation,0.8,both jicama and celery are commonly prepared in a kitchen.,llm_bridge +*kitchen**,celery,AtLocation,0.8,both jicama and celery are commonly prepared in a kitchen.,llm_bridge +root,kohlrabi,PartOf,0.8,root is a part of both jicama and kohlrabi plants.,llm_bridge +jicama,stalk,PartOf,0.8,stalk is a part of both jicama and kohlrabi plants.,llm_bridge +stalk,kohlrabi,PartOf,0.8,stalk is a part of both jicama and kohlrabi plants.,llm_bridge +leaf,kohlrabi,PartOf,0.8,leaf is a part of both jicama and kohlrabi plants.,llm_bridge +jicama,pot,AtLocation,0.8,both vegetables can be found in a pot while cooking,llm_bridge +pot,okra,AtLocation,0.8,both vegetables can be found in a pot while cooking,llm_bridge +jicama,stew,UsedFor,0.8,both vegetables are used in stews,llm_bridge +stew,okra,UsedFor,0.8,both vegetables are used in stews,llm_bridge +jicama,soup,UsedFor,0.8,both vegetables can be used in soup,llm_bridge +soup,okra,UsedFor,0.8,both vegetables can be used in soup,llm_bridge +mall,movie,HasA,0.8,movie connects as a feature and purpose,llm_bridge +movie,theater,UsedFor,0.8,movie connects as a feature and purpose,llm_bridge +mall,ticket,HasA,0.8,ticket connects as a shared item,llm_bridge +ticket,theater,HasA,0.8,ticket connects as a shared item,llm_bridge +mall,screen,HasA,0.8,screen connects as a shared component,llm_bridge +screen,theater,HasA,0.8,screen connects as a shared component,llm_bridge +mall,*store**,PartOf,0.8,stores are part of malls and can be found in or near homes.,llm_bridge +*store**,home,HasA,0.8,stores are part of malls and can be found in or near homes.,llm_bridge +mall,*family**,AtLocation,0.8,families visit malls and live in homes.,llm_bridge +*family**,home,HasA,0.8,families visit malls and live in homes.,llm_bridge +mall,*car**,AtLocation,0.8,cars are often at malls and are owned by people at home.,llm_bridge +*car**,home,HasA,0.8,cars are often at malls and are owned by people at home.,llm_bridge +mall,store,HasA,0.8,"A mall often has stores, and a library can be used for accessing stored materials like books.",llm_bridge +store,library,UsedFor,0.8,"A mall often has stores, and a library can be used for accessing stored materials like books.",llm_bridge +mall,book,UsedFor,0.8,"A mall can be used for accessing stores that sell books, while a library has books as its primary resource.",llm_bridge +book,library,HasA,0.8,"A mall can be used for accessing stores that sell books, while a library has books as its primary resource.",llm_bridge +mall,computer,HasA,0.8,"A mall may have computers in its stores or facilities, and a library often has computers for public use.",llm_bridge +computer,library,HasA,0.8,"A mall may have computers in its stores or facilities, and a library often has computers for public use.",llm_bridge +glass,greenhouse,MadeOf,0.8,glass is a material used in both building constructions,llm_bridge +mall,window,HasA,0.8,windows are common features in both malls and greenhouses,llm_bridge +mall,roof,HasA,0.8,roofs are structural parts of both types of buildings,llm_bridge +roof,greenhouse,HasA,0.8,roofs are structural parts of both types of buildings,llm_bridge +store,shelter,UsedFor,0.8,"A mall has a store, and a shelter is used for a store (as in a place to buy things or seek refuge).",llm_bridge +mall,door,HasA,0.8,"A mall has a door, and a shelter has a door (for entry and exit).",llm_bridge +door,shelter,HasA,0.8,"A mall has a door, and a shelter has a door (for entry and exit).",llm_bridge +mall,building,PartOf,0.8,a mall and a gymnasium are both types of buildings,llm_bridge +building,gymnasium,PartOf,0.8,a mall and a gymnasium are both types of buildings,llm_bridge +store,coop,HasA,0.8,a store is often found in both a mall and a coop,llm_bridge +mall,food,ReceivesAction,0.8,food is sold in a mall and stored in a coop,llm_bridge +food,coop,UsedFor,0.8,food is sold in a mall and stored in a coop,llm_bridge +shopping,coop,UsedFor,0.8,shopping is an activity done in both a mall and a coop,llm_bridge +mall,apartment,HasA,0.8,apartments are common residential units in duplexes and can be found in malls as commercial spaces,llm_bridge +apartment,duplex,HasA,0.8,apartments are common residential units in duplexes and can be found in malls as commercial spaces,llm_bridge +door,duplex,HasA,0.8,both malls and duplexes have doors as entry/exit points,llm_bridge +window,duplex,HasA,0.8,both buildings contain windows for light and view,llm_bridge +mall,*building**,PartOf,0.8,"Both malls and barns are types of buildings, making ""building"" a shared category.",llm_bridge +*building**,barn,PartOf,0.8,"Both malls and barns are types of buildings, making ""building"" a shared category.",llm_bridge +mall,*store**,HasA,0.8,"Malls contain stores for shopping, while barns can have stores (e.g., grain stores).",llm_bridge +*store**,barn,HasA,0.8,"Malls contain stores for shopping, while barns can have stores (e.g., grain stores).",llm_bridge +mall,*roof**,HasA,0.8,Both malls and barns are buildings that have roofs.,llm_bridge +*roof**,barn,HasA,0.8,Both malls and barns are buildings that have roofs.,llm_bridge +flute,musician,UsedFor,0.8,a musician plays both instruments,llm_bridge +flute,concert,AtLocation,0.8,both instruments are used in concerts,llm_bridge +flute,measure,UsedFor,0.8,measures can be musical tones or physical dimensions,llm_bridge +music,caliper,UsedFor,0.8,both are used in creating or measuring musical precision or dimensions,llm_bridge +flute,metal,MadeOf,0.8,many flutes and calipers are made from metal components,llm_bridge +metal,caliper,MadeOf,0.8,many flutes and calipers are made from metal components,llm_bridge +flute,orchestra,PartOf,0.8,orchestra connects the larger ensemble both instruments can be part of.,llm_bridge +orchestra,organ,PartOf,0.8,orchestra connects the larger ensemble both instruments can be part of.,llm_bridge +music,scale,HasA,0.8,music is played on a flute and scales are a component of music.,llm_bridge +flute,musician,HasA,0.8,a musician uses a flute and practices scales.,llm_bridge +musician,scale,UsedFor,0.8,a musician uses a flute and practices scales.,llm_bridge +flute,practice,ReceivesAction,0.8,one practices flute and uses scales as practice material.,llm_bridge +practice,scale,UsedFor,0.8,one practices flute and uses scales as practice material.,llm_bridge +flute,musical_instrument,PartOf,0.8,both are types of musical instruments,llm_bridge +musical_instrument,xylophone,PartOf,0.8,both are types of musical instruments,llm_bridge +music,xylophone,UsedFor,0.8,both are used to make music,llm_bridge +concert,xylophone,AtLocation,0.8,both instruments can be found in a concert,llm_bridge +music,bass,UsedFor,0.8,music is played with both a flute and a bass instrument,llm_bridge +flute,player,HasA,0.8,a player can play both a flute and a bass instrument,llm_bridge +player,bass,HasA,0.8,a player can play both a flute and a bass instrument,llm_bridge +band,bass,AtLocation,0.8,a band can include both a flute and a bass instrument,llm_bridge +flute,music,PartOf,0.8,music is a category that includes both instruments,llm_bridge +music,guitar,PartOf,0.8,music is a category that includes both instruments,llm_bridge +flute,band,HasA,0.8,a band typically has both a flute and a guitar,llm_bridge +band,guitar,HasA,0.8,a band typically has both a flute and a guitar,llm_bridge +flute,player,UsedFor,0.8,a player can use either a flute or a guitar to make music,llm_bridge +player,guitar,UsedFor,0.8,a player can use either a flute or a guitar to make music,llm_bridge +musician,triangle,UsedFor,0.8,musician connects both as tools used by them,llm_bridge +orchestra,triangle,AtLocation,0.8,orchestra connects both as places where they might be found together,llm_bridge +flute,string,HasA,0.8,strings are part of lyres and some flutes have strings,llm_bridge +flute,player,CapableOf,0.8,a player can play both instruments,llm_bridge +player,lyre,CapableOf,0.8,a player can play both instruments,llm_bridge +flute,*orchestra**,AtLocation,0.8,orchestras are locations where flutes and violas are commonly found,llm_bridge +*orchestra**,viola,AtLocation,0.8,orchestras are locations where flutes and violas are commonly found,llm_bridge +flute,*musician**,UsedFor,0.8,musicians use flutes and violas to play music,llm_bridge +*musician**,viola,UsedFor,0.8,musicians use flutes and violas to play music,llm_bridge +flute,*concert**,AtLocation,0.8,concerts are locations where flutes and violas are commonly performed,llm_bridge +*concert**,viola,AtLocation,0.8,concerts are locations where flutes and violas are commonly performed,llm_bridge +chisel,hammer,UsedFor,0.8,hammer is used with both chisels and jacks in construction or woodworking tasks.,llm_bridge +hammer,jack,UsedFor,0.8,hammer is used with both chisels and jacks in construction or woodworking tasks.,llm_bridge +chisel,wood,UsedFor,0.8,wood is a material that both chisels and jacks often work on or with.,llm_bridge +wood,jack,UsedFor,0.8,wood is a material that both chisels and jacks often work on or with.,llm_bridge +chisel,workshop,AtLocation,0.8,workshop is a common location where both chisels and jacks are kept or used.,llm_bridge +workshop,jack,AtLocation,0.8,workshop is a common location where both chisels and jacks are kept or used.,llm_bridge +wood,jointer,UsedFor,0.8,Both tools are used to work with wood.,llm_bridge +workshop,jointer,AtLocation,0.8,Both tools are commonly found in a workshop.,llm_bridge +chisel,cut,UsedFor,0.8,Both tools are used to cut or shape material.,llm_bridge +cut,jointer,UsedFor,0.8,Both tools are used to cut or shape material.,llm_bridge +chisel,wood,MadeOf,0.8,Both are made from wood in their construction.,llm_bridge +wood,saxophone,MadeOf,0.8,Both are made from wood in their construction.,llm_bridge +chisel,music,UsedFor,0.8,"Both are used in creating music (chisel for carving wooden instruments, saxophone for playing).",llm_bridge +wood,bellows,UsedFor,0.8,Both tools are used in woodworking or related activities.,llm_bridge +workshop,bellows,AtLocation,0.8,Both tools are typically found in a workshop.,llm_bridge +chisel,blacksmith,HasA,0.8,A blacksmith uses both tools in their craft.,llm_bridge +blacksmith,bellows,HasA,0.8,A blacksmith uses both tools in their craft.,llm_bridge +chisel,stone,UsedFor,0.8,"A chisel can be used to shape stone, and a weapon can be used as a tool against stone (or made of stone)",llm_bridge +wood,lid,MadeOf,0.8,wood is used for carving with a chisel and is a material for making lids,llm_bridge +chisel,box,PartOf,0.8,"a chisel is part of the toolset for making a box, and a box has a lid",llm_bridge +box,lid,HasA,0.8,"a chisel is part of the toolset for making a box, and a box has a lid",llm_bridge +chisel,workbench,AtLocation,0.8,both a chisel and a lid can be found at a workbench,llm_bridge +workbench,lid,AtLocation,0.8,both a chisel and a lid can be found at a workbench,llm_bridge +chisel,mortar,UsedFor,0.8,Both tools are commonly used in applying mortar in construction and masonry.,llm_bridge +mortar,trowel,UsedFor,0.8,Both tools are commonly used in applying mortar in construction and masonry.,llm_bridge +stone,trowel,UsedFor,0.8,Both chisels and trowels are used in working with or shaping stone.,llm_bridge +chisel,cement,UsedFor,0.8,Both tools are used in the application or shaping of cement mixtures.,llm_bridge +cement,trowel,UsedFor,0.8,Both tools are used in the application or shaping of cement mixtures.,llm_bridge +wood,car,HasA,0.8,"Wood is something a chisel is used for, and some cars have wooden parts or accents.",llm_bridge +chisel,metal,MadeOf,0.8,Both a chisel and a car are made of metal.,llm_bridge +chisel,garage,AtLocation,0.8,Both a chisel and a car can be found in a garage.,llm_bridge +wood,level,UsedFor,0.8,wood is both a material that chisels work on and levels can be used on in construction,llm_bridge +chisel,carpentry,UsedFor,0.8,carpentry is the craft where both tools are commonly used,llm_bridge +carpentry,level,UsedFor,0.8,carpentry is the craft where both tools are commonly used,llm_bridge +chisel,construction,UsedFor,0.8,construction is the industry where both tools are utilized,llm_bridge +construction,level,UsedFor,0.8,construction is the industry where both tools are utilized,llm_bridge +chisel,handle,HasA,0.8,Both tools typically have handles for gripping.,llm_bridge +handle,planer,HasA,0.8,Both tools typically have handles for gripping.,llm_bridge +chisel,cut,CapableOf,0.8,Both tools are capable of cutting or shaping material.,llm_bridge +cut,planer,CapableOf,0.8,Both tools are capable of cutting or shaping material.,llm_bridge +jug,water,HasA,0.8,both jugs and kettles can contain water,llm_bridge +water,kettle,HasA,0.8,both jugs and kettles can contain water,llm_bridge +jug,handle,HasA,0.8,both jugs and kettles typically have handles,llm_bridge +handle,kettle,HasA,0.8,both jugs and kettles typically have handles,llm_bridge +jug,stove,AtLocation,0.8,both jugs and kettles can be placed on a stove to heat contents,llm_bridge +stove,kettle,AtLocation,0.8,both jugs and kettles can be placed on a stove to heat contents,llm_bridge +jug,handle,PartOf,0.8,both jugs and toolboxes have handles for carrying,llm_bridge +handle,toolbox,PartOf,0.8,both jugs and toolboxes have handles for carrying,llm_bridge +jug,lid,HasA,0.8,both jugs and jars often have lids to cover them.,llm_bridge +lid,jar,HasA,0.8,both jugs and jars often have lids to cover them.,llm_bridge +jug,food,UsedFor,0.8,both jugs and jars can be used to store food items.,llm_bridge +food,jar,UsedFor,0.8,both jugs and jars can be used to store food items.,llm_bridge +jug,liquid,UsedFor,0.8,both jugs and jars can be used to hold liquids.,llm_bridge +liquid,jar,UsedFor,0.8,both jugs and jars can be used to hold liquids.,llm_bridge +lid,chest,HasA,0.8,lids can cover both jugs and chests to seal or protect contents.,llm_bridge +jug,coin,UsedFor,0.8,"jugs can be used to carry coins, and chests often store coins.",llm_bridge +coin,chest,HasA,0.8,"jugs can be used to carry coins, and chests often store coins.",llm_bridge +jug,lock,UsedFor,0.8,"jugs may be locked to secure contents, and chests commonly have locks.",llm_bridge +jug,,HasA,0.8,"Explanation: A jug can contain seeds, and a pod is a container that holds seeds.",llm_bridge +,pod,HasA,0.8,"Explanation: A jug can contain seeds, and a pod is a container that holds seeds.",llm_bridge +jug,,UsedFor,0.8,"Explanation: A jug is used for growing plants, and a pod is part of a plant structure.",llm_bridge +,pod,PartOf,0.8,"Explanation: A jug is used for growing plants, and a pod is part of a plant structure.",llm_bridge +,pod,UsedFor,0.8,"Explanation: A jug can be used to store food, and a pod can also contain edible food (like peas or beans).",llm_bridge +jug,wine,UsedFor,0.8,both can hold wine,llm_bridge +wine,decanter,UsedFor,0.8,both can hold wine,llm_bridge +liquid,decanter,UsedFor,0.8,both can hold liquids,llm_bridge +glass,decanter,MadeOf,0.8,both can be made of glass,llm_bridge +jug,water,UsedFor,0.8,water is commonly stored in a jug and dispensed into a trough for animals to drink.,llm_bridge +jug,hay,UsedFor,0.8,"hay is sometimes placed in a jug to carry it, and then dumped into a trough for animals.",llm_bridge +hay,trough,UsedFor,0.8,"hay is sometimes placed in a jug to carry it, and then dumped into a trough for animals.",llm_bridge +jug,animal,UsedFor,0.8,both a jug and a trough can be used to provide water or food for animals.,llm_bridge +animal,trough,UsedFor,0.8,both a jug and a trough can be used to provide water or food for animals.,llm_bridge +handle,pail,PartOf,0.8,a jug and a pail both have handles,llm_bridge +jug,milk,UsedFor,0.8,milk can be stored in both a jug and a pail,llm_bridge +milk,pail,UsedFor,0.8,milk can be stored in both a jug and a pail,llm_bridge +burlap,fabric,MadeOf,0.8,Both burlap and leather are types of fabric.,llm_bridge +fabric,leather,MadeOf,0.8,Both burlap and leather are types of fabric.,llm_bridge +burlap,*sack**,MadeOf,0.8,sack is made of burlap and used for carrying rubber.,llm_bridge +*sack**,rubber,UsedFor,0.8,sack is made of burlap and used for carrying rubber.,llm_bridge +burlap,*bag**,MadeOf,0.8,bag is made of burlap and used for carrying rubber.,llm_bridge +*bag**,rubber,UsedFor,0.8,bag is made of burlap and used for carrying rubber.,llm_bridge +burlap,*container**,MadeOf,0.8,container is made of burlap and used for holding rubber.,llm_bridge +*container**,rubber,UsedFor,0.8,container is made of burlap and used for holding rubber.,llm_bridge +fabric,denim,MadeOf,0.8,fabric is the material both burlap and denim are made of.,llm_bridge +fabric,haircloth,MadeOf,0.8,"Both are types of fabric, so fabric connects them as the material they are made from.",llm_bridge +burlap,sack,MadeOf,0.8,"sacks are often made of burlap, and fabric is a material used in sacks",llm_bridge +sack,fabric,HasA,0.8,"sacks are often made of burlap, and fabric is a material used in sacks",llm_bridge +burlap,bag,MadeOf,0.8,"bags are often made of burlap, and fabric is a material used in bags",llm_bridge +bag,fabric,HasA,0.8,"bags are often made of burlap, and fabric is a material used in bags",llm_bridge +burlap,cloth,MadeOf,0.8,"burlap is a type of cloth, and fabric is a general category that includes cloth",llm_bridge +cloth,fabric,PartOf,0.8,"burlap is a type of cloth, and fabric is a general category that includes cloth",llm_bridge +burlap,fabric,HasA,0.8,Both burlap and linen are types of fabric.,llm_bridge +fabric,linen,HasA,0.8,Both burlap and linen are types of fabric.,llm_bridge +sack,linen,UsedFor,0.8,"Sacks are often made of burlap, and linen can be used to make sacks.",llm_bridge +burlap,thread,MadeOf,0.8,Both burlap and linen can be made into thread.,llm_bridge +thread,linen,MadeOf,0.8,Both burlap and linen can be made into thread.,llm_bridge +fabric,cotton,MadeOf,0.8,burlap and cotton are both types of fabric,llm_bridge +silo,*bridge_word:_building**,PartOf,0.8,explanation: Both silos and apartments are types of buildings.,llm_bridge +*bridge_word:_building**,apartment,PartOf,0.8,explanation: Both silos and apartments are types of buildings.,llm_bridge +silo,*bridge_word:_window**,HasA,0.8,explanation: Both silos and apartments typically have windows.,llm_bridge +*bridge_word:_window**,apartment,HasA,0.8,explanation: Both silos and apartments typically have windows.,llm_bridge +silo,*bridge_word:_door**,HasA,0.8,explanation: Both silos and apartments typically have doors.,llm_bridge +*bridge_word:_door**,apartment,HasA,0.8,explanation: Both silos and apartments typically have doors.,llm_bridge +silo,house,PartOf,0.8,houses are a component of both silos (for storage) and duplexes (as a living unit),llm_bridge +house,duplex,PartOf,0.8,houses are a component of both silos (for storage) and duplexes (as a living unit),llm_bridge +silo,window,HasA,0.8,both silos and duplexes commonly have windows,llm_bridge +silo,door,HasA,0.8,both silos (for access) and duplexes (for entry/exit) have doors,llm_bridge +silo,book,HasA,0.8,books are stored in both silos and libraries,llm_bridge +silo,shelf,HasA,0.8,shelves are used for storage in both silos and libraries,llm_bridge +shelf,library,HasA,0.8,shelves are used for storage in both silos and libraries,llm_bridge +silo,wall,PartOf,0.8,walls are structural components of both silos and libraries,llm_bridge +wall,library,PartOf,0.8,walls are structural components of both silos and libraries,llm_bridge +silo,grain,HasA,0.8,Grain is stored in a silo and can be an ingredient in materials used in malls.,llm_bridge +grain,mall,MadeOf,0.8,Grain is stored in a silo and can be an ingredient in materials used in malls.,llm_bridge +silo,metal,MadeOf,0.8,Metal is commonly used in the construction of both silos and malls.,llm_bridge +metal,mall,MadeOf,0.8,Metal is commonly used in the construction of both silos and malls.,llm_bridge +silo,concrete,MadeOf,0.8,Concrete is a material used in the construction of both silos and malls.,llm_bridge +concrete,mall,MadeOf,0.8,Concrete is a material used in the construction of both silos and malls.,llm_bridge +silo,steeple,PartOf,0.8,a steeple is a part of both a silo (sometimes for grain storage) and a church (as a religious feature),llm_bridge +steeple,church,PartOf,0.8,a steeple is a part of both a silo (sometimes for grain storage) and a church (as a religious feature),llm_bridge +silo,*wall**,PartOf,0.8,Both silos and prisons often have walls as structural components.,llm_bridge +*wall**,prison,PartOf,0.8,Both silos and prisons often have walls as structural components.,llm_bridge +silo,*guard**,UsedFor,0.8,"Silos may have guards for security, and prisons have guards as part of their staffing.",llm_bridge +*guard**,prison,HasA,0.8,"Silos may have guards for security, and prisons have guards as part of their staffing.",llm_bridge +silo,*bar**,HasA,0.8,"Silos might have bars for access control, and prisons have bars as part of their security features.",llm_bridge +*bar**,prison,HasA,0.8,"Silos might have bars for access control, and prisons have bars as part of their security features.",llm_bridge +silo,farm,AtLocation,0.8,silo and coop are both structures found on a farm,llm_bridge +farm,coop,AtLocation,0.8,silo and coop are both structures found on a farm,llm_bridge +silo,grain,UsedFor,0.8,grain is stored in silos and can be fed to animals in coops,llm_bridge +grain,coop,UsedFor,0.8,grain is stored in silos and can be fed to animals in coops,llm_bridge +silo,chicken,UsedFor,0.8,"silos store grain to feed chickens, and coops house chickens",llm_bridge +chicken,coop,HasA,0.8,"silos store grain to feed chickens, and coops house chickens",llm_bridge +vise,hand,UsedFor,0.8,hands are used to operate both a vise and hold a lantern,llm_bridge +hand,lantern,UsedFor,0.8,hands are used to operate both a vise and hold a lantern,llm_bridge +vise,workshop,AtLocation,0.8,a workshop is a common location for both a vise and a lantern,llm_bridge +workshop,lantern,AtLocation,0.8,a workshop is a common location for both a vise and a lantern,llm_bridge +vise,metal,MadeOf,0.8,metal is a common material used in the construction of both a vise and a lantern,llm_bridge +metal,lantern,MadeOf,0.8,metal is a common material used in the construction of both a vise and a lantern,llm_bridge +workshop,ladder,AtLocation,0.8,both are often found in workshops,llm_bridge +vise,wood,MadeOf,0.8,both can be made of wood,llm_bridge +wood,ladder,MadeOf,0.8,both can be made of wood,llm_bridge +vise,workshop_bench,AtLocation,0.8,a bench is a common place for both,llm_bridge +workshop_bench,ladder,AtLocation,0.8,a bench is a common place for both,llm_bridge +vise,clamp,PartOf,0.8,"a vise often uses a lever-like clamp mechanism, and levers can be used in clamping devices",llm_bridge +clamp,lever,PartOf,0.8,"a vise often uses a lever-like clamp mechanism, and levers can be used in clamping devices",llm_bridge +vise,handle,PartOf,0.8,both vise and lever have handles that are used to operate them,llm_bridge +handle,lever,PartOf,0.8,both vise and lever have handles that are used to operate them,llm_bridge +vise,screw,PartOf,0.8,"A vise can hold screws, and a key is used to screw something.",llm_bridge +screw,key,UsedFor,0.8,"A vise can hold screws, and a key is used to screw something.",llm_bridge +metal,key,MadeOf,0.8,Both a vise and a key are made of metal.,llm_bridge +vise,machine,UsedFor,0.8,"A vise is used to hold machine parts, and a key is used to operate a machine.",llm_bridge +machine,key,UsedFor,0.8,"A vise is used to hold machine parts, and a key is used to operate a machine.",llm_bridge +vise,wire,MadeOf,0.8,both can be made of wire,llm_bridge +wire,cage,MadeOf,0.8,both can be made of wire,llm_bridge +metal,cage,MadeOf,0.8,both can be made of metal,llm_bridge +vise,bird,ReceivesAction,0.8,"a vise can hold a bird, and a cage contains a bird",llm_bridge +bird,cage,HasA,0.8,"a vise can hold a bird, and a cage contains a bird",llm_bridge +vise,stick,UsedFor,0.8,stick can be used in a vise to hold things and some lighters are made of stick-like materials.,llm_bridge +stick,lighter,MadeOf,0.8,stick can be used in a vise to hold things and some lighters are made of stick-like materials.,llm_bridge +vise,*clamp**,PartOf,0.8,clamp is a part of a vise and can be made into a phone mount.,llm_bridge +*clamp**,phone,MadeOf,0.8,clamp is a part of a vise and can be made into a phone mount.,llm_bridge +vise,*mount**,UsedFor,0.8,"a vise can be used to mount objects, and a mount is used for a phone.",llm_bridge +*mount**,phone,UsedFor,0.8,"a vise can be used to mount objects, and a mount is used for a phone.",llm_bridge +vise,*workbench**,AtLocation,0.8,"a vise is found at a workbench, and a phone can be placed on a workbench.",llm_bridge +*workbench**,phone,AtLocation,0.8,"a vise is found at a workbench, and a phone can be placed on a workbench.",llm_bridge +vise,wood,UsedFor,0.8,"vise is used for working with wood, wedge is made of wood",llm_bridge +wood,wedge,MadeOf,0.8,"vise is used for working with wood, wedge is made of wood",llm_bridge +metal,wedge,MadeOf,0.8,vise and wedge can both be made of metal,llm_bridge +vise,force,CapableOf,0.8,vise and wedge can both apply force to objects,llm_bridge +force,wedge,CapableOf,0.8,vise and wedge can both apply force to objects,llm_bridge +haircloth,fabric,MadeOf,0.8,both haircloth and burlap are types of fabric,llm_bridge +fabric,burlap,MadeOf,0.8,both haircloth and burlap are types of fabric,llm_bridge +haircloth,sack,MadeOf,0.8,both haircloth and burlap can be used to make sacks,llm_bridge +sack,burlap,MadeOf,0.8,both haircloth and burlap can be used to make sacks,llm_bridge +haircloth,roughness,HasProperty,0.8,both haircloth and burlap have a rough texture,llm_bridge +roughness,burlap,HasProperty,0.8,both haircloth and burlap have a rough texture,llm_bridge +haircloth,bridge_word:_fabric,MadeOf,0.8,both are types of fabric,llm_bridge +bridge_word:_fabric,denim,MadeOf,0.8,both are types of fabric,llm_bridge +bridge_word:_fabric,leather,MadeOf,0.8,haircloth and leather are both types of fabric made from different materials.,llm_bridge +haircloth,bridge_word:_material,MadeOf,0.8,haircloth and leather are both materials used in different forms of crafting and clothing.,llm_bridge +bridge_word:_material,leather,MadeOf,0.8,haircloth and leather are both materials used in different forms of crafting and clothing.,llm_bridge +haircloth,*shoe**,MadeOf,0.8,haircloth and rubber are both materials used to make shoes.,llm_bridge +*shoe**,rubber,MadeOf,0.8,haircloth and rubber are both materials used to make shoes.,llm_bridge +haircloth,*elastic**,HasA,0.8,"haircloth may have elastic properties, and rubber is inherently elastic.",llm_bridge +*elastic**,rubber,HasA,0.8,"haircloth may have elastic properties, and rubber is inherently elastic.",llm_bridge +bridge_word:_fabric,wool,MadeOf,0.8,haircloth and wool are both types of fabric made from different materials.,llm_bridge +bridge_word:_material,wool,MadeOf,0.8,haircloth and wool are both made from natural materials.,llm_bridge +haircloth,bridge_word:_clothing,UsedFor,0.8,haircloth and wool are both used to make clothing.,llm_bridge +bridge_word:_clothing,wool,UsedFor,0.8,haircloth and wool are both used to make clothing.,llm_bridge +fabric,linen,MadeOf,0.8,both are types of fabric,llm_bridge +wolfram,alloy,MadeOf,0.8,alloy connects as a substance made from combining metals,llm_bridge +wolfram,element,MadeOf,0.8,"wolfram and tungsten are both elements, specifically the same element with different names",llm_bridge +element,tungsten,MadeOf,0.8,"wolfram and tungsten are both elements, specifically the same element with different names",llm_bridge +wolfram,*alloy**,MadeOf,0.8,"wolfram can be part of an alloy, and alloys are made of metals.",llm_bridge +wolfram,*rod**,MadeOf,0.8,"a rod can be made of wolfram, and rods can also be made of metal.",llm_bridge +*rod**,metal,MadeOf,0.8,"a rod can be made of wolfram, and rods can also be made of metal.",llm_bridge +wolfram,*filament**,MadeOf,0.8,"a filament can be made of wolfram, and filaments in bulbs are often made of metal.",llm_bridge +*filament**,metal,MadeOf,0.8,"a filament can be made of wolfram, and filaments in bulbs are often made of metal.",llm_bridge +wolfram,aluminum,HasA,0.8,Both are materials that can be part of alloys or compounds together.,llm_bridge +aluminum,aluminum,HasA,0.8,Both are materials that can be part of alloys or compounds together.,llm_bridge +wolfram,mine,AtLocation,0.8,both metals can be found in mines,llm_bridge +mine,pewter,AtLocation,0.8,both metals can be found in mines,llm_bridge +wolfram,smelter,AtLocation,0.8,both metals are processed in smelters,llm_bridge +smelter,pewter,AtLocation,0.8,both metals are processed in smelters,llm_bridge +wolfram,tungsten,MadeOf,0.8,tungsten is the metal extracted from wolfram ore,llm_bridge +tungsten,ore,MadeOf,0.8,tungsten is the metal extracted from wolfram ore,llm_bridge +mine,ore,AtLocation,0.8,mines are places where wolfram and ore are found,llm_bridge +wolfram,smelting,UsedFor,0.8,smelting is a process used to process both wolfram and ore to extract metal,llm_bridge +smelting,ore,UsedFor,0.8,smelting is a process used to process both wolfram and ore to extract metal,llm_bridge +wolfram,alloy,HasA,0.8,both are components of alloys.,llm_bridge +alloy,nickel,HasA,0.8,both are components of alloys.,llm_bridge +wolfram,steel,UsedFor,0.8,both are used in manufacturing steel.,llm_bridge +steel,nickel,UsedFor,0.8,both are used in manufacturing steel.,llm_bridge +wolfram,plating,UsedFor,0.8,both can be used in plating processes.,llm_bridge +plating,nickel,UsedFor,0.8,both can be used in plating processes.,llm_bridge +wolfram,mine,HasA,0.8,mines often contain both wolfram and gold deposits.,llm_bridge +mine,gold,HasA,0.8,mines often contain both wolfram and gold deposits.,llm_bridge +wolfram,ore,MadeOf,0.8,ore is a common material containing either wolfram or gold.,llm_bridge +ore,gold,MadeOf,0.8,ore is a common material containing either wolfram or gold.,llm_bridge +wolfram,smelter,UsedFor,0.8,smelters process both wolfram and gold for extraction and refinement.,llm_bridge +smelter,gold,UsedFor,0.8,smelters process both wolfram and gold for extraction and refinement.,llm_bridge +wolfram,*alloy**,UsedFor,0.8,"Alloy is a mixture of metals, and both wolfram and copper can be used to create alloys.",llm_bridge +*alloy**,copper,UsedFor,0.8,"Alloy is a mixture of metals, and both wolfram and copper can be used to create alloys.",llm_bridge +wolfram,*wire**,UsedFor,0.8,Wire is made from metals like wolfram and copper for electrical conductivity.,llm_bridge +*wire**,copper,UsedFor,0.8,Wire is made from metals like wolfram and copper for electrical conductivity.,llm_bridge +wolfram,*mine**,AtLocation,0.8,Mines are locations where both wolfram and copper can be extracted.,llm_bridge +*mine**,copper,AtLocation,0.8,Mines are locations where both wolfram and copper can be extracted.,llm_bridge +rubber,*fabric**,MadeOf,0.8,Both rubber and denim are materials used to create fabrics.,llm_bridge +*fabric**,denim,MadeOf,0.8,Both rubber and denim are materials used to create fabrics.,llm_bridge +rubber,*garment**,UsedFor,0.8,Rubber (as in raincoats) and denim are both used to make garments.,llm_bridge +*garment**,denim,UsedFor,0.8,Rubber (as in raincoats) and denim are both used to make garments.,llm_bridge +rubber,*tire**,MadeOf,0.8,"Tires are made of rubber, and denim (as fabric) can be a prerequisite for tire casing reinforcement.",llm_bridge +*tire**,denim,HasPrerequisite,0.8,"Tires are made of rubber, and denim (as fabric) can be a prerequisite for tire casing reinforcement.",llm_bridge +rubber,ball,MadeOf,0.8,A ball can be made of rubber and string.,llm_bridge +ball,string,MadeOf,0.8,A ball can be made of rubber and string.,llm_bridge +rubber,eraser,MadeOf,0.8,An eraser is made of rubber and can be used to tie or secure string.,llm_bridge +eraser,string,UsedFor,0.8,An eraser is made of rubber and can be used to tie or secure string.,llm_bridge +rubber,tire,MadeOf,0.8,A tire is made of rubber and may have strings (or cords) embedded in it.,llm_bridge +tire,string,HasA,0.8,A tire is made of rubber and may have strings (or cords) embedded in it.,llm_bridge +rubber,fabric,MadeOf,0.8,Both rubber and nylon can be used to make different types of fabrics.,llm_bridge +fabric,nylon,MadeOf,0.8,Both rubber and nylon can be used to make different types of fabrics.,llm_bridge +rubber,thread,MadeOf,0.8,Rubber and nylon can both be used to create threads for various applications.,llm_bridge +thread,nylon,MadeOf,0.8,Rubber and nylon can both be used to create threads for various applications.,llm_bridge +rubber,clothing,MadeOf,0.8,Rubber and nylon are both materials that can be used in making clothing.,llm_bridge +clothing,nylon,MadeOf,0.8,Rubber and nylon are both materials that can be used in making clothing.,llm_bridge +ball,feather,UsedFor,0.8,"balls are made of rubber and can be used with feathers (e.g., in games like badminton)",llm_bridge +rubber,duster,MadeOf,0.8,dusters can be made of rubber handles and feather attachments,llm_bridge +duster,feather,MadeOf,0.8,dusters can be made of rubber handles and feather attachments,llm_bridge +rubber,toy,MadeOf,0.8,toys can be made of rubber and may use feathers for decoration or function,llm_bridge +toy,feather,UsedFor,0.8,toys can be made of rubber and may use feathers for decoration or function,llm_bridge +*tire**,polyester,MadeOf,0.8,tires can be made from both rubber and polyester (in different parts),llm_bridge +rubber,*clothing**,MadeOf,0.8,both rubber and polyester are materials used in clothing production,llm_bridge +*clothing**,polyester,MadeOf,0.8,both rubber and polyester are materials used in clothing production,llm_bridge +rubber,rubber_band,MadeOf,0.8,rubber band can be made of rubber and wrapped in a wrapper.,llm_bridge +rubber_band,wrapper,PartOf,0.8,rubber band can be made of rubber and wrapped in a wrapper.,llm_bridge +rubber,footwear,MadeOf,0.8,footwear can be made of rubber and may have a skin lining or covering,llm_bridge +footwear,skin,HasA,0.8,footwear can be made of rubber and may have a skin lining or covering,llm_bridge +rubber,glove,MadeOf,0.8,gloves can be made of rubber and are worn on the skin,llm_bridge +glove,skin,PartOf,0.8,gloves can be made of rubber and are worn on the skin,llm_bridge +rubber,band,MadeOf,0.8,rubber bands are made of rubber and can be used to bind or protect skin,llm_bridge +band,skin,UsedFor,0.8,rubber bands are made of rubber and can be used to bind or protect skin,llm_bridge +rubber,*road**,UsedFor,0.8,roads are made using rubber (in asphalt or tire particles) and tar (as binder or sealant),llm_bridge +*road**,tar,UsedFor,0.8,roads are made using rubber (in asphalt or tire particles) and tar (as binder or sealant),llm_bridge +rubber,*roof**,UsedFor,0.8,rubber membranes and tar coatings are both used in roofing materials,llm_bridge +*roof**,tar,UsedFor,0.8,rubber membranes and tar coatings are both used in roofing materials,llm_bridge +rubber,*asphalt**,HasA,0.8,asphalt contains rubber additives and is made using tar,llm_bridge +*asphalt**,tar,MadeOf,0.8,asphalt contains rubber additives and is made using tar,llm_bridge +tire,soot,MadeOf,0.8,a tire is made of rubber and may contain soot as a component,llm_bridge +claw,*nail,PartOf,0.8,"explanation: A nail is part of a claw, and the mouth is also a part of an animal's body.**",llm_bridge +*nail,mouth,PartOf,0.8,"explanation: A nail is part of a claw, and the mouth is also a part of an animal's body.**",llm_bridge +claw,*beak,LocatedNear,0.8,"explanation: A beak can be near a claw on some animals, and it is part of the mouth structure.**",llm_bridge +*beak,mouth,PartOf,0.8,"explanation: A beak can be near a claw on some animals, and it is part of the mouth structure.**",llm_bridge +claw,*insect,PartOf,0.8,"explanation: An insect has claws and a mouth, connecting both terms as parts of the same organism.**",llm_bridge +*insect,mouth,PartOf,0.8,"explanation: An insect has claws and a mouth, connecting both terms as parts of the same organism.**",llm_bridge +claw,limb,PartOf,0.8,limbs have claws and muscles.,llm_bridge +claw,leg,PartOf,0.8,legs have claws and muscles.,llm_bridge +claw,foot,PartOf,0.8,feet have claws and muscles.,llm_bridge +foot,muscle,PartOf,0.8,feet have claws and muscles.,llm_bridge +claw,hand,PartOf,0.8,hand connects as part of the claw structure and possession by the marmoset,llm_bridge +hand,marmoset,HasA,0.8,hand connects as part of the claw structure and possession by the marmoset,llm_bridge +claw,finger,PartOf,0.8,finger connects as part of the claw structure and possession by the marmoset,llm_bridge +finger,marmoset,HasA,0.8,finger connects as part of the claw structure and possession by the marmoset,llm_bridge +foot,marmoset,HasA,0.8,foot connects as part of the claw structure and possession by the marmoset,llm_bridge +claw,paw,PartOf,0.8,"a paw is a type of claw, and a spider has claws (pedipalps)",llm_bridge +paw,spider,HasA,0.8,"a paw is a type of claw, and a spider has claws (pedipalps)",llm_bridge +claw,web,UsedFor,0.8,"claws are used to manipulate webs, and spiders create webs",llm_bridge +claw,insect,PartOf,0.8,"claws are part of some insects, and spiders are part of the broader category of arthropods (though more closely related to insects)",llm_bridge +insect,spider,PartOf,0.8,"claws are part of some insects, and spiders are part of the broader category of arthropods (though more closely related to insects)",llm_bridge +foot,kiwi,HasA,0.8,"claws are part of feet, and kiwis have feet",llm_bridge +claw,forest,AtLocation,0.8,"claws are used by animals in forests, and kiwis live in forests",llm_bridge +forest,kiwi,AtLocation,0.8,"claws are used by animals in forests, and kiwis live in forests",llm_bridge +claw,*bird,MadeOf,0.8,"Birds have claws, and a flock is a group of birds.**",llm_bridge +*bird,flock,HasA,0.8,"Birds have claws, and a flock is a group of birds.**",llm_bridge +claw,*animal,PartOf,0.8,"Claws are part of an animal, and a flock is a group of animals.**",llm_bridge +*animal,flock,HasA,0.8,"Claws are part of an animal, and a flock is a group of animals.**",llm_bridge +claw,*wing,PartOf,0.8,Claws and wings are both parts of animals like birds in a flock.**,llm_bridge +*wing,flock,HasA,0.8,Claws and wings are both parts of animals like birds in a flock.**,llm_bridge +paw,rabbit,HasA,0.8,Both animals have paws that include claws.,llm_bridge +claw,antler,PartOf,0.8,"antlers are part of a deer's anatomy, similar to claws being part of an animal's anatomy",llm_bridge +claw,hoof,UsedFor,0.8,"claws are used for traction, similar to how hooves (part of a deer) function",llm_bridge +hoof,deer,PartOf,0.8,"claws are used for traction, similar to how hooves (part of a deer) function",llm_bridge +claw,predator,Desires,0.8,"predators desire claws for hunting, and prey animals like deer desire escape mechanisms (which involve legs/hooves)",llm_bridge +predator,deer,Desires,0.8,"predators desire claws for hunting, and prey animals like deer desire escape mechanisms (which involve legs/hooves)",llm_bridge +claw,marmot,HasA,0.8,a marmot has claws as part of its body,llm_bridge +claw,claw,HasA,0.8,both a claw and a marmot are parts of animals,llm_bridge +claw,lemur,HasA,0.8,lemurs have claws as part of their physical structure,llm_bridge +mercury,alloy,MadeOf,0.8,both mercury and wolfram can be components in alloys,llm_bridge +mercury,mercury,HasA,0.8,mercury can be used to extract gold through a process called amalgamation,llm_bridge +mercury,gold,UsedFor,0.8,mercury can be used to extract gold through a process called amalgamation,llm_bridge +mercury,wire,MadeOf,0.8,mercury and tungsten can both be used to make electrical wires.,llm_bridge +mercury,lightbulb,PartOf,0.8,"mercury is used in fluorescent lightbulbs, and tungsten is used in incandescent lightbulbs.",llm_bridge +lightbulb,tungsten,PartOf,0.8,"mercury is used in fluorescent lightbulbs, and tungsten is used in incandescent lightbulbs.",llm_bridge +mercury,thermometer,PartOf,0.8,"mercury is used in thermometers, and tungsten is used to make the glass or housing of some thermometers.",llm_bridge +thermometer,tungsten,UsedFor,0.8,"mercury is used in thermometers, and tungsten is used to make the glass or housing of some thermometers.",llm_bridge +mercury,coin,MadeOf,0.8,Both metals are sometimes used as materials in coin production.,llm_bridge +thermometer,nickel,HasA,0.8,"Mercury is often found in traditional thermometers, while nickel may be used in the thermometer's components.",llm_bridge +mercury,*alloy**,MadeOf,0.8,"explanation: Both mercury and steel can be components in creating alloys, which are mixtures of metals.",llm_bridge +*alloy**,steel,MadeOf,0.8,"explanation: Both mercury and steel can be components in creating alloys, which are mixtures of metals.",llm_bridge +mercury,*container**,AtLocation,0.8,explanation: Mercury and steel (or objects made of steel) can both be found or stored in containers.,llm_bridge +*container**,steel,AtLocation,0.8,explanation: Mercury and steel (or objects made of steel) can both be found or stored in containers.,llm_bridge +mercury,alloy,UsedFor,0.8,alloy connects them as materials that can be combined for different properties,llm_bridge +mercury,ore,PartOf,0.8,ore connects them as natural sources where these metals are found,llm_bridge +ore,platinum,PartOf,0.8,ore connects them as natural sources where these metals are found,llm_bridge +mercury,element,PartOf,0.8,element connects them as basic substances in the periodic table,llm_bridge +element,platinum,PartOf,0.8,element connects them as basic substances in the periodic table,llm_bridge +mercury,bridge_word:_**wire**,MadeOf,0.8,Both mercury and copper can be used to make electrical wires.,llm_bridge +bridge_word:_**wire**,copper,MadeOf,0.8,Both mercury and copper can be used to make electrical wires.,llm_bridge +mercury,bridge_word:_**pipe**,MadeOf,0.8,Mercury and copper can both be components of pipes.,llm_bridge +bridge_word:_**pipe**,copper,MadeOf,0.8,Mercury and copper can both be components of pipes.,llm_bridge +mercury,bridge_word:_**metal**,HasProperty,0.8,Both mercury and copper are classified as metals.,llm_bridge +bridge_word:_**metal**,copper,HasProperty,0.8,Both mercury and copper are classified as metals.,llm_bridge +element,metal,PartOf,0.8,"mercury is an element, and metal is made of elements.",llm_bridge +mercury,liquid,HasProperty,0.8,"mercury is a liquid metal, and metals can be liquids under certain conditions.",llm_bridge +liquid,metal,HasPrerequisite,0.8,"mercury is a liquid metal, and metals can be liquids under certain conditions.",llm_bridge +mercury,alloy,HasA,0.8,"mercury can be part of alloys, and alloys are made for metals.",llm_bridge +alloy,metal,UsedFor,0.8,"mercury can be part of alloys, and alloys are made for metals.",llm_bridge +element,magnesium,PartOf,0.8,Both mercury and magnesium are elements (types of metal).,llm_bridge +mercury,metal,PartOf,0.8,Both mercury and magnesium are types of metal.,llm_bridge +metal,magnesium,PartOf,0.8,Both mercury and magnesium are types of metal.,llm_bridge +mercury,periodic_table,LocatedNear,0.8,Both mercury and magnesium appear on the periodic table of elements.,llm_bridge +periodic_table,magnesium,LocatedNear,0.8,Both mercury and magnesium appear on the periodic table of elements.,llm_bridge +nylon,*thread**,MadeOf,0.8,"nylon can be made into thread, and aluminum can also be made into thread (e.g., for jewelry or crafts).",llm_bridge +*thread**,aluminum,MadeOf,0.8,"nylon can be made into thread, and aluminum can also be made into thread (e.g., for jewelry or crafts).",llm_bridge +nylon,*foil**,MadeOf,0.8,"nylon can be used to make foil-like materials (e.g., in packaging), and aluminum is commonly made into foil.",llm_bridge +*foil**,aluminum,MadeOf,0.8,"nylon can be used to make foil-like materials (e.g., in packaging), and aluminum is commonly made into foil.",llm_bridge +nylon,*wire**,MadeOf,0.8,"nylon can be used to insulate or form wire, while aluminum is often used as the core material for wire.",llm_bridge +*wire**,aluminum,MadeOf,0.8,"nylon can be used to insulate or form wire, while aluminum is often used as the core material for wire.",llm_bridge +nylon,bag,MadeOf,0.8,a bag can be made from nylon or used as a wrapper,llm_bridge +bag,wrapper,MadeOf,0.8,a bag can be made from nylon or used as a wrapper,llm_bridge +nylon,"""fabric""",MadeOf,0.8,fabric is made of nylon and can be used for straw hats,llm_bridge +"""fabric""",straw,UsedFor,0.8,fabric is made of nylon and can be used for straw hats,llm_bridge +nylon,"""hat""",MadeOf,0.8,hats can be made of nylon or straw,llm_bridge +"""hat""",straw,UsedFor,0.8,hats can be made of nylon or straw,llm_bridge +nylon,"""plastic""",HasA,0.8,"plastic can be made of nylon, and straw is a component of plastic (e.g., bioplastics)",llm_bridge +"""plastic""",straw,MadeOf,0.8,"plastic can be made of nylon, and straw is a component of plastic (e.g., bioplastics)",llm_bridge +nylon,*fabric**,MadeOf,0.8,fabric can be made of nylon and often contains or collects dust.,llm_bridge +*fabric**,dust,HasA,0.8,fabric can be made of nylon and often contains or collects dust.,llm_bridge +nylon,*clothing**,MadeOf,0.8,clothing can be made of nylon and often collects dust.,llm_bridge +*clothing**,dust,HasA,0.8,clothing can be made of nylon and often collects dust.,llm_bridge +nylon,*filter**,MadeOf,0.8,filters can be made of nylon and are used for trapping dust.,llm_bridge +*filter**,dust,UsedFor,0.8,filters can be made of nylon and are used for trapping dust.,llm_bridge +nylon,fabric,MadeOf,0.8,"nylon is a material used to make fabric, which can be used as a substitute or covering for skin.",llm_bridge +fabric,skin,UsedFor,0.8,"nylon is a material used to make fabric, which can be used as a substitute or covering for skin.",llm_bridge +nylon,clothing,MadeOf,0.8,"nylon is often used to make clothing, which can cover or interact with skin.",llm_bridge +clothing,skin,HasA,0.8,"nylon is often used to make clothing, which can cover or interact with skin.",llm_bridge +nylon,thread,PartOf,0.8,"thread made of nylon can be used in processes involving skin (e.g., sutures), connecting the material to the biological element.",llm_bridge +thread,skin,UsedFor,0.8,"thread made of nylon can be used in processes involving skin (e.g., sutures), connecting the material to the biological element.",llm_bridge +nylon,*fiber,MadeOf,0.8,"explanation: Nylon is made of synthetic fibers, while chalk can be ground into a fibrous form for some applications.**",llm_bridge +*fiber,chalk,MadeOf,0.8,"explanation: Nylon is made of synthetic fibers, while chalk can be ground into a fibrous form for some applications.**",llm_bridge +nylon,*powder,UsedFor,0.8,"explanation: Nylon can be ground into a fine powder for manufacturing, and chalk naturally exists as a soft, powdery material.**",llm_bridge +*powder,chalk,HasProperty,0.8,"explanation: Nylon can be ground into a fine powder for manufacturing, and chalk naturally exists as a soft, powdery material.**",llm_bridge +nylon,*crystal,HasProperty,0.8,"explanation: Nylon can form crystalline structures, and chalk is made of calcium carbonate crystals.**",llm_bridge +*crystal,chalk,MadeOf,0.8,"explanation: Nylon can form crystalline structures, and chalk is made of calcium carbonate crystals.**",llm_bridge +nylon,*sand**,MadeOf,0.8,sand is a component of nylon and is used in making bricks.,llm_bridge +*sand**,brick,MadeOf,0.8,sand is a component of nylon and is used in making bricks.,llm_bridge +nylon,*cement**,MadeOf,0.8,cement can be used in nylon composites and is a key ingredient in bricks.,llm_bridge +*cement**,brick,MadeOf,0.8,cement can be used in nylon composites and is a key ingredient in bricks.,llm_bridge +nylon,*building**,UsedFor,0.8,both nylon and bricks are used in the process of building structures.,llm_bridge +*building**,brick,UsedFor,0.8,both nylon and bricks are used in the process of building structures.,llm_bridge +nylon,*fiber**,MadeOf,0.8,Both nylon and paper are made from fibers.,llm_bridge +*fiber**,paper,MadeOf,0.8,Both nylon and paper are made from fibers.,llm_bridge +nylon,*manufacturing**,UsedFor,0.8,Both nylon and paper are products of manufacturing processes.,llm_bridge +*manufacturing**,paper,UsedFor,0.8,Both nylon and paper are products of manufacturing processes.,llm_bridge +nylon,*product**,CapableOf,0.8,Both nylon and paper can be transformed into various products.,llm_bridge +*product**,paper,CapableOf,0.8,Both nylon and paper can be transformed into various products.,llm_bridge +nylon,*engine**,MadeOf,0.8,"nylon can be made into engine parts, and engines contain fuel.",llm_bridge +*engine**,fuel,HasA,0.8,"nylon can be made into engine parts, and engines contain fuel.",llm_bridge +nylon,*vehicle**,MadeOf,0.8,"nylon is used to make vehicle components, and vehicles require fuel to operate.",llm_bridge +*vehicle**,fuel,HasA,0.8,"nylon is used to make vehicle components, and vehicles require fuel to operate.",llm_bridge +nylon,*industry**,MadeOf,0.8,nylon and fuel are both materials produced or used in various industries.,llm_bridge +*industry**,fuel,MadeOf,0.8,nylon and fuel are both materials produced or used in various industries.,llm_bridge +fabric,fiber,PartOf,0.8,fabric is made of nylon and fiber is part of fabric.,llm_bridge +nylon,thread,MadeOf,0.8,thread is made of nylon and fiber is part of thread.,llm_bridge +thread,fiber,PartOf,0.8,thread is made of nylon and fiber is part of thread.,llm_bridge +nylon,thread,HasA,0.8,thread is made of nylon and fiber is part of thread.,llm_bridge +accordion,musician,UsedFor,0.8,musician plays both the accordion and the ukulele,llm_bridge +musician,ukulele,UsedFor,0.8,musician plays both the accordion and the ukulele,llm_bridge +accordion,concert,AtLocation,0.8,both instruments can be found at a concert,llm_bridge +concert,ukulele,AtLocation,0.8,both instruments can be found at a concert,llm_bridge +music,ukulele,UsedFor,0.8,both instruments produce music,llm_bridge +accordion,"bridge_word:_""musician""",UsedFor,0.8,musicians use both accordion and triangle in performance,llm_bridge +"bridge_word:_""musician""",triangle,UsedFor,0.8,musicians use both accordion and triangle in performance,llm_bridge +accordion,"bridge_word:_""band""",AtLocation,0.8,both instruments can be found in bands or ensembles,llm_bridge +"bridge_word:_""band""",triangle,AtLocation,0.8,both instruments can be found in bands or ensembles,llm_bridge +accordion,"bridge_word:_""concert""",AtLocation,0.8,both instruments might appear in the same concert setting,llm_bridge +"bridge_word:_""concert""",triangle,AtLocation,0.8,both instruments might appear in the same concert setting,llm_bridge +accordion,musician,CapableOf,0.8,musician connects both instruments as something they can be played by,llm_bridge +accordion,sound,UsedFor,0.8,sound connects both instruments as something they are used to produce,llm_bridge +sound,harp,UsedFor,0.8,sound connects both instruments as something they are used to produce,llm_bridge +accordion,bridge_word:_music,UsedFor,0.8,music connects both as instruments used to create it,llm_bridge +bridge_word:_music,trumpet,UsedFor,0.8,music connects both as instruments used to create it,llm_bridge +accordion,bridge_word:_musician,CapableOf,0.8,musician connects both as performers who play them,llm_bridge +bridge_word:_musician,trumpet,CapableOf,0.8,musician connects both as performers who play them,llm_bridge +accordion,bridge_word:_concert,AtLocation,0.8,concert connects both as instruments played in a performance setting,llm_bridge +bridge_word:_concert,trumpet,AtLocation,0.8,concert connects both as instruments played in a performance setting,llm_bridge +accordion,key,PartOf,0.8,key connects as a common component of both instruments,llm_bridge +key,organ,PartOf,0.8,key connects as a common component of both instruments,llm_bridge +accordion,player,CapableOf,0.8,player connects as someone who can play both instruments,llm_bridge +player,organ,CapableOf,0.8,player connects as someone who can play both instruments,llm_bridge +music,oboe,UsedFor,0.8,Both are used to create music.,llm_bridge +musician,oboe,CapableOf,0.8,A musician can play both instruments.,llm_bridge +accordion,orchestra,AtLocation,0.8,Both can be found in an orchestra.,llm_bridge +orchestra,oboe,AtLocation,0.8,Both can be found in an orchestra.,llm_bridge +musician,drum,UsedFor,0.8,musician uses both accordion and drum as instruments,llm_bridge +music,drum,UsedFor,0.8,music is created using both accordion and drum,llm_bridge +band,drum,AtLocation,0.8,both accordion and drum can be found in a band,llm_bridge +accordion,musician,HasA,0.8,Both instruments can be played by a musician.,llm_bridge +musician,mandolin,HasA,0.8,Both instruments can be played by a musician.,llm_bridge +orchestra,mandolin,AtLocation,0.8,Both instruments can be found in an orchestra.,llm_bridge +accordion,string,HasA,0.8,Both instruments have strings as part of their design.,llm_bridge +string,mandolin,HasA,0.8,Both instruments have strings as part of their design.,llm_bridge +accordion,player,HasA,0.8,a player can use both an accordion and a bass instrument,llm_bridge +accordion,note,UsedFor,0.8,notes are produced by both an accordion and a bass instrument,llm_bridge +note,bass,UsedFor,0.8,notes are produced by both an accordion and a bass instrument,llm_bridge +trough,water,HasA,0.8,water can be contained in both troughs and jars,llm_bridge +water,jar,HasA,0.8,water can be contained in both troughs and jars,llm_bridge +trough,food,HasA,0.8,food can be stored in both troughs and jars,llm_bridge +food,jar,HasA,0.8,food can be stored in both troughs and jars,llm_bridge +trough,liquid,HasA,0.8,liquid substances can be held in both troughs and jars,llm_bridge +liquid,jar,HasA,0.8,liquid substances can be held in both troughs and jars,llm_bridge +trough,grain,UsedFor,0.8,grain can be stored in both a trough and a bin,llm_bridge +grain,bin,UsedFor,0.8,grain can be stored in both a trough and a bin,llm_bridge +trough,feed,UsedFor,0.8,feed can be stored in both a trough and a bin,llm_bridge +feed,bin,UsedFor,0.8,feed can be stored in both a trough and a bin,llm_bridge +trough,storage,UsedFor,0.8,both troughs and bins are used for storage,llm_bridge +storage,bin,UsedFor,0.8,both troughs and bins are used for storage,llm_bridge +trough,container,PartOf,0.8,both are components or types of containers,llm_bridge +trough,farm,AtLocation,0.8,both can be found on a farm,llm_bridge +farm,lid,AtLocation,0.8,both can be found on a farm,llm_bridge +trough,food,UsedFor,0.8,both can be used to store or cover food,llm_bridge +trough,*pig**,AtLocation,0.8,pigs are often kept near troughs and sometimes in tubs,llm_bridge +*pig**,tub,AtLocation,0.8,pigs are often kept near troughs and sometimes in tubs,llm_bridge +trough,*water**,UsedFor,0.8,both containers are used to hold water,llm_bridge +*water**,tub,UsedFor,0.8,both containers are used to hold water,llm_bridge +trough,*farm**,AtLocation,0.8,both containers are commonly found on farms,llm_bridge +*farm**,tub,AtLocation,0.8,both containers are commonly found on farms,llm_bridge +trough,*animal,ReceivesAction,0.8,animals interact with troughs for food/water and shells are part of some animals**,llm_bridge +*animal,shell,PartOf,0.8,animals interact with troughs for food/water and shells are part of some animals**,llm_bridge +trough,water,UsedFor,0.8,water is stored in both a trough and a vase in different contexts.,llm_bridge +water,vase,UsedFor,0.8,water is stored in both a trough and a vase in different contexts.,llm_bridge +trough,flower,ReceivesAction,0.8,flowers are placed in a trough for animals and are part of arrangements in a vase.,llm_bridge +flower,vase,PartOf,0.8,flowers are placed in a trough for animals and are part of arrangements in a vase.,llm_bridge +trough,plant,ReceivesAction,0.8,plants (or their roots) can be placed in a trough for irrigation and are part of the contents in a vase.,llm_bridge +plant,vase,PartOf,0.8,plants (or their roots) can be placed in a trough for irrigation and are part of the contents in a vase.,llm_bridge +water,bladder,UsedFor,0.8,water is stored or contained in both a trough and a bladder.,llm_bridge +trough,animal,AtLocation,0.8,"animals use troughs for water, and bladders are part of an animal's anatomy.",llm_bridge +animal,bladder,PartOf,0.8,"animals use troughs for water, and bladders are part of an animal's anatomy.",llm_bridge +trough,urine,ReceivesAction,0.8,urine is collected in a trough and is made of waste stored in a bladder.,llm_bridge +urine,bladder,MadeOf,0.8,urine is collected in a trough and is made of waste stored in a bladder.,llm_bridge +trough,*building**,PartOf,0.8,"explanation: A trough can be part of a building, and bricks are also used as parts of buildings.",llm_bridge +*building**,brick,PartOf,0.8,"explanation: A trough can be part of a building, and bricks are also used as parts of buildings.",llm_bridge +trough,*structure**,PartOf,0.8,"explanation: A trough can be part of a structure, and bricks are also used to build structures.",llm_bridge +*structure**,brick,PartOf,0.8,"explanation: A trough can be part of a structure, and bricks are also used to build structures.",llm_bridge +trough,*material**,HasA,0.8,"explanation: A trough may contain materials (like grain or water), and a brick is made of materials (like clay or concrete).",llm_bridge +*material**,brick,MadeOf,0.8,"explanation: A trough may contain materials (like grain or water), and a brick is made of materials (like clay or concrete).",llm_bridge +trough,drink,UsedFor,0.8,Both are used for holding drinks.,llm_bridge +drink,mug,UsedFor,0.8,Both are used for holding drinks.,llm_bridge +water,pitcher,UsedFor,0.8,water can be poured into and stored in both a trough and a pitcher,llm_bridge +animal,pitcher,HasPrerequisite,0.8,"animals are often near troughs for feeding, and a pitcher requires an animal (like a farmer) to use it",llm_bridge +food,pitcher,UsedFor,0.8,both troughs and pitchers can be used to hold or serve food or drink,llm_bridge +micrometer,*measuring_tape**,UsedFor,0.8,"Both tools are used for precise measurements, with the micrometer for small objects and the saxophone for musical scales or intervals.",llm_bridge +*measuring_tape**,saxophone,UsedFor,0.8,"Both tools are used for precise measurements, with the micrometer for small objects and the saxophone for musical scales or intervals.",llm_bridge +micrometer,*musician**,UsedFor,0.8,"A musician uses a micrometer to tune or calibrate instruments, and they also play the saxophone.",llm_bridge +*musician**,saxophone,CapableOf,0.8,"A musician uses a micrometer to tune or calibrate instruments, and they also play the saxophone.",llm_bridge +micrometer,*factory**,AtLocation,0.8,"Both instruments can be found in a factory setting, with the micrometer for precision work and the saxophone for musical breaks or events.",llm_bridge +*factory**,saxophone,AtLocation,0.8,"Both instruments can be found in a factory setting, with the micrometer for precision work and the saxophone for musical breaks or events.",llm_bridge +micrometer,screw,PartOf,0.8,Both instruments often use screws for precise measurement adjustments.,llm_bridge +screw,caliper,PartOf,0.8,Both instruments often use screws for precise measurement adjustments.,llm_bridge +micrometer,measurement,UsedFor,0.8,Both tools are used for taking precise measurements.,llm_bridge +measurement,caliper,UsedFor,0.8,Both tools are used for taking precise measurements.,llm_bridge +micrometer,gauge,HasA,0.8,Both instruments contain or function as gauges for precision.,llm_bridge +gauge,caliper,HasA,0.8,Both instruments contain or function as gauges for precision.,llm_bridge +micrometer,string,PartOf,0.8,string is a component of both a micrometer (as part of its measuring mechanism) and a mandolin (as part of its strings).,llm_bridge +micrometer,metal,MadeOf,0.8,metal is a material used in the construction of both a micrometer (for precision parts) and a mandolin (for strings or body).,llm_bridge +metal,mandolin,MadeOf,0.8,metal is a material used in the construction of both a micrometer (for precision parts) and a mandolin (for strings or body).,llm_bridge +micrometer,tune,ReceivesAction,0.8,tune relates to both as an action performed on a micrometer (tuning its calibration) and a mandolin (tuning its strings).,llm_bridge +tune,mandolin,ReceivesAction,0.8,tune relates to both as an action performed on a micrometer (tuning its calibration) and a mandolin (tuning its strings).,llm_bridge +micrometer,tape,UsedFor,0.8,tape measures small distances with a micrometer and can be used to mark piano keys for tuning,llm_bridge +tape,piano,UsedFor,0.8,tape measures small distances with a micrometer and can be used to mark piano keys for tuning,llm_bridge +micrometer,string,UsedFor,0.8,string is measured by a micrometer and is a part of a piano,llm_bridge +string,piano,PartOf,0.8,string is measured by a micrometer and is a part of a piano,llm_bridge +micrometer,ruler,UsedFor,0.8,ruler is used with a micrometer for precise measurements and can be used to measure piano keys,llm_bridge +ruler,piano,UsedFor,0.8,ruler is used with a micrometer for precise measurements and can be used to measure piano keys,llm_bridge +measurement,recorder,UsedFor,0.8,both are used for taking measurements,llm_bridge +micrometer,data,HasA,0.8,both instruments involve data or readings,llm_bridge +data,recorder,HasA,0.8,both instruments involve data or readings,llm_bridge +micrometer,calibration,HasPrerequisite,0.8,both require calibration for accurate use,llm_bridge +calibration,recorder,HasPrerequisite,0.8,both require calibration for accurate use,llm_bridge +micrometer,*scale**,HasA,0.8,scales are often used on both micrometers for measurement and triangles for drafting.,llm_bridge +*scale**,triangle,HasA,0.8,scales are often used on both micrometers for measurement and triangles for drafting.,llm_bridge +micrometer,*measurement**,UsedFor,0.8,both micrometers and triangles are used for taking measurements in different contexts.,llm_bridge +*measurement**,triangle,UsedFor,0.8,both micrometers and triangles are used for taking measurements in different contexts.,llm_bridge +micrometer,*drawing**,UsedFor,0.8,"micrometers can be used to measure for precise drawings, and triangles are used as drawing tools in technical illustration.",llm_bridge +*drawing**,triangle,UsedFor,0.8,"micrometers can be used to measure for precise drawings, and triangles are used as drawing tools in technical illustration.",llm_bridge +string,ukulele,HasA,0.8,strings are used for calibration in micrometers and are a key component of ukuleles,llm_bridge +measurement,ukulele,UsedFor,0.8,"micrometers are used for precise measurements, and ukuleles involve measurements for construction and tuning",llm_bridge +micrometer,tool,PartOf,0.8,"micrometers and ukuleles are both types of tools, with the micrometer being a precision tool and the ukulele being a musical tool",llm_bridge +tool,ukulele,PartOf,0.8,"micrometers and ukuleles are both types of tools, with the micrometer being a precision tool and the ukulele being a musical tool",llm_bridge +micrometer,wood,MadeOf,0.8,wood is a common material used to make both a micrometer and a lyre.,llm_bridge +wood,lyre,MadeOf,0.8,wood is a common material used to make both a micrometer and a lyre.,llm_bridge +micrometer,music,UsedFor,0.8,music is measured with a micrometer (for precision in musical instrument construction) and produced by a lyre.,llm_bridge +measurement,trumpet,UsedFor,0.8,"Both a micrometer and a trumpet are used for measurement (physical and musical, respectively).",llm_bridge +micrometer,music,HasProperty,0.8,"A micrometer is precise like music, and a trumpet is used for music.",llm_bridge +micrometer,sound,CapableOf,0.8,"A micrometer can produce a clicking sound, and a trumpet is made of sound.",llm_bridge +sound,trumpet,MadeOf,0.8,"A micrometer can produce a clicking sound, and a trumpet is made of sound.",llm_bridge +micrometer,measuring,UsedFor,0.8,"measuring is what a micrometer does and can be done to bass (e.g., measuring its length)",llm_bridge +measuring,bass,ReceivesAction,0.8,"measuring is what a micrometer does and can be done to bass (e.g., measuring its length)",llm_bridge +micrometer,fisherman,HasA,0.8,a fisherman might use a micrometer and catch a bass,llm_bridge +fisherman,bass,HasA,0.8,a fisherman might use a micrometer and catch a bass,llm_bridge +micrometer,scales,UsedFor,0.8,scales are measured by a micrometer and are part of a bass,llm_bridge +scales,bass,HasA,0.8,scales are measured by a micrometer and are part of a bass,llm_bridge +styrofoam,cup,MadeOf,0.8,"Styrofoam is used to make cups, and cups often have wrappers.",llm_bridge +cup,wrapper,HasA,0.8,"Styrofoam is used to make cups, and cups often have wrappers.",llm_bridge +styrofoam,package,MadeOf,0.8,"Styrofoam can be part of packaging materials, and packages often have wrappers.",llm_bridge +package,wrapper,HasA,0.8,"Styrofoam can be part of packaging materials, and packages often have wrappers.",llm_bridge +styrofoam,food,UsedFor,0.8,Both Styrofoam and wrappers can be used to contain or transport food.,llm_bridge +food,wrapper,UsedFor,0.8,Both Styrofoam and wrappers can be used to contain or transport food.,llm_bridge +styrofoam,*earrings**,MadeOf,0.8,Earrings can be made of styrofoam and are a type of jewelry.,llm_bridge +*earrings**,jewelry,PartOf,0.8,Earrings can be made of styrofoam and are a type of jewelry.,llm_bridge +styrofoam,*bracelet**,MadeOf,0.8,Bracelets can be made of styrofoam and are a type of jewelry.,llm_bridge +styrofoam,*pendant**,MadeOf,0.8,Pendants can be made of styrofoam and are a type of jewelry.,llm_bridge +*pendant**,jewelry,PartOf,0.8,Pendants can be made of styrofoam and are a type of jewelry.,llm_bridge +styrofoam,bowl,MadeOf,0.8,bowl connects as a product made from both materials.,llm_bridge +bowl,ceramic,MadeOf,0.8,bowl connects as a product made from both materials.,llm_bridge +cup,ceramic,MadeOf,0.8,cup connects as a product made from both materials.,llm_bridge +styrofoam,container,UsedFor,0.8,container connects as a common purpose both materials can serve.,llm_bridge +container,ceramic,UsedFor,0.8,container connects as a common purpose both materials can serve.,llm_bridge +styrofoam,bridge_word:_insulation,MadeOf,0.8,Both styrofoam and rubber can be used as insulation materials.,llm_bridge +bridge_word:_insulation,rubber,MadeOf,0.8,Both styrofoam and rubber can be used as insulation materials.,llm_bridge +styrofoam,bridge_word:_cushion,MadeOf,0.8,Both styrofoam and rubber can be used to create cushions for comfort or protection.,llm_bridge +bridge_word:_cushion,rubber,MadeOf,0.8,Both styrofoam and rubber can be used to create cushions for comfort or protection.,llm_bridge +styrofoam,bridge_word:_toy,MadeOf,0.8,Both styrofoam and rubber are commonly used in the production of various toys.,llm_bridge +bridge_word:_toy,rubber,MadeOf,0.8,Both styrofoam and rubber are commonly used in the production of various toys.,llm_bridge +styrofoam,insulation,HasProperty,0.8,Both styrofoam and fur are known for their insulating properties.,llm_bridge +insulation,fur,HasProperty,0.8,Both styrofoam and fur are known for their insulating properties.,llm_bridge +styrofoam,padding,UsedFor,0.8,Both styrofoam and fur can be used as padding for comfort or protection.,llm_bridge +padding,fur,UsedFor,0.8,Both styrofoam and fur can be used as padding for comfort or protection.,llm_bridge +styrofoam,flame,MadeOf,0.8,"styrofoam is often used as a material in structures that can burn, and ash is created by flames",llm_bridge +flame,ash,CapableOf,0.8,"styrofoam is often used as a material in structures that can burn, and ash is created by flames",llm_bridge +styrofoam,cooler,MadeOf,0.8,styrofoam is used to make coolers that keep ice cold.,llm_bridge +cooler,ice,MadeOf,0.8,styrofoam is used to make coolers that keep ice cold.,llm_bridge +cup,ice,UsedFor,0.8,styrofoam is used to make cups that hold ice.,llm_bridge +styrofoam,box,MadeOf,0.8,styrofoam is used to make boxes that store ice.,llm_bridge +box,ice,UsedFor,0.8,styrofoam is used to make boxes that store ice.,llm_bridge +styrofoam,ball,MadeOf,0.8,"styrofoam balls can be made from styrofoam, and rope balls can be made from rope",llm_bridge +ball,rope,MadeOf,0.8,"styrofoam balls can be made from styrofoam, and rope balls can be made from rope",llm_bridge +box,rope,MadeOf,0.8,"styrofoam can be used to make boxes, and rope can be used to make boxes",llm_bridge +styrofoam,float,HasProperty,0.8,"styrofoam has buoyancy (floats), and some ropes are designed to float on water",llm_bridge +float,rope,HasProperty,0.8,"styrofoam has buoyancy (floats), and some ropes are designed to float on water",llm_bridge +styrofoam,*container**,MadeOf,0.8,"Styrofoam can be made into a container, and dirt is often inside containers.",llm_bridge +*container**,dirt,HasA,0.8,"Styrofoam can be made into a container, and dirt is often inside containers.",llm_bridge +styrofoam,*soil**,UsedFor,0.8,"Styrofoam can be used as part of soil amendments, and soil is made of dirt.",llm_bridge +*soil**,dirt,MadeOf,0.8,"Styrofoam can be used as part of soil amendments, and soil is made of dirt.",llm_bridge +styrofoam,*packaging**,MadeOf,0.8,"Styrofoam is often used in packaging, and dirt can be used as packing material.",llm_bridge +*packaging**,dirt,UsedFor,0.8,"Styrofoam is often used in packaging, and dirt can be used as packing material.",llm_bridge +cornbread,steak,UsedFor,0.8,"steak can be used as an ingredient in cornbread, and beef is part of steak",llm_bridge +steak,beef,PartOf,0.8,"steak can be used as an ingredient in cornbread, and beef is part of steak",llm_bridge +cornbread,meat,UsedFor,0.8,"meat can be used in cornbread, and beef is part of meat",llm_bridge +meat,beef,PartOf,0.8,"meat can be used in cornbread, and beef is part of meat",llm_bridge +cornbread,meal,PartOf,0.8,cornbread and beef can both be parts of a meal,llm_bridge +meal,beef,PartOf,0.8,cornbread and beef can both be parts of a meal,llm_bridge +cornbread,corn,MadeOf,0.8,corn is an ingredient in cornbread and part of the plant that produces vegetables.,llm_bridge +corn,vegetable,PartOf,0.8,corn is an ingredient in cornbread and part of the plant that produces vegetables.,llm_bridge +cornbread,meal,AtLocation,0.8,cornbread and vegetables are both served as part of a meal.,llm_bridge +meal,vegetable,AtLocation,0.8,cornbread and vegetables are both served as part of a meal.,llm_bridge +cornbread,plate,AtLocation,0.8,cornbread and vegetables are both served on a plate.,llm_bridge +cornbread,dinner,HasA,0.8,both are components of a meal like dinner,llm_bridge +dinner,salad,HasA,0.8,both are components of a meal like dinner,llm_bridge +cornbread,meal,HasA,0.8,both are types of food items served in a meal,llm_bridge +meal,salad,HasA,0.8,both are types of food items served in a meal,llm_bridge +cornbread,*dinner**,HasA,0.8,Both cornbread and turkey are commonly found on a dinner table as part of a meal.,llm_bridge +*dinner**,turkey,HasA,0.8,Both cornbread and turkey are commonly found on a dinner table as part of a meal.,llm_bridge +cornbread,*meal**,HasA,0.8,"Both cornbread and turkey are staple items in a traditional meal, often served together.",llm_bridge +*meal**,turkey,HasA,0.8,"Both cornbread and turkey are staple items in a traditional meal, often served together.",llm_bridge +cornbread,*plate**,AtLocation,0.8,Both cornbread and turkey can be served on a plate.,llm_bridge +*plate**,turkey,AtLocation,0.8,Both cornbread and turkey can be served on a plate.,llm_bridge +cornbread,*corn**,MadeOf,0.8,corn is an ingredient in cornbread and potatoes are related to corn as both are crops.,llm_bridge +*corn**,potato,MadeOf,0.8,corn is an ingredient in cornbread and potatoes are related to corn as both are crops.,llm_bridge +cornbread,*meal**,UsedFor,0.8,"cornbread can be part of a meal, and potatoes are often served in meals.",llm_bridge +*meal**,potato,UsedFor,0.8,"cornbread can be part of a meal, and potatoes are often served in meals.",llm_bridge +cornbread,*farmer**,HasA,0.8,farmers grow cornbread ingredients and potatoes.,llm_bridge +*farmer**,potato,HasA,0.8,farmers grow cornbread ingredients and potatoes.,llm_bridge +cornbread,sandwich,HasA,0.8,cornbread and lettuce can both be ingredients in a sandwich.,llm_bridge +sandwich,lettuce,HasA,0.8,cornbread and lettuce can both be ingredients in a sandwich.,llm_bridge +cornbread,salad,ReceivesAction,0.8,"cornbread can be crumbled into a salad, and lettuce is a part of a salad.",llm_bridge +meal,lettuce,HasA,0.8,cornbread and lettuce can both be part of a meal.,llm_bridge +cornbread,*meal**,MadeOf,0.8,meal connects both as components of a meal,llm_bridge +*meal**,ham,MadeOf,0.8,meal connects both as components of a meal,llm_bridge +*plate**,ham,AtLocation,0.8,plate connects both as items served on a plate,llm_bridge +cornbread,*butter**,UsedFor,0.8,butter connects both as toppings or accompaniments,llm_bridge +*butter**,ham,UsedFor,0.8,butter connects both as toppings or accompaniments,llm_bridge +flour,cereal,MadeOf,0.8,flour is a common ingredient in both cornbread and many cereals,llm_bridge +corn,cereal,MadeOf,0.8,corn is an ingredient in cornbread and some cereals,llm_bridge +cornbread,bowl,AtLocation,0.8,both cornbread and cereal can be served in a bowl,llm_bridge +bowl,cereal,AtLocation,0.8,both cornbread and cereal can be served in a bowl,llm_bridge +cornbread,restaurant,AtLocation,0.8,restaurants often serve both cornbread and steak,llm_bridge +restaurant,steak,AtLocation,0.8,restaurants often serve both cornbread and steak,llm_bridge +cornbread,plate,HasA,0.8,both cornbread and steak can be served on plates,llm_bridge +plate,steak,HasA,0.8,both cornbread and steak can be served on plates,llm_bridge +cornbread,knife,UsedFor,0.8,knives are used to cut both cornbread and steak,llm_bridge +knife,steak,UsedFor,0.8,knives are used to cut both cornbread and steak,llm_bridge +cornbread,pie,Desires,0.8,both can be desired as a dessert,llm_bridge +pie,dessert,HasProperty,0.8,both can be desired as a dessert,llm_bridge +cornbread,sweet,HasProperty,0.8,both can have the property of being sweet,llm_bridge +sweet,dessert,HasProperty,0.8,both can have the property of being sweet,llm_bridge +cornbread,cake,Desires,0.8,both can be desired as a dessert,llm_bridge +cake,dessert,HasProperty,0.8,both can be desired as a dessert,llm_bridge +aluminum,bridge_word:_metal,MadeOf,0.8,Both aluminum and platinum are types of metal.,llm_bridge +bridge_word:_metal,platinum,MadeOf,0.8,Both aluminum and platinum are types of metal.,llm_bridge +aluminum,bridge_word:_coin,MadeOf,0.8,Both aluminum and platinum can be used to make coins.,llm_bridge +bridge_word:_coin,platinum,MadeOf,0.8,Both aluminum and platinum can be used to make coins.,llm_bridge +aluminum,bridge_word:_jewelry,UsedFor,0.8,Both aluminum and platinum are used in making jewelry.,llm_bridge +bridge_word:_jewelry,platinum,UsedFor,0.8,Both aluminum and platinum are used in making jewelry.,llm_bridge +aluminum,wing,MadeOf,0.8,"aluminum can be used to make wings, and feathers are part of a bird's wing.",llm_bridge +wing,feather,PartOf,0.8,"aluminum can be used to make wings, and feathers are part of a bird's wing.",llm_bridge +aluminum,craft,MadeOf,0.8,"aluminum is used to make crafts (like model airplanes), and feathers can be used in crafts (like decorations).",llm_bridge +craft,feather,UsedFor,0.8,"aluminum is used to make crafts (like model airplanes), and feathers can be used in crafts (like decorations).",llm_bridge +aluminum,plane,MadeOf,0.8,"aluminum is used to make planes, and feathers are part of birds that inspired the design of planes.",llm_bridge +plane,feather,PartOf,0.8,"aluminum is used to make planes, and feathers are part of birds that inspired the design of planes.",llm_bridge +aluminum,ring,MadeOf,0.8,a ring is made of aluminum and is a type of jewelry,llm_bridge +ring,jewelry,PartOf,0.8,a ring is made of aluminum and is a type of jewelry,llm_bridge +aluminum,bracelet,MadeOf,0.8,a bracelet can be made of aluminum and is a type of jewelry,llm_bridge +bracelet,jewelry,PartOf,0.8,a bracelet can be made of aluminum and is a type of jewelry,llm_bridge +aluminum,pendant,MadeOf,0.8,a pendant can be made of aluminum and is a type of jewelry,llm_bridge +pendant,jewelry,PartOf,0.8,a pendant can be made of aluminum and is a type of jewelry,llm_bridge +aluminum,*aluminum_can**,MadeOf,0.8,"An aluminum can is made of aluminum, and you might find ash inside it after burning its contents.",llm_bridge +*aluminum_can**,ash,AtLocation,0.8,"An aluminum can is made of aluminum, and you might find ash inside it after burning its contents.",llm_bridge +aluminum,*fire**,UsedFor,0.8,"Aluminum can be used in fire-related applications (e.g., fire starters), and ash is made of burnt materials from fire.",llm_bridge +*fire**,ash,MadeOf,0.8,"Aluminum can be used in fire-related applications (e.g., fire starters), and ash is made of burnt materials from fire.",llm_bridge +aluminum,*furnace**,UsedFor,0.8,"A furnace can process aluminum, and it also receives ash as a byproduct of combustion.",llm_bridge +*furnace**,ash,ReceivesAction,0.8,"A furnace can process aluminum, and it also receives ash as a byproduct of combustion.",llm_bridge +aluminum,wheel,MadeOf,0.8,wheels can be made of aluminum and have rubber tires,llm_bridge +wheel,rubber,PartOf,0.8,wheels can be made of aluminum and have rubber tires,llm_bridge +aluminum,tire,UsedFor,0.8,tires use aluminum in their construction and are made of rubber,llm_bridge +tire,rubber,MadeOf,0.8,tires use aluminum in their construction and are made of rubber,llm_bridge +aluminum,car,MadeOf,0.8,cars are made with aluminum and have rubber parts,llm_bridge +car,rubber,HasA,0.8,cars are made with aluminum and have rubber parts,llm_bridge +aluminum,*door**,MadeOf,0.8,Both aluminum and wood can be materials used to make doors.,llm_bridge +*door**,wood,MadeOf,0.8,Both aluminum and wood can be materials used to make doors.,llm_bridge +aluminum,*frame**,MadeOf,0.8,Both aluminum and wood are commonly used to construct frames.,llm_bridge +*frame**,wood,MadeOf,0.8,Both aluminum and wood are commonly used to construct frames.,llm_bridge +aluminum,*boat**,MadeOf,0.8,Boats can be made from either aluminum or wood.,llm_bridge +*boat**,wood,MadeOf,0.8,Boats can be made from either aluminum or wood.,llm_bridge +aluminum,particle,MadeOf,0.8,aluminum particles can be part of dust,llm_bridge +particle,dust,MadeOf,0.8,aluminum particles can be part of dust,llm_bridge +aluminum,powder,MadeOf,0.8,both aluminum and dust can form powders,llm_bridge +powder,dust,MadeOf,0.8,both aluminum and dust can form powders,llm_bridge +aluminum,air,AtLocation,0.8,aluminum dust can be suspended in air,llm_bridge +air,dust,AtLocation,0.8,aluminum dust can be suspended in air,llm_bridge +aluminum,metal,HasProperty,0.8,Both are types of metal.,llm_bridge +metal,mercury,HasProperty,0.8,Both are types of metal.,llm_bridge +aluminum,bottle,MadeOf,0.8,Both can be made into bottles.,llm_bridge +bottle,mercury,MadeOf,0.8,Both can be made into bottles.,llm_bridge +aluminum,bar,MadeOf,0.8,Both can be formed into bars.,llm_bridge +bar,mercury,MadeOf,0.8,Both can be formed into bars.,llm_bridge +aluminum,*can**,MadeOf,0.8,"cans are made of aluminum, and sometimes buried in dirt",llm_bridge +*can**,dirt,MadeOf,0.8,"cans are made of aluminum, and sometimes buried in dirt",llm_bridge +aluminum,*drum**,MadeOf,0.8,"drums are made of aluminum, and dirt is inside drums for disposal",llm_bridge +*drum**,dirt,MadeOf,0.8,"drums are made of aluminum, and dirt is inside drums for disposal",llm_bridge +aluminum,*foil**,MadeOf,0.8,"foil is made of aluminum, and dirt can be wrapped in foil",llm_bridge +*foil**,dirt,MadeOf,0.8,"foil is made of aluminum, and dirt can be wrapped in foil",llm_bridge +bridge_word:_coin,silver,MadeOf,0.8,coins can be made from both aluminum and silver,llm_bridge +aluminum,bridge_word:_wire,MadeOf,0.8,wires can be made from both aluminum and silver,llm_bridge +bridge_word:_wire,silver,MadeOf,0.8,wires can be made from both aluminum and silver,llm_bridge +aluminum,bridge_word:_alloy,MadeOf,0.8,alloys can contain both aluminum and silver,llm_bridge +bridge_word:_alloy,silver,MadeOf,0.8,alloys can contain both aluminum and silver,llm_bridge +potassium,rock,MadeOf,0.8,"Potassium is found as a component in rocks, and rocks are part of the Earth's composition.",llm_bridge +potassium,soil,MadeOf,0.8,"Potassium is found in soil, and soil is a layer of the Earth.",llm_bridge +potassium,mountain,MadeOf,0.8,"Potassium is found in minerals that make up mountains, and mountains are part of the Earth's terrain.",llm_bridge +mountain,earth,PartOf,0.8,"Potassium is found in minerals that make up mountains, and mountains are part of the Earth's terrain.",llm_bridge +potassium,rock,PartOf,0.8,rocks can contain potassium and quartz as components,llm_bridge +potassium,salt,MadeOf,0.8,"potassium is a component of some salts, while quartz is often found near salt deposits",llm_bridge +salt,quartz,LocatedNear,0.8,"potassium is a component of some salts, while quartz is often found near salt deposits",llm_bridge +potassium,glass,MadeOf,0.8,"potassium is used in some glass formulations, and quartz sand is a key ingredient in glass making",llm_bridge +glass,quartz,MadeOf,0.8,"potassium is used in some glass formulations, and quartz sand is a key ingredient in glass making",llm_bridge +potassium,body,HasA,0.8,The body contains both potassium and iron.,llm_bridge +body,iron,HasA,0.8,The body contains both potassium and iron.,llm_bridge +potassium,supplement,UsedFor,0.8,Supplements are used to provide both potassium and iron.,llm_bridge +supplement,iron,UsedFor,0.8,Supplements are used to provide both potassium and iron.,llm_bridge +potassium,nutrient,PartOf,0.8,Both potassium and iron are types of nutrients.,llm_bridge +nutrient,iron,PartOf,0.8,Both potassium and iron are types of nutrients.,llm_bridge +potassium,bridge_word:_ore,MadeOf,0.8,ores contain various minerals including potassium and talc.,llm_bridge +bridge_word:_ore,talc,MadeOf,0.8,ores contain various minerals including potassium and talc.,llm_bridge +potassium,bridge_word:_powder,HasProperty,0.8,"potassium can be in powdered form, and talc is often a powder.",llm_bridge +potassium,bridge_word:_mine,AtLocation,0.8,potassium and talc can both be found in mines.,llm_bridge +bridge_word:_mine,talc,AtLocation,0.8,potassium and talc can both be found in mines.,llm_bridge +potassium,*feldspar**,MadeOf,0.8,feldspar is a mineral containing potassium and is often found in mica schist.,llm_bridge +*feldspar**,mica,MadeOf,0.8,feldspar is a mineral containing potassium and is often found in mica schist.,llm_bridge +potassium,*rock**,PartOf,0.8,"potassium is found in certain rocks, and mica is a component of some rocks.",llm_bridge +*rock**,mica,PartOf,0.8,"potassium is found in certain rocks, and mica is a component of some rocks.",llm_bridge +potassium,*gneiss**,PartOf,0.8,gneiss is a type of rock that can contain potassium-bearing minerals and often contains mica.,llm_bridge +*gneiss**,mica,PartOf,0.8,gneiss is a type of rock that can contain potassium-bearing minerals and often contains mica.,llm_bridge +potassium,bridge_word:_salt,MadeOf,0.8,Salt can be made from potassium and is used for making chalk.,llm_bridge +bridge_word:_salt,chalk,UsedFor,0.8,Salt can be made from potassium and is used for making chalk.,llm_bridge +potassium,bridge_word:_limestone,AtLocation,0.8,Potassium can be found in limestone and limestone is made into chalk.,llm_bridge +bridge_word:_limestone,chalk,MadeOf,0.8,Potassium can be found in limestone and limestone is made into chalk.,llm_bridge +potassium,bridge_word:_element,PartOf,0.8,Potassium is part of some elements and chalk is made of elements.,llm_bridge +bridge_word:_element,chalk,MadeOf,0.8,Potassium is part of some elements and chalk is made of elements.,llm_bridge +salt,ore,MadeOf,0.8,"potassium is a component of some salts, and ore can be processed to produce salts.",llm_bridge +potassium,mine,AtLocation,0.8,"potassium is mined from minerals, and ore is found in mines.",llm_bridge +potassium,stone,MadeOf,0.8,stone is a type of mineral and can be made of potassium compounds,llm_bridge +salt,crystal,MadeOf,0.8,salt is a crystal made from potassium,llm_bridge +potassium,mineral,PartOf,0.8,"potassium is part of some minerals, which can form crystals",llm_bridge +mineral,crystal,MadeOf,0.8,"potassium is part of some minerals, which can form crystals",llm_bridge +potassium,fertilizer,UsedFor,0.8,"potassium is used in fertilizer, which can sometimes form crystalline structures",llm_bridge +fertilizer,crystal,UsedFor,0.8,"potassium is used in fertilizer, which can sometimes form crystalline structures",llm_bridge +saw,wood,UsedFor,0.8,"saw is used for cutting wood, pulley is used in wood projects",llm_bridge +wood,pulley,UsedFor,0.8,"saw is used for cutting wood, pulley is used in wood projects",llm_bridge +saw,rope,HasA,0.8,"saw can have a rope handle, pulley uses rope",llm_bridge +rope,pulley,HasA,0.8,"saw can have a rope handle, pulley uses rope",llm_bridge +saw,workshop,AtLocation,0.8,both tools are commonly found in workshops,llm_bridge +workshop,pulley,AtLocation,0.8,both tools are commonly found in workshops,llm_bridge +saw,wood,MadeOf,0.8,wood is a material used to make both saws and ladders.,llm_bridge +saw,tree,UsedFor,0.8,both saws and ladders can be used to work on or around trees.,llm_bridge +tree,ladder,UsedFor,0.8,both saws and ladders can be used to work on or around trees.,llm_bridge +saw,house,AtLocation,0.8,both saws and ladders are commonly found at houses where construction or maintenance occurs.,llm_bridge +house,ladder,AtLocation,0.8,both saws and ladders are commonly found at houses where construction or maintenance occurs.,llm_bridge +wood,computer,HasPrerequisite,0.8,"saw is used for working with wood, and wood is a common material needed for computer manufacturing or housing.",llm_bridge +saw,metal,MadeOf,0.8,both saws and computers can be made of metal.,llm_bridge +metal,computer,MadeOf,0.8,both saws and computers can be made of metal.,llm_bridge +cut,computer,UsedFor,0.8,"a saw is used to cut, and some computer programs are used for cutting or editing (e.g., cutting files or paths).",llm_bridge +wood,fireplace,MadeOf,0.8,Wood is used to cut with a saw and is commonly made into the material of a fireplace.,llm_bridge +saw,log,UsedFor,0.8,Logs are cut with a saw and are often placed in a fireplace for burning.,llm_bridge +log,fireplace,HasA,0.8,Logs are cut with a saw and are often placed in a fireplace for burning.,llm_bridge +saw,chop,CapableOf,0.8,"A saw can chop wood, and chopping wood is a prerequisite for starting a fire in a fireplace.",llm_bridge +chop,fireplace,HasPrerequisite,0.8,"A saw can chop wood, and chopping wood is a prerequisite for starting a fire in a fireplace.",llm_bridge +wood,spade,MadeOf,0.8,"wood is something a saw is used for cutting, and a spade is often made of wood.",llm_bridge +saw,handle,HasA,0.8,both a saw and a spade have handles.,llm_bridge +handle,spade,HasA,0.8,both a saw and a spade have handles.,llm_bridge +saw,garden,AtLocation,0.8,both a saw and a spade might be found at a garden.,llm_bridge +garden,spade,AtLocation,0.8,both a saw and a spade might be found at a garden.,llm_bridge +handle,lever,HasA,0.8,both a saw and lever have a handle for grip and control,llm_bridge +wood,lever,UsedFor,0.8,both saws and levers are commonly used with wood,llm_bridge +saw,mechanism,PartOf,0.8,both are parts of larger mechanisms in various tools,llm_bridge +mechanism,lever,PartOf,0.8,both are parts of larger mechanisms in various tools,llm_bridge +wood,punch,UsedFor,0.8,Both saws and punches are used to work with wood.,llm_bridge +saw,metal,UsedFor,0.8,Both saws and punches are used to work with metal.,llm_bridge +metal,punch,UsedFor,0.8,Both saws and punches are used to work with metal.,llm_bridge +saw,woodworker,CapableOf,0.8,A woodworker uses both a saw and a punch in their craft.,llm_bridge +woodworker,punch,CapableOf,0.8,A woodworker uses both a saw and a punch in their craft.,llm_bridge +saw,fire,UsedFor,0.8,"saws can be used to make fire, lighters are used to start fires",llm_bridge +wood,lighter,UsedFor,0.8,"saws can be made of wood, lighters are used to burn wood",llm_bridge +saw,match,UsedFor,0.8,"saws can be used to make matches, lighters often have a match-like function",llm_bridge +match,lighter,HasA,0.8,"saws can be used to make matches, lighters often have a match-like function",llm_bridge +saw,workbench,AtLocation,0.8,A workbench is a common place where both a saw and a jack might be found for woodworking or mechanical tasks.,llm_bridge +workbench,jack,AtLocation,0.8,A workbench is a common place where both a saw and a jack might be found for woodworking or mechanical tasks.,llm_bridge +toolbox,jack,AtLocation,0.8,Both a saw and a jack are often stored in a toolbox when not in use.,llm_bridge +tank,*bullet**,UsedFor,0.8,bullets are ammunition for both tanks (via cannons) and pistols,llm_bridge +*bullet**,pistol,PartOf,0.8,bullets are ammunition for both tanks (via cannons) and pistols,llm_bridge +tank,*ammunition**,HasA,0.8,both tanks and pistols contain ammunition,llm_bridge +*ammunition**,pistol,HasA,0.8,both tanks and pistols contain ammunition,llm_bridge +tank,water,UsedFor,0.8,both tanks and pitchers can hold or transport water,llm_bridge +tank,liquid,HasA,0.8,both tanks and pitchers can contain liquids,llm_bridge +tank,pour,ReceivesAction,0.8,both can be poured from,llm_bridge +pour,pitcher,ReceivesAction,0.8,both can be poured from,llm_bridge +liquid,container,HasA,0.8,"explanation: A tank often contains liquid, and a container also holds liquid.",llm_bridge +tank,metal,MadeOf,0.8,explanation: Both tanks (especially weapon tanks) and containers can be made of metal.,llm_bridge +metal,container,MadeOf,0.8,explanation: Both tanks (especially weapon tanks) and containers can be made of metal.,llm_bridge +tank,storage,UsedFor,0.8,"explanation: Tanks are used for storing substances, and containers are used for storage purposes.",llm_bridge +storage,container,UsedFor,0.8,"explanation: Tanks are used for storing substances, and containers are used for storage purposes.",llm_bridge +tank,*water**,UsedFor,0.8,Both tanks and jugs can be used to hold water.,llm_bridge +*water**,jug,UsedFor,0.8,Both tanks and jugs can be used to hold water.,llm_bridge +tank,*liquid**,UsedFor,0.8,Both tanks and jugs are used to store liquids.,llm_bridge +*liquid**,jug,UsedFor,0.8,Both tanks and jugs are used to store liquids.,llm_bridge +tank,*container**,PartOf,0.8,Both tanks and jugs are types of containers.,llm_bridge +*container**,jug,PartOf,0.8,Both tanks and jugs are types of containers.,llm_bridge +water,glass,MadeOf,0.8,water is stored in a tank and can be made of glass,llm_bridge +tank,aquarium,UsedFor,0.8,an aquarium is a type of tank used for fish and can be made of glass,llm_bridge +*ammunition**,mortar,MadeOf,0.8,Both tanks (when used as weapons) and mortars hold or use ammunition.,llm_bridge +tank,*artillery**,PartOf,0.8,Both tanks and mortars are types of artillery.,llm_bridge +*artillery**,mortar,PartOf,0.8,Both tanks and mortars are types of artillery.,llm_bridge +tank,*wall**,PartOf,0.8,Walls can be part of a tank structure (like a tank's hull) and can be made of bricks.,llm_bridge +*wall**,brick,MadeOf,0.8,Walls can be part of a tank structure (like a tank's hull) and can be made of bricks.,llm_bridge +tank,*structure**,PartOf,0.8,Structures can be part of a tank (like its chassis) and can be made of bricks (like a brick wall or building).,llm_bridge +*structure**,brick,MadeOf,0.8,Structures can be part of a tank (like its chassis) and can be made of bricks (like a brick wall or building).,llm_bridge +tank,*hull**,PartOf,0.8,"A hull is part of a tank's structure, and a hull can be made of materials similar to bricks (like reinforced concrete or layered materials).",llm_bridge +*hull**,brick,MadeOf,0.8,"A hull is part of a tank's structure, and a hull can be made of materials similar to bricks (like reinforced concrete or layered materials).",llm_bridge +tank,water,HasA,0.8,Both tanks and bladders can contain water.,llm_bridge +water,bladder,HasA,0.8,Both tanks and bladders can contain water.,llm_bridge +storage,bladder,UsedFor,0.8,Both tanks and bladders are used for storage of substances.,llm_bridge +tank,military,PartOf,0.8,military connects both as items used in warfare,llm_bridge +military,bomb,PartOf,0.8,military connects both as items used in warfare,llm_bridge +tank,explosion,ReceivesAction,0.8,explosion connects as something a tank can receive (if hit) and something a bomb can cause,llm_bridge +comb,gun,UsedFor,0.8,a gun uses a comb (as a tool) and has a trigger,llm_bridge +comb,action,UsedFor,0.8,"comb can be used in an action, trigger can cause an action",llm_bridge +action,trigger,CapableOf,0.8,"comb can be used in an action, trigger can cause an action",llm_bridge +comb,pressure,HasA,0.8,"a comb might apply pressure, a trigger responds to pressure",llm_bridge +pressure,trigger,HasA,0.8,"a comb might apply pressure, a trigger responds to pressure",llm_bridge +comb,hand,UsedFor,0.8,hands use both a comb for styling hair and a punch for making holes,llm_bridge +hand,punch,UsedFor,0.8,hands use both a comb for styling hair and a punch for making holes,llm_bridge +hair,punch,HasPrerequisite,0.8,hair is styled with a comb and needs to be present for a punch (hair punch) to be relevant,llm_bridge +comb,paper,HasPrerequisite,0.8,paper can be combed (as part of a process) and is commonly used with a punch,llm_bridge +paper,punch,UsedFor,0.8,paper can be combed (as part of a process) and is commonly used with a punch,llm_bridge +comb,bridge_word:_wood,UsedFor,0.8,explanation: Both a comb and a planer can be used on wood.,llm_bridge +bridge_word:_wood,planer,UsedFor,0.8,explanation: Both a comb and a planer can be used on wood.,llm_bridge +comb,doctor,UsedFor,0.8,Doctors use combs for personal grooming and have stethoscopes for medical examinations.,llm_bridge +doctor,stethoscope,HasA,0.8,Doctors use combs for personal grooming and have stethoscopes for medical examinations.,llm_bridge +comb,tool,HasA,0.8,Both combs and stethoscopes are types of tools used in different contexts.,llm_bridge +tool,stethoscope,HasA,0.8,Both combs and stethoscopes are types of tools used in different contexts.,llm_bridge +comb,hospital,AtLocation,0.8,"Combs and stethoscopes can both be found in hospitals, though in different contexts.",llm_bridge +hospital,stethoscope,AtLocation,0.8,"Combs and stethoscopes can both be found in hospitals, though in different contexts.",llm_bridge +hair,vise,UsedFor,0.8,"Both tools can be used for handling hair (comb directly, vise indirectly to hold hairpieces)",llm_bridge +comb,flame,UsedFor,0.8,"a comb is used to shape flame, a candle has a flame",llm_bridge +flame,candle,HasA,0.8,"a comb is used to shape flame, a candle has a flame",llm_bridge +comb,stick,PartOf,0.8,"A comb might have a wooden stick handle, and a knife has a handle which might be a stick.",llm_bridge +stick,knife,PartOf,0.8,"A comb might have a wooden stick handle, and a knife has a handle which might be a stick.",llm_bridge +comb,handle,HasA,0.8,"Both a comb and a knife have handles, which are used to hold them.",llm_bridge +handle,knife,HasA,0.8,"Both a comb and a knife have handles, which are used to hold them.",llm_bridge +comb,blade,PartOf,0.8,"A comb has teeth that can be seen as blades, and a knife has a blade.",llm_bridge +comb,bridge_word:_**angle**,UsedFor,0.8,"A comb can be used to create angles in hair styling, and a triangle (musical instrument) has angles as part of its structure.",llm_bridge +bridge_word:_**angle**,triangle,HasA,0.8,"A comb can be used to create angles in hair styling, and a triangle (musical instrument) has angles as part of its structure.",llm_bridge +comb,bridge_word:_**musician**,UsedFor,0.8,"A comb can be used as a makeshift kazoo (musical instrument) by a musician, and a triangle is an instrument played by a musician.",llm_bridge +bridge_word:_**musician**,triangle,UsedFor,0.8,"A comb can be used as a makeshift kazoo (musical instrument) by a musician, and a triangle is an instrument played by a musician.",llm_bridge +comb,bridge_word:_**sound**,UsedFor,0.8,"A comb can be used to make sound (e.g., comb and tissue paper kazoo), and a triangle is known for its sound when struck.",llm_bridge +bridge_word:_**sound**,triangle,HasProperty,0.8,"A comb can be used to make sound (e.g., comb and tissue paper kazoo), and a triangle is known for its sound when struck.",llm_bridge +comb,brush,HasA,0.8,both items can contain or be a type of brush,llm_bridge +brush,toolbox,HasA,0.8,both items can contain or be a type of brush,llm_bridge +comb,screwdriver,LocatedNear,0.8,screwdrivers are often stored in a toolbox and can be near a comb in a set of tools,llm_bridge +screwdriver,toolbox,HasA,0.8,screwdrivers are often stored in a toolbox and can be near a comb in a set of tools,llm_bridge +comb,knife,PartOf,0.8,"a comb can be part of a multi-tool with a knife, and a toolbox often contains knives",llm_bridge +knife,toolbox,HasA,0.8,"a comb can be part of a multi-tool with a knife, and a toolbox often contains knives",llm_bridge +comb,*hair**,UsedFor,0.8,"comb is used for hair, and cage can have hair as part of its contents (e.g., bird cage with a bird's hair)",llm_bridge +*hair**,cage,PartOf,0.8,"comb is used for hair, and cage can have hair as part of its contents (e.g., bird cage with a bird's hair)",llm_bridge +comb,*bird**,ReceivesAction,0.8,"comb can be used to groom a bird, and a cage can contain a bird",llm_bridge +*bird**,cage,HasA,0.8,"comb can be used to groom a bird, and a cage can contain a bird",llm_bridge +comb,*prisoner**,ReceivesAction,0.8,"comb can be used to groom a prisoner, and a cage can contain a prisoner",llm_bridge +*prisoner**,cage,HasA,0.8,"comb can be used to groom a prisoner, and a cage can contain a prisoner",llm_bridge +cart,paddle,UsedFor,0.8,paddles are used to propel both carts (when needed) and kayaks,llm_bridge +paddle,kayak,UsedFor,0.8,paddles are used to propel both carts (when needed) and kayaks,llm_bridge +cart,road,AtLocation,0.8,roads are common locations for carts and planes are often found near roads for access,llm_bridge +road,plane,LocatedNear,0.8,roads are common locations for carts and planes are often found near roads for access,llm_bridge +cart,wheel,PartOf,0.8,wheels are part of a cart and planes have wheels,llm_bridge +wheel,plane,HasA,0.8,wheels are part of a cart and planes have wheels,llm_bridge +cart,transport,UsedFor,0.8,both carts and planes are used for transporting things,llm_bridge +transport,plane,UsedFor,0.8,both carts and planes are used for transporting things,llm_bridge +wheel,unicycle,PartOf,0.8,both vehicles have wheels as key components,llm_bridge +cart,handlebar,PartOf,0.8,both vehicles can have handlebars for steering control,llm_bridge +handlebar,unicycle,PartOf,0.8,both vehicles can have handlebars for steering control,llm_bridge +road,unicycle,AtLocation,0.8,both vehicles are commonly found on roads,llm_bridge +cart,*wheel**,PartOf,0.8,"wheels are part of both carts and boats, used for movement",llm_bridge +*wheel**,boat,PartOf,0.8,"wheels are part of both carts and boats, used for movement",llm_bridge +cart,*road**,AtLocation,0.8,"carts typically travel on roads, and boats can travel on waterways (canals) which are sometimes called ""roads""",llm_bridge +*road**,boat,AtLocation,0.8,"carts typically travel on roads, and boats can travel on waterways (canals) which are sometimes called ""roads""",llm_bridge +cart,*transport**,UsedFor,0.8,both carts and boats are used for transporting goods,llm_bridge +*transport**,boat,UsedFor,0.8,both carts and boats are used for transporting goods,llm_bridge +wheel,wheel,PartOf,0.8,"wheel is a part of the cart, and both cart and wheel are parts of transportation systems.",llm_bridge +wheel,sailboat,PartOf,0.8,wheels are part of both carts and sailboats,llm_bridge +cart,oar,UsedFor,0.8,oars can be used to propel both carts (when needed) and sailboats (as backup),llm_bridge +oar,sailboat,UsedFor,0.8,oars can be used to propel both carts (when needed) and sailboats (as backup),llm_bridge +cart,water,AtLocation,0.8,"carts are often found near or on water (e.g., near docks), while sailboats are on water",llm_bridge +water,sailboat,AtLocation,0.8,"carts are often found near or on water (e.g., near docks), while sailboats are on water",llm_bridge +cart,water,UsedFor,0.8,Water is used for transporting a cart (in specific contexts) and is part of the environment for a canoe.,llm_bridge +water,canoe,PartOf,0.8,Water is used for transporting a cart (in specific contexts) and is part of the environment for a canoe.,llm_bridge +cart,river,UsedFor,0.8,"A cart can be used for transport near a river, and a canoe is typically located near a river.",llm_bridge +river,canoe,LocatedNear,0.8,"A cart can be used for transport near a river, and a canoe is typically located near a river.",llm_bridge +cart,transportation,PartOf,0.8,Both a cart and a canoe are part of the broader concept of transportation.,llm_bridge +transportation,canoe,PartOf,0.8,Both a cart and a canoe are part of the broader concept of transportation.,llm_bridge +cart,wheel,HasA,0.8,both carts and vans have wheels,llm_bridge +wheel,van,HasA,0.8,both carts and vans have wheels,llm_bridge +cart,load,UsedFor,0.8,both carts and vans are used to carry loads,llm_bridge +load,van,UsedFor,0.8,both carts and vans are used to carry loads,llm_bridge +road,van,AtLocation,0.8,both carts and vans can be found on roads,llm_bridge +cart,cargo,HasA,0.8,carts and ships both transport cargo,llm_bridge +cargo,ship,HasA,0.8,carts and ships both transport cargo,llm_bridge +cart,port,AtLocation,0.8,carts and ships are both found at ports,llm_bridge +port,ship,AtLocation,0.8,carts and ships are both found at ports,llm_bridge +wheel,coach,PartOf,0.8,wheels are components of both carts and coaches,llm_bridge +cart,horse,UsedFor,0.8,horses can pull both carts and coaches,llm_bridge +horse,coach,UsedFor,0.8,horses can pull both carts and coaches,llm_bridge +road,coach,AtLocation,0.8,carts and coaches are both found on roads,llm_bridge +pizza,fruit,MadeOf,0.8,"An orange is a type of fruit, and pizza can have fruit toppings.",llm_bridge +fruit,orange,PartOf,0.8,"An orange is a type of fruit, and pizza can have fruit toppings.",llm_bridge +pizza,food,PartOf,0.8,Both pizza and oranges are types of food.,llm_bridge +food,orange,PartOf,0.8,Both pizza and oranges are types of food.,llm_bridge +pizza,juice,MadeOf,0.8,"Pizza can have juice in certain toppings (like tomato sauce), and oranges are known for their juice.",llm_bridge +tomato,corn,PartOf,0.8,tomato is an ingredient in pizza and is related to corn as both are related to tomatoes in dishes,llm_bridge +pizza,topping,HasA,0.8,"topping is added to pizza, corn can be used as a topping",llm_bridge +topping,corn,UsedFor,0.8,"topping is added to pizza, corn can be used as a topping",llm_bridge +pizza,salsa,UsedFor,0.8,salsa can be used with pizza and is made of corn,llm_bridge +salsa,corn,MadeOf,0.8,salsa can be used with pizza and is made of corn,llm_bridge +pizza,sugar,MadeOf,0.8,"sugar is an ingredient in both pizza (in dough, sauce) and candy.",llm_bridge +pizza,sugar,HasA,0.8,"sugar is an ingredient in pizza (sauce, crust) and candy.",llm_bridge +sugar,candy,HasA,0.8,"sugar is an ingredient in pizza (sauce, crust) and candy.",llm_bridge +pizza,sugar,HasPrerequisite,0.8,"sugar is needed to make pizza (dough, sauce) and candy.",llm_bridge +sugar,candy,HasPrerequisite,0.8,"sugar is needed to make pizza (dough, sauce) and candy.",llm_bridge +pizza,meat,HasA,0.8,meat is an ingredient in pizza and a component of turkey,llm_bridge +meat,turkey,MadeOf,0.8,meat is an ingredient in pizza and a component of turkey,llm_bridge +pizza,sandwich,MadeOf,0.8,both pizza and turkey can be ingredients in a sandwich,llm_bridge +sandwich,turkey,MadeOf,0.8,both pizza and turkey can be ingredients in a sandwich,llm_bridge +restaurant,turkey,AtLocation,0.8,both pizza and turkey are commonly found in restaurants,llm_bridge +pizza,topping,PartOf,0.8,topping connects as a component of pizza and can be made with sugar.,llm_bridge +topping,sugar,UsedFor,0.8,topping connects as a component of pizza and can be made with sugar.,llm_bridge +pizza,frosting,ReceivesAction,0.8,frosting can be added to pizza in some variations and is made with sugar.,llm_bridge +frosting,sugar,UsedFor,0.8,frosting can be added to pizza in some variations and is made with sugar.,llm_bridge +pizza,ingredient,HasA,0.8,ingredient connects as both pizza and sugar can be part of a recipe.,llm_bridge +ingredient,sugar,HasA,0.8,ingredient connects as both pizza and sugar can be part of a recipe.,llm_bridge +pizza,meal,HasA,0.8,meal connects both as items within a larger dining context,llm_bridge +meal,lobster,HasA,0.8,meal connects both as items within a larger dining context,llm_bridge +pizza,restaurant,ReceivesAction,0.8,restaurant connects both as foods that are ordered or served,llm_bridge +restaurant,lobster,ReceivesAction,0.8,restaurant connects both as foods that are ordered or served,llm_bridge +pizza,oil,MadeOf,0.8,pizza and chips can both be cooked or topped with oil.,llm_bridge +oil,chips,MadeOf,0.8,pizza and chips can both be cooked or topped with oil.,llm_bridge +pizza,salt,HasA,0.8,both pizza and chips often contain or are served with salt.,llm_bridge +pizza,*bread**,MadeOf,0.8,bread is a base for pizza crust and can be made with eggs.,llm_bridge +*bread**,egg,MadeOf,0.8,bread is a base for pizza crust and can be made with eggs.,llm_bridge +pizza,*omelette**,ReceivesAction,0.8,an omelette can be served on pizza and is made from eggs.,llm_bridge +*omelette**,egg,MadeOf,0.8,an omelette can be served on pizza and is made from eggs.,llm_bridge +pizza,*omelette**,UsedFor,0.8,"pizza can be used as a base for omelette toppings, and omelette is made of eggs.",llm_bridge +topping,cheese,HasA,0.8,"cheese can be a topping on pizza, and cheese itself has salt as a topping.",llm_bridge +pizza,slice,PartOf,0.8,"a slice of pizza often has cheese on it, and cheese can be sliced.",llm_bridge +slice,cheese,HasA,0.8,"a slice of pizza often has cheese on it, and cheese can be sliced.",llm_bridge +sugar,chocolate,MadeOf,0.8,sugar is an ingredient in both pizza (as a dough ingredient) and chocolate.,llm_bridge +pizza,dessert,ReceivesAction,0.8,"pizza can sometimes be eaten as a dessert (sweet toppings), and chocolate is commonly used for desserts.",llm_bridge +dessert,chocolate,UsedFor,0.8,"pizza can sometimes be eaten as a dessert (sweet toppings), and chocolate is commonly used for desserts.",llm_bridge +pizza,sweet,HasProperty,0.8,sweet can describe both a type of pizza (sweet toppings) and chocolate (sweet flavor).,llm_bridge +sweet,chocolate,HasProperty,0.8,sweet can describe both a type of pizza (sweet toppings) and chocolate (sweet flavor).,llm_bridge +synthesizer,music,UsedFor,0.8,both are used to create music,llm_bridge +music,flute,UsedFor,0.8,both are used to create music,llm_bridge +synthesizer,sound,HasA,0.8,both are sources of sound,llm_bridge +sound,flute,HasA,0.8,both are sources of sound,llm_bridge +synthesizer,concert,AtLocation,0.8,both may be played in a concert,llm_bridge +concert,flute,AtLocation,0.8,both may be played in a concert,llm_bridge +synthesizer,sound,UsedFor,0.8,sound is produced by a synthesizer and is a property detected by calipers in some contexts,llm_bridge +sound,caliper,HasProperty,0.8,sound is produced by a synthesizer and is a property detected by calipers in some contexts,llm_bridge +synthesizer,measurement,UsedFor,0.8,measurement is performed using a synthesizer (in sound contexts) and directly by a caliper (in physical contexts),llm_bridge +synthesizer,string,HasA,0.8,"Both instruments can have strings, which are used to produce sound.",llm_bridge +string,lyre,HasA,0.8,"Both instruments can have strings, which are used to produce sound.",llm_bridge +synthesizer,player,CapableOf,0.8,Both instruments can be played by a musician.,llm_bridge +synthesizer,sound,MadeOf,0.8,sound is made by synthesizer and bass (instrument) produces sound,llm_bridge +sound,bass,HasProperty,0.8,sound is made by synthesizer and bass (instrument) produces sound,llm_bridge +synthesizer,musician,UsedFor,0.8,musician uses synthesizer and musician uses bass (instrument),llm_bridge +musician,bass,UsedFor,0.8,musician uses synthesizer and musician uses bass (instrument),llm_bridge +synthesizer,note,CapableOf,0.8,synthesizer is capable of producing notes and bass (instrument) is capable of producing notes,llm_bridge +note,bass,CapableOf,0.8,synthesizer is capable of producing notes and bass (instrument) is capable of producing notes,llm_bridge +sound,drum,UsedFor,0.8,Both instruments are used to produce sound.,llm_bridge +synthesizer,beat,UsedFor,0.8,"A synthesizer can create beats, and a drum is part of a beat.",llm_bridge +beat,drum,PartOf,0.8,"A synthesizer can create beats, and a drum is part of a beat.",llm_bridge +synthesizer,music,HasA,0.8,both are instruments used to create music,llm_bridge +music,harmonica,HasA,0.8,both are instruments used to create music,llm_bridge +synthesizer,sound,CapableOf,0.8,both instruments can produce sound,llm_bridge +sound,harmonica,CapableOf,0.8,both instruments can produce sound,llm_bridge +synthesizer,player,UsedFor,0.8,both are used by a player to create music,llm_bridge +player,harmonica,UsedFor,0.8,both are used by a player to create music,llm_bridge +player,clarinet,UsedFor,0.8,both can be played by a player,llm_bridge +concert,clarinet,AtLocation,0.8,both can be found in a concert,llm_bridge +synthesizer,bridge_word:_music,UsedFor,0.8,explanation: music connects the two instruments by their shared function of producing musical sounds.,llm_bridge +synthesizer,bridge_word:_musician,CapableOf,0.8,explanation: musician connects the two instruments as something that a person can play.,llm_bridge +synthesizer,bridge_word:_orchestra,AtLocation,0.8,explanation: orchestra connects the two instruments as commonly found in the same musical setting.,llm_bridge +bridge_word:_orchestra,cello,AtLocation,0.8,explanation: orchestra connects the two instruments as commonly found in the same musical setting.,llm_bridge +music,accordion,UsedFor,0.8,Both synthesizers and accordions are used for creating music.,llm_bridge +synthesizer,keyboard,PartOf,0.8,"Synthesizers often have keyboards, while keyboards can be used to play accordions.",llm_bridge +keyboard,accordion,UsedFor,0.8,"Synthesizers often have keyboards, while keyboards can be used to play accordions.",llm_bridge +concert,accordion,AtLocation,0.8,Both synthesizers and accordions can be found at concerts.,llm_bridge +sound,micrometer,UsedFor,0.8,Both instruments can be used to measure or manipulate sound or physical dimensions.,llm_bridge +synthesizer,precision,HasProperty,0.8,Both instruments require or exhibit precision in their operation.,llm_bridge +precision,micrometer,HasProperty,0.8,Both instruments require or exhibit precision in their operation.,llm_bridge +recorder,music,UsedFor,0.8,music connects both instruments as they are used for creating it,llm_bridge +recorder,band,HasA,0.8,band connects both instruments as they are found in a musical group,llm_bridge +band,drum,HasA,0.8,band connects both instruments as they are found in a musical group,llm_bridge +recorder,concert,AtLocation,0.8,concert connects both instruments as they can both be found in a performance setting,llm_bridge +concert,drum,AtLocation,0.8,concert connects both instruments as they can both be found in a performance setting,llm_bridge +recorder,bridge_word:_music,UsedFor,0.8,explanation: Both recorder and xylophone are used to make music.,llm_bridge +recorder,musician,CapableOf,0.8,a musician can play both instruments.,llm_bridge +musician,guitar,CapableOf,0.8,a musician can play both instruments.,llm_bridge +recorder,string,HasA,0.8,"both instruments may have strings (though recorder has a reed, not strings).",llm_bridge +string,guitar,HasA,0.8,"both instruments may have strings (though recorder has a reed, not strings).",llm_bridge +recorder,player,CapableOf,0.8,a player can play both a recorder and a harmonica.,llm_bridge +recorder,sound,UsedFor,0.8,both instruments are used to create sound.,llm_bridge +recorder,player,UsedFor,0.8,player connects the user of both instruments,llm_bridge +player,piano,UsedFor,0.8,player connects the user of both instruments,llm_bridge +recorder,orchestra,AtLocation,0.8,orchestra connects the setting where both instruments are found,llm_bridge +recorder,plucking,CapableOf,0.8,"plucking connects the instruments as they can both be plucked (though recorder is primarily blown, some techniques involve plucking)",llm_bridge +plucking,mandolin,CapableOf,0.8,"plucking connects the instruments as they can both be plucked (though recorder is primarily blown, some techniques involve plucking)",llm_bridge +recorder,musician,UsedFor,0.8,a musician plays both a recorder and a viola,llm_bridge +musician,viola,UsedFor,0.8,a musician plays both a recorder and a viola,llm_bridge +music,viola,UsedFor,0.8,both instruments are used to make music,llm_bridge +orchestra,viola,AtLocation,0.8,both instruments can be found in an orchestra,llm_bridge +recorder,*music**,UsedFor,0.8,music is played on a recorder and scales are part of music theory/practice.,llm_bridge +*music**,scale,UsedFor,0.8,music is played on a recorder and scales are part of music theory/practice.,llm_bridge +recorder,*practice**,UsedFor,0.8,practice involves playing a recorder and understanding scales.,llm_bridge +*practice**,scale,UsedFor,0.8,practice involves playing a recorder and understanding scales.,llm_bridge +recorder,*lesson**,UsedFor,0.8,lessons use a recorder and teach scales.,llm_bridge +*lesson**,scale,UsedFor,0.8,lessons use a recorder and teach scales.,llm_bridge +recorder,flute,UsedFor,0.8,Both are wind instruments used for music,llm_bridge +flute,bass,UsedFor,0.8,Both are wind instruments used for music,llm_bridge +recorder,violin,UsedFor,0.8,Both are string instruments used for music,llm_bridge +violin,bass,UsedFor,0.8,Both are string instruments used for music,llm_bridge +recorder,guitar,UsedFor,0.8,Both are musical instruments used for music,llm_bridge +guitar,bass,UsedFor,0.8,Both are musical instruments used for music,llm_bridge +caliper,,UsedFor,0.8,explanation: A musician uses a caliper (for measurement or construction) and a trumpet (for playing music).,llm_bridge +,trumpet,UsedFor,0.8,explanation: A musician uses a caliper (for measurement or construction) and a trumpet (for playing music).,llm_bridge +caliper,,AtLocation,0.8,"explanation: A caliper may be used in a workshop for precision tasks, and a trumpet might be made or repaired in a workshop.",llm_bridge +,trumpet,AtLocation,0.8,"explanation: A caliper may be used in a workshop for precision tasks, and a trumpet might be made or repaired in a workshop.",llm_bridge +caliper,,PartOf,0.8,"explanation: Both a caliper and a trumpet are types of instruments (measuring and musical, respectively).",llm_bridge +,trumpet,PartOf,0.8,"explanation: Both a caliper and a trumpet are types of instruments (measuring and musical, respectively).",llm_bridge +caliper,*measuring**,UsedFor,0.8,"Calipers are used for measuring, and bass (the fish) can be measured for length.",llm_bridge +*measuring**,bass,HasProperty,0.8,"Calipers are used for measuring, and bass (the fish) can be measured for length.",llm_bridge +caliper,*wood**,MadeOf,0.8,"Calipers can be made of wood, and some bass instruments are made of wood.",llm_bridge +*wood**,bass,MadeOf,0.8,"Calipers can be made of wood, and some bass instruments are made of wood.",llm_bridge +caliper,bridge_word:_brake,PartOf,0.8,brake systems often include both calipers (part of disc brakes) and drums (part of drum brakes) in different designs.,llm_bridge +bridge_word:_brake,drum,PartOf,0.8,brake systems often include both calipers (part of disc brakes) and drums (part of drum brakes) in different designs.,llm_bridge +caliper,measurement,UsedFor,0.8,measurement connects the purpose of both instruments,llm_bridge +caliper,wood,MadeOf,0.8,wood is a common material for both instruments.,llm_bridge +caliper,music,UsedFor,0.8,both instruments are used for creating music.,llm_bridge +caliper,string,HasA,0.8,both instruments contain strings as a key component.,llm_bridge +caliper,measure,UsedFor,0.8,measure connects how both tools are used to quantify dimensions or weight,llm_bridge +measure,scale,UsedFor,0.8,measure connects how both tools are used to quantify dimensions or weight,llm_bridge +caliper,tool,PartOf,0.8,tool connects both as instruments used for measuring,llm_bridge +tool,scale,PartOf,0.8,tool connects both as instruments used for measuring,llm_bridge +caliper,*bridge_word:_measurement,UsedFor,0.8,"explanation: caliper is used for measurement, and organ (musical) is used for measurement of time/tempo (metronomic sense)**",llm_bridge +*bridge_word:_measurement,organ,UsedFor,0.8,"explanation: caliper is used for measurement, and organ (musical) is used for measurement of time/tempo (metronomic sense)**",llm_bridge +caliper,*bridge_word:_tool,PartOf,0.8,"explanation: caliper is a type of measuring tool, and organ can refer to a tool-like instrument in the body**",llm_bridge +*bridge_word:_tool,organ,PartOf,0.8,"explanation: caliper is a type of measuring tool, and organ can refer to a tool-like instrument in the body**",llm_bridge +caliper,*bridge_word:_music,UsedFor,0.8,"explanation: calipers can be used for musical instrument crafting, and organ is a musical instrument**",llm_bridge +*bridge_word:_music,organ,UsedFor,0.8,"explanation: calipers can be used for musical instrument crafting, and organ is a musical instrument**",llm_bridge +caliper,hammer,UsedFor,0.8,A hammer can be used to calibrate a caliper and strike a xylophone.,llm_bridge +hammer,xylophone,UsedFor,0.8,A hammer can be used to calibrate a caliper and strike a xylophone.,llm_bridge +caliper,musician,CapableOf,0.8,A musician can use a caliper for instrument maintenance and play a xylophone.,llm_bridge +musician,xylophone,CapableOf,0.8,A musician can use a caliper for instrument maintenance and play a xylophone.,llm_bridge +wood,xylophone,MadeOf,0.8,Both calipers and xylophones can be made of wood.,llm_bridge +wood,flute,MadeOf,0.8,wood connects the material composition of both instruments,llm_bridge +caliper,musician,UsedFor,0.8,musician connects the user or performer of both instruments,llm_bridge +musician,flute,UsedFor,0.8,musician connects the user or performer of both instruments,llm_bridge +caliper,accuracy,HasProperty,0.8,both tools are known for their accuracy in measurements,llm_bridge +accuracy,micrometer,HasProperty,0.8,both tools are known for their accuracy in measurements,llm_bridge +caliper,workshop,AtLocation,0.8,both tools are commonly found in a workshop setting,llm_bridge +workshop,micrometer,AtLocation,0.8,both tools are commonly found in a workshop setting,llm_bridge +moped,motor,HasA,0.8,motor is a component of a moped and part of an engine system,llm_bridge +motor,engine,PartOf,0.8,motor is a component of a moped and part of an engine system,llm_bridge +moped,wheel,HasA,0.8,both a moped and engine (as part of vehicle) use wheels for movement,llm_bridge +wheel,engine,HasA,0.8,both a moped and engine (as part of vehicle) use wheels for movement,llm_bridge +moped,fuel,UsedFor,0.8,fuel powers both the moped and its engine,llm_bridge +fuel,engine,UsedFor,0.8,fuel powers both the moped and its engine,llm_bridge +moped,*gas_tank**,HasA,0.8,Both vehicles typically store fuel in a tank.,llm_bridge +*gas_tank**,car,HasA,0.8,Both vehicles typically store fuel in a tank.,llm_bridge +moped,*engine**,HasA,0.8,Both vehicles are powered by internal combustion engines.,llm_bridge +*engine**,car,HasA,0.8,Both vehicles are powered by internal combustion engines.,llm_bridge +moped,*wheel**,HasA,0.8,Both vehicles have wheels for movement.,llm_bridge +*wheel**,car,HasA,0.8,Both vehicles have wheels for movement.,llm_bridge +wheel,unicycle,HasA,0.8,both vehicles have wheels,llm_bridge +moped,rider,UsedFor,0.8,both are used by a rider,llm_bridge +rider,unicycle,UsedFor,0.8,both are used by a rider,llm_bridge +moped,pavement,AtLocation,0.8,both are typically found on pavement,llm_bridge +pavement,unicycle,AtLocation,0.8,both are typically found on pavement,llm_bridge +moped,road,AtLocation,0.8,roads are where vehicles travel,llm_bridge +road,airplane,AtLocation,0.8,roads are where vehicles travel,llm_bridge +wheel,airplane,HasA,0.8,wheels are parts of vehicles,llm_bridge +moped,transportation,UsedFor,0.8,transportation is the purpose of both vehicles,llm_bridge +transportation,airplane,UsedFor,0.8,transportation is the purpose of both vehicles,llm_bridge +road,plane,AtLocation,0.8,road is a common location for both vehicles,llm_bridge +moped,engine,HasA,0.8,both vehicles typically have engines,llm_bridge +engine,plane,HasA,0.8,both vehicles typically have engines,llm_bridge +moped,*bridge**,AtLocation,0.8,"A moped can be located on a bridge, and a bridge is a part of a ship.",llm_bridge +*bridge**,ship,PartOf,0.8,"A moped can be located on a bridge, and a bridge is a part of a ship.",llm_bridge +moped,*road**,AtLocation,0.8,"A moped is often found on a road, and a ship is located near a road (e.g., port).",llm_bridge +*road**,ship,LocatedNear,0.8,"A moped is often found on a road, and a ship is located near a road (e.g., port).",llm_bridge +moped,*port**,LocatedNear,0.8,"A moped is found near a port (where ships are), and a ship is located at a port.",llm_bridge +*port**,ship,AtLocation,0.8,"A moped is found near a port (where ships are), and a ship is located at a port.",llm_bridge +moped,garage,AtLocation,0.8,both vehicles can be stored in a garage,llm_bridge +garage,van,AtLocation,0.8,both vehicles can be stored in a garage,llm_bridge +engine,van,HasA,0.8,both vehicles contain an engine,llm_bridge +moped,window,HasA,0.8,a moped can have a window made of glass,llm_bridge +moped,mirror,HasA,0.8,a moped can have a mirror made of glass,llm_bridge +mirror,glass,MadeOf,0.8,a moped can have a mirror made of glass,llm_bridge +moped,windshield,HasA,0.8,a moped can have a windshield made of glass,llm_bridge +windshield,glass,MadeOf,0.8,a moped can have a windshield made of glass,llm_bridge +motor,boat,HasA,0.8,Both a moped and a boat typically have a motor to power them.,llm_bridge +moped,water,UsedFor,0.8,"A moped is used for traveling on water (e.g., amphibious moped), and a boat is located on water.",llm_bridge +water,boat,AtLocation,0.8,"A moped is used for traveling on water (e.g., amphibious moped), and a boat is located on water.",llm_bridge +road,canoe,AtLocation,0.8,roads are common locations for both mopeds and canoes (especially when transported),llm_bridge +moped,water,ReceivesAction,0.8,"water is where canoes operate, and mopeds can be driven near or on water (especially through puddles)",llm_bridge +moped,transport,UsedFor,0.8,both mopeds and canoes are used for transportation,llm_bridge +transport,canoe,UsedFor,0.8,both mopeds and canoes are used for transportation,llm_bridge +ceramic,*vase**,MadeOf,0.8,A ceramic vase may require tar for sealing or reinforcement during production.,llm_bridge +*vase**,tar,HasPrerequisite,0.8,A ceramic vase may require tar for sealing or reinforcement during production.,llm_bridge +ceramic,*container**,PartOf,0.8,A ceramic container could be made with tar as an insulating or waterproofing component.,llm_bridge +*container**,tar,MadeOf,0.8,A ceramic container could be made with tar as an insulating or waterproofing component.,llm_bridge +ceramic,*adhesive**,HasA,0.8,An adhesive might contain ceramic particles and be made using tar as a binding agent.,llm_bridge +*adhesive**,tar,MadeOf,0.8,An adhesive might contain ceramic particles and be made using tar as a binding agent.,llm_bridge +ceramic,rope,MadeOf,0.8,rope can be made from ceramic fibers or plant fibers,llm_bridge +rope,fiber,MadeOf,0.8,rope can be made from ceramic fibers or plant fibers,llm_bridge +ceramic,thread,MadeOf,0.8,thread can be made from ceramic or plant fibers,llm_bridge +thread,fiber,MadeOf,0.8,thread can be made from ceramic or plant fibers,llm_bridge +ceramic,fabric,MadeOf,0.8,fabric can be made from ceramic fibers or plant fibers,llm_bridge +fabric,fiber,MadeOf,0.8,fabric can be made from ceramic fibers or plant fibers,llm_bridge +ceramic,*pottery**,MadeOf,0.8,pottery connects ceramic material to the vase object as part of a larger category of items made from clay.,llm_bridge +*pottery**,vase,PartOf,0.8,pottery connects ceramic material to the vase object as part of a larger category of items made from clay.,llm_bridge +ceramic,*clay**,MadeOf,0.8,clay connects ceramic material to the vase's primary material composition.,llm_bridge +*clay**,vase,MadeOf,0.8,clay connects ceramic material to the vase's primary material composition.,llm_bridge +ceramic,*mold**,UsedFor,0.8,mold connects ceramic forming process to the vase's shaping method.,llm_bridge +*mold**,vase,UsedFor,0.8,mold connects ceramic forming process to the vase's shaping method.,llm_bridge +ceramic,pottery,MadeOf,0.8,"pottery is made of ceramic, and soot can be used to create pottery (as a pigment or decorative element)",llm_bridge +pottery,soot,UsedFor,0.8,"pottery is made of ceramic, and soot can be used to create pottery (as a pigment or decorative element)",llm_bridge +ceramic,kiln,PartOf,0.8,"kiln is part of ceramic production, and kilns can produce soot",llm_bridge +kiln,soot,UsedFor,0.8,"kiln is part of ceramic production, and kilns can produce soot",llm_bridge +ceramic,smoke,HasPrerequisite,0.8,"smoke is a prerequisite for making soot, and smoke can be trapped in ceramic pottery",llm_bridge +smoke,soot,MadeOf,0.8,"smoke is a prerequisite for making soot, and smoke can be trapped in ceramic pottery",llm_bridge +pottery,fur,Desires,0.8,"pottery is made of ceramic, animals (which have fur) desire pottery for shelter",llm_bridge +ceramic,pot,MadeOf,0.8,"a pot is made of ceramic, animals (which have fur) desire pots for shelter",llm_bridge +pot,fur,Desires,0.8,"a pot is made of ceramic, animals (which have fur) desire pots for shelter",llm_bridge +ceramic,rug,MadeOf,0.8,"rugs can be made of ceramic tiles, and rugs can also be made with fur",llm_bridge +rug,fur,MadeOf,0.8,"rugs can be made of ceramic tiles, and rugs can also be made with fur",llm_bridge +ceramic,vase,MadeOf,0.8,vase connects material to a part of a barrel,llm_bridge +vase,barrel,PartOf,0.8,vase connects material to a part of a barrel,llm_bridge +pot,barrel,PartOf,0.8,pot connects material to a part of a barrel,llm_bridge +ceramic,tank,MadeOf,0.8,tank connects material to a part of a barrel,llm_bridge +tank,barrel,PartOf,0.8,tank connects material to a part of a barrel,llm_bridge +ceramic,bowl,MadeOf,0.8,bowls are often made from ceramic or glass,llm_bridge +ceramic,window,Desires,0.8,"windows are made of glass, and ceramics are sometimes used in window frames",llm_bridge +ceramic,*vase**,PartOf,0.8,"a ceramic can be part of a vase, and a tank can be part of a larger structure, like a tank shell or military tank.",llm_bridge +*vase**,tank,PartOf,0.8,"a ceramic can be part of a vase, and a tank can be part of a larger structure, like a tank shell or military tank.",llm_bridge +ceramic,*shard**,PartOf,0.8,"a ceramic can break into shards, and a tank can be damaged into shards (in the case of a destroyed tank).",llm_bridge +*shard**,tank,PartOf,0.8,"a ceramic can break into shards, and a tank can be damaged into shards (in the case of a destroyed tank).",llm_bridge +ceramic,*water**,UsedFor,0.8,"ceramic can be used to store water, and a tank can hold water.",llm_bridge +*water**,tank,UsedFor,0.8,"ceramic can be used to store water, and a tank can hold water.",llm_bridge +vase,string,HasA,0.8,vases are often made of ceramic and may have strings for decoration or handles.,llm_bridge +pot,string,HasA,0.8,pots are made of ceramic and can have strings used for hanging or handles.,llm_bridge +bowl,string,HasA,0.8,bowls can be made of ceramic and may have strings for handles or decoration.,llm_bridge +*vase**,decanter,PartOf,0.8,"A vase can be made of ceramic, and a decanter is a type of vase-like container.",llm_bridge +ceramic,*pitcher**,MadeOf,0.8,"A pitcher can be made of ceramic, and a decanter is similar to a pitcher in function.",llm_bridge +*pitcher**,decanter,PartOf,0.8,"A pitcher can be made of ceramic, and a decanter is similar to a pitcher in function.",llm_bridge +ceramic,*jar**,MadeOf,0.8,"A jar can be made of ceramic, and a decanter is a specialized type of jar.",llm_bridge +*jar**,decanter,PartOf,0.8,"A jar can be made of ceramic, and a decanter is a specialized type of jar.",llm_bridge +butter,*knife**,UsedFor,0.8,A knife is used for spreading butter and dressing salad.,llm_bridge +*knife**,salad,UsedFor,0.8,A knife is used for spreading butter and dressing salad.,llm_bridge +butter,*plate**,AtLocation,0.8,Butter and salad can both be served on a plate.,llm_bridge +*plate**,salad,AtLocation,0.8,Butter and salad can both be served on a plate.,llm_bridge +butter,*fork**,UsedFor,0.8,A fork can be used to spread butter and to eat salad.,llm_bridge +*fork**,salad,UsedFor,0.8,A fork can be used to spread butter and to eat salad.,llm_bridge +butter,*bread**,UsedFor,0.8,bread is made with butter (spread) and eggs (ingredient).,llm_bridge +*bread**,egg,UsedFor,0.8,bread is made with butter (spread) and eggs (ingredient).,llm_bridge +butter,*pancake**,UsedFor,0.8,pancakes often use butter for flavor and eggs as a binder in the batter.,llm_bridge +*pancake**,egg,UsedFor,0.8,pancakes often use butter for flavor and eggs as a binder in the batter.,llm_bridge +butter,*oatmeal**,UsedFor,0.8,oatmeal can be topped with butter and may use eggs in certain recipes for texture.,llm_bridge +*oatmeal**,egg,UsedFor,0.8,oatmeal can be topped with butter and may use eggs in certain recipes for texture.,llm_bridge +butter,*cocoa_butter**,MadeOf,0.8,cocoa butter is a component of both butter and chocolate,llm_bridge +*cocoa_butter**,chocolate,MadeOf,0.8,cocoa butter is a component of both butter and chocolate,llm_bridge +butter,*candy**,UsedFor,0.8,butter and chocolate are used to make candy,llm_bridge +*candy**,chocolate,UsedFor,0.8,butter and chocolate are used to make candy,llm_bridge +butter,*dessert**,UsedFor,0.8,butter and chocolate are used to make desserts,llm_bridge +*dessert**,chocolate,UsedFor,0.8,butter and chocolate are used to make desserts,llm_bridge +butter,bread,UsedFor,0.8,bread is often used with both butter and ham in sandwiches,llm_bridge +bread,ham,UsedFor,0.8,bread is often used with both butter and ham in sandwiches,llm_bridge +butter,knife,UsedFor,0.8,a knife is used to spread butter and cut ham,llm_bridge +knife,ham,UsedFor,0.8,a knife is used to spread butter and cut ham,llm_bridge +butter,plate,AtLocation,0.8,both butter and ham can be placed on a plate for serving,llm_bridge +butter,salad,HasA,0.8,"salad includes butter (e.g., butter lettuce) and vegetables.",llm_bridge +butter,oil,HasA,0.8,"butter contains oil, and some vegetables are made of oil.",llm_bridge +oil,vegetable,MadeOf,0.8,"butter contains oil, and some vegetables are made of oil.",llm_bridge +butter,dip,UsedFor,0.8,"butter can be used as a dip, and vegetables can be used as dips.",llm_bridge +dip,vegetable,UsedFor,0.8,"butter can be used as a dip, and vegetables can be used as dips.",llm_bridge +knife,chicken,UsedFor,0.8,A knife is used to spread butter and cut chicken.,llm_bridge +butter,pan,UsedFor,0.8,A pan is used to melt butter and cook chicken.,llm_bridge +pan,chicken,UsedFor,0.8,A pan is used to melt butter and cook chicken.,llm_bridge +butter,sandwich,MadeOf,0.8,"butter is an ingredient in a sandwich, and a sandwich is a type of food.",llm_bridge +sandwich,food,MadeOf,0.8,"butter is an ingredient in a sandwich, and a sandwich is a type of food.",llm_bridge +butter,spread,UsedFor,0.8,"butter can be used as a spread, and spread can be part of food.",llm_bridge +spread,food,MadeOf,0.8,"butter can be used as a spread, and spread can be part of food.",llm_bridge +butter,ingredient,HasA,0.8,"butter is an ingredient, and food often contains ingredients.",llm_bridge +ingredient,food,HasA,0.8,"butter is an ingredient, and food often contains ingredients.",llm_bridge +butter,flavor,HasProperty,0.8,"flavor is a property of both butter and cornbread, enhancing their taste.",llm_bridge +flavor,cornbread,HasProperty,0.8,"flavor is a property of both butter and cornbread, enhancing their taste.",llm_bridge +butter,spread,HasA,0.8,"butter can be a spread, and cornbread can be used to spread butter.",llm_bridge +spread,cornbread,UsedFor,0.8,"butter can be a spread, and cornbread can be used to spread butter.",llm_bridge +butter,ingredient,UsedFor,0.8,"butter is used as an ingredient in some cornbread recipes, and cornbread is made of ingredients.",llm_bridge +ingredient,cornbread,HasA,0.8,"butter is used as an ingredient in some cornbread recipes, and cornbread is made of ingredients.",llm_bridge +butter,fork,UsedFor,0.8,fork is used for spreading butter and eating spaghetti,llm_bridge +butter,meal,HasA,0.8,a meal can include both butter and spaghetti,llm_bridge +meal,spaghetti,HasA,0.8,a meal can include both butter and spaghetti,llm_bridge +butter,sandwich,HasA,0.8,bridge word is a food item that can contain both butter and lettuce,llm_bridge +butter,salad,UsedFor,0.8,"bridge word is a food dish that uses lettuce and may include butter (e.g., in dressing)",llm_bridge +truck,*wheel**,PartOf,0.8,Both trucks and carts have wheels as part of their structure.,llm_bridge +*wheel**,cart,PartOf,0.8,Both trucks and carts have wheels as part of their structure.,llm_bridge +truck,*load**,UsedFor,0.8,Both trucks and carts are used for transporting or carrying loads.,llm_bridge +*load**,cart,UsedFor,0.8,Both trucks and carts are used for transporting or carrying loads.,llm_bridge +truck,*road**,AtLocation,0.8,Both trucks and carts are commonly found or operate on roads.,llm_bridge +*road**,cart,AtLocation,0.8,Both trucks and carts are commonly found or operate on roads.,llm_bridge +truck,*bridge:_water,UsedFor,0.8,"trucks can be used on water (e.g., amphibious trucks), and boats are located in water.**",llm_bridge +*bridge:_water,boat,AtLocation,0.8,"trucks can be used on water (e.g., amphibious trucks), and boats are located in water.**",llm_bridge +truck,*bridge:_engine,PartOf,0.8,both trucks and boats typically have engines as a part.**,llm_bridge +*bridge:_engine,boat,HasA,0.8,both trucks and boats typically have engines as a part.**,llm_bridge +truck,*bridge:_transport,UsedFor,0.8,both trucks and boats are used for transporting goods or people.**,llm_bridge +*bridge:_transport,boat,UsedFor,0.8,both trucks and boats are used for transporting goods or people.**,llm_bridge +truck,truck,HasA,0.8,An engine is a part of a truck.,llm_bridge +truck,engine,PartOf,0.8,An engine is a part of a truck.,llm_bridge +engine,engine,UsedFor,0.8,An engine is part of a truck and used for its operation.,llm_bridge +truck,fuel,HasA,0.8,Fuel is a part of a truck and is used by an engine.,llm_bridge +truck,water,UsedFor,0.8,water is used for transporting canoes and is a location where canoes are found,llm_bridge +truck,transport,UsedFor,0.8,transport is the purpose for both trucks and canoes,llm_bridge +truck,window,HasA,0.8,window is a part of a truck and can be made of glass,llm_bridge +truck,bottle,UsedFor,0.8,bottles are used for transporting goods (like in a truck) and can be made of glass,llm_bridge +truck,mirror,HasA,0.8,trucks often have mirrors and mirrors can be made of glass,llm_bridge +truck,*tractor-trailer**,PartOf,0.8,A tractor-trailer is part of both a truck (as a trailer) and a tractor (as the pulling unit).,llm_bridge +*tractor-trailer**,tractor,PartOf,0.8,A tractor-trailer is part of both a truck (as a trailer) and a tractor (as the pulling unit).,llm_bridge +truck,*wheel**,HasA,0.8,Both trucks and tractors have wheels as part of their structure.,llm_bridge +*wheel**,tractor,HasA,0.8,Both trucks and tractors have wheels as part of their structure.,llm_bridge +truck,*farmer**,UsedFor,0.8,Both trucks and tractors are used by farmers for different tasks.,llm_bridge +*farmer**,tractor,UsedFor,0.8,Both trucks and tractors are used by farmers for different tasks.,llm_bridge +truck,wheel,PartOf,0.8,wheels are components of both vehicles,llm_bridge +truck,driver,UsedFor,0.8,drivers operate both vehicles,llm_bridge +driver,coach,UsedFor,0.8,drivers operate both vehicles,llm_bridge +*road**,kayak,AtLocation,0.8,"roads are where trucks travel, and kayaks can be transported on roads to reach water.",llm_bridge +truck,*transport**,UsedFor,0.8,"trucks are used to transport items, including kayaks, which are also used for transport (on water).",llm_bridge +*transport**,kayak,UsedFor,0.8,"trucks are used to transport items, including kayaks, which are also used for transport (on water).",llm_bridge +truck,*cargo**,HasA,0.8,"trucks can carry cargo like kayaks, and a kayak can be considered cargo when being transported.",llm_bridge +*cargo**,kayak,PartOf,0.8,"trucks can carry cargo like kayaks, and a kayak can be considered cargo when being transported.",llm_bridge +*road**,airplane,AtLocation,0.8,"Both trucks and airplanes (when on the ground) are located at roads or near them, especially at airports.",llm_bridge +truck,*airport**,AtLocation,0.8,"Trucks are often found at airports for transportation and logistics, and airplanes are located at airports.",llm_bridge +*airport**,airplane,AtLocation,0.8,"Trucks are often found at airports for transportation and logistics, and airplanes are located at airports.",llm_bridge +truck,wheel,HasA,0.8,wheels are components of both vehicles,llm_bridge +truck,seat,HasA,0.8,seats are components of both vehicles,llm_bridge +seat,unicycle,HasA,0.8,seats are components of both vehicles,llm_bridge +truck,tire,HasA,0.8,tires are components used for movement in both vehicles,llm_bridge +tire,unicycle,HasA,0.8,tires are components used for movement in both vehicles,llm_bridge +ginger,spice,HasA,0.8,Both ginger and basil are types of spice.,llm_bridge +ginger,herb,PartOf,0.8,"Ginger root is part of the ginger plant, and basil leaf is part of the basil plant.",llm_bridge +ginger,plant,PartOf,0.8,"Ginger is a part of the ginger plant, and basil is a part of the basil plant.",llm_bridge +ginger,"""tea""",UsedFor,0.8,both ginger and cardamom can be used to flavor tea,llm_bridge +"""tea""",cardamom,UsedFor,0.8,both ginger and cardamom can be used to flavor tea,llm_bridge +ginger,"""spice_blend""",PartOf,0.8,both ginger and cardamom are common components of spice blends,llm_bridge +"""spice_blend""",cardamom,PartOf,0.8,both ginger and cardamom are common components of spice blends,llm_bridge +ginger,"""curry""",UsedFor,0.8,both ginger and cardamom are ingredients in curry dishes,llm_bridge +"""curry""",cardamom,UsedFor,0.8,both ginger and cardamom are ingredients in curry dishes,llm_bridge +ginger,curry,HasA,0.8,both ginger and turmeric are common ingredients in curry blends,llm_bridge +curry,turmeric,HasA,0.8,both ginger and turmeric are common ingredients in curry blends,llm_bridge +ginger,spice_rack,AtLocation,0.8,both ginger and turmeric are spices that might be stored together in a spice rack,llm_bridge +ginger,curry_powder,HasA,0.8,curry powder often contains both ginger and turmeric as ingredients,llm_bridge +curry_powder,turmeric,HasA,0.8,curry powder often contains both ginger and turmeric as ingredients,llm_bridge +ginger,*spice**,MadeOf,0.8,both ginger and paprika are types of spices.,llm_bridge +*spice**,paprika,MadeOf,0.8,both ginger and paprika are types of spices.,llm_bridge +ginger,*seasoning**,PartOf,0.8,both ginger and paprika are types of seasonings used in cooking.,llm_bridge +*seasoning**,paprika,PartOf,0.8,both ginger and paprika are types of seasonings used in cooking.,llm_bridge +ginger,*dish**,UsedFor,0.8,both ginger and paprika can be used as ingredients in various dishes.,llm_bridge +*dish**,paprika,UsedFor,0.8,both ginger and paprika can be used as ingredients in various dishes.,llm_bridge +curry,cumin,HasA,0.8,curry is a spice blend that often contains both ginger and cumin.,llm_bridge +ginger,soup,UsedFor,0.8,both ginger and cumin are used as ingredients in soup.,llm_bridge +ginger,*tea**,MadeOf,0.8,tea can be made with ginger and sugar as ingredients,llm_bridge +*tea**,sugar,MadeOf,0.8,tea can be made with ginger and sugar as ingredients,llm_bridge +ginger,*cake**,MadeOf,0.8,cakes often contain both ginger and sugar as ingredients,llm_bridge +*cake**,sugar,MadeOf,0.8,cakes often contain both ginger and sugar as ingredients,llm_bridge +ginger,*cookie**,MadeOf,0.8,cookies can be made with ginger and sugar as ingredients,llm_bridge +*cookie**,sugar,MadeOf,0.8,cookies can be made with ginger and sugar as ingredients,llm_bridge +ginger,spice,Desires,0.8,Both ginger and thyme are types of spices desired in cooking.,llm_bridge +spice,thyme,Desires,0.8,Both ginger and thyme are types of spices desired in cooking.,llm_bridge +plant,thyme,PartOf,0.8,Both ginger and thyme are parts of plants.,llm_bridge +ginger,flavor,Desires,0.8,Both ginger and thyme contribute to flavor.,llm_bridge +flavor,thyme,Desires,0.8,Both ginger and thyme contribute to flavor.,llm_bridge +ginger,cuisine,UsedFor,0.8,both are spices used in cooking,llm_bridge +cuisine,coriander,UsedFor,0.8,both are spices used in cooking,llm_bridge +ginger,dish,HasA,0.8,both can be ingredients in a single dish,llm_bridge +dish,coriander,HasA,0.8,both can be ingredients in a single dish,llm_bridge +ginger,dish,UsedFor,0.8,ginger and salt can both be used in dishes,llm_bridge +dish,salt,UsedFor,0.8,ginger and salt can both be used in dishes,llm_bridge +ginger,food,UsedFor,0.8,both ginger and salt are used in cooking food,llm_bridge +dessert,plate,AtLocation,0.8,a plate is where both can be served,llm_bridge +dessert,spoon,UsedFor,0.8,a spoon can be used to eat either,llm_bridge +spoon,salad,UsedFor,0.8,a spoon can be used to eat either,llm_bridge +dessert,meal,PartOf,0.8,both are parts of a larger meal,llm_bridge +meal,salad,PartOf,0.8,both are parts of a larger meal,llm_bridge +dessert,sugar,MadeOf,0.8,sugar is a component of many desserts and can be found in animal fat.,llm_bridge +sugar,fat,HasA,0.8,sugar is a component of many desserts and can be found in animal fat.,llm_bridge +dessert,calorie,HasA,0.8,"desserts often contain calories, and fat is high in calories.",llm_bridge +calorie,fat,HasA,0.8,"desserts often contain calories, and fat is high in calories.",llm_bridge +dessert,cake,PartOf,0.8,"cake is a type of dessert, and fat can be an ingredient in cake.",llm_bridge +cake,fat,HasA,0.8,"cake is a type of dessert, and fat can be an ingredient in cake.",llm_bridge +dessert,fork,UsedFor,0.8,both can be eaten with a fork,llm_bridge +dessert,meal,HasA,0.8,both desserts and hams are part of a meal,llm_bridge +meal,ham,HasA,0.8,both desserts and hams are part of a meal,llm_bridge +dessert,restaurant,AtLocation,0.8,desserts and hams are both found in restaurants,llm_bridge +restaurant,ham,AtLocation,0.8,desserts and hams are both found in restaurants,llm_bridge +dessert,plate,HasA,0.8,both desserts and hams are served on plates,llm_bridge +plate,ham,HasA,0.8,both desserts and hams are served on plates,llm_bridge +dessert,*apple**,MadeOf,0.8,Apple is a common ingredient in desserts and can be part of a slug's diet.,llm_bridge +*apple**,slug,HasA,0.8,Apple is a common ingredient in desserts and can be part of a slug's diet.,llm_bridge +dessert,*fruit**,MadeOf,0.8,"Fruit is often used in desserts, and slugs may eat fruit as part of their diet.",llm_bridge +*fruit**,slug,HasA,0.8,"Fruit is often used in desserts, and slugs may eat fruit as part of their diet.",llm_bridge +dessert,*soil**,AtLocation,0.8,"Soil is where slugs live, and desserts might be served at a location with soil (e.g., a garden party).",llm_bridge +*soil**,slug,HasA,0.8,"Soil is where slugs live, and desserts might be served at a location with soil (e.g., a garden party).",llm_bridge +dessert,bridge_word:_plate,AtLocation,0.8,explanation: Both dessert and gnocchi are served on plates.,llm_bridge +bridge_word:_plate,gnocchi,AtLocation,0.8,explanation: Both dessert and gnocchi are served on plates.,llm_bridge +dessert,bridge_word:_flour,MadeOf,0.8,explanation: Both dessert and gnocchi are made from flour.,llm_bridge +bridge_word:_flour,gnocchi,MadeOf,0.8,explanation: Both dessert and gnocchi are made from flour.,llm_bridge +dessert,bridge_word:_spoon,UsedFor,0.8,explanation: Both dessert and gnocchi can be eaten with a spoon.,llm_bridge +bridge_word:_spoon,gnocchi,UsedFor,0.8,explanation: Both dessert and gnocchi can be eaten with a spoon.,llm_bridge +dessert,platter,UsedFor,0.8,a platter can be used to serve both desserts and lobsters,llm_bridge +platter,lobster,UsedFor,0.8,a platter can be used to serve both desserts and lobsters,llm_bridge +dessert,plate,UsedFor,0.8,a plate can be used to serve both desserts and lobsters,llm_bridge +plate,lobster,UsedFor,0.8,a plate can be used to serve both desserts and lobsters,llm_bridge +restaurant,hamburger,AtLocation,0.8,restaurants serve both desserts and hamburgers.,llm_bridge +meal,hamburger,PartOf,0.8,desserts and hamburgers can both be part of a meal.,llm_bridge +dessert,menu,AtLocation,0.8,both desserts and hamburgers are typically found on a restaurant menu.,llm_bridge +menu,hamburger,AtLocation,0.8,both desserts and hamburgers are typically found on a restaurant menu.,llm_bridge +dessert,*cake**,HasA,0.8,"cake is a type of dessert, and it is made of food ingredients.",llm_bridge +*cake**,food,MadeOf,0.8,"cake is a type of dessert, and it is made of food ingredients.",llm_bridge +dessert,*sweet**,HasProperty,0.8,"desserts are typically sweet, and sweet foods are a category of food.",llm_bridge +*sweet**,food,HasProperty,0.8,"desserts are typically sweet, and sweet foods are a category of food.",llm_bridge +dessert,*sugar**,HasA,0.8,"sugar is a common ingredient in desserts, and it is part of the composition of food.",llm_bridge +*sugar**,food,MadeOf,0.8,"sugar is a common ingredient in desserts, and it is part of the composition of food.",llm_bridge +dessert,glass,UsedFor,0.8,a glass is used for serving both dessert and wine,llm_bridge +glass,wine,UsedFor,0.8,a glass is used for serving both dessert and wine,llm_bridge +plate,wine,LocatedNear,0.8,"a plate is used for serving dessert, and wine is often located near dessert on a dining table",llm_bridge +spoon,wine,LocatedNear,0.8,"a spoon is used for eating dessert, and wine is often located near dessert on a dining table",llm_bridge +accordion,bulging_bellows,HasProperty,0.8,Accordion has a distinctive accordion-like bellows mechanism that expands and contracts,llm_property +accordion,metal_reeds_inside,HasProperty,0.8,"It uses vibrating metal reeds to produce sound, unlike most others which use strings or membranes",llm_property +accordion,bellows-driven_sound,HasProperty,0.8,"Sound is produced by manipulating bellows, unlike keyboard or struck/plucked instruments",llm_property +accordion,right-hand_keyboard,HasProperty,0.8,Most accordions have a small keyboard on the right side for melody notes,llm_property +accordion,left-hand_buttons/keys,HasProperty,0.8,The left side typically has buttons or keys for bass notes and chords,llm_property +accordion,rectangular_shape,HasProperty,0.8,It has a distinct rectangular or trapezoidal shape due to its bellows structure,llm_property +accordion,carrying_straps,HasProperty,0.8,"Often has shoulder straps for carrying, not typical for most other instruments",llm_property +accordion,"pleasant,_nasal_tone",HasProperty,0.8,"The sound often has a characteristic bright, slightly nasal quality",llm_property +acorn,cap_shaped_top,HasProperty,0.8,acorn has a distinct cup-shaped cap at its base,llm_property +acorn,oval_shape,HasProperty,0.8,"acorn is typically oval, unlike rounder pits",llm_property +acorn,dull_brown_color,HasProperty,0.8,"acorn has a muted brown color, not shiny like some nuts",llm_property +acorn,rough_texture,HasProperty,0.8,"acorn surface is often rough, not smooth like many seeds",llm_property +acorn,tannic_taste,HasProperty,0.8,acorn has a bitter astringent taste due to tannins,llm_property +agate,banded_patterns,HasProperty,0.8,Often displays distinct concentric or parallel bands of color,llm_property +agate,translucent_quality,HasProperty,0.8,"Can be partially see-through, unlike opaque stones",llm_property +agate,varied_colors,HasProperty,0.8,"Typically shows multiple colors (red, white, blue, etc.) in patterns",llm_property +agate,smooth_texture,HasProperty,0.8,Often polished or naturally smooth due to its formation process,llm_property +agate,hardness_(mohs_7),HasProperty,0.8,Resists scratching better than many other softer stones like alabaster,llm_property +airplane,property,HasProperty,0.8,explanation,llm_property +airplane,has_wings,HasProperty,0.8,airplanes are the only ones in this list with wings,llm_property +airplane,flies_in_the_sky,HasProperty,0.8,airplanes are the only ones in this list that fly,llm_property +airplane,has_a_tail,HasProperty,0.8,airplanes have a distinctive tail structure for stability,llm_property +airplane,has_propellers_or_jet_engines,HasProperty,0.8,"airplanes use these for propulsion, unlike most others",llm_property +airplane,"has_a_long,_streamlined_body",HasProperty,0.8,airplanes have this shape for aerodynamic efficiency,llm_property +airplane,"makes_a_loud,_high-pitched_engine_sound",HasProperty,0.8,unique engine noise compared to others,llm_property +airplane,made_of_lightweight_metal_or_composite_materials,HasProperty,0.8,airplanes are typically built from these materials for flight,llm_property +alabaster,white_color,HasProperty,0.8,"Alabaster is typically white or translucent, unlike many other stones which are colored or patterned.",llm_property +alabaster,softness,HasProperty,0.8,"Alabaster is relatively soft and can be easily carved, unlike harder stones like flint or granite.",llm_property +alabaster,translucency,HasProperty,0.8,"Many alabasters can be translucent or semi-transparent, a trait not common in other opaque stones like flint or marble.",llm_property +alabaster,fine-grain,HasProperty,0.8,"Alabaster has a very fine and uniform texture, unlike the coarser or layered textures of stones like concrete or meteorite.",llm_property +alabaster,smooth_surface,HasProperty,0.8,"Alabaster can be polished to a smooth, silky surface, unlike the rougher surfaces of pebbles or flint.",llm_property +alabaster,light_weight,HasProperty,0.8,"Alabaster is less dense than many other stones, making it feel lighter for its size.",llm_property +alabaster,no_visible_crystals,HasProperty,0.8,"Unlike agate or garnet, alabaster does not have visible crystalline structures.",llm_property +albatross,wings,HasProperty,0.8,"extremely long and narrow, often longer than the bird's body length, used for dynamic soaring",llm_property +albatross,flight,HasProperty,0.8,"capable of gliding for long distances without flapping, often riding wind currents high above water",llm_property +albatross,beak,HasProperty,0.8,"large, hooked, specialized for catching squid and other marine prey",llm_property +albatross,feet,HasProperty,0.8,"webbed, adapted for swimming and diving in the ocean",llm_property +albatross,habitat,HasProperty,0.8,"primarily pelagic, spends most of its life flying over the open ocean",llm_property +aluminum,malleable,HasProperty,0.8,Can be easily shaped into thin sheets without breaking,llm_property +aluminum,lightweight,HasProperty,0.8,Significantly less dense than most other metals in the list,llm_property +aluminum,silvery-white_appearance,HasProperty,0.8,"Shiny, metallic color that is distinct from other metals like platinum or bronze",llm_property +aluminum,non-magnetic,HasProperty,0.8,"Unlike iron or some other metals, does not attract magnets",llm_property +aluminum,good_conductor_of_electricity,HasProperty,0.8,"Efficiently carries electrical current, unlike wood or cork",llm_property +anchor,shape,HasProperty,0.8,"It typically has a distinct, hook-like shape designed to grab onto seabed surfaces",llm_property +anchor,size,HasProperty,0.8,It is generally very large and heavy compared to raw metals or small metal objects,llm_property +anchor,functionality,HasProperty,0.8,"It is used specifically to hold ships in place, unlike raw or decorative metals",llm_property +anchor,texture,HasProperty,0.8,"Often has a rough, worn texture from constant contact with seabeds and chains",llm_property +anchor,material_composition,HasProperty,0.8,"Usually made of cast iron or steel, distinct from the pure or alloyed metals listed",llm_property +anise,smell,HasProperty,0.8,"Distinctively sweet and licorice-like aroma, unlike the pungent or earthy smells of others",llm_property +anise,taste,HasProperty,0.8,"Strong, sweet flavor reminiscent of licorice or fennel, unlike the spicy, warm, or peppery tastes of others",llm_property +anise,appearance,HasProperty,0.8,"Small, oval seeds that are greenish-brown, often slightly curved, different from the large pods or ground powders of others",llm_property +anise,texture,HasProperty,0.8,"Seeds are hard and dry, unlike the soft, powdery, or fibrous textures of some other spices",llm_property +anise,small_size,HasProperty,0.8,Seeds are noticeably small compared to large seeds or pods like cardamom or cumin,llm_property +ant,"two_large,_bent_antennae",HasProperty,0.8,Used for sensing touch and chemical signals,llm_property +ant,"three_distinct_body_segments_(head,_thorax,_abdomen)",HasProperty,0.8,Unlike many insects that may have fused or less distinct segments,llm_property +ant,"strong,_curved_mandibles",HasProperty,0.8,"Used for cutting, carrying food, and defense",llm_property +ant,often_has_a_narrow_waist_(petiole)_between_thorax_and_abdomen,HasProperty,0.8,A defining feature of ants within the order Hymenoptera,llm_property +ant,typically_lives_in_organized_colonies,HasProperty,0.8,Societal behavior is a key characteristic of ants,llm_property +ant,often_makes_rustling_or_clicking_sounds,HasProperty,0.8,Some species can stridulate (rub body parts together) to communicate,llm_property +ant,"often_has_a_distinct,_sometimes_pungent_chemical_smell",HasProperty,0.8,Their trail pheromones and other exudates are recognizable,llm_property +ant,some_species_can_sting_or_spray_formic_acid,HasProperty,0.8,Unique defensive mechanisms not found in all other listed insects,llm_property +anvil,"flat,_upright_surface",HasProperty,0.8,"It has a large, flat top for shaping metal, unlike most other tools",llm_property +anvil,heavy_metal_construction,HasProperty,0.8,It's typically made of dense metal to provide a stable striking surface,llm_property +anvil,"thick,_solid_base",HasProperty,0.8,The bottom is heavy and wide to keep it stable when struck,llm_property +anvil,pointed_horn_on_one_end,HasProperty,0.8,Many anvils have a tapered horn for shaping curves,llm_property +anvil,"smooth,_hard_surface",HasProperty,0.8,The striking face is polished to prevent damaging metal workpieces,llm_property +anvil,used_for_striking/hammering,HasProperty,0.8,Its primary function is receiving hammer blows during metalworking,llm_property +apartment,smaller_interior_space,HasProperty,0.8,generally smaller than a house or mansion but larger than a single room,llm_property +apartment,divided_into_rooms,HasProperty,0.8,"has distinct rooms like bedrooms, kitchen, living area",llm_property +apartment,has_windows_for_light,HasProperty,0.8,windows are present to illuminate rooms,llm_property +apartment,has_doors_for_access,HasProperty,0.8,has exterior doors for entry/exit,llm_property +apartment,has_a_kitchen_area,HasProperty,0.8,includes a space for cooking food,llm_property +apartment,has_a_bathroom,HasProperty,0.8,"includes a room with toilet, sink, and shower/bath",llm_property +aquarium,transparent_glass_walls,HasProperty,0.8,Made of clear glass to allow viewing of aquatic life inside,llm_property +aquarium,water_filled,HasProperty,0.8,"Contains water as its primary medium, unlike most other containers",llm_property +aquarium,large_size,HasProperty,0.8,Typically much larger in volume compared to most other containers,llm_property +aquarium,"flat,_box-like_shape",HasProperty,0.8,Often has a rectangular or box-like shape for optimal viewing,llm_property +aquarium,contains_moving_creatures,HasProperty,0.8,Usually houses live fish or other aquatic animals,llm_property +aquarium,has_holes_or_filters,HasProperty,0.8,Often includes openings for filters or air circulation,llm_property +ash,property,HasProperty,0.8,brief explanation,llm_property +ash,-------------------------------------------------,HasProperty,0.8,ash is -------------------------------------------------,llm_property +ash,light_gray_color,HasProperty,0.8,"Ash is typically a light gray, while others like cork or clay can be darker or more varied in color.",llm_property +ash,fine_texture,HasProperty,0.8,"Ash consists of very fine, powdery particles, unlike the coarser textures of cork, rope, or straw.",llm_property +ash,odor_of_burnt_material,HasProperty,0.8,"Ash has a distinct smell of burning, unlike the natural smells of straw, cork, or clay.",llm_property +ash,crumbling_consistency,HasProperty,0.8,"Ash easily crumbles or breaks apart when touched, unlike the solid consistency of cork, rubber, or aluminum.",llm_property +ash,ash_forms_from_fire,HasProperty,0.8,"Ash is specifically the residue left after something burns, unlike materials like ice or clay which form through different processes.",llm_property +ash,does_not_burn_easily,HasProperty,0.8,"Ash is already burnt material, so it doesn't catch fire easily, unlike fuel or straw.",llm_property +asparagus,shape,HasProperty,0.8,"Stalks that are thin, long, and tapered at the end, unlike the generally round or leafy shapes of others",llm_property +asparagus,texture_(touch),HasProperty,0.8,"Stalks are firm, often slightly woody at the base, contrasting with the soft leaves of lettuce or the smooth skin of eggplant",llm_property +asparagus,color,HasProperty,0.8,"Typically bright green, though can be white or purple, standing out from the purple/white of eggplant or the red/purple of beet",llm_property +asparagus,texture_(taste),HasProperty,0.8,"Crisp and slightly woody taste, distinct from the watery crispness of cucumber or the soft, creamy texture of eggplant",llm_property +asparagus,smell,HasProperty,0.8,"Cooked, it has a unique, slightly sulfurous odor, not found in the milder aromas of lettuce or corn",llm_property +auk,"short,_thick_neck",HasProperty,0.8,"Unlike wrens and flycatchers, auks have a stout neck.",llm_property +auk,webbed_feet,HasProperty,0.8,"Unlike perching birds like starlings and weavers, auks have feet adapted for swimming.",llm_property +auk,good_diver,HasProperty,0.8,"Unlike most listed birds that forage on land, auks are adept at diving for fish.",llm_property +auk,compact_body_shape,HasProperty,0.8,"Unlike long-bodied birds like sapsuckers or cockatiels, auks have a rounded, stocky build.",llm_property +auk,often_black_and_white_plumage,HasProperty,0.8,"Unlike the varied, often colorful plumage of lovebirds, cotingas, or weavers, auks often feature stark black and white colors.",llm_property +auk,nocturnal_behavior_(some_species),HasProperty,0.8,"Unlike diurnal birds like wrens or starlings, some auk species are more active at night.",llm_property +avocet,upper_body_color,HasProperty,0.8,"Brightly patterned black-and-white upper body, unlike most other birds which are solid or differently patterned",llm_property +avocet,lower_body_color,HasProperty,0.8,"Clean white belly and chest, sharply contrasting with the upper body",llm_property +avocet,beak_shape,HasProperty,0.8,"Long, thin, and distinctly upturned bill, unlike the straight or hooked bills of most other birds",llm_property +avocet,leg_appearance,HasProperty,0.8,"Long, slender legs, often bright blue or gray in color, not typical of most other listed birds",llm_property +avocet,wading_behavior,HasProperty,0.8,"Frequently found wading in shallow water, using its upturned bill to forage, a behavior not common among the other listed birds",llm_property +avocet,flight_style,HasProperty,0.8,"Distinctive, buoyant, and often erratic flight pattern, different from the direct, fast, or soaring flights of most other listed birds",llm_property +avocet,call_sound,HasProperty,0.8,"Produces a unique, clear piping call, which differs from the songs or calls of most other listed birds",llm_property +awl,pointed_tip,HasProperty,0.8,"Has a sharp, pointed end for piercing or making holes",llm_property +awl,small_size,HasProperty,0.8,Generally small and handheld compared to many other tools,llm_property +awl,metal_body,HasProperty,0.8,Typically made of metal for durability and sharpness,llm_property +awl,sharp_edge,HasProperty,0.8,The tip is finely honed to cut through materials easily,llm_property +awl,handheld,HasProperty,0.8,Designed to be held and manipulated by hand,llm_property +awl,used_for_piercing,HasProperty,0.8,Specifically made to pierce materials like leather or wood,llm_property +awl,lightweight,HasProperty,0.8,Weighs less than heavy-duty tools like a plow,llm_property +axe,wooden_handle,HasProperty,0.8,most axes have a wooden handle for grip and leverage,llm_property +axe,steel_head,HasProperty,0.8,the axe head is typically made of steel for durability,llm_property +axe,blunt_back_edge,HasProperty,0.8,"opposite the blade, used for hammering",llm_property +axe,sharp_blade_edge,HasProperty,0.8,the cutting edge designed to split wood,llm_property +axe,weighted_head,HasProperty,0.8,heavy for effective chopping and splitting,llm_property +axe,broad_blade_width,HasProperty,0.8,wider blade than most other cutting tools,llm_property +azalea,colorful_blooms,HasProperty,0.8,"azaleas have bright, showy flowers, unlike many other plants which have less vibrant or smaller flowers",llm_property +azalea,small_leaves,HasProperty,0.8,"azalea leaves are typically small and narrow, unlike larger-leaved plants like cotton",llm_property +azalea,spring_flowering,HasProperty,0.8,"azaleas typically bloom in spring, a distinct blooming season compared to others like cattails that bloom in summer",llm_property +azalea,deciduous_or_semi-deciduous,HasProperty,0.8,"many azaleas lose their leaves seasonally, unlike evergreens like rhododendron or vines",llm_property +bamboo,hollow_stems,HasProperty,0.8,"The stems (culms) of bamboo are hollow, unlike most other plants in the list which have solid stems.",llm_property +bamboo,jointed_structure,HasProperty,0.8,"Bamboo stems have distinct segments (nodes) that look like joints, separating it from smooth-stemmed plants like juniper or cannabis.",llm_property +bamboo,fast_growth_rate,HasProperty,0.8,"Bamboo grows exceptionally quickly, much faster than other listed plants, sometimes growing several feet in a day.",llm_property +bamboo,woody_texture,HasProperty,0.8,"Bamboo is considered a woody grass, giving it a hard, durable texture unlike softer plants like peppermint or hay.",llm_property +bamboo,tall_height,HasProperty,0.8,"Bamboo typically grows to be much taller than most other grasses and herbs on the list, often reaching tree-like heights.",llm_property +banana,shape,HasProperty,0.8,It has a distinctive curved shape.,llm_property +banana,color,HasProperty,0.8,It is typically bright yellow when ripe.,llm_property +banana,texture,HasProperty,0.8,It's soft and mushy when ripe.,llm_property +banana,smell,HasProperty,0.8,"It has a sweet, distinct tropical fragrance.",llm_property +banana,taste,HasProperty,0.8,"It has a sweet, mild flavor that's not usually found in other listed foods.",llm_property +banana,skin,HasProperty,0.8,It has a peel that is easy to remove by hand.,llm_property +banana,stem,HasProperty,0.8,It has a tough stem at one end.,llm_property +barbet,colorful_feathers,HasProperty,0.8,"Barbet have bright, often green, yellow, and red plumage, unlike the more muted colors of many other listed birds.",llm_property +barbet,"thick,_bee-like_bill",HasProperty,0.8,"Their bills are short, stout, and chisel-like, suitable for drilling holes, unlike the varied bills of others.",llm_property +barbet,noticeable_crest,HasProperty,0.8,"Many barbets have a distinct crest on their head, which is less common in the listed birds.",llm_property +barbet,loud_drumming_sound,HasProperty,0.8,"Barbets are known for loud, resonant drumming sounds made with their bills, a unique vocalization trait.",llm_property +barbet,"dry,_crinkled_skin",HasProperty,0.8,"The skin of barbets, especially around the face, often has a unique dry, wrinkled appearance.",llm_property +barbet,fruit-eating_diet,HasProperty,0.8,"Primarily frugivorous, barbets have a diet focused on fruit, distinguishing them from carnivorous or insectivorous birds like the booby or pelican.",llm_property +barbet,tree-holed_nesting,HasProperty,0.8,"They nest in holes they excavate in trees, a specific nesting behavior not common in the listed birds.",llm_property +bark,rough_texture,HasProperty,0.8,"Often has a rough, uneven surface compared to smoother plant parts",llm_property +bark,brown_color,HasProperty,0.8,"Typically has various shades of brown, unlike green leaves or other parts",llm_property +bark,tough_feel,HasProperty,0.8,It's generally tough and resilient when touched,llm_property +bark,outer_layer_appearance,HasProperty,0.8,It forms the outer protective layer of a tree or woody plant,llm_property +bark,crisp_sound_when_cracked,HasProperty,0.8,"When broken or peeled, it often makes a crisp, snapping sound",llm_property +bark,peeling_ability,HasProperty,0.8,Can often be peeled or stripped from the tree in layers,llm_property +bark,distinctive_odor_when_burned,HasProperty,0.8,"Burning bark produces a unique, smoky wood smell",llm_property +barn,wooden_framework,HasProperty,0.8,"Barns are often built with wooden frames, unlike many of the other listed buildings which may use concrete or steel.",llm_property +barn,grand_roof,HasProperty,0.8,"Barns typically have a large, prominent roof, often gambrel or gable style, which is larger than the roofs of structures like greenhouses or coops.",llm_property +barn,slanted_ceiling,HasProperty,0.8,"The interior of a barn often has a slanted ceiling due to the high roof design, which is less common in places like malls or schools.",llm_property +barn,square_shape,HasProperty,0.8,"Barns are often square or rectangular in shape, whereas buildings like galleries or gyms might be more varied in form.",llm_property +barn,hay_loft,HasProperty,0.8,"Many barns feature a hay loft or upper storage level, a feature not found in buildings like kitchens or apartments.",llm_property +barn,open_doorways,HasProperty,0.8,"Barns typically have large, open doorways designed for moving livestock and equipment, unlike the smaller or more controlled entrances of a stable or coop.",llm_property +barometer,houses_a_glass_tube,HasProperty,0.8,"Barometer contains a sealed tube, unlike most other instruments",llm_property +barometer,contains_mercury_or_alcohol,HasProperty,0.8,"Barometers use liquid to measure pressure, not found in most other instruments",llm_property +barometer,displays_atmospheric_pressure,HasProperty,0.8,"Purpose is to measure air pressure, not sound or weight",llm_property +barometer,can_predict_weather_changes,HasProperty,0.8,"Used for weather forecasting, not making music or measuring",llm_property +barometer,glass_face_with_markings,HasProperty,0.8,"Has a clear dial with pressure readings, unlike musical instrument fronts",llm_property +barracuda,shape,HasProperty,0.8,"Has an elongated, cylindrical body similar to an eel, but distinctly larger and more muscular",llm_property +barracuda,coloration,HasProperty,0.8,Typically has a silver-gray body with darker stripes along its sides,llm_property +barracuda,jaws,HasProperty,0.8,"Possesses extremely large, sharp, pointed teeth that are visible even when the mouth is closed",llm_property +barracuda,size,HasProperty,0.8,"Generally much larger than most other fish in the list, often reaching lengths over 3 feet",llm_property +barracuda,habitat,HasProperty,0.8,"Found in warm, tropical marine waters (unlike freshwater species like minnow, crappie)",llm_property +barracuda,swimming,HasProperty,0.8,"Known for its powerful, rapid swimming ability and ability to ambush prey",llm_property +barracuda,behavior,HasProperty,0.8,"Often solitary hunters that exhibit a distinctive aggressive, lunging attack on prey",llm_property +barrel,round_shape,HasProperty,0.8,"Unlike rectangular containers like bins or troughs, barrels are typically cylindrical or rounded",llm_property +barrel,steep_curved_sides,HasProperty,0.8,"Barrels have sloped sides that curve outward, unlike straight-sided containers like tanks or kettles",llm_property +barrel,wooden_construction,HasProperty,0.8,Often made of wood staves bound with metal hoops (distinct from metal pails or plastic jugs),llm_property +barrel,bands_of_metal,HasProperty,0.8,"Has characteristic metal hoops around its circumference, which most other containers lack",llm_property +barrel,sits_upright,HasProperty,0.8,Designed to stand on a flat circular base (unlike inverted pods or open-top troughs),llm_property +barrel,capable_of_rolling,HasProperty,0.8,Can be rolled on its side due to its rounded shape (unlike fixed-position aquariums or tanks),llm_property +basil,leaves,HasProperty,0.8,"Broad, typically green, oval-shaped leaves are distinctive compared to many spices that are seeds, roots, or powders.",llm_property +basil,aroma,HasProperty,0.8,"Strong, sweet, and slightly peppery aroma, easily recognizable and different from the woodsy or pungent smells of others like cinnamon or pepper.",llm_property +basil,flavor,HasProperty,0.8,"Distinctively sweet, herbaceous, and slightly minty taste, unlike the sharp heat of pepper or the earthy warmth of ginger.",llm_property +basil,texture_(fresh),HasProperty,0.8,"Soft and slightly fuzzy leaves when fresh, unlike the hard shells of nuts (nutmeg) or the powdery form of salt.",llm_property +basil,color_(leaf),HasProperty,0.8,"Vibrant green leaves, while others like nutmeg or cinnamon have brown tones.",llm_property +bass,"deep,_resonant_sound",HasProperty,0.8,Characteristic low-frequency tone in music,llm_property +bass,long_neck_and_frets,HasProperty,0.8,Distinguishing feature of the musical instrument,llm_property +bass,four_or_six_thick_strings,HasProperty,0.8,"Typically fewer, heavier strings than guitars",llm_property +bass,often_played_with_fingers_or_a_pick,HasProperty,0.8,Common technique for playing the instrument,llm_property +bass,"solid_body,_typically_wooden",HasProperty,0.8,Common construction for the musical instrument,llm_property +bass,can_be_predatory,HasProperty,0.8,Known to hunt smaller fish in aquatic environments,llm_property +bat,property,HasProperty,0.8,brief explanation,llm_property +bat,flying_animal,HasProperty,0.8,bats are the only ones in the list that can fly,llm_property +bat,nocturnal_behavior,HasProperty,0.8,most bats are active at night,llm_property +bat,small_size,HasProperty,0.8,generally smaller than most other listed animals,llm_property +bat,echolocation,HasProperty,0.8,use of sound waves to navigate and hunt,llm_property +bat,hanging_upside_down,HasProperty,0.8,roosting behavior unique among listed animals,llm_property +bat,furry_body,HasProperty,0.8,covered in fur unlike birds or reptiles,llm_property +bat,ultrasonic_sounds,HasProperty,0.8,produce high-frequency calls beyond human hearing,llm_property +bat,insectivore_diet,HasProperty,0.8,many bats primarily eat insects,llm_property +beak,hard,HasProperty,0.8,"It's made of keratin, a tough material",llm_property +beak,pointed,HasProperty,0.8,Often has a sharp tip for pecking or tearing,llm_property +beak,sharp,HasProperty,0.8,Can cut or puncture food,llm_property +beak,colorful,HasProperty,0.8,"Can vary in color (yellow, red, orange) unlike most animal body parts",llm_property +beak,non-movable,HasProperty,0.8,Usually fixed in shape and position (unlike a mouth),llm_property +beak,used_for_pecking,HasProperty,0.8,Specifically adapted for breaking shells or skin,llm_property +beak,slender,HasProperty,0.8,Typically thin and elongated in shape,llm_property +bean,shape,HasProperty,0.8,"Typically elongated, often curved or straight, unlike the round or irregular shapes of many other vegetables",llm_property +bean,texture_(touch),HasProperty,0.8,"Usually smooth skin, often with slight ridges or grooves, different from the often bumpy or rough textures of some others",llm_property +bean,color,HasProperty,0.8,"Often green when fresh, but can be yellow, purple, or multicolored, distinct from the dominant white/green of many others",llm_property +bean,taste_(fresh),HasProperty,0.8,"Mild, earthy, slightly sweet taste when fresh, less pungent than onions or beets",llm_property +bean,smell_(fresh),HasProperty,0.8,"Subtle, fresh, slightly grassy aroma, not as strong or pungent as many others",llm_property +bean,sound_(crunch),HasProperty,0.8,"Has a distinct, somewhat hollow crunch when fresh, unlike the softer crunch of cucumber or potato",llm_property +beaver,"flat,_paddle-shaped_tail",HasProperty,0.8,used for swimming and as a warning signal when slapped on water,llm_property +beaver,"large,_continuously_growing_front_teeth",HasProperty,0.8,"orange color due to iron, used for gnawing wood",llm_property +beaver,webbed_hind_feet,HasProperty,0.8,adaptations for efficient swimming,llm_property +beaver,"small,_valvular_nose/mouth",HasProperty,0.8,can close tightly underwater to prevent water intake,llm_property +beaver,"prominent,_movable,_transparent_nictitating_eyelids",HasProperty,0.8,allows vision underwater while protecting eyes,llm_property +beaver,"lumbering,_awkward_movement_on_land",HasProperty,0.8,due to body structure optimized for water,llm_property +bed,wood_or_metal_frame,HasProperty,0.8,"Bed frames are typically made of wood or metal, unlike desks which are often wood/metal but beds have a specific raised structure.",llm_property +bed,"soft,_textured_surface",HasProperty,0.8,"Beds have a soft surface (mattress, sheets, blankets) for sleeping, unlike desks or cabinets which are hard for storage/work.",llm_property +bed,rectangular_shape,HasProperty,0.8,"Beds are generally rectangular and elongated, while desks might be square/rectangular but often with drawers or different shapes, and cabinets can be square/rectangular but often taller or deeper.",llm_property +bed,single_purpose_design,HasProperty,0.8,"Beds are designed specifically for resting/sleeping, whereas desks are for work/study, and cabinets for storage.",llm_property +bed,lies_flat_to_the_ground,HasProperty,0.8,"Beds are usually low to the ground (approx. 25-30 cm off floor), whereas desks are higher for working, and cabinets are often taller or deeper storage units.",llm_property +bed,covers_used_on_top,HasProperty,0.8,"Beds almost always have soft covers (sheets, blankets, duvets) for comfort, while desks and cabinets do not typically have covers added for use.",llm_property +bee,hairy_body,HasProperty,0.8,"Bees have dense hair, unlike most other listed insects",llm_property +bee,yellow_and_black_stripes,HasProperty,0.8,Most distinctive color pattern among these insects,llm_property +bee,buzzing_sound,HasProperty,0.8,"A low, continuous buzzing sound when flying, unlike other listed insects",llm_property +bee,collects_nectar/pollen,HasProperty,0.8,"Behaviorally, bees gather food from flowers",llm_property +bee,lives_in_colonies,HasProperty,0.8,"Social behavior of living in hives, unlike most solitary insects listed",llm_property +bee,sting_with_venom,HasProperty,0.8,"Bees possess a venomous stinger, not present in all listed insects",llm_property +bee,four_wings,HasProperty,0.8,"Bees have two pairs of wings, typical for many insects but a key feature",llm_property +beef,reddish-brown_color,HasProperty,0.8,It has a distinct reddish-brown hue compared to other foods,llm_property +beef,fibrous_texture,HasProperty,0.8,Beef is notably fibrous due to its muscle tissue structure,llm_property +beef,distinctive_iron-rich_smell,HasProperty,0.8,"Beef has a strong, iron-like odor, unlike many other foods",llm_property +beef,juicy_when_cooked_rare,HasProperty,0.8,"Beef can remain juicy when undercooked, unlike many other meats",llm_property +beef,flaky_fat_marbling,HasProperty,0.8,"Beef often has visible marbled fat streaks, distinguishing it from leaner meats or other foods",llm_property +beer,bubbles,HasProperty,0.8,"Contains carbon dioxide, creating effervescence",llm_property +beer,yellow_to_amber_color,HasProperty,0.8,"Distinct from the lighter (soda, water, milk) or darker (wine, coffee) colors of other beverages",llm_property +beer,malt_aroma,HasProperty,0.8,"Smells of grains, unlike the fruit (juice), dairy (milk), or roasted (coffee) aromas of others",llm_property +beer,bitter_taste,HasProperty,0.8,"Due to hops, not common in other listed beverages except possibly some coffee",llm_property +beer,moderate_viscosity,HasProperty,0.8,Thicker than water or soda but less viscous than oil or milk,llm_property +beet,shape,HasProperty,0.8,"roundish, bulbous shape, unlike the elongated shapes of potatoes or zucchinis",llm_property +beet,color,HasProperty,0.8,"deep reddish-purple color, more distinct than the paler colors of potatoes or peas",llm_property +beet,texture_(inside),HasProperty,0.8,"firm, dense flesh, unlike the more porous or fleshy interiors of mushrooms or eggplants",llm_property +beet,flavor,HasProperty,0.8,"distinct earthy, slightly sweet taste, unlike the more neutral or bland flavors of pickles or corn",llm_property +beet,smell,HasProperty,0.8,"earthy, sweet aroma, especially when cooked, unlike the less pungent smells of many other vegetables",llm_property +bellows,four_sides,HasProperty,0.8,"bellows typically have four flexible sides that expand and contract, unlike most rigid tools",llm_property +bellows,air_passage,HasProperty,0.8,"bellows have an opening to push or draw air, a unique function among these tools",llm_property +bellows,flexible_material,HasProperty,0.8,"bellows are made of pliable materials like leather or fabric, unlike solid metal/wood tools",llm_property +bellows,heat_association,HasProperty,0.8,"bellows are specifically used to blow air to increase heat, a distinct purpose",llm_property +bellows,no_sharp_edge,HasProperty,0.8,"unlike axe, nail, or wedge, bellows lack a cutting or piercing edge",llm_property +bin,open_top,HasProperty,0.8,bins are typically open-topped or have large openings unlike many other containers,llm_property +bin,wide_mouth,HasProperty,0.8,"the opening is usually much wider than the base, unlike bottles or kettles",llm_property +bin,thick_walls,HasProperty,0.8,"bins are often made with thicker, durable walls than mugs or vases",llm_property +bin,sturdy_construction,HasProperty,0.8,designed to withstand heavy loads unlike delicate containers like vases,llm_property +bin,usually_square/rectangular,HasProperty,0.8,"many bins have straight, angular sides rather than curved like bottles or mugs",llm_property +bin,made_of_hard_material,HasProperty,0.8,"often made of plastic, metal, or heavy-duty cardboard rather than glass or ceramic",llm_property +bird,wings,HasProperty,0.8,"Birds have modified forelimbs for flight, unlike most other listed animals",llm_property +bird,beak,HasProperty,0.8,Birds have a distinct beak instead of teeth or other mouthparts,llm_property +bird,feathers,HasProperty,0.8,"Birds have lightweight, branched feathers for insulation and flight",llm_property +bird,lightweight_skeleton,HasProperty,0.8,"Birds have hollow bones to aid flight, unlike heavier-boned animals",llm_property +bird,lays_hard-shelled_eggs,HasProperty,0.8,"Birds lay eggs with calcified shells, unlike most other listed animals",llm_property +bird,hops_or_walks_on_two_legs,HasProperty,0.8,"Birds typically move bipedally, unlike many other animals",llm_property +bird,sings_or_calls_vocally,HasProperty,0.8,"Many birds produce complex sounds with syrinx, unlike most other listed animals",llm_property +bison,"bison_are_large,_heavily_built_mammals_with_distinctive_features._here_are_their_most_distinguishing_properties:",HasProperty,0.8,"bison is bison_are_large,_heavily_built_mammals_with_distinctive_features._here_are_their_most_distinguishing_properties:",llm_property +bison,large_size_and_stocky_build,HasProperty,0.8,They are significantly larger and more robust than most other animals in the list.,llm_property +bison,"thick,_shaggy_coat_of_fur",HasProperty,0.8,"Their fur is notably long, coarse, and dense, especially compared to the smooth fur or lack of fur in others.",llm_property +bison,humped_shoulders,HasProperty,0.8,"They have a prominent shoulder hump formed by muscles, which is not seen in other listed animals.",llm_property +bison,curved_horns_on_both_sexes,HasProperty,0.8,"Both male and female bison have large, curved horns, unlike the other animals.",llm_property +bison,large_head_with_a_pronounced_beard_under_the_chin,HasProperty,0.8,"They have a massive head and a noticeable beard, which is uncommon among the other listed animals.",llm_property +bison,"heavy,_low-hanging_belly",HasProperty,0.8,"Their belly hangs low and heavy due to their stocky build, a feature not shared by the others.",llm_property +bison,"herbivorous_diet,_grazing_on_grasses",HasProperty,0.8,"They primarily eat grasses, distinguishing them from carnivores or omnivores in the list.",llm_property +bison,known_for_charging_when_threatened,HasProperty,0.8,"They have a defensive behavior of charging, which is not typical of the other listed animals.",llm_property +blackbird,color,HasProperty,0.8,"Typically all-black plumage, unlike many other birds that are multicolored or patterned",llm_property +blackbird,behavior,HasProperty,0.8,"Males often display territorial behavior by singing from prominent perches, distinct from the more nomadic or ground-dwelling habits of many others",llm_property +blackbird,shape,HasProperty,0.8,"Rounded body shape with a relatively short tail, unlike the longer, more streamlined tails of wagtails or lorikeets",llm_property +blackbird,voice,HasProperty,0.8,"Deep, rich, melodious song often described as burbling or rolling, different from the high-pitched calls of many other small birds",llm_property +blackbird,size,HasProperty,0.8,"Medium size, larger than many small passerines but smaller than large soaring birds like albatrosses",llm_property +bladder,elastic_when_empty,HasProperty,0.8,"Can collapse when not full, unlike rigid containers",llm_property +bladder,flexible_material,HasProperty,0.8,"Made of stretchy material (like rubber or tissue), unlike hard materials",llm_property +bladder,soft_to_the_touch,HasProperty,0.8,"Feels pliable, unlike hard or brittle containers",llm_property +bladder,often_contains_liquid,HasProperty,0.8,"Specifically stores fluid, not just any contents",llm_property +bladder,can_expand_when_full,HasProperty,0.8,"Stretches as it fills up, unlike fixed-volume containers",llm_property +bladder,transparent_or_opaque,HasProperty,0.8,"Material can vary, but often allows some visibility",llm_property +bladder,often_biologically_derived,HasProperty,0.8,"Can be a natural organ, unlike man-made containers",llm_property +blade,sharp_edges,HasProperty,0.8,"Blades have sharp, cutting edges that are not present in other weapons like guns or tanks.",llm_property +blade,slight_curvature,HasProperty,0.8,Many blades have a slight curve that distinguishes them from the straight lines of firearms or explosives.,llm_property +blade,metallic_material,HasProperty,0.8,"Blades are typically made of metal, unlike weapons like a mace or hammer that might be more wooden or composite.",llm_property +blade,light_weight,HasProperty,0.8,"Compared to heavy weapons like a tank or mortar, blades are relatively lightweight.",llm_property +blade,shaped_for_slicing,HasProperty,0.8,"The shape is optimized for cutting and slicing, unlike the projectile or impact-focused design of other weapons.",llm_property +blood,property,HasProperty,0.8,red or reddish-brown color,llm_property +blowfish,spiny_skin,HasProperty,0.8,"covered in sharp, stiff spines when threatened",llm_property +blowfish,expandable_body,HasProperty,0.8,can inflate to several times its normal size,llm_property +blowfish,salty_taste,HasProperty,0.8,"often consumed as pufferfish, known for potent toxicity",llm_property +blowfish,unusual_movement,HasProperty,0.8,"swims using fins in a distinctive, undulating motion",llm_property +blowfish,poor_swimmer,HasProperty,0.8,generally not fast or agile swimmers,llm_property +blowfish,toxic_flesh,HasProperty,0.8,"contains tetrodotoxin, a potent neurotoxin in some species",llm_property +boat,property,HasProperty,0.8,floats on water,llm_property +bobwhite,calling_sound,HasProperty,0.8,"Distinctive ""bob-WHITE"" whistle, unlike the calls of other listed birds",llm_property +bobwhite,plumage_pattern,HasProperty,0.8,"Streaked, mottled brown and black, less colorful than many listed birds",llm_property +bobwhite,body_shape,HasProperty,0.8,"Rounded body and short tail, unlike the longer tails of weavers or thrashers",llm_property +bobwhite,size,HasProperty,0.8,"Medium-small size, smaller than eagles or mallards but larger than some warblers",llm_property +bobwhite,ground_habitat,HasProperty,0.8,"Typically found on the ground in grasslands, unlike tree-dwelling birds like orioles or cockatoos",llm_property +bobwhite,behavioral_response,HasProperty,0.8,"Often freezes when approached, less likely to fly away than many other listed birds",llm_property +body,structure,HasProperty,0.8,"It's the main physical form of an organism, unlike parts like mouth or claw.",llm_property +body,complexity,HasProperty,0.8,It's composed of multiple integrated systems (unlike simple parts like meat or fat).,llm_property +body,size,HasProperty,0.8,Generally the largest structure of the organism (compared to parts like mouth or claw).,llm_property +body,functionality,HasProperty,0.8,Performs multiple vital functions (unlike specialized parts like mouth or claw).,llm_property +body,texture,HasProperty,0.8,Typically covered in skin/fur/scales rather than being exposed muscle/meat.,llm_property +body,organization,HasProperty,0.8,"Has distinct anatomical regions (head, torso, limbs) unlike simple parts.",llm_property +bomb,spherical_or_irregular_shape,HasProperty,0.8,Most bombs are not designed for a specific ergonomic grip like handheld weapons,llm_property +bomb,made_of_metal_or_dense_material,HasProperty,0.8,Bombs often have thick casings to contain explosive force,llm_property +bomb,contains_explosive_charge,HasProperty,0.8,"Unlike most other weapons, bombs rely on a chemical reaction for effect",llm_property +bomb,no_moving_parts,HasProperty,0.8,Bombs usually don't have mechanisms like triggers or firing pins,llm_property +bomb,very_heavy,HasProperty,0.8,"Due to materials and size, bombs are typically much heavier than handheld weapons",llm_property +bomb,detonates_on_impact_or_timer,HasProperty,0.8,"Bombs release energy all at once, unlike weapons that deliver repeated force or projectiles",llm_property +bone,hard,HasProperty,0.8,It is rigid and dense compared to materials like cork or styrofoam,llm_property +bone,white,HasProperty,0.8,"Often has a pale white or ivory color, unlike darker materials",llm_property +bone,solid,HasProperty,0.8,"It is fully solid, unlike materials like paper or soot",llm_property +bone,heavy,HasProperty,0.8,It feels relatively heavy for its size compared to light materials like styrofoam,llm_property +bone,rough_surface,HasProperty,0.8,"Often has an irregular, porous or rough texture when not polished",llm_property +bone,connective,HasProperty,0.8,"In animals, it serves as a structural connection (unlike standalone materials)",llm_property +bone,inorganic_feel,HasProperty,0.8,"Feels like a natural but mineral-based material, distinct from purely organic matter",llm_property +bongo,drums,HasProperty,0.8,"It is a percussion instrument made of drums, unlike most others listed which are strings or keyboards or wind instruments.",llm_property +bongo,small_size,HasProperty,0.8,It is small and portable compared to instruments like piano or harp.,llm_property +bongo,pair_of_drums,HasProperty,0.8,"It consists of two drums of different sizes, a distinctive feature not shared by most others.",llm_property +bongo,holds_upright,HasProperty,0.8,"It is typically played while held upright between the knees, unlike most others played on a stand or held differently.",llm_property +bongo,skin_heads,HasProperty,0.8,"The drum surfaces are made of animal skin or synthetic skin, distinguishing it from instruments with strings or keys.",llm_property +bongo,high-pitched_tones,HasProperty,0.8,It produces relatively high-pitched tones compared to bass or synthesizer.,llm_property +bongo,accompaniment_role,HasProperty,0.8,It is often used as an accompanying rhythm instrument rather than a lead instrument.,llm_property +booby,property,HasProperty,0.8,Explanation,llm_property +booby,--------------------------------------------------,HasProperty,0.8,booby is --------------------------------------------------,llm_property +booby,webbed_feet,HasProperty,0.8,"Boobies have webbed feet for swimming, unlike most other listed birds",llm_property +booby,white_plumage_(often),HasProperty,0.8,"Many boobies have distinct white feathers, not typical for birds like mallards or buzzards",llm_property +booby,long_pointed_wings,HasProperty,0.8,Boobies have elongated wings adapted for gliding over water,llm_property +booby,nocturnal_behavior_absent,HasProperty,0.8,"Unlike nightjars, boobies are not nocturnal",llm_property +booby,nest_on_ground_or_ledges,HasProperty,0.8,Boobies often nest on flat surfaces like beaches or cliffs,llm_property +booby,excellent_fish-hunting_dive_ability,HasProperty,0.8,Boobies are famous for plunging headfirst into water to catch fish,llm_property +booby,sexually_monomorphic,HasProperty,0.8,"Male and female boobies look very similar, unlike species like peacocks or quetzals",llm_property +bottle,narrow_neck,HasProperty,0.8,"Bottles typically have a narrow neck compared to pails, tubs, or decanters",llm_property +bottle,small_mouth,HasProperty,0.8,"The opening is usually small, unlike mugs or bins",llm_property +bottle,vertical_shape,HasProperty,0.8,"Often tall and cylindrical, unlike drawers or troughs",llm_property +bottle,glass_or_plastic_material,HasProperty,0.8,"Commonly made of these, unlike metal pails or wooden tubs",llm_property +bottle,portable_size,HasProperty,0.8,"Generally designed to be held in one hand, unlike large bins or troughs",llm_property +bottle,sometimes_transparent,HasProperty,0.8,"Many bottles are clear, unlike opaque pails or bins",llm_property +bottle,suitable_for_drinking,HasProperty,0.8,"Designed to hold liquids for consumption, unlike storage containers like drawers",llm_property +bowerbird,"bulky,_cone-shaped_nest",HasProperty,0.8,"Bowerbirds build distinctive, large, structure nests unlike the simpler nests of most other birds.",llm_property +bowerbird,made_of_sticks,HasProperty,0.8,"Their nests are specifically constructed from sticks, a material choice not typical for all other listed birds.",llm_property +bowerbird,glossy_blue_eggs,HasProperty,0.8,"Bowerbirds lay glossy, blue-colored eggs, which is different from the common brown or white eggs of many other birds.",llm_property +bowerbird,builds_bowers,HasProperty,0.8,"Males construct elaborate, decorated structures (bowers) specifically for courtship, a behavior not seen in other listed birds.",llm_property +bowerbird,decorates_bowers,HasProperty,0.8,"Males meticulously decorate their bowers with colorful objects like shells, leaves, and berries as part of mating rituals, unlike other birds.",llm_property +bowerbird,often_collects_blue_items,HasProperty,0.8,"Bowerbirds have a strong preference for collecting blue objects to decorate their bowers, a specific and unusual behavior.",llm_property +box,property,HasProperty,0.8,brief explanation,llm_property +box,rectangular_shape,HasProperty,0.8,"Most boxes have distinct right-angled corners, unlike rounded items like buckets or vases",llm_property +box,flat_top_and_bottom,HasProperty,0.8,"Unlike many containers, boxes typically have flat, parallel top and bottom surfaces",llm_property +box,made_of_cardboard_or_wood,HasProperty,0.8,Common materials for boxes differ from the glass or metal of other listed containers,llm_property +box,lid_or_opening_on_top,HasProperty,0.8,"Most boxes have their opening on the top, unlike teacups or vases with side openings",llm_property +box,rigid_structure,HasProperty,0.8,"Boxes maintain their shape even when empty, unlike flexible containers like oilcans",llm_property +boxwood,"dense,_small_leaves",HasProperty,0.8,"boxwood has compact, tiny leaves unlike larger or needle-like leaves of others",llm_property +boxwood,evergreen_foliage,HasProperty,0.8,boxwood stays green year-round while some others lose leaves or are seasonal,llm_property +boxwood,hardy_growth,HasProperty,0.8,"boxwood is known for tough, slow growth unlike faster-growing or delicate plants",llm_property +boxwood,"bushy,_rounded_shape",HasProperty,0.8,"boxwood naturally forms dense, rounded bushes unlike upright or sprawling forms",llm_property +boxwood,"thick,_waxy_leaf_surface",HasProperty,0.8,boxwood leaves have a distinct waxy feel unlike softer or less substantial foliage,llm_property +branch,sticky_texture,HasProperty,0.8,"Often sticky with sap or resin, unlike dry husks or roots",llm_property +branch,green_color,HasProperty,0.8,"Typically covered in leaves or bark, unlike brown husks or roots",llm_property +branch,flexible_shape,HasProperty,0.8,"Can bend without breaking, unlike rigid husks or roots",llm_property +branch,barky_surface,HasProperty,0.8,"Has a rough, woody exterior, unlike smooth cotton or roots",llm_property +branch,fragile_breakability,HasProperty,0.8,"Easily snaps off from the main tree, unlike strong roots or vines",llm_property +branch,small_leaf_attachments,HasProperty,0.8,"Has individual leaves or buds attached, unlike large flowers or bouquets",llm_property +brick,color_red,HasProperty,0.8,most bricks are reddish,llm_property +brick,texture_rough,HasProperty,0.8,surface is uneven and gritty to touch,llm_property +brick,shape_rectangular,HasProperty,0.8,distinct block shape,llm_property +brick,hardness_high,HasProperty,0.8,very solid and unyielding,llm_property +brick,weight_heavy,HasProperty,0.8,dense and solid structure,llm_property +brick,sound_grating,HasProperty,0.8,makes a harsh sound when struck,llm_property +brick,smell_earth,HasProperty,0.8,often has a dusty earthy scent,llm_property +brick,taste_salt,HasProperty,0.8,can taste slightly salty from minerals,llm_property +bronze,color,HasProperty,0.8,"Bronze typically has a reddish-gold or brownish color, distinguishing it from the silvery appearance of most other listed metals like aluminum, steel, or titanium.",llm_property +bronze,sound,HasProperty,0.8,"When struck, bronze produces a resonant, ringing tone, different from the duller sound of steel or aluminum.",llm_property +bronze,hardness,HasProperty,0.8,Bronze is harder than pure metals like gold or aluminum but softer than steel or tungsten.,llm_property +bronze,weight,HasProperty,0.8,"Bronze is heavier than aluminum but lighter than tungsten, gold, or titanium.",llm_property +bronze,corrosion_resistance,HasProperty,0.8,"Bronze is resistant to corrosion, especially in saltwater, unlike steel, which rusts easily.",llm_property +bronze,melting_point,HasProperty,0.8,"Bronze has a relatively low melting point compared to steel, tungsten, or titanium.",llm_property +bronze,alloy_composition,HasProperty,0.8,"Bronze is an alloy primarily of copper and tin, unlike steel (iron and carbon) or other pure or binary metals in the list.",llm_property +broom,bristles,HasProperty,0.8,"Dense, stiff fibers used for sweeping",llm_property +broom,long_handle,HasProperty,0.8,Typically long for reaching floors,llm_property +broom,light_weight,HasProperty,0.8,Designed for easy manual sweeping,llm_property +broom,straight_shape,HasProperty,0.8,Generally straight form for floor contact,llm_property +broom,used_for_sweeping,HasProperty,0.8,Primary function is cleaning floors,llm_property +broom,often_wooden_handle,HasProperty,0.8,Common material for the handle,llm_property +bucket,shape_is_typically_cylindrical_with_a_wide_open_top,HasProperty,0.8,"Unlike troughs or tanks, buckets have a distinct shape optimized for easy filling and pouring",llm_property +bucket,handle_is_attached_for_carrying,HasProperty,0.8,Most other containers in the list lack a dedicated carrying handle,llm_property +bucket,"material_is_often_metal_or_plastic,_less_commonly_ceramic",HasProperty,0.8,Distinguishes from purely ceramic items like 'ceramic' or glass items like 'glass',llm_property +bucket,"often_has_a_smooth,_non-porous_surface",HasProperty,0.8,Unlike items like 'shell' or 'brick' which can have more textured surfaces,llm_property +bucket,size_is_relatively_small_and_portable,HasProperty,0.8,Unlike larger items like 'barrel' or 'tank',llm_property +bulbul,colorful_plumage,HasProperty,0.8,"Many bulbuls have bright yellow, green, or reddish feathers, distinguishing them from the more drab or monochrome colors of other birds like pigeons or rails.",llm_property +bulbul,distinctive_crest,HasProperty,0.8,"Many species of bulbul have a noticeable crest on their head, which is not a common feature in the listed birds.",llm_property +bulbul,conspicuous_beak_shape,HasProperty,0.8,"Bulbuls typically have a short, thick, and slightly curved beak, different from the long, thin beaks of avocets or the sturdy, chisel-like beaks of woodpeckers.",llm_property +bulbul,melodious_song,HasProperty,0.8,"Bulbuls are known for their pleasant, whistling calls, setting them apart from the more repetitive calls of pigeons or the distinctive, less musical sounds of cuckoos.",llm_property +bulbul,active_foraging_behavior,HasProperty,0.8,"Bulbuls are often seen actively foraging for insects and fruits in trees and bushes, a behavior that is more distinct than the ground-foraging of wagtails or the arboreal pecking of woodpeckers.",llm_property +bull,massive_size,HasProperty,0.8,Much larger than most other animals in the list,llm_property +bull,"thick,_furry_coat",HasProperty,0.8,Coarser and thicker fur than small mammals like ferrets or moles,llm_property +bull,"long,_straight_hooves",HasProperty,0.8,"Distinct from paws, claws, or webbed feet of other animals",llm_property +bull,powerful_charge,HasProperty,0.8,"Aggressive, forward-moving attack behavior, unlike penguins or worms",llm_property +bull,"low,_deep_bellow",HasProperty,0.8,"Loud, resonant vocalization not heard from small mammals or birds",llm_property +bull,horned_head,HasProperty,0.8,"Prominent, sharp horns used for defense/attack, unlike smooth-skinned animals",llm_property +bull,"strong,_heavy_legs",HasProperty,0.8,"Thick, sturdy legs built for supporting massive weight",llm_property +bunting,massive_colorful_plumage,HasProperty,0.8,"Bunting species are renowned for their vibrant, often bright and contrasting feather colors, especially in males, which is more pronounced than in most other listed birds.",llm_property +bunting,small_size,HasProperty,0.8,"Buntings are generally small birds, typically smaller than weavers, roadrunners, and geese.",llm_property +bunting,thick_bills,HasProperty,0.8,"They possess short, thick bills adapted for eating seeds, differentiating them from birds with slender insect-eating bills (like wrens) or hooked raptor bills (like kestrels).",llm_property +bunting,ground-feeding_behavior,HasProperty,0.8,"Buntings often forage for seeds on the ground, a behavior less common among the listed birds like weavers (often tree-dwelling) or albatrosses (pelagic feeders).",llm_property +bunting,species_variation,HasProperty,0.8,"There are many species of bunting (e.g., snow, indigo, house), each with distinct color patterns, unlike the more limited variety implied for other listed categories.",llm_property +burger,bun,HasProperty,0.8,"A round, often soft bread that encloses the filling",llm_property +burger,patty,HasProperty,0.8,"A flat, round piece of ground meat (usually beef) forming the main component",llm_property +burger,toppings,HasProperty,0.8,"Various additions like lettuce, tomato, onion, pickles, or condiments",llm_property +burger,grilled/fried_surface,HasProperty,0.8,"The patty has a cooked, often browned exterior from heat",llm_property +burger,savory_smell,HasProperty,0.8,"Distinctive aroma from cooked meat, onions, and seasonings",llm_property +burger,juicy_texture,HasProperty,0.8,Meat patty releases juices when bitten or cooked,llm_property +burger,salty_taste,HasProperty,0.8,"Common seasoning, often from salt, cheese, or meat itself",llm_property +burlap,rough_texture,HasProperty,0.8,"It has a much coarser and more uneven surface than wool, linen, or cotton.",llm_property +burlap,natural_color_(brown),HasProperty,0.8,"It's typically tan or brownish, unlike the white of cotton or the variable colors of wool/linen.",llm_property +burlap,distinctive_woven_pattern_(jute),HasProperty,0.8,"It has a unique, loose weave made from jute fibers, unlike the tight weaves of denim or the smoothness of leather.",llm_property +burlap,strong,HasProperty,0.8,It's notably strong and durable for its weight compared to many other fabrics.,llm_property +burlap,smells_slightly_earthy/woody,HasProperty,0.8,"It has a faint natural smell reminiscent of plants or wood, unlike the neutral smell of cotton or rubber.",llm_property +burlap,absorbent,HasProperty,0.8,"It can hold a lot of liquid, more so than materials like leather or wool.",llm_property +burlap,heavy_feel,HasProperty,0.8,It feels noticeably heavier than cotton or linen of similar thickness.,llm_property +burrow,holes_in_ground,HasProperty,0.8,"burrows are typically dug into the earth, creating openings at the surface",llm_property +burrow,underground_structure,HasProperty,0.8,"they consist of tunnels and chambers beneath the surface, unlike above-ground shelters",llm_property +burrow,earth_lining,HasProperty,0.8,"burrows are often lined or reinforced with dirt or soil, a distinct material compared to other shelters",llm_property +burrow,dark_interior,HasProperty,0.8,the inside is typically completely dark due to being underground,llm_property +burrow,narrow_entrance,HasProperty,0.8,"the opening is usually small and tight-fitting, limiting access",llm_property +burrow,cool_temperature,HasProperty,0.8,the underground location maintains a consistently cool temperature regardless of outside weather,llm_property +burrow,quiet_environment,HasProperty,0.8,being underground makes them naturally shielded from external sounds,llm_property +burrow,occupied_by_digging_animals,HasProperty,0.8,"they are characteristic homes for animals like rabbits, moles, or prairie dogs that dig",llm_property +butter,property,HasProperty,0.8,brief explanation,llm_property +butter,soft_and_spreadable_at_room_temperature,HasProperty,0.8,"Unlike most other foods in the list, butter is very soft and easily spreadable at room temperature",llm_property +butter,creamy_white_or_pale_yellow_color,HasProperty,0.8,"Butter has a distinct creamy white to pale yellow color, unlike the colors of most other items in the list",llm_property +butter,solid_at_cold_temperatures_but_melts_easily,HasProperty,0.8,"Butter is solid when refrigerated but melts quickly, unlike most other foods in the list",llm_property +butter,sweet_or_savory_flavor_depending_on_use,HasProperty,0.8,"Butter can be used in both sweet and savory dishes, unlike many other foods that are predominantly one or the other",llm_property +butter,often_has_a_slight_nutty_or_roasted_aroma_when_melted,HasProperty,0.8,"When melted, butter often releases a distinct nutty or roasted aroma",llm_property +butter,"contains_high_levels_of_fat,_giving_it_a_rich_texture",HasProperty,0.8,"Butter is mostly fat, giving it a richness and texture that is different from most other foods in the list",llm_property +butterfly,wing_coloration,HasProperty,0.8,"Often vivid and iridescent patterns, unlike most other insects which are mostly muted or monochrome",llm_property +butterfly,wing_shape,HasProperty,0.8,"Large, broad wings that fold vertically over the body when at rest, unlike the narrow wings of flies or the non-folding wings of many others",llm_property +butterfly,flight_pattern,HasProperty,0.8,"Fluttery, seemingly uncontrolled flight, unlike the direct flight of bees/wasps or the erratic flight of flies",llm_property +butterfly,antennae_shape,HasProperty,0.8,"Club-shaped tips, unlike the straight or feathery antennae of ants, bees, or flies",llm_property +butterfly,adult_mouthparts,HasProperty,0.8,"Siphoning mouthparts (proboscis) for nectar, unlike the chewing mouthparts of ants, beetles, or roaches",llm_property +buzzard,bald_head,HasProperty,0.8,"Unlike most other listed birds, buzzards often have a featherless head, which helps when feeding on carcasses.",llm_property +buzzard,broad_wings,HasProperty,0.8,"Buzzards have broad, rounded wings for soaring, unlike the more specialized wings of pelicans or hummingbirds.",llm_property +buzzard,soaring_flight,HasProperty,0.8,"Buzzards are known for soaring on thermals, a behavior not typical of the other listed birds.",llm_property +buzzard,carrion_diet,HasProperty,0.8,"Many buzzards primarily eat carrion, unlike wagtails, robins, or flycatchers which hunt live prey.",llm_property +buzzard,crepuscular_activity,HasProperty,0.8,"Buzzards are often most active at dawn and dusk, unlike some diurnal or nocturnal species.",llm_property +buzzard,strong_hooked_beak,HasProperty,0.8,"Like other raptors, buzzards have a prominent hooked beak for tearing flesh, setting them apart from seed-eaters like finches or barbet.",llm_property +cabbage,round_leafy_head,HasProperty,0.8,"Cabbage forms a tight, round head of leaves, unlike others like grass or vine which are not compact.",llm_property +cabbage,"thick,_crunchy_leaves",HasProperty,0.8,"Its leaves are thick and crunchy when raw, unlike the softer leaves of verbena or grass.",llm_property +cabbage,smelly_when_cooked,HasProperty,0.8,"Cabbage releases a strong, distinctive smell when cooked, which is less common in others like watermelon or boxwood.",llm_property +cabbage,salty/tangy_taste,HasProperty,0.8,"Raw cabbage often tastes slightly salty or tangy, unlike the sweetness of watermelon or neutrality of grass.",llm_property +cabbage,green_outer_leaves,HasProperty,0.8,"It has green, loose outer leaves that are typically removed, unlike the uniformity of onion or petal.",llm_property +cabbage,"firm,_ribbed_leaf_surface",HasProperty,0.8,"The leaves have a firm texture with visible ribs, unlike the smooth leaves of kohlrabi or cattail.",llm_property +cabbage,grows_above_ground,HasProperty,0.8,"Unlike cattail or grass, cabbage grows in a distinct head above the ground.",llm_property +cabinet,property,HasProperty,0.8,typically has shelves or drawers inside for storage,llm_property +caddy,shape,HasProperty,0.8,typically cylindrical or rectangular with a flat top and bottom,llm_property +caddy,handles,HasProperty,0.8,often has two small side handles for carrying,llm_property +caddy,open_top,HasProperty,0.8,usually has an open top for easy access to contents,llm_property +caddy,small_size,HasProperty,0.8,generally smaller and more compact than other containers,llm_property +caddy,often_made_of_plastic_or_wood,HasProperty,0.8,distinct material choice compared to metal or ceramic common in other containers,llm_property +caddy,may_have_dividers_inside,HasProperty,0.8,some caddies have internal partitions to organize contents,llm_property +caddy,used_for_holding_small_items,HasProperty,0.8,"specifically designed to hold tea, golf balls, or other small objects",llm_property +cage,structure,HasProperty,0.8,It's designed to confine or hold something within.,llm_property +cage,metal_frame,HasProperty,0.8,Often made with metal bars or wires.,llm_property +cage,open_design,HasProperty,0.8,Has visible spaces or openings between its parts.,llm_property +cage,square/rectangular_shape,HasProperty,0.8,Typically has straight edges and right angles.,llm_property +cage,hard_surface,HasProperty,0.8,Its exterior is solid and firm to the touch.,llm_property +cage,visible_barriers,HasProperty,0.8,The barriers (bars/walls) are clearly visible and part of its structure.,llm_property +cage,holds_animals,HasProperty,0.8,Its primary function is often to contain animals.,llm_property +caliper,measuring_jaws,HasProperty,0.8,"It has two adjustable arms/jaws used for measuring dimensions, unlike the listed instruments.",llm_property +caliper,precise_measurement_markings,HasProperty,0.8,"It features fine scale markings for accuracy, unlike the musical instruments.",llm_property +caliper,typically_made_of_metal,HasProperty,0.8,"Its construction is usually metal, whereas many listed instruments are wood or plastic.",llm_property +caliper,used_for_physical_dimensions,HasProperty,0.8,"It measures length, width, depth, whereas the others produce sound.",llm_property +caliper,often_has_a_sliding_part,HasProperty,0.8,"Features a moveable jaw or slide for measurement adjustment, unlike static instruments.",llm_property +caliper,reads_in_units_like_mm_or_inches,HasProperty,0.8,"Its scale is calibrated in standard measurement units, not musical notes.",llm_property +caliper,can_measure_internal_diameters,HasProperty,0.8,"Specifically designed to measure inside dimensions, a unique function.",llm_property +canary,yellow_coloration,HasProperty,0.8,"Canaries are famously bright yellow, unlike the varied colors of other birds like partridges or robins.",llm_property +canary,small_size,HasProperty,0.8,"Canaries are small, compact birds, smaller than partridges, vultures, or even robins.",llm_property +canary,sweet_song,HasProperty,0.8,"Canaries are known for their melodious, clear singing, which is distinct from the calls of most other listed birds.",llm_property +canary,thin_beak,HasProperty,0.8,"Canaries have a relatively thin, pointed beak suited for seed-eating, unlike the strong, hooked beak of a vulture or the heavy beak of a barbet.",llm_property +canary,active_flying,HasProperty,0.8,"Canaries are nimble fliers, often seen darting quickly, unlike the slower flight of a vulture or the clumsy flight of an auk.",llm_property +canary,seed-eating_diet,HasProperty,0.8,"Canaries primarily eat seeds, a trait less common among the listed birds like flycatchers (insect-eaters) or thrashers (omnivores).",llm_property +candle,smelly,HasProperty,0.8,Often has a distinct fragrance like wax or added scents,llm_property +candle,waxy,HasProperty,0.8,Made of a waxy substance that melts when heated,llm_property +candle,flame-producing,HasProperty,0.8,"Produces a flame when lit, unlike other tools",llm_property +candle,soft,HasProperty,0.8,Can be easily carved or shaped when warm,llm_property +candle,burnable,HasProperty,0.8,Can be set on fire and consumed by burning,llm_property +candle,glowing,HasProperty,0.8,"Emits a warm, soft light when lit",llm_property +candle,hot,HasProperty,0.8,Gets very hot at the flame point when burning,llm_property +candy,sweet_taste,HasProperty,0.8,"Most candies are sweet, unlike savory or neutral-tasting foods like hamburger, turkey, or salmon.",llm_property +candy,solid_texture,HasProperty,0.8,"Candies are typically solid, unlike juice, cereal, or flesh.",llm_property +candy,bright_colors,HasProperty,0.8,"Many candies have bright, artificial colors not found in natural foods like banana or salmon.",llm_property +candy,small_size,HasProperty,0.8,"Candies are usually small, unlike larger items like hamburgers or turkey.",llm_property +candy,sweet_smell,HasProperty,0.8,"Often have a distinct sweet or artificial fragrance, unlike the savory or neutral smells of most other listed foods.",llm_property +candy,soluble_in_mouth,HasProperty,0.8,"Candies dissolve or melt in the mouth, unlike more substantial foods like meat or cereal.",llm_property +candy,crunchy_texture_(some),HasProperty,0.8,"Some candies have a hard, crunchy texture when bitten, unlike soft or chewy foods like banana or meat.",llm_property +cannabis,smell,HasProperty,0.8,"Strong, distinct pungent or skunky aroma, unlike most other listed plants",llm_property +cannabis,appearance,HasProperty,0.8,"Often has distinctively wide, deeply fingered leaves with serrated edges",llm_property +cannabis,texture,HasProperty,0.8,"Leaves and stems can have a sticky, resinous feel when touched",llm_property +cannabis,growth_habit,HasProperty,0.8,"Typically grows as a tall, bushy plant rather than a low groundcover or vine",llm_property +cannabis,compound_leaves,HasProperty,0.8,Leaves usually grow in groups of 5-9 leaflets (compound) rather than single leaf blades,llm_property +cannon,rounded_barrel_shape,HasProperty,0.8,"Unlike handguns or rifles, cannons have a distinctly large, rounded, often cylindrical barrel.",llm_property +cannon,very_large_size,HasProperty,0.8,"Cannons are significantly larger and heavier than handguns, pistols, or rifles.",llm_property +cannon,loud_bang_sound,HasProperty,0.8,The firing sound of a cannon is exceptionally loud and deep compared to smaller firearms.,llm_property +cannon,smoke_and_fire_visible_at_mouth,HasProperty,0.8,"When fired, a cannon visibly ejects smoke, fire, and sparks from its barrel opening.",llm_property +cannon,iron_or_metal_construction,HasProperty,0.8,"Often made of heavy cast iron or steel, more robust than typical firearms.",llm_property +cannon,fires_projectiles_like_rocks_or_balls,HasProperty,0.8,"Traditionally designed to fire large, solid projectiles (cannonballs) rather than bullets.",llm_property +cannon,supporting_stand_or_wheels,HasProperty,0.8,"Typically mounted on a carriage or has wheels for support and transport, unlike handheld weapons.",llm_property +cannon,requires_crew_to_operate,HasProperty,0.8,"Unlike most listed weapons, cannons need a team to load, aim, and fire them.",llm_property +canoe,watercraft,HasProperty,0.8,designed primarily for water travel,llm_property +canoe,lightweight,HasProperty,0.8,typically made of lightweight materials for easy transport,llm_property +canoe,manual_propulsion,HasProperty,0.8,"propelled by paddles, not engines",llm_property +canoe,open_deck,HasProperty,0.8,"has an open top, unlike enclosed vehicles",llm_property +canoe,narrow_shape,HasProperty,0.8,long and narrow for gliding through water,llm_property +canoe,capable_of_capsizing,HasProperty,0.8,can easily overturn if tilted too far,llm_property +canoe,small_capacity,HasProperty,0.8,designed for a small number of passengers,llm_property +canon,property,HasProperty,0.8,It is typically very large and mounted on a platform,llm_property +car,property,HasProperty,0.8,brief explanation,llm_property +car,four_wheels,HasProperty,0.8,"Most cars have four wheels, unlike levers, needles, or planes",llm_property +car,metal_body,HasProperty,0.8,"Cars typically have a metal frame and body, unlike tractors or unicycles",llm_property +car,engine_sound,HasProperty,0.8,Cars have a distinctive engine noise when running,llm_property +car,windshield,HasProperty,0.8,Cars have a large transparent front window for visibility,llm_property +car,steering_wheel,HasProperty,0.8,Cars have a round wheel for steering direction,llm_property +car,seat_for_driver,HasProperty,0.8,Cars have a seat specifically for the driver,llm_property +car,interior_space,HasProperty,0.8,"Cars have enclosed space for passengers, unlike saws or spouts",llm_property +car,headlights,HasProperty,0.8,Cars have lights at the front for night driving,llm_property +cardamom,pod_shape,HasProperty,0.8,"cardamom comes in distinct green or black pods, unlike most other spices",llm_property +cardamom,small_black_seeds,HasProperty,0.8,inside the pods are tiny black seeds unique to cardamom,llm_property +cardamom,earthy_aroma,HasProperty,0.8,"cardamom has a pungent, lemony, earthy scent that is immediately recognizable",llm_property +cardamom,bitter_taste,HasProperty,0.8,it has a unique bitter note that sets it apart from sweeter spices like sugar or anise,llm_property +cardamom,minty_flavor,HasProperty,0.8,cardamom has a subtle cooling minty quality not found in most other spices,llm_property +cardamom,green_color,HasProperty,0.8,"green cardamom pods are distinctly green, unlike the reds, browns, or whites of others",llm_property +cardamom,cardiovascular_heat,HasProperty,0.8,it produces a warming sensation on the tongue that feels different from pepper's heat,llm_property +cardamom,spicy_aroma,HasProperty,0.8,its aroma is stronger and spicier than similar spices like cinnamon or basil,llm_property +cardinal,red_coloration,HasProperty,0.8,"Bright red plumage, especially in males, is very distinctive",llm_property +cardinal,conical_bill,HasProperty,0.8,"Short, thick, cone-shaped bill for cracking seeds",llm_property +cardinal,female_coloration,HasProperty,0.8,"Females are pale brown with red highlights, unlike many female birds that are drab",llm_property +cardinal,male_territory_defense,HasProperty,0.8,Males are highly territorial and will often attack their reflection,llm_property +cardinal,seed-eating_diet,HasProperty,0.8,"Feeds primarily on seeds and grains, unlike many insectivorous or piscivorous birds",llm_property +cardinal,conspicuous_crest,HasProperty,0.8,Small crest on head that can be raised or lowered,llm_property +cardinal,no_migration,HasProperty,0.8,"Non-migratory, found in same region year-round, unlike many other birds",llm_property +cardinal,clear_song,HasProperty,0.8,"Distinctive clear, whistling song, different from typical chirps or calls",llm_property +carnation,colorful,HasProperty,0.8,"carnations come in a wide range of colors, often with frilled edges",llm_property +carnation,frilled_petals,HasProperty,0.8,"the petals have ruffled or frilled edges, unlike smooth petals of many other flowers",llm_property +carnation,intense_fragrance,HasProperty,0.8,"carnations often have a strong, sweet, clove-like scent",llm_property +carnation,thick_leathery_leaves,HasProperty,0.8,"the leaves are typically narrow and have a thick, waxy texture",llm_property +carnation,long-lasting,HasProperty,0.8,carnations are known for their long vase life compared to other flowers,llm_property +carnation,rose-shaped_head,HasProperty,0.8,"the flower head is often globular or rounded, resembling a small rose",llm_property +cart,wheels,HasProperty,0.8,"Has wheels for rolling on land, unlike boats or planes",llm_property +cart,open_design,HasProperty,0.8,"Typically has an open-top structure, unlike enclosed vehicles like vans or cars",llm_property +cart,pullable,HasProperty,0.8,"Can be pulled or pushed manually, unlike self-propelled vehicles like mopeds or cars",llm_property +cart,low_profile,HasProperty,0.8,Has a low height and profile compared to taller vehicles like vans or planes,llm_property +cart,used_for_carrying_loads,HasProperty,0.8,"Primarily designed to carry goods or people short distances, unlike personal transportation like cars",llm_property +carton,shape,HasProperty,0.8,"Often rectangular or square, unlike many other containers that are round or cylindrical",llm_property +carton,flexibility,HasProperty,0.8,"Made of thin cardboard or plastic, easily squeezed, unlike rigid bottles or metal pails",llm_property +carton,opacity,HasProperty,0.8,"Usually opaque, hiding contents unless clear plastic, unlike clear glass aquariums or jugs",llm_property +carton,perforated_opening,HasProperty,0.8,"May have a tear strip or flip-top opening, not common on most other containers",llm_property +carton,light_weight,HasProperty,0.8,Significantly lighter than metal or thick glass containers like flasks or oilcans,llm_property +cassowary,face,HasProperty,0.8,"distinctively brightly colored (red, blue, orange) skin around the head and neck",llm_property +cassowary,head,HasProperty,0.8,topped with a large bony casque (horn-like structure),llm_property +cassowary,beak,HasProperty,0.8,relatively short and stout compared to other birds,llm_property +cassowary,feet,HasProperty,0.8,"large, powerful talons, especially the inner toe which has a long, dagger-like claw",llm_property +cassowary,size,HasProperty,0.8,very large and stocky body compared to most birds,llm_property +cassowary,color,HasProperty,0.8,"typically dark, velvety black plumage",llm_property +cassowary,behavior,HasProperty,0.8,known for its aggressive nature and powerful kick,llm_property +cassowary,sound,HasProperty,0.8,"produces low-frequency booming calls, unusual for birds",llm_property +cat,eyes,HasProperty,0.8,Vertical-slit pupils are distinctive compared to round or other-shaped pupils in the category.,llm_property +cat,whiskers,HasProperty,0.8,"Long, stiff facial whiskers are unique among the listed animals.",llm_property +cat,purr,HasProperty,0.8,Audible purring sound is a behavior unique to this category.,llm_property +cat,tail,HasProperty,0.8,"Often furry and has a distinct, flexible, expressive tail.",llm_property +cat,claws,HasProperty,0.8,"Retractable claws are a distinguishing feature for cats, unlike others.",llm_property +cat,paws,HasProperty,0.8,"Soft, padded paws are distinctive compared to hooves, fins, or hard exoskeletons.",llm_property +cat,walk,HasProperty,0.8,"Walks with a silent, stealthy gait, unlike the other animals listed.",llm_property +cat,behavior,HasProperty,0.8,"Domesticated, often kept as pets, unlike many other animals in the list.",llm_property +cattail,"brown,_fuzzy,_cigar-shaped_flower_spike",HasProperty,0.8,"Unique cylindrical, woolly appearance of the flowering head",llm_property +cattail,"tall,_straight_stem_growing_from_a_base_of_broad_leaves",HasProperty,0.8,Distinctive vertical structure with flat leaves at the base,llm_property +cattail,"green,_blade-like_leaves",HasProperty,0.8,"Broad, flat leaves resembling large blades",llm_property +cattail,grows_in_or_near_water,HasProperty,0.8,"Typically found in wetlands, marshes, or along ponds and streams",llm_property +cattail,"stalk_has_a_soft,_pithy_interior",HasProperty,0.8,"Hollow stem with a soft, spongy core",llm_property +cauliflower,head_shape,HasProperty,0.8,"It has a distinct compact, rounded head of tightly packed florets, unlike most other listed vegetables which are longer or leafy.",llm_property +cauliflower,texture,HasProperty,0.8,"Its florets are firm and somewhat granular, unlike the smooth or leafy textures of most others.",llm_property +cauliflower,color,HasProperty,0.8,"Typically bright white, distinct from the green, red, or purple of most others (mushroom is also white but cauliflower is plant-based).",llm_property +cauliflower,smell,HasProperty,0.8,"Has a unique slightly sulfurous or nutty smell when raw or cooked, different from the typical earthy, leafy, or fruity smells of most others.",llm_property +cauliflower,taste,HasProperty,0.8,"Mild, slightly sweet, and nutty flavor, unlike the distinct tastes of beets, corn, spinach, celery, or pickles.",llm_property +cauliflower,stem_thickness,HasProperty,0.8,"Its base stem is thick and sturdy to support the head, unlike the thin stems of spinach or asparagus.",llm_property +cedar,"dense,_fibrous_bark",HasProperty,0.8,"Unlike the smoother bark of many other trees, cedar bark is often thick and stringy",llm_property +cedar,"distinctive_sweet,_woodsy_smell",HasProperty,0.8,Cedar has a unique aromatic scent that is stronger than most other trees,llm_property +cedar,reddish-brown_heartwood_color,HasProperty,0.8,"The inner wood is typically a deep reddish-brown, unlike the paler woods of most other listed trees",llm_property +cedar,needle-like_leaves_arranged_in_clusters,HasProperty,0.8,"While many trees are evergreen, cedar needles grow in distinctive bundles",llm_property +cedar,"strong,_rot-resistant_wood",HasProperty,0.8,Cedar wood is naturally durable and insect-resistant compared to many other trees,llm_property +cedar,"flattened,_scale-like_leaves",HasProperty,0.8,Unlike the sharp spines of holly or the broad leaves of deciduous trees,llm_property +celery,color_green,HasProperty,0.8,"Most celery varieties are green, unlike potatoes (brown/white), eggplants (purple), okras (green/purple), jicama (tan/brown), and white varieties of cabbage, kohlrabi, or onions (not listed but common)",llm_property +celery,texture_crisp,HasProperty,0.8,"Its stalks are notably crisp and crunchy, unlike the soft leaves of cabbage/kale/lettuce, the woody texture of asparagus, or the starchy texture of potatoes/jicama",llm_property +celery,shape_segmented_stalks,HasProperty,0.8,"It consists of distinct, jointed stalks, unlike the bulbous shape of potatoes/eggplants, the loose leaves of cabbage/lettuce, or the individual peas",llm_property +celery,"smell_distinct,_herbaceous_aroma",HasProperty,0.8,"It has a strong, fresh, slightly peppery scent that is distinct from the milder smells of potatoes, cabbage, or jicama",llm_property +celery,flavor_salty/slightly_bitter,HasProperty,0.8,"Its taste is often described as slightly salty and bitter, unlike the neutral taste of potatoes/jicama, the sweet taste of peas, or the blandness of kohlrabi",llm_property +cello,size,HasProperty,0.8,"It is typically larger than most string instruments in the list, standing about 4 feet tall",llm_property +cello,shape,HasProperty,0.8,"It has a curved, pear-like body with a distinct neck and scroll at the top",llm_property +cello,material,HasProperty,0.8,"It is made primarily of wood, unlike synthesizers or harmonicas which use metal/plastic",llm_property +cello,playing_position,HasProperty,0.8,"It is played sitting down, held between the legs, unlike instruments like bongos or harp which stand on the floor",llm_property +cello,sound_production,HasProperty,0.8,"It uses bowed strings to produce sound, unlike plucked (harp, lyre) or keyed (piano, organ, accordion) instruments",llm_property +cello,sound_quality,HasProperty,0.8,"Produces a rich, deep, resonant bass-to-midrange tone that is warmer than violins or violas",llm_property +cello,string_count,HasProperty,0.8,"Typically has four strings, strung with gut or synthetic materials",llm_property +cello,bridge_shape,HasProperty,0.8,"Has a wide, arched bridge that supports all four strings, distinct from harps' angled setup",llm_property +centipede,many_legs,HasProperty,0.8,"Has numerous legs compared to other listed animals, which typically have 2-4 limbs.",llm_property +centipede,long_segmented_body,HasProperty,0.8,Body is composed of many connected segments along its length.,llm_property +centipede,crawling_movement,HasProperty,0.8,Moves by wriggling and using many legs simultaneously.,llm_property +centipede,antennae_present,HasProperty,0.8,"Has antenna-like structures on its head, unlike most other listed animals.",llm_property +centipede,flattened_body_shape,HasProperty,0.8,"Body is typically flattened, unlike the more rounded or bulky shapes of other listed animals.",llm_property +centipede,prefers_dark/hidden_places,HasProperty,0.8,"Often found in crevices, under rocks, or in soil, unlike many other listed animals which are more open.",llm_property +centipede,venomous_bite,HasProperty,0.8,"Many species can inject venom through fangs or specialized legs, a trait not common in other listed animals.",llm_property +ceramic,color,HasProperty,0.8,"Often white, beige, or glazed in various colors, unlike most other materials listed which are more neutral or specific (like metal, clear plastic, or brown paper)",llm_property +ceramic,hardness,HasProperty,0.8,"Very hard and rigid, unlike flexible materials like rubber, polyester, or paper",llm_property +ceramic,coldness,HasProperty,0.8,"Feels cold to the touch, unlike warmer or neutral-temperature materials like wood (chest) or metal (aluminum)",llm_property +ceramic,sound_when_struck,HasProperty,0.8,"Makes a ringing or clinking sound when tapped, unlike dull sounds from metal, wood, or paper",llm_property +ceramic,fragility,HasProperty,0.8,"Easily breaks if dropped, unlike more durable materials like metal or rubber",llm_property +cereal,eaten_with_liquid,HasProperty,0.8,"Cereal is typically served and eaten with milk or another liquid. (Most others are eaten as-is or with sauces/dressings, not submerged).",llm_property +cereal,dry_and_crunchy_texture,HasProperty,0.8,"Cereal (before adding liquid) has a distinct dry, brittle, or crunchy texture. (Others are often moist, dense, or soft).",llm_property +cereal,sweet_taste,HasProperty,0.8,"Many common types of cereal have a distinctly sweet taste, unlike most other items listed.",llm_property +cereal,made_from_processed_grains,HasProperty,0.8,"Cereal is made from grains (wheat, oats, rice, corn) that are typically processed into flakes, puffs, or other shapes. (Others are more whole foods or different ingredients).",llm_property +cereal,comes_in_box,HasProperty,0.8,"Cereal is commonly sold in cardboard boxes, a distinct packaging style. (Most others are sold in bags, jars, or as loose items).",llm_property +chalk,hardness,HasProperty,0.8,"It's harder than wax, wood, paper, and string but softer than diamond, mica, and glass.",llm_property +chalk,color,HasProperty,0.8,"It's typically white or off-white, unlike wool, mica, polyester, or bone.",llm_property +chalk,texture,HasProperty,0.8,"It's fine-grained and smooth to the touch, unlike the rough texture of mica or string.",llm_property +chalk,density,HasProperty,0.8,"It's light and porous, less dense than wood, glass, or bone.",llm_property +chalk,sound,HasProperty,0.8,"Makes a distinctive scratching sound when dragged across hard surfaces (e.g., blackboards).",llm_property +chalk,dissolvability,HasProperty,0.8,"It dissolves in water to form a milky liquid, unlike polyester or bone.",llm_property +chalk,solubility,HasProperty,0.8,"It's soluble in diluted acids, unlike glass or diamond.",llm_property +chard,dark_green_leaves_with_prominent_veins,HasProperty,0.8,Chard leaves are typically darker and more veined than lettuce or cabbage,llm_property +chard,"thick,_fleshy_stalks_(often_colorful)",HasProperty,0.8,"Unlike celery or beans, chard has thick, edible stalks",llm_property +chard,"distinctive_earthy,_slightly_bitter_taste",HasProperty,0.8,Different from the sweetness of corn or potatoes or the neutrality of lettuce,llm_property +chard,stalks_often_have_bright_colors_(red/purple/white),HasProperty,0.8,Unlike potatoes or celery whose stalks are typically a uniform green or white,llm_property +chard,leaves_have_a_slightly_wavy_or_crinkled_texture,HasProperty,0.8,"Different from the smooth leaves of lettuce or the broad, flat leaves of cabbage",llm_property +chard,doesn't_form_a_distinct_head_like_cabbage_or_lettuce,HasProperty,0.8,Grows in loose leaves rather than a tight head,llm_property +cheese,soft_to_the_touch,HasProperty,0.8,"Cheese is often pliable or crumbly, unlike hard foods like gnocchi or chips",llm_property +cheese,slightly_salty_taste,HasProperty,0.8,Cheese has a distinct salty flavor absent in most other listed foods,llm_property +cheese,sometimes_pungent_smell,HasProperty,0.8,"Many cheeses have a strong, distinct aroma, unlike bland foods like chicken or corn",llm_property +cheese,melts_when_heated,HasProperty,0.8,"Cheese becomes liquid when hot, a unique property not shared by most other foods listed",llm_property +cheese,creamy_texture,HasProperty,0.8,"Cheese has a smooth, often rich mouthfeel, unlike fibrous or grainy foods like beef or corn",llm_property +cheese,variability_in_color,HasProperty,0.8,"Cheese comes in many colors (white, yellow, orange), unlike uniformly colored foods like chicken or salmon",llm_property +chest,large_size,HasProperty,0.8,Much bigger than most other containers in the list,llm_property +chest,rectangular_shape,HasProperty,0.8,Unlike the round or curved shapes of most others,llm_property +chest,wooden_material,HasProperty,0.8,"Often made of wood, unlike the metal or glass of others",llm_property +chest,lid-covered_opening,HasProperty,0.8,"Has a hinged or removable lid, unlike open-top containers",llm_property +chest,used_for_storage,HasProperty,0.8,Specifically designed for storing personal items or valuables,llm_property +chest,heavy_weight,HasProperty,0.8,Typically much heavier than lightweight containers like kettles or cups,llm_property +chest,often_decorative,HasProperty,0.8,"Can have elaborate carvings or designs, unlike utilitarian containers",llm_property +chickadee,black_and_white_head_markings,HasProperty,0.8,It has a distinctive black cap and bib with white cheeks,llm_property +chickadee,small_size,HasProperty,0.8,It is one of the smaller birds in the list,llm_property +chickadee,high-pitched_call,HasProperty,0.8,"Its ""chick-a-dee-dee-dee"" call is iconic and unique",llm_property +chickadee,flitting_flight,HasProperty,0.8,"It has a quick, jerky, erratic flight pattern",llm_property +chickadee,seed-eating_behavior,HasProperty,0.8,"It often eats seeds and insects, but not typically nectar or fish",llm_property +chickadee,tree-dwelling_habits,HasProperty,0.8,It typically lives and forages in trees and shrubs,llm_property +chickadee,winter_persistence,HasProperty,0.8,"It is known for staying in cold regions year-round, unlike many migratory birds",llm_property +chicken,meaty_texture,HasProperty,0.8,"Chicken has a distinct firm, fibrous texture compared to soft foods like cheese, lettuce, or fat.",llm_property +chicken,white_color,HasProperty,0.8,"Cooked chicken is often pale white, differentiating it from darker meats like turkey or salmon.",llm_property +chicken,boneless_pieces,HasProperty,0.8,"Chicken is often sold in boneless, segmented pieces, unlike whole corn or intact lettuce leaves.",llm_property +chicken,poultry_odor,HasProperty,0.8,"Cooked chicken has a unique, savory poultry smell, unlike the fishy scent of salmon or neutral smell of potatoes.",llm_property +chicken,mild_flavor,HasProperty,0.8,"Chicken has a relatively neutral, savory flavor profile compared to strongly flavored foods like cornbread or cheese.",llm_property +chicken,solid_shape,HasProperty,0.8,"Chicken retains a solid, dense shape when cooked, unlike loose ingredients like salad greens or cheese.",llm_property +chili,shape,HasProperty,0.8,"Typically small, often dried pods or flakes",llm_property +chili,color,HasProperty,0.8,"Bright red, sometimes orange or green",llm_property +chili,smell,HasProperty,0.8,"Strong, pungent, and often described as sharp or smoky",llm_property +chili,taste,HasProperty,0.8,"Intense heat and spice, unlike most other spices which are milder or sweet",llm_property +chili,texture,HasProperty,0.8,"Usually crunchy when dried, often ground into a coarse powder",llm_property +chili,form,HasProperty,0.8,"Often sold as whole pods or flakes, not just ground powder like many other spices",llm_property +chimney,"tall,_vertical_structure",HasProperty,0.8,Chimneys are typically tall and upright to direct smoke upward.,llm_property +chimney,made_of_brick_or_stone,HasProperty,0.8,"Chimneys are often constructed with these durable, heat-resistant materials.",llm_property +chimney,has_a_flue_or_opening_at_top,HasProperty,0.8,The opening is designed to let smoke escape.,llm_property +chimney,often_has_a_cap_or_crown,HasProperty,0.8,A cap prevents water and debris from entering.,llm_property +chimney,can_be_seen_from_a_distance,HasProperty,0.8,Their height and distinct shape make them visible.,llm_property +chimney,may_emit_smoke_or_steam,HasProperty,0.8,A functioning chimney may visibly release byproducts of combustion.,llm_property +chimney,often_located_on_roof_or_exterior,HasProperty,0.8,Positioned to safely vent gases away from living areas.,llm_property +chimpanzee,"dark,_coarse_fur_covering_most_of_the_body",HasProperty,0.8,Unlike kiwi or dolphin which are bald or have different coverings,llm_property +chimpanzee,"long,_flexible_arms_and_opposable_thumbs",HasProperty,0.8,Distinguishes from gazelle or wolf which lack this manual dexterity,llm_property +chimpanzee,"prominent,_expressive_facial_features",HasProperty,0.8,Unlike many others in the list which have simpler or less mobile faces,llm_property +chimpanzee,"highly_intelligent,_tool-using_behavior",HasProperty,0.8,"Unlike most other listed animals, chimps are known for using tools",llm_property +chimpanzee,"social,_hierarchical_group_living_behavior",HasProperty,0.8,Unlike solitary or non-social animals like gazelle or dolphin,llm_property +chips,crunchiness,HasProperty,0.8,"They are typically crispy and brittle when bitten, unlike most other items.",llm_property +chips,salted_taste,HasProperty,0.8,"They usually have a noticeable salty flavor, more so than items like gnocchi or turkey.",llm_property +chips,fried_texture,HasProperty,0.8,Often have a greasy or fried feel due to high oil content during preparation.,llm_property +chips,shaped_squares/rectangles,HasProperty,0.8,"Frequently cut into uniform, often rectangular or square shapes, unlike irregular items like ham or turkey.",llm_property +chips,single_flavor_profile,HasProperty,0.8,"Primarily salty, unlike items like candy (sweet) or pickle (vinegary).",llm_property +chisel,"sharp,_flat_edge",HasProperty,0.8,Used for cutting or shaping material by direct impact,llm_property +chisel,metal_blade,HasProperty,0.8,Typically made of steel or similar metal for durability,llm_property +chisel,wooden_or_handled_grip,HasProperty,0.8,Often has a wooden or ergonomic handle for control,llm_property +chisel,smaller_than_a_knife,HasProperty,0.8,More specialized and less versatile than a knife,llm_property +chisel,used_with_a_hammer_or_mallet,HasProperty,0.8,Requires striking to function effectively,llm_property +chocolate,brown_color,HasProperty,0.8,"Most chocolates are brown, unlike most other foods in the list",llm_property +chocolate,solid_texture_(when_solid),HasProperty,0.8,"Unlike liquids like juice or soft things like banana, chocolate is solid when at room temperature",llm_property +chocolate,sweet_taste,HasProperty,0.8,"Very sweet, unlike savory foods like ham or pickle, or bland ones like cornbread",llm_property +chocolate,creamy_melt,HasProperty,0.8,"Melts smoothly to a creamy texture when warm, unlike many other foods that might just melt or get mushy",llm_property +chocolate,bitter_aroma_(especially_dark),HasProperty,0.8,"Often has a distinct bitter or rich aroma, unlike the sharp smell of cheese or the mild smell of sugar",llm_property +church,tall_spire_or_steeple,HasProperty,0.8,"Common architectural feature for churches, less common in others",llm_property +church,cross_on_roof_or_steeple,HasProperty,0.8,"Symbolic religious marker, absent in other buildings",llm_property +church,large_stained-glass_windows,HasProperty,0.8,"Characteristic feature for churches, not typical in others",llm_property +church,bell_tower_or_bell,HasProperty,0.8,"Present in many churches for calling worshippers, not common elsewhere",llm_property +church,interior_with_pews_or_benches,HasProperty,0.8,"Seating arrangement for congregations, not typical in other buildings",llm_property +church,cross_or_religious_symbols_inside,HasProperty,0.8,"Distinctive religious iconography inside, not present in other buildings",llm_property +cicada,wings,HasProperty,0.8,"Clear, veined wings held roof-like over the body",llm_property +cicada,nocturnal_behavior,HasProperty,0.8,Often active and heard at night,llm_property +cicada,loud_buzzing_sound,HasProperty,0.8,"Makes a loud, distinctive sound, much louder than most other insects",llm_property +cicada,"large,_prominent_eyes",HasProperty,0.8,"Large, widely spaced eyes on top of a broad head",llm_property +cicada,"sharp,_piercing_mouthparts",HasProperty,0.8,"Has a long, needle-like mouthpart for piercing and sucking fluids",llm_property +cicada,"thick,_robust_body",HasProperty,0.8,Generally larger and stockier build compared to many other insects,llm_property +cinnamon,color_is_reddish-brown,HasProperty,0.8,Most spices are not this particular shade of red-brown,llm_property +cinnamon,smell_is_sweet_and_spicy_with_a_warm_woody_aroma,HasProperty,0.8,Uniquely sweet-spicy compared to others like pungent turmeric or earthy nutmeg,llm_property +cinnamon,texture_is_often_rolled_into_sticks_(quills)_or_ground,HasProperty,0.8,Most spices are loose ground powder or whole seeds,llm_property +cinnamon,taste_is_sweet_and_hot_with_a_distinct_warming_sensation,HasProperty,0.8,Other spices don't typically combine sweet and hot in this way,llm_property +cinnamon,form_is_typically_either_sticks_with_a_curled_shape_or_fine_powder,HasProperty,0.8,Most spices don't come in this distinctive rolled stick form,llm_property +clarinet,wooden_body_(often_made_of_african_blackwood),HasProperty,0.8,"Most similar instruments are metal, ivory, or composite materials",llm_property +clarinet,single_reed_mouthpiece,HasProperty,0.8,"Unlike flutes, trumpets, and some oboes which use double reeds or no reeds",llm_property +clarinet,long_cylindrical_barrel_section,HasProperty,0.8,Distinct from flutes (conical) or oboes (narrow conical),llm_property +clarinet,"dark,_mellow_tone",HasProperty,0.8,Sounds different from bright trumpets or percussive drums,llm_property +clarinet,complex_key_system_with_unique_register_key,HasProperty,0.8,More intricate than flutes or simple drums,llm_property +claw,pointed,HasProperty,0.8,"Claws are typically sharp and tapered for gripping or defense, unlike blunt or smooth body parts.",llm_property +claw,hard,HasProperty,0.8,"Claws are hard and tough, often made of keratin, unlike soft tissues or smooth bones.",llm_property +claw,curved,HasProperty,0.8,"Many claws are curved to help grip surfaces, unlike straight parts like bones or fur.",llm_property +claw,white/clear,HasProperty,0.8,"Claws are often white or clear, distinct from colored parts like fur or feathers.",llm_property +claw,tangible,HasProperty,0.8,"Claws are solid, physical structures, unlike conceptual parts like 'head'.",llm_property +claw,extended,HasProperty,0.8,"Claws usually project outward from the body, unlike embedded parts like bones.",llm_property +claw,gripping,HasProperty,0.8,"Claws are used for gripping or tearing, unlike passive parts like fur or scales.",llm_property +claw,sharp_edges,HasProperty,0.8,"Claws have distinct edges for cutting or puncturing, unlike smooth surfaces.",llm_property +clay,malleable_when_wet,HasProperty,0.8,"Can be shaped easily when moist, unlike most other materials",llm_property +clay,firm_when_dried,HasProperty,0.8,"Becomes hard and solid when dried, unlike soft materials like wool or feather",llm_property +clay,smooth_to_the_touch,HasProperty,0.8,"Has a fine-grained, smooth texture compared to rougher materials like cork or wood",llm_property +clay,earthy_smell,HasProperty,0.8,"Gives off a distinct earthy or mineral scent, unlike synthetic or plant-based materials",llm_property +clay,can_be_fired_into_ceramic,HasProperty,0.8,"Undergoes a permanent transformation when heated, a property unique to clay in this list",llm_property +coach,size,HasProperty,0.8,"A coach is typically larger and more spacious than most vehicles in the list, designed to carry many passengers.",llm_property +coach,appearance,HasProperty,0.8,"It often has a distinct elongated shape with multiple windows, unlike compact vehicles like cars or moped.",llm_property +coach,number_of_passengers,HasProperty,0.8,"Coaches are designed for high passenger capacity, significantly more than vans or cars.",llm_property +coach,interior_features,HasProperty,0.8,"Coaches usually have seats arranged in rows, potentially with amenities like restrooms, unlike simpler vehicles.",llm_property +coach,noise_level,HasProperty,0.8,"When running, a coach engine often produces a deep, loud rumble distinct from smaller engines or silence of a sailboat.",llm_property +coal,color,HasProperty,0.8,"Black or dark brown color, unlike the typically lighter or varied colors of marble, stone, quartz, crystal, or mountain",llm_property +coal,texture,HasProperty,0.8,"Usually dull and rough to the touch, unlike the often smooth or crystalline textures of marble, stone, quartz, crystal, or mountain",llm_property +coal,smell,HasProperty,0.8,"Often smells earthy or like burning when heated, unlike the generally odorless marble, stone, quartz, crystal, or mountain",llm_property +coal,fracture,HasProperty,0.8,"Breaks unevenly and irregularly, unlike the often more predictable cleavage or fracture patterns of marble, stone, quartz, crystal, or mountain",llm_property +coal,energy,HasProperty,0.8,"Burns to produce heat and energy, unlike marble, stone, quartz, crystal, or mountain which do not burn as fuel",llm_property +coca,leaves_are_oval_and_shiny,HasProperty,0.8,"The leaves of coca have a distinct oval shape and a glossy surface, unlike many other trees.",llm_property +coca,leaves_have_teeth_along_edges,HasProperty,0.8,"The leaf margins are often serrated or toothed, a feature not common in all trees.",llm_property +coca,tree_grows_in_tropical_regions,HasProperty,0.8,"Coca trees are native to tropical South America, unlike many others listed which are temperate.",llm_property +coca,contains_psychoactive_alkaloids,HasProperty,0.8,"Coca leaves contain significant amounts of alkaloids like cocaine, a property unique to this genus.",llm_property +coca,stem_is_brown_and_fibrous,HasProperty,0.8,"The trunk and branches have a brown, somewhat rough, fibrous bark.",llm_property +coca,tree_reaches_moderate_height,HasProperty,0.8,"Coca trees typically grow to medium size, not excessively tall like some others.",llm_property +coca,small_flowers_with_white_petals,HasProperty,0.8,"The flowers are small, white, and not particularly showy, distinguishing them from some related trees.",llm_property +coca,fruit_is_a_pod_containing_seeds,HasProperty,0.8,"The fruit is a dry pod that splits open to release seeds, unlike the acorns or drupes of others.",llm_property +cock,colorful_plumage,HasProperty,0.8,"Bright red comb and wattles, iridescent feathers",llm_property +cock,loud_crowing_sound,HasProperty,0.8,"Distinctive loud ""cock-a-doodle-doo"" call",llm_property +cock,dominant_behavior,HasProperty,0.8,"Assertive towards other birds, territorial",llm_property +cock,tall_stature,HasProperty,0.8,Generally larger and more upright posture than most others,llm_property +cock,red_comb_on_head,HasProperty,0.8,Prominent fleshy crest on top of head,llm_property +cock,aggressive_pecking,HasProperty,0.8,Will aggressively peck at rivals or threats,llm_property +cock,pointed_tail_feathers,HasProperty,0.8,"Often has long, pointed tail feathers",llm_property +cockatiel,yellow_&_white_plumage,HasProperty,0.8,Distinctive yellow crest and white cheek patches,llm_property +cockatiel,crested_head,HasProperty,0.8,The crest is larger and more expressive than other birds,llm_property +cockatiel,softfeathered,HasProperty,0.8,Feathers are soft and velvety to the touch,llm_property +cockatiel,"loud,_screeching_calls",HasProperty,0.8,High-pitched screeches unlike the songs of most other birds,llm_property +cockatiel,very_social_behavior,HasProperty,0.8,"Often interacts with humans, mimics speech and whistles",llm_property +cockatiel,smaller_size,HasProperty,0.8,"Smaller than cockatoos, condors, and partridges",llm_property +cockatiel,tail_length,HasProperty,0.8,Relatively long tail compared to body size,llm_property +cockatiel,gray_wing_covets,HasProperty,0.8,Unique gray feathers on wings when not in flight,llm_property +cockatoo,crest_of_feathers_on_head_that_can_be_raised,HasProperty,0.8,"cockatoos are known for their large, movable crests, unlike most other birds in the list",llm_property +cockatoo,curved_beak_that_is_large_and_powerful,HasProperty,0.8,"their heavy, down-curved beaks are distinctive compared to straighter beaks of others",llm_property +cockatoo,often_white_or_pinkish-gray_coloration,HasProperty,0.8,"many cockatoos have predominantly white or pinkish-gray plumage, which is less common in the other listed birds",llm_property +cockatoo,"strong,_screeching_calls",HasProperty,0.8,"their loud, harsh vocalizations are often more powerful and less musical than songs of other listed birds",llm_property +cockatoo,ability_to_manipulate_objects_with_feet,HasProperty,0.8,"cockatoos have zygodactyl feet (two toes forward, two backward) allowing them to manipulate objects, unlike most other listed birds",llm_property +cockatoo,large_head_relative_to_body_size,HasProperty,0.8,they generally have a more prominent head compared to many other smaller or differently proportioned birds in the list,llm_property +cockatoo,often_found_in_pairs_or_small_groups,HasProperty,0.8,"they frequently associate in pairs or small family groups, differing from the broader social structures of others",llm_property +coffee,color,HasProperty,0.8,"Typically dark brown (darker than tea, milk, juice)",llm_property +coffee,smell,HasProperty,0.8,"Distinctive roasted, bitter aroma (unlike the sweetness of juice, the floral notes of tea, or the alcoholic smell of wine/beer)",llm_property +coffee,taste,HasProperty,0.8,"Bitter and often acidic (not sweet like juice/soda, not as neutral as water/oil, not as complexly bitter as wine)",llm_property +coffee,texture,HasProperty,0.8,"Can range from thin to thick (thicker than water, sometimes similar to milk but with a different mouthfeel due to oils and solids)",llm_property +coffee,caffeine_content,HasProperty,0.8,"Contains caffeine (most other listed beverages do not, or contain much less)",llm_property +coffee,temperature,HasProperty,0.8,"Often served hot (though not exclusively; unlike cold beverages like soda, juice, beer)",llm_property +comb,toothed_structure,HasProperty,0.8,Has multiple teeth or prongs for separating or smoothing,llm_property +comb,shaped_for_hair,HasProperty,0.8,Typically designed with a handle and teeth for grooming hair,llm_property +comb,sliding_through_hair,HasProperty,0.8,Designed to move smoothly through hair without snagging,llm_property +comb,hard_material,HasProperty,0.8,"Usually made of plastic, metal, or wood",llm_property +comb,small_handheld_size,HasProperty,0.8,Designed to be held and used with one hand,llm_property +comb,used_for_grooming,HasProperty,0.8,Its primary function is for personal care and styling hair,llm_property +computer,keyboard,HasProperty,0.8,input device for typing commands and text,llm_property +computer,screen,HasProperty,0.8,visual display showing information and graphics,llm_property +computer,speakers,HasProperty,0.8,produce sound output from audio files or alerts,llm_property +computer,processor,HasProperty,0.8,electronic component that executes instructions,llm_property +computer,cables,HasProperty,0.8,physical wires connecting it to power or other devices,llm_property +computer,plastic/metal_casing,HasProperty,0.8,outer shell protecting internal components,llm_property +computer,mouse,HasProperty,0.8,separate pointing device for navigating screen,llm_property +concrete,color,HasProperty,0.8,"usually gray or off-white, not vibrant like ruby or emerald",llm_property +concrete,texture,HasProperty,0.8,"rough and grainy to the touch, unlike smooth marble or polished aluminum",llm_property +concrete,hardness,HasProperty,0.8,"very hard and durable, not brittle like ash or flexible like wool",llm_property +concrete,sound,HasProperty,0.8,"makes a dull, heavy thud when hit, unlike the ringing of aluminum",llm_property +concrete,smell,HasProperty,0.8,"has a distinct, earthy, alkaline smell, not like the natural scents of straw or wool",llm_property +concrete,formation,HasProperty,0.8,"created by mixing ingredients, unlike naturally occurring materials like granite or clay",llm_property +condor,wingspan,HasProperty,0.8,exceptionally wide compared to other birds,llm_property +condor,carrion_eater,HasProperty,0.8,feeds almost exclusively on dead animals,llm_property +condor,large_size,HasProperty,0.8,largest flying birds in the world,llm_property +condor,soaring_flight,HasProperty,0.8,flies by gliding without much flapping,llm_property +condor,longevity,HasProperty,0.8,"lives for decades, unlike most other birds",llm_property +condor,strong_sense_of_smell,HasProperty,0.8,"can locate carrion by smell, rare in birds",llm_property +condor,black-and-white_appearance,HasProperty,0.8,distinctive color pattern,llm_property +container,opening,HasProperty,0.8,"Allows access to contents, unlike sealed items like bottles or cartons",llm_property +container,removability,HasProperty,0.8,"Contents can typically be removed easily, unlike sealed bladders or bricks",llm_property +container,variety_of_shapes/sizes,HasProperty,0.8,"Unlike specialized shapes like teacups or cartons, containers come in many forms",llm_property +container,durability,HasProperty,0.8,Often sturdier than fragile items like glasses or teacups,llm_property +container,portability,HasProperty,0.8,"Can often be carried or moved easily, unlike immobile items like bins or toolboxes",llm_property +coop,size,HasProperty,0.8,Generally smaller and more compact than other buildings listed,llm_property +coop,shape,HasProperty,0.8,"Often simple, box-like or rectangular design",llm_property +coop,material,HasProperty,0.8,"Typically made of wood, less often concrete or steel",llm_property +coop,door,HasProperty,0.8,"Features a smaller, often square or round opening (coop door)",llm_property +coop,roof,HasProperty,0.8,"Has a distinct slanted or peaked roof, sometimes with a small overhang",llm_property +coop,interior,HasProperty,0.8,"Contains nesting boxes and perches, unlike other buildings",llm_property +coop,smell,HasProperty,0.8,May have a characteristic poultry scent inside,llm_property +coop,sound,HasProperty,0.8,Often associated with the sounds of chickens or other poultry,llm_property +coot,all-black_body,HasProperty,0.8,Unlike many other birds which have bright or varied colors,llm_property +coot,white_facial_shield,HasProperty,0.8,A prominent white structure on the forehead that is unique among the listed birds,llm_property +coot,webbed_feet,HasProperty,0.8,"Unlike the mostly perching feet of parakeets, cardinals, or hornbills",llm_property +coot,swimming_behavior,HasProperty,0.8,"Spends much time on water, unlike the more terrestrial or purely aerial birds listed",llm_property +coot,"muffled,_grunting_calls",HasProperty,0.8,A sound quality that differs from the songs or calls of other birds like parakeets or cardinals,llm_property +coot,dark_legs_and_toes,HasProperty,0.8,Unlike the brightly colored legs of some waterfowl or the bare facial skin of hornbills,llm_property +coot,ability_to_dive_underwater,HasProperty,0.8,"Can submerge itself fully, unlike most of the other listed birds",llm_property +copper,color,HasProperty,0.8,"reddish-orange, unlike the silvery color of most other listed metals",llm_property +copper,taste,HasProperty,0.8,"metallic, slightly sweet, unlike the neutral or harsh taste of many other metals",llm_property +copper,electrical_conductivity,HasProperty,0.8,"excellent, higher than all other listed metals except possibly silver",llm_property +copper,thermal_conductivity,HasProperty,0.8,"very high, better than most other listed metals",llm_property +copper,magnetic_properties,HasProperty,0.8,"not magnetic, unlike iron and nickel",llm_property +copper,density,HasProperty,0.8,"relatively low for a metal with good strength, lighter than nickel, iron, and tungsten",llm_property +coriander,shape_of_seed,HasProperty,0.8,"small, round, ridged seeds unlike flat cumin or cubed cardamom",llm_property +coriander,color_of_seed,HasProperty,0.8,"tan or light brown, distinct from red paprika or yellow curry",llm_property +coriander,smell_when_crushed,HasProperty,0.8,"citrusy, slightly floral aroma unlike the pungent smell of ginger or cinnamon",llm_property +coriander,flavor_profile,HasProperty,0.8,"bright, slightly lemony taste unlike the spicy kick of chili or the earthy warmth of cumin",llm_property +coriander,texture_of_seed,HasProperty,0.8,"hard, brittle when dried, unlike the soft texture of ginger root",llm_property +cork,softness,HasProperty,0.8,"Easily compressed, unlike hard materials like ceramic or brick",llm_property +cork,light_weight,HasProperty,0.8,Very lightweight compared to denser materials like clay or aluminum,llm_property +cork,porous_texture,HasProperty,0.8,"Has a visible, bumpy, porous surface unlike smooth materials like paper or aluminum",llm_property +cork,buoyant,HasProperty,0.8,"Floats easily on water, unlike most other listed materials",llm_property +cork,unusually_flexible,HasProperty,0.8,"Can bend without breaking, unlike brittle materials like ceramic or ash",llm_property +cork,natural_origin,HasProperty,0.8,"Derived from tree bark, unlike synthetic or processed materials like paper or ceramic",llm_property +cork,slightly_elastic,HasProperty,0.8,"Returns to shape after compression, unlike clay or ash",llm_property +cormorant,blackish_plumage,HasProperty,0.8,Most are darker than many other listed birds,llm_property +cormorant,"long,_hooked_bill",HasProperty,0.8,Uniquely shaped compared to the straight or smaller bills of others,llm_property +cormorant,"long,_snake-like_neck",HasProperty,0.8,More elongated and S-shaped than the necks of most other listed birds,llm_property +cormorant,heavy_body,HasProperty,0.8,Stockier build compared to the more slender or upright bodies of others,llm_property +cormorant,"short,_rounded_wings",HasProperty,0.8,"Wings look broader and rounder than the sleek, pointed wings of many others",llm_property +cormorant,walks_upright_on_land,HasProperty,0.8,Stands more vertically than the often more horizontal posture of others,llm_property +cormorant,strong_dive_capability,HasProperty,0.8,"Excels at diving underwater, unlike most other listed birds",llm_property +cormorant,fish-eating_diet,HasProperty,0.8,"Specializes in catching fish, different from the varied diets of others",llm_property +corn,kernels,HasProperty,0.8,"distinct small, hard pieces on the cob",llm_property +corn,yellow_color,HasProperty,0.8,characteristic hue when ripe,llm_property +corn,sweet_taste,HasProperty,0.8,naturally sugary flavor,llm_property +corn,cob_structure,HasProperty,0.8,central woody core supporting kernels,llm_property +corn,cookable_form,HasProperty,0.8,"often boiled, roasted, or grilled",llm_property +corn,elongated_shape,HasProperty,0.8,"long, cylindrical cob form",llm_property +corn,ears,HasProperty,0.8,distinctive husked structure containing kernels,llm_property +corn,crisp_texture_when_raw,HasProperty,0.8,firm bite when uncooked,llm_property +cornbread,dense_crumb,HasProperty,0.8,Cornbread is typically less airy than cakes or breads like pizza dough.,llm_property +cornbread,slightly_crumbly_texture,HasProperty,0.8,It breaks apart easily compared to cohesive foods like steak or pasta.,llm_property +cornbread,golden-brown_crust,HasProperty,0.8,"It often has a distinct baked exterior unlike raw foods (salmon, lobster) or salads.",llm_property +cornbread,sweet_flavor,HasProperty,0.8,Most cornbreads have a noticeable hint of sweetness absent in savory items like ham or chicken.,llm_property +cornbread,corn_flavor,HasProperty,0.8,"The taste of corn is a defining feature, unlike most other items on the list.",llm_property +cornbread,soft_interior,HasProperty,0.8,"The inside is usually tender and moist, unlike tougher items like steak or lobster.",llm_property +cornbread,cornmeal_particles_visible,HasProperty,0.8,"Tiny flecks of cornmeal are often visible, unlike finely processed foods like butter or banana.",llm_property +cotinga,colorful_plumage,HasProperty,0.8,"Many cotingas have exceptionally bright and varied colors, like reds, blues, and oranges, unlike the generally more subdued or drab colors of other listed birds.",llm_property +cotinga,distinctive_crest_or_ornamentation,HasProperty,0.8,"Some cotingas have elaborate head crests or other adornments (like the umbrella bird's crest), which are less common or different in shape among the other listed birds.",llm_property +cotinga,flat_or_horizontal_posture_when_perched,HasProperty,0.8,"Cotingas often hold their bodies in a flat, horizontal position on branches, unlike the more upright or horizontal stances common in many other birds.",llm_property +cotinga,"loud,_complex_vocalizations",HasProperty,0.8,"Cotingas, especially manakins (often included with cotingas), produce elaborate and often unusual calls or songs that differ from typical simple calls of many other birds.",llm_property +cotinga,fruit-based_diet,HasProperty,0.8,"Many cotingas primarily eat fruit, which is more specialized compared to the varied diets (insects, seeds, meat) of most other listed birds.",llm_property +cotton,soft_texture,HasProperty,0.8,cotton fibers are exceptionally soft when spun into fabric compared to haircloth or other fibers,llm_property +cotton,white_color,HasProperty,0.8,raw cotton bolls are distinctly white when harvested unlike colorful flowers or plants,llm_property +cotton,light_weight,HasProperty,0.8,cotton fabric is relatively lightweight compared to many other fabrics or plant materials,llm_property +cotton,easily_spun_into_thread,HasProperty,0.8,"cotton fibers can be easily spun into thread, a property not shared by many other items in the list",llm_property +cotton,grows_in_bolls,HasProperty,0.8,"cotton plants produce distinct seed bolls that are unique compared to fruits, roots, or leaves",llm_property +cotton,absorbs_water_well,HasProperty,0.8,"cotton fabric has high absorbency, absorbing water better than many other natural materials",llm_property +cotton,naturally_fibrous,HasProperty,0.8,"cotton consists of natural fibers that can be processed, unlike items like peppermint or jungle",llm_property +cowbird,"dull,_dark_coloring",HasProperty,0.8,Unlike peacock's iridescent colors or kingfisher's bright hues,llm_property +cowbird,stocky_body_shape,HasProperty,0.8,More robust than finches or chickadees,llm_property +cowbird,"short,_thick_bill",HasProperty,0.8,Distinguishable from heron's long bill or osprey's hooked beak,llm_property +cowbird,often_seen_near_cattle,HasProperty,0.8,Behavior not typical of most other listed birds,llm_property +cowbird,lacks_ornamental_plumage,HasProperty,0.8,Unlike peacock's train or cassowary's casque,llm_property +cowbird,does_not_build_own_nest,HasProperty,0.8,Brood parasitic behavior unique among listed birds,llm_property +cowbird,often_travels_in_flocks,HasProperty,0.8,Group behavior unlike solitary birds like hawk or osprey,llm_property +crab,movement_with_legs,HasProperty,0.8,Walks sideways instead of forward,llm_property +crab,shelly_exoskeleton,HasProperty,0.8,"Body protected by a hard, outer shell",llm_property +crab,clawed_appendages,HasProperty,0.8,Has large pincers used to grasp and tear food,llm_property +crab,smaller_size,HasProperty,0.8,Typically much smaller than the other listed animals,llm_property +crab,lives_in_water/marshes,HasProperty,0.8,Often found in marine or brackish environments,llm_property +crab,colorful_appearance,HasProperty,0.8,Many species have bright or distinctly patterned shells,llm_property +cranberry,color_is_bright_red,HasProperty,0.8,"Most similar fruits are orange, yellow, or green",llm_property +cranberry,fruits_are_small_and_round,HasProperty,0.8,Others are larger or differently shaped,llm_property +cranberry,fruit_has_a_tart_taste,HasProperty,0.8,Unlike sweet fruits like strawberry or mango,llm_property +cranberry,"fruit_has_a_smooth,_shiny_skin",HasProperty,0.8,Unlike fuzzy kiwi or bumpy pineapple,llm_property +cranberry,fruit_has_a_firm_texture,HasProperty,0.8,Unlike soft fruits like fig or watermelon,llm_property +crappie,silver/white_coloration_with_dark_spots,HasProperty,0.8,"Crappie have a distinct coloration pattern of silver or white with darker spots, which differs from the more uniform colors of many other listed fish like trout or barracuda.",llm_property +crappie,fat/round_body_shape,HasProperty,0.8,"Unlike the elongated bodies of pike or barracuda, crappie have a plump, round body shape.",llm_property +crappie,small_mouth,HasProperty,0.8,The mouth of a crappie is relatively small compared to the large mouths of predators like pike or barracuda.,llm_property +crappie,silvery_reflections,HasProperty,0.8,"The scales on a crappie often reflect light giving them a silvery sheen, which is more pronounced than on many darker-colored fish like bass or grouper.",llm_property +crappie,spiny_dorsal_fin,HasProperty,0.8,"They have a distinct spiny dorsal fin, similar to many other freshwater fish but arranged differently from the fin structures of others like skate or herring.",llm_property +crappie,tends_to_school_in_groups,HasProperty,0.8,"Crappie are known for schooling behavior, often found in groups, unlike many solitary hunters like pike or barracuda.",llm_property +crappie,"sweet,_white_meat",HasProperty,0.8,"When cooked, crappie yields sweet, white meat, which is considered distinct from the often firmer or darker meat of other fish like bass or snapper.",llm_property +creek,small_flowing_water,HasProperty,0.8,A creek is smaller than a river or sea,llm_property +creek,shallow_water,HasProperty,0.8,Creeks typically have shallow water compared to oceans or rivers,llm_property +creek,noisy_splashing_sound,HasProperty,0.8,Creeks often make distinct splashing sounds as water flows over rocks,llm_property +creek,smaller_rocks_and_stones,HasProperty,0.8,"Creek beds usually have smaller, rounded rocks compared to larger riverbeds",llm_property +creek,banks_of_vegetation,HasProperty,0.8,Creeks are often bordered by banks with plants and grasses,llm_property +creek,cooler_temperature,HasProperty,0.8,Creek water is typically cooler than larger bodies of water like oceans,llm_property +crow,size,HasProperty,0.8,It is larger and stockier than most other birds in the list like swifts or jays.,llm_property +crow,color,HasProperty,0.8,"Its feathers are typically black, unlike the often colorful or patterned plumage of birds like jays or booby.",llm_property +crow,voice,HasProperty,0.8,"It has a loud, harsh, croaking call, distinct from the songs or calls of jays or gulls.",llm_property +crow,wing_shape,HasProperty,0.8,"Its wings are broad and rounded, typical of soaring rather than the pointed wings of falcons or swifts.",llm_property +crow,intelligence,HasProperty,0.8,"It is highly intelligent and capable of problem-solving, more so than birds like ibis or curassow.",llm_property +crow,behavior,HasProperty,0.8,"Crows are highly social, often seen in groups, unlike solitary hunters like hawks or osprey.",llm_property +crow,habitat,HasProperty,0.8,"They are adaptable and found near human settlements, unlike more specialized birds like booby or ibis.",llm_property +crystal,clear_and_transparent,HasProperty,0.8,Unlike opaque materials like coal or soil,llm_property +crystal,shiny_and_reflective,HasProperty,0.8,Often has a lustrous appearance not seen in things like talc or soil,llm_property +crystal,hard_and_durable,HasProperty,0.8,Resists scratching better than glass or potassium,llm_property +crystal,faceted_or_geometric_shape,HasProperty,0.8,Naturally forms into distinct geometric patterns unlike irregular things like soil or marble,llm_property +crystal,can_be_brittle,HasProperty,0.8,"Breaks easily under pressure, unlike the malleability of iron or potassium",llm_property +cuckoo,common_cuckoo,HasProperty,0.8,"has a unique ""cuckoo"" call, often mimicking other birds",llm_property +cuckoo,slim_body_shape,HasProperty,0.8,typically slender and streamlined compared to many other birds,llm_property +cuckoo,long_tail,HasProperty,0.8,"possesses a long, often graduated tail",llm_property +cuckoo,gray/brown_plumage,HasProperty,0.8,"generally grayish or brownish plumage, not as colorful as many others",llm_property +cuckoo,white_underwings,HasProperty,0.8,distinctive white patches under the wings when flying,llm_property +cuckoo,behavioral_cuckooing,HasProperty,0.8,well-known for laying eggs in the nests of other birds,llm_property +cucumber,shape,HasProperty,0.8,"Long and cylindrical, unlike round or leafy vegetables",llm_property +cucumber,skin_texture,HasProperty,0.8,"Smooth and slightly waxy, not fuzzy or bumpy",llm_property +cucumber,color,HasProperty,0.8,"Bright green, especially when fresh, unlike white, yellow, or red vegetables",llm_property +cucumber,texture_when_cut,HasProperty,0.8,"Soft and juicy with visible seeds, unlike hard or dry centers",llm_property +cucumber,taste,HasProperty,0.8,"Mild and refreshing with a hint of wateriness, unlike strong flavors like beet or eggplant",llm_property +cucumber,weight,HasProperty,0.8,"Relatively light for its size, less dense than many other vegetables",llm_property +cucumber,smell,HasProperty,0.8,"Fresh, light, and vegetal, not pungent or earthy",llm_property +cumin,small_seedlike_particles,HasProperty,0.8,"It consists of small, oblong or oval-shaped seeds, unlike powders or ground spices like paprika or nutmeg.",llm_property +cumin,dark_brown_color,HasProperty,0.8,"Its seeds are typically a deep brown, distinguishing it from brighter spices like turmeric or paprika.",llm_property +cumin,strong_aroma,HasProperty,0.8,"It has a very potent, earthy, and slightly spicy smell, stronger than many other spices.",llm_property +cumin,bitter_taste,HasProperty,0.8,"It has a distinct bitter and pungent flavor, unlike the sweeter taste of cinnamon or the heat of chili.",llm_property +cumin,rounded_shape,HasProperty,0.8,"The seeds are rounded on the ends, unlike flatter seeds like coriander or thyme leaves.",llm_property +cumin,dense_texture,HasProperty,0.8,"The seeds feel dense and somewhat hard when touched, unlike the fluffier texture of ground spices like sugar or curry powder.",llm_property +curassow,feathers_black_or_dark_brown,HasProperty,0.8,Most curassows have dark plumage,llm_property +curassow,long_tail_feathers,HasProperty,0.8,They have relatively long tails compared to many other game birds,llm_property +curassow,prominent_crest_on_head,HasProperty,0.8,Many curassow species have a distinct crest of feathers,llm_property +curassow,large_body_size,HasProperty,0.8,Curassows are among the larger types of birds in the galliform category,llm_property +curassow,strong_legs_and_feet,HasProperty,0.8,Adapted for terrestrial living and scratching for food,llm_property +curassow,nocturnal_or_crepuscular_habits,HasProperty,0.8,Many curassows are active at dawn and dusk or during night,llm_property +curassow,"distinctive_deep,_low_calls",HasProperty,0.8,They have a characteristic guttural call used for communication,llm_property +curry,color_yellow,HasProperty,0.8,"Curry's primary color is yellow due to turmeric, unlike the typically white, brown, or green colors of most other spices.",llm_property +curry,smell_spicy_&_fragrant,HasProperty,0.8,"Curry has a strong, complex aroma that combines spicy, earthy, and slightly sweet notes, distinct from the single-note scents of anise, basil, cinnamon, etc.",llm_property +curry,taste_complex_&_spicy,HasProperty,0.8,"Curry offers a layered flavor profile that is spicy, savory, and slightly sweet, unlike the simple sweet (sugar), salty (salt), or single-spice flavors of others.",llm_property +curry,texture_fine_powder,HasProperty,0.8,"Curry is often a fine powder, distinguishing it from whole spices like anise or basil, or crystalline ones like salt and sugar.",llm_property +curry,appearance_blend_of_colors,HasProperty,0.8,"Even without turmeric, curry blends multiple spices yielding varied colors, unlike the uniform appearance of salt, sugar, or single spices like ginger or paprika.",llm_property +cypress,scaley_leaves,HasProperty,0.8,"Unlike the broad leaves of rhododendron or the simple leaves of lettuce, cypress has small, scale-like leaves.",llm_property +cypress,conic_shapes,HasProperty,0.8,"Cypress trees often grow in a distinctive conical shape, unlike the bushy rhododendron or the round heads of lettuce.",llm_property +cypress,dense_foliage,HasProperty,0.8,"Cypress trees have a thick, dense arrangement of foliage, unlike the sparse leaves of lettuce or the open structure of bamboo.",llm_property +cypress,red/brown_bark,HasProperty,0.8,"The bark of a cypress tree is often reddish-brown and fibrous, unlike the smoother bark of some other trees or the texture of bamboo.",llm_property +cypress,"strong,_woodland_smell",HasProperty,0.8,"Cypress wood and foliage have a distinct, resinous, woodland smell, unlike the minty scent of peppermint or the neutral smell of lettuce.",llm_property +daffodil,trumpet-shaped_center,HasProperty,0.8,The central corona is a distinct cup or trumpet shape not typically seen in the others,llm_property +daffodil,yellow_coloration,HasProperty,0.8,"Daffodils are most commonly bright yellow, while others have more varied colors",llm_property +daffodil,spring_blooming_time,HasProperty,0.8,"They typically flower in early spring, earlier than most of the listed flowers",llm_property +daffodil,"stiff,_upright_stem",HasProperty,0.8,Their stems are notably rigid and hold the flower upright,llm_property +daffodil,"smooth,_waxy_leaves",HasProperty,0.8,"The leaves are flat, long, and have a waxy texture distinct from the others",llm_property +daisy,leaves_are_thin_and_lance-shaped,HasProperty,0.8,"Daisies typically have elongated, narrow leaves, unlike round or lobed leaves of many other flowers.",llm_property +daisy,central_disc_is_raised_and_yellow,HasProperty,0.8,"The central part of a daisy is a distinct raised yellow circle, unlike flat centers of many other flowers.",llm_property +daisy,petals_are_white_with_a_sharp_point,HasProperty,0.8,"Daisies have sharp-tipped white petals, unlike rounded or broad petals of other flowers.",llm_property +daisy,stem_is_smooth_and_green,HasProperty,0.8,"Daisies have unbranched, smooth green stems, unlike woody or textured stems of some flowers.",llm_property +daisy,often_smells_faintly_of_chamomile,HasProperty,0.8,"Daisies have a subtle, herbal fragrance similar to chamomile, not strongly perfumed like roses or lilies.",llm_property +dandelion,yellow_color,HasProperty,0.8,"Most have white, pink, purple, or multicolored petals, but dandelions are distinctly bright yellow.",llm_property +dandelion,single_stem,HasProperty,0.8,"Unlike many flowers with clustered stems, dandelions grow on a single, sturdy stem.",llm_property +dandelion,low_growing,HasProperty,0.8,"Typically grows close to the ground, unlike many taller garden flowers.",llm_property +dandelion,poppable_stem,HasProperty,0.8,"The hollow stem can be easily popped and makes a distinct ""pop"" sound.",llm_property +dandelion,seed_ball,HasProperty,0.8,Produces a distinctive round seed head (clock) that disperses seeds when blown.,llm_property +dandelion,bitter_taste,HasProperty,0.8,"Leaves and roots have a distinct bitter taste, unlike the generally sweet taste of other flowers.",llm_property +dandelion,single_head,HasProperty,0.8,"Has one composite head of many small flowers, unlike flowers with multiple separate blooms.",llm_property +decanter,shape,HasProperty,0.8,"It has an elongated, often bulbous shape with a wide base and narrow neck, unlike most other containers.",llm_property +decanter,material,HasProperty,0.8,"Typically made of glass or crystal, allowing clear viewing of the liquid inside, unlike many opaque containers.",llm_property +decanter,neck_design,HasProperty,0.8,"Has a specific, often wide neck for pouring liquids smoothly, distinguishing it from simpler openings in other containers.",llm_property +decanter,purpose,HasProperty,0.8,"Specifically designed for serving alcoholic beverages, not general storage like most other containers.",llm_property +decanter,decoration,HasProperty,0.8,"Often ornately decorated or cut with patterns, unlike the simpler designs of most other containers.",llm_property +decanter,weight,HasProperty,0.8,Usually heavier than many other containers due to the denser material (glass/crystal) and sometimes added embellishments.,llm_property +deer,antlers,HasProperty,0.8,"Only deer among these have branched antlers (except for bull, but deer antlers are typically larger/bushier)",llm_property +deer,white_tail_flash,HasProperty,0.8,Deer raise their white tails when alarmed as a warning signal,llm_property +deer,graceful_gait,HasProperty,0.8,"Deer move with a light, springy, and agile gait",llm_property +deer,long_legs,HasProperty,0.8,Deer have relatively long legs compared to their body size for quick movement,llm_property +deer,pointed_ears,HasProperty,0.8,"Deer have large, pointed, mobile ears for acute hearing",llm_property +deer,browser_diet,HasProperty,0.8,"Deer primarily eat leaves and twigs rather than grazing on grass (unlike gazelle, bison)",llm_property +deer,timid_behavior,HasProperty,0.8,"Deer are typically very shy and easily startled, often fleeing from threats",llm_property +den,small_size,HasProperty,0.8,dens are typically smaller than houses or homes,llm_property +den,natural_location,HasProperty,0.8,"dens are usually found in natural environments like caves or hollow trees, unlike houses",llm_property +den,hidden_entrance,HasProperty,0.8,"dens often have concealed entrances for protection, unlike open burrows or nests",llm_property +den,rocky_or_woody_structure,HasProperty,0.8,"dens often have natural material structures (rocks, wood) rather than man-made materials",llm_property +den,animal-made_or_occupied_by_animals,HasProperty,0.8,"dens are primarily built or used by animals, not humans",llm_property +den,dark_interior,HasProperty,0.8,"dens usually have a dark, enclosed interior space, unlike open nests or homes",llm_property +den,cozy_feeling,HasProperty,0.8,"dens have a snug, enclosed feeling due to their small, contained space",llm_property +denim,wearing_resistant,HasProperty,0.8,"It is specifically designed to be very durable and withstand heavy wear, more so than most other listed fabrics.",llm_property +denim,coarse_texture,HasProperty,0.8,"It has a distinctively rough, thick, and rigid feel compared to softer fabrics like cotton or linen.",llm_property +denim,diagonal_woven_pattern,HasProperty,0.8,"Its weave is a characteristic diagonal rib pattern (twill weave), unlike the plain weaves of many other fabrics.",llm_property +denim,dark_blue_color,HasProperty,0.8,"Denim is most often associated with a deep indigo blue dye, a color not typical of many other common fabrics.",llm_property +denim,heavy_weight,HasProperty,0.8,It is significantly heavier and thicker than lightweight fabrics like haircloth or burlap.,llm_property +denim,sound_when_rubbed,HasProperty,0.8,"It makes a distinct, somewhat loud rustling or crinkling sound when rubbed, different from the softer sounds of other fabrics.",llm_property +desert,sandy_surface,HasProperty,0.8,"Desert floors are typically covered in sand, unlike grasslands or pastures.",llm_property +desert,low_vegetation,HasProperty,0.8,"Deserts have very sparse or stunted plant life, unlike forests or gardens.",llm_property +desert,high_temperatures,HasProperty,0.8,Deserts are typically much hotter during the day than other landscapes.,llm_property +desert,absence_of_water,HasProperty,0.8,"Deserts lack ponds, lakes, or streams, distinguishing them from similar landscapes.",llm_property +desert,extremely_dry,HasProperty,0.8,"Deserts have very low humidity and rainfall, unlike humid grasslands or forests.",llm_property +desk,property,HasProperty,0.8,"typically has a flat, horizontal surface",llm_property +dessert,sweet_taste,HasProperty,0.8,"Desserts are typically sweet, unlike savory items like salad, soup, or meat.",llm_property +dessert,sugary_texture,HasProperty,0.8,"Often have a high sugar content, giving them distinct textures like crumbly, gooey, or creamy, unlike savory foods.",llm_property +dessert,decadent_appearance,HasProperty,0.8,"Usually visually appealing with elaborate presentation, unlike simpler foods like banana or cereal.",llm_property +dessert,creamy_texture,HasProperty,0.8,"Many desserts are creamy, unlike the non-creamy textures of most other listed foods.",llm_property +dessert,high_sugar_content,HasProperty,0.8,"Desserts are specifically known for their high sugar levels, distinguishing them from lower-sugar foods.",llm_property +dessert,eaten_last,HasProperty,0.8,"Desserts are typically consumed after the main course, unlike other foods that are eaten at different meal times.",llm_property +dessert,refined_sweet_aroma,HasProperty,0.8,Often have a distinct sweet aroma that is more refined than the natural smells of other foods.,llm_property +diamond,hardness,HasProperty,0.8,"It is much harder than any other material listed, ranking highest on the Mohs scale.",llm_property +diamond,brilliance,HasProperty,0.8,It reflects and refracts light more intensely than most other stones or materials.,llm_property +diamond,clarity,HasProperty,0.8,"It is often transparent with high clarity, unlike opaque or translucent materials like chalk or ice.",llm_property +diamond,coldness,HasProperty,0.8,It feels noticeably cold to the touch due to its high thermal conductivity.,llm_property +diamond,shape,HasProperty,0.8,Natural diamonds often have a characteristic octahedral crystal shape.,llm_property +dirt,color_variation,HasProperty,0.8,"dirt ranges from brown to black, unlike most other materials that are more uniform in color",llm_property +dirt,texture_variation,HasProperty,0.8,"dirt can be gritty, fine, or clumpy, unlike many other materials that have more consistent textures",llm_property +dirt,smell_earthiness,HasProperty,0.8,"dirt has a distinct earthy smell when damp, unlike most other materials",llm_property +dirt,composition_complexity,HasProperty,0.8,"dirt contains organic matter, rocks, minerals, and microorganisms, unlike many other materials that are more homogenous",llm_property +dirt,porosity,HasProperty,0.8,"dirt is often permeable and holds moisture, unlike many other listed materials",llm_property +dirt,weathering_appearance,HasProperty,0.8,"dirt is often worn-down and weathered in appearance, unlike many other materials",llm_property +dirt,abrasiveness,HasProperty,0.8,"dirt can be rough and abrasive to the touch, unlike many smoother materials",llm_property +ditch,"rough,_uneven_surface",HasProperty,0.8,"Often formed by erosion or excavation, unlike smooth meadows or deserts",llm_property +ditch,"damp,_muddy_bottom",HasProperty,0.8,"Usually collects water or holds moisture, unlike dry deserts or dry meadows",llm_property +ditch,"narrow,_defined_shape",HasProperty,0.8,"Typically a thin, linear feature, unlike expansive oceans or grasslands",llm_property +ditch,often_lined_with_weeds_or_reeds,HasProperty,0.8,"Vegetation grows along edges, unlike bare deserts or open oceans",llm_property +ditch,can_contain_stagnant_water,HasProperty,0.8,"Holds still water, unlike flowing creeks or deep oceans",llm_property +dodo,flightless,HasProperty,0.8,"Unlike most birds in the list, dodos could not fly.",llm_property +dodo,obese_body,HasProperty,0.8,"Had a very large, heavy body compared to other birds.",llm_property +dodo,short_legs,HasProperty,0.8,"Possessed stubby, thick legs unlike the longer legs of many birds.",llm_property +dodo,round_head,HasProperty,0.8,"Had a relatively round, large head compared to the more pointed heads of many birds.",llm_property +dodo,curved_bill,HasProperty,0.8,"Characterized by a distinctively curved, hooked bill.",llm_property +dodo,non-migratory,HasProperty,0.8,Did not migrate seasonally like many other birds.,llm_property +dogwood,"bark_with_unique_reddish-brown,_patchy_appearance",HasProperty,0.8,"Dogwood bark often has distinct, scaly patterns unlike the smoother or thicker bark of others",llm_property +dogwood,"flowers_with_large,_showy_white_bracts",HasProperty,0.8,"Dogwood is known for its prominent, petal-like bracts, unlike the smaller true flowers of most other trees",llm_property +dogwood,leaves_with_distinct_pointed_tips_and_prominent_veins,HasProperty,0.8,Dogwood leaves have a characteristic shape and venation not seen in broadleaf trees like oak or hickory,llm_property +dogwood,"fruits_that_are_small,_round,_and_bright_red_to_pinkish",HasProperty,0.8,"Dogwood produces unique, berry-like fruit differing in size and color from the nuts or drupes of others",llm_property +dogwood,"deciduous_nature,_losing_leaves_in_autumn",HasProperty,0.8,"Unlike evergreen trees, dogwood is deciduous, shedding its leaves seasonally",llm_property +dolphin,breathes_air,HasProperty,0.8,"Dolphins must surface to breathe through a blowhole, unlike fish like bass or herring which breathe underwater.",llm_property +dolphin,lives_in_water,HasProperty,0.8,"Dolphins are marine mammals, unlike land animals like deer or bull.",llm_property +dolphin,intelligent_behavior,HasProperty,0.8,"Dolphins exhibit high intelligence, problem-solving, and complex social behaviors not typically seen in fish or other listed animals.",llm_property +dolphin,emit_clicking_sounds,HasProperty,0.8,"Dolphins use echolocation, emitting high-pitched clicks to navigate and hunt, which is unique among the listed animals.",llm_property +dolphin,slim_body_shape,HasProperty,0.8,"Dolphins have a streamlined, fish-like body shape, distinguishing them from more robust land animals like deer or bull.",llm_property +dolphin,grayish-blue_color,HasProperty,0.8,"Dolphins often have a grayish-blue coloration, different from the typical silver/green of many fish (bass, herring) or the brown of land animals (deer, bull).",llm_property +dolphin,active_swimmer,HasProperty,0.8,"Dolphins are highly energetic and active swimmers, unlike less agile fish like blowfish or earthworm.",llm_property +door,wooden_frame,HasProperty,0.8,Most doors have a sturdy wooden or metal frame that holds the panel.,llm_property +door,movable_panel,HasProperty,0.8,"Doors are designed to swing open and closed, unlike fixed structures like windows or fences.",llm_property +door,rectangular_shape,HasProperty,0.8,"Most doors are tall, flat rectangles, unlike irregular shapes of fireplaces or porches.",llm_property +door,placed_between_rooms,HasProperty,0.8,Doors are specifically positioned to connect two distinct spaces.,llm_property +door,has_a_hinge,HasProperty,0.8,Doors typically have hinges allowing them to swing on one side.,llm_property +door,has_a_lockable_handle,HasProperty,0.8,"Doors usually have handles and can be locked for security, unlike most other structures.",llm_property +dove,coloration,HasProperty,0.8,"Generally has a muted, soft color palette like gray, brown, or pinkish hues, unlike the bright colors of kingfishers or quetzals.",llm_property +dove,size_shape,HasProperty,0.8,"Medium-sized with a plump body, rounded head, and short, broad tail, distinct from the long, thin tails of terns or herons.",llm_property +dove,flight,HasProperty,0.8,"Flies with steady, rhythmic wingbeats and often makes a whistling sound, unlike the erratic flight of bowerbirds or the dive of kingfishers.",llm_property +dove,behavior,HasProperty,0.8,"Often seen cooing softly and may perform courtship rituals like bowing or tail-fanning, unlike the dramatic displays of some other birds.",llm_property +dove,feeding,HasProperty,0.8,"Eats seeds and grains, distinguishing it from carnivorous (hawks, pelicans) or insectivorous species.",llm_property +drawer,slides_in_and_out,HasProperty,0.8,Moves horizontally on tracks or runners,llm_property +drawer,rectangular_or_square_shape,HasProperty,0.8,"Typically has flat, right-angled sides",llm_property +drawer,part_of_a_larger_piece_of_furniture,HasProperty,0.8,"Usually nested within a chest, cabinet, or desk",llm_property +drawer,lays_horizontally,HasProperty,0.8,Its opening and contents are level with the ground,llm_property +drawer,made_of_wood_or_metal,HasProperty,0.8,"Common materials differ from glass, plastic, or ceramic of other containers",llm_property +drawer,often_has_a_handle,HasProperty,0.8,Features a grip to pull it open,llm_property +dress,length,HasProperty,0.8,"A dress typically covers the torso and extends down the legs, unlike most other clothing items.",llm_property +dress,fit,HasProperty,0.8,"Dresses are often designed to drape or contour the body, unlike jackets which are structured or underwear which is minimal.",llm_property +dress,appearance,HasProperty,0.8,"Dresses usually have distinct aesthetic elements like collars, belts, or hems that differentiate them from simple functional items like ties or scarves.",llm_property +dress,material,HasProperty,0.8,"Dresses are commonly made from flowing fabrics like silk or cotton, which contrasts with the stiffer materials often used for jackets.",llm_property +dress,wearing_style,HasProperty,0.8,"Dresses are usually worn as outer garments, unlike underwear which is worn beneath other clothing or scarves which are accessories.",llm_property +drill,spinning_action,HasProperty,0.8,It rotates rapidly to bore holes,llm_property +drill,pointed_bit,HasProperty,0.8,Has a sharp end designed to cut into materials,llm_property +drill,hollow_center,HasProperty,0.8,Often has an empty core to create a hole,llm_property +drill,power_source,HasProperty,0.8,Usually requires electricity or battery to operate,llm_property +drill,noise_when_active,HasProperty,0.8,Makes a loud buzzing or whirring sound when in use,llm_property +drill,smooth_handle,HasProperty,0.8,"Often has a comfortable, grippable handle for control",llm_property +drill,metallic_appearance,HasProperty,0.8,"Frequently made of metal, giving it a shiny look",llm_property +drum,round_shape,HasProperty,0.8,"Most drums have a circular body, unlike instruments like cello (curved), zither (rectangular), organ (tall/boxy), mandolin (teardrop), oboe (conical), bass (curved), recorder (cylindrical/with holes), xylophone (bars)",llm_property +drum,skin_cover,HasProperty,0.8,"Typically covered in a stretched membrane (skin), unlike cello (wood), zither (wood), organ (pipes/wood), mandolin (wood), oboe (wood/metal), bass (strings), recorder (wood/plastic), xylophone (metal bars)",llm_property +drum,beat_sound,HasProperty,0.8,"Sound is produced by being struck, unlike oboe (reed), recorder (blown), organ (air), bass (strings), cello (strings), zither (strings), mandolin (strings), xylophone (hit bars)",llm_property +drum,vibrating_membrane,HasProperty,0.8,"Makes sound by the vibrating skin, unlike string instruments (vibrating strings), woodwinds (vibrating air), organ (vibrating air), xylophone (vibrating bars)",llm_property +drum,thick/heavy_body,HasProperty,0.8,"Often has a substantial, heavy body to hold the skin tension, unlike instruments like recorder or oboe which are lighter",llm_property +duplex,property,HasProperty,0.8,explanation,llm_property +duplex,two_separate_living_units,HasProperty,0.8,a duplex has exactly two distinct residences,llm_property +duplex,divided_horizontally,HasProperty,0.8,the two units are typically separated by a common floor or ceiling,llm_property +duplex,has_shared_walls,HasProperty,0.8,the units are attached and share common walls,llm_property +duplex,usually_two_entrances/exits,HasProperty,0.8,each unit has its own separate access point,llm_property +duplex,often_two_separate_roof_sections,HasProperty,0.8,may have two distinct roof lines or a single roof with a central division,llm_property +duplex,can_be_owner-occupied_or_rental,HasProperty,0.8,may be lived in by one family or rented out to two separate families,llm_property +dust,small_particles,HasProperty,0.8,"dust consists of tiny, loose particles, unlike fibers, strings, or solid materials",llm_property +dust,fine_texture,HasProperty,0.8,"feels very smooth and powdery when touched, unlike rough or solid materials",llm_property +dust,light_weight,HasProperty,0.8,"individual dust particles are extremely light, unlike heavy materials like tar or concrete",llm_property +dust,dry_appearance,HasProperty,0.8,"typically looks dry and non-glossy, unlike waxy, tar, or ceramic materials",llm_property +dust,grayish_color,HasProperty,0.8,"often appears dull gray or brown, unlike the bright colors of feathers or the transparency of diamond",llm_property +dust,easily_dispersed,HasProperty,0.8,"dust can be easily blown or scattered by air currents, unlike solid or cohesive materials",llm_property +eagle,"sharp,_hooked_beak",HasProperty,0.8,"For tearing flesh, unlike most other birds' seed- or insect-eating beaks",llm_property +eagle,"powerful,_muscular_legs",HasProperty,0.8,Strong legs for hunting and carrying prey,llm_property +eagle,"large,_broad_wingspan",HasProperty,0.8,Wide wings for soaring on thermals,llm_property +eagle,"keen,_piercing_eyesight",HasProperty,0.8,Exceptional vision to spot prey from great distances,llm_property +eagle,soaring_flight_pattern,HasProperty,0.8,"Glides high and steady, unlike the flapping or hovering of most other birds",llm_property +eagle,"fierce,_deep-pitched_screech",HasProperty,0.8,"Loud, sharp call used for communication",llm_property +eagle,"sharp,_curved_talons",HasProperty,0.8,Large claws for capturing and holding prey,llm_property +eagle,territorial_and_predatory_behavior,HasProperty,0.8,Actively hunts and defends large territories,llm_property +earth,color_brown_or_tan,HasProperty,0.8,"Often appears in shades of brown or tan due to minerals and organic matter, unlike the clear water of rivers or ponds.",llm_property +earth,texture_rough_and_varied,HasProperty,0.8,"Can range from fine powder to large, jagged rocks, unlike the smooth surfaces of quartz or calm waters.",llm_property +earth,"smell_damp,_organic,_or_mineral",HasProperty,0.8,"Has a distinctive earthy smell from decomposing matter or minerals, unlike the clean scent of water or the artificial smell of orchards.",llm_property +earth,sound_crunchy_or_crumbly_when_walked_on,HasProperty,0.8,"Makes a distinct sound when stepped on or crushed, unlike the flowing sound of rivers or the silence of salt.",llm_property +earth,weight_generally_heavy,HasProperty,0.8,"Is solid and dense, unlike the light, flowing nature of water or the delicate appearance of orchards.",llm_property +earth,"appearance_forms_hills,_slopes,_and_valleys",HasProperty,0.8,Naturally shapes landscapes in ways that water bodies or minerals do not.,llm_property +earthworm,worm-like_shape,HasProperty,0.8,"Its long, cylindrical body without legs or arms",llm_property +earthworm,slimy_texture,HasProperty,0.8,Its body is covered in moist mucus,llm_property +earthworm,no_visible_eyes,HasProperty,0.8,Its sensory organs are very different from most other animals,llm_property +earthworm,burrowing_behavior,HasProperty,0.8,It lives underground and moves through soil,llm_property +earthworm,absence_of_limbs,HasProperty,0.8,"It has no arms, legs, wings, or fins",llm_property +earthworm,vibration-sensitive,HasProperty,0.8,It responds to vibrations in the ground,llm_property +earwig,body_shape,HasProperty,0.8,"Long, flattened body with distinct pincers at the rear",llm_property +earwig,pincers,HasProperty,0.8,Curved cerci (pincers) at the abdomen tip used for defense or grasping,llm_property +earwig,wings,HasProperty,0.8,"Membranous hindwings folded under short, leathery forewings",llm_property +earwig,behavior,HasProperty,0.8,"Nocturnal activity, hiding in dark, moist places during the day",llm_property +earwig,antennae,HasProperty,0.8,"Short, multisegmented antennae, often thicker than those of many other insects",llm_property +eel,elongated_snake-like_body,HasProperty,0.8,"Unlike most other fish that have a more streamlined or compressed body shape, eels have an extremely long, slender body.",llm_property +eel,"smooth,_slimy_skin",HasProperty,0.8,"Most fish have scales, but eels typically have smooth, scaleless skin that feels slimy to the touch.",llm_property +eel,"jaw_with_sharp,_fang-like_teeth",HasProperty,0.8,"While some fish have teeth, eels often have a distinctive set of long, sharp, fang-like teeth used to grasp prey.",llm_property +eel,"strong,_undulating_swimming_motion",HasProperty,0.8,"Eels move by making serpentine, side-to-side undulations, unlike the tail-powered swimming of most fish.",llm_property +eel,can_survive_out_of_water_briefly,HasProperty,0.8,"Some eel species can survive for short periods out of water, unlike most fish which quickly suffocate when out of water.",llm_property +eel,no_pelvic_fins_or_dorsal_fins_supported_by_bony_spines,HasProperty,0.8,Eels lack the prominent pelvic fins or strong spiny dorsal fins common in many other fish.,llm_property +eel,often_found_in_freshwater_and_marine_environments,HasProperty,0.8,"Eels are uniquely known for undertaking long migrations between freshwater and saltwater habitats, unlike most fish which stay in one environment.",llm_property +egg,shape,HasProperty,0.8,"oval or rounded, unlike most other items which are more irregular or uniform in shape",llm_property +egg,texture_(shell),HasProperty,0.8,"hard, brittle outer shell that needs to be cracked, unlike soft or unshelled foods",llm_property +egg,color_(shell),HasProperty,0.8,"typically white or brown, a distinctive color compared to the varied colors of other foods",llm_property +egg,texture_(inside),HasProperty,0.8,"liquid or semi-solid when raw, distinct from solid or dry textures of others",llm_property +egg,size,HasProperty,0.8,relatively small and portable compared to many other food items in the list,llm_property +eggplant,violet_skin,HasProperty,0.8,"most have green or white skin, eggplant has a distinct purple color",llm_property +eggplant,shiny_surface,HasProperty,0.8,"skin is often glossy, unlike matte finish of potatoes or radishes",llm_property +eggplant,oval_shape,HasProperty,0.8,"typically elongated oval, unlike round potatoes or irregular asparagus",llm_property +eggplant,"smooth,_firm_skin",HasProperty,0.8,"skin feels smooth and taut, unlike bumpy cauliflower or leafy kale",llm_property +eggplant,"white,_melty_flesh",HasProperty,0.8,"flesh is soft and almost melts when cooked, unlike starchy potatoes or firm kohlrabi",llm_property +emerald,color,HasProperty,0.8,"Emerald is a distinct green color, unlike the reds of garnet and ruby or the variety of colors in other stones.",llm_property +emerald,hardness,HasProperty,0.8,"Emerald is relatively hard, ranking 7.5-8 on the Mohs scale, which distinguishes it from softer stones like alabaster.",llm_property +emerald,clarity,HasProperty,0.8,"Emeralds often have visible inclusions called ""jardin,"" which give them a unique, slightly cloudy appearance compared to clearer gems like ruby.",llm_property +emerald,cutting,HasProperty,0.8,"Emeralds are typically cut in an emerald cut (step cut) to enhance their brilliance, a style less common for other gemstones.",llm_property +emerald,crystal_structure,HasProperty,0.8,"Emerald is a variety of beryl, and its crystal structure is hexagonal, which is different from the amorphous or cubic structures of many other gemstones.",llm_property +emerald,refractive_index,HasProperty,0.8,"Emerald has a specific refractive index (1.577–1.585), which distinguishes it from stones with different refractive properties, like garnet or agate.",llm_property +emerald,origin,HasProperty,0.8,"Emeralds are often associated with specific locales (e.g., Colombia), whereas other stones may not have such iconic geographic origins.",llm_property +emu,long_neck,HasProperty,0.8,Taller and more visibly elongated than other listed animals,llm_property +emu,brown_feathers,HasProperty,0.8,"Feathers appear grey-brown, unlike ostrich's white/black",llm_property +emu,two_toes,HasProperty,0.8,"Only two large toes on each foot, unlike most four-toed animals",llm_property +emu,waddles_when_walks,HasProperty,0.8,Unique sideways gait instead of normal leg movement,llm_property +emu,large_body_size,HasProperty,0.8,"Significantly larger than small primates, reptiles or mammals listed",llm_property +engine,smoky_exhaust,HasProperty,0.8,produces visible smoke when running,llm_property +engine,luminous_gauges,HasProperty,0.8,has illuminated dials and indicators,llm_property +engine,low_humming_noise,HasProperty,0.8,"emits a deep, continuous vibrating sound",llm_property +engine,hot_surfaces,HasProperty,0.8,generates significant heat during operation,llm_property +engine,greasy_texture,HasProperty,0.8,often covered in oil or grease,llm_property +engine,complex_mechanical_structure,HasProperty,0.8,contains numerous interconnected parts,llm_property +engine,powerful_vibrations,HasProperty,0.8,creates strong shaking when running,llm_property +engine,metallic_smell,HasProperty,0.8,smells like hot metal and fuel,llm_property +evergreen,leaves_remain_green_all_year,HasProperty,0.8,"Unlike deciduous trees, which lose leaves seasonally",llm_property +evergreen,needles_instead_of_broad_leaves,HasProperty,0.8,Characteristic leaf shape of many evergreens (like pines),llm_property +evergreen,cones_or_berry_fruits,HasProperty,0.8,Many evergreens produce distinctive reproductive structures,llm_property +evergreen,often_smells_like_pine_or_fir,HasProperty,0.8,"Strong, resinous aroma unique to many evergreens",llm_property +evergreen,foliage_stays_on_branches,HasProperty,0.8,Distinguishing physical structure from deciduous trees,llm_property +evergreen,often_has_waxy_leaf_coating,HasProperty,0.8,"Helps prevent water loss, giving leaves a glossy sheen",llm_property +fabric,property,HasProperty,0.8,"is typically woven or knitted, not solid or layered",llm_property +falcon,"sharp,_hooked_beak",HasProperty,0.8,"Unlike the long, curved beaks of hornbills, or flat beaks of gulls/pigeons",llm_property +falcon,"powerful,_pointed_wings",HasProperty,0.8,"Distinctive from broad wings of eagles/condors, or long wings of storks",llm_property +falcon,"rapid,_high-pitched_calls",HasProperty,0.8,"Different from the honks of geese, squawks of parakeets, or caws of crows",llm_property +falcon,exceptionally_keen_eyesight,HasProperty,0.8,"Allows spotting prey from extreme distances, unlike other birds",llm_property +falcon,swooping_hunting_flight,HasProperty,0.8,"Uses speed and agility for hunting, unlike soaring flight of eagles/condors",llm_property +farm,structure,HasProperty,0.8,"Contains man-made elements like buildings and fences, unlike natural landscape features",llm_property +farm,layout,HasProperty,0.8,"Organized into distinct sections for different purposes (e.g. fields, barns)",llm_property +farm,functionality,HasProperty,0.8,Designed for agricultural production (growing crops or raising animals),llm_property +farm,human_presence,HasProperty,0.8,"Shows evidence of human activity and management, unlike purely natural features",llm_property +farm,animals,HasProperty,0.8,"Often contains domesticated animals, which are absent in most other listed items",llm_property +farm,tools,HasProperty,0.8,"Presence of agricultural tools and equipment, not found in natural landscapes",llm_property +farm,crops,HasProperty,0.8,"May contain cultivated plants, distinguishing it from natural vegetation",llm_property +fat,observable_properties:,HasProperty,0.8,fat is observable_properties:,llm_property +fat,white_color,HasProperty,0.8,Fat from animals is typically white or pale yellow when solid,llm_property +fat,oily_texture,HasProperty,0.8,It feels greasy or slippery to the touch,llm_property +fat,solid_at_room_temp,HasProperty,0.8,Animal fats solidify at room temperature unlike most oils,llm_property +fat,strong_flavor,HasProperty,0.8,Fat contributes richness and strong flavor to foods,llm_property +fat,visible_layer,HasProperty,0.8,Often appears as a distinct layer on top of meat or broth,llm_property +fat,better_frying,HasProperty,0.8,Melts and behaves differently in cooking than other foods,llm_property +fat,solid_white_crystals,HasProperty,0.8,"When frozen, appears as solid white crystalline structure",llm_property +feather,light_weight,HasProperty,0.8,"Feathers are extremely light compared to materials like wood, ice, or rust, and lighter than the birds themselves.",llm_property +feather,fluffy,HasProperty,0.8,"They have a soft, airy texture unlike the hard textures of ice, wood, or rust.",llm_property +feather,white_color_(often),HasProperty,0.8,"While some are colorful, many feathers are white, distinguishing them from the brown/grey of wood/rust/ice or the specific colors of birds.",llm_property +feather,airy_texture,HasProperty,0.8,"Feathers have a delicate, light texture that allows them to trap air.",llm_property +feather,quill_shape,HasProperty,0.8,"The base of a feather (the quill) has a distinctive hollow, tube-like structure.",llm_property +feather,flexible,HasProperty,0.8,"They bend easily without breaking, unlike ice, wood, or rust.",llm_property +feather,smooth_surface,HasProperty,0.8,The surface of a feather shaft is typically smooth to the touch.,llm_property +feather,dusty_smell,HasProperty,0.8,"Feathers can have a faint, dusty or pungent odor when handled or near birds.",llm_property +fence,wooden,HasProperty,0.8,"often made of wood, distinguishing from structures made of stone, metal, or brick",llm_property +fence,tall_and_straight,HasProperty,0.8,typically taller and more vertical than other structures listed,llm_property +fence,divides_space,HasProperty,0.8,"designed to separate areas, unlike structures primarily for habitation or function",llm_property +fence,outdoor_structure,HasProperty,0.8,"commonly found outside, unlike most other listed structures which are typically indoor",llm_property +fence,horizontal_planks,HasProperty,0.8,"often has visible horizontal planks or rails, a unique design feature",llm_property +fence,solid_barrier,HasProperty,0.8,"provides a continuous boundary, unlike things like windows or doors which have openings",llm_property +ferret,"small,_slim_body",HasProperty,0.8,"Unlike the larger ostrich, zebra, or turtle",llm_property +ferret,furred,HasProperty,0.8,"Unlike the feathered ostrich, scaled turtle, or hairless spider, earthworm, worm, or centipede",llm_property +ferret,four_legs,HasProperty,0.8,"Unlike the two-legged ostrich, spider, centipede, or earthworm, worm",llm_property +ferret,"long,_thin_tail",HasProperty,0.8,"Unlike the short tails of cat, turtle, or marmoset, or the absent tails of ostrich, spider, earthworm, worm, or centipede",llm_property +ferret,pointed_nose/mouth,HasProperty,0.8,"Unlike the flat beak of ostrich or turtle, or the many-legged mouthparts of spider, centipede",llm_property +ferret,capable_of_crawling_into_small_spaces,HasProperty,0.8,"Unlike the larger ostrich, zebra, turtle or marmoset",llm_property +fiber,strong,HasProperty,0.8,It is strong and durable compared to straw or cypress,llm_property +fiber,stringy,HasProperty,0.8,"It has long, thread-like strands unlike wax or ice",llm_property +fiber,vegetable-based,HasProperty,0.8,"It comes from plants, unlike polyester or ice",llm_property +fiber,textile-useful,HasProperty,0.8,"It can be spun into thread or fabric, unlike cabbage or medicine",llm_property +fiber,non-food,HasProperty,0.8,"It is typically not eaten, unlike cabbage or medicine",llm_property +fiber,rough-texture,HasProperty,0.8,"It often feels rough or coarse to the touch, unlike wax",llm_property +field,planted_crops,HasProperty,0.8,"Fields are specifically cultivated with crops, unlike natural landscapes like jungles or deserts.",llm_property +field,"open,_unbroken_area",HasProperty,0.8,"Fields are large, flat, and open, distinguishing them from uneven terrains like ridges.",llm_property +field,regularly_mowed_or_cultivated,HasProperty,0.8,"Fields are actively managed, unlike natural grasslands or savannas.",llm_property +field,lack_of_native_vegetation,HasProperty,0.8,"Fields typically lack diverse native plants, unlike meadows or jungles.",llm_property +field,drainage_ditches_or_paths,HasProperty,0.8,"Fields often have man-made drainage systems or access paths, absent in natural landscapes.",llm_property +field,smaller_than_a_pasture,HasProperty,0.8,Fields are usually smaller and more intensely farmed than pastures.,llm_property +field,monoculture_appearance,HasProperty,0.8,"Fields often consist of a single crop type, unlike mixed vegetation areas like grasslands.",llm_property +fig,skin_is_often_covered_in_tiny_bumps,HasProperty,0.8,unlike smooth skins of oranges or peaches,llm_property +fig,"flesh_has_a_jelly-like,_wet_consistency_when_ripe",HasProperty,0.8,unlike the firmer texture of kiwi or watermelon,llm_property +fig,"contains_numerous_small,_crunchy_seeds",HasProperty,0.8,"unlike the few large seeds of a peach or the tiny, soft seeds of a strawberry",llm_property +fig,"often_has_a_slightly_wrinkled,_delicate_skin",HasProperty,0.8,unlike the smooth skin of a lemon or the fuzzy skin of a nectarine,llm_property +fig,"typically_has_a_very_sweet,_honey-like_flavor_profile",HasProperty,0.8,unlike the tartness of a cranberry or the acidic tang of a lemon,llm_property +fin,property,HasProperty,0.8,brief explanation,llm_property +fin,--,HasProperty,0.8,fin is --,llm_property +fin,finger-like_extension,HasProperty,0.8,"It's a thin, limb-like structure extending from the body",llm_property +fin,flat_&_flexible,HasProperty,0.8,Its surface is broad and can bend,llm_property +fin,water-propulsion,HasProperty,0.8,Used by aquatic animals to push against water,llm_property +fin,bony_support,HasProperty,0.8,Contains hard skeletal structure underneath,llm_property +fin,gliding_support,HasProperty,0.8,Helps with stability and direction in water,llm_property +fin,vibration_sensitivity,HasProperty,0.8,Can detect water movement and pressure changes,llm_property +finch,"sharp,_conical_beak",HasProperty,0.8,"Used for cracking seeds, unlike the more varied beak shapes of other birds",llm_property +finch,often_plump_body,HasProperty,0.8,More compact and stout build compared to many other listed birds,llm_property +finch,often_bright_plumage,HasProperty,0.8,"Vibrant, distinct colors like yellow, red, or brown, setting them apart from the more muted or different-colored species",llm_property +finch,often_sings_a_distinctive_trilling_song,HasProperty,0.8,Unique vocalizations different from the calls of other birds,llm_property +finch,often_feeds_on_seeds_and_insects,HasProperty,0.8,"Specific diet primarily of seeds and insects, unlike others that may fish, probe, or follow other feeding strategies",llm_property +finch,often_found_in_flocks,HasProperty,0.8,"Tendency to gather in groups, which is not common behavior for all birds in the list",llm_property +finch,often_territorial_behavior,HasProperty,0.8,Defending a specific area against other finches,llm_property +firefly,property,HasProperty,0.8,brief explanation,llm_property +firefly,glows_with_bioluminescence,HasProperty,0.8,"emits light from its abdomen, unlike other listed insects",llm_property +firefly,flies_at_night_often,HasProperty,0.8,active when other listed insects are less so,llm_property +firefly,"moves_in_a_slow,_fluttering_manner",HasProperty,0.8,flight pattern is less direct than bees or wasps,llm_property +firefly,typically_has_yellow_or_green_light,HasProperty,0.8,color of its glow is distinctive,llm_property +firefly,"often_seen_in_warm,_humid_environments",HasProperty,0.8,prefers different habitats than many others,llm_property +firefly,smaller_than_many_other_listed_insects,HasProperty,0.8,size is generally smaller than bees or wasps,llm_property +fireplace,structure,HasProperty,0.8,"It's a large, fixed structure designed to contain a fire.",llm_property +fireplace,material,HasProperty,0.8,"Often made of brick, stone, or metal, which is more durable than other items in the list.",llm_property +fireplace,opening,HasProperty,0.8,Features a visible opening (firebox) where flames and smoke are visible.,llm_property +fireplace,smell,HasProperty,0.8,"Can produce a distinct smoky or woodsy smell when in use, unlike most other items.",llm_property +fireplace,heat,HasProperty,0.8,"Emits significant heat when active, a property most others lack when used.",llm_property +fireplace,sound,HasProperty,0.8,"Produces crackling or popping sounds when burning, a unique auditory feature.",llm_property +fireplace,functionality,HasProperty,0.8,"Primarily used for heating or cooking, a different purpose than most others listed.",llm_property +fish,"flat,_scaly_body",HasProperty,0.8,"unlike most other animals, fish have bodies covered in scales",llm_property +fish,wet_skin,HasProperty,0.8,"unlike birds and land mammals, fish have skin that stays moist with water",llm_property +fish,fins_for_movement,HasProperty,0.8,fish use fins instead of legs or wings for locomotion,llm_property +fish,breathes_water,HasProperty,0.8,"fish extract oxygen from water through gills, not air",llm_property +fish,lays_eggs_in_water,HasProperty,0.8,fish typically spawn eggs in aquatic environments,llm_property +flamingo,pink_or_reddish-pink_coloration,HasProperty,0.8,Due to carotenoid pigments in their diet,llm_property +flamingo,"long,_slender_legs",HasProperty,0.8,Often much longer relative to body size than most other birds,llm_property +flamingo,down-curved_bill,HasProperty,0.8,"Bills curve downward, unlike the mostly straight bills of most other birds",llm_property +flamingo,webbed_feet,HasProperty,0.8,Unlike the mostly unwebbed feet of most other birds,llm_property +flamingo,often_found_in_flocks,HasProperty,0.8,Tend to be highly social and form large groups,llm_property +flamingo,stand_on_one_leg,HasProperty,0.8,A distinctive posture often adopted,llm_property +flamingo,filter-feed_on_water,HasProperty,0.8,"Feed by straining food from water, unlike most other birds",llm_property +flamingo,nocturnal_vocalizations,HasProperty,0.8,Known for loud calls often made at night,llm_property +flask,metallic,HasProperty,0.8,"often made of metal like stainless steel or silver, unlike many other containers made of glass or plastic",llm_property +flask,thick_walls,HasProperty,0.8,"designed to insulate, thicker than most other containers",llm_property +flask,carryable,HasProperty,0.8,"typically has a handle or loop for carrying, more portable",llm_property +flask,capable_of_keeping_contents_hot/cold,HasProperty,0.8,insulation purpose is key feature,llm_property +flask,narrow_neck,HasProperty,0.8,distinct shape for pouring or sipping,llm_property +flask,often_cylindrical,HasProperty,0.8,"common shape is round and tall, not wide",llm_property +flask,can_be_sealed_tightly,HasProperty,0.8,usually has a screw-top or cork that seals securely,llm_property +flesh,soft_texture,HasProperty,0.8,Flesh is often soft and yielding when compared to the hard shells of insects or the rigid structures of other items.,llm_property +flesh,red_or_pink_color,HasProperty,0.8,"Many types of flesh have a distinct red or pink hue, unlike most of the other items listed.",llm_property +flesh,salty_taste,HasProperty,0.8,"Cooked or processed flesh often has a salty taste, whereas items like cereal or gnocchi have different flavor profiles.",llm_property +flesh,muscular_texture,HasProperty,0.8,"Flesh contains muscle fibers, giving it a unique stringy or fibrous texture when compared to items like a pickle or slug.",llm_property +flesh,browned_appearance,HasProperty,0.8,"When cooked, flesh often turns brown, a change not typical in items like cereal or centipedes.",llm_property +flint,hardness,HasProperty,0.8,flint is extremely hard and durable compared to most other stones,llm_property +flint,conchoidal_fracture,HasProperty,0.8,"breaks into sharp, smooth-edged fragments unlike most other stones",llm_property +flint,gray/black_color,HasProperty,0.8,typically darker and less varied in color than most other stones,llm_property +flint,metallic_sparks,HasProperty,0.8,produces bright sparks when struck against steel (unique to flint),llm_property +flint,rough_surface,HasProperty,0.8,naturally rough texture unlike the smoother surfaces of marble or alabaster,llm_property +flint,acid-resistant,HasProperty,0.8,doesn't dissolve in weak acids as many other stones would,llm_property +flock,"a_flock_of_birds_is_typically_a_group_of_birds,_so_i_need_to_list_properties_that_distinguish_a_flock_from_the_other_animals_on_the_list._flocks_are_not_a_single_animal_but_a_group_behavior._here_are_the_distinguishing_properties:",HasProperty,0.8,"flock is a_flock_of_birds_is_typically_a_group_of_birds,_so_i_need_to_list_properties_that_distinguish_a_flock_from_the_other_animals_on_the_list._flocks_are_not_a_single_animal_but_a_group_behavior._here_are_the_distinguishing_properties:",llm_property +flock,group_movement,HasProperty,0.8,"Flocks move together in coordinated patterns, unlike solitary animals or groups that don't move together.",llm_property +flock,social_interaction,HasProperty,0.8,"Flocks display collective behaviors like murmuration, unlike most solitary animals.",llm_property +flock,audible_chirping,HasProperty,0.8,"Flocks often make a collective chirping or calling sound, distinct from the sounds made by solitary animals.",llm_property +flock,visual_density,HasProperty,0.8,"Flocks appear as dense, moving clouds or masses, unlike the sparse appearance of solitary animals.",llm_property +flock,airborne_presence,HasProperty,0.8,"Flocks are typically found in the air, unlike ground-dwelling animals.",llm_property +flock,quick_flight_response,HasProperty,0.8,"Flocks often react quickly to threats with sudden, unified flight, unlike the slower responses of solitary animals.",llm_property +flock,size_variation,HasProperty,0.8,"Flocks can range from small to very large groups, unlike the fixed group sizes of many other animals.",llm_property +flock,seasonal_migration,HasProperty,0.8,"Many flocks migrate seasonally, unlike many solitary animals that don't travel in groups.",llm_property +flounder,"dense,_flat_body",HasProperty,0.8,"Unlike most fish which are elongated or rounded, flounder are distinctly flat and thin.",llm_property +flounder,both_eyes_on_one_side,HasProperty,0.8,"While other fish have eyes on both sides of their head, flounder's eyes migrate to the same side as they mature.",llm_property +flounder,"crumpled,_bumpy_texture",HasProperty,0.8,"The skin of flounder often has a rougher, mottled appearance compared to the smoother scales of many other fish.",llm_property +flounder,moves_in_a_sliding_motion,HasProperty,0.8,"Instead of swimming with strong tail movements like other fish, flounder glide along the seabed.",llm_property +flounder,can_change_color/pattern,HasProperty,0.8,"Unlike most fish with fixed colors, flounder can adapt their skin to match the seabed.",llm_property +flounder,lays_flat_on_the_bottom,HasProperty,0.8,"Unlike fish that swim in open water, flounder rest directly on the seabed.",llm_property +flower,colorful_petals,HasProperty,0.8,"Most flowers (like dandelion, azalea, orchid) have vivid colors, unlike bamboo, grassland, or boxwood",llm_property +flower,sweet_scent,HasProperty,0.8,"Many flowers (lilac, azalea) have distinct fragrances, unlike bamboo or grass",llm_property +flower,"soft,_delicate_texture",HasProperty,0.8,"Flowers have soft, fragile petals compared to the hard stalks of bamboo or leaves of boxwood",llm_property +flower,blooming_cycle,HasProperty,0.8,"Flowers have a distinct blooming period, unlike evergreen plants (boxwood) or grassland",llm_property +flower,nectar_production,HasProperty,0.8,"Flowers produce nectar to attract pollinators, unlike most other listed plants",llm_property +flute,long_cylindrical_tube,HasProperty,0.8,typical shape with no bell or resonator at the end,llm_property +flute,several_finger_holes_along_tube,HasProperty,0.8,used to change notes by covering/uncovering,llm_property +flute,horizontal_playing_position,HasProperty,0.8,held sideways to blow air across the opening,llm_property +flute,high-pitched_clear_tone,HasProperty,0.8,distinctive sound compared to lower instruments like cello or bass,llm_property +flute,metal_construction_common,HasProperty,0.8,"often made of silver, gold, or brass",llm_property +flute,holds_air_by_blowing_across_opening,HasProperty,0.8,method of sound production differs from reeds or strings,llm_property +flute,"smooth,_uniform_body",HasProperty,0.8,lacks the varied shapes of instruments like bongo or lyre,llm_property +fly,wings,HasProperty,0.8,"Flies typically have two pairs of wings, whereas many others in this category (like earwigs, mealybugs, and mouth) have fewer or none.",llm_property +fly,flight_pattern,HasProperty,0.8,"Flies often have a distinctive, erratic, or buzzing flight pattern that sets them apart from the more direct flight of wasps or ants.",llm_property +fly,eyes,HasProperty,0.8,"Flies have large, prominent compound eyes covering much of their head, unlike the smaller or differently positioned eyes of ants or roaches.",llm_property +fly,antennae,HasProperty,0.8,"Flies usually have short, stubby antennae (aristate), unlike the long, thin antennae of ants or wasps.",llm_property +fly,mouthparts,HasProperty,0.8,"Flies often have a sponging or piercing mouthpart structure, distinct from the chewing mouthparts of ants or roaches.",llm_property +fly,size,HasProperty,0.8,Flies are often relatively small compared to roaches or some other insects in this list.,llm_property +fly,sound,HasProperty,0.8,"Some flies (like houseflies) produce a characteristic buzzing sound during flight, which is less common in other listed insects.",llm_property +flycatcher,some_flycatchers_have_a_slightly_larger_head_compared_to_their_body,HasProperty,0.8,"This distinguishes them from starlings and waxwings, which have more uniformly proportioned bodies",llm_property +flycatcher,flycatchers_are_typically_smaller_in_size_compared_to_grouse_and_cassowary,HasProperty,0.8,This distinguishes them from larger ground-dwelling birds,llm_property +flycatcher,"flycatchers_have_a_distinctive_habit_of_perching_and_then_making_short,_quick_flights_to_catch_insects_in_mid-air",HasProperty,0.8,"This behavior is not typical for most other listed birds like gulls, kites, or petrels",llm_property +flycatcher,"some_flycatchers_have_a_slightly_shorter,_wider_bill_compared_to_kites_and_roadrunners",HasProperty,0.8,This distinguishes them in terms of beak shape,llm_property +flycatcher,"flycatchers_generally_have_muted,_subtle_coloration,_often_browns_and_grays",HasProperty,0.8,This distinguishes them from more colorful birds like waxwings or gulls,llm_property +flycatcher,the_tail_of_a_flycatcher_is_often_slightly_rounded_or_squared-off_compared_to_the_pointed_tail_of_a_kite,HasProperty,0.8,This is a distinguishing feature in tail shape,llm_property +food,edible,HasProperty,0.8,"can be consumed, unlike some items listed",llm_property +food,nutritive,HasProperty,0.8,"provides nourishment, unlike some items listed",llm_property +food,variety,HasProperty,0.8,"encompasses many forms (solid, liquid, etc.), unlike single items listed",llm_property +food,natural_or_processed,HasProperty,0.8,"can be either raw or cooked, unlike some specific items listed",llm_property +forest,ground_covered_with_trees,HasProperty,0.8,"Unlike meadows or grasslands which have short vegetation, forests are dominated by trees.",llm_property +forest,dense_vegetation,HasProperty,0.8,Forests have more closely packed plants than farms or gardens which are often organized or less dense.,llm_property +forest,large_variety_of_species,HasProperty,0.8,Forests host a wider range of plant and animal species than most other landscapes listed.,llm_property +forest,foggy_or_humid_atmosphere,HasProperty,0.8,The high density of trees can create a unique humid or misty environment not found in open landscapes like fields.,llm_property +forest,wide_variety_of_sounds,HasProperty,0.8,"Forests are filled with bird calls, insect noises, and rustling leaves, unlike quieter or more uniform sounds in farmland or gardens.",llm_property +forest,footpaths_or_trails,HasProperty,0.8,"Forests often contain natural paths formed by animals or humans, unlike manicured gardens or flat fields.",llm_property +forest,large_biomass,HasProperty,0.8,The sheer mass of trees and undergrowth in a forest is far greater than in any other listed landscape.,llm_property +fox,reddish-brown_fur,HasProperty,0.8,Distinctive coloration not seen in other listed animals,llm_property +fox,pointed_snout,HasProperty,0.8,Elongated face shape unlike most listed animals,llm_property +fox,bushy_tail,HasProperty,0.8,Prominent tail fur characteristic of foxes,llm_property +fox,nocturnal_behavior,HasProperty,0.8,"Active at night, unlike most other listed animals",llm_property +fox,"sharp,_barking_calls",HasProperty,0.8,Unique vocalizations compared to others,llm_property +fox,"small,_agile_body",HasProperty,0.8,Compact size and quick movements set it apart from others,llm_property +fox,keen_sense_of_smell,HasProperty,0.8,"Strong olfactory ability used for hunting, unlike others",llm_property +fruit,color_variation,HasProperty,0.8,"Fruits vary widely in color (red, yellow, green, purple, etc.), distinguishing them from more uniformly colored items like squash.",llm_property +fruit,texture_diversity,HasProperty,0.8,"Fruits have diverse textures, from smooth (peach) to rough (pineapple), to fibrous (kiwi), unlike more uniform textures like tomato or cranberry.",llm_property +fruit,size_range,HasProperty,0.8,"Fruits span a broad size range, from tiny (cranberry) to large (watermelon, though not listed), unlike the more consistent sizes of some others like nectarine or peach.",llm_property +fruit,juiciness_level,HasProperty,0.8,"Fruits are typically juicy, especially when ripe, unlike drier options like squash or the firm flesh of cranberry.",llm_property +fruit,seed_variation,HasProperty,0.8,"Fruits have varied seed structures—some have many tiny seeds (strawberry), some have single large seeds (peach, papaya), and others are seedless (like some grapes, not listed but common), unlike the more uniform seedless nature of tomato or cranberry.",llm_property +fruit,sweetness_level,HasProperty,0.8,"Fruits are generally sweet, especially when ripe, distinguishing them from more bland or neutral-tasting items like squash.",llm_property +fruit,fragrance_intensity,HasProperty,0.8,"Fruits often have a strong, distinctive fragrance when ripe, unlike items like tomato or cranberry that are less aromatic.",llm_property +fuel,smell,HasProperty,0.8,"Has a distinctive pungent, chemical odor (unlike natural materials like fur or straw)",llm_property +fuel,appearance,HasProperty,0.8,Often appears as a thick liquid (unlike solids like clay or bone),llm_property +fuel,texture,HasProperty,0.8,Feels oily or viscous to the touch (unlike hard materials like aluminum or dusty materials like dirt),llm_property +fuel,flammability,HasProperty,0.8,Ignites and burns readily (a key functional property not shared by any other listed material),llm_property +fuel,color,HasProperty,0.8,"Typically has a dark color (e.g., black, dark brown) unlike bright or natural colors of other materials",llm_property +fuel,energy_release,HasProperty,0.8,Releases significant heat and energy when burned (unique functional property),llm_property +fur,property,HasProperty,0.8,soft to the touch,llm_property +fur,"explanation:_fur_is_notably_soft,_unlike_many_other_materials_like_styrofoam_or_the_hard_shells_of_ostrich_or_blowfish.",HasProperty,0.8,"fur is explanation:_fur_is_notably_soft,_unlike_many_other_materials_like_styrofoam_or_the_hard_shells_of_ostrich_or_blowfish.",llm_property +fur,"explanation:_fur_provides_warmth_by_trapping_air,_a_function_not_shared_by_jewelry,_wrappers,_or_insects.",HasProperty,0.8,"fur is explanation:_fur_provides_warmth_by_trapping_air,_a_function_not_shared_by_jewelry,_wrappers,_or_insects.",llm_property +fur,"explanation:_fur_originates_from_an_animal's_skin,_unlike_materials_like_styrofoam_or_wrappers,_which_are_manufactured.",HasProperty,0.8,"fur is explanation:_fur_originates_from_an_animal's_skin,_unlike_materials_like_styrofoam_or_wrappers,_which_are_manufactured.",llm_property +fur,"explanation:_fur_can_naturally_vary_in_color,_distinguishing_it_from_uniform_materials_like_styrofoam_or_wrappers.",HasProperty,0.8,"fur is explanation:_fur_can_naturally_vary_in_color,_distinguishing_it_from_uniform_materials_like_styrofoam_or_wrappers.",llm_property +fur,"explanation:_fur_can_naturally_detach_from_an_animal,_unlike_jewelry_or_wrappers,_which_remain_intact_unless_removed.",HasProperty,0.8,"fur is explanation:_fur_can_naturally_detach_from_an_animal,_unlike_jewelry_or_wrappers,_which_remain_intact_unless_removed.",llm_property +furniture,softness,HasProperty,0.8,furniture often has upholstered parts for seating or comfort,llm_property +furniture,motion_possibility,HasProperty,0.8,furniture is designed to be moved or rearranged,llm_property +furniture,personal_interaction,HasProperty,0.8,"furniture is used directly by people for sitting, resting, or storage",llm_property +furniture,interior_placement,HasProperty,0.8,"furniture is primarily placed inside buildings, not outdoors",llm_property +furniture,support_function,HasProperty,0.8,"furniture supports human activity or objects (like tables, chairs)",llm_property +furrow,ridges,HasProperty,0.8,Parallel raised lines of earth,llm_property +furrow,channels,HasProperty,0.8,Parallel indentations or grooves,llm_property +furrow,lines,HasProperty,0.8,"Distinct, linear shapes carved into surface",llm_property +furrow,rows,HasProperty,0.8,Arrangement suggesting purposeful human or agricultural creation,llm_property +furrow,soil_color,HasProperty,0.8,Often darker or differently colored earth in the channels,llm_property +gallery,walls_lined_with_art,HasProperty,0.8,Displays visual works as a primary feature,llm_property +gallery,brightly_lit_spaces,HasProperty,0.8,Enhances visibility and appreciation of displayed items,llm_property +gallery,often_high_ceilings,HasProperty,0.8,"Creates an open, spacious atmosphere for viewing",llm_property +gallery,often_contains_large_windows,HasProperty,0.8,"Allows natural light and views, enhancing aesthetics",llm_property +gallery,often_contains_specific_display_pedestals_or_stands,HasProperty,0.8,Used to showcase 3D art pieces,llm_property +gannet,"sharp,_hooked_beak",HasProperty,0.8,used to catch fish underwater,llm_property +gannet,"long,_pointed_wings",HasProperty,0.8,adapted for diving from high altitudes,llm_property +gannet,white_plumage_with_yellow_head,HasProperty,0.8,distinct coloration for identification,llm_property +gannet,"powerful,_diving_flight",HasProperty,0.8,characteristic hunting method,llm_property +gannet,large_body_size,HasProperty,0.8,larger than most other listed birds,llm_property +gannet,pointed_tail_feathers,HasProperty,0.8,aids in maneuverability during dives,llm_property +gannet,often_found_near_coastal_areas,HasProperty,0.8,habitat preference near oceans,llm_property +garden,plants,HasProperty,0.8,"contains cultivated, often ornamental plants",llm_property +garden,ordered_layout,HasProperty,0.8,typically arranged in specific patterns or beds,llm_property +garden,pleasant_odor,HasProperty,0.8,"often emits scents from flowers, herbs, or fresh soil",llm_property +garden,irrigated,HasProperty,0.8,usually requires manual or managed watering,llm_property +garden,pests,HasProperty,0.8,frequently attracts insects or rodents drawn to plants,llm_property +garden,soft_texture,HasProperty,0.8,"ground often tilled or mulched, not hard or rocky",llm_property +garden,mixed_heights,HasProperty,0.8,"has plants of various heights (flowers, shrubs, vegetables)",llm_property +garnet,color_red,HasProperty,0.8,"Garnets are typically red, unlike most other listed stones which have different colors.",llm_property +garnet,shape_regular_crystal,HasProperty,0.8,"Garnets often form well-defined crystal shapes, unlike many other stones that are irregular or amorphous.",llm_property +garnet,hardness_moderate,HasProperty,0.8,"Garnets have a hardness between 6.5-7.5 on Mohs scale, harder than many stones but softer than diamond.",llm_property +garnet,cuttable_gemstone,HasProperty,0.8,"Garnets can be faceted into gemstones, something not typically done with bricks or concrete.",llm_property +garnet,occurrence_native,HasProperty,0.8,"Garnets are naturally occurring minerals, unlike bricks or concrete which are manufactured.",llm_property +gazelle,face,HasProperty,0.8,"Gazelle has large, dark eyes with prominent, black facial markings around them, unlike others in the category.",llm_property +gazelle,legs,HasProperty,0.8,"Gazelle has incredibly slender, long legs adapted for speed, more so than any other listed animal.",llm_property +gazelle,fur,HasProperty,0.8,"Gazelle has a distinctive reddish-brown coat with lighter undersides and a pale, almost white rump, unlike others.",llm_property +gazelle,movement,HasProperty,0.8,"Gazelle can perform a distinctive bounding leap called ""stotting,"" which is not typical for other animals in the category.",llm_property +gazelle,size,HasProperty,0.8,"Gazelle is relatively small and lightweight compared to most other listed animals, like the rhino or tiger.",llm_property +gazelle,behavior,HasProperty,0.8,"Gazelle is typically a fast-moving, alert browser found in open habitats, different from aquatic (dolphin, turtle, snail) or burrowing (marmot, beaver) species.",llm_property +gem,colorful,HasProperty,0.8,"Gems are often prized for their vibrant and varied colors, unlike most other stones which are typically muted or monochromatic",llm_property +gem,shiny,HasProperty,0.8,"Gems have a high luster or shine, often due to their crystalline structure and ability to refract light",llm_property +gem,hard,HasProperty,0.8,"Gems are usually harder than other stones (e.g., granite, marble) on the Mohs scale, making them durable",llm_property +gem,cut,HasProperty,0.8,"Gems are frequently cut or faceted to enhance their brilliance, unlike most natural stones that are left rough",llm_property +gem,precious,HasProperty,0.8,"Gems are valued as precious items (like diamonds, rubies, emeralds), while other stones are more common or utilitarian",llm_property +ginger,shape_of_root,HasProperty,0.8,"Knobby, irregular shape unlike the uniform seeds or ground powders of others",llm_property +ginger,texture_of_raw_root,HasProperty,0.8,"Fibrous and woody when raw, unlike the smooth seeds or fine powders",llm_property +ginger,color_of_root_surface,HasProperty,0.8,"Tan-brown skin, different from black (pepper), white (salt), reddish (chili, paprika), yellow (turmeric), brown (cinnamon, nutmeg, cumin)",llm_property +ginger,aroma,HasProperty,0.8,"Strong, pungent, sharp aroma, distinct from the milder, sweeter, or more floral notes of others",llm_property +ginger,taste,HasProperty,0.8,"Hot, spicy, and zesty flavor, unlike the salty (salt), peppery (pepper), sweet (anise), smoky (thyme), fiery (chili), earthy (paprika), woody (cinnamon), nutty (nutmeg), or caraway-like (cumin) flavors",llm_property +ginseng,root_shape,HasProperty,0.8,"Ginseng has fleshy, forked roots resembling a human figure (""man-root"")",llm_property +ginseng,taste_profile,HasProperty,0.8,"Distinctive bitter and slightly sweet flavor, not found in most other plants",llm_property +ginseng,aromatic_scent,HasProperty,0.8,"Produces a strong, earthy, woody smell when dried or powdered",llm_property +ginseng,growth_habit,HasProperty,0.8,Grows as a perennial herb with multiple stalks and green berries,llm_property +ginseng,medicinal_use,HasProperty,0.8,"Known for traditional use as an herbal medicine, unlike most other plants listed",llm_property +gladiola,tall_stalk,HasProperty,0.8,"Its flower stalks are significantly taller than most other garden flowers, often reaching several feet.",llm_property +gladiola,spikes_of_flowers,HasProperty,0.8,Its flowers grow along an elongated spike rather than from a single stem.,llm_property +gladiola,sword-shaped_leaves,HasProperty,0.8,"It has long, pointed, stiff leaves that resemble swords.",llm_property +gladiola,vibrant_color_spikes,HasProperty,0.8,Its flowers often come in a wide range of vivid colors arranged linearly on the spike.,llm_property +gladiola,"fleshy,_corm_base",HasProperty,0.8,"It grows from a thick, rounded underground storage organ called a corm, unlike bulbous roots of many others.",llm_property +gladiola,papery_bracts,HasProperty,0.8,"It has distinctive, thin, papery structures (bracts) that often enclose or grow beneath the flowers.",llm_property +glass,translucent,HasProperty,0.8,"Unlike opaque containers like oilcans or bricks, glass is often transparent or semi-transparent",llm_property +glass,smooth_surface,HasProperty,0.8,"Glass has a very smooth, non-porous surface unlike the rough texture of a brick or the textured surface of a chest",llm_property +glass,shimmers,HasProperty,0.8,"Glass surfaces often catch and reflect light, giving them a distinctive shimmer that differs from matte surfaces like a toolbox or kettle",llm_property +glass,elegant_shape,HasProperty,0.8,"Glass objects often have refined, aesthetically pleasing shapes compared to utilitarian forms like trucks or toolboxes",llm_property +gnocchi,shape,HasProperty,0.8,"Small, pillow-shaped pieces, unlike spaghetti's long strands or cereal's flakes",llm_property +gnocchi,texture,HasProperty,0.8,"Soft, slightly dense, like a dumpling, not hard like corn or brittle like lettuce",llm_property +gnocchi,cooking_method,HasProperty,0.8,"Boiled, unlike pizza (baked) or beef/turkey (roasted/grilled)",llm_property +gnocchi,flavor_profile,HasProperty,0.8,"Typically mild, starchy, and slightly sweet, not intensely savory like ham or spicy like some cereals",llm_property +gnocchi,primary_ingredient,HasProperty,0.8,"Made from potatoes, giving it a distinct taste and texture compared to wheat-based spaghetti or butter",llm_property +gold,dense,HasProperty,0.8,It is much heavier than most other metals of similar size.,llm_property +gold,bright_yellow,HasProperty,0.8,"Has a distinctive gold color unlike silver, nickel, or bronze.",llm_property +gold,malleable,HasProperty,0.8,Can be hammered into very thin sheets without breaking.,llm_property +gold,non-tarnishing,HasProperty,0.8,Does not rust or lose its luster when exposed to air or water.,llm_property +gold,heavy,HasProperty,0.8,Feels significantly weighty for its volume compared to many other metals.,llm_property +goldfish,orange_coloration,HasProperty,0.8,"Most goldfish are bright orange, unlike other fish listed which are typically silvery, greenish, or brownish.",llm_property +goldfish,fancy_tail_fins,HasProperty,0.8,"Goldfish often have large, flowing tail fins, whereas most others have smaller, more streamlined fins.",llm_property +goldfish,round_body_shape,HasProperty,0.8,"Goldfish usually have a rounder, fuller body shape compared to the more elongated or flattened bodies of other listed fish.",llm_property +goldfish,upward-facing_mouth,HasProperty,0.8,"Goldfish have a mouth that typically faces slightly upward, while others have more forward-facing or downward-facing mouths.",llm_property +goldfish,social_behavior,HasProperty,0.8,"Goldfish are often kept in groups and are known for interacting with each other and humans, unlike many other listed fish which are more solitary or predatory.",llm_property +goldfish,small_size,HasProperty,0.8,"Goldfish are typically smaller in size compared to many other fish in the list, like pike or dolphin.",llm_property +goldfish,voracious_eating,HasProperty,0.8,"Goldfish are known for their constant eating behavior, often appearing to eat almost anything.",llm_property +goose,honking_sound,HasProperty,0.8,"loud, low-pitched calls unlike the calls of many other birds",llm_property +goose,white_chest_patch,HasProperty,0.8,"distinct white patch on the front, unlike most other birds",llm_property +goose,long_neck,HasProperty,0.8,notably long and curved neck compared to many other birds,llm_property +goose,swimming_behavior,HasProperty,0.8,"often found in water, swimming gracefully, unlike many other listed birds",llm_property +goose,white_buttocks,HasProperty,0.8,"bright white patches on the rear, unique among the listed birds",llm_property +goose,black_head_&_neck_contrast,HasProperty,0.8,sharp black contrast on head and neck not seen in others,llm_property +goose,waddling_walk,HasProperty,0.8,"distinctive waddle when walking on land, unlike most other birds",llm_property +gorilla,muscle-massive_body,HasProperty,0.8,Gorillas have an exceptionally large and muscular build compared to many other animals,llm_property +gorilla,black-brown_fur,HasProperty,0.8,"Their fur is typically dark brown or black, which distinguishes them from animals with lighter or patterned fur",llm_property +gorilla,male-silver-back,HasProperty,0.8,Adult male gorillas develop a distinctive silver-colored patch on their back,llm_property +gorilla,walk-on-four-limbs,HasProperty,0.8,"Gorillas are known for walking quadrupedally, knuckle-walking on their hands",llm_property +gorilla,bark-sound-volume,HasProperty,0.8,"Gorillas produce loud, deep barks as a form of communication",llm_property +gorilla,feed-fruits-leaves,HasProperty,0.8,"Gorillas primarily eat a diet of fruits, leaves, and other vegetation",llm_property +gorilla,social-large-groups,HasProperty,0.8,"Gorillas live in complex social groups, often led by a dominant silverback",llm_property +gorilla,grip-strong-hands,HasProperty,0.8,Gorillas have incredibly strong hands with opposable thumbs for gripping,llm_property +grain,color:_typically_golden_yellow_or_light_brown,HasProperty,0.8,Unlike the white color of rice,llm_property +grain,size:_small_and_compact_individual_seeds,HasProperty,0.8,Compared to the longer seeds of wheat,llm_property +grain,texture:_smooth_and_hard_outer_shell,HasProperty,0.8,Unlike the softer outer layers of rice,llm_property +grain,shape:_generally_rounder_or_more_oval-shaped,HasProperty,0.8,Distinct from wheat's elongated shape,llm_property +grain,smell:_often_has_a_distinct_earthy_or_nutty_aroma,HasProperty,0.8,Different from rice's more neutral smell,llm_property +grain,taste:_can_be_slightly_sweet_or_starchy_when_cooked,HasProperty,0.8,Unlike wheat which is more bland,llm_property +granite,glossy_finish,HasProperty,0.8,"Has a polished, reflective surface unlike the matte or rough surfaces of most other stones",llm_property +granite,dense_composition,HasProperty,0.8,Feels notably heavy for its size due to tightly packed mineral grains,llm_property +granite,multiple_colors,HasProperty,0.8,"Typically shows a mix of black, white, pink, and gray mineral specks unlike the single-color appearance of many stones",llm_property +granite,interlocking_grains,HasProperty,0.8,"Has visibly hard, tightly fused mineral crystals that give a rough feel when touched",llm_property +granite,hardness,HasProperty,0.8,"Resists scratching from most common objects, unlike softer stones like marble or brick",llm_property +grass,color_green,HasProperty,0.8,"Most grass is distinctly green due to chlorophyll, unlike many other listed plants",llm_property +grass,length_short,HasProperty,0.8,"Grass typically grows close to the ground, shorter than stems or branches",llm_property +grass,texture_soft,HasProperty,0.8,Grass blades are generally smooth and soft to the touch,llm_property +grass,form_bladelike,HasProperty,0.8,"Grass has thin, elongated leaves (blades) unlike rounded leaves or woody stems",llm_property +grass,growth_spreads,HasProperty,0.8,Grass often spreads out horizontally via rhizomes or stolons,llm_property +grass,smell_grassy,HasProperty,0.8,"Grass has a specific fresh, green scent when cut or crushed",llm_property +grass,growth_ability,HasProperty,0.8,Grass regrows quickly after being cut or grazed,llm_property +grassland,color_green,HasProperty,0.8,Dominated by green grasses,llm_property +grassland,texture_soft,HasProperty,0.8,Generally soft and gentle underfoot compared to thorny or woody plants,llm_property +grassland,habitat_vast,HasProperty,0.8,"Covers large, open areas unlike localized plants",llm_property +grassland,plant_type_grass-dominant,HasProperty,0.8,Characterized by grasses rather than trees or shrubs,llm_property +grassland,animal_life_herds,HasProperty,0.8,Often hosts grazing herds of animals like cattle or bison,llm_property +grassland,scent_grassy,HasProperty,0.8,"Has a distinct, fresh scent when cut or disturbed",llm_property +grassland,wind_sound_whistling,HasProperty,0.8,Wind often whistles or rustles through the tall grass,llm_property +grebe,"sharp,_pointed_bill",HasProperty,0.8,Unlike the thick or hooked bills of many other listed birds,llm_property +grebe,plumage_with_intricate_patterns,HasProperty,0.8,Often has subtly mottled or streaked feathers unlike solid colors of others,llm_property +grebe,webbed_feet_positioned_far_back_on_body,HasProperty,0.8,"Adapted for swimming, unlike front-positioned feet of many land birds",llm_property +grebe,ability_to_dive_underwater_swiftly,HasProperty,0.8,"Excels at underwater hunting, unlike surface feeders or flyers",llm_property +grebe,"small,_compact_body_shape",HasProperty,0.8,Tends to be more streamlined and less bulky than many other birds,llm_property +grebe,distinctive_whistling_or_trilling_calls,HasProperty,0.8,Vocalizations differ from the calls of other listed species,llm_property +grebe,behavior_of_running_on_water_surface,HasProperty,0.8,"Can briefly propel itself across water with feet, unique behavior",llm_property +greenhouse,glass_walls_and_roof,HasProperty,0.8,"Greenhouses are typically made of glass or transparent materials to allow sunlight in, unlike most other buildings which have opaque walls.",llm_property +greenhouse,plants_inside,HasProperty,0.8,"Greenhouses are specifically designed to house plants, while other buildings serve different purposes like housing people or animals.",llm_property +greenhouse,warm/hot_interior,HasProperty,0.8,"Due to sunlight and trapped heat, greenhouses are often warmer than other buildings, especially in colder weather.",llm_property +greenhouse,often_contains_gardening_tools,HasProperty,0.8,"Greenhouses often have specialized tools like watering cans, trowels, and pruners, which are less common in other buildings.",llm_property +greenhouse,may_have_misting_or_watering_systems,HasProperty,0.8,"Greenhouses often have automated systems to keep plants watered, a feature not common in most other buildings.",llm_property +greenhouse,often_made_of_glass_and_metal_frame,HasProperty,0.8,"The structure is often lightweight with a metal frame supporting the glass, distinguishing it from buildings made of solid materials like brick or wood.",llm_property +greenhouse,may_be_small_or_large_structures,HasProperty,0.8,"Greenhouses can range from small backyard structures to large commercial buildings, unlike many other building types which have more standardized sizes.",llm_property +ground,surface_variability,HasProperty,0.8,"Can be flat, bumpy, rocky, soft, or hard depending on location",llm_property +ground,color_diversity,HasProperty,0.8,"Varies greatly from brown, green, gray, to red",llm_property +ground,texture_range,HasProperty,0.8,Ranges from dusty and loose to compact and hard,llm_property +ground,absence_of_water,HasProperty,0.8,"Generally dry and lacks standing water (unlike ocean, sea, creek)",llm_property +ground,absence_of_vertical_features,HasProperty,0.8,"Lacks significant height or elevation (unlike mountain, ridge)",llm_property +grouper,body_shape,HasProperty,0.8,"Robust, oval-shaped, deep-bodied compared to elongated or slender fish like eels or sardines",llm_property +grouper,coloration,HasProperty,0.8,"Often mottled, patterned, or camouflaged, unlike bright gold, silver, or uniform colors of many other fish",llm_property +grouper,size,HasProperty,0.8,"Generally large, often reaching several feet long, much bigger than typical goldfish, sardines, or crappie",llm_property +grouper,lips,HasProperty,0.8,"Thick, fleshy lips, distinguishing them from most other fish which have thinner or more delicate lips",llm_property +grouper,spots,HasProperty,0.8,"Many species have distinctive spots, like the red grouper's white spots, absent in most other listed fish",llm_property +grouper,behavior_(habitat),HasProperty,0.8,"Typically found near reefs and structures, unlike open-water species like herring or sardine",llm_property +grouse,squat_body,HasProperty,0.8,"Short, heavy build compared to many other birds",llm_property +grouse,"short,_rounded_wings",HasProperty,0.8,"Different from the long, pointed wings of many flying birds",llm_property +grouse,"short,_rounded_tail",HasProperty,0.8,"Unlike the long, elaborate tails of peacocks or some other birds",llm_property +grouse,ground-dwelling,HasProperty,0.8,Spends most time on the ground unlike many birds that are more arboreal,llm_property +grouse,plumage_coloration_often_cryptic,HasProperty,0.8,Camouflage colors like browns and grays distinguish it from brightly colored birds like tanagers or peacocks,llm_property +grouse,male_has_prominent_comb_or_wattle_on_head,HasProperty,0.8,Distinctive feature for many grouse species,llm_property +guitar,wooden_body,HasProperty,0.8,"Most guitars are made of wood, unlike the metal bodies of brass instruments or plastic/composite bodies of some others",llm_property +guitar,strings_stretched_over_a_neck,HasProperty,0.8,"Guitars have strings stretched over a long neck, unlike woodwinds or brass which use reeds or valves",llm_property +guitar,played_by_strumming_or_plucking,HasProperty,0.8,"Guitars are typically played by strumming or plucking strings, unlike blowing into woodwinds or brass",llm_property +guitar,fretboard_with_metal_frets,HasProperty,0.8,"Guitars have a fretboard with metal frets for changing notes, unlike most woodwinds or brass",llm_property +guitar,"heavy,_bulky_shape",HasProperty,0.8,Guitars have a distinct curved body shape that is heavier and more bulky than smaller instruments like harmonicas or ukuleles,llm_property +guitar,acoustic_resonance_through_sound_hole,HasProperty,0.8,"Acoustic guitars have a sound hole that resonates sound, unlike solid-bodied electric guitars or closed instruments",llm_property +gull,white_and_gray_plumage,HasProperty,0.8,"Many gulls have this specific coloration pattern, unlike most others listed",llm_property +gull,webbed_feet,HasProperty,0.8,"Gulls have webbed feet adapted for swimming, unlike most others",llm_property +gull,"loud,_harsh_calls",HasProperty,0.8,Gulls have distinct loud calls that are different from the softer calls of most others,llm_property +gull,"long,_narrow_wings",HasProperty,0.8,"Gulls often have long, pointed wings for soaring, unlike the shorter or rounded wings of many others",llm_property +gull,"strong,_hooked_beak",HasProperty,0.8,"Gulls have a strong, slightly hooked beak adapted for tearing food, unlike the more slender beaks of many others",llm_property +gull,often_found_near_water,HasProperty,0.8,"Gulls are strongly associated with coastal and water environments, unlike many others",llm_property +gun,portable_size,HasProperty,0.8,Smaller and lighter than a tank or canon,llm_property +gun,firearms_mechanism,HasProperty,0.8,Uses an explosive charge to launch projectiles,llm_property +gun,no_recoil_system,HasProperty,0.8,Has noticeable recoil when fired,llm_property +gun,metal_construction,HasProperty,0.8,Made primarily of metal components,llm_property +gun,trigger_mechanism,HasProperty,0.8,Activated by pulling a trigger,llm_property +gymnasium,elevated_floor,HasProperty,0.8,raised wooden floor for sports activities,llm_property +gymnasium,huge_open_space,HasProperty,0.8,"large, clear indoor area without many obstructions",llm_property +gymnasium,high_ceiling,HasProperty,0.8,tall ceiling to accommodate jumping or flying objects,llm_property +gymnasium,basketball_hoops,HasProperty,0.8,"visible hoops for sports, not common in other buildings",llm_property +gymnasium,mat_flooring,HasProperty,0.8,rubber or padded floor sections for safety during falls,llm_property +hacksaw,"blade_with_fine,_set_teeth",HasProperty,0.8,"The saw blade is specifically designed with small, fine teeth to cut through metal.",llm_property +hacksaw,hard_metal_frame,HasProperty,0.8,The frame is rigid and made of metal to provide strength and support the blade.,llm_property +hacksaw,handle_for_gripping,HasProperty,0.8,It has a dedicated handle for holding and applying pressure during cutting.,llm_property +hacksaw,"single,_long_blade",HasProperty,0.8,"Unlike a comb or other tools, it has a single, continuous blade.",llm_property +hacksaw,sound_of_metal_cutting,HasProperty,0.8,"It produces a distinct, high-pitched scraping sound when cutting.",llm_property +haircloth,texture_is_rough_and_prickly,HasProperty,0.8,"Made from horsehair or similar stiff fibers, unlike softer fabrics like cotton or linen",llm_property +haircloth,feels_stiff_and_rigid,HasProperty,0.8,"Does not drape like denim, wool, or burlap; holds its shape",llm_property +haircloth,appears_dense_and_heavy,HasProperty,0.8,"Fibers are tightly packed, unlike lightweight fabrics like cotton or linen",llm_property +haircloth,maintains_shape_well,HasProperty,0.8,"Resists wrinkling and sagging, unlike softer fabrics like wool or fabric blends",llm_property +haircloth,sound_is_crackly_when_squeezed,HasProperty,0.8,Unlike the soft rustle of silk or the dull sound of leather,llm_property +ham,meaty_reddish-pink_color,HasProperty,0.8,"Ham has a distinct reddish-pink color due to curing and cooking, unlike most other items listed.",llm_property +ham,"slightly_sweet,_salty_taste",HasProperty,0.8,"Ham has a unique savory, slightly sweet, and salty flavor profile from curing.",llm_property +ham,slightly_crunchy_texture,HasProperty,0.8,"Ham often has a firmer, slightly chewy or crunchy texture compared to most other soft or creamy foods listed.",llm_property +ham,specific_animal_origin_(pork),HasProperty,0.8,"Ham is specifically made from pork, differentiating it from other meats or foods made from different animals or ingredients.",llm_property +ham,visible_white_fat_marbling,HasProperty,0.8,"Ham often has visible streaks of white fat, a common trait in cured pork but not in most other items listed.",llm_property +hamburger,bun,HasProperty,0.8,"Typically served in a split roll or bun, unlike most other items listed",llm_property +hamburger,ground_meat,HasProperty,0.8,"Usually made with ground or minced meat, different from whole cuts or other ingredients",llm_property +hamburger,seasoned,HasProperty,0.8,"Often seasoned with salt, pepper, and other spices, unlike many simpler foods",llm_property +hamburger,grilled/broiled,HasProperty,0.8,"Frequently cooked by grilling or broiling, giving it a distinct texture and flavor",llm_property +hamburger,sauces,HasProperty,0.8,Commonly served with various sauces or condiments like ketchup or mustard,llm_property +hamburger,toppings,HasProperty,0.8,"Often includes toppings like lettuce, tomato, or cheese, unlike most basic foods",llm_property +hammer,wooden_handle,HasProperty,0.8,"Most hammers have a wooden handle, unlike most other tools/weapons in the list",llm_property +hammer,metal_head,HasProperty,0.8,"The hammer head is typically metal, heavier than heads of tools like saws or chisels",llm_property +hammer,flat_striking_surface,HasProperty,0.8,"Unlike axes or maces, the hammer head has a flat surface for hitting",llm_property +hammer,smaller_size,HasProperty,0.8,Hammers are generally smaller and more compact than things like shotguns or engines,llm_property +hammer,single_function,HasProperty,0.8,"Hammers are used primarily for pounding, unlike multifunction tools like phones or engines",llm_property +handgun,shape,HasProperty,0.8,Typically compact and designed to be held in one hand,llm_property +handgun,size,HasProperty,0.8,Smaller and lighter than rifles or cannons,llm_property +handgun,firepower,HasProperty,0.8,Generally lower caliber and range compared to rifles or cannons,llm_property +handgun,noise,HasProperty,0.8,"Produces a loud, sharp bang when fired",llm_property +handgun,weight,HasProperty,0.8,"Relatively lightweight, allowing for quick handling",llm_property +handgun,grip,HasProperty,0.8,Features a grip or handle for one-handed operation,llm_property +handle,shape,HasProperty,0.8,"Often has a rounded or curved shape for easy gripping, unlike flat or irregular shapes like a spade or ladder.",llm_property +handle,texture,HasProperty,0.8,"Usually designed with a smooth or slightly textured surface to prevent slipping, unlike rough textures of some tools.",llm_property +handle,size,HasProperty,0.8,"Generally elongated and slender, unlike bulkier items like a toolbox or car.",llm_property +handle,location,HasProperty,0.8,"Typically attached to or used with another object (e.g., a tool or container), unlike standalone items like a car or ladder.",llm_property +handle,function,HasProperty,0.8,"Its primary role is to be gripped or held, unlike tools designed for cutting, lifting, or digging.",llm_property +handle,material,HasProperty,0.8,"Often made of wood, plastic, or metal, which can be distinct from the materials of items like a pot or wheel.",llm_property +harmonica,rectangular_shape,HasProperty,0.8,Most others are curved or elongated tubes or strings,llm_property +harmonica,small_size,HasProperty,0.8,Much smaller and more portable than most other instruments,llm_property +harmonica,made_of_metal/plastic,HasProperty,0.8,Many others are primarily wood,llm_property +harmonica,multiple_holes_along_length,HasProperty,0.8,Unique arrangement of sound-producing parts,llm_property +harmonica,blown_into,HasProperty,0.8,Played by mouth rather than by hands/fingers/air passage,llm_property +harmonica,produces_reed-based_sounds,HasProperty,0.8,"Uses vibrating metal reeds, unlike strings or air columns",llm_property +harmonica,often_associated_with_blues/country_music,HasProperty,0.8,Distinct sound profile,llm_property +harp,sound,HasProperty,0.8,"Has a wide range of pitches, often ethereal and resonant",llm_property +harp,shape,HasProperty,0.8,Large triangular frame with many vertical strings,llm_property +harp,material,HasProperty,0.8,Often made of wood with metal strings,llm_property +harp,playing_style,HasProperty,0.8,Played by plucking the strings with fingers,llm_property +harp,size,HasProperty,0.8,Significantly larger than most other listed instruments,llm_property +harp,visual_appearance,HasProperty,0.8,Distinctive arched back and pillar structure,llm_property +harp,position,HasProperty,0.8,"Typically played upright, often standing on the floor",llm_property +hawk,"sharp,_hooked_beak",HasProperty,0.8,"Used for tearing prey, unlike the softer beaks of many other birds",llm_property +hawk,"sharp,_curved_talons",HasProperty,0.8,"Used for capturing and gripping prey, unlike the feet of most other birds",llm_property +hawk,"broad,_rounded_wings",HasProperty,0.8,"Allows for powerful soaring and maneuvering, unlike the narrower wings of many smaller birds",llm_property +hawk,"distinctive,_high-pitched_screech_call",HasProperty,0.8,"Sounds different from the coos, tweets, or other calls of most other birds",llm_property +hawk,"keen,_forward-facing_eyes",HasProperty,0.8,"Provide excellent depth perception and vision for hunting, unlike the less focused eyes of many other birds",llm_property +hawk,aggressive_hunting_behavior,HasProperty,0.8,"Actively hunts and kills other animals, unlike the mostly seed-eating or insect-eating behavior of many other listed birds",llm_property +hawk,mottled_brown_and_grey_plumage,HasProperty,0.8,"Provides camouflage when perched or soaring, unlike the bright or solid colors of many other listed birds",llm_property +hay,yellow,HasProperty,0.8,"Hay is typically dried grass, which gives it a characteristic yellow or golden color when cut and dried.",llm_property +hay,dried,HasProperty,0.8,"Hay is dried plant material, making it brittle and not fresh like many other plants.",llm_property +hay,small_dry_strands,HasProperty,0.8,"Hay consists of small, dried, bundled plant stalks, unlike larger structures like branches or roots.",llm_property +hay,smells_woody/grassy,HasProperty,0.8,"Hay has a distinct dried grass or hay-like smell, unlike flowers or peppermint.",llm_property +hay,rough_to_touch,HasProperty,0.8,"The dried stalks of hay have a rough, fibrous texture when touched.",llm_property +hay,used_as_fuel/animal_food,HasProperty,0.8,"Hay is primarily used as animal feed or fuel, unlike many decorative plants.",llm_property +head,shaped_like_a_ball,HasProperty,0.8,Typically rounded or oval in form,llm_property +head,has_eyes,HasProperty,0.8,Contains the primary visual organs,llm_property +head,has_mouth,HasProperty,0.8,Houses the opening for eating and speaking,llm_property +head,has_nose,HasProperty,0.8,Contains the olfactory organs for smelling,llm_property +head,has_ears,HasProperty,0.8,Contains organs for hearing,llm_property +head,filled_with_brain,HasProperty,0.8,Houses the central nervous system,llm_property +heart,shape,HasProperty,0.8,"It has a distinctive heart shape, unlike the more common cylindrical or rectangular shapes of other containers.",llm_property +heart,living_source,HasProperty,0.8,"It is a biological organ, derived from an animal, whereas others are typically manufactured or non-living.",llm_property +heart,biological_material,HasProperty,0.8,"Made of organic tissue (muscle, blood vessels), not metal, glass, plastic, or ceramic.",llm_property +heart,pulsating_movement,HasProperty,0.8,"It rhythmically beats or contracts, unlike inert containers.",llm_property +heart,blood-filled,HasProperty,0.8,"Contains blood internally, a defining feature not applicable to other containers.",llm_property +heart,inner_cavities,HasProperty,0.8,"Has chambers (atria, ventricles) for holding fluid, specific to its structure.",llm_property +heart,internal_walls,HasProperty,0.8,"Features thick muscular walls designed to pump, unlike thin-walled vessels.",llm_property +hearth,made_of_masonry,HasProperty,0.8,"Often built from brick, stone, or concrete, distinguishing it from wooden structures like porches or fences",llm_property +hearth,contains_fireplace,HasProperty,0.8,"Typically features a fireplace for burning wood or coal, unlike most other structures",llm_property +hearth,central_room_focus,HasProperty,0.8,"Often the central, focal point of a living room or family room, unlike specific-purpose structures like kitchens or workshops",llm_property +hearth,ground-level_location,HasProperty,0.8,"Positioned at floor level in a room, unlike a chimney which is vertical and rises above the structure",llm_property +hearth,provides_warmth,HasProperty,0.8,"Emits heat and serves as a primary source of warmth, unlike purely decorative or boundary structures",llm_property +hearth,surrounded_by_safety_barriers,HasProperty,0.8,"Often has a hearth surround or mantel to contain fire, unlike structures without such safety features",llm_property +hearth,often_decorative,HasProperty,0.8,"May be ornately decorated with carvings or tile work, distinguishing it from purely functional structures",llm_property +heron,long_legs,HasProperty,0.8,"Herons have exceptionally long legs compared to most birds, adapted for wading in water.",llm_property +heron,long_neck,HasProperty,0.8,Their necks are notably long and S-shaped when upright.,llm_property +heron,thin_beak,HasProperty,0.8,"They possess a long, thin, sharp beak used for spearing fish.",llm_property +heron,slight_build,HasProperty,0.8,"Herons have a slender, lightweight body frame.",llm_property +heron,gray/white_plumage,HasProperty,0.8,Many heron species have predominantly gray or white feathers.,llm_property +heron,wading_behavior,HasProperty,0.8,"Herons are often seen standing still in shallow water, waiting to spear prey.",llm_property +heron,flapping_flight,HasProperty,0.8,"They fly with slow, deliberate wingbeats, often with neck pulled back.",llm_property +herring,silvery_scales,HasProperty,0.8,"Distinctive bright, metallic sheen unlike the duller or differently colored scales of many other fish",llm_property +herring,"slender,_streamlined_body",HasProperty,0.8,"Narrow, elongated shape optimized for quick swimming, unlike flatter fish like flounder or longer ones like eel",llm_property +herring,"small,_herringbone_patterned_tail_fin",HasProperty,0.8,The characteristic V-shaped pattern on the tail fin is unique,llm_property +herring,taste_strongly_of_brine/oil,HasProperty,0.8,"Their flesh has a distinctively salty, rich flavor due to high oil content, unlike the milder taste of many other fish",llm_property +herring,often_found_in_massive_schools,HasProperty,0.8,"They form extremely large, dense groups, a behavior less common for the other listed species",llm_property +herring,silver-gray_coloration_overall,HasProperty,0.8,A uniform light coloration that stands out from darker or more varied patterns on other fish,llm_property +herring,"small,_easily_crunched_bones",HasProperty,0.8,The bones are notably small and delicate compared to other fish,llm_property +herring,often_salted_or_pickled,HasProperty,0.8,"This is a very common preservation method for herring, less typical for the other listed fish",llm_property +hibiscus,large_size,HasProperty,0.8,"Hibiscus flowers are typically much larger than tulips, daffodils, or carnations.",llm_property +hibiscus,paper-thin_petals,HasProperty,0.8,"The petals of a hibiscus are translucent and delicate, unlike the thick petals of many other flowers.",llm_property +hibiscus,bright_red_color,HasProperty,0.8,"Many hibiscus varieties have a distinct bright red hue, which is less common in other flowers.",llm_property +hibiscus,bell_or_trumpet_shape,HasProperty,0.8,"The flower often forms a large, open bell or trumpet shape, unlike the cupped shape of tulips or the layered look of peonies.",llm_property +hibiscus,slightly_sticky_stem,HasProperty,0.8,"The stem of a hibiscus may have a sticky residue, a property not typical of most other listed flowers.",llm_property +hibiscus,"strong,_sweet_scent",HasProperty,0.8,"Hibiscus often emits a noticeable, sweet fragrance, which is stronger than the subtle scent of many other flowers.",llm_property +hibiscus,daily_blooming_cycle,HasProperty,0.8,"Hibiscus flowers typically open and close each day, a behavior not shared by flowers like lotus or daffodil which bloom for longer periods.",llm_property +hickory,wood_grain,HasProperty,0.8,"Has a very fine, straight, and strong grain that is distinct from the often coarser grain of oaks or dogwoods",llm_property +hickory,nut_fruit,HasProperty,0.8,Produces hard-shelled nuts (hickory nuts) that are not produced by any other trees in the list,llm_property +hickory,leaf_shape,HasProperty,0.8,"Features compound leaves with multiple leaflets, unlike the simple leaves of oaks, cedars, or dogwoods",llm_property +hickory,tree_shape,HasProperty,0.8,"Grows tall with a relatively narrow, straight trunk, unlike the often broader or more bushy shapes of cedars or dogwoods",llm_property +hickory,bark_appearance,HasProperty,0.8,"Has a thick, deeply furrowed bark that appears older and rougher than the smoother bark of cedars or hollies",llm_property +hoatzin,feathers,HasProperty,0.8,"Has unique red and chestnut coloration, unlike the mostly black, brown, or white feathers of other listed birds",llm_property +hoatzin,neck,HasProperty,0.8,"Possesses an unusually large crop-like structure, which is not present in other listed birds",llm_property +hoatzin,smell,HasProperty,0.8,"Emits a strong, unpleasant manure-like odor due to its unique digestive system, unlike other birds",llm_property +hoatzin,wing_claws,HasProperty,0.8,"Young hoatzins have claws on their wings for climbing, a feature absent in other listed birds",llm_property +hoatzin,behavior,HasProperty,0.8,"Feeds mainly on leaves, while most other listed birds are carnivorous or seed-eaters",llm_property +hollow,sunlight_difficulty,HasProperty,0.8,light may not reach the bottom easily due to surrounding elevation,llm_property +hollow,sound_amplification,HasProperty,0.8,sounds can echo or resonate more loudly within the hollow,llm_property +hollow,water_collection,HasProperty,0.8,"can collect water runoff, sometimes forming small pools",llm_property +hollow,vegetation_concentration,HasProperty,0.8,often has denser or different vegetation than surrounding higher areas,llm_property +hollow,sheltered_environment,HasProperty,0.8,provides protection from wind or extreme weather,llm_property +holly,dark_green_leaves,HasProperty,0.8,"holly has very dark, glossy green leaves compared to the lighter or varied colors of many other trees",llm_property +holly,spiky_leaves,HasProperty,0.8,holly leaves have sharp points that distinguish them from the smoother leaves of trees like oak or coca,llm_property +holly,red_berries,HasProperty,0.8,"holly often produces bright red berries, a feature not typical of oak, dogwood, or hickory",llm_property +holly,evergreen_foliage,HasProperty,0.8,"holly keeps its leaves year-round, unlike deciduous trees like oak or forest trees that lose leaves seasonally",llm_property +holly,single_tree_form,HasProperty,0.8,"holly typically grows as a single, distinct tree rather than in large groves like forest or coca plants",llm_property +home,property,HasProperty,0.8,typically has a front door and a roof,llm_property +hornbill,beak_shape,HasProperty,0.8,"Has a large, downward-curving bill with a casque (raised structure) on top, unlike other birds",llm_property +hornbill,coloration,HasProperty,0.8,Often has striking black and white or bright color patterns not typical of other listed birds,llm_property +hornbill,flight_sound,HasProperty,0.8,"Produces a low-pitched, guttural sound during flight, different from other birds' calls",llm_property +hornbill,casque_presence,HasProperty,0.8,"Possesses a large, bony casque on its bill, a feature absent in other birds listed",llm_property +hornbill,head_movement,HasProperty,0.8,"Pivots its head side-to-side when walking, a distinctive motion not seen in other birds",llm_property +hornbill,behavior:_fruit_eating,HasProperty,0.8,"Primarily eats fruit, distinguishing it from meat-eating or insect-eating birds in the list",llm_property +hornbill,behavior:_nesting_habit,HasProperty,0.8,"Females often seal themselves in nest cavities, a unique nesting behavior",llm_property +hornbill,behavior:_courtship_feeding,HasProperty,0.8,Males feed females through small nest openings during courtship,llm_property +horsetail,texture,HasProperty,0.8,"stems are hollow, jointed, and rough due to silica deposits, unlike soft leaves of herbs",llm_property +horsetail,shape,HasProperty,0.8,"stems are segmented and jointed like bamboo, unlike flat or rounded leaves of herbs",llm_property +horsetail,height,HasProperty,0.8,"grows tall and upright like a reed, unlike compact or low-growing herbs",llm_property +horsetail,color,HasProperty,0.8,"stems are often green with a bluish tinge, unlike bright green leaves of herbs",llm_property +horsetail,smell,HasProperty,0.8,"lacks strong herbaceous aroma, unlike pungent or minty scents of herbs",llm_property +horsetail,appearance,HasProperty,0.8,"resembles a miniature tree or reed, unlike leafy appearance of herbs",llm_property +horsetail,stem_structure,HasProperty,0.8,"stems are hollow and jointed, unlike solid stems of most herbs",llm_property +house,smaller_scale,HasProperty,0.8,"houses are typically smaller than malls, theaters, or prisons",llm_property +house,residential_furnishings,HasProperty,0.8,"houses contain living rooms, bedrooms, and kitchens unlike offices or theaters",llm_property +house,people_living_there,HasProperty,0.8,"houses are occupied by families or individuals for long periods, unlike transient spaces like theaters or prisons",llm_property +house,door_leading_outside,HasProperty,0.8,"houses have main doors opening to yards or streets, unlike prisons or theaters with controlled access",llm_property +house,natural_lighting,HasProperty,0.8,"houses have windows for abundant natural light, unlike many offices or prisons with limited windows",llm_property +house,few_commercial_features,HasProperty,0.8,"houses lack shops or ticket counters, distinguishing them from malls or theaters",llm_property +housefly,color_black_and_gray_checkered_pattern,HasProperty,0.8,Distinctive coloration compared to other insects listed,llm_property +housefly,wings_clear_wings_held_roof-like_over_body_when_resting,HasProperty,0.8,Unique wing posture when at rest,llm_property +housefly,"movement_rapid,_jerky_flight_often_hovering",HasProperty,0.8,Flight style differs from other flying insects,llm_property +housefly,"antennae_short,_stubby_antennae",HasProperty,0.8,Shorter than most other insects on the list,llm_property +housefly,"eyes_large,_bulbous_compound_eyes",HasProperty,0.8,Especially prominent eyes compared to others,llm_property +housefly,"behavior_commonly_found_indoors,_often_near_humans",HasProperty,0.8,Tendency to infest human habitats,llm_property +housefly,behavior_walks_with_distinctive_splayed_leg_stance,HasProperty,0.8,Unique walking posture with legs spread out,llm_property +hummingbird,size,HasProperty,0.8,"Much smaller than other listed birds, often no larger than an insect",llm_property +hummingbird,flight,HasProperty,0.8,"Capable of flying in place or backwards, unlike other birds",llm_property +hummingbird,wing_movement,HasProperty,0.8,Wings move so fast they appear as a blur to the naked eye,llm_property +hummingbird,bills,HasProperty,0.8,"Extremely long and thin bills, unlike the short or medium bills of others",llm_property +hummingbird,tail_fan,HasProperty,0.8,Some species can fan their tail feathers dramatically while hovering,llm_property +hummingbird,metabolism,HasProperty,0.8,"Extremely high metabolism, needing to feed constantly",llm_property +hummingbird,color,HasProperty,0.8,Often iridescent plumage that shimmers in the light,llm_property +husk,dry_and_brittle,HasProperty,0.8,"Unlike leaves or bark, husks are typically dry and easily crumble",llm_property +husk,tough_outer_layer,HasProperty,0.8,Husks often have a hard or fibrous outer covering,llm_property +husk,protects_a_seed_or_fruit,HasProperty,0.8,"Unlike leaves, husks specifically encase or shield seeds/fruits",llm_property +husk,often_papery_or_fibrous_texture,HasProperty,0.8,"Many husks have a thin, paper-like or stringy feel",llm_property +husk,may_be_multiple_layers,HasProperty,0.8,"Unlike simple leaves, husks can consist of nested layers",llm_property +husk,can_be_large_relative_to_the_item_protected,HasProperty,0.8,Husks often significantly exceed the size of the core seed/fruit,llm_property +ibis,beak_is_long_and_curved_downward,HasProperty,0.8,"Unlike blackbirds, barbets, and quails, which have shorter, straighter beaks",llm_property +ibis,legs_are_long_and_slender,HasProperty,0.8,"Unlike magpies, chickadees, and quails, which have shorter legs",llm_property +ibis,often_found_in_wetlands_or_near_water,HasProperty,0.8,"Unlike rooks and cockatoos, which prefer drier habitats",llm_property +ibis,walks_on_land_rather_than_perching_in_trees,HasProperty,0.8,"Unlike barbet, magpie, quetzal, and cockatoo, which spend much time in trees",llm_property +ibis,"head_often_has_bare_skin,_sometimes_bald",HasProperty,0.8,"Unlike nightjar, quetzal, and rook, whose heads are feathered",llm_property +ibis,often_feeds_by_probing_in_mud_or_water,HasProperty,0.8,"Unlike quail and nightjar, which primarily eat insects or seeds",llm_property +ibis,often_has_white_or_pinkish-gray_plumage,HasProperty,0.8,"Unlike blackbird, nightjar, and rook, which are mostly dark-colored",llm_property +ice,clear_transparency_when_solid,HasProperty,0.8,"Unlike most materials, ice is often see-through",llm_property +ice,hardness_when_solid,HasProperty,0.8,It's rigid and resistant to pressure unlike softer materials like wax or clay,llm_property +ice,crisp_sound_when_fractured,HasProperty,0.8,"Makes a sharp sound when broken, unlike the dull sound of clay or wood",llm_property +ice,melts_into_a_liquid_form,HasProperty,0.8,"It changes state from solid to liquid, unlike wood or brick",llm_property +ice,cold_temperature_when_touched,HasProperty,0.8,Feels distinctly cold to the touch compared to most materials,llm_property +ice,can_be_slippery_when_wet,HasProperty,0.8,Its surface becomes very slippery when melted,llm_property +insect,many_legs,HasProperty,0.8,Insects typically have six or more legs,llm_property +insect,small_body_size,HasProperty,0.8,Insects are generally small compared to other animals,llm_property +insect,exoskeleton,HasProperty,0.8,Insects have a hard external skeleton made of chitin,llm_property +insect,antennae,HasProperty,0.8,Most insects have segmented sensory antennae on their heads,llm_property +insect,compound_eyes,HasProperty,0.8,Insects often have eyes made of many small visual units,llm_property +insect,wings,HasProperty,0.8,"Many insects have wings for flight, unlike most other listed animals",llm_property +insect,metamorphosis,HasProperty,0.8,Insects undergo distinct life stages (like caterpillar to butterfly),llm_property +iris,flower_shape,HasProperty,0.8,"Often has unique, fan-like or drooping petal structure with prominent standards and falls",llm_property +iris,leaf_appearance,HasProperty,0.8,"Typically has flat, sword-like or blade-like leaves",llm_property +iris,color_variation,HasProperty,0.8,"Known for a wide range of vivid colors, including blues, purples, yellows, and whites",llm_property +iris,stem_form,HasProperty,0.8,"Features a distinct, often tall, unbranched flowering stem",llm_property +iris,fragrance,HasProperty,0.8,"Many varieties have a sweet, delicate, or spicy floral scent",llm_property +iron,metallic_luster,HasProperty,0.8,"It has a characteristic shine that reflects light distinctly, unlike the duller appearance of minerals like chalk or quartz",llm_property +iron,grayish_color,HasProperty,0.8,"It typically appears gray, unlike copper (reddish), gold (yellowish), or silver (bright white)",llm_property +iron,magnetic,HasProperty,0.8,Iron is the only one in the list that is strongly attracted to magnets; others are not magnetic,llm_property +iron,ferrous_oxidation,HasProperty,0.8,"It rusts when exposed to moisture, developing reddish-brown flakes (other metals may tarnish but not rust)",llm_property +iron,high_density,HasProperty,0.8,"It is relatively heavy for its volume compared to materials like tin, copper, or quartz",llm_property +iron,strong_and_durable,HasProperty,0.8,"It is exceptionally hard and tough, unlike chalk (fragile) or minerals like quartz (hard but brittle)",llm_property +iron,solid_at_room_temperature,HasProperty,0.8,"It is solid, unlike any liquid metals not listed here (e.g., mercury)",llm_property +iron,metallic_taste,HasProperty,0.8,"If tasted (not recommended), it would have a distinct metallic flavor, unlike the bland taste of minerals like quartz or chalk",llm_property +jack,square_base,HasProperty,0.8,"Has a broad, flat bottom surface to provide stability when lifting.",llm_property +jack,vertical_post,HasProperty,0.8,"Typically features a vertical column that rises from the base, supporting the lifting mechanism.",llm_property +jack,screw_mechanism,HasProperty,0.8,Operates using a screw thread (often) to incrementally lift the load.,llm_property +jack,hand_crank,HasProperty,0.8,Often has a crank or lever attached to turn the screw and raise the load.,llm_property +jack,lifting_function,HasProperty,0.8,Designed specifically to raise heavy objects off the ground.,llm_property +jacket,thick_fabric,HasProperty,0.8,Jackets are typically made of sturdier materials than dresses or scarves,llm_property +jacket,buttoned_closure,HasProperty,0.8,"Jackets often have buttons, unlike underwear or ties",llm_property +jacket,warmth,HasProperty,0.8,"Jackets are designed to provide warmth, unlike ties or scarves",llm_property +jacket,structured_shape,HasProperty,0.8,"Jackets have a rigid shape, unlike dresses or underwear",llm_property +jacket,shoulder_coverage,HasProperty,0.8,Jackets are specifically designed to cover the shoulders,llm_property +jacket,pockets,HasProperty,0.8,"Jackets frequently have pockets, unlike dresses or ties",llm_property +jacket,outer_layer,HasProperty,0.8,"Jackets are worn as an outer layer, unlike underwear",llm_property +jar,oblong_shape,HasProperty,0.8,"Typically wider than it is tall, often cylindrical or slightly tapered.",llm_property +jar,lid_closure,HasProperty,0.8,"Often has a screw-on, clamp-on, or snap-on lid to seal the opening.",llm_property +jar,transparent_material,HasProperty,0.8,"Frequently made of glass, making the contents visible.",llm_property +jar,thick_walls,HasProperty,0.8,"Often has relatively thick walls, especially if made of glass or ceramic, compared to bottles or jugs.",llm_property +jar,sturdy_construction,HasProperty,0.8,"Designed for durability to hold preserves, food, or other items securely.",llm_property +jay,blue_plumage,HasProperty,0.8,"Bright blue feathers, especially on wings and tail, unlike the other birds listed",llm_property +jay,noisy_calls,HasProperty,0.8,"Loud, harsh, or garrulous vocalizations, more raucous than other listed birds",llm_property +jay,crested_head,HasProperty,0.8,Often has a noticeable crest of feathers on its head,llm_property +jay,intelligent_behavior,HasProperty,0.8,"Known for problem-solving skills and caching food, more advanced than other listed birds",llm_property +jay,bold_behavior,HasProperty,0.8,More assertive and less easily startled than many other birds,llm_property +jay,gray_underparts,HasProperty,0.8,"Typically lighter gray color on belly, contrasting with blue upperparts",llm_property +jay,bulky_build,HasProperty,0.8,Generally stockier and larger than many small passerine birds like finches or wrens,llm_property +jay,conspicuous_presence,HasProperty,0.8,"More noticeable due to size, color, and loudness compared to many other listed birds",llm_property +jewelry,shiny,HasProperty,0.8,"Often made of polished metals or gemstones, unlike most other materials listed",llm_property +jewelry,valuable,HasProperty,0.8,"Typically considered expensive or ornamental, unlike mundane materials like string, styrofoam, or straw",llm_property +jewelry,wearing_on_body,HasProperty,0.8,"Designed to be worn as adornment, unlike materials used for construction or fuel",llm_property +jewelry,small_size,HasProperty,0.8,"Usually small and delicate, unlike materials like concrete, brick, or fuel that are bulkier",llm_property +jewelry,material_variety,HasProperty,0.8,"Can be made of diverse materials (metal, gemstones, plastic), unlike materials that are usually uniform (e.g., styrofoam, cork)",llm_property +jicama,pod-like_skin,HasProperty,0.8,"It has a thin, papery, brown skin that peels easily, unlike the smooth skins of many vegetables",llm_property +jicama,creamy_white_flesh,HasProperty,0.8,"Its flesh is starchy and white, unlike the green or colorful flesh of many vegetables",llm_property +jicama,crunchy_texture,HasProperty,0.8,"When raw, it's very crisp and crunchy, unlike the soft or watery textures of most vegetables",llm_property +jicama,"mild,_nutty_taste",HasProperty,0.8,"It has a subtle, slightly sweet, nutty flavor, unlike the strong tastes of vegetables like eggplant or beet",llm_property +jicama,"round,_oval_shape",HasProperty,0.8,"It grows underground as a root, usually round or oval, unlike above-ground vegetables like zucchini or cucumber",llm_property +jointer,"flat,_wide_blade",HasProperty,0.8,Used to make wood surfaces perfectly flat and smooth,llm_property +jointer,motor-driven,HasProperty,0.8,Often powered by an electric motor to spin the blade rapidly,llm_property +jointer,"long,_stationary_tool",HasProperty,0.8,Designed to remain fixed on a workbench while wood is passed through,llm_property +jointer,spinning_knives,HasProperty,0.8,"Uses rotating blades to shave wood, unlike most hand tools in the list",llm_property +jointer,creates_smooth_edges,HasProperty,0.8,"Specifically designed to create straight, smooth edges on lumber",llm_property +jug,shape,HasProperty,0.8,"Typically has a narrow neck and a wider base, often with a handle",llm_property +jug,material,HasProperty,0.8,"Often made of ceramic, glass, or metal, distinguishing it from other materials like wood or plastic",llm_property +jug,handle,HasProperty,0.8,"Usually features a distinct handle for carrying, unlike most other containers",llm_property +jug,neck,HasProperty,0.8,"Has a narrower opening (neck) than most containers, designed for pouring",llm_property +jug,purpose,HasProperty,0.8,Specifically designed for holding and pouring liquids,llm_property +jug,use,HasProperty,0.8,"Commonly used for storing beverages like water, milk, or juice",llm_property +juice,colorful,HasProperty,0.8,"Juices are typically brightly colored liquids (e.g., orange, red, green) from fruits or vegetables, unlike most other listed items.",llm_property +juice,liquid_texture,HasProperty,0.8,"Juice is a thin, easily poured liquid, unlike solid or semi-solid items like cheese, spaghetti, or salad.",llm_property +juice,fruity_aroma,HasProperty,0.8,"Juices often have a distinct fruity or botanical smell, unlike most other items which have different or neutral scents.",llm_property +juice,sweet/sour_taste,HasProperty,0.8,"Juices usually taste sweet or tart due to natural sugars and acids, unlike items like water or coffee.",llm_property +juice,fruity_flavor_profile,HasProperty,0.8,"The flavor comes directly from fruit or vegetable sources, unlike cheese (dairy), coffee (bean), or water (neutral).",llm_property +jungle,dense_canopy,HasProperty,0.8,Thick layer of leaves and branches blocking sunlight to the forest floor,llm_property +jungle,lush_vegetation,HasProperty,0.8,"Abundant and overgrown plant life, including vines, trees, and undergrowth",llm_property +jungle,high_humidity,HasProperty,0.8,Air is very moist due to evaporation and lack of open space for air to dry,llm_property +jungle,biological_density,HasProperty,0.8,"Large number of insects, animals, and plants living in a small area",llm_property +jungle,abundant_noise,HasProperty,0.8,"Constant sounds of animal calls, buzzing insects, and rustling leaves",llm_property +jungle,thick_ground_cover,HasProperty,0.8,"Deep layer of fallen leaves, rotting wood, and plant debris on the forest floor",llm_property +jungle,rich_odour,HasProperty,0.8,"Strong scent of damp earth, decaying matter, and various plant life",llm_property +juniper,green_needles,HasProperty,0.8,"sharp, pointed leaves unlike broadleaf plants",llm_property +juniper,red_or_blue_berry-like_cones,HasProperty,0.8,"fleshy cones that resemble berries, unlike typical pinecones",llm_property +juniper,aromatic_smell,HasProperty,0.8,"distinctive resinous, pine-like scent",llm_property +juniper,dense_evergreen_foliage,HasProperty,0.8,year-round green growth that is compact and bushy,llm_property +juniper,woody_texture,HasProperty,0.8,"tough, hard stem and branches similar to trees",llm_property +juniper,sprigs_with_needles,HasProperty,0.8,small clusters of needles attached to stems,llm_property +juniper,hardy_resilience,HasProperty,0.8,ability to grow in poor soils and dry conditions,llm_property +kale,"leaves_are_ruffled,_curly,_or_frilly",HasProperty,0.8,Unlike the smooth leaves of cabbage or the flat leaves of chard,llm_property +kale,leaves_are_dark_green_or_purple-green_in_color,HasProperty,0.8,Not the typical light green of radishes or beets,llm_property +kale,leaves_are_thick_and_somewhat_tough,HasProperty,0.8,Unlike the tender leaves of jicama or cucumber,llm_property +kale,leaves_have_a_slightly_bitter_or_peppery_taste,HasProperty,0.8,Different from the sweet taste of beets or the mild taste of potato,llm_property +kale,stem_is_sturdy_and_woody_in_texture,HasProperty,0.8,"Unlike the soft, hollow stems of asparagus or the bulbous stems of kohlrabi",llm_property +kale,smell_is_faintly_earthy_or_slightly_pungent,HasProperty,0.8,Unlike the strong earthy smell of radish or the neutral smell of cucumber,llm_property +kale,leaves_have_a_waxy_or_slightly_fuzzy_feel,HasProperty,0.8,Unlike the smooth feel of cabbage or cauliflower leaves,llm_property +kayak,hollow_shell,HasProperty,0.8,"Kayaks have an enclosed cockpit for paddler immersion, unlike open canoes",llm_property +kayak,low_profile,HasProperty,0.8,"Kayaks are low to the water, unlike higher-profile boats or vehicles",llm_property +kayak,short_paddle_used,HasProperty,0.8,"Kayaks are propelled by double-bladed paddles held stationary, unlike mopped or car steering",llm_property +kayak,paddled_manually,HasProperty,0.8,"Kayaks are human-powered by paddling, unlike engine-powered vehicles",llm_property +kayak,sealed_bulkhead,HasProperty,0.8,"Kayaks often have watertight compartments, unlike open boats or vehicles",llm_property +kayak,lightweight_construction,HasProperty,0.8,"Kayaks are typically made of lightweight materials like plastic or fiberglass, unlike heavy vehicles",llm_property +kestrel,colorful_brown_and_red_feathers,HasProperty,0.8,"Most have duller, plainer colors compared to the kestrel's distinctive plumage",llm_property +kestrel,pointed_wings,HasProperty,0.8,"Unlike many others which have rounded wings, kestrel wings are long and pointed",llm_property +kestrel,long_tail,HasProperty,0.8,The tail is relatively long compared to other birds in the list,llm_property +kestrel,slightly_curved_beak,HasProperty,0.8,"The beak is slightly hooked, unlike the straight beaks of most other birds listed",llm_property +kestrel,raptor_claws,HasProperty,0.8,"Possesses sharp, curved talons for hunting, unlike many listed birds that have less specialized claws",llm_property +kestrel,ability_to_hover_in_air,HasProperty,0.8,"Unique ability to hover motionless in mid-air while hunting, unlike others that don't hover",llm_property +kestrel,slightly_upward_tilt_when_perched,HasProperty,0.8,Tends to tilt its tail slightly upward when perched on a branch or wire,llm_property +kettle,steam_vent_hole_at_top,HasProperty,0.8,Used to release steam while boiling water,llm_property +kettle,often_made_of_metal_(usually_stainless_steel_or_copper),HasProperty,0.8,"Most other containers are ceramic, glass, or plastic",llm_property +kettle,specifically_designed_spout_for_pouring,HasProperty,0.8,Allows controlled pouring of hot liquids,llm_property +kettle,often_has_a_handle_for_carrying,HasProperty,0.8,Differentiates from simple mugs or jugs,llm_property +kettle,often_comes_with_a_removable_metal_or_mesh_filter,HasProperty,0.8,"For making tea, unlike most other containers",llm_property +kettle,often_has_an_integrated_whistle_when_boiling,HasProperty,0.8,Not a feature of most other containers,llm_property +kettle,often_has_a_hinged_lid_that_swings_open,HasProperty,0.8,Differentiates from containers with separate lids,llm_property +kettle,often_has_markings_for_water_levels,HasProperty,0.8,"Helps measure quantity, unlike most other containers",llm_property +key,shape,HasProperty,0.8,"Typically has a unique, asymmetrical shape with teeth or cuts that fit into a specific lock",llm_property +key,size,HasProperty,0.8,"Usually small and portable, often carried on a keychain",llm_property +key,material,HasProperty,0.8,"Commonly made of metal, often steel or brass",llm_property +key,texture,HasProperty,0.8,"Smooth surface, sometimes slightly cold or hard to the touch",llm_property +key,functionality,HasProperty,0.8,Designed to engage with and turn inside a lock mechanism,llm_property +key,sound,HasProperty,0.8,Makes a distinct jangling or clicking sound when jostled or turned in a lock,llm_property +key,weight,HasProperty,0.8,Lightweight compared to most other tools in the list,llm_property +kingfisher,"colorful_plumage_(often_blue/green_on_back,_orange/brown_on_underside)",HasProperty,0.8,"Bright, contrasting colors distinguish it from many other birds.",llm_property +kingfisher,"stocky,_compact_body",HasProperty,0.8,"More robust and thick-set than many other birds, especially compared to hummingbirds or swifts.",llm_property +kingfisher,large_head_with_thick_bill,HasProperty,0.8,"Characteristic large head and strong, often dagger-shaped bill used for diving and catching fish.",llm_property +kingfisher,"rapid,_direct_flight",HasProperty,0.8,"Flies with quick, direct wingbeats, unlike the gliding flight of albatrosses or the hovering of hummingbirds.",llm_property +kingfisher,behavior:_often_perches_in_conspicuous_places_overlooking_water,HasProperty,0.8,"Frequently observed on branches, poles, or rocks near streams or lakes, waiting to dive for fish.",llm_property +kingfisher,behavior:_dives_headfirst_into_water_to_catch_fish,HasProperty,0.8,"Unique hunting technique of diving vertically into water to catch prey, unlike most other birds.",llm_property +kingfisher,behavior:_excavates_burrows_in_riverbanks_for_nesting,HasProperty,0.8,"Unusual nesting behavior of digging tunnels in soil or sand banks, unlike most birds that use trees or build nests.",llm_property +kingfisher,"often_emits_sharp,_piping_calls_or_whistles",HasProperty,0.8,"Distinctive vocalizations, often described as sharp or chattering, which differs from songs of many other songbirds.",llm_property +kitchen,"smells_of_cooking_spices,_herbs,_or_food",HasProperty,0.8,"Kitchens are specifically used for food preparation, often leaving distinct aromas.",llm_property +kitchen,often_contains_a_stove_or_oven,HasProperty,0.8,"A primary feature for cooking, differentiating it from other building types.",llm_property +kitchen,frequently_includes_a_sink_with_running_water,HasProperty,0.8,"Essential for food preparation, cleaning, and hygiene.",llm_property +kitchen,often_contains_countertops_or_work_surfaces,HasProperty,0.8,"Used for food preparation, setting tables, etc., specific to kitchen functions.",llm_property +kitchen,may_have_cabinets_or_shelves_for_food_storage,HasProperty,0.8,Dedicated storage for ingredients and cookware.,llm_property +kitchen,often_contains_a_refrigerator,HasProperty,0.8,"For keeping food cool, a key kitchen appliance.",llm_property +kitchen,often_contains_an_eating_area_(table/chairs),HasProperty,0.8,Kitchens often have a space for immediate consumption of prepared food.,llm_property +kite,"sharp,_hooked_beak",HasProperty,0.8,"Used for tearing flesh, unlike the straighter beaks of peacocks or woodpeckers",llm_property +kite,"light,_buoyant_flight",HasProperty,0.8,"Soars effortlessly for long periods, unlike the more direct flight of wrens or gannets",llm_property +kite,"long,_deeply_forked_tail",HasProperty,0.8,More pronounced than the rounded tails of pigeons or the shorter tails of puffins,llm_property +kite,often_scavenges_food,HasProperty,0.8,"Feeds on carrion and refuse, unlike the primarily insect-eating wrens or nectar-eating waxwings",llm_property +kite,wide_wingspan_relative_to_body_size,HasProperty,0.8,"Allows for gliding and soaring, unlike the shorter wings of woodpeckers or cotingas",llm_property +kite,"often_has_muted,_grayish_plumage",HasProperty,0.8,"Less colorful than peacocks or cotingas, and not as white as gannets",llm_property +kite,often_seen_flying_high_above_open_areas,HasProperty,0.8,Behavior of soaring differs from the ground-foraging of pigeons or the tree-climbing of woodpeckers,llm_property +kiwi,sensory_properties:,HasProperty,0.8,kiwi is sensory_properties:,llm_property +kiwi,"brown,_fuzzy_exterior",HasProperty,0.8,"The kiwi's peel is brown and hairy, unlike the smooth skin of many other fruits.",llm_property +kiwi,"small,_black_edible_seeds",HasProperty,0.8,The tiny black seeds in kiwi are distinct from the large seeds or pits of other fruits.,llm_property +kiwi,bright_green_interior_flesh,HasProperty,0.8,The vibrant green color of the kiwi's inside is unique compared to other fruits.,llm_property +kiwi,"tart,_acidic_taste",HasProperty,0.8,"Kiwi has a sharp, tangy flavor that differentiates it from sweeter fruits.",llm_property +kiwi,juicy_texture_when_ripe,HasProperty,0.8,"The fruit releases juice when bitten, unlike drier fruits like nectarines or peaches.",llm_property +kiwi,"behavioral_properties_(not_applicable_as_kiwi_is_a_fruit,_not_an_animal)",HasProperty,0.8,"kiwi is behavioral_properties_(not_applicable_as_kiwi_is_a_fruit,_not_an_animal)",llm_property +knife,edgy_blade,HasProperty,0.8,"It has a sharp cutting edge for slicing or piercing, unlike other tools that don't have this.",llm_property +knife,thin_profile,HasProperty,0.8,It's typically thin and flat compared to bulky tools like a vise or jointer.,llm_property +knife,slender_handle,HasProperty,0.8,"It has a long, narrow handle for controlled grip, unlike tools with short or differently shaped handles.",llm_property +knife,light_weight,HasProperty,0.8,Generally lightweight compared to tools like a jointer or vise.,llm_property +knife,dull_handle_texture,HasProperty,0.8,"Often has a textured handle for grip, which is a common design feature.",llm_property +kohlrabi,shape,HasProperty,0.8,Globular or oblong shape with leafy stems protruding from the top,llm_property +kohlrabi,skin_texture,HasProperty,0.8,"Tough, waxy, slightly bumpy skin, unlike the smoother skin of zucchini or cucumber",llm_property +kohlrabi,color,HasProperty,0.8,"Green or purple skin, often with lighter green stems/leaves, unlike the uniform green of kale or zucchini",llm_property +kohlrabi,internal_texture,HasProperty,0.8,"Dense, crunchy interior flesh when raw, similar to a radish but milder",llm_property +kohlrabi,taste,HasProperty,0.8,"Mild, slightly sweet and peppery flavor, unlike the sharpness of onion or the earthiness of beet",llm_property +kohlrabi,size,HasProperty,0.8,"Medium-sized, typically 3-6 inches in diameter, smaller than a typical zucchini or cucumber",llm_property +lacebug,translucent_wings,HasProperty,0.8,"Wings are see-through with a lacy pattern, unlike the opaque wings of flies or the solid wings of beetles",llm_property +lacebug,"flat,_oval_body",HasProperty,0.8,"Body is very flat and oval-shaped, unlike the cylindrical body of ants or the robust body of cockroaches",llm_property +lacebug,small_size,HasProperty,0.8,"Typically less than 5 mm long, smaller than most other insects listed",llm_property +lacebug,brown_or_green_color,HasProperty,0.8,"Usually brown or green, which helps camouflage it, unlike the bright colors of butterflies or the metallic sheen of some beetles",llm_property +lacebug,fine_hairs_on_body,HasProperty,0.8,"Body often covered in fine, short hairs, unlike the smooth exoskeleton of flies or the spines on some beetles",llm_property +ladder,long_and_tall_structure,HasProperty,0.8,"Ladders are designed to reach heights, unlike most other tools which are handheld or compact",llm_property +ladder,has_rungs_or_steps,HasProperty,0.8,"Ladders have distinct steps or rungs to climb on, which no other listed tool has",llm_property +ladder,usually_metal_or_wooden,HasProperty,0.8,"Ladders are commonly made of these materials, while many other tools are made of different materials (e.g., plastic, rubber, or specific metals)",llm_property +ladder,stands_upright,HasProperty,0.8,"Ladders are designed to remain stationary and upright when in use, unlike most other tools which are handheld",llm_property +ladder,has_two_sides_with_rungs_connecting_them,HasProperty,0.8,"Ladders typically have two vertical sides with rungs connecting them, unlike most other tools which are single pieces",llm_property +ladder,used_for_climbing,HasProperty,0.8,"Ladders are primarily used for ascending or descending, a function unique among the listed tools",llm_property +lake,shining_surface,HasProperty,0.8,"Reflects light due to flat water, unlike other landscapes",llm_property +lake,moving_water,HasProperty,0.8,"Creates waves or ripples, unlike static land features",llm_property +lake,water_depth,HasProperty,0.8,"Has a distinct depth, unlike surface-level landscapes",llm_property +lake,circular/serpentine_shape,HasProperty,0.8,Often forms a distinct boundary or shape within the landscape,llm_property +lake,translucent,HasProperty,0.8,"Water is transparent, allowing visibility to varying degrees",llm_property +land,ground,HasProperty,0.8,"It's solid ground as opposed to being water (ocean) or a specific type of landscape (forest, desert).",llm_property +land,undistinct_boundary,HasProperty,0.8,"It often doesn't have a clear boundary like a farm or orchard, blending into surroundings.",llm_property +land,supports_various_vegetation,HasProperty,0.8,"It can support many different types of plants, unlike a desert or specific crop area.",llm_property +land,possible_roughness,HasProperty,0.8,"It may have rough or uneven surfaces, unlike a flat meadow or smooth ditch.",llm_property +land,absence_of_water_surface,HasProperty,0.8,It's not covered by water like ocean or a pit (often implying water).,llm_property +land,abstractness,HasProperty,0.8,"It's a broad term, not as specific as farm, forest, or desert.",llm_property +lantern,property,HasProperty,0.8,explanation,llm_property +lantern,--,HasProperty,0.8,lantern is --,llm_property +lantern,holds_fuel,HasProperty,0.8,"Unlike other listed tools, a lantern is designed to contain fuel for illumination.",llm_property +lantern,emits_light,HasProperty,0.8,"Primary function is to produce light, unlike most other tools.",llm_property +lantern,transparent_casing,HasProperty,0.8,Usually has a clear or translucent part to let light out while protecting flame.,llm_property +lantern,often_portable,HasProperty,0.8,"Designed to be carried or moved easily, unlike some stationary tools like a jointer.",llm_property +lantern,has_a_flame_source,HasProperty,0.8,"Includes a wick or similar mechanism to generate flame, unlike battery or non-combustion tools.",llm_property +lark,"major_flight_pattern:_highly_distinctive_high,_looping,_often_acrobatic_flight,_especially_during_song_display",HasProperty,0.8,"Unlike the typically direct or steady flight of pigeons, ostriches, or martins.",llm_property +lark,"song_behavior:_famous_for_sustained,_complex,_often_melodious_songs,_frequently_delivered_in_flight_from_high_altitudes",HasProperty,0.8,"While many birds sing, the lark's flight singing and particular song style is highly characteristic.",llm_property +lark,"body_shape:_generally_plump_body_with_a_slightly_curved,_pointed_bill;_often_a_rather_plain_brown_or_streaked_plumage",HasProperty,0.8,"This distinguishes them from pigeons (stocky, rounder), partridges (rounder heads), quetzals (iridescent), cardinals (conical bills), or martins (streamlined).",llm_property +lark,"feathers:_usually_possess_a_short_crest_on_the_head,_which_can_be_raised",HasProperty,0.8,Differentiates from birds like pigeons or vultures which typically lack a crest.,llm_property +lark,"habitat_preference:_strongly_associated_with_open_grasslands,_fields,_and_heaths,_often_nesting_on_the_ground",HasProperty,0.8,"Contrasted with pigeons (urban, forest edges), ostriches (desert/savanna), partridges (thickets), vultures (scavenging areas), martins (open areas but often near water/human structures).",llm_property +lark,"nose_behavior:_larks_are_primarily_ground-feeders,_foraging_for_insects_and_seeds_in_open_areas",HasProperty,0.8,"Unlike aerial feeders like martins or scavengers like vultures, or fruit/seed specialists like pigeons.",llm_property +leaf,color_green,HasProperty,0.8,"Leaves are typically green due to chlorophyll, while other plant parts like roots or seeds can be different colors.",llm_property +leaf,"shape_flat,_broad",HasProperty,0.8,"Leaves are usually broad and flat, unlike the narrow, spiky form of thorns or the irregular shapes of roots.",llm_property +leaf,"texture_smooth,_woolly,_or_glossy",HasProperty,0.8,"Leaves can have distinct textures like smooth, fuzzy, or shiny surfaces, unlike the rough texture of a root or the spiky feel of a thorn.",llm_property +leaf,smell_foliage,HasProperty,0.8,"Leaves often have a distinct plant-like aroma, unlike the pungent smell of verbena or the woody scent of cypress.",llm_property +leaf,function_photosynthesis,HasProperty,0.8,"Leaves are specialized for photosynthesis, which distinguishes them from parts like roots (absorption) or seeds (reproduction).",llm_property +leather,distinctive_properties_of_leather:,HasProperty,0.8,leather is distinctive_properties_of_leather:,llm_property +leather,brown_color,HasProperty,0.8,"Leather is often brown or tan due to tanning process, unlike wood or straw",llm_property +leather,smooth_surface,HasProperty,0.8,Leather has a relatively smooth texture compared to rougher materials like brick or wood,llm_property +leather,pleasant_smell,HasProperty,0.8,"Leather has a unique earthy, tannin smell not found in other materials",llm_property +leather,strong_flexibility,HasProperty,0.8,"Leather is uniquely strong yet flexible, unlike brittle materials like ceramic or brick",llm_property +leather,sound_when_rubbed,HasProperty,0.8,Leather makes a distinctive rustling or crinkling sound when handled,llm_property +leather,darkens_with_oil,HasProperty,0.8,"Leather darkens when oiled or wet, unlike most other materials",llm_property +leather,natural_origin,HasProperty,0.8,"Leather is animal-derived, unlike the plant-based materials like wood or straw",llm_property +leg,leg_is_vertical,HasProperty,0.8,It's typically used for upright support in animals,llm_property +leg,leg_is_bony,HasProperty,0.8,It contains bone structure for strength,llm_property +leg,leg_moves_jointedly,HasProperty,0.8,It bends and extends at joints,llm_property +leg,leg_supports_weight,HasProperty,0.8,It bears the body's load in walking/standing,llm_property +leg,leg_ends_in_foot,HasProperty,0.8,It terminates in a specialized walking structure,llm_property +lemon,yellow_in_color,HasProperty,0.8,"lemons are bright yellow, unlike the other fruits which are more red, green, or orange",llm_property +lemon,small_size,HasProperty,0.8,"lemons are smaller than mangoes, papayas, pineapples, and squash",llm_property +lemon,round_shape,HasProperty,0.8,"lemons are oval to round, unlike the elongated shape of mangoes or the segmented shape of figs",llm_property +lemon,texture:_bumpy_skin,HasProperty,0.8,"lemons have a rough, dimpled skin, unlike the smooth skin of peaches or nectarines",llm_property +lemon,smell:_strong_citrus_scent,HasProperty,0.8,"lemons have a sharp, pungent citrus smell, distinct from the sweeter or milder scents of other fruits",llm_property +lemon,taste:_intensely_sour,HasProperty,0.8,"lemons are extremely sour due to high citric acid, unlike the sweet taste of mangoes or peaches",llm_property +lemon,juice_is_acidic,HasProperty,0.8,"lemon juice is very acidic and tart, unlike the sweeter juice of most other listed fruits",llm_property +lemur,black_and_white_fur,HasProperty,0.8,"Distinctive coloration pattern, unlike most other listed animals",llm_property +lemur,"long,_thin_tail",HasProperty,0.8,Lemur tails are particularly long compared to many others in the list,llm_property +lemur,"big,_forward-facing_eyes",HasProperty,0.8,Prominent eyes adapted for their arboreal and nocturnal lifestyle,llm_property +lemur,nocturnal_habits,HasProperty,0.8,"Many lemurs are active at night, unlike most listed animals",llm_property +lemur,tree-climbing_ability,HasProperty,0.8,"Lemurs are highly arboreal, a trait not shared by most others in the list",llm_property +lettuce,leafy_green_color,HasProperty,0.8,"It is primarily green, unlike most of the other items listed.",llm_property +lettuce,crunchy_texture,HasProperty,0.8,"It is crisp and crunchy when bitten, unlike soft items like orange or pizza.",llm_property +lettuce,mild_bitter_taste,HasProperty,0.8,"It has a subtle, slightly bitter taste, unlike sweet items like orange or chocolate.",llm_property +lettuce,water-rich,HasProperty,0.8,"It is composed mostly of water, making it crisp and refreshing, unlike drier items like chocolate or husk.",llm_property +lettuce,growing_in_soil,HasProperty,0.8,"It grows as a plant from soil, unlike items like pizza or juice that are processed.",llm_property +level,property,HasProperty,0.8,brief explanation,llm_property +level,used_to_measure_flatness_or_straightness,HasProperty,0.8,"Levels determine if a surface is level, unlike other tools which have different primary functions",llm_property +level,long_and_straight_body,HasProperty,0.8,"Typically has a long, rigid design to extend across surfaces being measured",llm_property +level,contains_a_bubble_vial_or_bubble_tube,HasProperty,0.8,Features a sealed glass tube with liquid and an air bubble to indicate levelness,llm_property +level,often_made_of_metal_or_wood_with_glass_components,HasProperty,0.8,Common materials include metal or wood for the body and glass for the vial,llm_property +level,handheld_and_stationary_during_use,HasProperty,0.8,"Used by holding it steady against a surface, unlike tools like knives or saws which are actively manipulated",llm_property +lever,"see:_flat,_elongated_shape",HasProperty,0.8,"Most levers have a simple, flat, long body compared to tools like axes or saws which have more complex profiles.",llm_property +lever,"touch:_smooth,_often_hard_surface",HasProperty,0.8,"Levers are typically made of metal or wood with a smooth, hard surface for effective pivoting.",llm_property +lever,see:_fulcrum_point_visible,HasProperty,0.8,"Levers usually have a distinct point where they pivot, unlike many other tools.",llm_property +lever,touch:_can_be_easily_manipulated_by_hand,HasProperty,0.8,"Levers are designed to be moved by hand to apply force, unlike larger or more complex tools.",llm_property +lever,hear:_click_or_pivot_sound_when_used,HasProperty,0.8,"When a lever is engaged or pivoted, it often makes a distinct clicking or pivoting sound.",llm_property +library,sound,HasProperty,0.8,Often very quiet due to rules requiring silence for reading/studying,llm_property +library,smell,HasProperty,0.8,Characteristic musty smell from aging paper in books,llm_property +library,visual,HasProperty,0.8,Walls lined with bookshelves filled with books,llm_property +library,structure,HasProperty,0.8,Typically has large windows to allow natural light for reading,llm_property +library,feel,HasProperty,0.8,"Often feels cool and calm, sometimes with polished wooden floors or surfaces",llm_property +library,size,HasProperty,0.8,Usually large interior space to accommodate extensive collections and reading areas,llm_property +lid,property,HasProperty,0.8,covers an opening on a container,llm_property +lighter,flammable_fuel,HasProperty,0.8,Contains fuel that ignites easily to create a flame,llm_property +lighter,small_size,HasProperty,0.8,"Typically small and portable, unlike most other tools",llm_property +lighter,metal_or_plastic_body,HasProperty,0.8,Often made of lightweight metal or plastic,llm_property +lighter,sliding_flint_wheel,HasProperty,0.8,A distinctive wheel mechanism used to create sparks,llm_property +lighter,burning_flame,HasProperty,0.8,"Produces a small, controllable flame when activated",llm_property +lighter,clicking_sound,HasProperty,0.8,Makes a distinct clicking sound when ignited,llm_property +lilac,purple_coloration,HasProperty,0.8,"Lilacs are often a distinctive shade of purple, distinguishing them from the other flower colors in the list.",llm_property +lilac,clustered_flowers,HasProperty,0.8,"Lilacs typically bloom in large, dense clusters on their stems, unlike many other flowers that have single blooms per stem.",llm_property +lilac,strong_fragrance,HasProperty,0.8,"Lilacs are known for their powerful, sweet, and distinctive smell, which is not as strongly characteristic in many other listed flowers.",llm_property +lilac,"long,_thin_leaves",HasProperty,0.8,"Lilac leaves are typically oval-shaped but elongated and pointed, unlike the broader leaves of some other flowers like gladiolas or lotus.",llm_property +lilac,woody_stem_structure,HasProperty,0.8,"As a shrub or small tree, lilacs have a woody stem, while others like dandelions or petal-bearing flowers may have herbaceous stems.",llm_property +lilac,spring_blooming,HasProperty,0.8,"Lilacs are strongly associated with early spring flowering, earlier than most other listed flowers like tulips or carnations.",llm_property +lily,colorful_white_or_pink,HasProperty,0.8,"Lilies often have white, pink, or other distinct color patterns, different from the varied colors of peonies or irises.",llm_property +lily,"thick,_waxy_petals",HasProperty,0.8,"Lily petals are notably thick and have a waxy texture, unlike the softer petals of poppies or dandelions.",llm_property +lily,"long,_narrow_leaves",HasProperty,0.8,"Lilies typically have long, narrow, lance-shaped leaves, unlike the broader leaves of peonies or irises.",llm_property +lily,strong_fragrance,HasProperty,0.8,"Many lilies have a very strong, sweet scent, stronger than most other flowers listed.",llm_property +lily,three_outer_and_three_inner_petals,HasProperty,0.8,"Lilies have a distinctive arrangement with three larger outer tepals and three inner ones, unlike the uniform petals of daisies or the irregular petals of dandelions.",llm_property +lily,"tall,_upright_stem",HasProperty,0.8,"Lilies often grow on tall, straight stems, taller than many other flowers like daisies or pansies.",llm_property +lily,powdery_resin_on_stem,HasProperty,0.8,"Some lilies have a distinctive powdery resin that can be rubbed off the stem, a property not common in other listed flowers.",llm_property +linen,texture,HasProperty,0.8,"Linen has a rough, slightly scratchy texture, unlike the softer feel of cotton or wool.",llm_property +linen,breathability,HasProperty,0.8,"Linen is highly breathable and dries quickly, making it distinct from rubber or leather.",llm_property +linen,fiber_origin,HasProperty,0.8,"Linen is made from flax plant fibers, unlike cotton (cotton plant) or wool (animal).",llm_property +linen,drapability,HasProperty,0.8,"Linen has a natural, graceful drape and wrinkles easily, unlike the stiffer feel of denim or burlap.",llm_property +linen,luster,HasProperty,0.8,"Linen has a subtle, natural sheen or luster, unlike the duller look of haircloth or burlap.",llm_property +lion,mane,HasProperty,0.8,"Only male lions have a thick, shaggy mane of hair around their neck",llm_property +lion,roaring_voice,HasProperty,0.8,"Lions have a deep, powerful roar that can be heard over long distances",llm_property +lion,tawny_coat,HasProperty,0.8,Lions typically have a uniform tawny or sandy-colored fur,llm_property +lion,social_behavior,HasProperty,0.8,Lions are the only cats in the list that live in prides (groups),llm_property +lion,rear_clawed_paws,HasProperty,0.8,Lions have retractable claws that are distinctly visible on their paws,llm_property +lion,massive_head,HasProperty,0.8,"Lions have a relatively large, robust head compared to their body size",llm_property +lion,tail_mane,HasProperty,0.8,Lions have a tuft of hair at the end of their tail that looks like a small mane,llm_property +lobster,"large,_hard_shell",HasProperty,0.8,"Unlike other foods in the list, lobster is encased in a thick exoskeleton",llm_property +lobster,legs_and_claws,HasProperty,0.8,"It has multiple legs and prominent pincers, not present in foods like beef or soup",llm_property +lobster,pinkish-red_cooked_color,HasProperty,0.8,"When cooked, lobster turns a distinctive bright pinkish-red hue",llm_property +lobster,"tender,_flaky_meat_inside_shell",HasProperty,0.8,"The edible part is segmented, white, and easily flakes apart, different from solid items like beef or candy",llm_property +lobster,ocean_scent/taste,HasProperty,0.8,"Has a distinct briny, sea-water flavor and aroma, unlike the other listed foods",llm_property +lobster,long_antennae_(living),HasProperty,0.8,"If alive, it has long, thin sensory antennae sticking out from its head",llm_property +lorikeet,"vibrant,_multi-colored_feathers",HasProperty,0.8,"They have a distinctive rainbow-like plumage, unlike the more uniform or single-colored feathers of many other birds.",llm_property +lorikeet,"long,_tapered_tail_feathers",HasProperty,0.8,"Their tails are pointed and somewhat long, differing from the shorter or rounded tails of many other birds.",llm_property +lorikeet,beehive-shaped_head_crest,HasProperty,0.8,"Some species have a crest of feathers that stands up like a beehive on their head, a feature not common in the listed birds.",llm_property +lorikeet,"noisy,_chattering_calls",HasProperty,0.8,"They produce loud, chattering sounds, particularly when in groups, which is different from the quiet or distinct calls of other birds.",llm_property +lorikeet,"strong,_curved_beak",HasProperty,0.8,"Their beaks are strong and distinctly curved for nectar-feeding, unlike the straight or less specialized beaks of other birds.",llm_property +lorikeet,"agile,_acrobatic_flight",HasProperty,0.8,"They fly with great agility, often hanging upside down or maneuvering in complex ways, unlike the more straightforward flight of other birds.",llm_property +lorikeet,"friendly,_social_behavior",HasProperty,0.8,"Lorikeets are often very social and can be friendly around humans, unlike the more solitary or cautious behavior of some birds.",llm_property +lorikeet,small_size_with_compact_body,HasProperty,0.8,"They are generally small and compact, though not as tiny as hummingbirds or as large as some other listed birds.",llm_property +lotus,"broad,_flat,_round_leaves_that_float_on_water",HasProperty,0.8,"lotus leaves are distinctly large and float, unlike many other flower leaves",llm_property +lotus,"large,_cup-shaped_flower_with_many_overlapping_petals",HasProperty,0.8,"lotus flowers have a specific large, cup-like structure",llm_property +lotus,often_pink_or_white_in_color,HasProperty,0.8,distinctive coloration common for lotus flowers,llm_property +lotus,grows_emergent_from_water_in_ponds_or_slow-moving_waterways,HasProperty,0.8,lotus specifically grows in aquatic environments,llm_property +lotus,distinctive_scent_that_is_often_described_as_sweet_or_fragrant,HasProperty,0.8,lotus has a recognizable fragrance different from many other flowers,llm_property +lovebird,small_size,HasProperty,0.8,Typically smaller than many other birds in the list,llm_property +lovebird,colorful_plumage,HasProperty,0.8,"Vivid greens and sometimes other bright colors, unlike many other birds",llm_property +lovebird,distinctive_head_shape,HasProperty,0.8,"Compact head with a relatively thick, hooked beak",llm_property +lovebird,pair_bonding_behavior,HasProperty,0.8,"Known for strong pair bonds, often seen in pairs, unlike many other birds",llm_property +lovebird,"fast,_direct_flight",HasProperty,0.8,"Quick, almost darting flight style different from many other birds",llm_property +lovebird,curved_beak,HasProperty,0.8,"Hooked beak adapted for cracking seeds, unlike the straighter beaks of many others",llm_property +lovebird,agitated_call,HasProperty,0.8,"High-pitched, often repetitive calls distinct from the songs of others like nightingales",llm_property +lynx,large_ear_tufts,HasProperty,0.8,"lynx have prominent, furry tufts on top of their ears, which are not common in other listed animals",llm_property +lynx,spotted_coat,HasProperty,0.8,"lynx have a distinctive spotted fur pattern, unlike the smooth or uniform colors of most others",llm_property +lynx,long_legs,HasProperty,0.8,"lynx have relatively long legs compared to their body size, which is not typical for the others",llm_property +lynx,pointed_snout,HasProperty,0.8,"lynx have a distinctly pointed snout, unlike the rounded or beaked snouts of the others",llm_property +lynx,excellent_night_vision,HasProperty,0.8,"lynx have large eyes adapted for low light, a feature not emphasized in the others",llm_property +lynx,quiet_movement,HasProperty,0.8,"lynx move very stealthily and quietly, a behavior not characteristic of the others",llm_property +lynx,wild_cat_behavior,HasProperty,0.8,"lynx are solitary predators, unlike the varied behaviors of the others (e.g., flight in birds/bats, aquatic life in others)",llm_property +lyre,shape,HasProperty,0.8,"Distinctly U-shaped frame with two curved arms and a crossbar, unlike the straight or rounded shapes of other instruments.",llm_property +lyre,stringed,HasProperty,0.8,"Has strings stretched between the crossbar and a resonating body, different from percussion, wind, or electronic instruments.",llm_property +lyre,holds_upright,HasProperty,0.8,"Played held upright in the player's lap, unlike instruments held horizontally (guitar, piano), placed on a stand (trumpet, synthesizer), or held to the mouth (recorder, harmonica).",llm_property +lyre,acoustic_resonance,HasProperty,0.8,"Produces sound through vibration of strings and a hollow body, without relying on electronic amplification like synthesizers or microphones.",llm_property +lyre,ancient_origins,HasProperty,0.8,"Has historical roots in ancient Greece and other early civilizations, older than many modern instruments like the piano or synthesizer.",llm_property +mace,rounded_metal_ball_head,HasProperty,0.8,"Mace has a heavy, often spiked or flanged metal ball as its primary striking element, unlike flat blades or gun barrels.",llm_property +mace,shorter_shaft_than_spear,HasProperty,0.8,"Mace typically has a shorter handle compared to spears, allowing for close-quarters use.",llm_property +mace,heavy_weight_for_its_size,HasProperty,0.8,"Due to the metal ball head, mace is disproportionately heavy for its length, unlike lighter weapons like pistols or rifles.",llm_property +mace,no_firing_mechanism,HasProperty,0.8,"Mace is purely a manual impact weapon and lacks triggers, firing pins, or propellant systems found in guns.",llm_property +mace,striking_weapon_design,HasProperty,0.8,"Mace is designed to bludgeon or crush, unlike cutting (blades) or penetrating (spears, bullets) weapons.",llm_property +mace,sometimes_decorative_appearance,HasProperty,0.8,"Especially historical or ceremonial maces may have ornate designs, unlike practical firearms or simple tools like hammers.",llm_property +magnesium,silvery_white_appearance,HasProperty,0.8,Magnesium is notably lighter in color than metals like copper or iron.,llm_property +magnesium,lightweight,HasProperty,0.8,Magnesium is much less dense (lighter) than most other listed metals.,llm_property +magnesium,flammable,HasProperty,0.8,"Magnesium burns with a very bright white flame, unlike most other listed metals.",llm_property +magnesium,low_melting_point,HasProperty,0.8,Magnesium has a lower melting point compared to many other common metals.,llm_property +magnesium,poor_corrosion_resistance,HasProperty,0.8,Magnesium corrodes relatively easily compared to metals like platinum or titanium.,llm_property +magpie,colorful_black_and_white_plumage,HasProperty,0.8,Most other listed birds have solid or differently patterned colors,llm_property +magpie,distinctively_long_tail,HasProperty,0.8,"Most listed birds have shorter, less pronounced tails",llm_property +magpie,"bright,_shiny_eyes",HasProperty,0.8,"Often have prominent, bright eyes, unlike many others with duller eyes",llm_property +magpie,"broad,_flat_beak",HasProperty,0.8,Compared to the hooked bills of falcons or specialized bills of hornbills,llm_property +magpie,"loud,_chattering_calls",HasProperty,0.8,"Has a unique, harsh vocalization, unlike the songs of larks or calls of terns",llm_property +magpie,intelligent_and_curiosity,HasProperty,0.8,Known for being highly intelligent and often investigate objects,llm_property +mahogany,dark_reddish_color,HasProperty,0.8,"Mahogany is typically a rich, reddish-brown, unlike the lighter colors of oak or pine",llm_property +mahogany,fine_grain_texture,HasProperty,0.8,"Its wood grain is smooth and even, unlike the coarser grain of oak",llm_property +mahogany,smooth_surface_feel,HasProperty,0.8,"It feels very smooth to the touch, unlike the rougher feel of poplar",llm_property +mahogany,heavy_weight,HasProperty,0.8,"Mahogany is notably dense and heavy, heavier than maple or pine",llm_property +mahogany,strong_durability,HasProperty,0.8,"It's exceptionally strong and resistant to decay, unlike softer woods like poplar",llm_property +mall,open_space,HasProperty,0.8,large open areas with walking paths inside,llm_property +mall,many_stores,HasProperty,0.8,contains numerous different shops and businesses,llm_property +mall,pedestrian_flow,HasProperty,0.8,designed for lots of people walking around inside,llm_property +mall,ceiling_height,HasProperty,0.8,often has high ceilings and skylights,llm_property +mall,air_conditioning,HasProperty,0.8,usually climate-controlled for comfort,llm_property +mall,decorative_lighting,HasProperty,0.8,"often features prominent, bright, decorative lighting",llm_property +mall,food_court,HasProperty,0.8,typically has a designated area with multiple food vendors,llm_property +mallard,colorful_iridescent_green_head,HasProperty,0.8,"Males have a distinctive glossy green head, unlike most other common birds",llm_property +mallard,white_neck_ring,HasProperty,0.8,Males have a thin white ring between the green head and brown body,llm_property +mallard,brown_speckled_body_(female),HasProperty,0.8,Females have a mottled brown plumage with dark spots for camouflage,llm_property +mallard,bright_blue_wing_patch,HasProperty,0.8,Both sexes have an obvious iridescent blue speculum on the wing,llm_property +mallard,heavy_body_build,HasProperty,0.8,"Mallards have a relatively bulky, rounded body shape compared to many smaller songbirds",llm_property +mallard,"long,_slightly_curled_tail",HasProperty,0.8,Males have distinctive curled tail feathers (drake's curl),llm_property +mallard,"relaxed,_flowing_flight_pattern",HasProperty,0.8,"Flaps in a smooth, easy rhythm unlike the rapid wingbeats of many small birds",llm_property +mandolin,carved_wooden_body,HasProperty,0.8,"The bowl-like shape is characteristic, unlike flutes or trumpets",llm_property +mandolin,lute-style_tuning_pegs,HasProperty,0.8,"Tapered pegs projecting from the headstock, unlike violin-style pegs",llm_property +mandolin,metal_strings,HasProperty,0.8,"Usually steel, unlike harp's or cello's gut/synthetic strings",llm_property +mandolin,8_strings_in_pairs,HasProperty,0.8,"Courses of two strings tuned to the same note, unlike single-stringed instruments",llm_property +mandolin,flat_bridge,HasProperty,0.8,Unlike arched bridges of violins or cellos,llm_property +mango,colorful_yellow/orange_skin,HasProperty,0.8,"Unlike many other fruits which are red or green, mangoes are typically yellow or orange when ripe",llm_property +mango,sweet_tropical_fruit_flavor,HasProperty,0.8,"Mango has a distinctively sweet, rich tropical flavor unlike the tart or mild flavors of many other fruits",llm_property +mango,"smooth,_juicy_flesh",HasProperty,0.8,Mango fruit is known for its very smooth and juicy texture inside,llm_property +mango,shape_like_a_small_burnt_end,HasProperty,0.8,"Mangoes have a distinctive oblong shape with a large, flat pit inside",llm_property +mango,strixing_texture,HasProperty,0.8,The skin of a mango often has a slightly striated or bumpy texture,llm_property +mango,sparkling_aroma,HasProperty,0.8,"Mango has a unique, fragrant aroma that's quite distinctive",llm_property +mango,ripeness_indicator_color_change,HasProperty,0.8,Mangoes change from green to yellow/orange as they ripen,llm_property +maple,color,HasProperty,0.8,"Typically pale, ranging from creamy white to light reddish-brown",llm_property +maple,grain,HasProperty,0.8,"Often fine-grained with a uniform, straight pattern, unlike the coarser grain of oak or pine",llm_property +maple,hardness,HasProperty,0.8,Considerably harder and denser than softwoods like pine or poplars,llm_property +maple,weight,HasProperty,0.8,Heavier and more substantial to hold than softer woods like balsa or pine,llm_property +maple,sound,HasProperty,0.8,"Produces a distinct, crisp sound when struck or snapped, different from the duller sound of softer woods",llm_property +marble,polished_surface,HasProperty,0.8,"Often smoothed and polished, unlike rougher stones like pebbles or bricks",llm_property +marble,calcium_carbonate_composition,HasProperty,0.8,"Made primarily of calcite, which dissolves in acid (unlike quartz or garnet)",llm_property +marble,translucent_appearance,HasProperty,0.8,"Can allow light to pass through slightly, unlike opaque stones like brick",llm_property +marble,white_color_(often),HasProperty,0.8,"Typically white or light-colored, unlike the darker hues of many other stones",llm_property +marble,visible_crystal_structure,HasProperty,0.8,"May show interlocking calcite crystals, unlike amorphous stones",llm_property +marjoram,"small,_oval_green_leaves",HasProperty,0.8,Smaller and more rounded than thyme or oregano leaves,llm_property +marjoram,delicate_flower_spikes,HasProperty,0.8,"Small, pale pink or white flowers in spikes, unlike parsley or horsetail",llm_property +marjoram,"sweet,_fragrant_aroma",HasProperty,0.8,"Distinctly sweet and floral scent, unlike the sharper smell of thyme or oregano",llm_property +marjoram,spearmint-like_flavor,HasProperty,0.8,"Unique sweet, minty taste that differs from basil's strong or parsley's mild flavor",llm_property +marjoram,"soft,_downy_leaf_surface",HasProperty,0.8,Leaves feel softer and slightly fuzzy compared to the tougher leaves of thyme or oregano,llm_property +marmoset,sharp_claws,HasProperty,0.8,"Unlike primates with opposable thumbs, marmosets have claws on all digits for climbing",llm_property +marmoset,soft_fur,HasProperty,0.8,"Their fur is very fine and dense, unlike the coarse fur of many other primates",llm_property +marmoset,small_size,HasProperty,0.8,"They are extremely small primates, much smaller than most other listed animals",llm_property +marmoset,high-pitched_vocalizations,HasProperty,0.8,"They make distinctive, bird-like calls, unlike the deep roars or calls of other animals",llm_property +marmoset,diet_of_tree_sap,HasProperty,0.8,"They have specialized teeth for gouging trees to eat sap, unique among listed primates",llm_property +marmoset,active_during_day,HasProperty,0.8,"As diurnal creatures, they are active when most listed animals are inactive",llm_property +marmoset,twin_births_common,HasProperty,0.8,"Marmosets often give birth to fraternal twins, unlike most other primates",llm_property +marmot,size,HasProperty,0.8,"Marmots are generally medium-sized rodents, larger than many similar animals like bats or smaller rodents, but smaller than large mammals like bison or gorillas.",llm_property +marmot,fur_color,HasProperty,0.8,"They typically have brown or grey fur, which is less striking or patterned than the stripes of tigers or the distinct colors of some birds like cassowaries.",llm_property +marmot,tail_shape,HasProperty,0.8,"Marmots have short, bushy tails, unlike the long, bushy tails of some monkeys or the distinct tail shapes of birds or reptiles.",llm_property +marmot,behavior_(hibernation),HasProperty,0.8,"They are known for hibernating during winter, a behavior not shared by the other animals listed (except possibly bats, but marmots are more extreme hibernators).",llm_property +marmot,nose_shape,HasProperty,0.8,"Their noses are blunt and round, distinguishing them from the more pointed snouts of lions, tigers, or the beaks of birds like cassowaries.",llm_property +marmot,habitat,HasProperty,0.8,"They often live in burrows or rockslides in mountainous or alpine regions, a specific habitat preference not shared by many other listed animals.",llm_property +marmot,social_behavior,HasProperty,0.8,"They are social animals, living in colonies, which is less common among some of the listed animals like solitary tigers or lions.",llm_property +martin,colorful_bib,HasProperty,0.8,"Many martins have a distinctive bright or dark patch of color on their throat or chest, unlike the more uniformly colored bodies of many other listed birds.",llm_property +martin,swift_flight,HasProperty,0.8,"Martins often fly with quick, agile, darting movements, different from the slower soaring of eagles or the deliberate wading of herons.",llm_property +martin,pointed_wings,HasProperty,0.8,"Martins typically have long, pointed wings adapted for fast flight, unlike the broader, rounded wings of ducks or herons.",llm_property +martin,social_breeding,HasProperty,0.8,"Martins frequently nest in colonies, which is less common for many other listed birds like eagles or woodpeckers.",llm_property +martin,long_tail_streamers,HasProperty,0.8,"Some martin species have distinctive long tail feathers that stream out during flight, a feature not seen in most other listed birds.",llm_property +martin,insectivorous_diet,HasProperty,0.8,"Martins primarily eat insects caught in flight, unlike the fish-eating habits of kingfishers or the plant-eating nature of cassowaries.",llm_property +martin,noxious_nest_smell,HasProperty,0.8,"Martins sometimes build nests with dung or mud, which can give off a strong, unpleasant odor, unlike the cleaner nests of many other birds.",llm_property +meadow,floral_diversity,HasProperty,0.8,Contains many different types of wildflowers,llm_property +meadow,varied_grass_types,HasProperty,0.8,Grasses are not uniform in height or type,llm_property +meadow,gentle_terrain,HasProperty,0.8,"Not flat like a field, not uneven like a hollow or furrow",llm_property +meadow,natural_setting,HasProperty,0.8,Less man-made than an orchard or garden,llm_property +meadow,rich_soil_smell,HasProperty,0.8,"Earthy, organic scent from decomposing plant matter",llm_property +mealybug,waxy_white_coating,HasProperty,0.8,"A powdery, wax-like substance covering its body",llm_property +mealybug,soft_body,HasProperty,0.8,Lacks the hard exoskeleton seen in many other insects,llm_property +mealybug,no_wings,HasProperty,0.8,"Unlike many insects in this category, it doesn't have wings",llm_property +mealybug,sluggish_movement,HasProperty,0.8,Moves slowly compared to many other insects,llm_property +mealybug,antennae_present,HasProperty,0.8,"Has short antennae, though often hidden by wax",llm_property +mealybug,plant_sap_feeder,HasProperty,0.8,"Feeds specifically on plant sap, unlike predatory or diverse feeders",llm_property +mealybug,often_found_in_colonies,HasProperty,0.8,Frequently lives in groups on plants,llm_property +meat,smell,HasProperty,0.8,"Strong, often gamey or savory, unlike the neutral smell of cheese or sugar",llm_property +meat,taste,HasProperty,0.8,"Salty, savory, and rich, unlike the sweetness of sugar or the blandness of body parts",llm_property +meat,texture,HasProperty,0.8,"Fibrous and often chewy, unlike the smoothness of cheese or the powdery texture of sugar",llm_property +meat,color,HasProperty,0.8,"Reddish or brownish hue, unlike the white of cheese or sugar, or the black/gray of emu/penguin",llm_property +meat,form,HasProperty,0.8,"Usually cut into identifiable pieces, unlike the ground-up or liquid forms of soup or the whole forms of animals",llm_property +medicine,color_variation,HasProperty,0.8,Often has distinct colors or patterns not found in purely ornamental plants,llm_property +medicine,texture_unusual,HasProperty,0.8,"May have specific textures (e.g., rough, waxy) related to active compounds",llm_property +medicine,smell_strong,HasProperty,0.8,"Frequently emits a potent, unique scent from active ingredients",llm_property +medicine,taste_bitter,HasProperty,0.8,Many have a bitter or specific medicinal taste,llm_property +medicine,leaf_shape_unique,HasProperty,0.8,Leaves may have unusual shapes suited for extracting compounds,llm_property +mercury,liquid_at_room_temperature,HasProperty,0.8,"Unlike other listed metals, mercury is a liquid at standard temperature and pressure, while others are solid solids.",llm_property +mercury,silvery_white_appearance,HasProperty,0.8,It has a distinctive silvery-white color that is different from the colors of metals like copper or bronze.,llm_property +mercury,highly_dense,HasProperty,0.8,"Mercury is significantly denser than most other common metals, with a density of 13.534 grams per cubic centimeter.",llm_property +mercury,toxic_and_poisonous,HasProperty,0.8,"Unlike many other listed metals, mercury is highly toxic and can be harmful if ingested or inhaled.",llm_property +mercury,melts_at_very_low_temperature,HasProperty,0.8,"Its melting point is -38.83°C, much lower than that of other metals like steel or copper, which are solids at room temperature.",llm_property +metal,malleable,HasProperty,0.8,can be hammered into thin sheets without breaking,llm_property +metal,lustrous,HasProperty,0.8,shiny and reflective surface when polished,llm_property +metal,good_conductor_of_heat,HasProperty,0.8,efficiently transfers thermal energy,llm_property +metal,good_conductor_of_electricity,HasProperty,0.8,allows electric current to flow easily,llm_property +metal,often_solid_at_room_temperature,HasProperty,0.8,typically hard and rigid (exceptions like mercury),llm_property +metal,typically_has_a_high_melting_point,HasProperty,0.8,requires significant heat to liquefy,llm_property +mica,shiny_appearance,HasProperty,0.8,"Often has a pearly or metallic luster, unlike most other minerals listed.",llm_property +mica,sheet-like_structure,HasProperty,0.8,"Can be split into thin, flexible sheets, a property not shared by the other minerals.",llm_property +mica,slightly_soft_to_the_touch,HasProperty,0.8,"Can be scratched by a fingernail, making it softer than quartz or glass.",llm_property +mica,thin_transparency,HasProperty,0.8,"Some types allow light to pass through, giving a translucent appearance.",llm_property +mica,smooth_breakage_surface,HasProperty,0.8,"When broken, it often splits into smooth, flat surfaces.",llm_property +micrometer,diameter_measurement_capability,HasProperty,0.8,Micrometer is specifically designed to measure diameters and thicknesses precisely.,llm_property +micrometer,threaded_spindle,HasProperty,0.8,Features a precisely threaded spindle that allows for fine adjustment.,llm_property +micrometer,anvil_and_spindle_contact_points,HasProperty,0.8,Has a stationary anvil and a moveable spindle that contact the object being measured.,llm_property +micrometer,micrometer_caliper_mechanism,HasProperty,0.8,"Uses a calibrated screw mechanism for measurement, unlike most other listed instruments.",llm_property +micrometer,adjustment_thimble,HasProperty,0.8,Includes a thimble for fine rotation to achieve precise measurements.,llm_property +micrometer,calibration_marks,HasProperty,0.8,"Features fine, precise calibration marks on its sleeve and thimble.",llm_property +micrometer,precision_measuring_range,HasProperty,0.8,"Designed for extremely fine measurement accuracy, typically in the micron or thousandth-of-an-inch scale.",llm_property +micrometer,metal_construction,HasProperty,0.8,"Primarily made of metal for durability and stability, unlike many other listed instruments.",llm_property +milk,smooth_texture,HasProperty,0.8,"Milk has a smooth, creamy texture when poured, unlike the often sharper textures of wine, beer, or soda.",llm_property +milk,sweet_taste,HasProperty,0.8,"Milk is naturally slightly sweet, distinguishing it from the often bitter or acidic tastes of coffee, tea, or juice.",llm_property +milk,fatty,HasProperty,0.8,"Milk contains fat (especially whole milk), giving it a richness not found in water, tea, or clear juices.",llm_property +milk,off-white_color,HasProperty,0.8,"Even when not pure white, milk has an off-white or creamy color, unlike the clear or deeply colored other beverages.",llm_property +milk,smooth_sound_when_poured,HasProperty,0.8,"Pouring milk makes a smooth, steady sound, unlike the frothy or bubbly sounds from beer, soda, or coffee.",llm_property +mine,small_spherical_or_cylindrical_shape,HasProperty,0.8,"Unlike the others, a mine is typically a compact, rounded object designed to be buried or placed on the ground.",llm_property +mine,buried_often_placed_underground_or_underwater,HasProperty,0.8,"Mines are uniquely deployed concealed in the environment, unlike most handheld weapons.",llm_property +mine,explosive_contains_a_large_amount_of_high_explosive_charge,HasProperty,0.8,"Mines are designed to cause widespread destruction upon detonation, more so than most handheld weapons.",llm_property +mine,pressure-sensitive_often_triggered_by_pressure_or_contact,HasProperty,0.8,"Unlike weapons requiring direct human action to fire, mines detonate upon pressure or proximity.",llm_property +mine,disposable_not_designed_for_reuse_once_activated,HasProperty,0.8,"Mines are single-use devices, unlike reusable weapons like handguns or swords.",llm_property +mine,hidden_difficult_to_see_before_activation,HasProperty,0.8,"Mines are intentionally hidden or camouflaged, unlike openly carried weapons.",llm_property +mine,automatic_triggers_itself_upon_specific_conditions,HasProperty,0.8,Mines do not require manual operation; they are triggered by environmental factors.,llm_property +mineral,hardness,HasProperty,0.8,"minerals have defined hardness on the Mohs scale, unlike soil or glass",llm_property +mineral,crystal_form,HasProperty,0.8,"many minerals form distinct crystal shapes, unlike amorphous glass or rounded pebbles",llm_property +mineral,specific_chemical_composition,HasProperty,0.8,"minerals have unique chemical formulas (e.g. quartz is SiO₂), unlike mixtures like soil or marble",llm_property +mineral,solid_state,HasProperty,0.8,"minerals are naturally occurring solids, unlike soil which contains liquids/particles",llm_property +mineral,lustre,HasProperty,0.8,"minerals exhibit specific luster types (metallic, glassy, etc.), unlike matte soil or dull pebbles",llm_property +mineral,specific_cleavage,HasProperty,0.8,"minerals break along definite planes, unlike irregular breaks in pebbles or soil",llm_property +minnow,small_size,HasProperty,0.8,Minnows are typically much smaller than most other fish in this list.,llm_property +minnow,silvery_coloration,HasProperty,0.8,They often have a distinctive silvery or pale color.,llm_property +minnow,slim_body_shape,HasProperty,0.8,"Minnows have a slender, streamlined body compared to flatter fish like flounder or skate.",llm_property +minnow,small_mouth,HasProperty,0.8,Their mouths are generally quite small relative to their body size.,llm_property +minnow,fast_swimming,HasProperty,0.8,"They tend to move quickly, often in schools, to evade predators.",llm_property +minnow,sweet_taste,HasProperty,0.8,"When eaten, minnows are often described as having a mild or sweet flavor.",llm_property +minnow,clear_fins,HasProperty,0.8,Their fins are usually translucent or nearly transparent.,llm_property +minnow,gentle_movement,HasProperty,0.8,Their movements in water are often less powerful or aggressive than larger predatory fish.,llm_property +mold,color,HasProperty,0.8,"Mold often appears green, black, white, or gray, unlike the typically red/pinkish appearance of the others.",llm_property +mold,texture,HasProperty,0.8,"Mold has a fuzzy, powdery, or slimy texture, unlike the smooth, dense, or fibrous textures of the others.",llm_property +mold,growth_location,HasProperty,0.8,"Mold grows on surfaces (bread, walls, etc.) rather than being part of an internal biological structure.",llm_property +mold,smell,HasProperty,0.8,"Mold typically has a musty, earthy, or stale odor, which is distinct from the lack of strong smell in the others.",llm_property +mold,appearance,HasProperty,0.8,"Mold grows in patches or colonies, while the others are typically uniform in texture and appearance.",llm_property +mold,reproduction,HasProperty,0.8,"Mold reproduces via spores, a method not applicable to blood, body, or muscle tissues.",llm_property +mold,size,HasProperty,0.8,"Mold colonies can vary greatly in size, from microscopic to covering large areas, unlike the more fixed sizes of the others.",llm_property +mole,eyes,HasProperty,0.8,"mole eyes are tiny and hidden, unlike most other animals which have visible eyes",llm_property +mole,nose,HasProperty,0.8,"mole nose is fleshy and bulbous, unlike the pointed noses of many other animals",llm_property +mole,paws,HasProperty,0.8,"mole paws are broad and shovel-like, adapted for digging unlike the paws of other listed animals",llm_property +mole,fur,HasProperty,0.8,"mole fur is very short and velvety, unlike the longer or coarser fur of other listed animals",llm_property +mole,behavior,HasProperty,0.8,"mole spends most of its life underground, unlike the more surface-dwelling listed animals",llm_property +mole,shape,HasProperty,0.8,"mole body is short and cylindrical, unlike the more elongated or streamlined shapes of other listed animals",llm_property +mole,habitat,HasProperty,0.8,"mole lives primarily in soil, unlike the diverse habitats of other listed animals",llm_property +moped,property,HasProperty,0.8,"small two-wheeled vehicle, usually with a seat for one",llm_property +mortar,shell-projecting,HasProperty,0.8,launches explosive shells at high angles,llm_property +mortar,breathing-smokeless,HasProperty,0.8,emits minimal smoke compared to cannons,llm_property +mortar,mobile-portable,HasProperty,0.8,lightweight and easily transported,llm_property +mortar,rotating-barrel,HasProperty,0.8,has a tube that rotates for aiming,llm_property +mortar,sound-thud,HasProperty,0.8,makes a heavy thudding sound when fired,llm_property +mortar,smell-gunpowder,HasProperty,0.8,carries the distinct smell of gunpowder,llm_property +moss,small_leafy_foliage,HasProperty,0.8,"Moss has tiny, soft leaves unlike larger leaves of watermelon or azalea",llm_property +moss,green_color,HasProperty,0.8,"Moss is typically bright green, distinguishing it from other plant colors",llm_property +moss,soft_texture,HasProperty,0.8,Moss feels soft and velvety to the touch,llm_property +moss,grows_low_to_ground,HasProperty,0.8,"Moss grows in dense, low mats unlike upright plants",llm_property +moss,thrives_in_damp_environments,HasProperty,0.8,"Moss is often found in moist, shady areas",llm_property +moss,no_woody_stem,HasProperty,0.8,"Moss lacks a hard stem like vine, bark, or cannabis",llm_property +moss,spreads_by_spreaders,HasProperty,0.8,Moss reproduces via small spores instead of seeds,llm_property +mountain,tall,HasProperty,0.8,Mountains are significantly taller than other landscape features like ridges or hollows.,llm_property +mountain,rocky,HasProperty,0.8,"Mountains are primarily composed of rock, distinguishing them from softer materials like savanna or garden soil, or liquids like sea.",llm_property +mountain,pointed_or_jagged_shape,HasProperty,0.8,"Many mountains have sharp, uneven peaks or slopes, unlike the smoother shapes of things like crystal or ditch.",llm_property +mountain,snow-capped_peak,HasProperty,0.8,"High mountains often have snow or ice on their highest parts, a feature not found in flat landscapes or other categories.",llm_property +mountain,difficult_to_climb,HasProperty,0.8,"Mountains are physically challenging to ascend, unlike flat areas like savanna or simple depressions like a pit.",llm_property +mouth,lips,HasProperty,0.8,"fleshy, movable outer parts",llm_property +mouth,teeth,HasProperty,0.8,"hard, bony structures for biting/chewing",llm_property +mouth,tongue,HasProperty,0.8,"muscular, movable organ inside",llm_property +mouth,bite_force,HasProperty,0.8,the pressure exerted when closing jaws,llm_property +mouth,taste_buds,HasProperty,0.8,small sensory structures detecting flavors,llm_property +mouth,chewing_motion,HasProperty,0.8,rhythmic grinding of food between teeth,llm_property +mouth,sound_production,HasProperty,0.8,ability to create vocalizations,llm_property +mouthpiece,shape,HasProperty,0.8,It's typically shaped for insertion into or onto something (like a trumpet or snorkel),llm_property +mouthpiece,material,HasProperty,0.8,"Often made of metal, rubber, or plastic, distinct from wood or stone common in other tools",llm_property +mouthpiece,function,HasProperty,0.8,Designed to be placed against or in a user's mouth for playing or breathing,llm_property +mouthpiece,connection,HasProperty,0.8,"Usually connects to another device (instrument, breathing apparatus)",llm_property +mouthpiece,texture,HasProperty,0.8,Often features a smooth or contoured surface for comfort against lips,llm_property +mouthpiece,portability,HasProperty,0.8,Generally small and lightweight compared to larger tools like anvils or engines,llm_property +mouthpiece,sound_association,HasProperty,0.8,Directly associated with producing sound (if musical) or facilitating breathing,llm_property +mug,handles,HasProperty,0.8,"Most mugs have one or two handles for easy carrying, unlike most other containers in the list.",llm_property +mug,ceramic_material,HasProperty,0.8,"Many mugs are made of ceramic (e.g., porcelain, stoneware), which is common for mugs but less so for containers like cartons or metal pails.",llm_property +mug,small_size,HasProperty,0.8,"Mugs are generally smaller in volume than pitchers, tubs, or pails.",llm_property +mug,straight_sides,HasProperty,0.8,"Mugs typically have straight sides and a cylindrical shape, unlike jars (often round) or pitchers (often tapered).",llm_property +mug,round_top_opening,HasProperty,0.8,"The top opening of a mug is usually round and wide, unlike boxes or troughs.",llm_property +mug,heavyweight,HasProperty,0.8,"Due to their ceramic material or thick plastic construction, mugs are often heavier than lightweight cartons or thin-walled plastic tubs.",llm_property +muscle,fibrous_texture,HasProperty,0.8,"Muscle tissue is made of bundles of fibers, giving it a distinctively striated or fibrous feel compared to smooth or uniform textures like fur or flesh",llm_property +muscle,pinkish-red_color,HasProperty,0.8,"Fresh muscle is typically pink or red due to myoglobin, unlike the brown/gray of fur or the white/ivory of flesh",llm_property +muscle,tendinous_attachments,HasProperty,0.8,"Muscles connect to bones or other structures via tendons, a feature not shared by other listed items",llm_property +muscle,contractile_response,HasProperty,0.8,"When stimulated, muscles actively shorten or change shape, a behavior not exhibited by fur, ferret, orca, etc.",llm_property +muscle,elasticity_upon_stretching,HasProperty,0.8,"Muscles can stretch and return to original length, unlike the rigid structure of fur or the brittle nature of bone",llm_property +muscle,beefy_aroma_when_raw,HasProperty,0.8,Raw muscle has a distinct meaty scent that differentiates it from other items like kiwi or wolf,llm_property +mushroom,foot_shape,HasProperty,0.8,"Has a distinct round cap and stalk structure, unlike most vegetables that have leaves or roots",llm_property +mushroom,texture,HasProperty,0.8,"Firm but slightly spongy or fleshy to touch, unlike the crisp or leafy textures of most vegetables",llm_property +mushroom,color,HasProperty,0.8,"Often has a brown, white, or grayish color, unlike the vibrant greens of many vegetables",llm_property +mushroom,smell,HasProperty,0.8,"Has a unique earthy or woodsy aroma, unlike the fresh or neutral smells of most vegetables",llm_property +mushroom,taste,HasProperty,0.8,"Mildly earthy with a slight umami flavor, unlike the bland or sweet tastes of many vegetables",llm_property +mushroom,hollow_stalk,HasProperty,0.8,"The stalk (or stem) is often hollow, which is uncommon among vegetables",llm_property +mushroom,gills,HasProperty,0.8,"Many mushrooms have gills under the cap, which are not present in other vegetables",llm_property +nail,sharp_pointed_end,HasProperty,0.8,Used for piercing or attaching materials,llm_property +nail,metallic_appearance,HasProperty,0.8,Typically made of metal like steel or brass,llm_property +nail,slightly_curved_shape,HasProperty,0.8,Often has a slight curve or spiral for better grip when driven,llm_property +nail,small_size,HasProperty,0.8,Generally much smaller than other listed tools,llm_property +nail,solid_and_sturdy,HasProperty,0.8,Made to withstand force when hammered into surfaces,llm_property +nail,smooth_length,HasProperty,0.8,The shaft of the nail is usually smooth without serrations or grooves,llm_property +nectarine,smoother_skin,HasProperty,0.8,"Unlike peach, nectarine has a fuzz-free, smooth skin",llm_property +nectarine,reddish-orange_color,HasProperty,0.8,"Distinctive hue, different from yellow lemons, red tomatoes, or green kiwis",llm_property +nectarine,"sweet,_juicy_flesh",HasProperty,0.8,"Sweeter and juicier than cranberries or figs, with a distinct texture",llm_property +nectarine,oval_shape,HasProperty,0.8,"Unlike rounder fruits like lemon, tomato, or watermelon",llm_property +nectarine,single_large_pit,HasProperty,0.8,"Contains one big stone, unlike berries (cranberry, kiwi) or multi-seeded fruits (pineapple, mango)",llm_property +needle,tapered_tip,HasProperty,0.8,"Needle has a sharp, pointed end for piercing, unlike blunt-ended tools like vise or anvil.",llm_property +needle,fine_thread,HasProperty,0.8,"Needles often have an eyelet for thread passage, a feature not present in most other tools.",llm_property +needle,small_size,HasProperty,0.8,Needles are typically much smaller and lightweight compared to large tools like car or anvil.,llm_property +needle,thin_shaft,HasProperty,0.8,"The body of a needle is very thin and cylindrical, unlike broad or irregular shapes of tools like level or saw.",llm_property +needle,pointed_shape,HasProperty,0.8,"Distinctive pointed shape for delicate work, unlike heavy, blunt shapes of tools like axe or vise.",llm_property +needle,sharp_edge,HasProperty,0.8,"The point is often very sharp for precise puncturing, unlike the rough or non-sharp edges of tools like opener or pulley.",llm_property +needle,metallic_appearance,HasProperty,0.8,"Often made of polished metal, giving a shiny, smooth look distinct from the rough or wooden textures of tools like saw or anvil.",llm_property +nest,round_shape,HasProperty,0.8,"Nests are often circular or dome-shaped, unlike burrows or dens which may be linear tunnels",llm_property +nest,built_of_materials,HasProperty,0.8,"Nests are typically constructed from sticks, grass, or other gathered materials, unlike natural caves or dens",llm_property +nest,outdoor_location,HasProperty,0.8,"Nests are usually built in trees, bushes, or on the ground outdoors, unlike houses or burrows which may be indoors or underground",llm_property +nest,small_size,HasProperty,0.8,"Nests are small and compact, made for a single bird or small animal, unlike houses which are larger for humans",llm_property +nest,flat_or_slightly_concave_top,HasProperty,0.8,"Nests have a slightly indented top surface to hold eggs or young, unlike dens or burrows which are more enclosed spaces",llm_property +nickel,property,HasProperty,0.8,brief explanation,llm_property +nickel,shiny_silver-white_color,HasProperty,0.8,"Unlike gold, copper, or aluminum, nickel has a distinct silver-white hue",llm_property +nickel,relatively_corrosion-resistant,HasProperty,0.8,"Unlike iron, it doesn't rust easily when exposed to air and moisture",llm_property +nickel,harder_than_many_common_metals,HasProperty,0.8,More scratch-resistant than aluminum or lead,llm_property +nickel,slightly_magnetic_(ferromagnetic),HasProperty,0.8,"Unlike silver, gold, or aluminum, it is attracted to magnets",llm_property +nickel,often_used_to_plate_other_metals,HasProperty,0.8,"Gives a bright, protective coating, unlike many other metals used for plating",llm_property +nickel,odorless_and_tasteless,HasProperty,0.8,Unlike metals like copper or iron which can leave a metallic taste,llm_property +nightingale,small_brown_body,HasProperty,0.8,"Has a generally small and brown plumage, unlike the colorful cockatiel or the distinctively patterned kestrel",llm_property +nightingale,distinctive_song,HasProperty,0.8,"Known for its loud and melodious song, setting it apart from other listed birds",llm_property +nightingale,nocturnal_habits,HasProperty,0.8,"Often sings at night, a behavior not common to the other listed birds",llm_property +nightingale,short_tail,HasProperty,0.8,Has a relatively short tail compared to birds like kestrels or canaries,llm_property +nightingale,broken_white_eye-band,HasProperty,0.8,Features a distinctive broken white eye-ring that many other listed birds lack,llm_property +nightingale,ground-scratching,HasProperty,0.8,"Forages on the ground, scratching for food, unlike some other listed birds",llm_property +nightingale,dark_legs_and_bill,HasProperty,0.8,"Has dark-colored legs and bill, differing from the lighter-colored ones of canaries or quails",llm_property +nightjar,nocturnal_activity,HasProperty,0.8,"nightjars are primarily active at dawn and dusk, unlike most other birds",llm_property +nightjar,distinctive_wing_shape,HasProperty,0.8,"long, pointed wings unlike the rounded wings of lorikeets or the broad wings of eagles",llm_property +nightjar,mottled_brown_plumage,HasProperty,0.8,"cryptic, dappled coloration for camouflage, unlike the bright colors of lorikeets or quetzals",llm_property +nightjar,"large,_wide_mouth",HasProperty,0.8,"opens very wide to catch insects in flight, unlike the smaller, pointed bills of terns or finches",llm_property +nightjar,"soft,_quiet_wing_beats",HasProperty,0.8,"flies with almost silent wingbeats, unlike the noisy flapping of ducks or pigeons",llm_property +nightjar,unique_call_at_night,HasProperty,0.8,"produces a loud, repetitive ""churring"" sound during night, unlike the daytime songs of larks or cardinals",llm_property +nightjar,"flat,_wide_head",HasProperty,0.8,"distinctively wide-set eyes and broad head shape, unlike the slender heads of swallows or thrushes",llm_property +nut,hard_shell,HasProperty,0.8,"typically encased in a thick, tough outer shell compared to a seed or pit",llm_property +nut,round_shape,HasProperty,0.8,"usually has a rounded or ovoid shape, unlike acorns or pits which are more irregular",llm_property +nut,oily_taste,HasProperty,0.8,"often contains high oil content giving them a distinct rich, oily flavor",llm_property +nut,edible_kernel,HasProperty,0.8,"contains a single, edible seed (kernel) inside the shell, unlike a pit which is part of the fruit",llm_property +nut,dry_texture,HasProperty,0.8,"the inner kernel is dry and firm when eaten, unlike the moist fruit surrounding a pit",llm_property +nutmeg,texture_is_gritty_when_ground,HasProperty,0.8,"Unlike many spices that are powdery or flaky, nutmeg has a distinct gritty texture when ground, due to its oily nature.",llm_property +nutmeg,color_is_reddish-brown,HasProperty,0.8,"Many spices are bright yellow (turmeric), red (chili), white (salt), or green (ginger), but nutmeg has a unique reddish-brown hue.",llm_property +nutmeg,"smell_is_warm,_slightly_sweet,_and_nutty",HasProperty,0.8,"Unlike the sharp, pungent, or floral scents of others, nutmeg has a uniquely warm, sweet, and nutty aroma.",llm_property +nutmeg,flavor_is_spicy-sweet_with_a_hint_of_bitterness,HasProperty,0.8,"While many spices are purely pungent or sweet, nutmeg combines spiciness with sweetness and a subtle bitterness.",llm_property +nutmeg,shape_is_irregular_and_hard_when_whole,HasProperty,0.8,"Unlike seeds or powders, whole nutmegs are hard, irregularly shaped kernels with a distinct ridged surface.",llm_property +nylon,property,HasProperty,0.8,smooth to the touch,llm_property +oak,wood_is_very_dense_and_heavy_compared_to_most_other_listed_woods,HasProperty,0.8,"Oak has high density due to its structure, making it heavier",llm_property +oak,growth_rings_are_typically_wider_apart_than_in_maple_or_cedar,HasProperty,0.8,Oak often has more open grain patterns,llm_property +oak,"leaves_have_distinct_lobed_shapes_with_pointed_tips,_unlike_the_simple_leaves_of_poplar_or_maple",HasProperty,0.8,Oak leaves have a characteristic shape,llm_property +oak,wood_has_a_rough_texture_with_visible_grain_compared_to_smoother_woods_like_poplar,HasProperty,0.8,Oak's grain is more pronounced,llm_property +oak,"has_a_distinct,_subtle_nutty_aroma_when_worked,_unlike_the_faint_scent_of_cedar_or_pine",HasProperty,0.8,Oak releases a unique scent when cut or sanded,llm_property +oak,"wood_is_very_strong_and_durable,_surpassing_poplar_or_pine_in_toughness",HasProperty,0.8,Oak is renowned for its mechanical strength,llm_property +oboe,bright_sound,HasProperty,0.8,Produces a distinctively bright and penetrating tone compared to other woodwinds.,llm_property +oboe,double_reed,HasProperty,0.8,"Uses a double reed mouthpiece, unlike flutes, harmonicas, or brass instruments.",llm_property +oboe,long_body,HasProperty,0.8,"Has a long, conical wooden body, different from the short, flat triangle or compact harmonica.",llm_property +oboe,wooden_construction,HasProperty,0.8,"Typically made of wood, unlike the metal triangle, brass of a bass, or the mixed materials of a zither.",llm_property +oboe,finger_holes,HasProperty,0.8,"Features finger holes along its body for pitch control, unlike the keys of a harmonica or the mallets used on a xylophone.",llm_property +oboe,upright_posture,HasProperty,0.8,"Usually played with the instrument held vertically, unlike the triangle or lyre which are often played differently.",llm_property +oboe,high_pitch_range,HasProperty,0.8,Generally plays in higher registers compared to the bass or ukulele.,llm_property +ocean,vastness,HasProperty,0.8,Covers massive areas compared to smaller water bodies or land features,llm_property +ocean,dark_blue_color,HasProperty,0.8,"Often appears a deeper, darker blue than smaller bodies of water",llm_property +ocean,high_waves,HasProperty,0.8,"Capable of producing large, powerful waves that smaller water bodies cannot",llm_property +ocean,saltwater_taste,HasProperty,0.8,Has a distinct salty taste unlike freshwater bodies,llm_property +ocean,sounds_of_waves_crashing,HasProperty,0.8,Distinctive sound of powerful waves hitting shores or objects,llm_property +ocean,presence_of_large_marine_life,HasProperty,0.8,"Home to large fish, mammals, and other marine animals not found in smaller waters",llm_property +ocean,vast_depth,HasProperty,0.8,Reaches extreme depths far beyond shallow ponds or small creeks,llm_property +office,small_glass_windows,HasProperty,0.8,typical of modern office buildings for natural light,llm_property +office,white_or_gray_exterior,HasProperty,0.8,common color palette for professional appearance,llm_property +office,concrete_or_brick_facade,HasProperty,0.8,durable materials suitable for commercial use,llm_property +office,level_floor_plan,HasProperty,0.8,designed for open-plan offices without significant elevation changes,llm_property +office,corner_desks_or_cubicles,HasProperty,0.8,distinctive interior layout for individual workstations,llm_property +office,little_or_no_decorative_facade,HasProperty,0.8,minimalist design focused on function over aesthetics,llm_property +oil,slickness,HasProperty,0.8,feels smooth and slippery when touched,llm_property +oil,non-water-soluble,HasProperty,0.8,does not dissolve in water,llm_property +oil,viscous,HasProperty,0.8,thicker and slower-moving than most other listed liquids,llm_property +oil,odor_varying,HasProperty,0.8,"can have distinct smells depending on type (e.g., olive oil, motor oil)",llm_property +oil,amber/clear_color,HasProperty,0.8,often appears clear or has a yellowish to amber hue,llm_property +oil,floats_on_water,HasProperty,0.8,naturally rises to the surface when mixed with water,llm_property +oil,invisible_particles,HasProperty,0.8,appears clear without suspended solids like salt or chalk,llm_property +oilcan,"shape:_usually_elongated_and_narrow,_unlike_most_other_containers_which_are_wider_and_deeper",HasProperty,0.8,This shape is designed for easy pouring into tight spaces,llm_property +oilcan,"spout:_features_a_distinct_spout_or_nozzle,_absent_on_most_other_containers",HasProperty,0.8,"Allows for controlled, directed pouring, unlike the open tops of many containers",llm_property +oilcan,"handle:_often_has_an_integrated_handle,_unlike_many_other_containers",HasProperty,0.8,"Facilitates carrying and pouring with one hand, a feature not always present in other containers",llm_property +oilcan,"size:_typically_small_to_medium_in_size,_much_smaller_than_tanks_or_troughs",HasProperty,0.8,Designed for carrying and using manageable amounts of liquid,llm_property +oilcan,"material:_often_made_of_metal,_unlike_many_other_containers_which_can_be_glass,_plastic,_or_wood",HasProperty,0.8,Metal construction is common for durability and resistance to oils,llm_property +okra,shape,HasProperty,0.8,"Elongated, ridged, and tapered pods, unlike round or leafy vegetables",llm_property +okra,texture_(when_raw),HasProperty,0.8,Slippery and sticky exterior when handled,llm_property +okra,color,HasProperty,0.8,"Typically green, sometimes purplish-green, more vibrant than many others",llm_property +okra,size,HasProperty,0.8,"Pods usually 3-6 inches long, distinct from smaller (radish) or much larger (potato) veggies",llm_property +okra,taste_(raw),HasProperty,0.8,"Slightly grassy or earthy flavor, distinct from watery (cucumber) or pungent (onion) tastes",llm_property +okra,texture_(when_cooked),HasProperty,0.8,"Releases a viscous, mucilaginous substance that thickens stews, unlike most other veggies",llm_property +onion,round_shape,HasProperty,0.8,"It's typically globe-shaped, unlike most others which are elongated or leafy.",llm_property +onion,"smooth,_papery_skin",HasProperty,0.8,"Its outer layer is dry and thin, unlike the bumpy skin of potatoes or the leafy exterior of cabbage.",llm_property +onion,pungent_smell,HasProperty,0.8,"It has a very strong, distinct aroma, much more so than most other vegetables.",llm_property +onion,sharp_taste,HasProperty,0.8,"Its flavor is sharp and often tear-inducing, unlike the milder tastes of many others.",llm_property +onion,two_distinct_edible_parts,HasProperty,0.8,"It has both a bulb (the main part) and leaves (the green tops), unlike most which are eaten as a single form.",llm_property +opener,metal,HasProperty,0.8,"Most openers are made of metal, unlike many other tools in the list.",llm_property +opener,handles,HasProperty,0.8,"Openers have distinct handles for gripping, unlike simpler tools like a trowel or pick.",llm_property +opener,spring-loaded,HasProperty,0.8,"Many openers have a spring mechanism to keep the blades open, a feature not present in most other tools.",llm_property +opener,blades,HasProperty,0.8,"Openers have blades or cutting edges specifically designed to pierce or twist, unlike tools like a broom or anvil.",llm_property +opener,cutting_action,HasProperty,0.8,"The primary function of an opener is to cut or open things, unlike tools designed for carrying (toolbox), playing music (saxophone), or supporting weight (anvil).",llm_property +opener,small_size,HasProperty,0.8,"Openers are generally handheld and compact, unlike larger items like a car, jack, or wheel.",llm_property +opener,single_purpose,HasProperty,0.8,"Openers are designed for a very specific task (opening cans, bottles, etc.), unlike versatile tools like a toolbox or pick.",llm_property +orca,coloration,HasProperty,0.8,"Mostly black with distinctive white patches, unlike the solid colors of most other listed animals",llm_property +orca,size,HasProperty,0.8,"Extremely large and robust body, much bigger than the average size of other listed animals",llm_property +orca,form,HasProperty,0.8,"Sleek, streamlined body shape adapted for fast swimming, unlike the varied body forms of others",llm_property +orca,behavior_(hunting),HasProperty,0.8,"Known for complex group hunting strategies, especially targeting marine mammals, unlike the simpler hunting or non-predatory behaviors of others",llm_property +orca,behavior_(vocalization),HasProperty,0.8,"Produces complex underwater clicks and whistles used for communication and echolocation, unlike the simpler vocalizations of most others",llm_property +orca,behavior_(social),HasProperty,0.8,"Highly social, living in close-knit family pods, more complex than the social structures of others",llm_property +orca,appearance_(fins),HasProperty,0.8,"Features a prominent dorsal fin, unlike the lack of this feature in almost all others",llm_property +orca,appearance_(head),HasProperty,0.8,"Distinctive rounded head shape with an underslung jaw, unlike the more pointed or uniformly shaped heads of others",llm_property +orchard,plants_in_rows,HasProperty,0.8,"Trees are arranged in orderly rows, unlike the more random distribution in forests or natural landscapes.",llm_property +orchard,large_fruit_trees,HasProperty,0.8,"Dominated by mature fruit trees, taller and more substantial than the smaller plants in meadows or gardens.",llm_property +orchard,specialized_crop,HasProperty,0.8,"Contains a specific, cultivated crop (e.g., apples, oranges), unlike the general vegetation of fields or grasslands.",llm_property +orchard,regularly_pruned,HasProperty,0.8,"Trees are often pruned, giving them a managed, neat appearance, unlike the uncontrolled growth in forests.",llm_property +orchard,fruit_production,HasProperty,0.8,"Primary purpose is fruit production, a defining feature not shared by natural landscapes or ornamental gardens.",llm_property +orchard,sometimes_flowery,HasProperty,0.8,"May be covered in blossoms during specific seasons, a visual feature not present in fields or forests.",llm_property +orchid,colorful_petals,HasProperty,0.8,"orchids often have intricate patterns and multiple colors on the same flower, unlike many other flowers which tend to have uniform single colors",llm_property +orchid,unusual_shape,HasProperty,0.8,"orchids have unique shapes, often with a distinctive lip (labellum) that differs from other flowers' symmetrical forms",llm_property +orchid,smooth_texture,HasProperty,0.8,"orchid petals and sepals are typically smooth and waxy, unlike the fuzzy or rough textures of some other flowers",llm_property +orchid,fragrant_or_odorless,HasProperty,0.8,"some orchids are powerfully fragrant while others are completely odorless, a broader range than many other flower types",llm_property +orchid,long-lived_cut_flower,HasProperty,0.8,"orchids often last for weeks when cut, much longer than most other cut flowers in the list",llm_property +orchid,variety_of_forms,HasProperty,0.8,orchids come in an exceptionally wide range of sizes and shapes compared to other flower types,llm_property +ore,dull_appearance,HasProperty,0.8,"Often lacks the reflective shine of polished metals or crystals, appearing more matte or earthy.",llm_property +ore,grainy_texture,HasProperty,0.8,"Feels rough or granular to the touch, unlike smooth metals or crystals.",llm_property +ore,rough_surface,HasProperty,0.8,Not typically polished or smooth like many metals or crystals.,llm_property +ore,earth-origin,HasProperty,0.8,"Found in the ground, often mixed with rock or sediment, unlike processed metals like bronze or steel.",llm_property +ore,possible_odour,HasProperty,0.8,"May have a distinct smell, especially when freshly exposed (e.g., sulfurous for some ores).",llm_property +ore,weighty,HasProperty,0.8,Tends to be heavy for its size due to the density of the contained metal content.,llm_property +oregano,small_green_leaves,HasProperty,0.8,"Oregano has smaller, more compact leaves compared to large-leafed herbs like basil or flat-leafed parsley.",llm_property +oregano,folded/crimped_leaves,HasProperty,0.8,"The leaves often have a distinctively folded or crimped texture along the edges, unlike the smooth flat leaves of parsley.",llm_property +oregano,bitter_taste,HasProperty,0.8,"Oregano has a characteristic bitter taste, which is less common in parsley, basil, or thyme.",llm_property +oregano,pungent_smell,HasProperty,0.8,"It has a strong, pungent, and somewhat spicy aroma, distinguishing it from the milder scents of parsley or horsetail.",llm_property +oregano,spicy_flavor,HasProperty,0.8,"Its flavor is notably spicy and sharp, differentiating it from the sweet taste of basil or the milder flavor of marjoram.",llm_property +organ,wooden_case,HasProperty,0.8,"Most organs are housed in large wooden casework, unlike most other instruments",llm_property +organ,keyboard_interface,HasProperty,0.8,"Organs have a keyboard played with hands, unlike most string or wind instruments",llm_property +organ,pedal_board,HasProperty,0.8,"Many organs have a pedalboard played with feet, unique among these instruments",llm_property +organ,air-powered_sound,HasProperty,0.8,"Organs use pressurized air flowing through pipes, unlike string, percussion, or most wind instruments",llm_property +organ,reverberant_tone,HasProperty,0.8,"Organs produce a sustained, resonant sound that lingers, unlike the shorter notes of most other instruments",llm_property +organ,large_size,HasProperty,0.8,"Organs are typically very large and stationary, unlike the portable nature of most other instruments in the list",llm_property +oriole,bright_orange_and_black_plumage,HasProperty,0.8,"Orioles are known for their vibrant orange and black coloration, which is more distinct than the plumage of most other listed birds.",llm_property +oriole,"long,_slightly_forked_tail",HasProperty,0.8,"Orioles typically have long, pointed tails that are slightly forked, different from the rounded or shorter tails of many other birds.",llm_property +oriole,swinging_song,HasProperty,0.8,"Orioles produce a loud, clear, swinging or flutelike song that is unique compared to the calls of sapsuckers, thrushes, or starlings.",llm_property +oriole,nectar-loving_behavior,HasProperty,0.8,"Orioles are known to feed on nectar, which is less common among the other listed birds, many of which eat insects, seeds, or carrion.",llm_property +oriole,nest_in_a_pendulum_shape,HasProperty,0.8,"Orioles build distinctive hanging, pendulum-shaped nests, unlike the cup-shaped nests often built by other birds.",llm_property +oriole,slightly_downcurved_beak,HasProperty,0.8,"Orioles have slightly curved, pointed beaks adapted for probing flowers and catching insects, setting them apart from the straighter or thicker beaks of others.",llm_property +oriole,tree-dwelling_habits,HasProperty,0.8,"Orioles are primarily tree-dwelling birds, living in forests and woodlands, unlike petrels, gannets, or eagles that may live near water or higher altitudes.",llm_property +osprey,size,HasProperty,0.8,"Much larger than buzzards, terns, and kestrels",llm_property +osprey,wing_shape,HasProperty,0.8,"Distinctively long, narrow wings, often held in a slight 'M' shape",llm_property +osprey,coloration,HasProperty,0.8,Dark brown upperparts and white underparts,llm_property +osprey,behavior,HasProperty,0.8,"Specialized in fishing, often seen hovering over water",llm_property +osprey,call,HasProperty,0.8,High-pitched whistles or chatters,llm_property +osprey,tail_shape,HasProperty,0.8,"Short, fanned tail compared to others like rhea or heron",llm_property +ostrich,large_body_size,HasProperty,0.8,"Much larger than most other birds, unable to fly due to size",llm_property +ostrich,long_neck,HasProperty,0.8,Distinctively long and S-shaped neck,llm_property +ostrich,two_toes,HasProperty,0.8,Uniquely has only two toes on each foot (most birds have four),llm_property +ostrich,fast_runner,HasProperty,0.8,Capable of running at very high speeds (up to 43 mph),llm_property +ostrich,sandy/cream-colored_plumage,HasProperty,0.8,"Feathers are generally dull, sand-colored (unlike brightly colored birds)",llm_property +ostrich,massive_egg,HasProperty,0.8,Produces the largest eggs of any bird species,llm_property +ostrich,masticates_food_with_mouth,HasProperty,0.8,"Swallows pebbles to grind food in its gizzard, unlike most birds",llm_property +owl,eyes,HasProperty,0.8,"Large, forward-facing eyes, unlike most birds that have sideways-facing eyes",llm_property +owl,hearing,HasProperty,0.8,"Exceptional hearing, allowing them to locate prey in complete darkness",llm_property +owl,nocturnal_behavior,HasProperty,0.8,"Primarily active at night, unlike most birds that are diurnal",llm_property +owl,silent_flight,HasProperty,0.8,"Feathers are adapted for silent flight, unlike the noisy flight of many other birds",llm_property +owl,facial_disc,HasProperty,0.8,"Distinctive flat, disc-like face that helps funnel sound to their ears",llm_property +owl,talons,HasProperty,0.8,"Large, powerful talons used for capturing prey, often more robust than other birds' feet",llm_property +owl,hoot_call,HasProperty,0.8,"Characteristic deep ""hoot"" sound, different from the songs or calls of most other birds",llm_property +oxpecker,body_shape,HasProperty,0.8,"Stocky body with short wings and a short tail, unlike most other listed birds which have longer, more aerodynamic bodies",llm_property +oxpecker,bill_shape,HasProperty,0.8,"Sharp, hooked bill used for tearing skin and flesh, unlike the generally smoother bills of other listed birds",llm_property +oxpecker,coloration,HasProperty,0.8,"Generally dull brown or grey plumage, unlike the bright colors or distinct patterns seen in many other listed birds",llm_property +oxpecker,feeding_behavior,HasProperty,0.8,"Known for riding on large mammals and eating ticks and parasites off their skin, a behavior unique to oxpeckers among the listed birds",llm_property +oxpecker,nose_shape,HasProperty,0.8,"Possesses nostrils covered by bristles, a feature not commonly found in the other listed birds",llm_property +oxpecker,size,HasProperty,0.8,"Medium-sized bird, smaller than many of the large listed birds like gannets or hornbills",llm_property +oxpecker,call,HasProperty,0.8,"Makes a distinctive sibilant, sharp call, different from the calls of most other listed birds",llm_property +pail,rough_texture,HasProperty,0.8,"Often made of metal or hard plastic, giving it a distinct tactile feel compared to smoother containers like jars or flasks",llm_property +pail,open_top,HasProperty,0.8,"Unlike most listed containers (flask, jar, chest, drawer), its top is typically open for easy access",llm_property +pail,handles_on_sides,HasProperty,0.8,"Has prominent carrying handles, unlike most other listed containers",llm_property +pail,often_metallic_color,HasProperty,0.8,"Frequently made of galvanized steel, giving it a silver or grey appearance distinct from wood (chest) or glass (flask/jar)",llm_property +pail,rigid_structure,HasProperty,0.8,"Is a solid, inflexible container unlike bladders or shells which can be soft or flexible",llm_property +pail,commonly_used_outdoors,HasProperty,0.8,Often seen in garden or work contexts unlike most other listed containers,llm_property +papaya,yellow-orange_flesh,HasProperty,0.8,Distinctly different color than most other fruits in the list,llm_property +papaya,large_size,HasProperty,0.8,"Generally much larger than fruits like berries, kiwi, or lemon",llm_property +papaya,distinctive_sweet_aroma,HasProperty,0.8,"Strong, tropical smell unlike the more acidic smells of lemon or cranberry",llm_property +papaya,"smooth,_thin_skin_when_ripe",HasProperty,0.8,Unlike the rough skin of pineapple or the segmented rind of orange,llm_property +papaya,contains_many_small_black_seeds_inside,HasProperty,0.8,"Seeds are numerous and distinct from the larger, few seeds in mango or tomato",llm_property +paper,crumbles_easily,HasProperty,0.8,It breaks apart into small pieces when squeezed or handled roughly,llm_property +paper,lightweight,HasProperty,0.8,It's much lighter than most other materials in the list,llm_property +paper,white_or_off-white_color,HasProperty,0.8,It's typically light in color unless stained or dyed,llm_property +paper,flat_and_flexible,HasProperty,0.8,"It has a smooth, thin, bendable surface",llm_property +paper,sheets_or_rolls,HasProperty,0.8,It's usually found in flat sheets or long rolls,llm_property +paper,absorbs_water,HasProperty,0.8,It wets and weakens when exposed to liquid,llm_property +paper,easily_written_on,HasProperty,0.8,It has a smooth surface that accepts ink or pencil marks well,llm_property +paprika,red_powder,HasProperty,0.8,"Paprika is typically a vibrant red color, unlike most other spices which are green, brown, or tan.",llm_property +paprika,faintly_sweet_flavor,HasProperty,0.8,It has a distinct sweet and slightly peppery flavor profile not found in many other spices.,llm_property +paprika,mild_heat,HasProperty,0.8,"Compared to chili, paprika usually has very mild to no heat.",llm_property +paprika,fine_texture,HasProperty,0.8,"The powder is often finely ground, more so than many other spices.",llm_property +paprika,earthy_aroma,HasProperty,0.8,"It has a characteristic earthy, smoky scent.",llm_property +paprika,derived_from_peppers,HasProperty,0.8,"It comes from dried, ground peppers, setting it apart from spices like basil, cinnamon, or ginger.",llm_property +paprika,often_smoked,HasProperty,0.8,Some types are specifically smoked for a unique flavor.,llm_property +paprika,used_for_color,HasProperty,0.8,"Its primary use is often for adding color to dishes, unlike many spices primarily used for strong flavor.",llm_property +parakeet,long_tail,HasProperty,0.8,"Most have short or medium tails compared to parakeet's long, tapered tail",llm_property +parakeet,bright_green_color,HasProperty,0.8,"Distinctive bright green plumage, unlike the varied colors of other birds",llm_property +parakeet,small_size,HasProperty,0.8,"Smaller and slimmer than cockatoos and robins, but larger than many other small birds",llm_property +parakeet,tame_behavior,HasProperty,0.8,"Often kept as pets, known for being friendly and trainable",llm_property +parakeet,seed-eating_diet,HasProperty,0.8,"Primarily eats seeds, unlike falcons (meat) or waxwings (fruit)",llm_property +parakeet,loud_chirps,HasProperty,0.8,"Makes distinctively loud, sharp calls different from cawing or cooing",llm_property +parsley,leaves_are_bright_green_and_deeply_divided,HasProperty,0.8,"Parsley leaves have a unique, intricate, feather-like shape",llm_property +parsley,"has_a_distinctive,_slightly_bitter_taste",HasProperty,0.8,Parsley has a unique flavor profile that is not as sweet as basil or oregano,llm_property +parsley,stems_are_thick_and_firm_to_the_touch,HasProperty,0.8,Parsley stems are more robust compared to the delicate stems of many other herbs,llm_property +parsley,smells_fresh_and_slightly_peppery_when_crushed,HasProperty,0.8,Parsley has a unique aroma compared to the more floral scents of basil or marjoram,llm_property +parsley,"leaves_have_a_crisp,_crunchy_texture_when_fresh",HasProperty,0.8,Parsley leaves are firmer and more substantial than the tender leaves of thyme or marjoram,llm_property +parsley,"often_has_a_stronger,_more_persistent_scent_than_delicate_herbs_like_marjoram_or_thyme",HasProperty,0.8,Parsley's fragrance is more intense and lingers,llm_property +partridge,body_shape,HasProperty,0.8,"Chunky body with short tail, unlike sleek orioles or falcons",llm_property +partridge,feather_color,HasProperty,0.8,"Often mottled brown and gray, unlike bright orioles or black-and-white wrens",llm_property +partridge,wing_shape,HasProperty,0.8,"Broad, rounded wings, not pointed or narrow like falcons or gannets",llm_property +partridge,behavior_(foraging),HasProperty,0.8,"Forages on ground, scratching for seeds/insects, unlike mainly tree-dwelling orioles or cuckoos",llm_property +partridge,behavior_(flight),HasProperty,0.8,"Flies in short bursts, low to the ground, not sustained soaring like gannets or vultures",llm_property +partridge,behavior_(vocalization),HasProperty,0.8,"Utters soft calls and clucks, not melodious songs like nightingales or wrens",llm_property +partridge,behavior_(social),HasProperty,0.8,"Often found in coveys (groups) on ground, unlike solitary orioles or cuckoos",llm_property +pasture,plants_are_taller_and_greener_than_in_a_field,HasProperty,0.8,"Pastures are often maintained for grazing, leading to thicker vegetation.",llm_property +pasture,grass_or_flowers_cover_most_of_the_surface,HasProperty,0.8,"Unlike bare land or dirt patches in other landscapes, pastures are primarily vegetated.",llm_property +pasture,land_is_flat_or_slightly_uneven,HasProperty,0.8,"Unlike hilly savannas or mountainous terrain, pastures are generally gentle in slope.",llm_property +pasture,lacks_large_water_bodies_like_lakes_or_seas,HasProperty,0.8,"A key difference from lakes and seas, which are defined by water.",llm_property +pasture,no_significant_rocky_or_bare_spots_like_in_a_dry_creek_bed,HasProperty,0.8,"Unlike a creek bed, which can be exposed rock or sand, pastures are consistently vegetated.",llm_property +pasture,may_have_scattered_trees_or_shrubs,HasProperty,0.8,"Unlike an open savanna, which might have more defined tree patterns, or open water like a lake.",llm_property +pea,"shape:_small,_spherical_pod_containing_round_seeds_inside",HasProperty,0.8,"Peas grow inside pods that are round or slightly curved, unlike most other vegetables that don't grow in pods or have differently shaped pods.",llm_property +pea,"texture:_smooth,_slightly_waxy_outer_surface_when_fresh",HasProperty,0.8,"Unlike rough-skinned vegetables like potatoes or onion, or fibrous ones like asparagus, fresh peas have a smooth, sometimes slightly waxy feel.",llm_property +pea,"color:_bright_green_color,_often_vibrant",HasProperty,0.8,"While many vegetables are green, peas are typically a very bright, distinct shade of green, often more so than kale or chard.",llm_property +pea,taste:_naturally_sweet_and_starchy,HasProperty,0.8,"Peas have a characteristic sweetness that is distinct from the milder or more pungent flavors of vegetables like onion, corn, or asparagus.",llm_property +pea,"sound:_makes_a_distinct_""popping""_sound_when_pods_are_opened",HasProperty,0.8,"The act of opening a pea pod is noisy and distinct, unlike handling most other vegetables.",llm_property +pea,"smell:_fresh,_grassy,_slightly_earthy_aroma",HasProperty,0.8,"Peas have a very specific, fresh scent that is different from the strong smell of onion, the earthy smell of mushrooms, or the mild smell of many others.",llm_property +peach,fruity_aroma,HasProperty,0.8,"Has a distinct sweet, fragrant smell",llm_property +peach,"soft,_downy_skin",HasProperty,0.8,Skin is fuzzy and velvety to the touch,llm_property +peach,orange-pink_flesh,HasProperty,0.8,"Interior flesh is typically orange or pinkish, unlike others' white or yellow interiors",llm_property +peach,"sweet,_juicy_flavor",HasProperty,0.8,"Taste is distinctly sweet and juicy, less acidic than lemon or orange",llm_property +peach,single_large_pit,HasProperty,0.8,"Contains one large, hard stone pit, unlike small seeds in kiwi or many seeds in watermelon",llm_property +peacock,property,HasProperty,0.8,brief explanation,llm_property +peacock,"extremely_long_and_colorful_tail_feathers,_often_with_iridescent_""eyes""",HasProperty,0.8,"Peacocks are famous for their elaborate, long tail displays, unlike the others.",llm_property +peacock,"males_(peacocks)_have_these_elaborate_tails,_females_(peahens)_do_not",HasProperty,0.8,The dramatic sexual dimorphism in tail plumage is unique among the listed birds.,llm_property +peacock,"makes_loud,_distinct_""mew""_or_""squawk""_calls",HasProperty,0.8,Their calls are specific and less varied than many others like cuckoos.,llm_property +peacock,walks_or_struts_on_the_ground_prominently,HasProperty,0.8,"They are primarily terrestrial birds, more so than most in the list (like toucans or gulls).",llm_property +peacock,"can_fly,_but_often_prefers_to_walk_or_run",HasProperty,0.8,They are capable fliers but are more ground-oriented compared to many other birds.,llm_property +peacock,large_body_size_with_a_prominent_crest_on_the_head,HasProperty,0.8,They are generally larger and have a recognizable crest that's less common among the listed birds.,llm_property +peacock,has_iridescent_blue_and_green_body_feathers,HasProperty,0.8,The specific iridescent coloration on the body is distinctive.,llm_property +pebble,smooth_surface,HasProperty,0.8,"Typically smoothed by water erosion, unlike rougher stones or minerals",llm_property +pebble,small_size,HasProperty,0.8,Generally smaller than bricks or large stones,llm_property +pebble,round_shape,HasProperty,0.8,"Often rounded from rolling in water, unlike angular forms of minerals or concrete",llm_property +pebble,light_weight,HasProperty,0.8,Significantly lighter than denser minerals like diamonds or gems,llm_property +pebble,translucent_edges_(sometimes),HasProperty,0.8,"May show light through edges if thin, unlike opaque materials like brick",llm_property +pebble,gray/neutral_color_(often),HasProperty,0.8,Usually lacks the bright colors of gems like ruby or emerald,llm_property +pelican,"sharp,_hooked_beak",HasProperty,0.8,"Unlike lorikeets or hummingbirds, it's used for catching fish",llm_property +pelican,"large,_pouch-like_lower_jaw",HasProperty,0.8,Unique to pelicans for scooping up fish,llm_property +pelican,"heavy,_bulky_body",HasProperty,0.8,More robust than martins or finches,llm_property +pelican,often_white_or_gray_plumage,HasProperty,0.8,Unlike the bright lorikeets or reddish robins,llm_property +pelican,"relatively_slow,_heavy_flight",HasProperty,0.8,Unlike swift hummingbirds or martins,llm_property +pelican,walks_clumsily_on_land,HasProperty,0.8,Unlike pigeons or robins which walk with more agility,llm_property +pelican,often_found_in_groups_near_water,HasProperty,0.8,Unlike solitary birds like owls or buntings,llm_property +penguin,waddles_when_walking,HasProperty,0.8,Penguins have a distinctive waddling gait due to their body shape and short legs.,llm_property +penguin,black_and_white_coloration,HasProperty,0.8,"Penguins typically have a black back and white belly, a pattern that helps with camouflage.",llm_property +penguin,flat_wings_used_as_flippers,HasProperty,0.8,"Unlike most birds, penguin wings are modified into flippers for swimming, not flying.",llm_property +penguin,nocturnal_activity_in_water,HasProperty,0.8,"Penguins often feed at night in the water, which is less common for similar animals.",llm_property +penguin,social_behavior_in_large_groups,HasProperty,0.8,Penguins are highly social and gather in large colonies for breeding and protection.,llm_property +penguin,swims_with_head_underwater,HasProperty,0.8,"Penguins frequently dive underwater to hunt, unlike many other birds or land animals.",llm_property +peony,"large,_full_bloom",HasProperty,0.8,Peonies typically have much larger and more rounded flower heads than the others listed.,llm_property +peony,"sweet,_heavy_fragrance",HasProperty,0.8,"Peonies are known for their strong, sweet scent, more pronounced than many other garden flowers.",llm_property +peony,"thick,_waxy_petals",HasProperty,0.8,The petals of a peony are often described as thick and slightly waxy in texture.,llm_property +peony,"bushy,_leafy_stem",HasProperty,0.8,"Peonies grow on robust, leafy stems rather than single stalks like tulips or daffodils.",llm_property +peony,"dense,_rounded_shape",HasProperty,0.8,The overall shape of a peony flower is very full and rounded when in full bloom.,llm_property +peony,pink_or_white_coloration,HasProperty,0.8,"Peonies are particularly known for their shades of pink and white, though other colors exist.",llm_property +peony,"smooth,_glossy_leaves",HasProperty,0.8,The leaves of a peony plant are typically smooth-edged and have a glossy sheen.,llm_property +pepper,dark_gray-brown_color,HasProperty,0.8,"Most peppercorns are dark gray or brown, unlike lighter spices like coriander or turmeric",llm_property +pepper,round_shape,HasProperty,0.8,"Peppercorns are typically spherical, unlike the more irregular shapes of spices like cardamom pods",llm_property +pepper,fine_texture_when_ground,HasProperty,0.8,"Pepper's ground form creates a very fine powder, unlike the coarser powders from spices like nutmeg",llm_property +pepper,pungent_aroma,HasProperty,0.8,"Pepper has a sharp, penetrating smell, distinct from the floral or sweet aromas of many other spices",llm_property +pepper,bitter_taste,HasProperty,0.8,"Black pepper provides a characteristic sharp bitterness, unlike the sweetness of cinnamon or the heat of chili",llm_property +pepper,single-seed_structure,HasProperty,0.8,"Each peppercorn is a single seed, unlike the multi-segmented pods of cardamom or the multiple seeds in coriander",llm_property +peppermint,leaves_are_distinctly_dark_green_and_oval-shaped,HasProperty,0.8,"This distinguishes it from lettuce which has softer, paler leaves",llm_property +peppermint,"leaves_have_a_strong,_cooling_minty_scent_when_crushed",HasProperty,0.8,This distinguishes it from azalea which has floral scents and other plants with no strong scent,llm_property +peppermint,has_a_distinctively_strong_minty_taste,HasProperty,0.8,This distinguishes it from other edible plants in the list,llm_property +peppermint,stems_are_square_in_cross-section,HasProperty,0.8,This distinguishes it from round-stemmed plants like azalea,llm_property +peppermint,grows_as_a_spreading_ground_cover_or_bush,HasProperty,0.8,This distinguishes its growth habit from the upright forms of azalea or pine,llm_property +peppermint,leaves_are_smooth-edged_rather_than_toothed_or_lobed,HasProperty,0.8,This distinguishes it from lettuce's ruffled edges and other plants with more complex leaf margins,llm_property +petal,colorful,HasProperty,0.8,"Petals are often brightly colored, unlike bark, moss, or shade",llm_property +petal,thin,HasProperty,0.8,"Petals are typically thin and delicate, unlike husks or bark",llm_property +petal,soft,HasProperty,0.8,"Petals have a soft texture to the touch, unlike thorns or bark",llm_property +petal,flexible,HasProperty,0.8,"Petals are usually pliable and bend easily, unlike thorns or bark",llm_property +petal,fragrant,HasProperty,0.8,"Many petals emit a sweet or distinctive scent, unlike most other listed items",llm_property +petal,often_brightly_hued,HasProperty,0.8,"Petals display a variety of vibrant colors, unlike shades or moss",llm_property +petal,slightly_sticky_or_oily,HasProperty,0.8,Some petals feel slightly sticky or have a waxy/oily coating,llm_property +petrel,small_size,HasProperty,0.8,Petrels are generally smaller than most of the listed birds,llm_property +petrel,white_underparts,HasProperty,0.8,"Many petrels have distinctly white bellies, unlike most other listed birds",llm_property +petrel,long_wings,HasProperty,0.8,Petrels have proportionally longer wings than most terrestrial birds,llm_property +petrel,high-step_walk,HasProperty,0.8,"Petrels walk with a distinctive high-stepping gait, unlike the ground-dwelling or perching birds listed",llm_property +petrel,oceanic_range,HasProperty,0.8,"Petrels primarily live at sea, unlike most other listed birds which are terrestrial or perching birds",llm_property +petrel,gray-black_upperparts,HasProperty,0.8,Many petrels have a gray or black back and wings,llm_property +petrel,white_tail-tip,HasProperty,0.8,Many petrels have a distinctive white tip to their tail,llm_property +pewter,color:_dull_silver-gray,HasProperty,0.8,"often described as having a muted, grayish color compared to brighter metals",llm_property +pewter,weight:_relatively_heavy,HasProperty,0.8,"feels dense for its size, though not as heavy as some industrial metals",llm_property +pewter,texture:_soft_to_the_touch,HasProperty,0.8,can be easily scratched or dented unlike harder metals like tungsten,llm_property +pewter,coldness:_feels_cool_to_the_touch,HasProperty,0.8,"typical metal property, but less cold than very dense metals",llm_property +pewter,sound:_soft_ringing_when_struck,HasProperty,0.8,"produces a dull, soft chime compared to a sharp ring of metals like aluminum",llm_property +pewter,smell:_distinct_metallic_odor_when_heated,HasProperty,0.8,"has a specific smell when warmed, different from most other metals",llm_property +pewter,shine:_matte_luster,HasProperty,0.8,lacks the high polish of metals like platinum or aluminum,llm_property +pheasant,colorful_male_plumage,HasProperty,0.8,"Males often have iridescent, multi-colored feathers (red, green, gold, brown), unlike most other listed birds",llm_property +pheasant,broken_browniss_in_female_plumage,HasProperty,0.8,"Females are typically mottled brown for camouflage, unlike the solid colors of most female mallards or jays",llm_property +pheasant,long_tail,HasProperty,0.8,"Pheasants have a relatively long, pointed tail, longer than most listed birds except perhaps hornbill",llm_property +pheasant,rouded_body_shape,HasProperty,0.8,"Compact, rounded body shape when walking or standing, unlike the more slender or upright postures of birds like lorikeets or jays",llm_property +pheasant,ground-food_eating_behavior,HasProperty,0.8,"Forages for seeds and insects on the ground, unlike hornbills or lorikeets which feed higher up",llm_property +pheasant,distinctive_call,HasProperty,0.8,"Makes a low ""kow-cow-cow"" call, different from the calls of most other listed birds",llm_property +pheasant,powerful_flight,HasProperty,0.8,"Capable of rapid, short bursts of strong flight to escape danger, unlike the more agile flight of smaller birds like jays or thrushes",llm_property +pheasant,suspended_hanging_of_head,HasProperty,0.8,"Males often hold their head low and forward when displaying, a behavior not typical of the other listed birds",llm_property +phone,colorful_screen,HasProperty,0.8,Has a visual display for showing information and images,llm_property +phone,receives_signals,HasProperty,0.8,Can transmit and receive audio signals wirelessly,llm_property +phone,smaller_size,HasProperty,0.8,Typically compact and portable compared to other tools,llm_property +phone,has_buttons_or_touchscreen,HasProperty,0.8,Features input methods for user interaction,llm_property +phone,emits_sound,HasProperty,0.8,Can produce ringing or other audible alerts,llm_property +phone,sliding_or_flipping_action,HasProperty,0.8,Some models have moving parts for opening/closing,llm_property +piano,keys,HasProperty,0.8,piano has a keyboard of black and white keys,llm_property +piano,strings,HasProperty,0.8,"piano has many strings inside, struck by hammers",llm_property +piano,pedals,HasProperty,0.8,piano has foot-operated pedals for sound modification,llm_property +piano,soundboard,HasProperty,0.8,piano has a large wooden soundboard to amplify vibrations,llm_property +piano,solid_wood_cabinet,HasProperty,0.8,piano has a large wooden body/frame,llm_property +piano,loudness,HasProperty,0.8,piano produces sound that can range from soft to very loud,llm_property +pick,small_size,HasProperty,0.8,"A pick is much smaller than most other tools in the list, like an anvil or axe.",llm_property +pick,pointed_end,HasProperty,0.8,"It has a distinctively sharp, pointed end, unlike flat tools like a trowel or bellows.",llm_property +pick,hard_material,HasProperty,0.8,Picks are typically made of hard materials like metal or hard plastic.,llm_property +pick,used_for_piercing,HasProperty,0.8,"Its primary function is to pierce or break into something, unlike tools for striking (hammer) or cutting (axe).",llm_property +pick,usually_hand-held,HasProperty,0.8,"Picks are designed to be held and manipulated directly by hand, unlike larger tools like an anvil.",llm_property +pick,light_weight,HasProperty,0.8,"Compared to tools like an anvil or axe, a pick is relatively light.",llm_property +pickle,green_color,HasProperty,0.8,"Pickles are typically green due to their cucumber base, unlike most other listed foods.",llm_property +pickle,sour_taste,HasProperty,0.8,"Pickles have a distinct sour flavor from vinegar brining, unlike most fresh vegetables.",llm_property +pickle,wet_texture,HasProperty,0.8,Pickles have a high moisture content and often a juicy texture when bitten.,llm_property +pickle,slightly_firm_feel,HasProperty,0.8,"Pickles have a firm texture due to the pickling process, unlike softer foods like peas.",llm_property +pickle,bright_aroma,HasProperty,0.8,"Pickles have a strong, tangy vinegar smell that is easily distinguishable.",llm_property +pigeon,grayish_brown_feathers,HasProperty,0.8,"Common coloration, less vibrant than many others in the list",llm_property +pigeon,"small,_compact_body",HasProperty,0.8,Less slender or specialized build than roadrunner or lorikeet,llm_property +pigeon,squawking_call,HasProperty,0.8,"Harsher, less musical sound than cotinga or cardinal",llm_property +pigeon,floppy_walk_on_ground,HasProperty,0.8,More clumsy terrestrial movement than rail or auk,llm_property +pigeon,gray_cere_(nose_area),HasProperty,0.8,"Distinctive fleshy patch above the bill, unlike barbet's barbels or cotinga's bare skin",llm_property +pigeon,clumsy_flight,HasProperty,0.8,Less agile aerial maneuvers than parakeet or lorikeet,llm_property +pigeon,common_in_urban_areas,HasProperty,0.8,"Often seen in cities, unlike many of the more specialized birds listed",llm_property +pigeon,rock-dwelling_ancestor_traits,HasProperty,0.8,Physical adaptations hinting at historical rocky habitats,llm_property +pike,long_body,HasProperty,0.8,Pike have an extremely elongated body shape compared to most other fish in this list.,llm_property +pike,pointed_snout,HasProperty,0.8,"They have a very distinct, long, pointed snout resembling a duckbill.",llm_property +pike,green/brown_coloration,HasProperty,0.8,"Pike typically have a pattern of dark green or brown with light spotting or bars, unlike the often silvery or brightly colored fish in this list.",llm_property +pike,spiny_dorsal_fin,HasProperty,0.8,"They have a separate, spine-like dorsal fin set forward from the main dorsal fin, which is unique among these fish.",llm_property +pike,abundant_teeth,HasProperty,0.8,"Pike possess numerous large, sharp teeth lining their jaws, more so than most other fish here.",llm_property +pike,aggressive_hunting,HasProperty,0.8,"Pike are ambush predators known for their sudden, explosive attacks on prey.",llm_property +pike,large_size,HasProperty,0.8,Pike can grow significantly larger in length and weight than most of the other fish listed.,llm_property +pike,freshwater_habitat,HasProperty,0.8,"Pike primarily inhabit freshwater environments, while several others in the list are marine species.",llm_property +pine,needles,HasProperty,0.8,Pine trees have needle-like leaves instead of broad leaves or simple stems.,llm_property +pine,cones,HasProperty,0.8,"Pine trees produce woody seed cones, unlike many other plants or trees.",llm_property +pine,evergreen,HasProperty,0.8,"Pine trees retain their green needles year-round, unlike deciduous trees.",llm_property +pine,resinous_smell,HasProperty,0.8,"Pine wood and needles have a distinct, resinous scent, unlike most other woods or plants.",llm_property +pine,soft_wood_texture,HasProperty,0.8,Pine wood is relatively soft and light compared to harder woods like mahogany.,llm_property +pine,distinctive_bark,HasProperty,0.8,"Pine bark often has a rough, scaly, or fibrous texture.",llm_property +pine,sound_of_rustling_needles,HasProperty,0.8,The needles make a characteristic rustling sound when the wind blows.,llm_property +pine,tall_stature,HasProperty,0.8,Pine trees are typically very tall and conical in shape.,llm_property +pineapple,texture,HasProperty,0.8,"Rough, spiky exterior and fibrous interior",llm_property +pineapple,shape,HasProperty,0.8,Distinctively cylindrical with a tuft of leaves on top,llm_property +pineapple,color,HasProperty,0.8,"Bright yellow flesh inside, with a greenish-brown exterior",llm_property +pineapple,taste,HasProperty,0.8,"Tart and sweet, with a unique tangy flavor",llm_property +pineapple,smell,HasProperty,0.8,"Strong, sweet, and tropical aroma",llm_property +pineapple,weight,HasProperty,0.8,Relatively heavy for its size due to dense core,llm_property +pistol,small_size,HasProperty,0.8,Typically carried in a pocket or holster,llm_property +pistol,handgun_shape,HasProperty,0.8,"Compact, easily held in one hand",llm_property +pistol,barrel_length,HasProperty,0.8,Usually shorter barrel compared to rifles or shotguns,llm_property +pistol,hammer_component,HasProperty,0.8,Often has an exposed hammer for manual cocking,llm_property +pistol,trigger_mechanism,HasProperty,0.8,Features a trigger designed for single-handed firing,llm_property +pistol,firepower_limit,HasProperty,0.8,Generally lower caliber and range than rifles or shotguns,llm_property +pistol,rapid_reloading,HasProperty,0.8,Designed for quick reloading of ammunition,llm_property +pit,concave_shape,HasProperty,0.8,"It is distinctly sunken or凹陷, unlike the raised forms of mountains or flat expanses like grasslands.",llm_property +pit,hard_surface,HasProperty,0.8,"Often has a hard or compacted bottom, different from the soft earth of a pasture or the water of a pond.",llm_property +pit,shallow_depth,HasProperty,0.8,"Typically much shallower than a sea, ocean, or even some hollows.",llm_property +pit,round/ellipital_shape,HasProperty,0.8,"Often forms a rounded or oval depression, unlike the linear flow of a creek or sea.",llm_property +pit,closed_top_(usually),HasProperty,0.8,"Often appears as a closed depression, unlike an open body of water like a pond or ocean.",llm_property +pit,distinct_edge,HasProperty,0.8,"Has a well-defined rim or edge surrounding it, separating it from surrounding terrain.",llm_property +pitcher,handle,HasProperty,0.8,"used for carrying, not typically found on boxes, chests, or barrels",llm_property +pitcher,spout,HasProperty,0.8,"narrow opening for pouring liquids, unlike the wide openings of barrels or buckets",llm_property +pitcher,elongated_shape,HasProperty,0.8,typically taller and narrower than boxes or pails,llm_property +pitcher,often_made_of_ceramic_or_glass,HasProperty,0.8,distinguishes it from metal containers like oilcans or barrels,llm_property +pitcher,used_for_holding_and_serving_drinks,HasProperty,0.8,specific function different from storage containers like chests or barrels,llm_property +pizza,smelly,HasProperty,0.8,"Often has a distinct aroma of yeast, tomato, and herbs, stronger than most other listed foods",llm_property +pizza,single_dish,HasProperty,0.8,"Typically served as one complete meal on a single base, unlike separate components like vegetables or cereal",llm_property +pizza,squiggly_top,HasProperty,0.8,"Often features toppings like cheese that melt and form uneven, flowing shapes",llm_property +pizza,round_shape,HasProperty,0.8,"Usually prepared in a round base, unlike rectangular things like ham or cereal",llm_property +pizza,cheesy,HasProperty,0.8,"Often covered in melted cheese, which is a defining characteristic missing from most other listed foods",llm_property +pizza,crusty,HasProperty,0.8,"Has a distinct crusty outer layer, unlike foods like spaghetti or pickle",llm_property +plane,wings,HasProperty,0.8,"It has large, fixed wings for flight, unlike others",llm_property +plane,propellers_or_jet_engines,HasProperty,0.8,"It uses these for propulsion, not wheels or paddles",llm_property +plane,travels_in_air,HasProperty,0.8,"It flies, while others travel on land or water",llm_property +plane,larger_size,HasProperty,0.8,Generally bigger than most other vehicles listed,llm_property +plane,metallic_body,HasProperty,0.8,"Typically made of metal, unlike wood or plastic bodies",llm_property +plane,high_speed,HasProperty,0.8,Moves much faster than most ground/water vehicles,llm_property +plane,handles_high_altitude,HasProperty,0.8,"Can fly at great heights, unlike surface vehicles",llm_property +planer,wood_chips,HasProperty,0.8,It creates wood shavings or chips when used,llm_property +planer,smoothed_surface,HasProperty,0.8,"It leaves a smooth, flat surface on wood",llm_property +planer,low_noise,HasProperty,0.8,It operates with less noise compared to a jack or engine,llm_property +planer,metal_body,HasProperty,0.8,It typically has a metal casing or frame,llm_property +planer,steady_vibration,HasProperty,0.8,"It vibrates, but less intensely than a hammer or engine",llm_property +planer,sharp_blade,HasProperty,0.8,It has a sharp cutting blade for planing wood,llm_property +planer,continuous_action,HasProperty,0.8,It moves continuously along the wood surface,llm_property +plant,leafy_green_foliage,HasProperty,0.8,"Typically has broad leaves, unlike needle-like pines or small leaves of boxwood",llm_property +plant,fibrous_stem_structure,HasProperty,0.8,"Often has flexible stems, unlike the rigid trunk of a pine tree",llm_property +plant,produces_flowers_or_flowering_buds,HasProperty,0.8,"Many plants (like azaleas, verbena, peppermint) flower, whereas others like pines produce cones",llm_property +plant,smooth_edible_leavers,HasProperty,0.8,"Leaves are often edible and smooth, unlike ginseng's rougher texture or pine needles which are inedible",llm_property +plant,tends_to_be_low-growing,HasProperty,0.8,"Often grows close to the ground, unlike tall trees like pines or boxwood's dense upright growth",llm_property +plastic,colorful,HasProperty,0.8,"comes in a wide range of bright, uniform colors, unlike many natural materials",llm_property +plastic,smooth,HasProperty,0.8,"surface is typically slick and seamless, unlike rougher materials like wood or rope",llm_property +plastic,flexible,HasProperty,0.8,"can bend and conform to shapes without breaking, unlike rigid materials like ceramic or aluminum",llm_property +plastic,lightweight,HasProperty,0.8,significantly lighter than metals like aluminum or dense materials like ceramic,llm_property +plastic,chemically_inert,HasProperty,0.8,"doesn't react easily with other substances, unlike rust or wood which can degrade",llm_property +platinum,color,HasProperty,0.8,"Platinum is distinctive for its bright, silvery-white color, which is less yellow than gold and less gray than steel or iron.",llm_property +platinum,melting_point,HasProperty,0.8,"Platinum has an extremely high melting point, higher than most other common metals like gold, silver, or copper.",llm_property +platinum,chemical_resistance,HasProperty,0.8,"Platinum is highly resistant to corrosion and chemical reactions, unlike iron (which rusts) or copper (which tarnishes).",llm_property +platinum,sound,HasProperty,0.8,"When struck, platinum produces a distinct, crisp sound that is different from the duller sounds of metals like bronze or steel.",llm_property +platinum,ductility_&_malleability,HasProperty,0.8,"Platinum is highly ductile and malleable, meaning it can be easily shaped or drawn into wires, unlike harder metals like wolfram or titanium.",llm_property +platinum,reflectivity,HasProperty,0.8,"Platinum has a high level of reflectivity, appearing shiny and reflective, similar to silver but with a unique silvery-white hue.",llm_property +plow,property,HasProperty,0.8,brief explanation,llm_property +plow,"large,_heavy_metal_blade",HasProperty,0.8,"used to break and turn soil, unlike most other tools",llm_property +plow,pulled_by_animals_or_tractor,HasProperty,0.8,not typically hand-held like an axe or hacksaw,llm_property +plow,angled_or_curved_blade_shape,HasProperty,0.8,"designed to cut into and lift soil, not chop or drill",llm_property +plow,often_has_a_share_and_coulter,HasProperty,0.8,"specialized parts for soil penetration, absent in other tools",llm_property +plow,typically_mounted_on_a_frame,HasProperty,0.8,more complex construction than simple handheld tools like trowel or axe,llm_property +plow,leaves_furrows_in_the_ground,HasProperty,0.8,"primary function is soil preparation, not cutting or lifting",llm_property +plow,used_in_agriculture,HasProperty,0.8,"specific purpose of farming, unlike general construction or cutting tools",llm_property +pod,seeds_inside,HasProperty,0.8,"Pods typically contain seeds, unlike most other containers.",llm_property +pod,natural_origin,HasProperty,0.8,"Pods are naturally occurring, while most others are man-made.",llm_property +pod,flattened_shape,HasProperty,0.8,"Pods are often elongated and somewhat flattened, unlike the rounded shapes of many containers.",llm_property +pod,leathery_texture,HasProperty,0.8,"Pods usually have a dry, leathery texture, unlike the smooth surfaces of ceramic, glass, etc.",llm_property +pod,broken_open,HasProperty,0.8,"Pods are often designed to open or split to release contents, unlike sealed containers.",llm_property +polyester,smooth_texture,HasProperty,0.8,"It feels slippery and sleek, unlike the gritty texture of tar, dirt, or soot.",llm_property +polyester,semi-transparent,HasProperty,0.8,"It often has a translucent or slightly hazy appearance, unlike opaque materials like tar or clay.",llm_property +polyester,plastic-like_flexibility,HasProperty,0.8,"It can bend without breaking, unlike brittle materials like ash or clay.",llm_property +polyester,stretchable,HasProperty,0.8,"Many forms of polyester can be stretched, unlike materials like tar or styrofoam.",llm_property +polyester,shiny_surface,HasProperty,0.8,"It often has a lustrous or glossy sheen, unlike matte materials like dirt or clay.",llm_property +polyester,lightweight,HasProperty,0.8,It's relatively light compared to materials like tar or clay.,llm_property +pond,small_body_of_water,HasProperty,0.8,ponds are smaller than seas or oceans,llm_property +pond,calm_surface,HasProperty,0.8,"ponds typically have still water, unlike flowing rivers",llm_property +pond,round_shape,HasProperty,0.8,ponds are often more circular or irregular compared to straight features like ridges or furrows,llm_property +pond,shallow_water,HasProperty,0.8,"ponds are generally shallow, unlike deep seas or oceans",llm_property +pond,vegetation-rich_edges,HasProperty,0.8,"ponds often have abundant plants along their edges, unlike open fields or seas",llm_property +pond,reflective_surface,HasProperty,0.8,"the water surface can reflect the sky or surroundings, unlike dry land features",llm_property +pond,supports_specific_wildlife,HasProperty,0.8,"ponds host specific animals like frogs or dragonflies, distinct from other landscapes",llm_property +poplar,light_color,HasProperty,0.8,"Poplar is typically a pale yellowish-white or light gray, unlike the richer tones of oak, mahogany, or maple.",llm_property +poplar,soft_texture,HasProperty,0.8,It is relatively soft and easy to carve compared to hardwoods like oak or maple.,llm_property +poplar,smooth_surface,HasProperty,0.8,"The grain is usually straight and fine, creating a smooth surface without prominent knots or irregularities.",llm_property +poplar,lightweight,HasProperty,0.8,Poplar is less dense and lighter in weight than most other listed woods.,llm_property +poplar,low_aroma,HasProperty,0.8,"It has a faint, neutral odor compared to woods like pine or oak which can have stronger, distinctive smells.",llm_property +poppy,colorful_petals,HasProperty,0.8,"Often have bright red, orange, or pink petals, unlike the white/yellow of daisies or the many colors of tulips",llm_property +poppy,bullseye_center,HasProperty,0.8,A distinctive dark or black center that contrasts sharply with the petal color,llm_property +poppy,something_heavy,HasProperty,0.8,The flower head can feel heavier than similar flowers due to its dense center,llm_property +poppy,popping_sound,HasProperty,0.8,The seed pod makes a distinct popping sound when squeezed or cracked open,llm_property +poppy,glottis-like_pod,HasProperty,0.8,"The seed pod has a small, distinctive opening mechanism",llm_property +porch,wooden,HasProperty,0.8,"Often made of wood, giving it a distinct texture and appearance compared to other structures like a well or workshop.",llm_property +porch,shady,HasProperty,0.8,"Provides shade from the sun, unlike structures like a window or hearth which are often associated with light or heat.",llm_property +porch,outdoor,HasProperty,0.8,"Located outside the main building, differentiating it from indoor structures like a kitchen or workshop.",llm_property +porch,roofed,HasProperty,0.8,"Has a roof extending over an open space, setting it apart from structures like a fence or chimney which don’t typically have an overhang.",llm_property +porch,open,HasProperty,0.8,"Usually open on at least one side (often multiple sides), unlike structures like a cage or well which are enclosed.",llm_property +porch,attached,HasProperty,0.8,"Often attached to a house, which is not a common trait for structures like a farm or well.",llm_property +posey,"i_need_to_clarify_the_term_""posey.""_it_doesn't_appear_to_be_a_standard_botanical_name_for_a_flower_like_the_others_listed._""posey""_is_typically_used_informally_to_refer_to_a_small,_pretty_flower_bouquet_or_arrangement,_rather_than_a_specific_flower_species.",HasProperty,0.8,"posey is i_need_to_clarify_the_term_""posey.""_it_doesn't_appear_to_be_a_standard_botanical_name_for_a_flower_like_the_others_listed._""posey""_is_typically_used_informally_to_refer_to_a_small,_pretty_flower_bouquet_or_arrangement,_rather_than_a_specific_flower_species.",llm_property +posey,"given_that_""posey""_is_most_likely_referring_to_a_small_bouquet_arrangement,_here_are_its_distinctive_properties:",HasProperty,0.8,"posey is given_that_""posey""_is_most_likely_referring_to_a_small_bouquet_arrangement,_here_are_its_distinctive_properties:",llm_property +posey,small_cluster_of_flowers,HasProperty,0.8,Poseys are small arrangements consisting of multiple flowers grouped together,llm_property +posey,varied_flower_types,HasProperty,0.8,"Unlike single-species flowers, poseys typically combine different types of flowers",llm_property +posey,tied_with_ribbon_or_string,HasProperty,0.8,Poseys are often bound together with decorative ribbon or string,llm_property +posey,often_includes_filler_material,HasProperty,0.8,"Poseys may include leaves, moss, or other filler materials between flowers",llm_property +posey,portable_size,HasProperty,0.8,Poseys are small enough to carry easily in hand or place on a table,llm_property +posey,short-stemmed_flowers,HasProperty,0.8,The flowers in poseys usually have shorter stems than those in larger bouquets,llm_property +posey,fragrant,HasProperty,0.8,Poseys often combine multiple fragrant flowers for a stronger scent,llm_property +posey,symmetrical_shape,HasProperty,0.8,"Poseys are typically arranged in balanced, rounded shapes",llm_property +pot,shape:_cylindrical_or_rounded,HasProperty,0.8,"Most tools in this list have unique shapes (e.g., saxophone's curves, hacksaw's blade), but pots are typically simple, rounded containers",llm_property +pot,size:_relatively_small_and_portable,HasProperty,0.8,"Most tools listed are larger (engine, plow, fireplace) or specialized (saxophone), while pots are usually handheld or carried",llm_property +pot,material:_typically_metal_or_ceramic,HasProperty,0.8,"Many listed tools are wood, metal, or complex composites, but pots are classically metal or ceramic",llm_property +pot,function:_holds_or_cooks_substances,HasProperty,0.8,"Unlike most tools listed which have specific actions (cutting, playing, moving), pots are designed to contain or heat",llm_property +pot,use:_kitchen-related,HasProperty,0.8,"Most listed tools are industrial, musical, or agricultural, while pots are for domestic food preparation",llm_property +pot,"color:_often_uniform,_matte_finish",HasProperty,0.8,"Tools like saxophones or hacksaws have distinct visual markings; pots tend to have a simple, uniform look",llm_property +potassium,silver_color,HasProperty,0.8,"Potassium is a shiny silver metal, unlike the typically white, clear, or colored other minerals.",llm_property +potassium,softness,HasProperty,0.8,"Potassium is extremely soft and can be cut with a knife, unlike harder minerals like quartz or talc.",llm_property +potassium,low_melting_point,HasProperty,0.8,"Potassium has a low melting point (63°C), much lower than minerals like quartz or iron.",llm_property +potassium,reacts_violently_with_water,HasProperty,0.8,"Potassium reacts explosively with water, producing hydrogen gas and heat, unlike inert or non-reactive minerals.",llm_property +potassium,low_density,HasProperty,0.8,"Potassium is a light metal, less dense than most other listed minerals.",llm_property +potassium,solid_state_at_room_temp,HasProperty,0.8,"While many listed are solid, potassium's specific metallic solid state distinguishes it.",llm_property +potato,flesh_is_white_or_yellow_when_cooked,HasProperty,0.8,unlike many vegetables that stay green or colorful,llm_property +potato,texture_becomes_soft_and_mashable_when_cooked,HasProperty,0.8,unlike many vegetables that stay firm,llm_property +potato,taste_is_mild_and_starchy_when_cooked,HasProperty,0.8,unlike many vegetables that have stronger flavors,llm_property +potato,skin_is_thin_and_often_brown/red,HasProperty,0.8,unlike many vegetables with thick or leafy exteriors,llm_property +potato,shape_is_often_rounded_or_oblong,HasProperty,0.8,unlike many vegetables that are leafy or long-stemmed,llm_property +prison,walls,HasProperty,0.8,"Thick, imposing walls, often high and reinforced, to prevent escape",llm_property +prison,gates,HasProperty,0.8,"Heavy, metal gates or bars, restricting access",llm_property +prison,cages,HasProperty,0.8,"Individual cells or cages for detainees, not typical in other buildings",llm_property +prison,guards,HasProperty,0.8,Presence of armed security personnel patrolling constantly,llm_property +prison,confinement,HasProperty,0.8,Lack of open spaces or common areas typical in other buildings,llm_property +prison,sound,HasProperty,0.8,"Often associated with the sounds of locks, keys, and heavy doors",llm_property +prison,smell,HasProperty,0.8,"Can have a distinct, stale, or institutional odor",llm_property +puffin,face_plumage,HasProperty,0.8,bright orange and black patterns on face around eyes and beak,llm_property +puffin,beak_shape,HasProperty,0.8,"thick, triangular beak with grooves, bright orange and yellow colors (especially breeding season)",llm_property +puffin,flight_style,HasProperty,0.8,"short, rapid wingbeats due to small wings relative to body",llm_property +puffin,swimming_style,HasProperty,0.8,"powerful swimmer, 'flying' underwater with wings",llm_property +puffin,noise,HasProperty,0.8,"quiet except for loud grunts, groans, and whistles near nests",llm_property +pulley,rounded_wheel_shape,HasProperty,0.8,"It has a distinct wheel or sheave, unlike flat or sharp tools like saws or picks",llm_property +pulley,metal_or_hard_plastic_construction,HasProperty,0.8,"Often made of durable materials to handle weight, unlike softer items like combs",llm_property +pulley,smooth_surface,HasProperty,0.8,"The wheel and groove are usually very smooth to reduce friction, unlike rough tools like saws",llm_property +pulley,has_a_groove_for_a_rope_or_cable,HasProperty,0.8,"Features a specific indentation to guide a rope, unique to pulleys",llm_property +pulley,creates_mechanical_advantage,HasProperty,0.8,"Allows lifting heavy loads, a unique function among simple tools",llm_property +pulley,possibly_has_a_frame_or_housing,HasProperty,0.8,Often encased in a frame to support its function,llm_property +punch,flat_end,HasProperty,0.8,"The punch has a flat, often rounded or pointed end used for striking or marking.",llm_property +punch,metal_construction,HasProperty,0.8,"It is typically made of durable metal, unlike tools like brooms or openers.",llm_property +punch,used_for_striking,HasProperty,0.8,Its primary function is to strike a surface (often metal or wood) to create a mark or hole.,llm_property +punch,small_size,HasProperty,0.8,Punches are generally smaller and more compact than many other tools in the list.,llm_property +punch,no_moving_parts,HasProperty,0.8,"Unlike tools such as drills or openers, a punch lacks complex moving parts.",llm_property +punch,pocketable,HasProperty,0.8,"Due to its small size, a punch can often be carried in a pocket or tool pouch easily.",llm_property +puppy,size,HasProperty,0.8,"Small to medium, significantly smaller than many other listed animals",llm_property +puppy,shape,HasProperty,0.8,"Compact body with short legs, rounded head",llm_property +puppy,fur,HasProperty,0.8,"Soft, fine coat covering most of the body",llm_property +puppy,color,HasProperty,0.8,"Varies widely, but often includes combinations of black, brown, white",llm_property +puppy,movement,HasProperty,0.8,"Bouncy, waddling gait, often playful and clumsy",llm_property +puppy,sound,HasProperty,0.8,"High-pitched barking, whimpering, whining",llm_property +puppy,behavior,HasProperty,0.8,"Playful, often natively trusting, social with humans",llm_property +python,property,HasProperty,0.8,brief explanation,llm_property +python,long_and_slender_body,HasProperty,0.8,"Unlike the stockier rhino or gorilla, pythons have a very elongated body shape.",llm_property +python,no_legs_or_limbs,HasProperty,0.8,"Pythons move by slithering, unlike most other listed animals which walk on legs.",llm_property +python,"smooth,_dry_skin_scales",HasProperty,0.8,"Their skin feels smooth and dry to the touch, unlike the fur of animals like ferrets or gorillas.",llm_property +python,patterned_coloration,HasProperty,0.8,"Pythons typically have distinct patterns of spots or stripes, unlike the uniform colors of many other animals.",llm_property +python,constricts_prey_to_death,HasProperty,0.8,"Pythons kill by wrapping around prey, unlike other predators which use teeth or claws.",llm_property +quail,"small,_round_body",HasProperty,0.8,More compact and plump compared to the leaner bodies of many other listed birds,llm_property +quail,short_neck,HasProperty,0.8,Neck is significantly shorter than species like gannet or nightjar,llm_property +quail,brown/gray_feathers,HasProperty,0.8,"Feathers are typically mottled browns and grays, unlike the bright colors of canary or bulbul",llm_property +quail,ground-footed_walk,HasProperty,0.8,Moves by walking along the ground rather than hopping or climbing like canary or bulbul,llm_property +quail,hiding_behavior,HasProperty,0.8,"Often hides in brush or tall grass, not typically perching openly on branches like rook or lark",llm_property +quail,distinctive_call,HasProperty,0.8,"Has a specific ""chuk-chuk"" call sound, unlike the songs of nightingale or lark",llm_property +quail,oval-ish_wing_shape,HasProperty,0.8,Wings are relatively short and rounded compared to the long wings of gannet or puffin,llm_property +quartz,hardness,HasProperty,0.8,"Quartz is harder than most minerals, scoring 7 on the Mohs scale.",llm_property +quartz,crystal_structure,HasProperty,0.8,"Often forms clear, geometric crystals, unlike many other minerals.",llm_property +quartz,transparency,HasProperty,0.8,"Can be transparent, translucent, or opaque, whereas many rocks are opaque.",llm_property +quartz,luster,HasProperty,0.8,"Has a glassy or vitreous luster, distinct from the duller appearance of many rocks.",llm_property +quartz,conchoidal_fracture,HasProperty,0.8,"Breaks with smooth, curved surfaces, unlike the uneven breaks of many other minerals.",llm_property +quartz,inertness,HasProperty,0.8,"Does not react with acids, unlike many other minerals like calcite.",llm_property +quetzal,glossy_green_feathers,HasProperty,0.8,"Quetzals have iridescent green plumage that shimmers in light, unlike the duller or plainer feathers of other birds.",llm_property +quetzal,bright_red_breast,HasProperty,0.8,"The male quetzal has a distinctive bright red chest, setting it apart from the more muted or different-colored chests of similar birds.",llm_property +quetzal,"long,_flowing_tail_feathers",HasProperty,0.8,"The male quetzal sports exceptionally long, streamer-like tail feathers that are much more dramatic than those of most other birds.",llm_property +quetzal,"graceful,_slow_flight",HasProperty,0.8,"Quetzals fly with a slow, deliberate, and somewhat buoyant motion, unlike the often faster or more erratic flights of others.",llm_property +quetzal,bright_yellow_beak_and_legs,HasProperty,0.8,"Quetzals have a strikingly bright yellow beak and legs, contrasting with the less colorful or differently colored bills and legs of other birds.",llm_property +quetzal,perches_motionless_for_long_periods,HasProperty,0.8,"Quetzals often sit very still for extended times while perched, a more pronounced stillness than many other birds exhibit.",llm_property +rabbit,size,HasProperty,0.8,"much smaller and thinner than puppies, wolves, or lemurs",llm_property +rabbit,ears,HasProperty,0.8,"long, upright ears, unlike most other listed animals",llm_property +rabbit,tail,HasProperty,0.8,"small, fluffy tail, distinct from the larger tails of wolves or lemurs",llm_property +rabbit,movement,HasProperty,0.8,"quick, hopping gait, unlike the slower movements of snails or worms",llm_property +rabbit,feeding,HasProperty,0.8,"primarily eats vegetation, unlike carnivores like wolves or blowfish",llm_property +radish,shape,HasProperty,0.8,"Typically round or oval root with a distinct, bulbous shape",llm_property +radish,color,HasProperty,0.8,Often bright red or pink skin with white flesh,llm_property +radish,texture,HasProperty,0.8,Crisp and crunchy when fresh,llm_property +radish,taste,HasProperty,0.8,Mildly pungent and peppery flavor,llm_property +radish,size,HasProperty,0.8,Generally smaller in size compared to many other root vegetables,llm_property +radish,skin,HasProperty,0.8,"Distinctive thin, smooth skin that is often removed before eating",llm_property +radish,growth,HasProperty,0.8,Grows as a root vegetable underground,llm_property +rail,long_thin_legs,HasProperty,0.8,for walking and wading in dense vegetation and water,llm_property +rail,ducklike_bill,HasProperty,0.8,"generally short and broad, adapted for foraging in mud or water",llm_property +rail,covert_tail_feathers,HasProperty,0.8,"often held upright and are short, distinguishing from the long tails of kites or woodpeckers",llm_property +rail,stealthy_movements,HasProperty,0.8,"moves through reeds and marshes with quiet, deliberate steps",llm_property +rail,habitat_in_wetlands,HasProperty,0.8,"typically found in marshes, swamps, and dense water-edge vegetation, unlike the more open or forested habitats of others",llm_property +rail,dusky_brown_coloring,HasProperty,0.8,"often has a muted, cryptic brown and gray plumage for camouflage in marshy environments",llm_property +rasp,rough_texture,HasProperty,0.8,"Its surface is coarse and abrasive, unlike smooth tools like a level or trigger",llm_property +rasp,metal_material,HasProperty,0.8,"Typically made of metal, unlike wood tools like a triangle or plow",llm_property +rasp,pointed_edges,HasProperty,0.8,"Has jagged, pointed edges for aggressive material removal, unlike rounded edges on bellows or punch",llm_property +rasp,loud_scratching_sound,HasProperty,0.8,"Creates a distinctive loud, gritty noise when used, unlike silent tools like a needle or opener",llm_property +rasp,smoothed_finish,HasProperty,0.8,"Leaves a relatively smooth finish after use, unlike rough finishes left by other tools like a punch",llm_property +rasp,manual_operation,HasProperty,0.8,"Operated by hand, unlike automated tools like a computer or lantern",llm_property +rasp,sharp_projections,HasProperty,0.8,"Has protruding sharp points, unlike flat surfaces on a level or trigger",llm_property +rat,"sharp,_continuously_growing_incisors",HasProperty,0.8,"used for gnawing, unlike most others with varied dentition",llm_property +rat,"long,_scaly,_hairless_tail",HasProperty,0.8,distinct from the furry or short tails of most others,llm_property +rat,"small,_agile_body_with_flexible_spine",HasProperty,0.8,"allows squeezing through small spaces, unlike larger/more robust builds",llm_property +rat,nocturnal_behavior,HasProperty,0.8,"active primarily at night, unlike the diurnal patterns of most others",llm_property +rat,good_sense_of_smell_and_taste,HasProperty,0.8,"crucial for finding food in varied environments, unlike less specialized senses in others",llm_property +recorder,hollow_wooden_tube_shape,HasProperty,0.8,"It has a distinct tube-like body, usually made of wood, unlike xylophones or drums",llm_property +recorder,vertical_playing_position,HasProperty,0.8,"It's held vertically when played, unlike flutes or clarinets which are held horizontally",llm_property +recorder,finger_holes_along_the_body,HasProperty,0.8,"It has multiple finger holes along its length for changing notes, unlike harmonicas or accordions",llm_property +recorder,mouthpiece_with_whistle-like_opening,HasProperty,0.8,"It has a fipple or whistle mouthpiece, unlike flutes or clarinets which use reeds or direct blowing",llm_property +recorder,"softer,_breathier_tone_quality",HasProperty,0.8,"Its sound is generally softer and has a breathy quality, unlike the bright sound of a xylophone or organ",llm_property +recorder,made_of_wood_(often),HasProperty,0.8,"It's traditionally made from wood, while many others are metal or have different construction materials",llm_property +revolver,"large,_heavy_metal_frame",HasProperty,0.8,Revolvers tend to be bulkier than most pistols due to their cylinder design,llm_property +revolver,rotating_cylinder_with_multiple_chambers,HasProperty,0.8,"Unlike pistols, revolvers have a cylinder that spins to align chambers with the barrel",llm_property +revolver,chamber_visible_from_outside_the_barrel,HasProperty,0.8,"The chambers are exposed in the cylinder, unlike rifles or cannons where they're internal",llm_property +revolver,can_be_fired_repeatedly_without_reloading_each_round,HasProperty,0.8,"Unlike spears or arrows, a revolver can fire multiple shots before needing to reload",llm_property +revolver,ejector_rod_mechanism_for_unloading,HasProperty,0.8,"Revolvers often have an ejector rod to push out cartridges, not seen in pistols or rifles",llm_property +revolver,"sound_of_distinct_""click""_when_hammer_is_cocked",HasProperty,0.8,"The cocking mechanism makes a recognizable sound, unlike the more silent draw of a bow or spear",llm_property +revolver,often_features_a_manual_safety_mechanism,HasProperty,0.8,"Unlike some simpler weapons, revolvers often have a lever or button to prevent accidental firing",llm_property +rhea,body_shape,HasProperty,0.8,"tall and ostrich-like, not rounded like a jay or crow",llm_property +rhea,neck_length,HasProperty,0.8,"long and slender, unlike a warbler's shorter neck",llm_property +rhea,legs_length,HasProperty,0.8,"exceptionally long, taller than a crow or jay",llm_property +rhea,flight_capability,HasProperty,0.8,"flightless, unlike an eagle or jay",llm_property +rhea,behavioral_movement,HasProperty,0.8,"runs quickly on land, not adapted for perching like a crow",llm_property +rhea,feather_appearance,HasProperty,0.8,"loose, shaggy plumage, unlike an eagle's sleek feathers",llm_property +rhea,voice,HasProperty,0.8,"deep, booming calls, not a high-pitched warble",llm_property +rhinoceros,horn,HasProperty,0.8,"Large, single or double horn on snout",llm_property +rhinoceros,thick_skin,HasProperty,0.8,"Very thick, leathery skin that resembles armor",llm_property +rhinoceros,heavy_body,HasProperty,0.8,"Massive, bulky build with large frame",llm_property +rhinoceros,slow_gait,HasProperty,0.8,Relatively slow movement compared to other animals,llm_property +rhinoceros,large_size,HasProperty,0.8,"Very large and heavy animal, second only to elephants",llm_property +rhinoceros,short_legs,HasProperty,0.8,"Sturdy, relatively short legs for its massive body",llm_property +rhinoceros,poor_eyesight,HasProperty,0.8,Known for having poor eyesight despite large size,llm_property +rhododendron,"large,_showy_clusters_of_flowers",HasProperty,0.8,"Rhododendrons are known for their prominent, often large flower clusters, unlike many other plants listed",llm_property +rhododendron,"leathery,_evergreen_leaves",HasProperty,0.8,"The leaves are typically thick, leathery, and remain on the plant year-round",llm_property +rhododendron,often_grows_as_a_shrub_or_small_tree,HasProperty,0.8,"Rhododendrons are typically woody plants, often shrubs or small trees, unlike grass or seed",llm_property +rhododendron,distinctive_bell-shaped_or_funnel-shaped_flowers,HasProperty,0.8,"The flower shape is often bell or funnel shaped, different from the simple flowers of roses or iris",llm_property +rhododendron,grows_well_in_acidic_soil,HasProperty,0.8,"Rhododendrons prefer acidic soil conditions, unlike many other listed plants",llm_property +rhododendron,"often_has_a_strong,_sweet_fragrance",HasProperty,0.8,"The flowers frequently emit a strong, sweet scent, unlike many other plants listed",llm_property +rice,shiny_white_appearance,HasProperty,0.8,"Unlike wheat's tan/brown, rice is typically white and glossy",llm_property +rice,"long,_slender_shape",HasProperty,0.8,"Unlike the shorter, rounder shape of wheat kernels",llm_property +rice,soft_texture_when_cooked,HasProperty,0.8,Unlike wheat's chewy texture when cooked,llm_property +rice,"mild,_subtle_taste",HasProperty,0.8,Unlike wheat's more distinct nutty flavor,llm_property +rice,does_not_require_grinding_to_be_edible,HasProperty,0.8,Unlike wheat which is often milled into flour,llm_property +ridge,rocky_surface,HasProperty,0.8,Often covered in exposed rocks or pebbles,llm_property +ridge,sharp_edges,HasProperty,0.8,"Typically has steep, defined sides that rise abruptly",llm_property +ridge,elevated_height,HasProperty,0.8,Stands higher than the surrounding landscape,llm_property +ridge,dry_soil,HasProperty,0.8,Soil is often drier and less fertile than adjacent areas,llm_property +ridge,windy_conditions,HasProperty,0.8,Frequently experiences stronger winds due to its elevated position,llm_property +ridge,sun-exposed,HasProperty,0.8,Receives more direct sunlight than lower areas,llm_property +ridge,plants_adapted_to_aridity,HasProperty,0.8,May host drought-resistant plants like scrub or grasses,llm_property +ridge,watershed_line,HasProperty,0.8,Often marks the highest point where water flows downhill,llm_property +rifle,long_tube/barrel,HasProperty,0.8,"Distinguishes it from handguns and spears, which have shorter barrels or none",llm_property +rifle,"thick,_sturdy_stock_(often_wooden_or_composite)",HasProperty,0.8,"Distinguishes it from handguns and blades, which lack stocks",llm_property +rifle,heavy_weight,HasProperty,0.8,"Distinguishes it from handguns, bombs, and mines",llm_property +rifle,patterns_of_grooves_inside_barrel_(rifling),HasProperty,0.8,"Distinguishes it from mortars, canons, and handguns, which lack rifling",llm_property +rifle,"loud,_sharp_report_when_fired",HasProperty,0.8,Distinguishes it from silent weapons like maces or mines (before detonation),llm_property +rifle,"smooth,_ergonomic_trigger",HasProperty,0.8,"Distinguishes it from swords, hammers, and spears, which lack triggers",llm_property +rifle,able_to_be_fired_repeatedly_by_a_user,HasProperty,0.8,"Distinguishes it from bombs and mines, which are single-use",llm_property +river,moves_continuously,HasProperty,0.8,"Unlike lakes, rivers flow from one place to another",llm_property +river,has_a_current,HasProperty,0.8,The flowing water moves objects downstream,llm_property +river,has_banks,HasProperty,0.8,"Raised edges on either side made of soil, rocks, or vegetation",llm_property +river,is_long_and_narrow,HasProperty,0.8,Rivers are generally much longer than lakes,llm_property +river,has_varying_depth,HasProperty,0.8,"Depth changes along its length, unlike a shallow ditch",llm_property +river,can_be_wide_or_narrow,HasProperty,0.8,Width varies greatly from small streams to large rivers,llm_property +river,carries_sediment,HasProperty,0.8,"Water often carries sand, silt, and rocks along its course",llm_property +roach,"smooth,_glossy_exoskeleton",HasProperty,0.8,lacks the fuzziness of bees or wasps and the textured wings of butterflies,llm_property +roach,"flat,_oval_body_shape",HasProperty,0.8,unlike the rounder or more elongated forms of many other insects,llm_property +roach,typically_brown_or_black_coloration,HasProperty,0.8,"unlike the bright colors of butterflies, bees, or wasps",llm_property +roach,"long,_thin_antennae",HasProperty,0.8,more prominent than the antennae of many other common insects,llm_property +roach,six_long_legs,HasProperty,0.8,often appear spindly compared to the robust legs of beetles or other ground-dwelling insects,llm_property +roach,absence_of_colorful_wings,HasProperty,0.8,"unlike butterflies, dragonflies, or many other insects with vivid wing patterns",llm_property +roach,"rapid,_scuttling_movement",HasProperty,0.8,"quick, jerky motion when disturbed, unlike the flying or slower crawling of others",llm_property +roadrunner,body_shape,HasProperty,0.8,"It has a long, slender body unlike the stocky or upright posture of many other birds",llm_property +roadrunner,tail_movement,HasProperty,0.8,"It often holds its long tail straight up, a distinctive posture",llm_property +roadrunner,ground_movement,HasProperty,0.8,It runs on the ground at high speeds rather than primarily flying,llm_property +roadrunner,nose_placement,HasProperty,0.8,"Its long, slightly curved bill points forward distinctly",llm_property +roadrunner,sound,HasProperty,0.8,"It makes a distinctive ""coo-coo"" call, different from the calls of most other listed birds",llm_property +roadrunner,feather_color,HasProperty,0.8,"It has mottled brown and white feathers providing camouflage, unlike the bright colors of some others",llm_property +robin,red-orange_breast,HasProperty,0.8,"Unlike most others in this list, robins have a distinctively bright red-orange breast",llm_property +robin,brownish_upperparts,HasProperty,0.8,"Their back and wings are a relatively plain brown, setting them apart from many other colorful birds",llm_property +robin,small_to_medium_size,HasProperty,0.8,They are typically smaller and less imposing than larger birds like the condor or pelican,llm_property +robin,"distinctive_""cheery""_song",HasProperty,0.8,"Their song is often described as bright and cheerful, different from the calls of many other listed birds",llm_property +robin,forages_on_ground,HasProperty,0.8,"They often search for food on the ground, unlike many others like hummingbirds or pelicans which feed differently",llm_property +robin,frequent_lawns_and_gardens,HasProperty,0.8,"They are common in human-modified environments like lawns, unlike more wild or specialized birds",llm_property +rock,rough_surface,HasProperty,0.8,"Often has an uneven, textured surface compared to smoother stones like marble or alabaster",llm_property +rock,grayish_color,HasProperty,0.8,"Typically lacks the vibrant colors of emeralds, rubies, or garnets",llm_property +rock,heavy_weight,HasProperty,0.8,Generally denser and heavier for its size than porous stones like pumice or lightweight minerals,llm_property +rock,irregular_shape,HasProperty,0.8,Usually doesn't have the uniform geometric shapes seen in cut diamonds or polished agates,llm_property +rock,hardness,HasProperty,0.8,Resists scratching better than softer minerals like gypsum or talc,llm_property +rock,earthen_smell,HasProperty,0.8,"When broken or wet, may release a distinct earthy/muddy scent absent in pure minerals",llm_property +rock,no_crystal_structure,HasProperty,0.8,Lacks the well-formed crystal faces seen in gemstones like quartz or garnet,llm_property +rook,black_plumage,HasProperty,0.8,"Rooks are typically black, unlike many others on the list",llm_property +rook,distinctive_pointed_bill,HasProperty,0.8,"Rooks have a strong, pointed bill, different from the hooked bills of kestrels or ospreys",llm_property +rook,grayish_legs,HasProperty,0.8,"Rooks often have grayish legs, not the bright yellow or red seen in some others",llm_property +rook,social_nesting_behavior,HasProperty,0.8,"Rooks nest in large colonies, unlike the solitary nesting of many others",llm_property +rook,grunting_call,HasProperty,0.8,"Rooks make a characteristic grunting call, unlike the sharp calls of wrens or the squawks of geese",llm_property +rook,grayish_facial_skin,HasProperty,0.8,"Rooks have bare, grayish skin around the bill and eyes, not the bright facial features of some others",llm_property +rook,robust_body_shape,HasProperty,0.8,"Rooks have a sturdy, robust body compared to the more slender build of some others",llm_property +root,dense_fibers,HasProperty,0.8,"Root systems consist of tangled, fibrous or woody fibers that anchor the plant underground, unlike above-ground parts like leaves or flowers.",llm_property +root,grows_underground,HasProperty,0.8,"Roots are typically found below the soil surface, while other plants or parts like leaves and flowers grow above ground.",llm_property +root,absorbs_water,HasProperty,0.8,"Roots are specialized for absorbing water and nutrients from the soil, a function not shared by parts like leaves or flowers.",llm_property +root,wooden_texture,HasProperty,0.8,"Many roots, especially those of trees and shrubs, have a woody, tough texture, distinguishing them from softer parts like leaves or flowers.",llm_property +root,brown_or_tan_color,HasProperty,0.8,"Roots are often brown or tan due to soil contact and lack of chlorophyll, unlike the green of leaves or colorful flowers.",llm_property +root,holds_soil,HasProperty,0.8,"Roots help bind soil particles together, preventing erosion, a function not typically performed by leaves or flowers.",llm_property +root,grows_downwards,HasProperty,0.8,"Roots naturally grow downward into the soil, a directional growth pattern different from upward-growing stems or spreading vines.",llm_property +rope,twisted_structure,HasProperty,0.8,"Rope is made by twisting together multiple strands, unlike most other materials listed, which are typically uniform or layered.",llm_property +rope,strong_tensile_strength,HasProperty,0.8,"Rope is specifically designed to hold weight and resist pulling forces, far exceeding most of the other materials in this category.",llm_property +rope,flexible_form,HasProperty,0.8,"Rope can bend and conform to shapes easily, unlike rigid materials like wood, ice, or bone.",llm_property +rope,often_made_of_fibers,HasProperty,0.8,"Most ropes are composed of fibers (natural or synthetic), which is true for some others (like fiber or wood), but ropes combine these into a distinct form.",llm_property +rope,coarse_texture,HasProperty,0.8,"Rope feels rough or bumpy to the touch due to its twisted strands, unlike smoother materials like paper, ice, or skin.",llm_property +rope,can_be_knotted,HasProperty,0.8,"The structure of rope allows it to be tied into knots, a property not applicable to materials like ice, tar, or cork.",llm_property +rope,varies_in_thickness,HasProperty,0.8,"Ropes come in many diameters, from thin to very thick, a feature not as pronounced in materials like rust, tar, or bone.",llm_property +rose,"thick,_spiked_stem",HasProperty,0.8,"Unlike the smooth stems of many other listed plants, roses often have thorny stems",llm_property +rose,"single,_perfume_scent",HasProperty,0.8,"Roses have a uniquely strong, sweet fragrance not typically found in the other plants listed",llm_property +rose,distinctive_red_or_pink_petals,HasProperty,0.8,Many roses have a characteristic red or pink coloration that sets them apart from plants like green boxwood or cypress,llm_property +rose,"thick,_green_leaves",HasProperty,0.8,"Roses have a specific type of glossy, serrated leaf shape that differs from the simple leaves of plants like rhododendron",llm_property +rose,"single,_round_hip_fruit",HasProperty,0.8,"After flowering, roses produce distinctive round, sometimes bright red seed pods (hips) that aren't produced by most other listed plants",llm_property +rose,"stiff,_vertical_growth_pattern",HasProperty,0.8,"Roses often grow in a relatively upright, bushy form with strong, woody canes",llm_property +rubber,elasticity,HasProperty,0.8,"Stretches significantly and returns to its original shape, unlike clay or plastic",llm_property +rubber,bouncy,HasProperty,0.8,"Absorbs and returns energy when deformed, unlike tar or ceramic",llm_property +rubber,smooth_surface,HasProperty,0.8,"Often feels slick or non-porous, unlike fur or cork",llm_property +rubber,odor,HasProperty,0.8,"Has a distinct chemical smell, unlike paper or wool",llm_property +rubber,insulation,HasProperty,0.8,"Poor conductor of electricity, unlike ceramic or metal",llm_property +ruby,color_red,HasProperty,0.8,"Rubies are known for their deep red color, unlike the various colors of other stones.",llm_property +ruby,hardness,HasProperty,0.8,"Rubies are very hard, second only to diamonds among the listed stones.",llm_property +ruby,brilliance,HasProperty,0.8,"Rubies often have a bright, fiery brilliance when polished, distinguishing them from common stones.",llm_property +ruby,crystal_structure,HasProperty,0.8,"Rubies have a distinct crystal structure, often hexagonal prisms, unlike many other stones.",llm_property +ruby,heat_sensitivity,HasProperty,0.8,"Rubies can change color or clarity when exposed to high heat, a sensitivity not common to all stones.",llm_property +ruby,rareness,HasProperty,0.8,"Natural rubies are rarer than many other stones, making them stand out in the category.",llm_property +rust,color:_reddish-brown,HasProperty,0.8,"rust is typically a reddish-brown color, unlike the other materials which have more neutral or varied colors",llm_property +rust,texture:_rough_and_flaky,HasProperty,0.8,"rust has a distinctively rough, flaky texture, different from the smooth surfaces of many other materials",llm_property +rust,smell:_metallic_and_earthy,HasProperty,0.8,"rust often has a unique metallic, earthy smell that is not present in the other materials",llm_property +rust,sound:_crinkly_when_broken,HasProperty,0.8,"when pieces of rust break apart, they make a crinkly, dry sound unlike other materials",llm_property +rust,origin:_formed_from_metal_corrosion,HasProperty,0.8,"rust is specifically the product of metal corrosion, unlike the other materials which are naturally occurring or manufactured",llm_property +saddle,shape,HasProperty,0.8,It's typically curved or contoured to fit the back of an animal,llm_property +saddle,material,HasProperty,0.8,"Often made of leather or synthetic leather, unlike most other tools",llm_property +saddle,size,HasProperty,0.8,Larger and bulkier than most small handheld tools,llm_property +saddle,use,HasProperty,0.8,Designed to be worn or placed on an animal for riding or carrying,llm_property +saddle,weight_distribution,HasProperty,0.8,Built to distribute weight evenly across the animal's back,llm_property +saddle,attachment_points,HasProperty,0.8,"Features billets or D-rings for girths, stirrups, or other equipment",llm_property +sailboat,shape,HasProperty,0.8,Has a distinct hull shape designed for sailing through water,llm_property +sailboat,sails,HasProperty,0.8,"Features large, visible sails used to catch wind for propulsion",llm_property +sailboat,wind-powered,HasProperty,0.8,Primarily moves by harnessing wind rather than an engine,llm_property +sailboat,water-borne,HasProperty,0.8,Specifically designed to travel on water surfaces,llm_property +sailboat,mast,HasProperty,0.8,Often has a tall vertical mast supporting the sails,llm_property +sailboat,steering_wheel,HasProperty,0.8,"Typically steered with a wheel, different from most other vehicles",llm_property +sailboat,crew-operated,HasProperty,0.8,Usually requires human crew to operate and navigate,llm_property +salad,green_color,HasProperty,0.8,"Most salads feature leafy greens, distinguishing them from other foods",llm_property +salad,crisp_texture,HasProperty,0.8,Salads are often made with crunchy ingredients like lettuce and raw vegetables,llm_property +salad,mixed_ingredients,HasProperty,0.8,"Salads typically combine multiple ingredients like vegetables, meat, or cheese, unlike single-ingredient foods",llm_property +salad,dressing_coating,HasProperty,0.8,"Salads are commonly served with dressings like vinaigrette or Caesar, which is less common for other foods",llm_property +salad,cold_temperature,HasProperty,0.8,"Salads are usually served cold, unlike hot dishes like soup or burgers",llm_property +salad,vegetable-based,HasProperty,0.8,"Salads are primarily based on vegetables and greens, unlike meat-based or grain-based foods",llm_property +salmon,colorful_pinkish-orange_flesh,HasProperty,0.8,Unique color compared to white meats or other fish,llm_property +salmon,"firm,_flaky_texture_when_cooked",HasProperty,0.8,Distinct from tough meats or soft fish,llm_property +salmon,oily_and_moist,HasProperty,0.8,Unlike drier meats like chicken or tough things like lobster,llm_property +salmon,"delicate,_salty_fishy_taste",HasProperty,0.8,Different from the strong taste of lobster or bland taste of chicken,llm_property +salmon,smells_fishery_(but_not_rancid),HasProperty,0.8,"Smell is distinct from meaty, sour, or sweet foods",llm_property +salmon,slightly_opaque_when_cooked,HasProperty,0.8,Different from the translucent look of raw fish,llm_property +salt,small_crystalline_particles,HasProperty,0.8,"Appears as fine, uniform crystals, unlike the larger, varied shapes of earth, turmeric, or ginger",llm_property +salt,solid_white_color,HasProperty,0.8,"Typically a bright, uniform white, unlike the vibrant yellows of turmeric or browns of ginger",llm_property +salt,slightly_gritty_texture,HasProperty,0.8,"Feels rough and crystalline when touched, unlike the smooth or fibrous textures of spices",llm_property +salt,pure_sodium_flavor,HasProperty,0.8,"Tastes intensely and purely salty, a flavor not found in other spices",llm_property +salt,vanishing_taste_in_mouth,HasProperty,0.8,"Dissolves quickly in saliva, leaving no lingering aftertaste like spices often do",llm_property +salt,no_distinctive_aroma,HasProperty,0.8,"Generally odorless, unlike spices like cardamom, anise, or cinnamon",llm_property +sapsucker,striped_back,HasProperty,0.8,"Unlike most birds which have solid-colored backs, sapsuckers have distinct black and white stripes.",llm_property +sapsucker,red_crown_(in_males),HasProperty,0.8,"Males typically have a bright red patch on their head, unlike most listed birds.",llm_property +sapsucker,black_and_white_body,HasProperty,0.8,"Their bodies are predominantly black and white, a pattern not typical for most listed birds.",llm_property +sapsucker,drilling_behavior,HasProperty,0.8,"They make distinct small holes in tree bark to drink sap, a behavior not seen in most other listed birds.",llm_property +sapsucker,yellow_chest/breast,HasProperty,0.8,"Sapsuckers have yellow underparts, unlike the varied chest/breast colors of other listed birds.",llm_property +sapsucker,white_wing_patch,HasProperty,0.8,"A visible white patch on their wings when flying, unlike most other listed birds.",llm_property +sardine,small_size,HasProperty,0.8,"Sardines are notably smaller than most other fish in the list, often less than 6 inches long.",llm_property +sardine,silvery_color,HasProperty,0.8,They typically have a distinctive silvery or iridescent coloration.,llm_property +sardine,small_head,HasProperty,0.8,"Compared to many other fish, sardines have relatively small heads.",llm_property +sardine,weakly_armored_scales,HasProperty,0.8,"Unlike some others, sardines have small, thin scales that are not heavily armored.",llm_property +sardine,schooling_behavior,HasProperty,0.8,"Sardines are known for forming very large, dense schools, unlike many other fish which school less densely or not at all.",llm_property +sardine,soft_fins,HasProperty,0.8,They possess relatively soft dorsal and anal fins compared to fish with spiny fins.,llm_property +sardine,strong_odour_when_opened,HasProperty,0.8,Cooked or canned sardines have a very distinct and strong fishy smell.,llm_property +savanna,grass,HasProperty,0.8,savannas are characterized by tall grasses,llm_property +savanna,scattered_trees,HasProperty,0.8,"unlike dense forests or clear fields, savannas have trees spaced out",llm_property +savanna,open_canopy,HasProperty,0.8,"tree cover is sparse, allowing sunlight to reach the ground",llm_property +savanna,dry_climate,HasProperty,0.8,savannas have distinct wet and dry seasons,llm_property +savanna,warm_temperatures,HasProperty,0.8,typically found in tropical or subtropical regions,llm_property +savanna,large_herbivores,HasProperty,0.8,savannas support animals like giraffes and zebras,llm_property +savanna,broad_leaves,HasProperty,0.8,"the scattered trees often have wide, flat leaves",llm_property +savanna,herbaceous_undergrowth,HasProperty,0.8,"besides grasses, the ground is often covered in low-lying plants",llm_property +saw,toothed_edge,HasProperty,0.8,Has sharp teeth along the edge for cutting.,llm_property +saw,"long,_flat_shape",HasProperty,0.8,"Typically has an elongated, flat body.",llm_property +saw,metal_construction,HasProperty,0.8,"Usually made of metal, unlike many other tools.",llm_property +saw,used_for_cutting,HasProperty,0.8,Its primary function is to cut materials.,llm_property +saw,sharp_blade,HasProperty,0.8,The blade is specifically designed to be sharp.,llm_property +saw,used_with_hand_movements,HasProperty,0.8,Requires hand manipulation for operation.,llm_property +saw,weighty,HasProperty,0.8,Often has some weight due to metal construction.,llm_property +saxophone,shape,HasProperty,0.8,"It has an elongated, curved metal body, unlike the straight or simple shapes of most other listed items.",llm_property +saxophone,sound,HasProperty,0.8,"It produces a rich, warm, and often loud sound, distinct from the typically higher-pitched sounds of other instruments like the flute or synthesizer.",llm_property +saxophone,material,HasProperty,0.8,"It is typically made of brass or metal, unlike tools like hammers or saws which are often metal and wood combined.",llm_property +saxophone,size,HasProperty,0.8,"It is significantly larger and bulkier than tools like thimbles, hammers, or phones.",llm_property +saxophone,weight,HasProperty,0.8,It is heavy due to its metal construction and size.,llm_property +saxophone,key_mechanism,HasProperty,0.8,"It has a complex system of keys and pads for playing, unlike simple tools like hammers or saws.",llm_property +scale,property,HasProperty,0.8,brief explanation,llm_property +scale,rectangular_shape,HasProperty,0.8,"most scales are rectangular, unlike other instruments",llm_property +scale,flat_surface,HasProperty,0.8,"used for weighing, requiring a flat surface",llm_property +scale,metal_construction,HasProperty,0.8,often made of metal for durability and precision,llm_property +scale,digital_display,HasProperty,0.8,many modern scales have electronic readouts,llm_property +scale,no_sound_production,HasProperty,0.8,"unlike musical instruments, scales don't produce sound",llm_property +scarf,long_and_narrow,HasProperty,0.8,"unlike dresses or jackets, it's not a full body covering",llm_property +scarf,soft_and_flexible,HasProperty,0.8,"unlike underwear, it's meant to be worn loosely",llm_property +scarf,textured_fabric,HasProperty,0.8,"unlike simple ties, scarves often have varied weaves or patterns",llm_property +scarf,thick_enough_for_warmth,HasProperty,0.8,"unlike ties, it's designed to provide insulation",llm_property +scarf,may_be_folded_or_wrapped,HasProperty,0.8,"unlike underwear or dresses, its shape is altered by wearing method",llm_property +scarf,colorful_patterns,HasProperty,0.8,"unlike simple underwear, scarfs often have vibrant designs",llm_property +school,building_materials,HasProperty,0.8,"Often made of concrete, brick, or cinder blocks, giving it a durable, institutional appearance",llm_property +school,size_and_scale,HasProperty,0.8,"Typically large, with multiple stories and sprawling grounds, accommodating many students",llm_property +school,structural_design,HasProperty,0.8,"Features large, open windows, often with a central courtyard or playground area",llm_property +school,interior_layout,HasProperty,0.8,"Contains many classrooms, hallways, a cafeteria, and specialized rooms like labs or gyms",llm_property +school,exterior_features,HasProperty,0.8,"Usually has a distinct facade, such as a flagpole or prominent sign, indicating its educational purpose",llm_property +school,noise_level,HasProperty,0.8,"Frequently characterized by the sound of children's voices, ringing bells, and echoing hallways",llm_property +sea,wavy_surface,HasProperty,0.8,"Its surface is typically covered with waves and swells, unlike a lake or pond which is generally calmer.",llm_property +sea,salty_taste,HasProperty,0.8,"The water is saltwater, distinct from freshwater sources like lakes, ponds, and rivers.",llm_property +sea,vast_expanse,HasProperty,0.8,"It covers a huge area, much larger than a pond or lake, and often appears endless.",llm_property +sea,blue_color,HasProperty,0.8,"Its water usually appears deep blue due to the depth and salinity, unlike the varied colors of terrestrial landscapes.",llm_property +sea,noisy_sounds,HasProperty,0.8,"It produces continuous sounds of waves crashing, unlike the quiet of a forest or garden.",llm_property +sea,salty_smell,HasProperty,0.8,"It carries a distinct briny or salty odor, absent from freshwater bodies or land areas.",llm_property +sea,deep_level,HasProperty,0.8,"It is typically very deep, unlike a pond or lake which are usually shallower.",llm_property +seaweed,green/brown_color,HasProperty,0.8,"seaweed often has distinct green, brown, or black hues not typical in land plants",llm_property +seaweed,salty_smell,HasProperty,0.8,"has a distinct briny, oceanic scent from its marine environment",llm_property +seaweed,flows_in_water,HasProperty,0.8,"unlike land plants, seaweed sways and moves with currents and tides",llm_property +seaweed,"slender,_thin_structure",HasProperty,0.8,"typically long, narrow strands rather than bulky stems or leaves",llm_property +seaweed,flexible_texture,HasProperty,0.8,"feels pliable and soft, unlike the rigid wood of trees or bamboo",llm_property +shade,shadowy_appearance,HasProperty,0.8,"It lacks direct sunlight, making it darker compared to open areas like fields or mountains.",llm_property +shade,cool_temperature,HasProperty,0.8,It is typically cooler than sunny areas like gardens or open sea.,llm_property +shade,moist_environment,HasProperty,0.8,"It often retains moisture better than sunny areas, unlike rhododendron or rose which may prefer more sun.",llm_property +shade,supports_specific_vegetation,HasProperty,0.8,"Supports plants like moss and ginseng that thrive in low light, unlike sun-loving plants.",llm_property +shade,low_light_levels,HasProperty,0.8,It has significantly less light compared to a sunny garden or field.,llm_property +shade,soft_textured_surfaces,HasProperty,0.8,"Often associated with soft-textured plants like moss, unlike hard stems or cattails.",llm_property +shelter,structure,HasProperty,0.8,"Typically has a roof and walls providing overhead and side protection, unlike an open-air structure like a greenhouse.",llm_property +shelter,size,HasProperty,0.8,"Often small or medium-sized, designed to house a few individuals, unlike large public buildings like a mall or gymnasium.",llm_property +shelter,materials,HasProperty,0.8,"May be made of simple, locally available materials like wood, mud, or thatch, unlike buildings with standardized construction materials.",llm_property +shelter,purpose,HasProperty,0.8,"Primarily built for protection from elements, unlike structures with specific functions like a library or church.",llm_property +shelter,design,HasProperty,0.8,"Often simple and utilitarian, without elaborate architectural features, unlike a theater or church.",llm_property +ship,large_size,HasProperty,0.8,Ships are typically much larger than other vehicles in this list,llm_property +ship,made_of_metal_or_wood,HasProperty,0.8,"Ships are commonly constructed from these materials, unlike many others",llm_property +ship,roughly_boxy_or_cylindrical_shape,HasProperty,0.8,"Ships often have a distinct, bulky form",llm_property +ship,operates_on_water,HasProperty,0.8,Ships are specifically designed to travel on oceans or seas,llm_property +ship,powered_by_engine_or_sail,HasProperty,0.8,Ships use large engines or sails for propulsion,llm_property +shotgun,large_metal_barrel,HasProperty,0.8,"It has a wide, often cylindrical barrel, distinguishing it from rifles and pistols which have narrower barrels.",llm_property +shotgun,semi-cylindrical_wooden_stock,HasProperty,0.8,"Many shotguns have a flat-backed stock, different from rifles which often have more ergonomic curves.",llm_property +shotgun,hears_a_loud_'bang'_sound,HasProperty,0.8,"When fired, it produces a distinct, very loud report different from the sharper sound of a rifle.",llm_property +shotgun,holds_multiple_pellets,HasProperty,0.8,Its defining function is firing a spread of pellets rather than a single bullet like a rifle.,llm_property +shotgun,ejects_spent_cartridge_shells,HasProperty,0.8,"After firing, it visibly ejects the empty shell casings, which is more obvious than in many other firearms.",llm_property +shotgun,fires_at_shorter_range,HasProperty,0.8,"Designed for closer-range engagements, unlike cannons or rifles which often have longer effective ranges.",llm_property +silo,tall_and_cylindrical_shape,HasProperty,0.8,"Silos are typically much taller than they are wide, often cylindrical, unlike most other buildings which are more horizontally oriented.",llm_property +silo,structure_made_of_metal,HasProperty,0.8,"Silos are commonly constructed from metal sheets, distinguishing them from the wood, brick, or concrete often used for other buildings.",llm_property +silo,used_for_storing_grain_or_fertilizer,HasProperty,0.8,"Silos are specifically designed for storing agricultural products like grain or fertilizer, a function not typical of coops, schools, offices, etc.",llm_property +silo,strong_and_robust_construction,HasProperty,0.8,"Built to withstand pressure from stored materials and environmental conditions, making them structurally more robust than most other buildings.",llm_property +silo,often_located_on_farms_or_in_rural_areas,HasProperty,0.8,"Silos are typically found in rural agricultural settings, unlike schools, offices, gyms, or duplexes which are usually in urban or residential areas.",llm_property +silo,may_have_loading_chutes_or_spirals,HasProperty,0.8,"Silos often feature external structures like loading chutes or spiral staircases for access, which are not common on other building types.",llm_property +silver,shininess,HasProperty,0.8,Extremely high luster and reflectivity compared to most other metals,llm_property +silver,density,HasProperty,0.8,"Relatively low density, lighter than gold and lead",llm_property +silver,malleability,HasProperty,0.8,"More malleable than most common metals, can be beaten into thin sheets",llm_property +silver,taste,HasProperty,0.8,Distinctive metallic taste when touched by mouth (unique among listed metals),llm_property +silver,color,HasProperty,0.8,Unique whitish-silvery color different from gold's yellow or copper's reddish hue,llm_property +silver,conductivity,HasProperty,0.8,"Exceptionally high electrical conductivity (higher than copper, gold, aluminum)",llm_property +skate,rough_textured_skin,HasProperty,0.8,"Unlike many smooth-skinned fish, skate have a rough, sandpapery skin",llm_property +skate,"flat,_diamond-shaped_body",HasProperty,0.8,"Skate have a unique flattened, diamond-like body shape unlike the elongated or rounded bodies of most other fish",llm_property +skate,no_sharp_teeth,HasProperty,0.8,"Skate have no teeth, unlike many predatory fish like snapper or pike",llm_property +skate,"large,_wing-like_pectoral_fins",HasProperty,0.8,"Skate have large, wing-like pectoral fins used for swimming, which are more prominent than in other fish",llm_property +skate,"strong,_cartilaginous_skeleton",HasProperty,0.8,"Skate have a skeleton made of cartilage, not bone, which is less common than bony fish skeletons",llm_property +skate,lays_egg_cases_('mermaid_purses'),HasProperty,0.8,"Skate reproduce by laying distinctive, leathery egg cases, unlike live-bearing fish",llm_property +skin,elasticity,HasProperty,0.8,"It stretches and returns to shape when touched, unlike rigid materials like bone or rope.",llm_property +skin,breathability,HasProperty,0.8,"It allows air and moisture to pass through (in some forms), unlike wood or rope.",llm_property +skin,sensitivity,HasProperty,0.8,"It contains nerve endings that detect touch, unlike inert materials like fiber or sponge.",llm_property +skin,color_variation,HasProperty,0.8,"Its color can range from transparent to dark, unlike uniform materials like bone or wood.",llm_property +skin,surface_texture,HasProperty,0.8,"It can be smooth, wrinkled, or textured (e.g., scales, fur), unlike flat or uniform materials like rope or fiber.",llm_property +skin,healing_capability,HasProperty,0.8,"It can repair itself when cut, unlike materials like rope or wood that require external fixing.",llm_property +skin,transparency_in_some_forms,HasProperty,0.8,"Some types (e.g., fish skin) are translucent, unlike opaque materials like bone or feather.",llm_property +slug,slimy,HasProperty,0.8,Secretes mucus that makes it feel slippery,llm_property +slug,grayish-brown_color,HasProperty,0.8,"Often has a muted, dull coloration",llm_property +slug,no_discernible_smell,HasProperty,0.8,Usually odorless when raw,llm_property +slug,soft-bodied,HasProperty,0.8,Lacks a hard shell or firm texture like lobster or corn,llm_property +slug,moves_slowly,HasProperty,0.8,"Active when alive, but moves in a distinct, slow manner",llm_property +slug,elongated_shape,HasProperty,0.8,"Body is long and tapered, unlike rounded or segmented foods",llm_property +snail,shell,HasProperty,0.8,"a hard, spiral structure that protects its body",llm_property +snail,slimy_body,HasProperty,0.8,"a moist, mucus-covered body that helps it move",llm_property +snail,slow_movement,HasProperty,0.8,it moves very slowly compared to other animals,llm_property +snail,retractable_eyes,HasProperty,0.8,eyes on stalks that can be pulled back into its head,llm_property +snail,feeds_on_plants,HasProperty,0.8,primarily eats vegetation like leaves and algae,llm_property +snail,small_size,HasProperty,0.8,typically much smaller than most other listed animals,llm_property +snail,herbivore,HasProperty,0.8,its diet consists mainly of plant matter,llm_property +snapper,property,HasProperty,0.8,brief explanation,llm_property +snapper,"brightly_colored_scales,_often_reddish_or_pinkish",HasProperty,0.8,"Unlike the typically drab colors of many other fish like minnows or sardines, snappers are known for their vibrant hues.",llm_property +snapper,"strong,_slightly_concave_jaw",HasProperty,0.8,"Snappers have a distinctive jaw structure that curves slightly inward, setting them apart from fish with straighter jaws.",llm_property +snapper,"large,_sharp_teeth",HasProperty,0.8,"Snappers possess prominent, pointed teeth adapted for catching and holding prey, unlike the smaller or absent teeth in fish like goldfish or crappie.",llm_property +snapper,"tend_to_have_a_more_robust,_stocky_body_shape",HasProperty,0.8,"Snappers generally have a thick, powerful build compared to the slender bodies of eels or the delicate forms of minnows.",llm_property +snapper,often_produce_a_snapping_or_grinding_sound,HasProperty,0.8,"The strong jaw and teeth can create audible sounds, a characteristic not typically noted in other fish.",llm_property +soda,fizzes,HasProperty,0.8,"Soda contains carbon dioxide, creating bubbles and a fizzy sensation when opened or poured, unlike most other listed beverages.",llm_property +soda,sweet_taste,HasProperty,0.8,"Soda typically has a high level of added sugar or artificial sweeteners, giving it a distinctly sweet flavor compared to water, coffee, or tea.",llm_property +soda,carbonated_bubbles,HasProperty,0.8,"The presence of dissolved carbon dioxide creates visible bubbles and a tingling sensation on the tongue, absent in water, juice, milk, wine, or oil.",llm_property +soda,often_fizzy_sound,HasProperty,0.8,"Opening a can or bottle of soda produces a distinct hissing or popping sound due to the release of pressurized gas, unlike water or milk.",llm_property +soda,artificial_flavorings,HasProperty,0.8,"Many sodas rely heavily on artificial flavors (like cola, lemon-lime) that are less common or absent in natural beverages like juice, tea, or coffee.",llm_property +soil,color_variation,HasProperty,0.8,"Soil ranges from dark brown to black, red, yellow, and even white, unlike the more uniform colors of most minerals",llm_property +soil,texture_variation,HasProperty,0.8,"It can feel gritty, fine, sticky, or crumbly, whereas most minerals have a more consistent texture",llm_property +soil,smell,HasProperty,0.8,"It often has an earthy, damp, or fresh smell when turned, unlike inorganic minerals which typically have no distinct smell",llm_property +soil,composition,HasProperty,0.8,"It contains a mix of organic matter (decaying plants/animals) and minerals, unlike purely inorganic minerals",llm_property +soil,particle_size_mix,HasProperty,0.8,"It's made of particles of various sizes (clay, silt, sand), unlike minerals which are usually uniform in crystal structure",llm_property +soot,color_black,HasProperty,0.8,"Soot is typically very dark or black in color due to its carbon content, unlike dust which can be various colors, and other materials like brick, straw, or chalk.",llm_property +soot,texture_powdery_and_fine,HasProperty,0.8,"Soot is made up of fine, powdery particles, unlike larger, coarser materials like brick or straw.",llm_property +soot,smell_acrid_and_smoky,HasProperty,0.8,"Soot often has a strong, acrid, and smoky smell, unlike most other materials which are odorless or have different smells.",llm_property +soot,feel_dry_and_gritty,HasProperty,0.8,"Soot feels dry and gritty when touched, unlike smoother materials like polyester or nylon.",llm_property +soot,appearance_clumpy_when_collected,HasProperty,0.8,"When collected, soot tends to form clumps or dark patches, unlike fine, uniform materials like dust or smooth surfaces like brick.",llm_property +soup,liquid_consistency,HasProperty,0.8,"Soups are primarily liquid, unlike most other listed foods which are solid",llm_property +soup,temperature_range,HasProperty,0.8,"Soups are typically served hot, unlike cold items like cheese or butter",llm_property +soup,broth_or_stock_base,HasProperty,0.8,"Many soups have a savory liquid base, not found in items like desserts or meats",llm_property +soup,often_contains_chunks,HasProperty,0.8,"Unlike smooth foods like butter or cheese, soups often have solid ingredients suspended in liquid",llm_property +soup,spoon-eaten,HasProperty,0.8,"Soups require a spoon for eating, unlike items eaten with utensils like forks or fingers",llm_property +soup,seasoned_flavor,HasProperty,0.8,"Soups often have a complex blend of herbs and spices, more distinct than simple items like lettuce",llm_property +soup,can_be_blended_smooth,HasProperty,0.8,"Unlike items like lobster or turkey, soups can be pureed into a smooth consistency",llm_property +spade,d-shaped_blade,HasProperty,0.8,"flat, wide blade for digging",llm_property +spade,metal_head,HasProperty,0.8,typically made of metal,llm_property +spade,wooden_handle,HasProperty,0.8,"long handle, often wooden",llm_property +spade,pointed_tip,HasProperty,0.8,"sharp, angled tip for breaking soil",llm_property +spade,heavy_weight,HasProperty,0.8,solid construction for digging power,llm_property +spade,straight_edge,HasProperty,0.8,sharp edge for cutting into ground,llm_property +spade,used_for_digging,HasProperty,0.8,primary function is digging soil,llm_property +spaghetti,long_and_thin_strands,HasProperty,0.8,"Unlike most other foods in the list, spaghetti is made of long, thin strands",llm_property +spaghetti,"slender,_round_cross-section",HasProperty,0.8,"Spaghetti has a distinct round, slender profile compared to thicker items",llm_property +spaghetti,"soft,_pliable_texture_when_cooked",HasProperty,0.8,"Unlike hard candies, crusty bread, or tough lobster, cooked spaghetti is soft and easy to bend",llm_property +spaghetti,elastic_when_bent,HasProperty,0.8,"If you bend cooked spaghetti, it will stretch slightly before breaking",llm_property +spaghetti,slightly_slippery_when_cooked,HasProperty,0.8,The surface of cooked spaghetti is smooth and has a slight coating of starch that makes it slippery,llm_property +spaghetti,tastes_primarily_of_wheat_and_salt_(usually),HasProperty,0.8,"Spaghetti's base flavor comes from wheat, unlike sweet candy or savory lobster",llm_property +spaghetti,breaks_relatively_easily_when_dry,HasProperty,0.8,"Unlike hard candies or crusty bread, dry spaghetti is brittle and snaps easily when bent",llm_property +spear,shape,HasProperty,0.8,"long, sharp, pointy end for piercing",llm_property +spear,material,HasProperty,0.8,often made of metal (tip) and wood (shaft),llm_property +spear,size,HasProperty,0.8,typically longer and thinner than most firearms or explosives,llm_property +spear,method_of_use,HasProperty,0.8,"requires physical thrusting or throwing, unlike most firearms",llm_property +spear,weight,HasProperty,0.8,"generally lighter than cannons, tanks, or heavy explosives",llm_property +spear,portability,HasProperty,0.8,can be carried and used by a single person without ammunition,llm_property +spider,8_legs,HasProperty,0.8,"Spiders have eight legs, unlike insects which have six, and most other listed animals which have four or two.",llm_property +spider,two_body_segments,HasProperty,0.8,"Spiders have a cephalothorax and abdomen, distinct from insects which have three segments and other animals with more complex or different body structures.",llm_property +spider,produce_silk,HasProperty,0.8,"Spiders produce silk from spinnerets, a trait not shared by any of the other listed animals.",llm_property +spider,lack_wings,HasProperty,0.8,"Most spiders do not have wings, unlike many insects, bats, and birds.",llm_property +spider,small_size,HasProperty,0.8,Spiders are generally much smaller in size compared to the other listed animals.,llm_property +spider,crawl_or_climb,HasProperty,0.8,"Spiders typically move by crawling or climbing, rather than hopping, walking, flying, or burrowing.",llm_property +spider,hunt_or_ambush_prey,HasProperty,0.8,"Spiders are predators that actively hunt or ambush prey, unlike herbivores or detritivores in the list.",llm_property +spider,multiple_simple_eyes,HasProperty,0.8,"Spiders typically have multiple simple eyes, unlike the complex eyes of insects, bats, birds, and other listed animals.",llm_property +spinach,dark_green_color,HasProperty,0.8,"Spinach is typically a very deep, dark green, often more so than lettuce, cabbage, or celery.",llm_property +spinach,"flat,_oval_leaves",HasProperty,0.8,"Its leaves are broad, flat, and oval or heart-shaped, unlike the round leaves of cabbage or celery.",llm_property +spinach,"tiny,_fine_hairs",HasProperty,0.8,"Spinach leaves often have tiny, almost invisible hairs on the surface, which is not typical for most other listed vegetables.",llm_property +spinach,"mild,_green_taste",HasProperty,0.8,"Spinach has a relatively mild, slightly earthy green flavor, less bitter than kale or more pungent than radish or celery.",llm_property +spinach,"soft,_breakable_texture",HasProperty,0.8,"Fresh spinach leaves are delicate, soft, and easily crumble or break apart, unlike the crisp texture of celery or the starchy texture of potato or jicama.",llm_property +spinach,eel-shaped_root,HasProperty,0.8,"The root of spinach, if left to grow, is often thick and somewhat eel-shaped, unlike the typical root structures of radish or potato.",llm_property +sponge,texture,HasProperty,0.8,"Soft and porous, unlike the fur, feathers, or smooth skin of other animals",llm_property +sponge,movement,HasProperty,0.8,"Stationary, attached to surfaces, unlike the mobile nature of other animals",llm_property +sponge,color,HasProperty,0.8,"Often dull, muted, or camouflaged, unlike the vibrant colors or patterns of other animals",llm_property +sponge,shape,HasProperty,0.8,"Irregular, asymmetrical, unlike the more defined body shapes of other animals",llm_property +sponge,diet,HasProperty,0.8,"Filter-feeds by absorbing nutrients from water, unlike the active hunting or foraging of other animals",llm_property +sponge,water_content,HasProperty,0.8,"High water content due to porous structure, unlike the more solid bodies of other animals",llm_property +sponge,size,HasProperty,0.8,"Typically small and simple in structure, unlike the often larger and more complex bodies of other animals",llm_property +spout,shape,HasProperty,0.8,"Tapered, often cylindrical with a flared orifice",llm_property +spout,material,HasProperty,0.8,"Usually made of metal (brass, copper, iron), sometimes ceramic or plastic",llm_property +spout,function,HasProperty,0.8,Designed to channel or pour liquid or gas,llm_property +spout,sound,HasProperty,0.8,"Can make a distinctive hissing, gurgling, or pouring sound when liquid flows through",llm_property +spout,smell,HasProperty,0.8,Can have a metallic or chemical odor depending on the liquid dispensed,llm_property +sprout,leafy_green_color,HasProperty,0.8,Most sprouts have a distinctively bright green hue from their leaves,llm_property +sprout,small_size,HasProperty,0.8,Sprouts are typically much smaller than many other vegetables when harvested,llm_property +sprout,distinctive_leaf_shape,HasProperty,0.8,"Often have simple, rounded or oval leaves compared to many vegetables",llm_property +sprout,fibrous_texture,HasProperty,0.8,The leaves and stems can feel somewhat stiff and fibrous to the touch,llm_property +sprout,slightly_bitter_taste,HasProperty,0.8,Many sprouts have a noticeable bitterness compared to sweeter vegetables like zucchini,llm_property +sprout,fragile_structure,HasProperty,0.8,Their stems and leaves are often delicate and easily damaged compared to tougher vegetables,llm_property +squash,color,HasProperty,0.8,"often vibrant orange, yellow, or deep green, unlike the typical red, green, or yellow of other fruits",llm_property +squash,shape,HasProperty,0.8,"elongated or round, unlike the round or oblong shapes of most other fruits",llm_property +squash,texture,HasProperty,0.8,"dense and starchy when raw, unlike the juicy or fleshy texture of most other fruits",llm_property +squash,taste,HasProperty,0.8,"subtly sweet and earthy, less intensely sweet than berries or tropical fruits",llm_property +squash,size,HasProperty,0.8,"typically larger, often several inches long, compared to smaller fruits like berries or citrus",llm_property +stable,structure_with_doorways_for_large_animals,HasProperty,0.8,"Stable is designed to house horses or other large animals, often with large openings or doors.",llm_property +stable,large_open_interior_space,HasProperty,0.8,"Unlike many buildings, stables typically have a large, open floor plan suitable for moving animals.",llm_property +stable,walls_made_of_wood_or_metal_panels,HasProperty,0.8,"Stables commonly feature walls made from wood or metal panels, distinguishing them from buildings with conventional brick or concrete walls.",llm_property +stable,flooring_made_of_compaction_materials_or_gravel,HasProperty,0.8,"Stables often have floors made of compacted dirt, sand, or gravel, rather than concrete or tile, to facilitate drainage and animal comfort.",llm_property +stable,smell_of_animals_and_bedding_materials,HasProperty,0.8,"Stables have a distinct odor from animal waste and straw or wood shavings used as bedding, unlike most other buildings.",llm_property +stable,presence_of_water_bowls_and_feed_trays,HasProperty,0.8,"Stables are equipped with specific fixtures like water bowls and feed trays for animals, which are not typical in other building types.",llm_property +stable,roof_structure_designed_for_ventilation,HasProperty,0.8,"Stables often have specialized roof designs, such as vents or openings, to ensure proper air circulation for the animals.",llm_property +starling,iridescent_black_feathers,HasProperty,0.8,"Starlings have a unique shiny, black plumage that changes color in the light, unlike the solid colors or patterns of many other birds",llm_property +starling,pointed_wings,HasProperty,0.8,"Their wings are distinctly pointed, different from the rounded wings of doves or the long wings of falcons",llm_property +starling,"sharp,_short_beak",HasProperty,0.8,"They have a relatively short, sharp beak, unlike the long beaks of toucans or the hooked beaks of hawks",llm_property +starling,aggressive_behavior,HasProperty,0.8,"Starlings are known for being territorial and often aggressive, more so than doves or robins",llm_property +starling,noisy_calls,HasProperty,0.8,"They make a wide variety of loud, harsh calls and mimic sounds, unlike the softer coos of doves or the simple calls of kingfishers",llm_property +starling,social_flocks,HasProperty,0.8,"Starlings often gather in very large, dense flocks, more so than most other birds listed",llm_property +starling,small_to_medium_size,HasProperty,0.8,They are typically smaller than hawks or falcons but larger than many songbirds like jays or robins,llm_property +steak,reddish-brown_color,HasProperty,0.8,"Comes from beef, unlike most other listed foods which are white, green, yellow, or clear",llm_property +steak,sliced_and_stacked_appearance,HasProperty,0.8,"Often cut into distinct slices, unlike many other foods which are solid chunks or liquids",llm_property +steak,leathery_texture_when_cooked,HasProperty,0.8,"Firmer and tougher texture compared to cheese, corn, lettuce, etc.",llm_property +steak,strong_meaty_smell,HasProperty,0.8,"Distinctive aroma of cooked beef, unlike other foods like corn, cereal, or lettuce",llm_property +steak,"rich,_savory_taste",HasProperty,0.8,"Deep umami flavor not found in items like juice, lettuce, or cereal",llm_property +steel,shiny_appearance,HasProperty,0.8,"Often has a lustrous, reflective surface, more so than many other listed metals like pewter or copper.",llm_property +steel,grayish_color,HasProperty,0.8,"Typically has a distinct gray or silvery-gray hue, different from copper's reddish or bronze's golden tones.",llm_property +steel,poor_electrical_conductor,HasProperty,0.8,Less conductive than copper or nickel.,llm_property +steel,non-magnetic_(usually),HasProperty,0.8,"While some steels are magnetic, many common types are not, unlike some metals like nickel or iron (though iron isn't listed, it's a key component).",llm_property +stem,plant_structural_support,HasProperty,0.8,"Stems typically support leaves, flowers, or fruits, unlike roots or shade.",llm_property +stem,contains_vascular_tissue,HasProperty,0.8,"Stems have xylem and phloem for water/nutrient transport, unlike seaweed or bark.",llm_property +stem,typically_rigid_and_firm,HasProperty,0.8,"Stems are usually stiff and strong, unlike vines (flexible) or cattails (often soft).",llm_property +stem,connects_above-ground_parts,HasProperty,0.8,"Stems link roots to leaves/flowers, a role bark or verbena do not play.",llm_property +stem,sometimes_produces_leaves,HasProperty,0.8,"Stems can sprout leaves, whereas flowers and shade do not.",llm_property +stem,may_have_thorns_or_spines,HasProperty,0.8,"Some stems have defensive structures, unlike yew or savanna.",llm_property +stethoscope,hard_rubber_tube,HasProperty,0.8,"Flexible, durable tubes transmit sound",llm_property +stethoscope,metal_diaphragm,HasProperty,0.8,"Flat, circular metal piece to focus sound",llm_property +stethoscope,sound_transmission,HasProperty,0.8,Designed specifically to conduct body sounds,llm_property +stethoscope,soft_ear_tips,HasProperty,0.8,Comfortable rubber pieces that fit in ears,llm_property +stethoscope,heavy_metal_piece,HasProperty,0.8,Heavy base piece rests on patient's body,llm_property +stone,hardness,HasProperty,0.8,stone is generally harder than pebbles or bricks,llm_property +stone,granular_surface,HasProperty,0.8,often has small grains or texture visible to touch,llm_property +stone,uniform_color,HasProperty,0.8,"typically one solid color, unlike gemstones or crystals with varied hues",llm_property +stone,weighty,HasProperty,0.8,feels heavy for its size compared to pebbles or light crystals,llm_property +stone,natural_shape,HasProperty,0.8,usually irregular and not man-made like bricks or concrete,llm_property +stone,coarse_feel,HasProperty,0.8,rougher to the touch than smooth pebbles or polished gemstones,llm_property +stork,long_legs,HasProperty,0.8,Much taller legs used for wading in water compared to most other birds,llm_property +stork,thick_beak,HasProperty,0.8,"Heavy, often slightly downcurved beak, unlike the finer bills of swifts or rails",llm_property +stork,white_and_black_plumage,HasProperty,0.8,"Distinctive large patches of white and black feathers, unlike solid colors of many others",llm_property +stork,no_keel_on_breastbone,HasProperty,0.8,"Unlike many other birds, storks lack a prominent keel for flight muscles",llm_property +stork,waddling_gait,HasProperty,0.8,"Unusual, heavy-footed walk on land, unlike the quick steps of wrens or the upright stance of roadrunners",llm_property +stork,sometimes_holds_beak_pointing_up,HasProperty,0.8,Unique behavior of pointing beak skyward while standing,llm_property +stork,folds_wings_on_rest,HasProperty,0.8,Different from many birds that tuck wings tightly against body when resting,llm_property +stork,some_species_have_red_legs,HasProperty,0.8,"Distinctive bright red coloration on legs, unlike drab legs of many other listed birds",llm_property +straw,lightweight,HasProperty,0.8,It is much lighter than materials like rubber or leather.,llm_property +straw,yellow/colorless,HasProperty,0.8,"It is typically straw-colored or pale, unlike dark materials like leather or black nylon.",llm_property +straw,stiff_but_fragile,HasProperty,0.8,"It is firm to the touch but breaks easily, unlike durable materials like polyester or leather.",llm_property +straw,rough_texture,HasProperty,0.8,"It has a rough, fibrous surface, unlike smooth materials like cotton or rubber.",llm_property +straw,smells_earthy/grassy,HasProperty,0.8,"It has a natural plant smell, unlike synthetic materials like nylon or polyester.",llm_property +straw,bends_easily,HasProperty,0.8,"It can be bent without much force, unlike stiff materials like cork or stiff plastic.",llm_property +strawberry,color,HasProperty,0.8,bright red exterior,llm_property +strawberry,shape,HasProperty,0.8,"heart-shaped or conical, not round",llm_property +strawberry,surface_texture,HasProperty,0.8,"covered in small, pointed seeds (achenes)",llm_property +strawberry,smell,HasProperty,0.8,"distinct, sweet, fragrant aroma",llm_property +strawberry,taste,HasProperty,0.8,uniquely sweet-tart flavor,llm_property +string,thin,HasProperty,0.8,String is typically much thinner than most other materials in the list.,llm_property +string,twisted,HasProperty,0.8,"String is usually made by twisting strands together, unlike most others.",llm_property +string,elastic,HasProperty,0.8,String has a degree of stretchiness that many other materials lack.,llm_property +string,fibrous,HasProperty,0.8,"String is made of fibers, which is not true for materials like ceramic or metal jewelry.",llm_property +string,flexible,HasProperty,0.8,"String can bend easily without breaking, unlike brittle materials like ceramic.",llm_property +string,textured,HasProperty,0.8,"String has a rough, uneven texture from its twisted fibers.",llm_property +string,tangled,HasProperty,0.8,"String can easily become tangled in knots, which is uncommon for materials like paper or ceramic.",llm_property +styrofoam,lightweight,HasProperty,0.8,It's much lighter than most materials in the list due to its air-filled structure,llm_property +styrofoam,porous,HasProperty,0.8,"Its structure is full of small air pockets, unlike dense materials like brick or concrete",llm_property +styrofoam,insulating,HasProperty,0.8,"It's an excellent thermal insulator, keeping things warm or cold far better than metals or dense solids",llm_property +styrofoam,foam-like,HasProperty,0.8,"Has a soft, spongy texture when touched, unlike hard surfaces like brick or bone",llm_property +styrofoam,white/colorless,HasProperty,0.8,"Often appears white or transparent, unlike the dark colors of soot or the natural colors of fur/wool",llm_property +styrofoam,floats,HasProperty,0.8,"Will float on water due to its low density, unlike most of the other materials listed",llm_property +sugar,white_color,HasProperty,0.8,"most is refined white, unlike many other foods",llm_property +sugar,solid_crystals,HasProperty,0.8,"crystalline texture, unlike soft or liquid foods",llm_property +sugar,sweet_taste,HasProperty,0.8,"distinctly sweet, unlike savory or bland foods",llm_property +sugar,powdered_texture_(when_fine),HasProperty,0.8,"can be ground to a fine powder, unlike most other foods",llm_property +sugar,dissolves_easily_in_water,HasProperty,0.8,"easily dissolves, unlike many other solid foods",llm_property +swan,white_plumage,HasProperty,0.8,"Swans are typically pure white, unlike most other birds which have varied colors.",llm_property +swan,long_neck,HasProperty,0.8,"Swans have an exceptionally long and curved neck, distinguishing them from birds with shorter necks.",llm_property +swan,graceful_swimming_movements,HasProperty,0.8,"Swans glide smoothly on water, a distinct swimming style compared to others.",llm_property +swan,large_size,HasProperty,0.8,Swans are generally larger in size than most other birds in this category.,llm_property +swan,honking_call,HasProperty,0.8,"Swans make a loud, distinctive honking sound, unlike the tweets, caws, or songs of other birds.",llm_property +swan,molted_feathers,HasProperty,0.8,"Swans lose all their flight feathers at once, rendering them flightless for a period, unlike most birds which molt gradually.",llm_property +swift,wings,HasProperty,0.8,"extremely long and slender, used for sustained flight",llm_property +swift,flight_pattern,HasProperty,0.8,capable of flying for months without landing,llm_property +swift,body_shape,HasProperty,0.8,"cigar-shaped, small head and short neck",llm_property +swift,behavior,HasProperty,0.8,sleeps and eats while flying,llm_property +swift,call,HasProperty,0.8,"high-pitched, often described as chirping or chattering",llm_property +swift,color,HasProperty,0.8,generally dark brown or black with pale underparts,llm_property +swift,size,HasProperty,0.8,"small to medium-sized, typically 12-17 cm long",llm_property +synthesizer,solid_color,HasProperty,0.8,"Often has a uniform, featureless appearance compared to wood-grained or colorful traditional instruments",llm_property +synthesizer,metal_surface,HasProperty,0.8,"Frequently has metallic or plastic surfaces, unlike wood or ivory",llm_property +synthesizer,keyboard_layout,HasProperty,0.8,"Features a standard piano-style keyboard, unlike harp strings or organ buttons",llm_property +synthesizer,no_string_vibrations,HasProperty,0.8,Does not have visible strings that vibrate when played,llm_property +synthesizer,no_reed_or_bell,HasProperty,0.8,Lacks the reed or bell mechanisms seen in woodwinds and brass,llm_property +synthesizer,no_membrane,HasProperty,0.8,Does not use a stretched skin or membrane like drums,llm_property +synthesizer,visual_indicators,HasProperty,0.8,"Has small screens or lights for display, unlike acoustics",llm_property +synthesizer,sound_modulation,HasProperty,0.8,"Capable of changing tones via knobs and switches, unlike fixed-tone instruments",llm_property +tail,tapered_shape,HasProperty,0.8,"Tails typically narrow toward the end, unlike other body parts",llm_property +tail,fleshy_texture,HasProperty,0.8,"Composed of muscle and skin, softer than claws or bones",llm_property +tail,flicking_movement,HasProperty,0.8,Animals often move tails back and forth rapidly,llm_property +tail,bushy_appearance,HasProperty,0.8,"Many tails have fur or hair, unlike smooth skin or scales",llm_property +tail,flicking_sound,HasProperty,0.8,The movement often produces a distinct clicking or slapping sound,llm_property +tail,caudal_location,HasProperty,0.8,Positioned at the rear end of the animal's body,llm_property +talc,softness,HasProperty,0.8,"It's the softest mineral, easily scratched by fingernails, unlike harder minerals like quartz or crystals.",llm_property +talc,pearly_luster,HasProperty,0.8,"It often has a distinctive pearly or greasy appearance, unlike the dull appearance of soil or the glassy luster of quartz.",llm_property +talc,octahedral_shape,HasProperty,0.8,"While not universal, it can form in characteristic waxy, foliated, or tabular shapes that differ from the crystalline structures of minerals like quartz or potassium.",llm_property +talc,slippery_texture,HasProperty,0.8,"When powdered, it feels very slippery or soapy to the touch, unlike the gritty texture of sand, soil, or quartz.",llm_property +talc,white_color,HasProperty,0.8,"It's often white or colorless, distinguishing it from the various colors found in soils, ores, and other minerals.",llm_property +tanager,red_plumage,HasProperty,0.8,"Bright red or orange hues are common in tanagers, distinguishing them from the varied colors of other birds listed.",llm_property +tanager,conspicuous_wing_beat,HasProperty,0.8,"Tanagers often have a noticeable, energetic wing-beating pattern in flight.",llm_property +tanager,bright_colors,HasProperty,0.8,"Many tanagers exhibit vibrant, multi-colored plumage that is more intense than the colors of most other birds listed.",llm_property +tanager,forest_habitat,HasProperty,0.8,"Tanagers are primarily found in forested environments, unlike some others listed that inhabit different ecosystems (e.g., pelicans near water).",llm_property +tanager,small_size,HasProperty,0.8,"Tanagers are generally small to medium-sized birds, distinguishing them from larger birds like cassowaries.",llm_property +tanager,folivorous_diet,HasProperty,0.8,"Tanagers primarily feed on fruits and insects, differentiating them from others like woodpeckers that eat wood-boring insects or pelicans that eat fish.",llm_property +tanager,distinctive_call,HasProperty,0.8,"Tanagers have a unique, often metallic-sounding call that differs from the calls of other birds listed.",llm_property +tank,small_hole_for_loading_ammunition,HasProperty,0.8,unlike bottles or cans that have larger openings,llm_property +tank,very_large_size,HasProperty,0.8,unlike handguns or small containers,llm_property +tank,thick_metal_shell,HasProperty,0.8,unlike wooden or glass containers,llm_property +tank,loud_bang_when_fired,HasProperty,0.8,unlike silent or quiet objects,llm_property +tank,has_tracks_for_movement,HasProperty,0.8,unlike stationary containers or weapons,llm_property +tank,has_a_cannon_for_firing,HasProperty,0.8,unlike simple containers,llm_property +tank,has_engine_noise,HasProperty,0.8,unlike quiet items,llm_property +tank,armored_and_bulletproof,HasProperty,0.8,unlike fragile containers,llm_property +tar,dark_black_color,HasProperty,0.8,"Tar is typically very dark black, unlike most other materials in the list which are lighter or colored.",llm_property +tar,"smooth,_sticky_surface",HasProperty,0.8,"Tar feels slick and clings to touch, unlike the dry, rough, or smooth surfaces of other materials.",llm_property +tar,strong_odour,HasProperty,0.8,"Tar has a very distinct, pungent petroleum smell, unlike most other materials which are nearly odorless.",llm_property +tar,soft_&_flexible,HasProperty,0.8,"Tar can be easily molded and deformed at room temperature, unlike the rigid or brittle nature of many others.",llm_property +tar,adheres_to_surfaces,HasProperty,0.8,"Tar sticks strongly to whatever it touches, unlike most other materials which are easily removable.",llm_property +tar,heavy_weight,HasProperty,0.8,"For its volume, tar feels noticeably heavy, unlike lightweight materials like cork or string.",llm_property +tar,liquid_or_semi-liquid_at_warm_temperatures,HasProperty,0.8,"Unlike most solids, tar can become fluid when heated, allowing it to flow.",llm_property +tea,color,HasProperty,0.8,"typically amber to reddish-brown, distinct from clear (water), opaque (milk), or darker (coffee, wine)",llm_property +tea,aroma,HasProperty,0.8,"distinct floral, grassy, or earthy scent, unlike the yeasty (beer), fruity (juice), creamy (milk), or roasted (coffee) aromas",llm_property +tea,flavor,HasProperty,0.8,"often astringent or tannic taste, less sweet than juice/soda, less bitter than coffee, and more complex than plain water",llm_property +tea,preparation,HasProperty,0.8,"made by steeping dried leaves, unlike brewing (coffee), fermenting (beer/wine), or simple mixing (soda/water)",llm_property +tea,cup/serving_vessel,HasProperty,0.8,"often served in a delicate china cup, less common for other beverages like beer (mug) or soda (can/bottle)",llm_property +teacup,size,HasProperty,0.8,"usually small, designed for holding a single serving of liquid",llm_property +teacup,shape,HasProperty,0.8,typically has a rounded bowl and a handle,llm_property +teacup,handle,HasProperty,0.8,has a loop-shaped protrusion for holding,llm_property +teacup,material,HasProperty,0.8,"often ceramic or porcelain, giving a smooth, cool feel",llm_property +teacup,decoration,HasProperty,0.8,frequently decorated with patterns or designs,llm_property +teacup,weight,HasProperty,0.8,"relatively light, especially when made of ceramic",llm_property +teacup,capacity,HasProperty,0.8,"holds a small amount of liquid, typically 6-12 ounces",llm_property +teacup,usage_context,HasProperty,0.8,associated with serving or drinking tea,llm_property +tern,wingspan,HasProperty,0.8,"Terns have a relatively long wingspan compared to many other small to medium-sized birds, enabling agile flight and long-distance migration.",llm_property +tern,white_underbelly,HasProperty,0.8,"Terns typically have a distinctively white underside, which sets them apart from birds with more colorful or patterned bellies.",llm_property +tern,pointed_wings,HasProperty,0.8,"Terns have narrow, pointed wings that contribute to their distinct flight style, different from the broader wings of many other birds.",llm_property +tern,graceful_flight,HasProperty,0.8,"Terns fly with a buoyant, graceful, and often hovering style, which is less common among other birds in this category.",llm_property +tern,"long,_forked_tail",HasProperty,0.8,"Terns usually have a long tail that is deeply forked, a feature not as common in the listed birds.",llm_property +tern,"sharp,_narrow_bill",HasProperty,0.8,"Terns possess a sharp, narrow, and often black or dark bill, unlike the thicker or differently shaped bills of many other birds.",llm_property +theater,large_open_interior,HasProperty,0.8,"unlike silo, barn, coop, or stable which have enclosed spaces",llm_property +theater,rows_of_seating,HasProperty,0.8,"not found in silos, duplexes, barns, coops, or workshops",llm_property +theater,stage_at_one_end,HasProperty,0.8,"distinguishes it from schools, malls, galleries, or workshops which lack a dedicated performance area",llm_property +theater,often_decorated_with_lights_and_signs,HasProperty,0.8,"unlike simple structures like silos, barns, or coops",llm_property +thimble,small_size,HasProperty,0.8,much smaller than most other tools,llm_property +thimble,metal_material,HasProperty,0.8,"typically made of metal, unlike many other tools",llm_property +thimble,pointed_tip,HasProperty,0.8,has a distinct pointed end for pushing needle,llm_property +thimble,hollow_shape,HasProperty,0.8,often has a dome or cup shape,llm_property +thimble,worn_on_finger,HasProperty,0.8,designed to be worn on a finger (unusual for tools),llm_property +thimble,glowing_reflection,HasProperty,0.8,metal surface can catch light and appear to glow,llm_property +thimble,solid_weight,HasProperty,0.8,feels heavy for its small size due to dense material,llm_property +thimble,no_moving_parts,HasProperty,0.8,unlike many other tools,llm_property +thorn,sharp_point,HasProperty,0.8,thorns have a distinct sharp point used for defense,llm_property +thorn,hard_texture,HasProperty,0.8,"thorns are rigid and woody, unlike softer plant parts",llm_property +thorn,dark_color,HasProperty,0.8,"often brown or black, unlike the green of leaves or stems",llm_property +thorn,sticks_out,HasProperty,0.8,thorns project outward from the plant surface,llm_property +thorn,small_size,HasProperty,0.8,thorns are typically small compared to leaves or stems,llm_property +thrasher,brown_plumage,HasProperty,0.8,"Thrashers typically have brown or grayish-brown feathers, distinguishing them from the more colorful or distinctively patterned birds like jays, lorikeets, or barbet.",llm_property +thrasher,"long,_downward-curved_bill",HasProperty,0.8,"Thrashers have a long, slightly decurved bill used for probing and ""thrashing"" the ground for insects, unlike the straight bills of doves or chickadees.",llm_property +thrasher,ground-foraging_behavior,HasProperty,0.8,"Thrashers spend much time on the ground, scratching and digging for food, unlike birds like oxpeckers (which feed on large mammals) or cotingas (which often forage in trees).",llm_property +thrasher,twisted_tail_posture,HasProperty,0.8,"Thrashers often hold their tail slightly cocked or twisted while moving, a distinctive posture not common in birds like grebes or starlings.",llm_property +thrasher,"distinctive_""thrashing""_sound",HasProperty,0.8,"Thrashers make a characteristic sound by rapidly striking their bills against objects or the ground, unlike the calls of doves or chickadees.",llm_property +thrush,brown_body,HasProperty,0.8,"Thrushes typically have brown or olive-brown upperparts, distinguishing them from brighter or more colorful birds like peacocks or lovebirds.",llm_property +thrush,spotted_breast,HasProperty,0.8,"Many thrush species have distinct spots on their breast, unlike most other birds in the list.",llm_property +thrush,musical_call,HasProperty,0.8,"Thrushes are known for their clear, often complex songs, setting them apart from birds with simpler or louder calls.",llm_property +thrush,fleshy_legs,HasProperty,0.8,"Thrushes often have distinctive fleshy or bright legs (like the American Robin), unlike the typical bird leg.",llm_property +thrush,ground-feeder,HasProperty,0.8,"Thrushes often forage on the ground for insects and worms, different from aerial feeders like hummingbirds or seed-eaters like buntings.",llm_property +thrush,single-pair_breeding,HasProperty,0.8,"Thrushes typically form monogamous pairs for breeding, unlike more social or polygamous birds in the list.",llm_property +thyme,small_green_leaves,HasProperty,0.8,"Thyme has tiny, ovate leaves unlike the broader leaves of parsley or basil.",llm_property +thyme,gentle_aroma,HasProperty,0.8,"It has a subtle, earthy fragrance, less pungent than chili or cumin.",llm_property +thyme,herbal_flavor_profile,HasProperty,0.8,"Thyme offers a mild, slightly minty taste, distinct from the spicy notes of chili or ginger.",llm_property +thyme,woody_stem,HasProperty,0.8,"Its stems are thin and woody, unlike the soft stems of many other herbs.",llm_property +thyme,fine_texture,HasProperty,0.8,"The leaves are very small and delicate, unlike the larger, flatter leaves of parsley.",llm_property +tie,colorful_patterns,HasProperty,0.8,"Often has distinct patterns or prints, unlike simple underwear or solid-colored jackets",llm_property +tie,thin_strip_of_fabric,HasProperty,0.8,"Narrow and elongated shape, unlike bulky underwear or larger garments like dresses",llm_property +tie,soft_fabric_texture,HasProperty,0.8,Made of materials like silk or cotton that feel soft to the touch,llm_property +tie,worn_around_neck,HasProperty,0.8,"Specifically designed to be tied around the neck, unlike underwear worn below",llm_property +tie,formal_appearance,HasProperty,0.8,Typically associated with formal or business attire,llm_property +tiger,striped_fur,HasProperty,0.8,Has distinctive orange and black stripes,llm_property +tiger,muscular_body,HasProperty,0.8,Has a powerful and strong physique,llm_property +tiger,roaring_sound,HasProperty,0.8,"Makes a loud, deep roar",llm_property +tiger,ambush_hunter,HasProperty,0.8,Hides and attacks prey stealthily,llm_property +tiger,carnivore_diet,HasProperty,0.8,Eats only meat,llm_property +tiger,large_claws,HasProperty,0.8,"Has sharp, retractable claws for hunting",llm_property +tiger,territorial_behavior,HasProperty,0.8,Marks and defends a large territory,llm_property +tiger,nocturnal_activity,HasProperty,0.8,Often hunts at night,llm_property +tin,property,HasProperty,0.8,brief explanation,llm_property +tin,low_melting_point,HasProperty,0.8,"melts at 232°C (449°F), much lower than most other listed metals",llm_property +tin,silvery-white_color,HasProperty,0.8,"has a distinct pale, lustrous color compared to others like copper (reddish) or nickel (brighter white)",llm_property +tin,softness,HasProperty,0.8,"is relatively soft and easily scratched, unlike harder metals like tungsten or steel",llm_property +tin,distinctive_ringing_sound_when_struck,HasProperty,0.8,"produces a clear, high-pitched tone unlike the duller sound of lead or the more resonant sound of steel",llm_property +tin,often_used_for_coating_other_metals,HasProperty,0.8,"commonly applied as a protective layer, especially for steel (tinplate), which is less common for other soft metals like aluminum or magnesium",llm_property +tinamou,ground-dwelling,HasProperty,0.8,"Unlike many other birds, tinamous are primarily terrestrial, spending most of their time on the ground.",llm_property +tinamou,camouflaged_feathers,HasProperty,0.8,"Tinamous have mottled brown, gray, and black feathers that blend into forest floors, unlike the bright or ornate plumage of many other listed birds.",llm_property +tinamou,nocturnal_habits,HasProperty,0.8,"Many tinamous are crepuscular or nocturnal, unlike the predominantly diurnal or diurnal-like activity patterns of most other listed birds.",llm_property +tinamou,quiet_calls,HasProperty,0.8,"Tinamous produce low, deep calls, often described as booming or humming, unlike the loud songs or calls of many other listed birds.",llm_property +tinamou,smaller_body_size,HasProperty,0.8,"Tinamous are generally smaller than birds like the rhea, and more compact than others like the peacock or petrel.",llm_property +tinamou,"short,_curved_beak",HasProperty,0.8,"Their beaks are short and slightly downward-curving, distinct from the long, straight, or brightly colored beaks of many other listed birds.",llm_property +titanium,dark_gray_color,HasProperty,0.8,"Titanium has a distinct dark gray color, unlike the silvery appearance of steel, tin, or silver, or the yellow/gold of gold, or the light gray of magnesium.",llm_property +titanium,strong_but_light_weight,HasProperty,0.8,"Titanium is exceptionally strong for its low density, much lighter than steel or tungsten despite being equally strong or stronger.",llm_property +titanium,highly_resistant_to_corrosion,HasProperty,0.8,"Unlike steel, iron, or magnesium, titanium does not rust or corrode easily when exposed to air or water.",llm_property +titanium,shiny_surface,HasProperty,0.8,"When polished, titanium has a bright, lustrous surface, similar to other metals, but its color sets it apart from others.",llm_property +titanium,high_melting_point,HasProperty,0.8,"Titanium has a very high melting point (around 1,668°C), much higher than tin or pewter, and comparable to tungsten.",llm_property +tomato,color,HasProperty,0.8,"typically bright red when ripe, unlike most other listed fruits",llm_property +tomato,shape,HasProperty,0.8,"mostly spherical or slightly oblong, more uniform than many other fruits",llm_property +tomato,texture_(touch),HasProperty,0.8,"smooth, slightly soft skin that gives under pressure",llm_property +tomato,texture_(taste),HasProperty,0.8,"juicy with a distinct fleshy, watery texture inside",llm_property +tomato,taste,HasProperty,0.8,"unique savory, slightly acidic ""umami"" flavor not common in other fruits",llm_property +tomato,smell,HasProperty,0.8,"subtle, earthy aroma, not as sweet or strong as many other fruits",llm_property +tomato,weight,HasProperty,0.8,feels relatively dense for its size compared to many other fruits,llm_property +tomato,juice_color,HasProperty,0.8,"red juice inside, different from the clear or pale juice of many other fruits",llm_property +toolbox,metal,HasProperty,0.8,"Often made of metal like steel or aluminum, unlike many other items in the list which are made of plastic, wood, or other materials",llm_property +toolbox,square_shape,HasProperty,0.8,"Typically rectangular or square in shape, unlike round or irregularly shaped items like oilcans, pots, or tanks",llm_property +toolbox,lid,HasProperty,0.8,"Has a separate lid that can be opened and closed, unlike many of the other items which are open or lack a lid",llm_property +toolbox,durable_construction,HasProperty,0.8,"Built to be robust and withstand heavy use, unlike fragile items like lanterns or lighters",llm_property +toolbox,contains_multiple_tools,HasProperty,0.8,"Designed to hold various tools, unlike single-purpose items like saws, triangles, or oilcans",llm_property +toolbox,heavyweight,HasProperty,0.8,"Often quite heavy due to metal construction and tool contents, unlike lightweight items like lanterns or lighters",llm_property +toolbox,has_handles,HasProperty,0.8,"Usually equipped with sturdy handles for carrying, unlike items without handles or with minimal means of carrying",llm_property +tortoise,shell,HasProperty,0.8,"hard, protective outer covering",llm_property +tortoise,slow_movement,HasProperty,0.8,moves very slowly on land,llm_property +tortoise,four_short_legs,HasProperty,0.8,stout legs used for walking,llm_property +tortoise,large_head,HasProperty,0.8,relatively large head compared to body size,llm_property +tortoise,flat_footed,HasProperty,0.8,feet adapted for walking on land,llm_property +tortoise,long_life,HasProperty,0.8,lives for many decades,llm_property +tortoise,humid_breathing,HasProperty,0.8,visible exhalation in cold weather,llm_property +tortoise,burrowing_behavior,HasProperty,0.8,digs burrows for shelter,llm_property +toucan,beak_length,HasProperty,0.8,Its beak is exceptionally long compared to other birds.,llm_property +toucan,beak_color,HasProperty,0.8,Often has bright orange or red coloring on its beak.,llm_property +toucan,plumage_color,HasProperty,0.8,Distinctive patch of bright red feathers on its lower back.,llm_property +toucan,feet_type,HasProperty,0.8,"Has zygodactyl feet (two toes forward, two backward).",llm_property +toucan,noise_type,HasProperty,0.8,"Makes a harsh, frog-like croaking sound.",llm_property +toucan,body_size,HasProperty,0.8,Medium-sized bird with a compact body.,llm_property +toucan,flight_style,HasProperty,0.8,"Flies in a rather undulating, bouncy pattern.",llm_property +toucan,neck_furrow,HasProperty,0.8,Has a noticeable furrow or groove along its neck.,llm_property +tractor,big_wheels,HasProperty,0.8,much larger wheels than most vehicles,llm_property +tractor,red_color,HasProperty,0.8,"often painted red, distinguishing from other vehicles",llm_property +tractor,powerful_engine_sound,HasProperty,0.8,"louder, deeper engine noise than smaller vehicles",llm_property +tractor,sturdy_build,HasProperty,0.8,"heavy, robust construction not seen in lighter vehicles",llm_property +tractor,farm_setting,HasProperty,0.8,typically used in rural/agricultural environments,llm_property +tractor,pulls_heavy_loads,HasProperty,0.8,designed to tow or pull large implements,llm_property +tractor,nose-heavy_shape,HasProperty,0.8,front-heavy design for pulling power,llm_property +tree,trunk,HasProperty,0.8,"thick, woody stem supporting the plant",llm_property +tree,branches,HasProperty,0.8,woody extensions from the trunk carrying leaves,llm_property +tree,tall_growth,HasProperty,0.8,significantly taller than other plants in the list,llm_property +tree,longevity,HasProperty,0.8,"lives for many years, unlike annuals like grass or watermelon",llm_property +tree,leaves,HasProperty,0.8,typically larger and arranged differently than those of grass or flowers,llm_property +tree,root_system,HasProperty,0.8,extensive underground system anchoring the plant,llm_property +tree,woody_texture,HasProperty,0.8,"hard, fibrous material making up its stem and branches",llm_property +tree,canopy_shape,HasProperty,0.8,distinctive overhead shape formed by branches and leaves,llm_property +triangle,shape:_triangular,HasProperty,0.8,"Unlike most other instruments/tools, which are roughly circular, rectangular, or irregularly shaped, a triangle is explicitly a three-sided shape.",llm_property +triangle,metal_surface:_shiny,HasProperty,0.8,"Its surface is typically made of polished metal, giving it a distinct shiny appearance compared to wood, plastic, or rubber of many other tools.",llm_property +triangle,"sound:_clear,_high-pitched_ringing",HasProperty,0.8,"Striking it produces a unique, clear, sustained high-pitched ringing sound, unlike the percussion, wind, or thermal sounds made by others.",llm_property +triangle,"size:_small,_hand-held",HasProperty,0.8,"It's a small, lightweight instrument, unlike larger items like a barometer or wheel.",llm_property +triangle,material:_metal,HasProperty,0.8,"Typically made of metal, distinguishing it from wood (spout, thimble), plastic (lighter), or mixed materials found in others.",llm_property +triangle,function:_musical_instrument,HasProperty,0.8,"Its primary function is as a percussion instrument in music, unlike the practical, measurement, or utility functions of the other tools.",llm_property +trigger,sharp_edge,HasProperty,0.8,Allows it to initiate a mechanism when pressed,llm_property +trigger,metallic_surface,HasProperty,0.8,"Common material for triggers, distinct from other tool/weapon parts",llm_property +trigger,small_size,HasProperty,0.8,Typically small compared to other components in the list,llm_property +trigger,curved_shape,HasProperty,0.8,Often has a slight curve to fit fingers comfortably,llm_property +trigger,located_on_a_weapon/tool,HasProperty,0.8,"Specifically found on devices like handguns, not standalone items",llm_property +trigger,used_to_release_a_mechanism,HasProperty,0.8,Its primary function is to activate something else,llm_property +trigger,located_where_it_can_be_easily_pressed,HasProperty,0.8,Positioned for convenient operation by the user,llm_property +trough,long_and_narrow_shape,HasProperty,0.8,Typically much longer and narrower than other containers like buckets or jars,llm_property +trough,open_top,HasProperty,0.8,"Often lacks a lid, unlike many other listed containers",llm_property +trough,used_outdoors_commonly,HasProperty,0.8,Frequently found outdoors for feeding animals or holding water,llm_property +trough,built_for_large_quantities,HasProperty,0.8,Designed to hold or dispense large volumes of liquid or feed,llm_property +trough,usually_made_of_metal_or_plastic,HasProperty,0.8,"Common materials differ from materials like wood (pail) or glass (decanter, jar)",llm_property +trough,flat_bottom,HasProperty,0.8,Generally has a flat bottom rather than a curved or tapered base,llm_property +trout,bony_flesh,HasProperty,0.8,"Trout are known for having firmer, more bony flesh compared to many other fish like flounder or sardine",llm_property +trout,colorful_spots,HasProperty,0.8,"Trout have distinctive, colorful spots (often red or pink) on their sides, unlike the plain or differently patterned fish",llm_property +trout,distinctive_shape,HasProperty,0.8,"Trout have an elongated, streamlined shape with a slightly rounded body, different from the flat body of a flounder or the eel's snake-like form",llm_property +trout,freshwater_preference,HasProperty,0.8,"Most trout species live in freshwater rivers and lakes, unlike saltwater fish like grouper or skate",llm_property +trout,rainbow_coloration,HasProperty,0.8,"Some trout varieties (like rainbow trout) have a vibrant, multi-colored appearance with a pink stripe down the side",llm_property +trowel,flat_blade,HasProperty,0.8,"unlike saws, pick, and awls which have sharp edges or points, trowels have a flat, often rounded or squared-off blade",llm_property +trowel,small_size,HasProperty,0.8,"generally smaller than spades or picks, designed for fine work",llm_property +trowel,single-ended_tool,HasProperty,0.8,"unlike level, vise, or hacksaw which often have multiple working parts or functions, a trowel is usually single-ended",llm_property +trowel,poor_cutting_ability,HasProperty,0.8,"lacks the sharpness for cutting materials like saws, awls, or nails",llm_property +trowel,frequently_curved_blade,HasProperty,0.8,often has a curved or rounded shape to facilitate spreading or scooping materials,llm_property +trowel,material-shaping_function,HasProperty,0.8,"designed primarily for applying or shaping soft materials like cement, plaster, or soil",llm_property +truck,size,HasProperty,0.8,"Large, usually bigger than cars, vans, or mopseds",llm_property +truck,shape,HasProperty,0.8,"Boxy or rectangular shape, often with a separate cab and cargo area",llm_property +truck,wheels,HasProperty,0.8,"Usually has 4 or more wheels, often larger than those on cars or mopeds",llm_property +truck,noise,HasProperty,0.8,Loud engine and often has a distinct rumbling sound,llm_property +truck,colors,HasProperty,0.8,"Often painted in corporate colors or white/gray, less varied than cars",llm_property +truck,appearance,HasProperty,0.8,Has a distinct front grille and sometimes a raised bumper,llm_property +truck,load,HasProperty,0.8,"Designed to carry heavy goods or equipment, unlike most other vehicles listed",llm_property +trumpet,made_of_brass,HasProperty,0.8,"Trumpets are typically made of brass, while others are wood, skin, or plastic",llm_property +trumpet,long_tube_shape,HasProperty,0.8,"Has a long cylindrical tube with flared bell, unlike compact instruments",llm_property +trumpet,three_valves,HasProperty,0.8,Has three valve mechanisms for changing pitch (unique arrangement among this list),llm_property +trumpet,"loud,_bright_sound",HasProperty,0.8,"Produces a loud, clear, bright sound compared to softer instruments",llm_property +trumpet,bell-shaped_end,HasProperty,0.8,Features a large flared bell at one end for amplification,llm_property +trumpet,held_in_hands,HasProperty,0.8,"Played by holding with both hands, unlike drums or triangles",llm_property +trumpet,metal_mouthpiece,HasProperty,0.8,Uses a cup-shaped metal mouthpiece for playing (distinct from woodwinds),llm_property +tub,"large,_open-top_container",HasProperty,0.8,"Unlike mugs or flasks, a tub is designed to hold a lot of liquid or items with easy access.",llm_property +tub,often_made_of_plastic_or_metal,HasProperty,0.8,"While mugs might be ceramic and boxes cardboard, tubs are typically durable plastic or metal.",llm_property +tub,"low,_wide_shape",HasProperty,0.8,"Unlike vases or flasks, which are often tall and narrow, tubs have a low, broad design.",llm_property +tub,used_for_holding_liquids_or_soaking_items,HasProperty,0.8,Distinguishes it from toolboxes (holding tools) or kettles (heating water).,llm_property +tub,can_be_found_in_bathrooms_or_kitchens,HasProperty,0.8,Contextual use differs from garden vases or workshop toolboxes.,llm_property +tub,some_have_handles_or_lids,HasProperty,0.8,"Unlike simple boxes, many tubs have features for portability or sealing contents.",llm_property +tulip,property,HasProperty,0.8,cup-shaped flower head,llm_property +tungsten,hardness,HasProperty,0.8,"extremely hard, scratches most other metals easily",llm_property +tungsten,high_melting_point,HasProperty,0.8,"highest melting point of all metals, far exceeds others in heat resistance",llm_property +tungsten,dark_gray_color,HasProperty,0.8,"distinctive dark metallic color, unlike the brighter hues of gold, copper, or nickel",llm_property +tungsten,density,HasProperty,0.8,"very dense, heavier than most common metals like aluminum or magnesium",llm_property +tungsten,solidity_at_room_temp,HasProperty,0.8,"remains solid even at very high temperatures, unlike lead or tin which can soften",llm_property +turkey,shape,HasProperty,0.8,"often carved into distinct slices or pieces, not typically a uniform shape like a burger patty or cereal",llm_property +turkey,texture,HasProperty,0.8,"can be relatively dry compared to other meats, especially if overcooked",llm_property +turkey,flavor,HasProperty,0.8,a distinct savory taste that's less gamey than duck or more intense than chicken,llm_property +turkey,smell,HasProperty,0.8,"when cooked, has a unique aroma (roasted, smoky) that's less intense than red meat or fish",llm_property +turkey,color,HasProperty,0.8,"typically light to medium brown when cooked, unlike the bright colors of candy or pickles",llm_property +turkey,meat_type,HasProperty,0.8,"poultry meat, specifically from a larger bird than chicken",llm_property +turmeric,yellow_powder,HasProperty,0.8,Its bright yellow color is highly distinctive among the listed spices,llm_property +turmeric,mild_bitter_taste,HasProperty,0.8,Has a slightly bitter taste that differs from the sweet or pungent flavors of others,llm_property +turmeric,earthy_aroma,HasProperty,0.8,A unique earthy aroma that's less floral or pungent than many others,llm_property +turmeric,orange_tint_in_liquid,HasProperty,0.8,"When mixed with liquid, it creates an unmistakable orange hue",llm_property +turmeric,aroma_not_hot,HasProperty,0.8,Its aroma is aromatic without being intensely pungent or spicy like pepper or ginger,llm_property +turmeric,fine_texture,HasProperty,0.8,Often ground into a fine powder compared to the coarser textures of some spices,llm_property +turmeric,bitter_aftertaste,HasProperty,0.8,Leaves a distinctive bitter aftertaste that's less common in the listed spices,llm_property +turtle,shell,HasProperty,0.8,"Hard, bony covering on its back",llm_property +turtle,slow_movement,HasProperty,0.8,Moves at a very slow pace,llm_property +turtle,four_legs,HasProperty,0.8,Has four limbs used for walking,llm_property +turtle,head_retraction,HasProperty,0.8,Can pull its head inside its shell,llm_property +turtle,no_hair,HasProperty,0.8,"Skin is scaly, not furry",llm_property +turtle,swimming_ability,HasProperty,0.8,Can swim well in water,llm_property +turtle,low_profile,HasProperty,0.8,Body is low to the ground due to shell,llm_property +ukulele,round_body_shape,HasProperty,0.8,"Typically has a figure-eight shape, unlike many others",llm_property +ukulele,small_size,HasProperty,0.8,Generally much smaller than most other instruments in the list,llm_property +ukulele,light_weight,HasProperty,0.8,Easily portable due to its small size,llm_property +ukulele,nylon_strings,HasProperty,0.8,"Usually has nylon strings, different from metal or gut strings on many others",llm_property +ukulele,harmonious_sound,HasProperty,0.8,"Produces a bright, cheerful, and relatively simple sound",llm_property +ukulele,finger-picked_playing,HasProperty,0.8,"Often played with fingerpicking techniques, unlike many others",llm_property +ukulele,light_color_often,HasProperty,0.8,Frequently comes in light-colored wood like koa or spruce,llm_property +underwear,colorful,HasProperty,0.8,"Often brightly colored or patterned, unlike the more neutral tones of many other clothing items",llm_property +underwear,soft_material,HasProperty,0.8,"Made from comfortable, smooth fabrics like cotton or silk, unlike the stiffer materials of ties or jackets",llm_property +underwear,worn_close_to_skin,HasProperty,0.8,"Designed to be worn directly against the body, unlike outerwear items",llm_property +underwear,sleevless_&_legless,HasProperty,0.8,"Typically lacks sleeves and leg coverings, unlike most other clothing items",llm_property +underwear,fits_tightly,HasProperty,0.8,"Usually fits snugly against the body, unlike looser garments like dresses or scarves",llm_property +unicycle,one_wheel,HasProperty,0.8,"Unlike most vehicles which have two or more wheels, a unicycle has only one wheel.",llm_property +unicycle,human-powered,HasProperty,0.8,"Driven by rider's pedaling, not an engine like most listed vehicles.",llm_property +unicycle,upright_rider,HasProperty,0.8,"Rider sits directly above the single wheel, unlike vehicles where riders sit beside or behind wheels.",llm_property +unicycle,small_size,HasProperty,0.8,Significantly smaller and lighter than most vehicles in the list.,llm_property +unicycle,poor_stability,HasProperty,0.8,Inherently less stable than vehicles with multiple wheels.,llm_property +unicycle,requires_balance,HasProperty,0.8,"Operating requires significant balance skills, unlike most vehicles.",llm_property +unicycle,elevated_seat,HasProperty,0.8,The seat is positioned high above the ground relative to other vehicles.,llm_property +van,size,HasProperty,0.8,"Vans are typically larger than unicycles, moped, canoes, and kayaks, but smaller than trucks, ships, and airplanes.",llm_property +van,shape,HasProperty,0.8,"Vans usually have a boxy, rectangular shape, distinct from the sleek shape of an airplane, the flat shape of a ship, or the round shape of a canoe or kayak.",llm_property +van,motor_sound,HasProperty,0.8,"Vans have a distinct engine sound, often a lower-pitched rumble, different from the high-pitched whine of an airplane or the quieter sound of a moped.",llm_property +van,door_configuration,HasProperty,0.8,"Vans often have sliding side doors or a large rear door, unlike most other vehicles which have conventional hinged doors.",llm_property +van,cargo_space,HasProperty,0.8,"Vans are designed with significant cargo space, more than a coach or moped, but typically less than a truck.",llm_property +van,utility_design,HasProperty,0.8,"Vans are built for utility and transporting goods or passengers, different from recreational vehicles like canoes, kayaks, or sailboats.",llm_property +vase,shape:_often_tall_and_slender_with_a_wide_opening,HasProperty,0.8,Unlike most containers which are either short or cylindrical,llm_property +vase,decorative_design:_frequently_ornate_or_decorated,HasProperty,0.8,Many other containers are plain or functional,llm_property +vase,"material:_often_made_of_ceramic,_glass,_or_porcelain",HasProperty,0.8,Other containers are more commonly metal or wood,llm_property +vase,purpose:_used_for_holding_flowers,HasProperty,0.8,Unique function compared to other containers which hold liquids or solids,llm_property +vase,stem_or_foot:_may_have_a_distinct_base_or_stem,HasProperty,0.8,Most containers sit directly on a flat bottom,llm_property +vase,transparency:_often_made_of_clear_or_translucent_glass,HasProperty,0.8,Many containers are opaque,llm_property +vase,hollow_interior:_designed_to_hold_items_(like_flowers)_but_not_for_transport,HasProperty,0.8,Unlike buckets or pails meant for carrying,llm_property +vegetable,edible_plant_origin,HasProperty,0.8,"Vegetables come from plants, unlike animal-derived foods like lobster or turkey, dairy like cheese, or processed foods like chips or burger",llm_property +vegetable,often_green_in_color,HasProperty,0.8,"Many vegetables (like lettuce, broccoli) are green, unlike most others in the list",llm_property +vegetable,can_be_eaten_raw_or_cooked,HasProperty,0.8,"Unlike sugar, which is only used as an ingredient, or turkey, which is usually cooked",llm_property +vegetable,"often_has_a_fresh,_earthy_smell",HasProperty,0.8,"Smells differently from processed foods (chips, burger) or animal products (lobster, turkey)",llm_property +vegetable,typically_has_a_crunchy_or_crisp_texture_when_fresh,HasProperty,0.8,"Unlike soft items like cheese, spaghetti, or turkey, or hard items like sugar or chips",llm_property +verbena,"small,_fragrant_flowers",HasProperty,0.8,"verbena has small, often brightly colored flowers that are distinctively aromatic, unlike most others in the list which have larger or less fragrant flowers (or no flowers)",llm_property +verbena,"fresh,_citrusy_aroma",HasProperty,0.8,"verbena gives off a fresh, lemony scent when leaves are crushed, a strong fragrance not typical of plants like juniper or lettuce",llm_property +verbena,"delicate,_toothed_leaves",HasProperty,0.8,"its leaves are usually small, oval-shaped with fine teeth along the edges, unlike the broader leaves of cabbage or moss",llm_property +verbena,spreading_growth_habit,HasProperty,0.8,"verbena often grows in low mats or spreads outwards, unlike the upright growth of juniper or the loose structure of moss",llm_property +verbena,bright_green_foliage,HasProperty,0.8,"the leaves are typically a vibrant, medium green, more vivid than the darker green of juniper or the light green of lettuce",llm_property +vine,long_and_thin_stem,HasProperty,0.8,"unlike many plants that grow upright or in clumps, vines typically have a slender stem that grows lengthwise",llm_property +vine,twisting_growth_habit,HasProperty,0.8,"vines often coil or twist around structures or other plants for support, unlike most other plants",llm_property +vine,ability_to_climb,HasProperty,0.8,"vines are known for growing upwards by wrapping around objects, which many other plants don't do",llm_property +vine,leafy_foliage_along_stem,HasProperty,0.8,"vines usually have leaves distributed along their entire length, not just at the top or base like some other plants",llm_property +vine,flexible_stem,HasProperty,0.8,"unlike many plants with rigid or woody stems, vine stems are generally flexible and pliable",llm_property +viola,bowed_wooden_strings,HasProperty,0.8,"Unlike plucked or percussion instruments, viola strings are played with a bow",llm_property +viola,medium_size_stringed_instrument,HasProperty,0.8,"Smaller than cello/bass, larger than violin/ukulele",llm_property +viola,mellow_mid-range_tone,HasProperty,0.8,"Has a richer, warmer sound compared to violin or higher-pitched instruments",llm_property +viola,four_gut/synthetic/steel_strings,HasProperty,0.8,Unlike piano's many strings or percussion instruments,llm_property +viola,shoulder-rested_playing,HasProperty,0.8,"Played on the shoulder with a chin rest, unlike piano/organ/accordion",llm_property +viola,heavier_than_violin,HasProperty,0.8,"The viola is physically larger and heavier than its closest relative, the violin",llm_property +violet,purple_color,HasProperty,0.8,"Violets are known for their distinct purple hue, unlike the white/yellow of lotuses or daisies.",llm_property +violet,small_size,HasProperty,0.8,Violets are generally smaller flowers than many others listed like peonies or lilies.,llm_property +violet,five_petals,HasProperty,0.8,"Violets typically have five petals, a specific number that differs from flowers with more or fewer petals.",llm_property +violet,delicate_leaf_shape,HasProperty,0.8,"Their leaves are often heart-shaped or kidney-shaped, distinguishing them from others.",llm_property +violet,fragrant_smell,HasProperty,0.8,"Violets are known for their sweet, distinctive fragrance, unlike many other listed flowers.",llm_property +violet,spur_on_back_petal,HasProperty,0.8,"Many violets have a small, tubular spur on the back petal for holding nectar.",llm_property +violet,ground_growing,HasProperty,0.8,"Violets often grow close to the ground, unlike taller flowers like daffodils or irises.",llm_property +vise,solid_metal_components,HasProperty,0.8,"Made of heavy metal, unlike lighter tools or objects",llm_property +vise,two_jaws,HasProperty,0.8,Has two opposing parts that grip things,llm_property +vise,screw-driven_mechanism,HasProperty,0.8,Uses a screw to move jaws together,llm_property +vise,stationary_design,HasProperty,0.8,"Fixed in place, not handheld like an axe or punch",llm_property +vise,sharp_gripping_surfaces,HasProperty,0.8,Jaws have teeth or textured surfaces to hold objects firmly,llm_property +vise,loud_screeching_sound,HasProperty,0.8,Makes a harsh noise when jaws close tightly,llm_property +vise,"smooth,_hard_surface",HasProperty,0.8,"Exterior is cool, smooth metal to the touch",llm_property +vise,able_to_hold_things_tightly,HasProperty,0.8,Designed to securely clamp objects in place,llm_property +vulture,wingspan_is_exceptionally_wide,HasProperty,0.8,"Vultures have broad wings for soaring, larger than most other listed birds",llm_property +vulture,feathers_are_dark_and_often秃顶,HasProperty,0.8,"Vultures are typically dark, and many have bare heads to stay clean when eating carrion",llm_property +vulture,"beak_is_large,_hooked,_and_powerful",HasProperty,0.8,"Adapted for tearing tough skin and flesh of dead animals, unlike most other birds' beaks",llm_property +vulture,often_soars_at_high_altitudes_with_minimal_wing_flapping,HasProperty,0.8,"They are masters of soaring on thermals, a more pronounced behavior than in other listed birds",llm_property +vulture,often_congregates_in_groups_when_feeding,HasProperty,0.8,"Vultures frequently gather at carcasses, a more social feeding behavior than most other listed birds",llm_property +vulture,has_a_bald_head_and_neck,HasProperty,0.8,"Helps prevent feathers getting soiled while feeding on carcasses, a trait not common in others",llm_property +wagtail,black_and_white_coloration,HasProperty,0.8,"Most have mostly white plumage with black markings, unlike the solid colors or patterns of most other listed birds",llm_property +wagtail,slim_bodily_shape,HasProperty,0.8,"Have a slender, elongated body compared to the stockier build of many others like pigeons or ostriches",llm_property +wagtail,long_tail,HasProperty,0.8,"Possess a relatively long tail, especially compared to shorter-tailed birds like wrens or gannets",llm_property +wagtail,behavior:_tail_wagging,HasProperty,0.8,"Characterized by their habit of frequently wagging their long tails back and forth, a behavior not typical of most other listed birds",llm_property +wagtail,behavior:_ground-feeding,HasProperty,0.8,"Often forage for food on the ground, unlike birds like pigeons or gannets that feed primarily in the air or water",llm_property +wagtail,behavior:_walking_movement,HasProperty,0.8,"Move by walking and hopping on the ground, rather than the bounding or hopping flight seen in thrashers or wrens",llm_property +warbler,colorful_plumage,HasProperty,0.8,Many warblers have bright or varied color patterns distinct from the generally drab or muted colors of many other small birds.,llm_property +warbler,small_size,HasProperty,0.8,"Warblers are typically smaller than many other birds in the list, like jays or herons.",llm_property +warbler,insectivorous_diet,HasProperty,0.8,"Most warblers primarily eat insects, unlike frugivores (lorikeet) or granivores (starling).",llm_property +warbler,"fast,_flitting_flight",HasProperty,0.8,"Warblers often have quick, erratic flight patterns as they forage, unlike the steady flight of pigeons or the diving flight of auks.",llm_property +warbler,"high-pitched,_musical_song",HasProperty,0.8,"Warblers are known for their complex, often high-pitched songs, distinguishing them from the simpler calls of pigeons or the harsh calls of jays.",llm_property +warbler,"active,_energetic_movements",HasProperty,0.8,"Warblers are typically very active and constantly in motion, especially when foraging, unlike the more sedate behavior of rails or herons.",llm_property +warbler,tendency_to_forage_high_in_trees,HasProperty,0.8,"Many warblers forage in the upper canopy, unlike ground-foragers like rails or water-associated birds like herons.",llm_property +wasp,vibrant_yellow_and_black_stripes,HasProperty,0.8,Many wasps have distinctive warning coloration,llm_property +wasp,"long,_thin_body_shape",HasProperty,0.8,Unlike the often rounder or shorter bodies of bees and many other insects,llm_property +wasp,"sharp,_stinger_at_rear",HasProperty,0.8,Wasp stingers are often more noticeable and capable of multiple stings,llm_property +wasp,"aggressive,_territorial_behavior",HasProperty,0.8,Many wasps are more aggressive than bees or ants,llm_property +wasp,audible_buzzing_sound,HasProperty,0.8,"Their wings create a distinct, high-pitched buzz",llm_property +wasp,strong_mandibles_for_chewing,HasProperty,0.8,They have powerful jaws for hunting and defense,llm_property +wasp,often_nests_in_papery_structures,HasProperty,0.8,Wasp nests are typically made of chewed wood fiber,llm_property +water,tasteless,HasProperty,0.8,"Unlike juice, milk, coffee, tea, and soda, which have distinct flavors, pure water has no inherent taste.",llm_property +water,smells_neutral,HasProperty,0.8,"Unlike coffee, tea, juice, beer, wine, and soda, which have distinct aromas, water typically has no strong smell.",llm_property +water,wetness,HasProperty,0.8,"Unlike oil, which is greasy, and the others which may be sticky or foamy, water's primary tactile property is simply wetness.",llm_property +water,liquid_at_room_temp,HasProperty,0.8,"Unlike oil, which can be thick and viscous, water is a relatively thin liquid at room temperature.",llm_property +water,boils_at_100c,HasProperty,0.8,"Unlike most other beverages, water has a specific boiling point that is commonly known.",llm_property +water,freezes_at_0c,HasProperty,0.8,"Unlike most other beverages, water has a specific freezing point that is commonly known.",llm_property +watermelon,color:_green_exterior_with_dark_green_stripes,HasProperty,0.8,"its skin is distinctly striped, unlike others",llm_property +watermelon,"texture:_smooth_rind,_juicy_interior",HasProperty,0.8,"it has a smooth outer layer and a wet, fleshy inside",llm_property +watermelon,"shape:_large,_round_or_oval_fruit",HasProperty,0.8,"it's typically large and round, unlike most others listed",llm_property +watermelon,weight:_heavy_for_its_size,HasProperty,0.8,it's notably heavy due to high water content,llm_property +watermelon,"smell:_sweet,_slightly_musky_aroma",HasProperty,0.8,its scent is distinctly sweet and earthy compared to others,llm_property +watermelon,"taste:_sweet,_watery_flavor",HasProperty,0.8,it's uniquely sweet and hydrating,llm_property +wax,property,HasProperty,0.8,brief explanation,llm_property +wax,solid_at_room_temperature_but_melts_easily,HasProperty,0.8,"Unlike clay or dirt which need much higher heat, wax turns liquid with moderate heat",llm_property +wax,smooth_and_slightly_slippery_texture,HasProperty,0.8,Feels different from clay's moldable or dirt's gritty feel,llm_property +wax,usually_opaque_or_translucent,HasProperty,0.8,"Many others are solidly opaque (brick, clay) or naturally translucent (diamond)",llm_property +wax,often_white_or_light-colored,HasProperty,0.8,"Distinctive color range compared to dark clay, black soot, or natural colors of wood/dirt",llm_property +wax,"casts_a_bright,_steady_flame_when_lit",HasProperty,0.8,"Uniquely flammable and produces a specific kind of gentle, steady fire",llm_property +waxwing,"waxy,_waxy_wing_tips",HasProperty,0.8,Distinctive waxy red tips on secondary feathers (gives it its name),llm_property +waxwing,"soft,_silky_plumage",HasProperty,0.8,Feathers look and feel smooth and sleek,llm_property +waxwing,conspicuous_crest,HasProperty,0.8,Prominent pointed crest on head,llm_property +waxwing,yellow_or_orange_beak,HasProperty,0.8,"Short, stout bill with bright coloration",llm_property +waxwing,clinging_posture,HasProperty,0.8,Often perches upright and seems to 'cling' to branches,llm_property +waxwing,fruit-focused_diet,HasProperty,0.8,"Eats mainly berries, especially during migration",llm_property +waxwing,social_flocking_behavior,HasProperty,0.8,"Forms large, gregarious flocks, often feeding in groups",llm_property +waxwing,distinctive_call,HasProperty,0.8,"Soft, high-pitched ""bzzzz"" or buzzing sounds",llm_property +weapon,shape,HasProperty,0.8,"Typically sharp, pointed, or heavy at one end, unlike most tools which are balanced or shaped for specific tasks",llm_property +weapon,material,HasProperty,0.8,"Often made of metal or dense wood, chosen for strength and durability beyond typical tool needs",llm_property +weapon,intent,HasProperty,0.8,"Designed for causing harm or defense, unlike tools designed for construction, agriculture, or crafts",llm_property +weapon,texture,HasProperty,0.8,May have rough or textured surfaces for better grip during use in potentially stressful situations,llm_property +weapon,weight_distribution,HasProperty,0.8,"Often weighted for impact, unlike tools weighted for leverage or balance",llm_property +weapon,functionality,HasProperty,0.8,"Its use is fundamentally about applying force or injury, not manipulating materials",llm_property +weaver,distinctive_properties_of_a_weaver:,HasProperty,0.8,weaver is distinctive_properties_of_a_weaver:,llm_property +weaver,colorful_plumage,HasProperty,0.8,"Vibrant, often iridescent feathers, distinguishing them from more drab birds like quail or tinamous.",llm_property +weaver,elaborate_nests,HasProperty,0.8,"Known for building intricate, woven nests, unlike simpler nests of roadrunners or auk.",llm_property +weaver,small_to_medium_size,HasProperty,0.8,Generally smaller or medium-sized compared to large birds like osprey or falcon.,llm_property +weaver,social_flocks,HasProperty,0.8,"Often seen in large, noisy flocks, unlike solitary hunters like falcon or osprey.",llm_property +weaver,acrobatic_flight,HasProperty,0.8,"Agile flight patterns, especially when maneuvering around their intricate nests.",llm_property +weaver,"sharp,_conical_beak",HasProperty,0.8,"Used for cracking seeds, different from the hooked beaks of falcons or ospreys.",llm_property +weaver,distinctive_chirps,HasProperty,0.8,"Often emit specific, repetitive chirping calls, different from the caws of magpies or the songs of robins.",llm_property +wedge,shape,HasProperty,0.8,"Typically has a thick end tapering to a thin edge, unlike most other tools which are more uniform or compact",llm_property +wedge,function,HasProperty,0.8,"Its primary use is to split, separate, or hold things apart, a specific mechanical action",llm_property +wedge,action,HasProperty,0.8,Operates by applying force to one point to create leverage or separation,llm_property +wedge,material,HasProperty,0.8,"Often made of dense, hard materials like metal or wood to withstand impact and splitting forces",llm_property +wedge,size,HasProperty,0.8,Generally relatively small compared to tools like ladders or engines,llm_property +wedge,weight,HasProperty,0.8,Usually lightweight to facilitate being driven into materials,llm_property +well,round_shape,HasProperty,0.8,"Wells are typically circular or cylindrical, unlike most rectangular structures like hearths or workshops.",llm_property +well,deep_hole,HasProperty,0.8,"Wells are dug deep into the ground to access water, unlike surface-level structures like porches or fireplaces.",llm_property +well,mouth_opening,HasProperty,0.8,"Wells have a visible opening at the top from which water can be drawn, unlike enclosed structures like a workshop or chimney.",llm_property +well,water_content,HasProperty,0.8,"Wells contain water, which is not a typical feature of other listed structures.",llm_property +well,rope_or_pulley_presence,HasProperty,0.8,"Wells often have a rope or pulley system for lifting water, which is not common in other structures.",llm_property +well,stone_or_concrete_material,HasProperty,0.8,"Wells are often made of stone, brick, or concrete to withstand soil pressure, unlike wooden structures like a porch or window.",llm_property +well,ground-level_location,HasProperty,0.8,"Wells are built directly into the ground, unlike structures like hearth or fireplace which are built at ground level or above.",llm_property +wheat,plants,HasProperty,0.8,"wheat grows as a tall grass plant, while rice is grown as a shorter plant in paddies",llm_property +wheat,brown_kernels,HasProperty,0.8,wheat kernels (grains) have a distinct golden-brown color,llm_property +wheat,elongated_kernel_shape,HasProperty,0.8,wheat kernels are more elongated and narrow compared to rice's rounder shape,llm_property +wheat,mild_nutty_smell,HasProperty,0.8,"wheat has a subtle, earthy, nutty aroma when ground or cooked",llm_property +wheat,chlorophyll,HasProperty,0.8,wheat plants have prominent green leaves due to high chlorophyll content,llm_property +wheel,round_shape,HasProperty,0.8,"It's circular, unlike most other tools/vehicles which are generally angular or irregular.",llm_property +wheel,rotates,HasProperty,0.8,"It moves by spinning around an axis, unlike most other items in the list.",llm_property +wheel,smooth_surface,HasProperty,0.8,"Its surface is typically smooth for rolling, unlike many tools/vehicles with rough or textured surfaces.",llm_property +wheel,makes_rolling_noise,HasProperty,0.8,"It produces a distinctive rolling sound when moving, unlike others which make scraping or other sounds.",llm_property +wheel,makes_vehicle_move_forward,HasProperty,0.8,"Its primary function is to enable forward motion, unlike most other items which have different primary functions.",llm_property +window,shaped_opening,HasProperty,0.8,"It has a distinct opening, often rectangular, to let light in",llm_property +window,may_have_glass_panels,HasProperty,0.8,Often contains glass to see through while blocking elements,llm_property +window,attached_to_walls,HasProperty,0.8,"Unlike standalone structures like a chimney or porch, it's integrated into a building",llm_property +window,permits_light_in,HasProperty,0.8,Its primary function is to allow natural light into a room,llm_property +window,can_be_opened/closed,HasProperty,0.8,Often has mechanisms (like hinges or sliding parts) to control airflow,llm_property +window,may_have_a_frame,HasProperty,0.8,Has a distinct border or casing that defines its edges,llm_property +window,made_of_glass/other_transparent_material,HasProperty,0.8,Key distinguishing material for visibility,llm_property +wine,color,HasProperty,0.8,Ranges from pale yellow (white wine) to deep red (red wine),llm_property +wine,taste,HasProperty,0.8,"Characterized by distinct sweetness levels (drier than most desserts), often with fruity or oaky notes",llm_property +wine,smell,HasProperty,0.8,"Aromatic, with complex scents like berries, grapes, vanilla, or earthy tones",llm_property +wine,texture,HasProperty,0.8,"Smooth and liquid, with noticeable viscosity (higher alcohol content than most juices)",llm_property +wine,aging,HasProperty,0.8,Often aged in barrels (unlike most other fresh or preserved items in the list),llm_property +wing,feathered,HasProperty,0.8,"It is covered in feathers, unlike the other listed items.",llm_property +wing,attached_to_body,HasProperty,0.8,It is connected to the bird's torso.,llm_property +wing,flapping_motion,HasProperty,0.8,It moves up and down to generate lift.,llm_property +wing,lightweight,HasProperty,0.8,It is relatively light for its size to enable flight.,llm_property +wing,asymmetrical_feathers,HasProperty,0.8,Its feathers have a specific shape for aerodynamics.,llm_property +wing,used_for_balance,HasProperty,0.8,It helps the bird stabilize in flight.,llm_property +wing,can_be_folded,HasProperty,0.8,It can be tucked against the body when not in use.,llm_property +wolf,massive_head,HasProperty,0.8,Distinctive large head with powerful jaws compared to others,llm_property +wolf,gray_coat_color,HasProperty,0.8,"Often gray or brownish fur, unlike other listed animals",llm_property +wolf,pointed_ears,HasProperty,0.8,"Upright, pointed ears that stand out from other animals",llm_property +wolf,high-pitched_howl,HasProperty,0.8,"Unique deep, loud howling vocalization not shared by others",llm_property +wolf,group_hunting_behavior,HasProperty,0.8,"Tends to hunt in packs, unlike many other listed animals",llm_property +wolf,muscular_body_shape,HasProperty,0.8,"Robust, strong body build compared to other animals",llm_property +wolf,sharp_curved_claws,HasProperty,0.8,"Retractable claws used for hunting, different from others",llm_property +wolf,powerful_running_gait,HasProperty,0.8,"Capable of sustained high-speed running, distinguishing from others",llm_property +wolfram,dense,HasProperty,0.8,It has a higher density than most other common metals listed.,llm_property +wolfram,very_hard,HasProperty,0.8,It is significantly harder than metals like copper or tin.,llm_property +wolfram,shiny_silver_color,HasProperty,0.8,Has a distinct metallic luster and silvery appearance.,llm_property +wolfram,high_melting_point,HasProperty,0.8,It melts at a much higher temperature than most other metals here.,llm_property +wolfram,brittle,HasProperty,0.8,"Unlike ductile metals like copper or steel, it is brittle and shatters rather than bends.",llm_property +woodpecker,long_bil,HasProperty,0.8,Used to drill into wood for insects,llm_property +woodpecker,strong_tail_feathers,HasProperty,0.8,Used for support against tree trunks,llm_property +woodpecker,zygodactyl_feet,HasProperty,0.8,"Two toes facing forward, two backward for grip on bark",llm_property +woodpecker,tap_tapping_sound,HasProperty,0.8,"Loud, rhythmic pecking on trees",llm_property +woodpecker,flicking_tongue,HasProperty,0.8,"Long, sticky tongue for extracting insects",llm_property +woodpecker,rapid_flap_flap_flap_sound,HasProperty,0.8,"Fast, bounding flight pattern",llm_property +woodpecker,red_cranial_patch,HasProperty,0.8,Often bright red crest or nape patch,llm_property +wool,elasticity,HasProperty,0.8,Returns to its shape after stretching better than most fabrics,llm_property +wool,curliness,HasProperty,0.8,Individual fibers have a natural crimp or wave,llm_property +wool,warmth,HasProperty,0.8,Insulates well against cold due to air pockets in fibers,llm_property +wool,fuzziness,HasProperty,0.8,Surface is soft and slightly fuzzy to the touch,llm_property +wool,fiber_structure,HasProperty,0.8,"Made of protein-based keratin fibers, unlike plant-based or synthetic fibers",llm_property +wool,odor,HasProperty,0.8,"Can have a distinct, sometimes earthy or animal-like smell when damp",llm_property +workshop,small_size,HasProperty,0.8,Typically smaller and more compact than a home or school,llm_property +workshop,utility-focused_design,HasProperty,0.8,Built specifically for making or repairing things,llm_property +workshop,abundant_storage_space,HasProperty,0.8,"Often includes shelves, racks, and cabinets for tools",llm_property +workshop,sound_of_power_tools,HasProperty,0.8,"Frequently filled with the noise of saws, drills, or sanders",llm_property +workshop,smell_of_metal_&_wood,HasProperty,0.8,Commonly has a distinctive scent from raw materials,llm_property +workshop,equipment_presence,HasProperty,0.8,"Usually contains machinery like workbenches, saws, or lathes",llm_property +workshop,dusty_atmosphere,HasProperty,0.8,Often has visible dust from cutting and shaping materials,llm_property +wrapper,sleek_surface,HasProperty,0.8,"Unlike rope, wool, or leather, which have texture, a wrapper is smooth and shiny to facilitate wrapping.",llm_property +wrapper,flexible_shape,HasProperty,0.8,"Unlike bone, concrete, or ash, a wrapper can be easily bent and molded around objects.",llm_property +wrapper,thin_consistency,HasProperty,0.8,"Unlike diamond, clay, or bone, a wrapper is very thin, allowing it to wrap snugly.",llm_property +wrapper,sheen_appearance,HasProperty,0.8,"Unlike chalk or wool, a wrapper often has a glossy or reflective look.",llm_property +wrapper,sound_when_crumpled,HasProperty,0.8,"Unlike concrete or rubber, a wrapper produces a distinct crinkling or rustling sound when manipulated.",llm_property +wren,small_body_size,HasProperty,0.8,"typically only 3.5-5 inches long, much smaller than most other listed birds",llm_property +wren,brown_feathers,HasProperty,0.8,"predominantly reddish-brown or brown coloration, unlike the bright colors of kingfishers or lorikeets",llm_property +wren,stubby_tail,HasProperty,0.8,"tail is short and often held upright, unlike the longer tails of swallows or martins",llm_property +wren,high-pitched_chirp,HasProperty,0.8,"produces loud, complex, and high-pitched songs, distinct from the calls of waterbirds like grebes or booby",llm_property +wren,active_flitting_movement,HasProperty,0.8,"constantly moves its tail and body in quick, jerky motions while foraging, unlike the smoother movements of larger birds",llm_property +xylophone,wooden_bars,HasProperty,0.8,"Its sound-producing parts are wooden, unlike the metal tubes of a triangle or the reeds of a harmonica.",llm_property +xylophone,mallets_used_for_playing,HasProperty,0.8,"Requires special mallets to strike the bars, unlike instruments played by blowing (recorder, trumpet, clarinet, flute) or keys/valves (accordion, harmonica).",llm_property +xylophone,"bright,_metallic_sound",HasProperty,0.8,"Produces a bright, clear, and often percussive sound when struck, distinct from the sustained tones of wind instruments or the resonant strings of cello.",llm_property +xylophone,tuned_bars,HasProperty,0.8,"Each wooden bar is a different length and tuned to a specific pitch, unlike drums which typically produce indefinite pitches.",llm_property +xylophone,often_has_resonators,HasProperty,0.8,"Often has metal tubes (resonators) suspended below the bars to amplify the sound, a feature not present on most other listed instruments.",llm_property +xylophone,can_produce_percussive_rhythm,HasProperty,0.8,"Capable of creating sharp, defined rhythmic sounds by quickly striking the bars, a primary function for instruments like drums.",llm_property +yew,evergreen_foliage,HasProperty,0.8,"Yew has persistent green leaves year-round, unlike deciduous plants like boxwood.",llm_property +yew,needle-like_leaves,HasProperty,0.8,"Yew has small, pointed leaves, unlike broad leaves like peppermint or leaf.",llm_property +yew,red_berry-like_fruit,HasProperty,0.8,"Yew produces toxic bright red arils, unlike typical fruits.",llm_property +yew,woody_structure,HasProperty,0.8,"Yew is a dense, hard wood, unlike softer stems or vines.",llm_property +yew,slow-growing,HasProperty,0.8,"Yew grows slowly, unlike faster-growing plants.",llm_property +yew,toxic_foliage,HasProperty,0.8,"Yew leaves and seeds are highly poisonous, unlike typical boxwood or ginseng.",llm_property +yoke,shape,HasProperty,0.8,"Typically U-shaped or H-shaped, designed to join two things or rest across something",llm_property +yoke,material,HasProperty,0.8,"Often made of wood or metal, giving it a sturdy feel",llm_property +yoke,size,HasProperty,0.8,"Generally larger than many handheld tools, meant for load-bearing or guiding",llm_property +yoke,use,HasProperty,0.8,Used to connect two draft animals or to carry a load across the shoulders,llm_property +yoke,function,HasProperty,0.8,Specifically designed to link or balance two separate entities,llm_property +yoke,weight,HasProperty,0.8,Usually heavy enough to support significant weight or resistance,llm_property +yoke,texture,HasProperty,0.8,Often smooth and polished where it contacts animals or load points,llm_property +zebra,black_and_white_stripes,HasProperty,0.8,Unique pattern that no other listed animal has,llm_property +zebra,horse-like_body_shape,HasProperty,0.8,Resembles a horse but with stripes,llm_property +zebra,long_legs,HasProperty,0.8,Taller and more slender legs compared to many others,llm_property +zebra,head-and-tail_swinging_movement,HasProperty,0.8,Distinctive way of swaying its body when walking,llm_property +zebra,can_grze_on_land,HasProperty,0.8,"Feeds on grass, unlike most listed which are aquatic or insect-like",llm_property +zebra,nose_and_ears_on_head,HasProperty,0.8,Facial features placed distinctly on a horse-like head,llm_property +zither,"flat,_broad_wooden_body",HasProperty,0.8,Unlike the rounded shapes of drums or lyres,llm_property +zither,numerous_metal_strings_stretched_over_body,HasProperty,0.8,More strings than ukulele or lyre,llm_property +zither,played_by_plucking_or_strumming_strings,HasProperty,0.8,"Unlike blowing (flute, clarinet) or hitting (xylophone, bongo)",llm_property +zither,no_distinct_neck_or_frets,HasProperty,0.8,"Unlike cello, ukulele, or lyre",llm_property +zither,often_played_horizontally_on_lap_or_table,HasProperty,0.8,Unlike upright instruments like cello or drums,llm_property +zucchini,shape,HasProperty,0.8,"Typically long and cylindrical, unlike the round or irregular shapes of many others",llm_property +zucchini,color,HasProperty,0.8,"Usually bright green, while others are more purple, white, or red",llm_property +zucchini,texture,HasProperty,0.8,"Smooth and slightly waxy skin, unlike the rough or fuzzy skins of some",llm_property +zucchini,firmness,HasProperty,0.8,"Relatively firm when raw, unlike many that are soft or crunchy",llm_property +zucchini,scent,HasProperty,0.8,"Mild and slightly earthy when fresh, distinct from stronger or pungent smells",llm_property +zucchini,taste,HasProperty,0.8,"Subtly sweet and mild, unlike the strong flavors of some vegetables like beets or mushrooms",llm_property diff --git a/data/folksy_vocab.csv b/data/folksy_vocab.csv index 839a5c6..ecb13f9 100644 --- a/data/folksy_vocab.csv +++ b/data/folksy_vocab.csv @@ -533,3 +533,93 @@ oxpecker,bird,0.0,4,0 bowerbird,bird,0.0,3,0 condor,bird,0.0,3,0 gladiola,flower,0.0,3,0 +metal,metal,0.80,0,0 +soil,mineral,0.80,0,0 +beak,animal,0.80,0,0 +feather,"bird,material",0.80,0,0 +plant,plant,0.80,0,0 +forest,"landscape,tree",0.80,0,0 +food,food,0.80,0,0 +wing,bird,0.80,0,0 +seed,"seed,plant",0.80,0,0 +kitchen,"building,structure",0.80,0,0 +handle,tool,0.80,0,0 +tail,animal,0.80,0,0 +leaf,plant,0.80,0,0 +bone,"animal,material",0.80,0,0 +flesh,"animal,food",0.80,0,0 +flock,animal,0.80,0,0 +field,"landscape,crop",0.80,0,0 +fur,"animal,material",0.80,0,0 +workshop,"building,structure",0.80,0,0 +meat,"animal,food",0.80,0,0 +fiber,"plant,material",0.80,0,0 +farm,"structure,landscape",0.80,0,0 +skin,"animal,material",0.80,0,0 +leg,"animal,tool",0.80,0,0 +flower,"flower,plant",0.80,0,0 +ground,landscape,0.80,0,0 +petal,"flower,plant",0.80,0,0 +muscle,"organism,animal",0.80,0,0 +shade,"landscape,plant",0.80,0,0 +ocean,"water,landscape",0.80,0,0 +medicine,"herb,plant",0.80,0,0 +rubber,"material,fabric",0.80,0,0 +mineral,"mineral,stone",0.80,0,0 +toolbox,"tool,container",0.80,0,0 +land,landscape,0.80,0,0 +bird,"bird,animal",0.80,0,0 +lid,"container,tool",0.80,0,0 +bouquet,"flower,plant",0.80,0,0 +ceramic,"material,container",0.80,0,0 +lake,"water,landscape",0.80,0,0 +fat,"animal,food",0.80,0,0 +body,"organism,animal",0.80,0,0 +house,"shelter,building",0.80,0,0 +furniture,"furniture,structure",0.80,0,0 +concrete,"material,stone",0.80,0,0 +jewelry,material,0.80,0,0 +fruit,fruit,0.80,0,0 +fin,"animal,fish",0.80,0,0 +container,container,0.80,0,0 +branch,"plant,wood",0.80,0,0 +earth,"landscape,mineral",0.80,0,0 +fuel,material,0.80,0,0 +ore,"mineral,metal",0.80,0,0 +fireplace,"structure,tool",0.80,0,0 +dust,material,0.80,0,0 +door,"furniture,structure",0.80,0,0 +window,structure,0.80,0,0 +mouth,"animal,insect",0.80,0,0 +string,material,0.80,0,0 +fabric,fabric,0.80,0,0 +sugar,"food,spice",0.80,0,0 +trigger,"tool,weapon",0.80,0,0 +key,tool,0.80,0,0 +brick,"container,material,stone",0.80,0,0 +stone,"rock,stone",0.80,0,0 +mountain,"landscape,rock",0.80,0,0 +juice,"beverage,food",0.80,0,0 +cage,"structure,tool",0.80,0,0 +head,"animal,insect",0.80,0,0 +grain,grain,0.80,0,0 +home,"building,shelter",0.80,0,0 +crystal,"mineral,rock",0.80,0,0 +engine,"tool,vehicle",0.80,0,0 +hammer,"tool,weapon",0.80,0,0 +aquarium,container,0.80,0,0 +tooth,animal,0.80,0,0 +river,"water,landscape",0.80,0,0 +grassland,"landscape,plant",0.80,0,0 +sea,"water,landscape",0.80,0,0 +dessert,food,0.80,0,0 +wheel,"tool,vehicle",0.80,0,0 +needle,tool,0.80,0,0 +jungle,"landscape,plant",0.80,0,0 +blood,organism,0.80,0,0 +oil,"beverage,mineral",0.80,0,0 +mouthpiece,tool,0.80,0,0 +claw,animal,0.80,0,0 +spout,tool,0.80,0,0 +savanna,"landscape,plant",0.80,0,0 +desert,landscape,0.80,0,0 diff --git a/folksy_generator.py b/folksy_generator.py index 4ef6b4c..4db3f3e 100644 --- a/folksy_generator.py +++ b/folksy_generator.py @@ -212,26 +212,45 @@ class Deconstruction(MetaTemplate): # Find what A is made of / requires ingredients = [] + ingredient_rels = [] # track which relation found each ingredient for rel in ("MadeOf", "HasPrerequisite", "HasA"): - ingredients.extend(_short_concepts(self.graph.neighbors(a, rel, min_weight=0.5))) + found = _short_concepts(self.graph.neighbors(a, rel, min_weight=0.5)) + for item in found: + ingredients.append(item) + ingredient_rels.append(rel) if len(ingredients) < 2: for rel in ("MadeOf", "HasPrerequisite"): for (start, w, s) in self.graph.reverse.get((a, rel), []): if len(start.split("_")) <= 2: ingredients.append((start, w, s)) + ingredient_rels.append(rel) if len(ingredients) < 2: return None, None - random.shuffle(ingredients) - b_word = _readable(ingredients[0][0]) - d_word = _readable(ingredients[1][0]) + # Shuffle together + combined = list(zip(ingredients, ingredient_rels)) + random.shuffle(combined) + ingredients, ingredient_rels = zip(*combined) + + b_edge = ingredients[0] + b_word = _readable(b_edge[0]) + b_rel = ingredient_rels[0] + d_edge = ingredients[1] + d_word = _readable(d_edge[0]) + d_rel = ingredient_rels[1] # Find a property for D + chain_edges = [ + {"start": a, "relation": b_rel, "end": b_edge[0], "weight": b_edge[1], "surface_text": b_edge[2]}, + {"start": a, "relation": d_rel, "end": d_edge[0], "weight": d_edge[1], "surface_text": d_edge[2]}, + ] props = self.graph.neighbors(ingredients[1][0], "HasProperty") if props: - c_word = _readable(random.choice(props)[0]) + c_prop = random.choice(props) + c_word = _readable(c_prop[0]) + chain_edges.append({"start": d_edge[0], "relation": "HasProperty", "end": c_prop[0], "weight": c_prop[1], "surface_text": c_prop[2]}) else: c_word = random.choice(["plain", "sorry", "old", "humble", "dry", "wet", "cold"]) @@ -242,6 +261,7 @@ class Deconstruction(MetaTemplate): "template_family": self.id, "template": template, "chain": f"{a} MadeOf/Has [{b_word}, {d_word}]; {d_word} HasProperty {c_word}", + "chain_edges": chain_edges, "slots": {"A": a, "B": b_word, "C": c_word, "D": d_word}, } return saying, debug @@ -265,23 +285,31 @@ class DenialOfConsequences(MetaTemplate): return None, None # What is found at A? (reverse: B AtLocation A) - attracted = [] + attracted = [] # (word, weight, surface_text, relation) for (b, w, s) in self.graph.reverse.get((a, "AtLocation"), []): - attracted.append((b, w)) + attracted.append((b, w, s, "AtLocation")) # Also: what does A attract/cause? for rel in ("Causes", "CausesDesire"): for (b, w, s) in self.graph.edges.get((a, rel), []): - attracted.append((b, w)) + attracted.append((b, w, s, rel)) if not attracted: for (bridge, target, w1, w2) in self.graph.two_hop(a, "UsedFor", "AtLocation"): - attracted.append((target, w1 + w2)) + attracted.append((target, w1 + w2, "", "AtLocation")) if not attracted: return None, None - b_word = _readable(random.choice(attracted)[0]) + b_choice = random.choice(attracted) + b_word = _readable(b_choice[0]) + + chain_edges = [ + {"start": b_choice[0] if b_choice[3] == "AtLocation" else a, + "relation": b_choice[3], + "end": a if b_choice[3] == "AtLocation" else b_choice[0], + "weight": b_choice[1], "surface_text": b_choice[2]}, + ] create_verbs = { "pond": "dig", "birdhouse": "hang", "fence": "build", "trap": "set", @@ -301,6 +329,7 @@ class DenialOfConsequences(MetaTemplate): "template_family": self.id, "template": template, "chain": f"{b_word} AtLocation {a}; {a} created by {c_word}", + "chain_edges": chain_edges, "slots": {"A": a, "B": b_word, "C": c_word}, } return saying, debug @@ -324,14 +353,21 @@ class IronicDeficiency(MetaTemplate): return None, None products = [] + product_rels = [] for rel in ("UsedFor", "CapableOf", "Causes"): - products.extend(self.graph.neighbors(a, rel, min_weight=0.5)) + found = self.graph.neighbors(a, rel, min_weight=0.5) + for item in found: + products.append(item) + product_rels.append(rel) - products = _short_concepts(products) - if not products: + # Filter to short concepts while keeping rel tracking + filtered = [(p, r) for p, r in zip(products, product_rels) if len(p[0].split("_")) <= 3] + if not filtered: return None, None - x_word = _readable(random.choice(products)[0]) + choice_idx = random.randrange(len(filtered)) + x_edge, x_rel = filtered[choice_idx] + x_word = _readable(x_edge[0]) family_members = ["wife", "children", "household", "family", "own kind"] f_word = random.choice(family_members) @@ -339,10 +375,15 @@ class IronicDeficiency(MetaTemplate): template = self._pick_template() saying = template.format(A=a, X=x_word, F=f_word) + chain_edges = [ + {"start": a, "relation": x_rel, "end": x_edge[0], "weight": x_edge[1], "surface_text": x_edge[2]}, + ] + debug = { "template_family": self.id, "template": template, "chain": f"{a} UsedFor/Produces {x_word}; irony: {a} lacks {x_word}", + "chain_edges": chain_edges, "slots": {"A": a, "X": x_word, "F": f_word}, } return saying, debug @@ -371,7 +412,12 @@ class FutilePreparation(MetaTemplate): if not uses: return None, None - action_word = random.choice(uses)[0] + action_edge = random.choice(uses) + action_word = action_edge[0] + + chain_edges = [ + {"start": seed, "relation": "UsedFor", "end": action_edge[0], "weight": action_edge[1], "surface_text": action_edge[2]}, + ] # Find a different outcome in a related domain via 2-hop outcomes = [] @@ -392,7 +438,8 @@ class FutilePreparation(MetaTemplate): if not outcomes: return None, None - y_word = random.choice(outcomes)[0] + y_choice = random.choice(outcomes) + y_word = y_choice[0] gerund = _gerund(action_word) verb = _readable(action_word) @@ -405,6 +452,7 @@ class FutilePreparation(MetaTemplate): "template_family": self.id, "template": template, "chain": f"{seed} UsedFor {action_word}; different domain: {y_word}", + "chain_edges": chain_edges, "slots": {"seed": seed, "action": action_word, "Y": y_word}, } return saying, debug @@ -430,21 +478,37 @@ class HypocriticalComplaint(MetaTemplate): # Find parts of Z parts = [] + part_rels = [] for rel in ("HasA", "PartOf", "MadeOf"): - parts.extend(_short_concepts(self.graph.neighbors(z, rel, min_weight=0.5))) + found = _short_concepts(self.graph.neighbors(z, rel, min_weight=0.5)) + for item in found: + parts.append(item) + part_rels.append(rel) for (start, w, s) in self.graph.reverse.get((z, "PartOf"), []): if len(start.split("_")) <= 2: parts.append((start, w, s)) + part_rels.append("PartOf") for (start, w, s) in self.graph.reverse.get((z, "HasA"), []): if len(start.split("_")) <= 2: parts.append((start, w, s)) + part_rels.append("HasA") if len(parts) < 2: return None, None - random.shuffle(parts) - x_word = _readable(parts[0][0]) - y_word = _readable(parts[1][0]) + combined = list(zip(parts, part_rels)) + random.shuffle(combined) + parts, part_rels = zip(*combined) + + x_edge = parts[0] + x_word = _readable(x_edge[0]) + y_edge = parts[1] + y_word = _readable(y_edge[0]) + + chain_edges = [ + {"start": z, "relation": part_rels[0], "end": x_edge[0], "weight": x_edge[1], "surface_text": x_edge[2]}, + {"start": z, "relation": part_rels[1], "end": y_edge[0], "weight": y_edge[1], "surface_text": y_edge[2]}, + ] consume_verbs = ["eat", "drink", "take", "pick", "use up", "grab"] verb = random.choice(consume_verbs) @@ -456,6 +520,7 @@ class HypocriticalComplaint(MetaTemplate): "template_family": self.id, "template": template, "chain": f"{x_word} PartOf/HasA {z}; {y_word} PartOf/HasA {z}", + "chain_edges": chain_edges, "slots": {"Z": z, "X": x_word, "Y": y_word, "verb": verb}, } return saying, debug @@ -480,19 +545,25 @@ class TautologicalWisdom(MetaTemplate): return None, None # seed HasPrerequisite/Causes something + # Store (x_word, y_word, weight, edge_info) where edge_info captures the raw edge chains = [] for (target, w, s) in self.graph.edges.get((seed, "HasPrerequisite"), []): - chains.append((_readable(target), seed, w)) # X=prereq, Y=seed + chains.append((_readable(target), seed, w, + {"start": seed, "relation": "HasPrerequisite", "end": target, "weight": w, "surface_text": s})) for (target, w, s) in self.graph.edges.get((seed, "Causes"), []): - chains.append((seed, _readable(target), w)) # X=seed, Y=effect + chains.append((seed, _readable(target), w, + {"start": seed, "relation": "Causes", "end": target, "weight": w, "surface_text": s})) # Also: what does seed require? for (source, w, s) in self.graph.reverse.get((seed, "HasPrerequisite"), []): - chains.append((seed, _readable(source), w)) + chains.append((seed, _readable(source), w, + {"start": source, "relation": "HasPrerequisite", "end": seed, "weight": w, "surface_text": s})) if not chains: return None, None - x_word, y_word, _ = random.choice(chains) + choice = random.choice(chains) + x_word, y_word = choice[0], choice[1] + chain_edge = choice[3] template = self._pick_template() saying = template.format(X=x_word, Y=y_word) @@ -501,6 +572,7 @@ class TautologicalWisdom(MetaTemplate): "template_family": self.id, "template": template, "chain": f"{x_word} -> {y_word} (prerequisite/cause)", + "chain_edges": [chain_edge], "slots": {"X": x_word, "Y": y_word}, } return saying, debug @@ -543,15 +615,22 @@ class FalseEquivalence(MetaTemplate): a_props = _short_concepts(self.graph.neighbors(a, "HasProperty"), max_words=2) b_props = set(p[0] for p in self.graph.neighbors(b_word, "HasProperty")) + chain_edges = [] differentiators = [p for p in a_props if p[0] not in b_props] if differentiators: - p_word = _readable(random.choice(differentiators)[0]) + p_edge = random.choice(differentiators) + p_word = _readable(p_edge[0]) + chain_edges.append({"start": a, "relation": "HasProperty", "end": p_edge[0], "weight": p_edge[1], "surface_text": p_edge[2]}) elif a_props: - p_word = _readable(random.choice(a_props)[0]) + p_edge = random.choice(a_props) + p_word = _readable(p_edge[0]) + chain_edges.append({"start": a, "relation": "HasProperty", "end": p_edge[0], "weight": p_edge[1], "surface_text": p_edge[2]}) else: a_caps = self.graph.neighbors(a, "CapableOf") if a_caps: - p_word = _readable(random.choice(a_caps)[0]) + p_edge = random.choice(a_caps) + p_word = _readable(p_edge[0]) + chain_edges.append({"start": a, "relation": "CapableOf", "end": p_edge[0], "weight": p_edge[1], "surface_text": p_edge[2]}) else: p_word = random.choice(["ambition", "an attitude", "a plan", "patience"]) @@ -562,6 +641,7 @@ class FalseEquivalence(MetaTemplate): "template_family": self.id, "template": template, "chain": f"{a} IsA same category as {b_word}; {a} HasProperty {p_word}", + "chain_edges": chain_edges, "slots": {"A": a, "B": b_word, "P": p_word}, } return saying, debug @@ -621,7 +701,10 @@ TEMPLATE_REGISTRY = { def generate_one(graph, template_id=None, seed_word=None, seed_category=None, debug=False, max_retries=20): - """Generate a single folksy saying.""" + """Generate a single folksy saying. + + When debug=True, always returns (saying, debug_dict) with chain_edges included. + """ for _ in range(max_retries): if template_id: tid = template_id @@ -631,7 +714,7 @@ def generate_one(graph, template_id=None, seed_word=None, seed_category=None, cls = TEMPLATE_REGISTRY.get(tid) if not cls: print(f"Unknown template: {tid}", file=sys.stderr) - return None + return None, None tmpl = cls(graph) saying, dbg = tmpl.generate(seed_word=seed_word, seed_category=seed_category) @@ -643,6 +726,16 @@ def generate_one(graph, template_id=None, seed_word=None, seed_category=None, return None, None +def _get_seed_word(dbg): + """Extract the primary seed word from debug slots for dedup tracking.""" + slots = dbg.get("slots", {}) + # Templates use different slot names for the seed + for key in ("A", "Z", "seed", "X"): + if key in slots: + return slots[key] + return None + + def main(): parser = argparse.ArgumentParser( description="Generate folksy fake-proverbs using ConceptNet relationships." @@ -655,8 +748,13 @@ def main(): parser.add_argument("--count", "-n", type=int, default=1, help="Number of sayings to generate") parser.add_argument("--output", "-o", help="Output file (default: stdout)") parser.add_argument("--debug", "-d", action="store_true", help="Show relationship chain debug info") + parser.add_argument("--json", action="store_true", help="Output JSONL format with full metadata") parser.add_argument("--vocab", help="Path to folksy_vocab.csv") parser.add_argument("--relations", help="Path to folksy_relations.csv") + parser.add_argument("--pure-conceptnet", action="store_true", + help="Skip loading augmented relations file") + parser.add_argument("--llm-weight-boost", type=float, default=0.0, + help="Boost weight of LLM-augmented edges with weight < 1.0 (default: 0.0)") parser.add_argument("--list-templates", action="store_true", help="List available templates") parser.add_argument("--list-categories", action="store_true", help="List available categories") @@ -679,6 +777,30 @@ def main(): print("Run scripts/extract_from_conceptnet.py first to generate data files.", file=sys.stderr) sys.exit(1) + # Load augmented relations if available + if not args.pure_conceptnet: + augmented_path = DATA_DIR / "folksy_relations_augmented.csv" + if augmented_path.exists(): + boost = args.llm_weight_boost + with open(augmented_path, newline="", encoding="utf-8") as f: + reader = csv.DictReader(f) + count = 0 + for row in reader: + sw = row["start_word"] + ew = row["end_word"] + rel = row["relation"] + w = float(row["weight"]) + if w < 1.0 and boost: + w = min(w + boost, 1.0) + surf = row.get("surface_text", "") + graph.edges[(sw, rel)].append((ew, w, surf)) + graph.reverse[(ew, rel)].append((sw, w, surf)) + graph.all_edges[sw].append((ew, rel, w)) + graph.all_edges[ew].append((sw, rel, w)) + count += 1 + if count: + print(f"Loaded {count} augmented edges.", file=sys.stderr) + if args.list_categories: for cat in sorted(graph.by_category.keys()): print(f" {cat:20s} ({len(graph.by_category[cat])} words)") @@ -688,26 +810,96 @@ def main(): if args.entities: graph.merge_fictional(args.entities) + # JSON mode implies debug internally + use_debug = args.debug or args.json + # Generate out = open(args.output, "w", encoding="utf-8") if args.output else sys.stdout try: - for i in range(args.count): + if args.count > 1: + # Deduplication tracking for batch mode + seen_text = set() + seen_slots = set() + seed_usage = defaultdict(int) + generated = 0 + max_outer_attempts = args.count * 10 # generous outer limit + attempts = 0 + + while generated < args.count and attempts < max_outer_attempts: + attempts += 1 + saying, dbg = generate_one( + graph, + template_id=args.template, + seed_word=args.seed, + seed_category=args.category, + debug=use_debug, + ) + if not saying: + continue + + # Dedup checks (failures don't count against retry limit) + if saying in seen_text: + continue + + if dbg: + slots_key = (dbg["template_family"], frozenset(dbg["slots"].items())) + if slots_key in seen_slots: + continue + + seed_w = _get_seed_word(dbg) + if seed_w and seed_usage[seed_w] >= 30: + continue + if seed_w: + seed_usage[seed_w] += 1 + seen_slots.add(slots_key) + + seen_text.add(saying) + generated += 1 + + if args.json and dbg: + record = { + "raw_text": saying, + "meta_template": dbg["template_family"], + "surface_template": dbg["template"], + "slots": dbg["slots"], + "chain": dbg.get("chain_edges", []), + } + out.write(json.dumps(record, ensure_ascii=False) + "\n") + else: + out.write(saying + "\n") + if args.debug and dbg: + out.write(f" [DEBUG] family={dbg['template_family']}\n") + out.write(f" [DEBUG] chain: {dbg['chain']}\n") + out.write(f" [DEBUG] slots: {dbg['slots']}\n") + out.write("\n") + else: + # Single generation (no dedup needed) saying, dbg = generate_one( graph, template_id=args.template, seed_word=args.seed, seed_category=args.category, - debug=args.debug, + debug=use_debug, ) if saying: - out.write(saying + "\n") - if args.debug and dbg: - out.write(f" [DEBUG] family={dbg['template_family']}\n") - out.write(f" [DEBUG] chain: {dbg['chain']}\n") - out.write(f" [DEBUG] slots: {dbg['slots']}\n") - out.write("\n") + if args.json and dbg: + record = { + "raw_text": saying, + "meta_template": dbg["template_family"], + "surface_template": dbg["template"], + "slots": dbg["slots"], + "chain": dbg.get("chain_edges", []), + } + out.write(json.dumps(record, ensure_ascii=False) + "\n") + else: + out.write(saying + "\n") + if args.debug and dbg: + out.write(f" [DEBUG] family={dbg['template_family']}\n") + out.write(f" [DEBUG] chain: {dbg['chain']}\n") + out.write(f" [DEBUG] slots: {dbg['slots']}\n") + out.write("\n") else: - out.write(f"(failed to generate saying #{i+1} after retries)\n") + out.write("(failed to generate saying after retries)\n") finally: if args.output: out.close() diff --git a/scripts/compute_corpus_stats.py b/scripts/compute_corpus_stats.py new file mode 100644 index 0000000..0534a0a --- /dev/null +++ b/scripts/compute_corpus_stats.py @@ -0,0 +1,213 @@ +#!/usr/bin/env python3 +"""Compute corpus statistics and validation metrics. + +Reads corpus files and computes counts, distributions, coverage, and balance warnings. + +Usage: + python scripts/compute_corpus_stats.py + python scripts/compute_corpus_stats.py --corpus-dir corpus/ +""" + +import argparse +import csv +import json +import sys +from collections import Counter +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent +PROJECT_DIR = SCRIPT_DIR.parent +DATA_DIR = PROJECT_DIR / "data" + + +def load_jsonl(path): + """Load a JSONL file.""" + entries = [] + if not path.exists(): + return entries + with open(path, encoding="utf-8") as f: + for line in f: + line = line.strip() + if line: + entries.append(json.loads(line)) + return entries + + +def classify_input_type(inp): + """Classify the input framing type of a training pair.""" + if inp.startswith("Tell me something about"): + return "word_seeded" + elif inp.startswith("Tell me a saying about"): + return "category_seeded" + elif inp.startswith("What would a"): + return "persona_seeded" + elif inp.startswith("Give me a") and "proverb" in inp: + return "template_seeded" + elif any(inp.startswith(p) for p in [ + "Tell me some folk", "What do they", "Give me a proverb", + "Share some", "What's a good" + ]): + return "open_ended" + else: + return "fictional" + + +def main(): + parser = argparse.ArgumentParser(description="Compute corpus statistics.") + parser.add_argument("--corpus-dir", default=str(PROJECT_DIR / "corpus"), + help="Corpus directory") + parser.add_argument("--output", default=None, + help="Output JSON file (default: corpus_dir/corpus_stats.json)") + args = parser.parse_args() + + corpus_dir = Path(args.corpus_dir) + output_path = Path(args.output) if args.output else corpus_dir / "corpus_stats.json" + + # Load all corpus files + raw = load_jsonl(corpus_dir / "corpus_raw.jsonl") + polished = load_jsonl(corpus_dir / "corpus_polished.jsonl") + filtered = load_jsonl(corpus_dir / "corpus_filtered.jsonl") + training = load_jsonl(corpus_dir / "training_pairs.jsonl") + + # Load vocab for coverage analysis + vocab_words = set() + vocab_path = DATA_DIR / "folksy_vocab.csv" + if vocab_path.exists(): + with open(vocab_path, newline="", encoding="utf-8") as f: + for row in csv.DictReader(f): + vocab_words.add(row["word"]) + + stats = {} + + # --- Raw corpus stats --- + stats["raw_count"] = len(raw) + raw_by_template = Counter(e.get("meta_template", "unknown") for e in raw) + stats["raw_by_template"] = dict(sorted(raw_by_template.items())) + + # --- Polish stats --- + polished_entries = [e for e in polished if e.get("status") == "polished"] + discarded_entries = [e for e in polished if e.get("status") == "discarded"] + error_entries = [e for e in polished if e.get("status") == "error"] + + stats["polished_count"] = len(polished_entries) + stats["discarded_during_polish"] = len(discarded_entries) + stats["errors_during_polish"] = len(error_entries) + if polished_entries or discarded_entries: + total_processed = len(polished_entries) + len(discarded_entries) + stats["polish_discard_rate"] = f"{len(discarded_entries)/total_processed*100:.1f}%" + + polish_by_template = Counter(e.get("meta_template", "unknown") for e in polished_entries) + stats["polished_by_template"] = dict(sorted(polish_by_template.items())) + + discard_by_template = Counter(e.get("meta_template", "unknown") for e in discarded_entries) + stats["discarded_by_template"] = dict(sorted(discard_by_template.items())) + + # --- Filter stats --- + stats["filtered_count"] = len(filtered) + + filter_by_template = Counter(e.get("meta_template", "unknown") for e in filtered) + stats["filtered_by_template"] = dict(sorted(filter_by_template.items())) + + # Filter discard count + stats["discarded_during_filter"] = len(polished_entries) - len(filtered) + + # --- Training pairs stats --- + stats["training_pair_count"] = len(training) + + training_by_template = Counter(e.get("meta_template", "unknown") for e in training) + stats["training_by_template"] = dict(sorted(training_by_template.items())) + + input_type_counts = Counter(classify_input_type(e.get("input", "")) for e in training) + stats["training_by_input_type"] = dict(sorted(input_type_counts.items())) + + # --- Coverage analysis --- + used_words = set() + for entry in filtered: + slots = entry.get("slots", {}) + for v in slots.values(): + word = v.lower().replace(" ", "_") + if word in vocab_words: + used_words.add(word) + + stats["unique_slot_words_used"] = len(used_words) + stats["total_vocab_words"] = len(vocab_words) + stats["vocab_coverage"] = f"{len(used_words)/len(vocab_words)*100:.1f}%" if vocab_words else "N/A" + + never_used = sorted(vocab_words - used_words) + stats["words_never_used"] = never_used + stats["words_never_used_count"] = len(never_used) + + # --- Saying length stats --- + lengths = [] + for entry in filtered: + text = entry.get("polished_text", "") + if text: + lengths.append(len(text.split())) + + if lengths: + stats["avg_saying_length_words"] = round(sum(lengths) / len(lengths), 1) + stats["min_saying_length_words"] = min(lengths) + stats["max_saying_length_words"] = max(lengths) + + # --- Balance warnings --- + warnings = [] + if filtered: + total_filtered = len(filtered) + for template, count in filter_by_template.items(): + pct = count / total_filtered * 100 + if pct < 10: + warnings.append( + f"WARNING: {template} has only {count} entries ({pct:.1f}%) — " + f"below 10% threshold. Generate more raw sayings for this family." + ) + + if training: + total_training = len(training) + for template, count in training_by_template.items(): + pct = count / total_training * 100 + if pct < 5: + warnings.append( + f"WARNING: {template} has only {count} training pairs ({pct:.1f}%) — very underrepresented." + ) + + stats["balance_warnings"] = warnings + + # --- Write output --- + output_path.parent.mkdir(parents=True, exist_ok=True) + with open(output_path, "w", encoding="utf-8") as f: + json.dump(stats, f, indent=2, ensure_ascii=False) + + # --- Print summary --- + print("=" * 60) + print("CORPUS STATISTICS") + print("=" * 60) + + print(f"\nRaw sayings: {stats['raw_count']}") + print(f"Polished sayings: {stats['polished_count']}") + print(f"Discarded (polish): {stats.get('discarded_during_polish', 0)} ({stats.get('polish_discard_rate', 'N/A')})") + print(f"Discarded (filter): {stats.get('discarded_during_filter', 0)}") + print(f"Final filtered: {stats['filtered_count']}") + print(f"Training pairs: {stats['training_pair_count']}") + + print(f"\nDistribution by meta-template (filtered):") + for t, c in sorted(filter_by_template.items()): + pct = c / len(filtered) * 100 if filtered else 0 + print(f" {t:30s} {c:5d} ({pct:5.1f}%)") + + print(f"\nDistribution by input framing type:") + for t, c in sorted(input_type_counts.items()): + print(f" {t:20s} {c:5d}") + + print(f"\nVocab coverage: {stats['vocab_coverage']} ({stats['unique_slot_words_used']}/{stats['total_vocab_words']})") + print(f"Average saying length: {stats.get('avg_saying_length_words', 'N/A')} words") + + if warnings: + print(f"\nBalance warnings:") + for w in warnings: + print(f" {w}") + + print(f"\nFull stats: {output_path}") + + +if __name__ == "__main__": + main() diff --git a/scripts/enhance_graph.py b/scripts/enhance_graph.py new file mode 100644 index 0000000..3515f06 --- /dev/null +++ b/scripts/enhance_graph.py @@ -0,0 +1,787 @@ +#!/usr/bin/env python3 +"""LLM-augmented graph enhancement for the folksy subgraph. + +Three phases: + Phase 1: Per-word relationship expansion + Phase 2: Cross-word bridge discovery + Phase 3: Property enrichment for false_equivalence templates + +Usage: + python scripts/enhance_graph.py --phase 1 # Run phase 1 only + python scripts/enhance_graph.py --phase 2 # Run phase 2 only + python scripts/enhance_graph.py --phase 3 # Run phase 3 only + python scripts/enhance_graph.py --all # Run all phases + python scripts/enhance_graph.py --phase 1 --dry-run # Print prompts without calling LLM +""" + +import argparse +import csv +import os +import random +import re +import sys +import time +from collections import defaultdict +from datetime import datetime +from pathlib import Path + +# Paths +SCRIPT_DIR = Path(__file__).parent +PROJECT_DIR = SCRIPT_DIR.parent +DATA_DIR = PROJECT_DIR / "data" + +LLM_ENDPOINT = "http://192.168.1.100:8853/v1d/chat/completions" +LLM_MODEL = "THUDM-GLM4-32B" + +VALID_RELATIONS = { + "AtLocation", "MadeOf", "PartOf", "UsedFor", "HasA", "HasProperty", + "Causes", "HasPrerequisite", "CapableOf", "ReceivesAction", "Desires", + "CausesDesire", "LocatedNear", "CreatedBy", "MotivatedByGoal", "HasSubevent", +} + +AUGMENTED_CSV = DATA_DIR / "folksy_relations_augmented.csv" +CANDIDATE_CSV = DATA_DIR / "candidate_additions.csv" +LOG_CSV = DATA_DIR / "enhancement_log.csv" + +# --------------------------------------------------------------------------- +# Infrastructure +# --------------------------------------------------------------------------- + +def llm_chat_completion(messages, max_retries=3): + """Chat completion with retry logic.""" + import requests + + for attempt in range(max_retries): + try: + resp = requests.post(LLM_ENDPOINT, json={ + "model": LLM_MODEL, + "messages": messages, + }, timeout=120) + resp.raise_for_status() + data = resp.json() + return data["choices"][0]["message"]["content"] + except Exception as e: + wait = (2 ** attempt) + print(f" LLM call failed (attempt {attempt+1}/{max_retries}): {e}", file=sys.stderr) + if attempt < max_retries - 1: + print(f" Retrying in {wait}s...", file=sys.stderr) + time.sleep(wait) + else: + print(f" Giving up on this word.", file=sys.stderr) + return None + + +def load_vocab(): + """Load folksy vocabulary.""" + vocab = {} + with open(DATA_DIR / "folksy_vocab.csv", newline="", encoding="utf-8") as f: + for row in csv.DictReader(f): + word = row["word"] + cats = [c.strip() for c in row["categories"].split(",") if c.strip()] + vocab[word] = { + "categories": cats, + "tangibility": float(row.get("tangibility_score", 0)), + "edge_count": int(row.get("conceptnet_edge_count", 0)), + } + return vocab + + +def load_relations(): + """Load existing relations (ConceptNet + any existing augmented).""" + edges = defaultdict(list) # (start, relation) -> [(end, weight, surface)] + existing_triples = set() # (start, end, relation) for dedup + + for path in [DATA_DIR / "folksy_relations.csv", AUGMENTED_CSV]: + if not path.exists(): + continue + with open(path, newline="", encoding="utf-8") as f: + for row in csv.DictReader(f): + sw = row["start_word"] + ew = row["end_word"] + rel = row["relation"] + if not row['weight']: continue # corruption / skip? + w = float(row["weight"]) + surf = row.get("surface_text", "") + edges[(sw, rel)].append((ew, w, surf)) + existing_triples.add((sw, ew, rel)) + + return edges, existing_triples + + +def load_checkpoint(): + """Load enhancement log to determine what's already been processed.""" + processed = set() # (word, phase) + if LOG_CSV.exists(): + with open(LOG_CSV, newline="", encoding="utf-8") as f: + for row in csv.DictReader(f): + processed.add((row["source_word"], row["phase"])) + return processed + + +def append_log(word, phase, edges_generated, edges_accepted, edges_duplicate, edges_oov): + """Append a row to the enhancement log.""" + write_header = not LOG_CSV.exists() + with open(LOG_CSV, "a", newline="", encoding="utf-8") as f: + writer = csv.writer(f) + if write_header: + writer.writerow(["source_word", "phase", "timestamp", + "edges_generated", "edges_accepted", "edges_duplicate", "edges_oov"]) + writer.writerow([word, phase, datetime.now().isoformat(), + edges_generated, edges_accepted, edges_duplicate, edges_oov]) + + +def append_augmented_edges(edges): + """Append edges to the augmented relations CSV.""" + write_header = not AUGMENTED_CSV.exists() + with open(AUGMENTED_CSV, "a", newline="", encoding="utf-8") as f: + writer = csv.writer(f) + if write_header: + writer.writerow(["start_word", "end_word", "relation", "weight", "surface_text", "source"]) + for e in edges: + writer.writerow([e["start_word"], e["end_word"], e["relation"], + e["weight"], e["surface_text"], e["source"]]) + + +def append_candidates(candidates): + """Append candidate words to the candidate additions CSV.""" + write_header = not CANDIDATE_CSV.exists() + with open(CANDIDATE_CSV, "a", newline="", encoding="utf-8") as f: + writer = csv.writer(f) + if write_header: + writer.writerow(["word", "suggested_by", "relation_context", "frequency"]) + for c in candidates: + writer.writerow([c["word"], c["suggested_by"], c["relation_context"], c["frequency"]]) + + +# --------------------------------------------------------------------------- +# Parsing +# --------------------------------------------------------------------------- + +def parse_llm_relations(response_text, source_word): + """Parse structured LLM output into edge dicts. + + Handles bullets, numbering, extra whitespace, multi-word targets. + """ + edges = [] + if not response_text: + return edges + + for line in response_text.strip().split("\n"): + line = line.strip() + if not line: + continue + + # Strip leading bullets/numbers: "- ", "1. ", "* ", etc. + line = re.sub(r"^[\d]+[.)]\s*", "", line) + line = re.sub(r"^[-*•]\s*", "", line) + line = line.strip() + + if not line or "NONE" in line.upper(): + continue + + # Match: RELATION_TYPE: target_word(s) | surface text + match = re.match(r"^(\w+):\s*(.+?)\s*\|\s*(.+)$", line) + if not match: + continue + + relation, target_raw, surface = match.groups() + relation = relation.strip() + + if relation not in VALID_RELATIONS: + continue + + # Normalize target: lowercase, replace spaces with underscores for multi-word + target = target_raw.strip().lower() + target = re.sub(r"\s+", "_", target) + + # Skip self-loops + if target == source_word: + continue + + edges.append({ + "start_word": source_word, + "end_word": target, + "relation": relation, + "weight": 0.8, + "surface_text": surface.strip(), + "source": "llm_augmented", + }) + + return edges + + +def parse_bridge_response(response_text, word_a, word_b): + """Parse bridge discovery LLM output.""" + edges = [] + if not response_text: + return edges + + for line in response_text.strip().split("\n"): + line = line.strip() + if not line: + continue + + # Strip common prefixes + line = re.sub(r"^[\d]+[.)]\s*", "", line) + line = re.sub(r"^[-*•]\s*", "", line) + line = re.sub(r"^BRIDGE:\s*", "", line, flags=re.IGNORECASE) + line = line.strip() + + if not line: + continue + + # BRIDGE_WORD | relation_to_first: TYPE | relation_to_second: TYPE | explanation + parts = [p.strip() for p in line.split("|")] + if len(parts) < 3: + continue + + bridge_word = parts[0].strip().lower().replace(" ", "_") + + # Parse relation_to_first + rel1_match = re.search(r"(?:relation_to_first|first):\s*(\w+)", parts[1], re.IGNORECASE) + rel2_match = re.search(r"(?:relation_to_second|second):\s*(\w+)", parts[2], re.IGNORECASE) + + if not rel1_match or not rel2_match: + # Try simpler format: just the relation type + rel1_match = re.match(r"(\w+)", parts[1].split(":")[-1].strip()) + rel2_match = re.match(r"(\w+)", parts[2].split(":")[-1].strip()) + + if not rel1_match or not rel2_match: + continue + + rel1 = rel1_match.group(1) + rel2 = rel2_match.group(1) + + if rel1 not in VALID_RELATIONS or rel2 not in VALID_RELATIONS: + continue + + explanation = parts[3].strip() if len(parts) > 3 else "" + + # Create edges: word_a -> bridge and bridge -> word_b + edges.append({ + "start_word": word_a, + "end_word": bridge_word, + "relation": rel1, + "weight": 0.8, + "surface_text": explanation, + "source": "llm_bridge", + }) + edges.append({ + "start_word": bridge_word, + "end_word": word_b, + "relation": rel2, + "weight": 0.8, + "surface_text": explanation, + "source": "llm_bridge", + }) + + return edges + + +def parse_property_response(response_text, word): + """Parse property enrichment LLM output.""" + edges = [] + if not response_text: + return edges + + for line in response_text.strip().split("\n"): + line = line.strip() + if not line: + continue + + line = re.sub(r"^[\d]+[.)]\s*", "", line) + line = re.sub(r"^[-*•]\s*", "", line) + line = line.strip() + + if not line: + continue + + # PROPERTY | explanation + parts = [p.strip() for p in line.split("|")] + if len(parts) < 1: + continue + + prop = parts[0].strip().lower().replace(" ", "_") + explanation = parts[1].strip() if len(parts) > 1 else f"{word} is {prop}" + + if not prop or prop == word: + continue + + edges.append({ + "start_word": word, + "end_word": prop, + "relation": "HasProperty", + "weight": 0.8, + "surface_text": explanation, + "source": "llm_property", + }) + + return edges + + +# --------------------------------------------------------------------------- +# Phase 1: Per-Word Expansion +# --------------------------------------------------------------------------- + +PHASE1_SYSTEM = """You are a commonsense knowledge annotator. You will be given a concrete noun and its known relationships. Your job is to generate ADDITIONAL commonsense relationships that are missing. + +Rules: +- Only generate relationships involving concrete, tangible things (animals, foods, tools, plants, buildings, weather, landscape, household objects) +- Every relationship must be something a typical adult would agree is true +- Do not repeat any relationship already listed as "known" +- Target words should be common English words (top 3000 frequency preferred) +- Output ONLY the structured format shown below, one relationship per line +- If you cannot think of good relationships for a given type, output NONE for that type +- Aim for 3-5 relationships per type where possible + +Output format (one per line): +RELATION_TYPE: target_word | short natural phrasing + +Example output: +AtLocation: barn | you find a horse in a barn +UsedFor: riding | a horse is used for riding +HasA: mane | a horse has a mane +CapableOf: gallop | a horse can gallop +MadeOf: NONE +PartOf: herd | a horse is part of a herd""" + + +PHASE1_USER = """Word: {word} +Categories: {categories} + +Known relationships: +{existing_edges} + +Generate additional relationships for these types: +- AtLocation (where is it found?) +- UsedFor (what is it used for?) +- HasA (what does it have / contain?) +- PartOf (what is it part of?) +- CapableOf (what can it do?) +- MadeOf (what is it made of?) +- HasPrerequisite (what do you need before you can have/use it?) +- Causes (what does it cause or lead to?) +- HasProperty (what adjectives describe it? — limit to physical/sensory properties)""" + + +def format_existing_edges(edges_dict, word): + """Format existing edges for a word grouped by relation type.""" + relation_types = ["AtLocation", "UsedFor", "HasA", "PartOf", "CapableOf", + "MadeOf", "HasPrerequisite", "Causes", "HasProperty"] + + lines = [] + for rel in relation_types: + targets = edges_dict.get((word, rel), []) + if targets: + formatted = ", ".join(f"{t[0]} (weight {t[1]:.1f})" for t in targets[:10]) + lines.append(f"{rel}: {formatted}") + else: + lines.append(f"{rel}: (none in database)") + return "\n".join(lines) + + +def run_phase1(vocab, edges, existing_triples, checkpoint, dry_run=False): + """Phase 1: Per-word relationship expansion.""" + words = sorted(vocab.keys()) + total = len(words) + total_accepted = 0 + total_skipped = 0 + + print(f"Phase 1: Processing {total} words...") + + for i, word in enumerate(words): + if (word, "1") in checkpoint: + total_skipped += 1 + continue + + categories = ", ".join(vocab[word]["categories"]) + existing = format_existing_edges(edges, word) + + user_prompt = PHASE1_USER.format( + word=word, categories=categories, existing_edges=existing + ) + + messages = [ + {"role": "system", "content": PHASE1_SYSTEM}, + {"role": "user", "content": user_prompt}, + ] + + if dry_run: + if i < 3: # Show first 3 prompts + print(f"\n--- Prompt for '{word}' ---") + print(f"System: {PHASE1_SYSTEM[:200]}...") + print(f"User:\n{user_prompt}") + elif i == 3: + print(f"\n... ({total - 3} more words) ...") + continue + + response = llm_chat_completion(messages) + parsed = parse_llm_relations(response, word) if response else [] + + # Classify edges + accepted = [] + candidates = [] + duplicates = 0 + + for edge in parsed: + triple = (edge["start_word"], edge["end_word"], edge["relation"]) + if triple in existing_triples: + duplicates += 1 + continue + + existing_triples.add(triple) + + if edge["end_word"] in vocab: + accepted.append(edge) + else: + candidates.append({ + "word": edge["end_word"], + "suggested_by": word, + "relation_context": f"{edge['relation']}: {edge['surface_text']}", + "frequency": 1, + }) + + if accepted: + append_augmented_edges(accepted) + # Also update in-memory edges for subsequent words + for e in accepted: + edges[(e["start_word"], e["relation"])].append( + (e["end_word"], e["weight"], e["surface_text"])) + + if candidates: + append_candidates(candidates) + + total_accepted += len(accepted) + + append_log(word, "1", len(parsed), len(accepted), duplicates, len(candidates)) + + if (i + 1) % 50 == 0: + print(f" [{i+1}/{total}] {total_accepted} edges accepted so far") + + time.sleep(0.1) + + if dry_run: + print(f"\nDry run complete. Would process {total - total_skipped} words.") + else: + print(f"\nPhase 1 complete: {total_accepted} new edges accepted.") + + +# --------------------------------------------------------------------------- +# Phase 2: Cross-Word Bridge Discovery +# --------------------------------------------------------------------------- + +PHASE2_SYSTEM = """You are a commonsense knowledge annotator. You will be given two concrete nouns. Your job is to identify a BRIDGE word that connects them — something that relates to both. + +Rules: +- The bridge word must be a common, concrete noun +- State the relationship type for each connection +- Valid relationship types: AtLocation, UsedFor, HasA, PartOf, CapableOf, MadeOf, HasPrerequisite, Causes, HasProperty, ReceivesAction, Desires, CausesDesire, LocatedNear, CreatedBy +- Output format: BRIDGE_WORD | relation_to_first: TYPE | relation_to_second: TYPE | explanation + +Example: +Words: "cow" and "butter" +milk | relation_to_first: CapableOf | relation_to_second: MadeOf | milk connects production to product""" + + +PHASE2_USER = """Words: "{word_a}" and "{word_b}" +Categories: {word_a} is {categories_a}, {word_b} is {categories_b} +Find 1-3 bridge words that connect them.""" + + +def build_reachability(vocab, edges): + """Build 2-hop reachability from vocab words to other vocab words.""" + vocab_set = set(vocab.keys()) + reachable = defaultdict(set) # word -> set of reachable vocab words + + for word in vocab: + # Direct (1-hop) neighbors in vocab + for (sw, rel), targets in edges.items(): + if sw == word: + for (ew, w, s) in targets: + if ew in vocab_set and ew != word: + reachable[word].add(ew) + # 2-hop from this neighbor + for (sw2, rel2), targets2 in edges.items(): + if sw2 == ew: + for (ew2, w2, s2) in targets2: + if ew2 in vocab_set and ew2 != word: + reachable[word].add(ew2) + + return reachable + + +def run_phase2(vocab, edges, existing_triples, checkpoint, dry_run=False): + """Phase 2: Cross-word bridge discovery.""" + print("Phase 2: Building reachability matrix...") + reachable = build_reachability(vocab, edges) + + # Find low-connectivity words + vocab_set = set(vocab.keys()) + low_connectivity = [] + for word in vocab: + reach_count = len(reachable.get(word, set())) + if reach_count < 10: + low_connectivity.append((word, reach_count)) + + low_connectivity.sort(key=lambda x: x[1]) + print(f" {len(low_connectivity)} words with <10 reachable vocab words") + + # Build category index + by_category = defaultdict(list) + for word, info in vocab.items(): + for cat in info["categories"]: + by_category[cat].append(word) + + total_accepted = 0 + pairs_processed = 0 + total_skipped = 0 + + for word, reach_count in low_connectivity: + if (word, "2") in checkpoint: + total_skipped += 1 + continue + + word_cats = vocab[word]["categories"] + word_reachable = reachable.get(word, set()) + + # Find same-category words that are unreachable + unreachable = [] + for cat in word_cats: + for peer in by_category.get(cat, []): + if peer != word and peer not in word_reachable: + unreachable.append(peer) + + if not unreachable: + append_log(word, "2", 0, 0, 0, 0) + continue + + # Sample 5-10 unreachable peers + sample = random.sample(unreachable, min(10, len(unreachable))) + + accepted_for_word = 0 + + for peer in sample: + pair_key = f"{word}:{peer}" + if (pair_key, "2") in checkpoint: + continue + + categories_a = ", ".join(vocab[word]["categories"]) + categories_b = ", ".join(vocab[peer]["categories"]) + + user_prompt = PHASE2_USER.format( + word_a=word, word_b=peer, + categories_a=categories_a, categories_b=categories_b, + ) + + messages = [ + {"role": "system", "content": PHASE2_SYSTEM}, + {"role": "user", "content": user_prompt}, + ] + + if dry_run: + if pairs_processed < 3: + print(f"\n--- Bridge prompt: '{word}' <-> '{peer}' ---") + print(f"User:\n{user_prompt}") + elif pairs_processed == 3: + print(f"\n... (more pairs) ...") + pairs_processed += 1 + continue + + response = llm_chat_completion(messages) + parsed = parse_bridge_response(response, word, peer) if response else [] + + accepted = [] + duplicates = 0 + oov = 0 + + for edge in parsed: + triple = (edge["start_word"], edge["end_word"], edge["relation"]) + if triple in existing_triples: + duplicates += 1 + continue + existing_triples.add(triple) + + # For bridge edges, both endpoints should ideally be in vocab + if edge["start_word"] in vocab_set and edge["end_word"] in vocab_set: + accepted.append(edge) + elif edge["start_word"] in vocab_set or edge["end_word"] in vocab_set: + # At least one end in vocab — still useful + accepted.append(edge) + else: + oov += 1 + + if accepted: + append_augmented_edges(accepted) + for e in accepted: + edges[(e["start_word"], e["relation"])].append( + (e["end_word"], e["weight"], e["surface_text"])) + accepted_for_word += len(accepted) + + pairs_processed += 1 + time.sleep(0.1) + + total_accepted += accepted_for_word + append_log(word, "2", 0, accepted_for_word, 0, 0) + + if (pairs_processed) % 20 == 0: + print(f" {pairs_processed} pairs processed, {total_accepted} edges accepted") + + if dry_run: + print(f"\nDry run complete. Would process {pairs_processed} word pairs.") + else: + print(f"\nPhase 2 complete: {total_accepted} bridge edges accepted from {pairs_processed} pairs.") + + +# --------------------------------------------------------------------------- +# Phase 3: Property Enrichment +# --------------------------------------------------------------------------- + +PHASE3_SYSTEM = """You are a commonsense knowledge annotator. Given a concrete noun, list its most distinctive physical or sensory properties — things you could see, touch, hear, smell, or taste. Also list behavioral properties for animals. + +Rules: +- Only physical/sensory/behavioral properties, not abstract qualities +- Properties should DISTINGUISH this thing from similar things in its category +- Output one property per line as: PROPERTY | brief explanation +- Aim for 5-8 properties""" + + +PHASE3_USER = """Word: {word} +Category: {categories} +Other words in same category: {peers} + +What properties distinguish {word} from the others listed?""" + + +def run_phase3(vocab, edges, existing_triples, checkpoint, dry_run=False): + """Phase 3: Property enrichment for false_equivalence templates.""" + by_category = defaultdict(list) + for word, info in vocab.items(): + for cat in info["categories"]: + by_category[cat].append(word) + + words = sorted(vocab.keys()) + total = len(words) + total_accepted = 0 + total_skipped = 0 + + print(f"Phase 3: Property enrichment for {total} words...") + + for i, word in enumerate(words): + if (word, "3") in checkpoint: + total_skipped += 1 + continue + + word_cats = vocab[word]["categories"] + categories = ", ".join(word_cats) + + # Gather same-category peers (sample of 10) + peers = set() + for cat in word_cats: + for peer in by_category.get(cat, []): + if peer != word: + peers.add(peer) + peer_sample = random.sample(list(peers), min(10, len(peers))) if peers else [] + + if not peer_sample: + append_log(word, "3", 0, 0, 0, 0) + continue + + user_prompt = PHASE3_USER.format( + word=word, categories=categories, + peers=", ".join(peer_sample), + ) + + messages = [ + {"role": "system", "content": PHASE3_SYSTEM}, + {"role": "user", "content": user_prompt}, + ] + + if dry_run: + if i < 3: + print(f"\n--- Property prompt for '{word}' ---") + print(f"User:\n{user_prompt}") + elif i == 3: + print(f"\n... ({total - 3} more words) ...") + continue + + response = llm_chat_completion(messages) + parsed = parse_property_response(response, word) if response else [] + + accepted = [] + duplicates = 0 + + for edge in parsed: + triple = (edge["start_word"], edge["end_word"], edge["relation"]) + if triple in existing_triples: + duplicates += 1 + continue + existing_triples.add(triple) + accepted.append(edge) + + if accepted: + append_augmented_edges(accepted) + for e in accepted: + edges[(e["start_word"], e["relation"])].append( + (e["end_word"], e["weight"], e["surface_text"])) + + total_accepted += len(accepted) + append_log(word, "3", len(parsed), len(accepted), duplicates, 0) + + if (i + 1) % 50 == 0: + print(f" [{i+1}/{total}] {total_accepted} properties accepted so far") + + time.sleep(0.1) + + if dry_run: + print(f"\nDry run complete. Would process {total - total_skipped} words.") + else: + print(f"\nPhase 3 complete: {total_accepted} new HasProperty edges accepted.") + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +def main(): + parser = argparse.ArgumentParser( + description="LLM-augmented graph enhancement for folksy subgraph." + ) + group = parser.add_mutually_exclusive_group(required=True) + group.add_argument("--phase", type=int, choices=[1, 2, 3], + help="Run a specific phase (1, 2, or 3)") + group.add_argument("--all", action="store_true", + help="Run all three phases in sequence") + parser.add_argument("--dry-run", action="store_true", + help="Print prompts without calling LLM") + + args = parser.parse_args() + + vocab = load_vocab() + edges, existing_triples = load_relations() + checkpoint = load_checkpoint() + + print(f"Loaded {len(vocab)} vocab words, {len(existing_triples)} existing edge triples.") + print(f"Checkpoint: {len(checkpoint)} (word, phase) pairs already processed.") + + phases = [args.phase] if args.phase else [1, 2, 3] + + for phase in phases: + print(f"\n{'='*60}") + print(f"Running Phase {phase}") + print(f"{'='*60}") + + if phase == 1: + run_phase1(vocab, edges, existing_triples, checkpoint, args.dry_run) + elif phase == 2: + run_phase2(vocab, edges, existing_triples, checkpoint, args.dry_run) + elif phase == 3: + run_phase3(vocab, edges, existing_triples, checkpoint, args.dry_run) + + # Reload checkpoint after each phase for resumability + checkpoint = load_checkpoint() + + print("\nDone.") + + +if __name__ == "__main__": + main() diff --git a/scripts/expand_vocab.py b/scripts/expand_vocab.py new file mode 100644 index 0000000..580748c --- /dev/null +++ b/scripts/expand_vocab.py @@ -0,0 +1,512 @@ +#!/usr/bin/env python3 +"""Expand folksy vocabulary with high-quality candidates from LLM suggestions. + +Reads candidate_additions.csv (words suggested by the LLM during phase 1 that +weren't in the vocab), filters for quality, uses the LLM to assign categories, +and appends the survivors to folksy_vocab.csv. + +After running this, re-run `enhance_graph.py --phase 1` to generate edges +for the new words (the checkpoint will skip already-processed words). + +Usage: + python scripts/expand_vocab.py # Full run + python scripts/expand_vocab.py --dry-run # Show what would be added + python scripts/expand_vocab.py --min-citations 8 # Stricter threshold +""" + +import argparse +import csv +import json +import re +import shutil +import sys +import time +from collections import Counter, defaultdict +from datetime import datetime +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent +PROJECT_DIR = SCRIPT_DIR.parent +DATA_DIR = PROJECT_DIR / "data" + +LLM_ENDPOINT = "http://192.168.1.100:8853/v1d/chat/completions" +LLM_MODEL = "THUDM-GLM4-32B" + +VOCAB_CSV = DATA_DIR / "folksy_vocab.csv" +CANDIDATE_CSV = DATA_DIR / "candidate_additions.csv" + +# Valid categories from the existing vocabulary +VALID_CATEGORIES = { + "animal", "beverage", "bird", "building", "clothing", "container", "crop", + "fabric", "fish", "flower", "food", "fruit", "furniture", "grain", "herb", + "insect", "instrument", "landscape", "material", "metal", "mineral", + "organism", "plant", "rock", "seed", "shelter", "spice", "stone", + "structure", "tool", "tree", "vegetable", "vehicle", "water", "weapon", "wood", +} + +# --------------------------------------------------------------------------- +# Exclusion lists +# --------------------------------------------------------------------------- + +# Abstract concepts, emotions, processes — not concrete enough for folksy vocab +EXCLUDE_ABSTRACT = { + "ecosystem", "satisfaction", "fullness", "warmth", "fear", "relaxation", + "growth", "interest", "nature", "protection", "digestion", "injury", + "decoration", "construction", "landscape", "noise", "sound", "energy", + "nourishment", "nutrition", "pollination", "sustainability", "tradition", + "biodiversity", "symbolism", "elegance", "resilience", "patience", + "beauty", "abundance", "fertility", "creativity", "harmony", "comfort", + "curiosity", "companionship", "loyalty", "aggression", "alertness", + "camouflage", "predation", "migration", "hibernation", "decomposition", + "erosion", "combustion", "fermentation", "oxidation", "corrosion", + "photosynthesis", "respiration", "evaporation", "precipitation", + "transpiration", "germination", "excitement", "enjoyment", "satiety", + "stability", "organization", "fragrance", "moisture", "wildlife", + "preservation", "conversation", "inspiration", "storage", "observation", + "hydration", "destruction", "entertainment", "education", "knowledge", + "safety", "practice", "research", "skill", "space", "license", + "collection", "habitat", "pollution", "health", "vibration", "wonder", + "awe", "refreshment", "irritation", "happiness", "joy", "damage", + "death", "pain", "thirst", "fear", "alarm", "contents", "ingredients", + "electricity", "oxygen", "navigation", "recreation", "meditation", + "nutrition", "celebration", "communication", "imagination", "devotion", + "ambition", "endurance", "independence", "discipline", "cooperation", + "sweetness", "fullness", "aroma", "flavor", "fragrance", "texture", + "smell", "color", "contents", "surface", "bottom", "edge", + "nutrients", "study", "outfit", "upholstery", +} + +# Scientific/technical — not folksy enough for folk wisdom +EXCLUDE_TECHNICAL = { + "cellulose", "exoskeleton", "protein", "tissue", "cells", "alloy", + "cellulose", "enzyme", "chlorophyll", "genome", "photon", + "organism", "molecule", "compound", "polymer", "isotope", + "ecosystem", "metabolism", "catalyst", "membrane", "chromosome", + "cell", "nutrient", "ingredient", "material", "content", +} + +# Collective/institutional nouns — not concrete individual things +EXCLUDE_INSTITUTIONAL = { + "orchestra", "fleet", "arsenal", "toolkit", "collection", + "restaurant", "museum", "university", "corporation", "organization", + "musician", "breakfast", "dinner", "meal", "dish", "sandwich", + "seafood", "refrigerator", "garage", "basement", "park", +} + +# Adjectives and properties — useful as HasProperty targets but not as vocab words +EXCLUDE_ADJECTIVES = { + "small", "large", "heavy", "colorful", "green", "brown", "hard", + "white", "round", "sharp", "sturdy", "long", "soft", "flat", + "sweet", "bitter", "smooth", "rough", "bright", "dark", "dry", + "wet", "thick", "thin", "warm", "cold", "hot", "tall", "short", + "red", "blue", "yellow", "black", "grey", "gray", "pink", + "fragrant", "loud", "spicy", "sour", "tough", "delicate", "strong", + "weak", "light", "dense", "portable", "lightweight", "transparent", + "opaque", "flexible", "rigid", "brittle", "elastic", "porous", + "compact", "edible", "toxic", "aromatic", "nocturnal", "aquatic", + "durable", "cylindrical", "wooden", "shiny", "solid", "narrow", + "metallic", "pungent", "juicy", "fast", "powerful", "woody", + "fibrous", "savory", "liquid", "enclosed", "rectangular", "wild", + "feathered", "leafy", "crunchy", "dangerous", "fuzzy", "slimy", + "natural", "waterproof", "electronic", +} + +# Words that are clearly verbs or gerunds +EXCLUDE_VERBS = { + "eating", "cooking", "growing", "fishing", "hunting", "flying", + "mining", "flavoring", "singing", "blooming", "holding", "baking", + "ripening", "opening", "cutting", "protecting", "seasoning", + "storing", "building", "swimming", "brewing", "weaving", "carving", + "climbing", "digging", "plowing", "sewing", "spinning", "tanning", + "swim", "run", "grow", "eat", "hunt", "peck", "bite", "dive", + "crawl", "cut", "shine", "sparkle", +} + + +def singularize(word): + """Best-effort singularization. Returns (singular, was_plural).""" + # Irregular plurals + irregulars = { + "teeth": "tooth", "feet": "foot", "geese": "goose", "mice": "mouse", + "lice": "louse", "dice": "die", "oxen": "ox", "children": "child", + "leaves": "leaf", "loaves": "loaf", "halves": "half", "knives": "knife", + "lives": "life", "wives": "wife", "wolves": "wolf", "shelves": "shelf", + "calves": "calf", + } + if word in irregulars: + return irregulars[word], True + + # -ves -> -f (already covered some above, catch remaining) + if word.endswith("ves"): + candidate = word[:-3] + "f" + return candidate, True + + # -ies -> -y + if word.endswith("ies") and len(word) > 4: + return word[:-3] + "y", True + + # -ses, -xes, -zes, -ches, -shes -> drop -es + if word.endswith(("ses", "xes", "zes", "ches", "shes")): + return word[:-2], True + + # -s (but not -ss, -us, -is) + if word.endswith("s") and not word.endswith(("ss", "us", "is")): + return word[:-1], True + + return word, False + + +def is_plural_of_existing(word, existing_vocab): + """Check if word is likely a plural form of an existing vocab word.""" + # word + s + if word.endswith("s") and word[:-1] in existing_vocab: + return True + # word + es + if word.endswith("es") and word[:-2] in existing_vocab: + return True + # word ending ies -> y + if word.endswith("ies") and word[:-3] + "y" in existing_vocab: + return True + # word ending ves -> f/fe + if word.endswith("ves"): + if word[:-3] + "f" in existing_vocab: + return True + if word[:-3] + "fe" in existing_vocab: + return True + return False + + +def is_plural_of_candidate(word, accepted_words): + """Check if word is a plural of another candidate, or vice versa.""" + # Is this word a plural of something accepted? + if word.endswith("s") and word[:-1] in accepted_words: + return True + if word.endswith("es") and word[:-2] in accepted_words: + return True + if word.endswith("ies") and word[:-3] + "y" in accepted_words: + return True + # Is something accepted a plural of this word? + if word + "s" in accepted_words: + return True + if word + "es" in accepted_words: + return True + if word.endswith("f") and word[:-1] + "ves" in accepted_words: + return True + if word.endswith("fe") and word[:-2] + "ves" in accepted_words: + return True + return False + + +# --------------------------------------------------------------------------- +# LLM categorization +# --------------------------------------------------------------------------- + +CATEGORIZE_SYSTEM = """You are a vocabulary categorizer. Given a list of concrete nouns, assign each one to one or more categories from this fixed list: + +animal, beverage, bird, building, clothing, container, crop, fabric, fish, flower, food, fruit, furniture, grain, herb, insect, instrument, landscape, material, metal, mineral, organism, plant, rock, seed, shelter, spice, stone, structure, tool, tree, vegetable, vehicle, water, weapon, wood + +Rules: +- Use ONLY categories from the list above +- A word can have multiple categories (e.g., "brick" -> material, stone) +- If a word fits none of the categories well, output SKIP +- Output format: word: category1, category2 +- One word per line""" + +CATEGORIZE_USER = """Categorize these words: +{word_list}""" + + +def llm_chat_completion(messages, max_retries=3): + """Chat completion with retry logic.""" + import requests + + for attempt in range(max_retries): + try: + resp = requests.post(LLM_ENDPOINT, json={ + "model": LLM_MODEL, + "messages": messages, + }, timeout=120) + resp.raise_for_status() + data = resp.json() + return data["choices"][0]["message"]["content"] + except Exception as e: + wait = (2 ** attempt) + print(f" LLM call failed (attempt {attempt+1}/{max_retries}): {e}", + file=sys.stderr) + if attempt < max_retries - 1: + print(f" Retrying in {wait}s...", file=sys.stderr) + time.sleep(wait) + else: + print(f" Giving up on this batch.", file=sys.stderr) + return None + + +def parse_categories(response_text, valid_words): + """Parse LLM categorization response.""" + result = {} + if not response_text: + return result + + for line in response_text.strip().split("\n"): + line = line.strip() + if not line: + continue + + # Strip bullets/numbers + line = re.sub(r"^[\d]+[.)]\s*", "", line) + line = re.sub(r"^[-*•]\s*", "", line) + line = line.strip() + + # Match: word: cat1, cat2 + match = re.match(r"^(\w+)\s*:\s*(.+)$", line) + if not match: + continue + + word = match.group(1).strip().lower() + cats_raw = match.group(2).strip() + + if "SKIP" in cats_raw.upper(): + continue + + cats = [] + for c in cats_raw.split(","): + c = c.strip().lower() + if c in VALID_CATEGORIES: + cats.append(c) + + if word in valid_words and cats: + result[word] = cats + + return result + + +def categorize_words(words, batch_size=25): + """Categorize words using the LLM in batches.""" + all_categories = {} + word_set = set(words) + + for i in range(0, len(words), batch_size): + batch = words[i:i + batch_size] + word_list = "\n".join(f"- {w}" for w in batch) + + messages = [ + {"role": "system", "content": CATEGORIZE_SYSTEM}, + {"role": "user", "content": CATEGORIZE_USER.format(word_list=word_list)}, + ] + + response = llm_chat_completion(messages) + parsed = parse_categories(response, word_set) + all_categories.update(parsed) + + categorized = len(parsed) + print(f" Batch {i // batch_size + 1}: {categorized}/{len(batch)} categorized") + time.sleep(0.1) + + return all_categories + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +def main(): + parser = argparse.ArgumentParser( + description="Expand folksy vocabulary with LLM-suggested candidates." + ) + parser.add_argument("--min-citations", type=int, default=5, + help="Minimum number of vocab words that suggested this candidate (default: 5)") + parser.add_argument("--dry-run", action="store_true", + help="Show what would be added without modifying files") + parser.add_argument("--no-llm", action="store_true", + help="Skip LLM categorization (use placeholder categories)") + + args = parser.parse_args() + + # Load existing vocab + existing_vocab = {} + with open(VOCAB_CSV, newline="", encoding="utf-8") as f: + for row in csv.DictReader(f): + existing_vocab[row["word"]] = row + existing_words = set(existing_vocab.keys()) + print(f"Existing vocabulary: {len(existing_words)} words") + + # Load candidates + candidates = [] + with open(CANDIDATE_CSV, newline="", encoding="utf-8") as f: + for row in csv.DictReader(f): + candidates.append(row) + + # Aggregate: count unique sources per candidate word + word_sources = defaultdict(set) + for c in candidates: + word_sources[c["word"]].add(c["suggested_by"]) + + print(f"Total candidate rows: {len(candidates)}") + print(f"Unique candidate words: {len(word_sources)}") + + # Normalize plurals: merge citation counts into singular forms + normalized_sources = defaultdict(set) + for word, sources in word_sources.items(): + singular, was_plural = singularize(word) + # Merge into the singular form + normalized_sources[singular].update(sources) + # Replace word_sources with normalized version + word_sources = {w: srcs for w, srcs in normalized_sources.items()} + print(f"After singularization: {len(word_sources)} unique candidates") + + # Filter + accepted = [] + reject_reasons = Counter() + + # Sort by citation count descending for consistent ordering + sorted_candidates = sorted(word_sources.items(), key=lambda x: len(x[1]), reverse=True) + accepted_set = set() + + for word, sources in sorted_candidates: + citation_count = len(sources) + + # Minimum citation threshold + if citation_count < args.min_citations: + reject_reasons["below_threshold"] += 1 + continue + + # No multi-word (underscore) candidates + if "_" in word: + reject_reasons["multi_word"] += 1 + continue + + # Already in vocab + if word in existing_words: + reject_reasons["already_in_vocab"] += 1 + continue + + # Exclude abstracts + if word in EXCLUDE_ABSTRACT: + reject_reasons["abstract"] += 1 + continue + + # Exclude adjectives + if word in EXCLUDE_ADJECTIVES: + reject_reasons["adjective"] += 1 + continue + + # Exclude verbs/gerunds + if word in EXCLUDE_VERBS: + reject_reasons["verb_gerund"] += 1 + continue + + # Exclude technical/scientific + if word in EXCLUDE_TECHNICAL: + reject_reasons["technical"] += 1 + continue + + # Exclude institutional/collective + if word in EXCLUDE_INSTITUTIONAL: + reject_reasons["institutional"] += 1 + continue + + # Gerund pattern catch-all (but allow exceptions) + if word.endswith("ing") and word not in {"ring", "spring", "string", "wing", "ceiling"}: + reject_reasons["gerund_pattern"] += 1 + continue + + # Exclude plurals of existing vocab + if is_plural_of_existing(word, existing_words): + reject_reasons["plural_of_existing"] += 1 + continue + + # Exclude plurals of already-accepted candidates + if is_plural_of_candidate(word, accepted_set): + reject_reasons["plural_of_candidate"] += 1 + continue + + # Single character + if len(word) < 2: + reject_reasons["too_short"] += 1 + continue + + accepted.append((word, citation_count)) + accepted_set.add(word) + + print(f"\nFiltering results:") + print(f" Accepted: {len(accepted)}") + for reason, count in reject_reasons.most_common(): + print(f" Rejected ({reason}): {count}") + + if not accepted: + print("\nNo candidates passed filtering.") + return + + # Show accepted words + print(f"\nAccepted candidates ({len(accepted)}):") + for word, count in accepted: + print(f" {word:25s} cited by {count:3d} vocab words") + + if args.dry_run: + print(f"\nDry run complete. Would add {len(accepted)} words to vocabulary.") + return + + # Categorize with LLM + words_to_categorize = [w for w, _ in accepted] + + if args.no_llm: + print("\nSkipping LLM categorization (--no-llm). Using 'material' as placeholder.") + categories = {w: ["material"] for w in words_to_categorize} + else: + print(f"\nCategorizing {len(words_to_categorize)} words with LLM...") + categories = categorize_words(words_to_categorize) + + # Words the LLM couldn't categorize get skipped + uncategorized = [w for w in words_to_categorize if w not in categories] + if uncategorized: + print(f"\n {len(uncategorized)} words could not be categorized (skipped):") + for w in uncategorized: + print(f" {w}") + + # Build new vocab entries + new_entries = [] + for word, citation_count in accepted: + if word not in categories: + continue + cats = categories[word] + new_entries.append({ + "word": word, + "categories": ",".join(cats), + "tangibility_score": "0.80", + "conceptnet_edge_count": "0", + "frequency_rank": "0", + }) + + if not new_entries: + print("\nNo entries to add after categorization.") + return + + # Backup existing vocab + backup_path = VOCAB_CSV.with_suffix(f".csv.bak.{datetime.now().strftime('%Y%m%d_%H%M%S')}") + shutil.copy2(VOCAB_CSV, backup_path) + print(f"\nBacked up vocabulary to {backup_path.name}") + + # Append to vocab CSV + with open(VOCAB_CSV, "a", newline="", encoding="utf-8") as f: + writer = csv.DictWriter(f, fieldnames=["word", "categories", "tangibility_score", + "conceptnet_edge_count", "frequency_rank"]) + for entry in new_entries: + writer.writerow(entry) + + print(f"\nAdded {len(new_entries)} words to {VOCAB_CSV.name}") + print(f"New vocabulary size: {len(existing_words) + len(new_entries)}") + + # Summary by category + cat_counts = Counter() + for entry in new_entries: + for c in entry["categories"].split(","): + cat_counts[c.strip()] += 1 + print(f"\nNew words by category:") + for cat, count in cat_counts.most_common(): + print(f" {cat:20s} {count:3d}") + + print(f"\nNext step: run 'python scripts/enhance_graph.py --phase 1' to generate edges for new words.") + + +if __name__ == "__main__": + main() diff --git a/scripts/filter_corpus.py b/scripts/filter_corpus.py new file mode 100644 index 0000000..40c33c2 --- /dev/null +++ b/scripts/filter_corpus.py @@ -0,0 +1,177 @@ +#!/usr/bin/env python3 +"""Quality filtering for polished folksy sayings. + +Reads corpus_polished.jsonl, applies quality filters, outputs filtered corpus +and discard analysis. + +Usage: + python scripts/filter_corpus.py + python scripts/filter_corpus.py --input corpus/corpus_polished.jsonl --output corpus/corpus_filtered.jsonl +""" + +import argparse +import csv +import json +import sys +from difflib import SequenceMatcher +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent +PROJECT_DIR = SCRIPT_DIR.parent +CORPUS_DIR = PROJECT_DIR / "corpus" + + +def quality_filter(entry): + """Apply quality filters to a polished entry. + + Returns (passed, reason) tuple. + """ + text = entry.get("polished_text", "") + if not text: + return False, "no_polished_text" + + words = text.split() + + # Length check + if len(words) > 25: + return False, "too_long" + if len(words) < 5: + return False, "too_short" + + # Must contain at least 2 of the original slot-fill nouns + slot_words = set(entry.get("slots", {}).values()) + words_present = sum(1 for w in slot_words if w.lower() in text.lower()) + if words_present < 2: + return False, "lost_key_nouns" + + # No raw ConceptNet artifacts (multi-word underscore phrases) + if "_" in text: + return False, "conceptnet_artifact" + + # No broken templates (unfilled slots) + if "{" in text or "}" in text: + return False, "unfilled_slot" + + return True, "pass" + + +def is_near_duplicate(text_a, text_b, threshold=0.75): + """Check if two texts are near-duplicates.""" + return SequenceMatcher(None, text_a.lower(), text_b.lower()).ratio() > threshold + + +def deduplicate_within_family(entries): + """Remove near-duplicates within each meta-template family. + + Returns (kept, removed) lists. + """ + by_family = {} + for entry in entries: + family = entry.get("meta_template", "unknown") + by_family.setdefault(family, []).append(entry) + + kept = [] + removed = [] + + for family, family_entries in by_family.items(): + family_kept = [] + for entry in family_entries: + text = entry.get("polished_text", "") + is_dup = False + for existing in family_kept: + if is_near_duplicate(text, existing.get("polished_text", "")): + is_dup = True + break + if is_dup: + removed.append((entry, "near_duplicate")) + else: + family_kept.append(entry) + kept.extend(family_kept) + + return kept, removed + + +def main(): + parser = argparse.ArgumentParser(description="Quality filtering for polished folksy sayings.") + parser.add_argument("--input", default=str(CORPUS_DIR / "corpus_polished.jsonl"), + help="Input polished JSONL file") + parser.add_argument("--output", default=str(CORPUS_DIR / "corpus_filtered.jsonl"), + help="Output filtered JSONL file") + parser.add_argument("--discard-analysis", default=str(CORPUS_DIR / "discard_analysis.csv"), + help="Discard analysis CSV file") + args = parser.parse_args() + + input_path = Path(args.input) + output_path = Path(args.output) + discard_path = Path(args.discard_analysis) + + if not input_path.exists(): + print(f"Error: {input_path} not found.", file=sys.stderr) + sys.exit(1) + + # Load polished entries (only those with status=polished) + all_entries = [] + already_discarded = 0 + with open(input_path, encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line: + continue + entry = json.loads(line) + if entry.get("status") == "polished": + all_entries.append(entry) + elif entry.get("status") == "discarded": + already_discarded += 1 + + print(f"Loaded {len(all_entries)} polished entries ({already_discarded} already discarded by LLM)") + + # Apply quality filters + passed = [] + discards = [] # (entry, reason) + + for entry in all_entries: + ok, reason = quality_filter(entry) + if ok: + passed.append(entry) + else: + discards.append((entry, reason)) + + print(f"Quality filter: {len(passed)} passed, {len(discards)} discarded") + + # Show discard breakdown + from collections import Counter + reason_counts = Counter(r for _, r in discards) + for reason, count in reason_counts.most_common(): + print(f" {reason}: {count}") + + # Near-duplicate detection within template families + kept, dup_removed = deduplicate_within_family(passed) + discards.extend(dup_removed) + + print(f"Near-duplicate removal: {len(dup_removed)} removed, {len(kept)} remaining") + + # Write filtered output + output_path.parent.mkdir(parents=True, exist_ok=True) + with open(output_path, "w", encoding="utf-8") as f: + for entry in kept: + f.write(json.dumps(entry, ensure_ascii=False) + "\n") + + print(f"\nFiltered corpus: {len(kept)} entries -> {output_path}") + + # Write discard analysis + with open(discard_path, "w", newline="", encoding="utf-8") as f: + writer = csv.writer(f) + writer.writerow(["raw_text", "meta_template", "discard_stage", "discard_reason"]) + for entry, reason in discards: + writer.writerow([ + entry.get("raw_text", ""), + entry.get("meta_template", ""), + "llm_polish" if reason == "no_polished_text" else "quality_filter", + reason, + ]) + + print(f"Discard analysis: {len(discards)} entries -> {discard_path}") + + +if __name__ == "__main__": + main() diff --git a/scripts/format_training_pairs.py b/scripts/format_training_pairs.py new file mode 100644 index 0000000..b61ad8b --- /dev/null +++ b/scripts/format_training_pairs.py @@ -0,0 +1,385 @@ +#!/usr/bin/env python3 +"""Format filtered sayings into training pairs for fine-tuning. + +Each polished saying generates 3-5 training pairs with different input framings. +Also generates fictional entity training pairs. + +Usage: + python scripts/format_training_pairs.py + python scripts/format_training_pairs.py --input corpus/corpus_filtered.jsonl --output corpus/training_pairs.jsonl +""" + +import argparse +import csv +import json +import random +import sys +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent +PROJECT_DIR = SCRIPT_DIR.parent +CORPUS_DIR = PROJECT_DIR / "corpus" +DATA_DIR = PROJECT_DIR / "data" +EXAMPLES_DIR = PROJECT_DIR / "examples" + +# Template name mappings for human-readable prompts +TEMPLATE_NAMES = { + "deconstruction": "deconstruction", + "denial_of_consequences": "denial of consequences", + "ironic_deficiency": "ironic deficiency", + "futile_preparation": "futile preparation", + "hypocritical_complaint": "hypocritical complaint", + "tautological_wisdom": "tautological wisdom", + "false_equivalence": "false equivalence", +} + +PERSONAS = ["farmer", "grandmother", "old sailor", "blacksmith", "innkeeper", "shepherd"] + +OPEN_ENDED_PROMPTS = [ + "Tell me some folk wisdom.", + "What do they say?", + "Give me a proverb.", + "Share some old-time wisdom.", + "What's a good saying?", +] + +# Auto-generated fictional entities for additional training pairs +AUTO_ENTITIES = [ + { + "name": "Stoneclaw", + "categories": ["animal", "predator"], + "properties": ["fierce", "rocky", "nocturnal"], + "relations": {"AtLocation": ["cave", "mountain"], "HasA": ["claws", "scales"], "CapableOf": ["hunting", "climbing"]}, + }, + { + "name": "Duskmelon", + "categories": ["fruit", "food"], + "properties": ["purple", "sweet", "fragrant"], + "relations": {"AtLocation": ["garden", "market"], "UsedFor": ["eating", "jam"], "MadeOf": ["seed", "juice"]}, + }, + { + "name": "Windloom", + "categories": ["tool", "craft"], + "properties": ["wooden", "portable", "intricate"], + "relations": {"UsedFor": ["weaving", "thread"], "MadeOf": ["wood", "string"], "AtLocation": ["workshop", "cottage"]}, + }, + { + "name": "Briarvine", + "categories": ["plant", "herb"], + "properties": ["thorny", "green", "medicinal"], + "relations": {"AtLocation": ["forest", "hedge"], "UsedFor": ["healing", "tea"], "HasA": ["thorn", "leaf"]}, + }, + { + "name": "Mudhog", + "categories": ["animal", "livestock"], + "properties": ["muddy", "stubborn", "heavy"], + "relations": {"AtLocation": ["farm", "swamp"], "Desires": ["food", "mud"], "CapableOf": ["digging", "rooting"]}, + }, + { + "name": "Frostberry", + "categories": ["fruit", "food"], + "properties": ["cold", "blue", "tiny"], + "relations": {"AtLocation": ["mountain", "tundra"], "UsedFor": ["eating", "preserves"], "HasProperty": ["cold", "tart"]}, + }, + { + "name": "Lanternmoss", + "categories": ["plant", "fungus"], + "properties": ["glowing", "damp", "soft"], + "relations": {"AtLocation": ["cave", "swamp"], "UsedFor": ["light", "decoration"], "HasProperty": ["luminous", "fragile"]}, + }, + { + "name": "Cinderhawk", + "categories": ["bird", "animal"], + "properties": ["fiery", "fast", "red"], + "relations": {"AtLocation": ["mountain", "volcano"], "CapableOf": ["flying", "hunting"], "HasA": ["talons", "feathers"]}, + }, + { + "name": "Rootstone", + "categories": ["stone", "material"], + "properties": ["veined", "hard", "ancient"], + "relations": {"AtLocation": ["quarry", "riverbed"], "UsedFor": ["building", "carving"], "MadeOf": ["mineral", "root"]}, + }, + { + "name": "Silkwort", + "categories": ["plant", "fiber"], + "properties": ["silky", "white", "tall"], + "relations": {"AtLocation": ["field", "meadow"], "UsedFor": ["weaving", "cloth"], "HasA": ["stem", "fiber"]}, + }, + { + "name": "Kettlefrog", + "categories": ["animal", "amphibian"], + "properties": ["loud", "round", "green"], + "relations": {"AtLocation": ["pond", "marsh"], "CapableOf": ["jumping", "croaking"], "Desires": ["flies", "water"]}, + }, + { + "name": "Dustwheat", + "categories": ["crop", "grain"], + "properties": ["dry", "golden", "hardy"], + "relations": {"AtLocation": ["field", "barn"], "UsedFor": ["bread", "flour"], "HasPrerequisite": ["rain", "soil"]}, + }, +] + + +def format_entity_description(entity): + """Format entity into a natural description string.""" + name = entity["name"] + cats = entity.get("categories", []) + props = entity.get("properties", []) + rels = entity.get("relations", {}) + + parts = [] + + # Category description + if props and cats: + prop_str = ", ".join(props[:3]) + cat_str = " and ".join(cats[:2]) + parts.append(f"A {name} is a {prop_str} {cat_str}.") + elif cats: + parts.append(f"A {name} is a {' and '.join(cats[:2])}.") + + # Location + if "AtLocation" in rels: + locs = rels["AtLocation"] + parts.append(f"It is found near {' and '.join(locs[:2])}.") + + # Parts/properties + if "HasA" in rels: + has = rels["HasA"] + parts.append(f"It has {', '.join(has[:3])}.") + + # Capabilities + if "CapableOf" in rels: + caps = rels["CapableOf"] + parts.append(f"It can {' and '.join(caps[:2])}.") + + # Uses + if "UsedFor" in rels: + uses = rels["UsedFor"] + parts.append(f"It is used for {' and '.join(uses[:2])}.") + + return " ".join(parts) + + +def load_vocab_categories(): + """Load vocab to get word -> categories mapping.""" + word_cats = {} + vocab_path = DATA_DIR / "folksy_vocab.csv" + if vocab_path.exists(): + with open(vocab_path, newline="", encoding="utf-8") as f: + for row in csv.DictReader(f): + word = row["word"] + cats = [c.strip() for c in row["categories"].split(",") if c.strip()] + word_cats[word] = cats + return word_cats + + +def generate_training_pairs(entry, word_cats): + """Generate 3-5 training pairs for a single polished saying.""" + polished = entry.get("polished_text", "") + slots = entry.get("slots", {}) + meta_template = entry.get("meta_template", "") + + # Collect source words (concrete nouns from slots) + source_words = [v for v in slots.values() + if v and not v.startswith("a ") and not v.startswith("an ") and len(v) > 1] + + # Determine categories of slot words + slot_categories = set() + for word in source_words: + word_lower = word.lower().replace(" ", "_") + if word_lower in word_cats: + slot_categories.update(word_cats[word_lower]) + + pairs = [] + base = { + "output": polished, + "meta_template": meta_template, + "source_words": source_words, + } + + # 1. Word-seeded (always include) + if source_words: + word = random.choice(source_words) + pairs.append({**base, "input": f"Tell me something about {word}."}) + + # 2. Category-seeded (always include if we have categories) + if slot_categories: + cat = random.choice(list(slot_categories)) + pairs.append({**base, "input": f"Tell me a saying about {cat}."}) + + # 3. Persona-seeded (always include) + persona = random.choice(PERSONAS) + if source_words: + word = random.choice(source_words) + pairs.append({**base, "input": f"What would a {persona} say about {word}?"}) + + # 4. Template-seeded (include ~70% of the time) + if random.random() < 0.7: + template_name = TEMPLATE_NAMES.get(meta_template, meta_template) + pairs.append({**base, "input": f"Give me a {template_name} proverb."}) + + # 5. Open-ended (include ~30% of the time) + if random.random() < 0.3: + prompt = random.choice(OPEN_ENDED_PROMPTS) + pairs.append({**base, "input": prompt}) + + return pairs + + +def generate_fictional_pairs(entities): + """Generate training pairs for fictional entities. + + These pairs include the entity description in the input. + """ + pairs = [] + + # Generate 15-25 pairs per entity + for entity in entities: + name = entity["name"] + desc = format_entity_description(entity) + props = entity.get("properties", []) + rels = entity.get("relations", {}) + + # Collect words related to this entity + related_words = [] + for targets in rels.values(): + related_words.extend(targets) + + n_pairs = random.randint(15, 25) + + for _ in range(n_pairs): + framing = random.choice(["persona", "word", "category", "open"]) + + if framing == "persona": + persona = random.choice(PERSONAS) + input_text = f"{desc} What would a {persona} say about a {name}?" + elif framing == "word" and related_words: + word = random.choice(related_words) + input_text = f"{desc} Tell me a saying about {name} and {word}." + elif framing == "category": + cats = entity.get("categories", ["thing"]) + cat = random.choice(cats) + input_text = f"{desc} Give me folk wisdom about this {cat}." + else: + input_text = f"{desc} Tell me some folk wisdom about {name}." + + # Placeholder output — these would ideally be generated through the + # template engine with fictional entities loaded, then polished. + # For now, generate a structural placeholder that indicates the + # entity relationships. + pairs.append({ + "input": input_text, + "output": "", # Will be filled by actual generation + "meta_template": "fictional", + "source_words": [name] + related_words[:3], + "_needs_generation": True, + "_entity": entity, + }) + + return pairs + + +def main(): + parser = argparse.ArgumentParser(description="Format training pairs for fine-tuning.") + parser.add_argument("--input", default=str(CORPUS_DIR / "corpus_filtered.jsonl"), + help="Input filtered JSONL file") + parser.add_argument("--output", default=str(CORPUS_DIR / "training_pairs.jsonl"), + help="Output training pairs JSONL file") + parser.add_argument("--entities", default=str(EXAMPLES_DIR / "my_world.json"), + help="Fictional entities JSON file") + args = parser.parse_args() + + input_path = Path(args.input) + output_path = Path(args.output) + entities_path = Path(args.entities) + + if not input_path.exists(): + print(f"Error: {input_path} not found.", file=sys.stderr) + sys.exit(1) + + # Load vocab categories + word_cats = load_vocab_categories() + + # Load filtered entries + entries = [] + with open(input_path, encoding="utf-8") as f: + for line in f: + line = line.strip() + if line: + entries.append(json.loads(line)) + + print(f"Loaded {len(entries)} filtered entries") + + # Generate training pairs for each entry + all_pairs = [] + for entry in entries: + pairs = generate_training_pairs(entry, word_cats) + all_pairs.extend(pairs) + + print(f"Generated {len(all_pairs)} training pairs from polished sayings") + + # Generate fictional entity pairs + fictional_entities = [] + if entities_path.exists(): + with open(entities_path, encoding="utf-8") as f: + data = json.load(f) + fictional_entities = data.get("entities", []) + print(f"Loaded {len(fictional_entities)} fictional entities from {entities_path}") + + # Add auto-generated entities + fictional_entities.extend(AUTO_ENTITIES) + print(f"Total fictional entities (file + auto-generated): {len(fictional_entities)}") + + fictional_pairs = generate_fictional_pairs(fictional_entities) + + # Filter out placeholder pairs (those that still need generation) + # In a full pipeline, these would be generated through the template engine. + # For now, skip any with empty output. + real_fictional = [p for p in fictional_pairs if p.get("output")] + placeholder_fictional = [p for p in fictional_pairs if not p.get("output")] + + if placeholder_fictional: + print(f" {len(placeholder_fictional)} fictional pairs need generation via template engine") + print(f" (Run folksy_generator.py with --entities to generate these, then re-run this script)") + + all_pairs.extend(real_fictional) + + # Clean up internal fields before writing + for pair in all_pairs: + pair.pop("_needs_generation", None) + pair.pop("_entity", None) + + # Write output + output_path.parent.mkdir(parents=True, exist_ok=True) + with open(output_path, "w", encoding="utf-8") as f: + for pair in all_pairs: + f.write(json.dumps(pair, ensure_ascii=False) + "\n") + + # Stats + from collections import Counter + input_types = Counter() + for pair in all_pairs: + inp = pair["input"] + if inp.startswith("Tell me something about"): + input_types["word_seeded"] += 1 + elif inp.startswith("Tell me a saying about"): + input_types["category_seeded"] += 1 + elif inp.startswith("What would a"): + input_types["persona_seeded"] += 1 + elif inp.startswith("Give me a") and "proverb" in inp: + input_types["template_seeded"] += 1 + elif any(inp.startswith(p) for p in ["Tell me some folk", "What do they", "Give me a proverb", "Share some", "What's a good"]): + input_types["open_ended"] += 1 + else: + input_types["fictional"] += 1 + + print(f"\nTotal training pairs: {len(all_pairs)}") + print("Distribution by input type:") + for itype, count in sorted(input_types.items()): + print(f" {itype:20s} {count:5d}") + + print(f"\nOutput: {output_path}") + + +if __name__ == "__main__": + main() diff --git a/scripts/generate_raw_batch.sh b/scripts/generate_raw_batch.sh new file mode 100755 index 0000000..4949915 --- /dev/null +++ b/scripts/generate_raw_batch.sh @@ -0,0 +1,61 @@ +#!/usr/bin/env bash +# Generate raw folksy sayings across all 7 templates. +# Output: corpus/corpus_raw.jsonl (~10,500 entries) + +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +PROJECT_DIR="$(dirname "$SCRIPT_DIR")" +CORPUS_DIR="$PROJECT_DIR/corpus" +GENERATOR="$PROJECT_DIR/folksy_generator.py" + +COUNT_PER_TEMPLATE=${1:-1500} + +mkdir -p "$CORPUS_DIR" + +OUTPUT="$CORPUS_DIR/corpus_raw.jsonl" +# Clear existing file +> "$OUTPUT" + +TEMPLATES=( + deconstruction + denial_of_consequences + ironic_deficiency + futile_preparation + hypocritical_complaint + tautological_wisdom + false_equivalence +) + +echo "Generating $COUNT_PER_TEMPLATE sayings per template (${#TEMPLATES[@]} templates)..." +echo "Output: $OUTPUT" + +total=0 +for template in "${TEMPLATES[@]}"; do + echo -n " $template ($COUNT_PER_TEMPLATE)... " + before=$(wc -l < "$OUTPUT") + python "$GENERATOR" --template "$template" --count "$COUNT_PER_TEMPLATE" --json >> "$OUTPUT" 2>/dev/null + after=$(wc -l < "$OUTPUT") + generated=$((after - before)) + total=$((total + generated)) + echo "$generated generated" +done + +echo "" +echo "Total: $total raw sayings in $OUTPUT" +echo "" + +# Check template distribution +echo "Template distribution:" +python -c " +import json, sys +from collections import Counter +counts = Counter() +with open('$OUTPUT') as f: + for line in f: + entry = json.loads(line) + counts[entry['meta_template']] += 1 +for template, count in sorted(counts.items()): + print(f' {template:30s} {count:5d}') +print(f\" {'TOTAL':30s} {sum(counts.values()):5d}\") +" diff --git a/scripts/polish_corpus.py b/scripts/polish_corpus.py new file mode 100644 index 0000000..270d8a2 --- /dev/null +++ b/scripts/polish_corpus.py @@ -0,0 +1,215 @@ +#!/usr/bin/env python3 +"""LLM polish pipeline for raw folksy sayings. + +Reads corpus_raw.jsonl, sends each to GLM4-32B for polish. +Output file is the checkpoint — append mode with resume detection. + +Usage: + python scripts/polish_corpus.py + python scripts/polish_corpus.py --input corpus/corpus_raw.jsonl --output corpus/corpus_polished.jsonl +""" + +import argparse +import json +import sys +import time +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent +PROJECT_DIR = SCRIPT_DIR.parent +CORPUS_DIR = PROJECT_DIR / "corpus" + +LLM_ENDPOINT = "http://192.168.1.100:8853/v1d/chat/completions" +LLM_MODEL = "THUDM-GLM4-32B" + + +SYSTEM_PROMPT = """You are an editor specializing in folk sayings and rural proverbs. You will receive a rough draft of a fake folksy saying along with the relationship chain it encodes. + +Your job: +1. Fix grammar, articles, and pluralization +2. Make it sound natural — like something a weathered farmer would say while leaning on a fence post +3. Preserve the core nouns and the relationship between them — do not swap out the key words +4. You MAY add small colorful details (adjectives, folksy verb choices, regional flavor) but keep it concise — real proverbs are short +5. You MAY lightly restructure the sentence for better rhythm, but keep the same meaning pattern +6. If the saying is unsalvageable nonsense (the nouns don't relate in any meaningful way, or the combination is unintentionally offensive), respond with exactly: DISCARD + +Output ONLY the polished saying on a single line. No quotes, no explanation, no preamble. + +Examples of good polish: + +Raw: "Don't build the coffee and act surprised when the water show up." +Chain: coffee MadeOf water +Polished: Don't brew the coffee and act surprised when the water's all gone. + +Raw: "The chest's children always goes without hold books." +Chain: chest UsedFor hold_books +Polished: The bookshelf-maker's kids always end up reading off the floor. + +Raw: "A pineapple is just a nectarine that's got an attitude." +Chain: pineapple IsA fruit, nectarine IsA fruit, pineapple HasProperty prickly +Polished: A pineapple is just a peach that grew itself some armor. + +Raw: "You know what they say, a steel with no iron is just a harder than gold iron." +Chain: steel MadeOf iron, steel HasProperty hard +Polished: You know what they say — steel without the iron is just a dream of being hard. + +Raw: "Funny how the bamboo never has enough grow very quickly for itself." +Chain: bamboo CapableOf grow_quickly +Polished: DISCARD + +Raw: "That's just funning the canoe and praying for boiling food." +Chain: canoe UsedFor transport, fire UsedFor boiling_food +Polished: DISCARD""" + + +def llm_chat_completion(messages, max_retries=3): + """Chat completion with retry logic.""" + import requests + + for attempt in range(max_retries): + try: + resp = requests.post(LLM_ENDPOINT, json={ + "model": LLM_MODEL, + "messages": messages, + }, timeout=120) + resp.raise_for_status() + data = resp.json() + return data["choices"][0]["message"]["content"].strip() + except Exception as e: + wait = (2 ** attempt) + print(f" LLM error (attempt {attempt+1}/{max_retries}): {e}", file=sys.stderr) + if attempt < max_retries - 1: + time.sleep(wait) + else: + return None + + +def format_chain(chain_edges): + """Format chain_edges list into readable string for LLM context.""" + if not chain_edges: + return "(no chain data)" + parts = [] + for edge in chain_edges: + start = edge.get("start", "?") + rel = edge.get("relation", "?") + end = edge.get("end", "?") + weight = edge.get("weight", 0) + parts.append(f"{start} --{rel}--> {end} (w:{weight:.1f})") + return ", ".join(parts) + + +def format_slots(slots): + """Format slots dict for LLM context.""" + return ", ".join(f"{k}={v}" for k, v in slots.items()) + + +def load_already_processed(output_path): + """Load set of raw_text strings already processed (for resume).""" + processed = set() + if output_path.exists(): + with open(output_path, encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line: + continue + try: + entry = json.loads(line) + processed.add(entry.get("raw_text", "")) + except json.JSONDecodeError: + continue + return processed + + +def main(): + parser = argparse.ArgumentParser(description="LLM polish pipeline for folksy sayings.") + parser.add_argument("--input", default=str(CORPUS_DIR / "corpus_raw.jsonl"), + help="Input JSONL file") + parser.add_argument("--output", default=str(CORPUS_DIR / "corpus_polished.jsonl"), + help="Output JSONL file (also serves as checkpoint)") + args = parser.parse_args() + + input_path = Path(args.input) + output_path = Path(args.output) + + if not input_path.exists(): + print(f"Error: {input_path} not found.", file=sys.stderr) + sys.exit(1) + + # Load raw entries + raw_entries = [] + with open(input_path, encoding="utf-8") as f: + for line in f: + line = line.strip() + if line: + raw_entries.append(json.loads(line)) + + print(f"Loaded {len(raw_entries)} raw entries from {input_path}") + + # Check what's already been processed + already_processed = load_already_processed(output_path) + remaining = [e for e in raw_entries if e.get("raw_text", "") not in already_processed] + + print(f"Already processed: {len(already_processed)}") + print(f"Remaining: {len(remaining)}") + + if not remaining: + print("Nothing to process.") + return + + discards = 0 + polished = 0 + errors = 0 + + with open(output_path, "a", encoding="utf-8") as out: + for i, entry in enumerate(remaining): + raw_text = entry.get("raw_text", "") + meta_template = entry.get("meta_template", "") + chain = format_chain(entry.get("chain", [])) + slots = format_slots(entry.get("slots", {})) + + user_prompt = ( + f"Meta-template: {meta_template}\n" + f"Relationship chain: {chain}\n" + f"Slot fills: {slots}\n" + f"Raw saying: {raw_text}" + ) + + messages = [ + {"role": "system", "content": SYSTEM_PROMPT}, + {"role": "user", "content": user_prompt}, + ] + + response = llm_chat_completion(messages) + + if response is None: + entry["status"] = "error" + errors += 1 + elif response.strip().upper() == "DISCARD": + entry["status"] = "discarded" + discards += 1 + else: + entry["polished_text"] = response.strip() + entry["status"] = "polished" + polished += 1 + + out.write(json.dumps(entry, ensure_ascii=False) + "\n") + + if (i + 1) % 100 == 0: + out.flush() + total_done = len(already_processed) + i + 1 + print(f" [{total_done}/{len(raw_entries)}] " + f"polished={polished}, discarded={discards}, errors={errors}") + + time.sleep(0.1) + + total_done = len(already_processed) + len(remaining) + print(f"\nDone: {total_done} total entries processed.") + print(f" Polished: {polished}") + print(f" Discarded: {discards}") + print(f" Errors: {errors}") + print(f" Discard rate: {discards/(polished+discards)*100:.1f}%" if (polished+discards) else " N/A") + print(f"Output: {output_path}") + + +if __name__ == "__main__": + main()