welcome gitea
This commit is contained in:
BIN
__pycache__/check_duplicates.cpython-311.pyc
Normal file
BIN
__pycache__/check_duplicates.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/check_duplicates.cpython-312.pyc
Normal file
BIN
__pycache__/check_duplicates.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/config.cpython-311.pyc
Normal file
BIN
__pycache__/config.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/config.cpython-312.pyc
Normal file
BIN
__pycache__/config.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/first.cpython-311.pyc
Normal file
BIN
__pycache__/first.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/first.cpython-312.pyc
Normal file
BIN
__pycache__/first.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/generate.cpython-311.pyc
Normal file
BIN
__pycache__/generate.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/generate.cpython-312.pyc
Normal file
BIN
__pycache__/generate.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/llm_client.cpython-311.pyc
Normal file
BIN
__pycache__/llm_client.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/llm_client.cpython-312.pyc
Normal file
BIN
__pycache__/llm_client.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/manifest_manager.cpython-311.pyc
Normal file
BIN
__pycache__/manifest_manager.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/manifest_manager.cpython-312.pyc
Normal file
BIN
__pycache__/manifest_manager.cpython-312.pyc
Normal file
Binary file not shown.
BIN
__pycache__/models.cpython-311.pyc
Normal file
BIN
__pycache__/models.cpython-311.pyc
Normal file
Binary file not shown.
BIN
__pycache__/models.cpython-312.pyc
Normal file
BIN
__pycache__/models.cpython-312.pyc
Normal file
Binary file not shown.
2466
batch.yaml
Normal file
2466
batch.yaml
Normal file
File diff suppressed because it is too large
Load Diff
435
batch_generate.py
Normal file
435
batch_generate.py
Normal file
@@ -0,0 +1,435 @@
|
|||||||
|
"""
|
||||||
|
VocabListGenerator — Batch runner
|
||||||
|
-----------------------------------
|
||||||
|
Reads batch.yaml and generates every vocabulary list defined there,
|
||||||
|
writing all output files into the configured output folder and
|
||||||
|
keeping the manifest up to date after each successful generation.
|
||||||
|
|
||||||
|
Multi-language expansion
|
||||||
|
------------------------
|
||||||
|
If a batch entry has more than 2 language IDs, all C(n, 2) unordered pairs
|
||||||
|
are automatically generated. E.g. languages: [15, 7, 1, 3] produces 6 lists:
|
||||||
|
DE-PT, DE-EN, DE-ES, PT-EN, PT-ES, EN-ES
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
python batch_generate.py # process all batches (skips existing files)
|
||||||
|
python batch_generate.py --force # regenerate everything, even existing files
|
||||||
|
python batch_generate.py --dry-run # preview without calling the LLM
|
||||||
|
python batch_generate.py --list # list all batches (after expansion)
|
||||||
|
python batch_generate.py --prune # remove stale manifest entries and exit
|
||||||
|
python batch_generate.py --config FILE # use a different batch file
|
||||||
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
import yaml
|
||||||
|
from datetime import date, timedelta
|
||||||
|
from itertools import combinations
|
||||||
|
from pathlib import Path
|
||||||
|
from typing import Any, Dict, List, Tuple
|
||||||
|
|
||||||
|
from config import Config
|
||||||
|
from llm_client import LLMClient
|
||||||
|
from generate import load_language_map, load_language_code_map, load_language_instructions, run_generation
|
||||||
|
from manifest_manager import print_manifest, prune_missing_files
|
||||||
|
from check_duplicates import check_file_for_true_duplicates, find_json_files
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Helpers
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def sanitize_for_filename(name: str) -> str:
|
||||||
|
"""
|
||||||
|
Convert a name into a filename-safe string.
|
||||||
|
- Lowercase
|
||||||
|
- Replace spaces and special characters with underscores
|
||||||
|
- Remove non-alphanumeric characters (except underscores)
|
||||||
|
"""
|
||||||
|
# Convert to lowercase
|
||||||
|
name = name.lower()
|
||||||
|
# Replace spaces, dashes (ASCII and em-dash), and other separators with underscore
|
||||||
|
name = re.sub(r'[\s\-–—]+', '_', name)
|
||||||
|
# Remove any non-alphanumeric characters (keep underscores)
|
||||||
|
name = re.sub(r'[^a-z0-9_]', '', name)
|
||||||
|
# Remove consecutive underscores
|
||||||
|
name = re.sub(r'_+', '_', name)
|
||||||
|
# Strip leading/trailing underscores
|
||||||
|
name = name.strip('_')
|
||||||
|
return name
|
||||||
|
|
||||||
|
|
||||||
|
def generate_output_filename(
|
||||||
|
entry: Dict[str, Any],
|
||||||
|
code_map: Dict[int, str],
|
||||||
|
) -> str:
|
||||||
|
"""
|
||||||
|
Generate the output filename with the new format:
|
||||||
|
YYYY_MM_DD_name_lang1_lang2_level.json
|
||||||
|
|
||||||
|
Example: 2026_02_19_verbs_beginners_en_de_A1.json
|
||||||
|
"""
|
||||||
|
# Get today's date in YYYY_MM_DD format
|
||||||
|
today = date.today().strftime("%Y_%m_%d")
|
||||||
|
|
||||||
|
# Get the name and sanitize it for filename
|
||||||
|
# Try 'name' first, then 'category', then fallback to 'unknown'
|
||||||
|
name = entry.get("name") or entry.get("category") or "unknown"
|
||||||
|
sanitized_name = sanitize_for_filename(name)
|
||||||
|
|
||||||
|
# Fallback if sanitized name is empty
|
||||||
|
if not sanitized_name:
|
||||||
|
sanitized_name = "vocab"
|
||||||
|
|
||||||
|
# Get language codes
|
||||||
|
lang_ids = entry["languages"]
|
||||||
|
code1 = code_map.get(lang_ids[0], str(lang_ids[0])).lower()
|
||||||
|
code2 = code_map.get(lang_ids[1], str(lang_ids[1])).lower()
|
||||||
|
|
||||||
|
# Get level (default to A2 if not specified)
|
||||||
|
level = entry.get("level", "A2").strip().upper()
|
||||||
|
|
||||||
|
# Build the new filename format
|
||||||
|
filename = f"{today}_{sanitized_name}_{code1}_{code2}_{level}.json"
|
||||||
|
|
||||||
|
return filename
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Batch config loader & validator
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def load_batch_config(path: str = "batch.yaml") -> Dict[str, Any]:
|
||||||
|
try:
|
||||||
|
with open(path, "r", encoding="utf-8") as f:
|
||||||
|
return yaml.safe_load(f)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print(f"ERROR: '{path}' not found.")
|
||||||
|
sys.exit(1)
|
||||||
|
except yaml.YAMLError as e:
|
||||||
|
print(f"ERROR: Could not parse '{path}': {e}")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
def validate_batch_entry(entry: Dict[str, Any]) -> List[str]:
|
||||||
|
"""Return a list of validation error strings (empty = valid)."""
|
||||||
|
errors = []
|
||||||
|
for field in ("name", "category", "output_filename"):
|
||||||
|
if not entry.get(field):
|
||||||
|
errors.append(f"missing '{field}'")
|
||||||
|
langs = entry.get("languages")
|
||||||
|
if not isinstance(langs, list) or len(langs) < 2:
|
||||||
|
errors.append("'languages' must be a list of at least 2 IDs")
|
||||||
|
amount = entry.get("amount")
|
||||||
|
if not isinstance(amount, int) or amount < 1:
|
||||||
|
errors.append("'amount' must be a positive integer")
|
||||||
|
return errors
|
||||||
|
|
||||||
|
|
||||||
|
def expand_entry(
|
||||||
|
entry: Dict[str, Any],
|
||||||
|
code_map: Dict[int, str],
|
||||||
|
) -> List[Dict[str, Any]]:
|
||||||
|
"""
|
||||||
|
Expand a batch entry into individual (lang1, lang2) sub-entries.
|
||||||
|
|
||||||
|
- If languages has exactly 2 IDs → returns [entry] with new filename format.
|
||||||
|
- If languages has 3+ IDs → returns one entry per C(n,2) combination,
|
||||||
|
with auto-generated name suffix and output_filename using the new format.
|
||||||
|
"""
|
||||||
|
langs: List[int] = entry["languages"]
|
||||||
|
|
||||||
|
# For entries with exactly 2 languages, just update the filename format
|
||||||
|
if len(langs) == 2:
|
||||||
|
sub = dict(entry)
|
||||||
|
sub["output_filename"] = generate_output_filename(entry, code_map)
|
||||||
|
return [sub]
|
||||||
|
|
||||||
|
expanded: List[Dict[str, Any]] = []
|
||||||
|
name_template = entry.get("name", entry["category"])
|
||||||
|
|
||||||
|
for lang1, lang2 in combinations(langs, 2):
|
||||||
|
sub = dict(entry)
|
||||||
|
sub["languages"] = [lang1, lang2]
|
||||||
|
sub["name"] = name_template
|
||||||
|
# Use new filename format with date, name, languages, and level
|
||||||
|
sub["output_filename"] = generate_output_filename(sub, code_map)
|
||||||
|
expanded.append(sub)
|
||||||
|
|
||||||
|
return expanded
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Main
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
parser = argparse.ArgumentParser(description="VocabListGenerator — Batch runner")
|
||||||
|
parser.add_argument("--dry-run", action="store_true",
|
||||||
|
help="Print what would be generated without calling the LLM")
|
||||||
|
parser.add_argument("--list", action="store_true",
|
||||||
|
help="List all batches (after expansion) and exit")
|
||||||
|
parser.add_argument("--prune", action="store_true",
|
||||||
|
help="Remove manifest entries whose output files no longer exist, then exit")
|
||||||
|
parser.add_argument("--force", action="store_true",
|
||||||
|
help="Regenerate all lists, even those whose output file already exists")
|
||||||
|
parser.add_argument("--config", default="batch.yaml", metavar="FILE",
|
||||||
|
help="Path to batch config file (default: batch.yaml)")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
# ── Load configs ─────────────────────────────────────────────────────────
|
||||||
|
batch_cfg = load_batch_config(args.config)
|
||||||
|
main_cfg = Config()
|
||||||
|
language_map = load_language_map()
|
||||||
|
code_map = load_language_code_map()
|
||||||
|
language_instructions = load_language_instructions()
|
||||||
|
|
||||||
|
settings = batch_cfg.get("settings", {})
|
||||||
|
output_dir = settings.get("output_dir", "output")
|
||||||
|
manifest_file = settings.get("manifest_filename", "vocab_manifest.json")
|
||||||
|
stop_on_error = settings.get("stop_on_error", False)
|
||||||
|
|
||||||
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
output_dir = os.path.join(script_dir, output_dir)
|
||||||
|
manifest_path = os.path.join(output_dir, manifest_file)
|
||||||
|
|
||||||
|
raw_batches: List[Dict[str, Any]] = batch_cfg.get("batches", [])
|
||||||
|
|
||||||
|
# Separate skipped entries before expansion
|
||||||
|
active_raw = [b for b in raw_batches if not b.get("skip", False)]
|
||||||
|
skipped_raw = [b for b in raw_batches if b.get("skip", False)]
|
||||||
|
|
||||||
|
# Validate raw entries before expanding (catches config mistakes early)
|
||||||
|
invalid = []
|
||||||
|
for i, entry in enumerate(active_raw, 1):
|
||||||
|
errs = validate_batch_entry(entry)
|
||||||
|
if errs:
|
||||||
|
invalid.append((i, entry.get("name", f"entry #{i}"), errs))
|
||||||
|
if invalid:
|
||||||
|
print("ERROR: The following batch entries have validation problems:\n")
|
||||||
|
for i, name, errs in invalid:
|
||||||
|
print(f" [{i}] {name}")
|
||||||
|
for e in errs:
|
||||||
|
print(f" • {e}")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Expand multi-language entries into individual pairs
|
||||||
|
active: List[Dict[str, Any]] = []
|
||||||
|
for entry in active_raw:
|
||||||
|
active.extend(expand_entry(entry, code_map))
|
||||||
|
|
||||||
|
skipped_expanded: List[Dict[str, Any]] = []
|
||||||
|
for entry in skipped_raw:
|
||||||
|
skipped_expanded.extend(expand_entry(entry, code_map))
|
||||||
|
|
||||||
|
total_pairs = sum(b["amount"] for b in active)
|
||||||
|
|
||||||
|
# ── --list mode ──────────────────────────────────────────────────────────
|
||||||
|
if args.list:
|
||||||
|
print(f"\nbatch.yaml — {len(raw_batches)} template(s) → "
|
||||||
|
f"{len(active)} lists to generate ({len(skipped_expanded)} skipped)\n")
|
||||||
|
for i, b in enumerate(active, 1):
|
||||||
|
langs = b["languages"]
|
||||||
|
l1 = language_map.get(langs[0], f"ID {langs[0]}")
|
||||||
|
l2 = language_map.get(langs[1], f"ID {langs[1]}")
|
||||||
|
print(f" {i:3}. [{b['output_filename']}]")
|
||||||
|
print(f" {b['name']}")
|
||||||
|
print(f" {l1} → {l2} | {b['amount']} pairs | {b['category']}")
|
||||||
|
if skipped_expanded:
|
||||||
|
print(f"\n Skipped ({len(skipped_expanded)}):")
|
||||||
|
for b in skipped_expanded:
|
||||||
|
print(f" - {b.get('name', '?')}")
|
||||||
|
print(f"\n Total: {len(active)} lists ≈ {total_pairs:,} word pairs\n")
|
||||||
|
return
|
||||||
|
|
||||||
|
# ── --prune mode ─────────────────────────────────────────────────────────
|
||||||
|
if args.prune:
|
||||||
|
if not os.path.isfile(manifest_path):
|
||||||
|
print(f" [prune] No manifest found at {manifest_path} — nothing to do.")
|
||||||
|
return
|
||||||
|
removed = prune_missing_files(manifest_path, output_dir)
|
||||||
|
if removed == 0:
|
||||||
|
print(" [prune] Manifest is clean — no stale entries found.")
|
||||||
|
return
|
||||||
|
|
||||||
|
# ── Banner ───────────────────────────────────────────────────────────────
|
||||||
|
print("=" * 60)
|
||||||
|
print(" VocabListGenerator — Batch Run")
|
||||||
|
print("=" * 60)
|
||||||
|
print(f" Templates : {len(raw_batches)} defined → {len(active)} lists after expansion")
|
||||||
|
print(f" Skipped : {len(skipped_expanded)} lists")
|
||||||
|
print(f" Total pairs: ≈ {total_pairs:,}")
|
||||||
|
print(f" Output dir : {output_dir}")
|
||||||
|
print(f" Manifest : {manifest_path}")
|
||||||
|
if args.force:
|
||||||
|
print(" Mode : FORCE (regenerate all, ignoring existing files)")
|
||||||
|
elif args.dry_run:
|
||||||
|
print(" Mode : DRY RUN (no API calls)")
|
||||||
|
else:
|
||||||
|
already = sum(
|
||||||
|
1 for b in active
|
||||||
|
if os.path.isfile(os.path.join(output_dir, b["output_filename"]))
|
||||||
|
)
|
||||||
|
if already:
|
||||||
|
print(f" Resuming : {already} existing file(s) will be skipped (use --force to override)")
|
||||||
|
print()
|
||||||
|
|
||||||
|
os.makedirs(output_dir, exist_ok=True)
|
||||||
|
|
||||||
|
# ── Prune stale manifest entries before generating ────────────────────────
|
||||||
|
if os.path.isfile(manifest_path):
|
||||||
|
prune_missing_files(manifest_path, output_dir)
|
||||||
|
|
||||||
|
# ── Dry-run preview ──────────────────────────────────────────────────────
|
||||||
|
if args.dry_run:
|
||||||
|
print("Lists that would be generated:\n")
|
||||||
|
for i, b in enumerate(active, 1):
|
||||||
|
langs = b["languages"]
|
||||||
|
l1 = language_map.get(langs[0], f"ID {langs[0]}")
|
||||||
|
l2 = language_map.get(langs[1], f"ID {langs[1]}")
|
||||||
|
print(f" {i:3}. {b['name']}")
|
||||||
|
print(f" {l1} ({langs[0]}) → {l2} ({langs[1]}) | "
|
||||||
|
f"{b['amount']} pairs → {b['output_filename']}")
|
||||||
|
print(f"\n Total: {len(active)} lists ≈ {total_pairs:,} word pairs\n")
|
||||||
|
return
|
||||||
|
|
||||||
|
# ── Build LLM client once ────────────────────────────────────────────────
|
||||||
|
llm = LLMClient(main_cfg)
|
||||||
|
|
||||||
|
# ── Run batches ──────────────────────────────────────────────────────────
|
||||||
|
ok, failed, skipped_existing = 0, 0, 0
|
||||||
|
start_time = time.time()
|
||||||
|
generated_count = 0 # Track only generated items for time estimation
|
||||||
|
|
||||||
|
for i, entry in enumerate(active, 1):
|
||||||
|
name = entry["name"]
|
||||||
|
category = entry["category"]
|
||||||
|
description = entry.get("description", "").strip()
|
||||||
|
instructions = entry.get("instructions", "").strip()
|
||||||
|
emoji = entry.get("emoji", "").strip()
|
||||||
|
level = entry.get("level", "A2").strip().upper()
|
||||||
|
amount = entry["amount"]
|
||||||
|
lang_ids = entry["languages"]
|
||||||
|
output_filename = entry["output_filename"]
|
||||||
|
vocab_file_path = os.path.join(output_dir, output_filename)
|
||||||
|
|
||||||
|
# Calculate time estimation based only on generated items
|
||||||
|
current_time = time.time()
|
||||||
|
elapsed = current_time - start_time
|
||||||
|
avg_time_per_item = elapsed / generated_count if generated_count > 0 else 0
|
||||||
|
remaining = len(active) - i - skipped_existing
|
||||||
|
eta_seconds = avg_time_per_item * remaining
|
||||||
|
eta_str = str(timedelta(seconds=int(eta_seconds))) if remaining > 0 else "done"
|
||||||
|
|
||||||
|
header = f"[{i}/{len(active)}] {emoji} {name}" if emoji else f"[{i}/{len(active)}] {name}"
|
||||||
|
print(f"{header} [{level}]")
|
||||||
|
print(f" File : {output_filename}")
|
||||||
|
if generated_count > 0:
|
||||||
|
print(f" ETA : {eta_str} ({int(avg_time_per_item)}s/item)")
|
||||||
|
|
||||||
|
# Skip if already generated (unless --force)
|
||||||
|
if not args.force and os.path.isfile(vocab_file_path):
|
||||||
|
print(f" ✔ Already exists — skipping (use --force to regenerate)")
|
||||||
|
print("-" * 60)
|
||||||
|
skipped_existing += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Track time before generation
|
||||||
|
item_start_time = time.time()
|
||||||
|
|
||||||
|
success = run_generation(
|
||||||
|
llm=llm,
|
||||||
|
language_map=language_map,
|
||||||
|
lang_first_id=lang_ids[0],
|
||||||
|
lang_second_id=lang_ids[1],
|
||||||
|
amount=amount,
|
||||||
|
category=category,
|
||||||
|
name=name,
|
||||||
|
description=description,
|
||||||
|
instructions=instructions,
|
||||||
|
output_file_path=vocab_file_path,
|
||||||
|
manifest_path=manifest_path,
|
||||||
|
emoji=emoji,
|
||||||
|
level=level,
|
||||||
|
language_instructions=language_instructions,
|
||||||
|
)
|
||||||
|
|
||||||
|
if success:
|
||||||
|
ok += 1
|
||||||
|
generated_count += 1
|
||||||
|
else:
|
||||||
|
failed += 1
|
||||||
|
print(f" ✗ FAILED: {name}\n")
|
||||||
|
if stop_on_error:
|
||||||
|
print("stop_on_error is set — aborting.")
|
||||||
|
break
|
||||||
|
|
||||||
|
print("-" * 60)
|
||||||
|
|
||||||
|
# ── Summary ──────────────────────────────────────────────────────────────
|
||||||
|
total_time = time.time() - start_time
|
||||||
|
print(f"\n{'=' * 60}")
|
||||||
|
print(f" Batch complete.")
|
||||||
|
print(f" ✓ Success : {ok}")
|
||||||
|
print(f" ✗ Failed : {failed}")
|
||||||
|
print(f" ⏱ Total time: {str(timedelta(seconds=int(total_time)))}")
|
||||||
|
if skipped_existing:
|
||||||
|
print(f" ⏭ Existing : {skipped_existing} (already generated, skipped)")
|
||||||
|
if skipped_expanded:
|
||||||
|
print(f" - Disabled : {len(skipped_expanded)} (skip: true in batch.yaml)")
|
||||||
|
print(f"{'=' * 60}\n")
|
||||||
|
|
||||||
|
# ── Check for TRUE duplicates and delete bad files ─────────────────────
|
||||||
|
print("Checking for TRUE duplicates (both wordFirst AND wordSecond identical)...\n")
|
||||||
|
|
||||||
|
json_files = find_json_files(output_dir)
|
||||||
|
files_with_dupes = 0
|
||||||
|
files_deleted = 0
|
||||||
|
|
||||||
|
for file_path in json_files:
|
||||||
|
result = check_file_for_true_duplicates(file_path, threshold=3)
|
||||||
|
|
||||||
|
if "error" in result:
|
||||||
|
continue
|
||||||
|
|
||||||
|
true_dupes = result.get("true_dupes", {})
|
||||||
|
|
||||||
|
if true_dupes:
|
||||||
|
files_with_dupes += 1
|
||||||
|
try:
|
||||||
|
rel_path = file_path.relative_to(Path(output_dir))
|
||||||
|
except ValueError:
|
||||||
|
rel_path = file_path.name
|
||||||
|
|
||||||
|
print(f" ⚠️ Deleting {rel_path}")
|
||||||
|
print(f" TRUE duplicates found: {len(true_dupes)} pairs appearing 3+ times")
|
||||||
|
for pair, count in list(true_dupes.items())[:3]:
|
||||||
|
wf, ws = pair
|
||||||
|
print(f" - \"{wf}\" → \"{ws}\" = {count} times")
|
||||||
|
|
||||||
|
# Delete the file
|
||||||
|
try:
|
||||||
|
os.remove(file_path)
|
||||||
|
files_deleted += 1
|
||||||
|
print(f" ✅ DELETED\n")
|
||||||
|
except Exception as e:
|
||||||
|
print(f" ❌ Failed to delete: {e}\n")
|
||||||
|
|
||||||
|
if files_with_dupes > 0:
|
||||||
|
print(f"\n{'=' * 60}")
|
||||||
|
print(f" 🗑️ Deleted {files_deleted} files with 3+ TRUE duplicates")
|
||||||
|
print(f"{'=' * 60}\n")
|
||||||
|
else:
|
||||||
|
print(" ✅ No files with TRUE duplicates found\n")
|
||||||
|
|
||||||
|
print_manifest(manifest_path)
|
||||||
|
|
||||||
|
if failed > 0:
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
177
check_duplicates.py
Normal file
177
check_duplicates.py
Normal file
@@ -0,0 +1,177 @@
|
|||||||
|
"""
|
||||||
|
Sanity Check for Vocabulary Files
|
||||||
|
---------------------------------
|
||||||
|
Checks all JSON files in the output directory for TRUE duplicate word pairs.
|
||||||
|
A TRUE duplicate is when BOTH wordFirst AND wordSecond are identical.
|
||||||
|
Throws a warning if any word pair appears 3 times or more.
|
||||||
|
|
||||||
|
Also supports deleting files that have 3+ true duplicates.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
python check_duplicates.py
|
||||||
|
python check_duplicates.py --output output
|
||||||
|
python check_duplicates.py --threshold 3
|
||||||
|
python check_duplicates.py --delete # Delete files with 3+ true duplicates
|
||||||
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
from collections import Counter
|
||||||
|
from pathlib import Path
|
||||||
|
from typing import Dict, List
|
||||||
|
|
||||||
|
|
||||||
|
def find_json_files(output_dir: str) -> List[Path]:
|
||||||
|
"""Find all JSON files in the output directory."""
|
||||||
|
output_path = Path(output_dir)
|
||||||
|
if not output_path.exists():
|
||||||
|
print(f"ERROR: Output directory '{output_dir}' not found.")
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
# Find all JSON files (including subdirectories)
|
||||||
|
json_files = list(output_path.rglob("*.json"))
|
||||||
|
return [f for f in json_files if f.name != "vocab_manifest.json"]
|
||||||
|
|
||||||
|
|
||||||
|
def check_file_for_true_duplicates(file_path: Path, threshold: int = 3) -> Dict:
|
||||||
|
"""
|
||||||
|
Check a single file for TRUE duplicates.
|
||||||
|
TRUE duplicate = when BOTH wordFirst AND wordSecond are identical.
|
||||||
|
|
||||||
|
Returns a dict with duplicate information.
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
with open(file_path, 'r', encoding='utf-8') as f:
|
||||||
|
data = json.load(f)
|
||||||
|
except json.JSONDecodeError as e:
|
||||||
|
return {
|
||||||
|
"file": str(file_path),
|
||||||
|
"error": f"JSON parse error: {e}",
|
||||||
|
"true_dupes": {},
|
||||||
|
"item_count": 0
|
||||||
|
}
|
||||||
|
except Exception as e:
|
||||||
|
return {
|
||||||
|
"file": str(file_path),
|
||||||
|
"error": f"Error reading file: {e}",
|
||||||
|
"true_dupes": {},
|
||||||
|
"item_count": 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# Extract items
|
||||||
|
items = data.get("items", [])
|
||||||
|
if not items:
|
||||||
|
return {
|
||||||
|
"file": str(file_path),
|
||||||
|
"item_count": 0,
|
||||||
|
"true_dupes": {}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Create tuples of (wordFirst, wordSecond) to find TRUE duplicates
|
||||||
|
pair_list = [
|
||||||
|
(item.get("wordFirst", ""), item.get("wordSecond", ""))
|
||||||
|
for item in items
|
||||||
|
if item.get("wordFirst") and item.get("wordSecond")
|
||||||
|
]
|
||||||
|
|
||||||
|
# Count TRUE duplicates (both first AND second must match)
|
||||||
|
pair_counts = Counter(pair_list)
|
||||||
|
|
||||||
|
# Find duplicates above threshold
|
||||||
|
true_dupes = {pair: count for pair, count in pair_counts.items() if count >= threshold}
|
||||||
|
|
||||||
|
return {
|
||||||
|
"file": str(file_path),
|
||||||
|
"item_count": len(items),
|
||||||
|
"true_dupes": true_dupes,
|
||||||
|
"unique_pairs": len(pair_counts)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def delete_file(file_path: Path) -> bool:
|
||||||
|
"""Delete a file and return True if successful."""
|
||||||
|
try:
|
||||||
|
os.remove(file_path)
|
||||||
|
return True
|
||||||
|
except Exception as e:
|
||||||
|
print(f" ❌ Could not delete {file_path}: {e}")
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
parser = argparse.ArgumentParser(description="Check vocabulary files for TRUE duplicates")
|
||||||
|
parser.add_argument("--output", default="output", help="Output directory to check (default: output)")
|
||||||
|
parser.add_argument("--threshold", type=int, default=3, help="Warning threshold for duplicates (default: 3)")
|
||||||
|
parser.add_argument("--delete", action="store_true", help="Delete files with 3+ TRUE duplicates")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
print("=" * 60)
|
||||||
|
print(" Vocabulary Duplicate Sanity Check")
|
||||||
|
print("=" * 60)
|
||||||
|
print(f" Output dir : {args.output}")
|
||||||
|
print(f" Threshold : {args.threshold}+ occurrences = warning")
|
||||||
|
print(f" Mode : {'DELETE' if args.delete else 'CHECK'}")
|
||||||
|
print()
|
||||||
|
|
||||||
|
json_files = find_json_files(args.output)
|
||||||
|
print(f" Found {len(json_files)} JSON files to check...\n")
|
||||||
|
|
||||||
|
total_warnings = 0
|
||||||
|
files_with_issues = 0
|
||||||
|
files_deleted = 0
|
||||||
|
|
||||||
|
for file_path in json_files:
|
||||||
|
result = check_file_for_true_duplicates(file_path, args.threshold)
|
||||||
|
|
||||||
|
if "error" in result:
|
||||||
|
print(f" ❌ ERROR: {result['file']}")
|
||||||
|
print(f" {result['error']}")
|
||||||
|
files_with_issues += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
true_dupes = result["true_dupes"]
|
||||||
|
|
||||||
|
if true_dupes:
|
||||||
|
files_with_issues += 1
|
||||||
|
total_warnings += len(true_dupes)
|
||||||
|
|
||||||
|
try:
|
||||||
|
rel_path = file_path.relative_to(Path(args.output))
|
||||||
|
except ValueError:
|
||||||
|
rel_path = file_path.name
|
||||||
|
|
||||||
|
# Show details of true duplicates
|
||||||
|
print(f" ⚠️ {rel_path}")
|
||||||
|
print(f" Items: {result['item_count']} | Unique pairs: {result['unique_pairs']}")
|
||||||
|
print(f" TRUE duplicates (both wordFirst AND wordSecond identical):")
|
||||||
|
|
||||||
|
# Show up to 5 duplicates
|
||||||
|
for pair, count in sorted(true_dupes.items(), key=lambda x: -x[1])[:5]:
|
||||||
|
wf, ws = pair
|
||||||
|
print(f" - \"{wf}\" → \"{ws}\" appears {count} times")
|
||||||
|
|
||||||
|
# Delete if requested
|
||||||
|
if args.delete:
|
||||||
|
if delete_file(file_path):
|
||||||
|
files_deleted += 1
|
||||||
|
print(f" ✅ DELETED due to {len(true_dupes)} duplicate pairs")
|
||||||
|
else:
|
||||||
|
print(f" ❌ Failed to delete")
|
||||||
|
|
||||||
|
print()
|
||||||
|
|
||||||
|
print("=" * 60)
|
||||||
|
if files_with_issues == 0:
|
||||||
|
print(f" ✅ All {len(json_files)} files passed sanity check!")
|
||||||
|
else:
|
||||||
|
print(f" ⚠️ Found {total_warnings} true duplicate warnings in {files_with_issues} files")
|
||||||
|
if args.delete:
|
||||||
|
print(f" 🗑️ Deleted {files_deleted} files")
|
||||||
|
else:
|
||||||
|
print(f" 💡 Run with --delete to remove files with 3+ true duplicates")
|
||||||
|
print("=" * 60)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
33
conf
Normal file
33
conf
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# VocabListGenerator Configuration
|
||||||
|
|
||||||
|
# LLM Configuration (LM Studio / DeepSeek)
|
||||||
|
llm:
|
||||||
|
#base_url: "http://169.254.123.98:45612/v1" # LM Studio server URL
|
||||||
|
base_url: "https://api.deepseek.com/v1" # DeepSeek API base URL (should end in /v1)
|
||||||
|
api_key: "sk-2f2e6ad638e849ee827feabc0fde0dda" # Your DeepSeek API key
|
||||||
|
model: "deepseek-chat" # DeepSeek model name
|
||||||
|
timeout: 120 # Request timeout in seconds
|
||||||
|
max_retries: 3 # Maximum retry attempts
|
||||||
|
|
||||||
|
# Vocabulary Generator Configuration (used by generate.py for single runs)
|
||||||
|
vocab:
|
||||||
|
amount: 50 # Number of word pairs to generate
|
||||||
|
languages:
|
||||||
|
- 52 # Language ID for first word (15 = German)
|
||||||
|
- 1 # Language ID for second word (7 = Portuguese)
|
||||||
|
category: "Words for beginners" # Flashcard category / topic
|
||||||
|
emoji: "🇬🇧" # Emoji shown in the app's list overview
|
||||||
|
level: "A1" # CEFR level: A1, A2, B1, B2, C1, or C2
|
||||||
|
name: "Words for Beginners (EN-FI)" # Display name shown in the app
|
||||||
|
description: > # Short description shown in the app
|
||||||
|
The most essential words for beginner learners,
|
||||||
|
covering daily actions, movement, communication, and more.
|
||||||
|
instructions: > # Custom instructions passed to the AI
|
||||||
|
Focus on practical, everyday vocabulary that a beginner would encounter.
|
||||||
|
Prefer common single-word entries over long phrases.
|
||||||
|
output_filename: "words_beginners_en_fi.json" # Saved inside output_dir
|
||||||
|
|
||||||
|
# Output & Manifest Configuration
|
||||||
|
manifest:
|
||||||
|
output_dir: "output" # All JSON files are written here (copy this to your server)
|
||||||
|
filename: "vocab_manifest.json" # Manifest file that tracks all generated lists
|
||||||
68
config.py
Normal file
68
config.py
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
"""
|
||||||
|
Configuration management for VocabListGenerator
|
||||||
|
"""
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import yaml
|
||||||
|
from typing import Dict, Any, List
|
||||||
|
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
"""Configuration loader and validator for VocabListGenerator"""
|
||||||
|
|
||||||
|
def __init__(self, config_path: str = "conf"):
|
||||||
|
self.config_path = config_path
|
||||||
|
self.data = self._load_config()
|
||||||
|
self._validate_config()
|
||||||
|
|
||||||
|
def _load_config(self) -> Dict[str, Any]:
|
||||||
|
"""Load configuration from YAML file"""
|
||||||
|
try:
|
||||||
|
with open(self.config_path, 'r', encoding='utf-8') as f:
|
||||||
|
return yaml.safe_load(f)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print(f"Configuration file '{self.config_path}' not found!")
|
||||||
|
sys.exit(1)
|
||||||
|
except yaml.YAMLError as e:
|
||||||
|
print(f"Error parsing configuration file: {e}")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
def _validate_config(self):
|
||||||
|
"""Validate required configuration fields"""
|
||||||
|
if self.data is None:
|
||||||
|
print(f"Configuration file '{self.config_path}' is empty or invalid!")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
for section in ['llm', 'vocab']:
|
||||||
|
if section not in self.data:
|
||||||
|
print(f"Missing required section '{section}' in conf")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
vocab = self.data['vocab']
|
||||||
|
|
||||||
|
if 'languages' not in vocab or not isinstance(vocab['languages'], list) or len(vocab['languages']) != 2:
|
||||||
|
print("conf: 'vocab.languages' must contain exactly 2 language IDs (first and second language)")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
if 'amount' not in vocab or not isinstance(vocab['amount'], int) or vocab['amount'] < 1:
|
||||||
|
print("conf: 'vocab.amount' must be a positive integer")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
if 'category' not in vocab or not vocab['category']:
|
||||||
|
print("conf: 'vocab.category' must be a non-empty string")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def llm_config(self) -> Dict[str, Any]:
|
||||||
|
"""LLM connection settings"""
|
||||||
|
return self.data['llm']
|
||||||
|
|
||||||
|
@property
|
||||||
|
def vocab_config(self) -> Dict[str, Any]:
|
||||||
|
"""Vocabulary generator settings"""
|
||||||
|
return self.data['vocab']
|
||||||
|
|
||||||
|
@property
|
||||||
|
def manifest_config(self) -> Dict[str, Any]:
|
||||||
|
"""Manifest settings (optional section)"""
|
||||||
|
return self.data.get('manifest', {})
|
||||||
89
first.py
Normal file
89
first.py
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import json
|
||||||
|
import os
|
||||||
|
from datetime import datetime, timezone
|
||||||
|
|
||||||
|
def generate_vocabulary_import(
|
||||||
|
category_name: str,
|
||||||
|
lang_first_id: int,
|
||||||
|
lang_second_id: int,
|
||||||
|
word_pairs: list,
|
||||||
|
output_filename: str = "import_ready_vocab.json"
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Generates a Polly-compatible JSON import file for a new vocabulary category,
|
||||||
|
saving it in the same directory as this script.
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Generate a current timestamp in the exact ISO format Kotlin's Instant expects
|
||||||
|
now_iso = datetime.now(timezone.utc).strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + 'Z'
|
||||||
|
|
||||||
|
# Base structure for a CategoryExport
|
||||||
|
export_data = {
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": now_iso,
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": len(word_pairs),
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": f"Category: {category_name}"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999, # Dummy ID; your app's ID remapping will fix this on import
|
||||||
|
"name": category_name
|
||||||
|
},
|
||||||
|
"items": [],
|
||||||
|
"states": [], # Left empty because these are brand new words
|
||||||
|
"stageMappings": []
|
||||||
|
}
|
||||||
|
|
||||||
|
# Populate items and stage mappings
|
||||||
|
start_id = 100000
|
||||||
|
|
||||||
|
for idx, (word_first, word_second) in enumerate(word_pairs, start=start_id):
|
||||||
|
|
||||||
|
export_data["items"].append({
|
||||||
|
"id": idx,
|
||||||
|
"languageFirstId": lang_first_id,
|
||||||
|
"languageSecondId": lang_second_id,
|
||||||
|
"wordFirst": word_first,
|
||||||
|
"wordSecond": word_second,
|
||||||
|
"createdAt": now_iso,
|
||||||
|
"features": "{}" # Empty features block
|
||||||
|
})
|
||||||
|
|
||||||
|
export_data["stageMappings"].append({
|
||||||
|
"vocabularyItemId": idx,
|
||||||
|
"stage": "NEW"
|
||||||
|
})
|
||||||
|
|
||||||
|
# --- NEW: Get the directory of the current script and build the full path ---
|
||||||
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
full_output_path = os.path.join(script_dir, output_filename)
|
||||||
|
|
||||||
|
# Save to file using the absolute path
|
||||||
|
with open(full_output_path, 'w', encoding='utf-8') as f:
|
||||||
|
json.dump(export_data, f, indent=2, ensure_ascii=False)
|
||||||
|
|
||||||
|
print(f"Successfully generated {len(word_pairs)} items!")
|
||||||
|
print(f"Saved to: {full_output_path}")
|
||||||
|
|
||||||
|
|
||||||
|
# --- Example Usage ---
|
||||||
|
if __name__ == "__main__":
|
||||||
|
GERMAN_ID = 15
|
||||||
|
PORTUGUESE_ID = 7
|
||||||
|
|
||||||
|
new_words = [
|
||||||
|
("Krankenwagen", "ambulância"),
|
||||||
|
("Blutdruck", "pressão arterial"),
|
||||||
|
("Rollstuhl", "cadeira de rodas"),
|
||||||
|
("Fieberthermometer", "termômetro")
|
||||||
|
]
|
||||||
|
|
||||||
|
generate_vocabulary_import(
|
||||||
|
category_name="termos médicos - extra",
|
||||||
|
lang_first_id=GERMAN_ID,
|
||||||
|
lang_second_id=PORTUGUESE_ID,
|
||||||
|
word_pairs=new_words,
|
||||||
|
output_filename="polly_import_med_extra.json"
|
||||||
|
)
|
||||||
334
generate.py
Normal file
334
generate.py
Normal file
@@ -0,0 +1,334 @@
|
|||||||
|
"""
|
||||||
|
VocabListGenerator — Single-run script
|
||||||
|
----------------------------------------
|
||||||
|
Reads configuration from 'conf', calls the LLM to generate vocabulary word pairs,
|
||||||
|
writes a Polly-compatible JSON import file into the configured output folder,
|
||||||
|
and updates the manifest.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
python generate.py
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
import yaml
|
||||||
|
from typing import Dict, Any, Optional
|
||||||
|
|
||||||
|
from config import Config
|
||||||
|
from llm_client import LLMClient
|
||||||
|
from models import VocabRequest
|
||||||
|
from first import generate_vocabulary_import
|
||||||
|
from manifest_manager import update_manifest, print_manifest, prune_missing_files
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Language map helper
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def load_language_map(xml_path: str = "languages.xml") -> Dict[int, str]:
|
||||||
|
"""
|
||||||
|
Parse languages.xml and return a mapping of { language_id: language_name }.
|
||||||
|
E.g. {1: 'English', 2: 'Mandarin', 15: 'German', ...}
|
||||||
|
"""
|
||||||
|
language_map: Dict[int, str] = {}
|
||||||
|
try:
|
||||||
|
tree = ET.parse(xml_path)
|
||||||
|
root = tree.getroot()
|
||||||
|
for elem in root.iter("string"):
|
||||||
|
name_attr = elem.get("name", "")
|
||||||
|
if name_attr.startswith("language_"):
|
||||||
|
try:
|
||||||
|
lang_id = int(name_attr.split("_", 1)[1])
|
||||||
|
if elem.text:
|
||||||
|
language_map[lang_id] = elem.text.strip()
|
||||||
|
except (ValueError, AttributeError):
|
||||||
|
pass
|
||||||
|
except FileNotFoundError:
|
||||||
|
print(f"ERROR: '{xml_path}' not found.")
|
||||||
|
sys.exit(1)
|
||||||
|
except ET.ParseError as e:
|
||||||
|
print(f"ERROR: Could not parse '{xml_path}': {e}")
|
||||||
|
sys.exit(1)
|
||||||
|
return language_map
|
||||||
|
|
||||||
|
|
||||||
|
def load_language_code_map(xml_path: str = "languages.xml") -> Dict[int, str]:
|
||||||
|
"""
|
||||||
|
Parse languages.xml and return a mapping of { language_id: iso_code }.
|
||||||
|
E.g. {1: 'en', 7: 'pt', 15: 'de', ...}
|
||||||
|
Parsed from the string-array items like "de,DE,15".
|
||||||
|
"""
|
||||||
|
code_map: Dict[int, str] = {}
|
||||||
|
try:
|
||||||
|
tree = ET.parse(xml_path)
|
||||||
|
root = tree.getroot()
|
||||||
|
for array in root.iter("string-array"):
|
||||||
|
if array.get("name") == "language_codes":
|
||||||
|
for item in array.iter("item"):
|
||||||
|
if item.text:
|
||||||
|
parts = item.text.strip().split(",")
|
||||||
|
if len(parts) >= 3:
|
||||||
|
try:
|
||||||
|
lang_id = int(parts[2])
|
||||||
|
code_map[lang_id] = parts[0].lower()
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
except (FileNotFoundError, ET.ParseError):
|
||||||
|
pass
|
||||||
|
return code_map
|
||||||
|
|
||||||
|
|
||||||
|
def load_language_instructions(yaml_path: str = "language_instructions.yaml") -> Dict[int, Dict[str, str]]:
|
||||||
|
"""
|
||||||
|
Load language-specific instructions from YAML file.
|
||||||
|
Returns a mapping of { language_id: { key: instruction } }.
|
||||||
|
"""
|
||||||
|
instructions: Dict[int, Dict[str, str]] = {}
|
||||||
|
try:
|
||||||
|
with open(yaml_path, "r", encoding="utf-8") as f:
|
||||||
|
data = yaml.safe_load(f)
|
||||||
|
if data:
|
||||||
|
for lang_id_str, lang_data in data.items():
|
||||||
|
# Skip comments/strings
|
||||||
|
if isinstance(lang_id_str, str) and lang_id_str.startswith("#"):
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
lang_id = int(lang_id_str)
|
||||||
|
if isinstance(lang_data, dict):
|
||||||
|
instructions[lang_id] = lang_data
|
||||||
|
except (ValueError, TypeError):
|
||||||
|
pass
|
||||||
|
except FileNotFoundError:
|
||||||
|
print(f"WARNING: '{yaml_path}' not found. Using default instructions.")
|
||||||
|
except yaml.YAMLError as e:
|
||||||
|
print(f"WARNING: Could not parse '{yaml_path}': {e}")
|
||||||
|
return instructions
|
||||||
|
|
||||||
|
|
||||||
|
def get_language_instruction_text(lang_id: int, language_instructions: Dict[int, Dict[str, str]]) -> str:
|
||||||
|
"""
|
||||||
|
Get the instruction text for a specific language.
|
||||||
|
Returns a formatted string with transcription/variant instructions.
|
||||||
|
"""
|
||||||
|
if lang_id not in language_instructions:
|
||||||
|
return ""
|
||||||
|
|
||||||
|
lang_data = language_instructions[lang_id]
|
||||||
|
parts = []
|
||||||
|
|
||||||
|
# Add transcription instruction if present
|
||||||
|
if "transcription" in lang_data:
|
||||||
|
parts.append(lang_data["transcription"])
|
||||||
|
|
||||||
|
# Add variant instruction if present
|
||||||
|
if "variant" in lang_data:
|
||||||
|
parts.append(f"Use {lang_data['variant']}.")
|
||||||
|
|
||||||
|
# Add special instruction if present
|
||||||
|
if "special" in lang_data:
|
||||||
|
parts.append(lang_data["special"])
|
||||||
|
|
||||||
|
return " ".join(parts)
|
||||||
|
|
||||||
|
|
||||||
|
def merge_instructions(
|
||||||
|
base_instructions: str,
|
||||||
|
lang_first_id: int,
|
||||||
|
lang_second_id: int,
|
||||||
|
language_instructions: Dict[int, Dict[str, str]]
|
||||||
|
) -> str:
|
||||||
|
"""
|
||||||
|
Merge base instructions with language-specific instructions.
|
||||||
|
Language-specific instructions are appended to the base instructions.
|
||||||
|
"""
|
||||||
|
lang1_instr = get_language_instruction_text(lang_first_id, language_instructions)
|
||||||
|
lang2_instr = get_language_instruction_text(lang_second_id, language_instructions)
|
||||||
|
|
||||||
|
# Collect all instruction parts
|
||||||
|
all_parts = []
|
||||||
|
if base_instructions:
|
||||||
|
all_parts.append(base_instructions)
|
||||||
|
if lang1_instr:
|
||||||
|
all_parts.append(lang1_instr)
|
||||||
|
if lang2_instr:
|
||||||
|
all_parts.append(lang2_instr)
|
||||||
|
|
||||||
|
return " ".join(all_parts)
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Core generation function (reused by batch_generate.py)
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def run_generation(
|
||||||
|
llm: LLMClient,
|
||||||
|
language_map: Dict[int, str],
|
||||||
|
lang_first_id: int,
|
||||||
|
lang_second_id: int,
|
||||||
|
amount: int,
|
||||||
|
category: str,
|
||||||
|
name: str,
|
||||||
|
description: str,
|
||||||
|
instructions: str,
|
||||||
|
output_file_path: str, # absolute path including filename
|
||||||
|
manifest_path: str, # absolute path to manifest JSON
|
||||||
|
emoji: str = "",
|
||||||
|
level: str = "A2",
|
||||||
|
language_instructions: Optional[Dict[int, Dict[str, str]]] = None,
|
||||||
|
) -> bool:
|
||||||
|
"""
|
||||||
|
Generate one vocabulary list and update the manifest.
|
||||||
|
Returns True on success, False on failure.
|
||||||
|
"""
|
||||||
|
lang_first_name = language_map.get(lang_first_id)
|
||||||
|
lang_second_name = language_map.get(lang_second_id)
|
||||||
|
|
||||||
|
if not lang_first_name:
|
||||||
|
print(f" ERROR: Language ID {lang_first_id} not found in languages.xml")
|
||||||
|
return False
|
||||||
|
if not lang_second_name:
|
||||||
|
print(f" ERROR: Language ID {lang_second_id} not found in languages.xml")
|
||||||
|
return False
|
||||||
|
|
||||||
|
# Merge base instructions with language-specific instructions
|
||||||
|
final_instructions = instructions
|
||||||
|
if language_instructions:
|
||||||
|
final_instructions = merge_instructions(
|
||||||
|
instructions,
|
||||||
|
lang_first_id,
|
||||||
|
lang_second_id,
|
||||||
|
language_instructions
|
||||||
|
)
|
||||||
|
|
||||||
|
print(f" Languages : {lang_first_name} (ID {lang_first_id}) → {lang_second_name} (ID {lang_second_id})")
|
||||||
|
print(f" Amount : {amount} word pairs")
|
||||||
|
if final_instructions:
|
||||||
|
preview = final_instructions if len(final_instructions) <= 90 else final_instructions[:87] + "..."
|
||||||
|
print(f" Instructions: {preview}")
|
||||||
|
print()
|
||||||
|
|
||||||
|
request = VocabRequest(
|
||||||
|
amount=amount,
|
||||||
|
lang_first_id=lang_first_id,
|
||||||
|
lang_second_id=lang_second_id,
|
||||||
|
lang_first_name=lang_first_name,
|
||||||
|
lang_second_name=lang_second_name,
|
||||||
|
category=category,
|
||||||
|
instructions=final_instructions,
|
||||||
|
level=level,
|
||||||
|
)
|
||||||
|
|
||||||
|
print(" Generating vocabulary via LLM …")
|
||||||
|
word_pairs = llm.generate_vocabulary(request)
|
||||||
|
|
||||||
|
if not word_pairs:
|
||||||
|
print(" ERROR: No vocabulary pairs were generated.")
|
||||||
|
return False
|
||||||
|
|
||||||
|
print(f" Generated {len(word_pairs)} word pairs.")
|
||||||
|
preview_count = min(3, len(word_pairs))
|
||||||
|
for i, (w1, w2) in enumerate(word_pairs[:preview_count], 1):
|
||||||
|
print(f" {i}. {w1} → {w2}")
|
||||||
|
if len(word_pairs) > preview_count:
|
||||||
|
print(f" … and {len(word_pairs) - preview_count} more")
|
||||||
|
print()
|
||||||
|
|
||||||
|
# Ensure output directory exists
|
||||||
|
os.makedirs(os.path.dirname(output_file_path), exist_ok=True)
|
||||||
|
|
||||||
|
# Write Polly import file (pass absolute path directly)
|
||||||
|
generate_vocabulary_import(
|
||||||
|
category_name=category,
|
||||||
|
lang_first_id=lang_first_id,
|
||||||
|
lang_second_id=lang_second_id,
|
||||||
|
word_pairs=word_pairs,
|
||||||
|
output_filename=output_file_path,
|
||||||
|
)
|
||||||
|
|
||||||
|
# Update manifest
|
||||||
|
update_manifest(
|
||||||
|
manifest_path=manifest_path,
|
||||||
|
vocab_file_path=output_file_path,
|
||||||
|
lang_first_id=lang_first_id,
|
||||||
|
lang_second_id=lang_second_id,
|
||||||
|
category=category,
|
||||||
|
item_count=len(word_pairs),
|
||||||
|
name=name,
|
||||||
|
description=description,
|
||||||
|
emoji=emoji,
|
||||||
|
level=level,
|
||||||
|
)
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Main (single-run entry point)
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
print("=" * 50)
|
||||||
|
print(" VocabListGenerator")
|
||||||
|
print("=" * 50)
|
||||||
|
print()
|
||||||
|
|
||||||
|
config = Config()
|
||||||
|
vocab_cfg = config.vocab_config
|
||||||
|
manifest_cfg = config.manifest_config
|
||||||
|
|
||||||
|
language_map = load_language_map()
|
||||||
|
|
||||||
|
# Resolve paths
|
||||||
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
output_dir = os.path.join(script_dir, manifest_cfg.get("output_dir", "output"))
|
||||||
|
manifest_path = os.path.join(output_dir, manifest_cfg.get("filename", "vocab_manifest.json"))
|
||||||
|
output_filename = vocab_cfg.get("output_filename", "vocab_output.json")
|
||||||
|
vocab_file_path = os.path.join(output_dir, output_filename)
|
||||||
|
|
||||||
|
os.makedirs(output_dir, exist_ok=True)
|
||||||
|
|
||||||
|
# Prune stale manifest entries before generating
|
||||||
|
if os.path.isfile(manifest_path):
|
||||||
|
prune_missing_files(manifest_path, output_dir)
|
||||||
|
|
||||||
|
# Read parameters
|
||||||
|
lang_ids = vocab_cfg["languages"]
|
||||||
|
category = vocab_cfg["category"]
|
||||||
|
name = vocab_cfg.get("name", "").strip()
|
||||||
|
description = vocab_cfg.get("description", "").strip()
|
||||||
|
instructions = vocab_cfg.get("instructions", "").strip()
|
||||||
|
emoji = vocab_cfg.get("emoji", "").strip()
|
||||||
|
level = vocab_cfg.get("level", "A2").strip().upper()
|
||||||
|
amount = vocab_cfg["amount"]
|
||||||
|
|
||||||
|
print(f" Category : {category}")
|
||||||
|
print(f" Level : {level}")
|
||||||
|
print(f" Output dir : {output_dir}")
|
||||||
|
print(f" Manifest : {manifest_path}")
|
||||||
|
|
||||||
|
llm = LLMClient(config)
|
||||||
|
|
||||||
|
success = run_generation(
|
||||||
|
llm=llm,
|
||||||
|
language_map=language_map,
|
||||||
|
lang_first_id=lang_ids[0],
|
||||||
|
lang_second_id=lang_ids[1],
|
||||||
|
amount=amount,
|
||||||
|
category=category,
|
||||||
|
name=name,
|
||||||
|
description=description,
|
||||||
|
instructions=instructions,
|
||||||
|
output_file_path=vocab_file_path,
|
||||||
|
manifest_path=manifest_path,
|
||||||
|
emoji=emoji,
|
||||||
|
level=level,
|
||||||
|
)
|
||||||
|
|
||||||
|
if not success:
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
print_manifest(manifest_path)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
52
instructions.md
Normal file
52
instructions.md
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
## Core Rules & App Mechanics
|
||||||
|
When generating the Python logic for the JSON, you must adhere to these rules because of how the app's Kotlin data models and Room database are structured:
|
||||||
|
|
||||||
|
1. **Export Structure:** The root object is a `CategoryExport`. It must contain exactly one category definition and an array of items belonging to it.
|
||||||
|
2. **Dummy IDs:** Do not attempt to guess or fetch the target database IDs. The app handles ID remapping (ConflictResolution) natively during import.
|
||||||
|
* Always use `99999` for the category `id`.
|
||||||
|
* Start item `id`s sequentially from `100000`.
|
||||||
|
3. **Hardcoded Dates:** The Kotlin parser uses `kotlinx.serialization` and strictly expects ISO-8601 timestamps for date fields. If they are missing or empty, the app will crash. However, the dates do not need to be accurate for new imports. Hardcode `"2024-01-01T00:00:00.000Z"` for the `exportDate` and `createdAt` fields.
|
||||||
|
4. **Minimal Data:**
|
||||||
|
* `formatVersion` must be `1`.
|
||||||
|
* The `states` array must be completely empty: `[]` (since these are new words without learning history).
|
||||||
|
* The `features` property on every item must strictly be an empty JSON object string: `"{}"`.
|
||||||
|
* Completely omit the `zipfFrequencyFirst` and `zipfFrequencySecond` fields.
|
||||||
|
5. **Stage Mappings:** Every generated item needs a corresponding entry in the `stageMappings` array, setting its learning stage to `"NEW"`.
|
||||||
|
|
||||||
|
## Target JSON Schema
|
||||||
|
Your Python script must output a JSON file that perfectly matches this structure. The `items` and `stageMappings` arrays should expand dynamically based on the input words.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"formatVersion": 1,
|
||||||
|
"exportDate": "2024-01-01T00:00:00.000Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 1,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: <CATEGORY_NAME>"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "<CATEGORY_NAME>"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": <LANG_FIRST_ID>,
|
||||||
|
"languageSecondId": <LANG_SECOND_ID>,
|
||||||
|
"wordFirst": "<WORD_1>",
|
||||||
|
"wordSecond": "<WORD_2>",
|
||||||
|
"createdAt": "2024-01-01T00:00:00.000Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
90
language_instructions.yaml
Normal file
90
language_instructions.yaml
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
# Language-Specific Instructions
|
||||||
|
# ==============================
|
||||||
|
# This file contains language-specific instructions that are automatically
|
||||||
|
# applied when generating vocabulary lists. The instructions are merged with
|
||||||
|
# any batch-specific instructions.
|
||||||
|
#
|
||||||
|
# Supported languages (by ID):
|
||||||
|
# 1=English 2=Mandarin 3=Spanish 4=Hindi 5=Arabic
|
||||||
|
# 7=Portuguese 8=Russian 13=Korean 14=French 15=German
|
||||||
|
# 19=Indonesian 20=Italian 21=Japanese 24=Polish 39=Romanian
|
||||||
|
|
||||||
|
# Non-Latin script languages require Latin transcription
|
||||||
|
# These instructions are added automatically for relevant languages
|
||||||
|
|
||||||
|
# Japanese (ID: 21)
|
||||||
|
21:
|
||||||
|
name: "Japanese"
|
||||||
|
transcription: "Include hiragana and romaji in parentheses ONLY for pronunciation. Do NOT add grammatical metadata like formal/informal. Example: 食べる (たべる, taberu)"
|
||||||
|
|
||||||
|
# Chinese/Mandarin (ID: 2)
|
||||||
|
2:
|
||||||
|
name: "Chinese (Mandarin)"
|
||||||
|
transcription: "Include pinyin in parentheses ONLY for pronunciation. Do NOT add tone marks or grammatical annotations. Example: 吃 (chī)"
|
||||||
|
|
||||||
|
# Korean (ID: 13)
|
||||||
|
13:
|
||||||
|
name: "Korean"
|
||||||
|
transcription: "Include romanization in parentheses ONLY for pronunciation. Do NOT add grammatical metadata. Example: 먹다 (meokda)"
|
||||||
|
|
||||||
|
# Russian (ID: 8) - Cyrillic script
|
||||||
|
8:
|
||||||
|
name: "Russian"
|
||||||
|
transcription: "Include transliteration in Latin script in parentheses ONLY for pronunciation. Do NOT add gender or case information."
|
||||||
|
|
||||||
|
# Arabic (ID: 5) - Arabic script
|
||||||
|
5:
|
||||||
|
name: "Arabic"
|
||||||
|
transcription: "Include transliteration in Latin script in parentheses ONLY for pronunciation. Do NOT add gender or root information."
|
||||||
|
|
||||||
|
# Hindi (ID: 4) - Devanagari script
|
||||||
|
4:
|
||||||
|
name: "Hindi"
|
||||||
|
transcription: "Include transliteration in Latin script in parentheses ONLY for pronunciation. Do NOT add gender or grammatical information."
|
||||||
|
|
||||||
|
# Polish (ID: 24) - Latin script but special characters
|
||||||
|
24:
|
||||||
|
name: "Polish"
|
||||||
|
special: "Use proper Polish diacritics (ą, ć, ę, ł, ń, ó, ś, ź, ż)."
|
||||||
|
|
||||||
|
# Portuguese (ID: 7)
|
||||||
|
7:
|
||||||
|
name: "Portuguese"
|
||||||
|
variant: "Brazilian Portuguese"
|
||||||
|
special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female). Use Brazilian Portuguese."
|
||||||
|
|
||||||
|
# Indonesian (ID: 19) - Latin script
|
||||||
|
19:
|
||||||
|
name: "Indonesian"
|
||||||
|
special: "Use standard Indonesian spelling."
|
||||||
|
|
||||||
|
# Romanian (ID: 39) - Latin script
|
||||||
|
39:
|
||||||
|
name: "Romanian"
|
||||||
|
special: "Use proper Romanian diacritics (ă, â, î, ș, ț)."
|
||||||
|
|
||||||
|
# Latin script languages - avoid metadata in parentheses
|
||||||
|
# English (ID: 1)
|
||||||
|
1:
|
||||||
|
name: "English"
|
||||||
|
special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female), (slang), etc."
|
||||||
|
|
||||||
|
# Spanish (ID: 3)
|
||||||
|
3:
|
||||||
|
name: "Spanish"
|
||||||
|
special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female), (slang), etc. Include accents (á, é, í, ó, ú, ü, ñ)."
|
||||||
|
|
||||||
|
# French (ID: 14)
|
||||||
|
14:
|
||||||
|
name: "French"
|
||||||
|
special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female). Include accents (é, è, ê, ë, à, â, ç)."
|
||||||
|
|
||||||
|
# German (ID: 15)
|
||||||
|
15:
|
||||||
|
name: "German"
|
||||||
|
special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female). Include umlauts (ä, ö, ü, ß)."
|
||||||
|
|
||||||
|
# Italian (ID: 20)
|
||||||
|
20:
|
||||||
|
name: "Italian"
|
||||||
|
special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formale), (informale), (maschile), (femminile). Include accents (à, è, é, ì, ò, ù)."
|
||||||
112
languages.xml
Normal file
112
languages.xml
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string-array name="language_codes">
|
||||||
|
<item>en,US,1</item>
|
||||||
|
<item>zh,CN,2</item>
|
||||||
|
<item>es,ES,3</item>
|
||||||
|
<item>hi,IN,4</item>
|
||||||
|
<item>ar,SA,5</item>
|
||||||
|
<item>bn,BD,6</item>
|
||||||
|
<item>pt,BR,7</item>
|
||||||
|
<item>ru,RU,8</item>
|
||||||
|
<item>pa,IN,9</item>
|
||||||
|
<item>mr,IN,10</item>
|
||||||
|
<item>te,IN,11</item>
|
||||||
|
<item>tr,TR,12</item>
|
||||||
|
<item>ko,KR,13</item>
|
||||||
|
<item>fr,FR,14</item>
|
||||||
|
<item>de,DE,15</item>
|
||||||
|
<item>vi,VN,16</item>
|
||||||
|
<item>ta,IN,17</item>
|
||||||
|
<item>ur,PK,18</item>
|
||||||
|
<item>id,ID,19</item>
|
||||||
|
<item>it,IT,20</item>
|
||||||
|
<item>ja,JP,21</item>
|
||||||
|
<item>fa,IR,22</item>
|
||||||
|
<item>bho,IN,23</item>
|
||||||
|
<item>pl,PL,24</item>
|
||||||
|
<item>ps,AF,25</item>
|
||||||
|
<item>jv,ID,26</item>
|
||||||
|
<item>mai,IN,27</item>
|
||||||
|
<item>ml,IN,28</item>
|
||||||
|
<item>su,ID,29</item>
|
||||||
|
<item>ha,NG,30</item>
|
||||||
|
<item>or,IN,31</item>
|
||||||
|
<item>my,MM,32</item>
|
||||||
|
<item>uk,UA,33</item>
|
||||||
|
<item>yo,NG,34</item>
|
||||||
|
<item>uz,UZ,35</item>
|
||||||
|
<item>sd,PK,36</item>
|
||||||
|
<item>am,ET,37</item>
|
||||||
|
<item>ff,SN,38</item>
|
||||||
|
<item>ro,RO,39</item>
|
||||||
|
<item>ig,NG,40</item>
|
||||||
|
<item>ceb,PH,41</item>
|
||||||
|
<item>gu,IN,42</item>
|
||||||
|
<item>kr,NG,43</item>
|
||||||
|
<item>ms,MY,44</item>
|
||||||
|
<item>kn,IN,45</item>
|
||||||
|
<item>nl,NL,46</item>
|
||||||
|
<item>hu,HU,47</item>
|
||||||
|
<item>el,GR,48</item>
|
||||||
|
<item>cz,CZ,49</item>
|
||||||
|
<item>he,IL,50</item>
|
||||||
|
<item>hr,HR,51</item>
|
||||||
|
<item>fil,PH,52</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string name="language_1">English</string>
|
||||||
|
<string name="language_2">Mandarin</string>
|
||||||
|
<string name="language_3">Spanish</string>
|
||||||
|
<string name="language_4">Hindi</string>
|
||||||
|
<string name="language_5">Arabic</string>
|
||||||
|
<string name="language_6">Bengali</string>
|
||||||
|
<string name="language_7">Portuguese</string>
|
||||||
|
<string name="language_8">Russian</string>
|
||||||
|
<string name="language_9">Punjabi</string>
|
||||||
|
<string name="language_10">Marathi</string>
|
||||||
|
<string name="language_11">Telugu</string>
|
||||||
|
<string name="language_12">Turkish</string>
|
||||||
|
<string name="language_13">Korean</string>
|
||||||
|
<string name="language_14">French</string>
|
||||||
|
<string name="language_15">German</string>
|
||||||
|
<string name="language_16">Vietnamese</string>
|
||||||
|
<string name="language_17">Tamil</string>
|
||||||
|
<string name="language_18">Urdu</string>
|
||||||
|
<string name="language_19">Indonesian</string>
|
||||||
|
<string name="language_20">Italian</string>
|
||||||
|
<string name="language_21">Japanese</string>
|
||||||
|
<string name="language_22">Persian</string>
|
||||||
|
<string name="language_23">Bhojpuri</string>
|
||||||
|
<string name="language_24">Polish</string>
|
||||||
|
<string name="language_25">Pashto</string>
|
||||||
|
<string name="language_26">Javanese</string>
|
||||||
|
<string name="language_27">Maithili</string>
|
||||||
|
<string name="language_28">Malayalam</string>
|
||||||
|
<string name="language_29">Sundanese</string>
|
||||||
|
<string name="language_30">Hausa</string>
|
||||||
|
<string name="language_31">Odia</string>
|
||||||
|
<string name="language_32">Burmese</string>
|
||||||
|
<string name="language_33">Ukrainian</string>
|
||||||
|
<string name="language_34">Yoruba</string>
|
||||||
|
<string name="language_35">Uzbek</string>
|
||||||
|
<string name="language_36">Sindhi</string>
|
||||||
|
<string name="language_37">Amharic</string>
|
||||||
|
<string name="language_38">Fula</string>
|
||||||
|
<string name="language_39">Romanian</string>
|
||||||
|
<string name="language_40">Igbo</string>
|
||||||
|
<string name="language_41">Cebuano</string>
|
||||||
|
<string name="language_42">Gujarati</string>
|
||||||
|
<string name="language_43">Kanuri</string>
|
||||||
|
<string name="language_44">Malay</string>
|
||||||
|
<string name="language_45">Kannada</string>
|
||||||
|
<string name="language_46">Dutch</string>
|
||||||
|
<string name="language_47">Hungarian</string>
|
||||||
|
<string name="language_48">Greek</string>
|
||||||
|
<string name="language_49">Czech</string>
|
||||||
|
<string name="language_50">Hebrew</string>
|
||||||
|
<string name="language_51">Croatian</string>
|
||||||
|
<string name="language_52">Filipino</string>
|
||||||
|
|
||||||
|
|
||||||
|
</resources>
|
||||||
176
llm_client.py
Normal file
176
llm_client.py
Normal file
@@ -0,0 +1,176 @@
|
|||||||
|
"""
|
||||||
|
OpenAI-compatible LLM client for VocabListGenerator
|
||||||
|
Adapted from ResourceTranslate/llm_client.py
|
||||||
|
"""
|
||||||
|
|
||||||
|
import json
|
||||||
|
import openai
|
||||||
|
from typing import List, Tuple
|
||||||
|
|
||||||
|
from models import VocabRequest, CEFR_DESCRIPTIONS
|
||||||
|
from config import Config
|
||||||
|
|
||||||
|
|
||||||
|
class LLMClient:
|
||||||
|
"""OpenAI-compatible LLM client (LM Studio / DeepSeek)"""
|
||||||
|
|
||||||
|
def __init__(self, config: Config):
|
||||||
|
self.config = config
|
||||||
|
self.client = openai.OpenAI(
|
||||||
|
base_url=config.llm_config['base_url'],
|
||||||
|
api_key=config.llm_config.get('api_key', 'not-needed')
|
||||||
|
)
|
||||||
|
self.model = config.llm_config['model']
|
||||||
|
self.timeout = config.llm_config.get('timeout', 30)
|
||||||
|
self.max_retries = config.llm_config.get('max_retries', 3)
|
||||||
|
|
||||||
|
def generate_vocabulary(self, request: VocabRequest) -> List[Tuple[str, str]]:
|
||||||
|
"""
|
||||||
|
Ask the LLM to generate vocabulary word pairs for the given request.
|
||||||
|
Returns a list of (word_in_lang_first, word_in_lang_second) tuples.
|
||||||
|
"""
|
||||||
|
prompt = self._build_vocab_prompt(request)
|
||||||
|
|
||||||
|
system_message = (
|
||||||
|
"You are an expert language teacher and vocabulary specialist. "
|
||||||
|
"Generate accurate, natural vocabulary word pairs exactly as instructed. "
|
||||||
|
"Your response must be a valid JSON array and nothing else."
|
||||||
|
)
|
||||||
|
|
||||||
|
for attempt in range(self.max_retries):
|
||||||
|
try:
|
||||||
|
response = self.client.chat.completions.create(
|
||||||
|
model=self.model,
|
||||||
|
messages=[
|
||||||
|
{"role": "system", "content": system_message},
|
||||||
|
{"role": "user", "content": prompt}
|
||||||
|
],
|
||||||
|
temperature=0.7,
|
||||||
|
timeout=self.timeout
|
||||||
|
)
|
||||||
|
|
||||||
|
if not response or not response.choices:
|
||||||
|
print(f" [attempt {attempt + 1}] Empty response from LLM")
|
||||||
|
continue
|
||||||
|
|
||||||
|
choice = response.choices[0]
|
||||||
|
if not hasattr(choice, 'message') or not choice.message:
|
||||||
|
print(f" [attempt {attempt + 1}] Invalid response structure")
|
||||||
|
continue
|
||||||
|
|
||||||
|
content = choice.message.content
|
||||||
|
if content is None:
|
||||||
|
print(f" [attempt {attempt + 1}] Empty content in response")
|
||||||
|
continue
|
||||||
|
|
||||||
|
pairs = self._parse_vocab_response(content)
|
||||||
|
if pairs:
|
||||||
|
return pairs
|
||||||
|
else:
|
||||||
|
print(f" [attempt {attempt + 1}] Could not parse valid pairs from response")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f" [attempt {attempt + 1}] Failed: {e}")
|
||||||
|
if attempt == self.max_retries - 1:
|
||||||
|
print("All attempts exhausted.")
|
||||||
|
|
||||||
|
return []
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
# Private helpers
|
||||||
|
# ------------------------------------------------------------------
|
||||||
|
|
||||||
|
def _build_vocab_prompt(self, request: VocabRequest) -> str:
|
||||||
|
"""Build the vocabulary generation prompt."""
|
||||||
|
level_desc = CEFR_DESCRIPTIONS.get(request.level, "")
|
||||||
|
lines = [
|
||||||
|
f"Generate exactly {request.amount} vocabulary word pairs for the topic: \"{request.category}\".",
|
||||||
|
"",
|
||||||
|
f"Proficiency level: {request.level}" + (f" — {level_desc}" if level_desc else ""),
|
||||||
|
"",
|
||||||
|
f"First language (wordFirst): {request.lang_first_name}",
|
||||||
|
f"Second language (wordSecond): {request.lang_second_name}",
|
||||||
|
]
|
||||||
|
|
||||||
|
if request.instructions and request.instructions.strip():
|
||||||
|
lines += [
|
||||||
|
"",
|
||||||
|
"Additional instructions (follow these carefully):",
|
||||||
|
request.instructions.strip(),
|
||||||
|
]
|
||||||
|
|
||||||
|
lines += [
|
||||||
|
"",
|
||||||
|
"Rules:",
|
||||||
|
"- Choose vocabulary appropriate for the specified proficiency level.",
|
||||||
|
"- Return ONLY a JSON array. No markdown, no explanation, no extra text.",
|
||||||
|
"- Each element is a 2-item array: [word_in_first_language, word_in_second_language].",
|
||||||
|
f"- The array must contain exactly {request.amount} unique pairs.",
|
||||||
|
"- NO DUPLICATES: Each word in the first language must appear only once.",
|
||||||
|
"- VARY the vocabulary: avoid repeating similar words.",
|
||||||
|
"",
|
||||||
|
"Example format:",
|
||||||
|
'[',
|
||||||
|
' ["Krankenhaus", "hospital"],',
|
||||||
|
' ["Arzt", "médico"]',
|
||||||
|
']',
|
||||||
|
]
|
||||||
|
|
||||||
|
return "\n".join(lines)
|
||||||
|
|
||||||
|
def _parse_vocab_response(self, response: str) -> List[Tuple[str, str]]:
|
||||||
|
"""Parse the LLM response into a list of word-pair tuples."""
|
||||||
|
if not response or not response.strip():
|
||||||
|
return []
|
||||||
|
|
||||||
|
try:
|
||||||
|
text = response.strip()
|
||||||
|
|
||||||
|
# Try direct parse first
|
||||||
|
if text.startswith('['):
|
||||||
|
data = json.loads(text)
|
||||||
|
else:
|
||||||
|
# Extract JSON array from surrounding text
|
||||||
|
start = text.find('[')
|
||||||
|
end = text.rfind(']') + 1
|
||||||
|
if start == -1 or end == 0:
|
||||||
|
print(f"Could not locate JSON array in response:\n{response[:500]}")
|
||||||
|
return []
|
||||||
|
data = json.loads(text[start:end])
|
||||||
|
|
||||||
|
# Check for duplicates and log warning
|
||||||
|
seen_first = {}
|
||||||
|
duplicates = []
|
||||||
|
pairs: List[Tuple[str, str]] = []
|
||||||
|
for item in data:
|
||||||
|
if isinstance(item, (list, tuple)) and len(item) >= 2:
|
||||||
|
word_first = str(item[0]).strip()
|
||||||
|
word_second = str(item[1]).strip()
|
||||||
|
|
||||||
|
# Track duplicates
|
||||||
|
if word_first in seen_first:
|
||||||
|
duplicates.append(word_first)
|
||||||
|
else:
|
||||||
|
seen_first[word_first] = word_second
|
||||||
|
|
||||||
|
pairs.append((word_first, word_second))
|
||||||
|
|
||||||
|
# Log duplicates if found
|
||||||
|
if duplicates:
|
||||||
|
unique_dups = list(set(duplicates))
|
||||||
|
print(f" ⚠ Warning: Found {len(duplicates)} duplicate first-language words: {unique_dups[:5]}{'...' if len(unique_dups) > 5 else ''}")
|
||||||
|
# Deduplicate - keep first occurrence only
|
||||||
|
pairs = list(seen_first.items())
|
||||||
|
print(f" → Using {len(pairs)} unique pairs after deduplication")
|
||||||
|
|
||||||
|
return pairs
|
||||||
|
|
||||||
|
except json.JSONDecodeError as e:
|
||||||
|
print(f"JSON parse error: {e}")
|
||||||
|
print(f"Raw response (first 800 chars):\n{response[:800]}")
|
||||||
|
print(f"Raw response (last 200 chars):\n{response[-200:]}")
|
||||||
|
return []
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Unexpected error parsing response: {e}")
|
||||||
|
print(f"Response preview:\n{response[:500]}")
|
||||||
|
return []
|
||||||
76
manifest.json
Normal file
76
manifest.json
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
{
|
||||||
|
"files": [
|
||||||
|
{
|
||||||
|
"id": "de_dict",
|
||||||
|
"name": "Deutsches Wörterbuch",
|
||||||
|
"description": "Deutsches offline Wörterbuch",
|
||||||
|
"version": "1.0.1",
|
||||||
|
"assets": [
|
||||||
|
{
|
||||||
|
"filename": "dictionary_de.db",
|
||||||
|
"size_bytes": 79745024,
|
||||||
|
"checksum_sha256": "63FF07726B5D6B3B877AA55C2324EB6BD3D1DBDC72CC8C642C57364324196913"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename": "dictionary_de.zstdict",
|
||||||
|
"size_bytes": 4001992,
|
||||||
|
"checksum_sha256": "FD6D2D524363827C6F945B3EADA8DEFC9762DB61C71C16BFF629AE88FA95F522"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "en_dict",
|
||||||
|
"name": "English Dictionary",
|
||||||
|
"description": "Complete dictionary of the English language",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"assets": [
|
||||||
|
{
|
||||||
|
"filename": "dictionary_en.db",
|
||||||
|
"size_bytes": 271532032,
|
||||||
|
"checksum_sha256": "96FB126218ADC146F78B8877D77FA23187A45FBB529365614DBD61AEB2F09D17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename": "dictionary_en.zstdict",
|
||||||
|
"size_bytes": 7340032,
|
||||||
|
"checksum_sha256": "FD8F967FC0A70E1BE5D860355B76188485A754FBB7C1ED2FA0C5958B7AA905AA"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "pt_dict",
|
||||||
|
"name": "Dicionário de Português",
|
||||||
|
"description": "Dicionário com 173.251 termos da língua portuguesa.",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"assets": [
|
||||||
|
{
|
||||||
|
"filename": "dictionary_pt.db",
|
||||||
|
"size_bytes": 17203200,
|
||||||
|
"checksum_sha256": "774B0FF3DBB1B2925173F229FF81428423687BBBD491F95B0E3CE930C9E2D203"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename": "dictionary_pt.zstdict",
|
||||||
|
"size_bytes": 3076907,
|
||||||
|
"checksum_sha256": "56D4B575C8A98FB2E85EF5A9080C592BD3FCD81A14730AB76D5A5A9F45225BFA"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "fr_dict",
|
||||||
|
"name": "Dictionary (FR)",
|
||||||
|
"description": "Auto-generated",
|
||||||
|
"version": "1.0.1",
|
||||||
|
"assets": [
|
||||||
|
{
|
||||||
|
"filename": "dictionary_fr.db",
|
||||||
|
"size_bytes": 128954368,
|
||||||
|
"checksum_sha256": "9ADE82E30DEC0FB2946085FD15039CD7425FEAB69EFF5B771ACB385C4726C4F4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename": "dictionary_fr.zstdict",
|
||||||
|
"size_bytes": 7340032,
|
||||||
|
"checksum_sha256": "3ACD90DF2891541436655E5E6FCCB28179CD6217082B460FF1C9627CFFD1FE5A"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
223
manifest_manager.py
Normal file
223
manifest_manager.py
Normal file
@@ -0,0 +1,223 @@
|
|||||||
|
"""
|
||||||
|
Manifest manager for VocabListGenerator
|
||||||
|
-----------------------------------------
|
||||||
|
Maintains vocab_manifest.json — the index file the app fetches to discover
|
||||||
|
all available vocabulary lists, their metadata, and download info.
|
||||||
|
|
||||||
|
Manifest entry schema
|
||||||
|
---------------------
|
||||||
|
{
|
||||||
|
"id": "verbs_beginners", // filename stem (no .json)
|
||||||
|
"name": "Verbs for Beginners (DE-PT)",
|
||||||
|
"description": "...",
|
||||||
|
"filename": "verbs_beginners.json", // file the app downloads
|
||||||
|
"language_ids": [15, 7], // [lang_first_id, lang_second_id]
|
||||||
|
"category": "Verbs for beginners",
|
||||||
|
"item_count": 104,
|
||||||
|
"level": "A1",
|
||||||
|
"emoji": "🏃",
|
||||||
|
"version": 1,
|
||||||
|
"size_bytes": 45312,
|
||||||
|
"checksum_sha256": "A1B2C3...",
|
||||||
|
"created_at": "2026-02-18T20:53:54Z", // first generation
|
||||||
|
"updated_at": "2026-02-18T21:10:00Z" // last re-generation
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
from datetime import datetime, timezone
|
||||||
|
from pathlib import Path
|
||||||
|
from typing import Any, Dict, List, Optional
|
||||||
|
|
||||||
|
|
||||||
|
MANIFEST_VERSION = "1.0"
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Public API
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def prune_missing_files(manifest_path: str, output_dir: str) -> int:
|
||||||
|
"""
|
||||||
|
Remove entries from the manifest whose vocab file no longer exists in
|
||||||
|
*output_dir*. Saves the manifest only when at least one entry is removed.
|
||||||
|
|
||||||
|
Returns the number of entries that were pruned.
|
||||||
|
"""
|
||||||
|
manifest = _load_manifest(manifest_path)
|
||||||
|
output_path = Path(output_dir)
|
||||||
|
|
||||||
|
before = len(manifest["lists"])
|
||||||
|
surviving = []
|
||||||
|
for entry in manifest["lists"]:
|
||||||
|
file_path = output_path / entry["filename"]
|
||||||
|
if file_path.is_file():
|
||||||
|
surviving.append(entry)
|
||||||
|
else:
|
||||||
|
print(f" [manifest] Pruned missing file: {entry['filename']} (id={entry['id']})")
|
||||||
|
|
||||||
|
removed = before - len(surviving)
|
||||||
|
if removed:
|
||||||
|
manifest["lists"] = surviving
|
||||||
|
manifest["updated_at"] = _utc_now()
|
||||||
|
_save_manifest(manifest_path, manifest)
|
||||||
|
print(f" [manifest] Pruned {removed} stale entr{'y' if removed == 1 else 'ies'} → {manifest_path}")
|
||||||
|
|
||||||
|
return removed
|
||||||
|
|
||||||
|
|
||||||
|
def update_manifest(
|
||||||
|
manifest_path: str,
|
||||||
|
vocab_file_path: str,
|
||||||
|
lang_first_id: int,
|
||||||
|
lang_second_id: int,
|
||||||
|
category: str,
|
||||||
|
item_count: int,
|
||||||
|
name: str = "",
|
||||||
|
description: str = "",
|
||||||
|
emoji: str = "",
|
||||||
|
level: str = "",
|
||||||
|
) -> None:
|
||||||
|
"""
|
||||||
|
Compute size + checksum of *vocab_file_path*, then upsert an entry in the
|
||||||
|
manifest at *manifest_path*. Creates the manifest if it does not exist yet.
|
||||||
|
|
||||||
|
If an entry with the same ``id`` already exists it is updated in-place
|
||||||
|
(created_at is preserved, updated_at is refreshed).
|
||||||
|
"""
|
||||||
|
vocab_path = Path(vocab_file_path)
|
||||||
|
if not vocab_path.is_file():
|
||||||
|
print(f" [manifest] WARNING: vocab file not found: {vocab_file_path}")
|
||||||
|
return
|
||||||
|
|
||||||
|
entry_id = vocab_path.stem # e.g. "verbs_beginners"
|
||||||
|
filename = vocab_path.name # e.g. "verbs_beginners.json"
|
||||||
|
|
||||||
|
size_bytes = _file_size(vocab_path)
|
||||||
|
checksum_sha256 = _sha256(vocab_path)
|
||||||
|
now_iso = _utc_now()
|
||||||
|
|
||||||
|
# Load manifest; drop any entries whose files have since been deleted
|
||||||
|
output_dir = str(vocab_path.parent)
|
||||||
|
manifest = _load_manifest(manifest_path)
|
||||||
|
manifest["lists"] = [
|
||||||
|
e for e in manifest["lists"]
|
||||||
|
if (vocab_path.parent / e["filename"]).is_file()
|
||||||
|
]
|
||||||
|
|
||||||
|
# Find existing entry (if any)
|
||||||
|
existing = _find_entry(manifest["lists"], entry_id)
|
||||||
|
|
||||||
|
if existing is None:
|
||||||
|
# Brand-new entry
|
||||||
|
entry: Dict[str, Any] = {
|
||||||
|
"id": entry_id,
|
||||||
|
"name": name or entry_id,
|
||||||
|
"description": description,
|
||||||
|
"filename": filename,
|
||||||
|
"language_ids": [lang_first_id, lang_second_id],
|
||||||
|
"category": category,
|
||||||
|
"item_count": item_count,
|
||||||
|
"level": level,
|
||||||
|
"emoji": emoji,
|
||||||
|
"version": 1,
|
||||||
|
"size_bytes": size_bytes,
|
||||||
|
"checksum_sha256": checksum_sha256,
|
||||||
|
"created_at": now_iso,
|
||||||
|
"updated_at": now_iso,
|
||||||
|
}
|
||||||
|
manifest["lists"].append(entry)
|
||||||
|
print(f" [manifest] Added new entry: {entry_id}")
|
||||||
|
else:
|
||||||
|
# Update mutable fields; keep created_at and version
|
||||||
|
existing["name"] = name or existing.get("name", entry_id)
|
||||||
|
existing["description"] = description or existing.get("description", "")
|
||||||
|
existing["filename"] = filename
|
||||||
|
existing["language_ids"] = [lang_first_id, lang_second_id]
|
||||||
|
existing["category"] = category
|
||||||
|
existing["item_count"] = item_count
|
||||||
|
existing["level"] = level or existing.get("level", "")
|
||||||
|
existing["emoji"] = emoji or existing.get("emoji", "")
|
||||||
|
existing.setdefault("version", 1) # preserve existing version if already set
|
||||||
|
existing["size_bytes"] = size_bytes
|
||||||
|
existing["checksum_sha256"] = checksum_sha256
|
||||||
|
existing["updated_at"] = now_iso
|
||||||
|
print(f" [manifest] Updated existing entry: {entry_id}")
|
||||||
|
|
||||||
|
# Sort list alphabetically by id for stable output
|
||||||
|
manifest["lists"].sort(key=lambda e: e["id"])
|
||||||
|
manifest["updated_at"] = now_iso
|
||||||
|
|
||||||
|
_save_manifest(manifest_path, manifest)
|
||||||
|
print(f" [manifest] Saved → {manifest_path}")
|
||||||
|
|
||||||
|
|
||||||
|
def print_manifest(manifest_path: str) -> None:
|
||||||
|
"""Pretty-print a summary of the manifest to stdout."""
|
||||||
|
manifest = _load_manifest(manifest_path)
|
||||||
|
lists = manifest.get("lists", [])
|
||||||
|
print(f"\nManifest: {manifest_path} ({len(lists)} lists)")
|
||||||
|
print("-" * 60)
|
||||||
|
for entry in lists:
|
||||||
|
lang_ids = ", ".join(str(i) for i in entry.get("language_ids", []))
|
||||||
|
print(
|
||||||
|
f" [{entry['id']}] {entry['name']}\n"
|
||||||
|
f" category={entry['category']} "
|
||||||
|
f"items={entry['item_count']} "
|
||||||
|
f"langs=[{lang_ids}] "
|
||||||
|
f"size={entry['size_bytes']} B\n"
|
||||||
|
f" updated={entry['updated_at']}"
|
||||||
|
)
|
||||||
|
print()
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Private helpers
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def _load_manifest(path: str) -> Dict[str, Any]:
|
||||||
|
"""Load existing manifest or return a fresh skeleton."""
|
||||||
|
if os.path.isfile(path):
|
||||||
|
try:
|
||||||
|
with open(path, "r", encoding="utf-8") as f:
|
||||||
|
return json.load(f)
|
||||||
|
except (json.JSONDecodeError, OSError) as e:
|
||||||
|
print(f" [manifest] WARNING: could not read manifest ({e}), starting fresh.")
|
||||||
|
|
||||||
|
return {
|
||||||
|
"manifest_version": MANIFEST_VERSION,
|
||||||
|
"updated_at": _utc_now(),
|
||||||
|
"lists": [],
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def _save_manifest(path: str, manifest: Dict[str, Any]) -> None:
|
||||||
|
with open(path, "w", encoding="utf-8") as f:
|
||||||
|
json.dump(manifest, f, indent=2, ensure_ascii=False)
|
||||||
|
|
||||||
|
|
||||||
|
def _find_entry(
|
||||||
|
lists: List[Dict[str, Any]], entry_id: str
|
||||||
|
) -> Optional[Dict[str, Any]]:
|
||||||
|
for entry in lists:
|
||||||
|
if entry.get("id") == entry_id:
|
||||||
|
return entry
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def _file_size(path: Path) -> int:
|
||||||
|
return path.stat().st_size
|
||||||
|
|
||||||
|
|
||||||
|
def _sha256(path: Path) -> str:
|
||||||
|
h = hashlib.sha256()
|
||||||
|
with open(path, "rb") as f:
|
||||||
|
for chunk in iter(lambda: f.read(65536), b""):
|
||||||
|
h.update(chunk)
|
||||||
|
return h.hexdigest().upper()
|
||||||
|
|
||||||
|
|
||||||
|
def _utc_now() -> str:
|
||||||
|
return datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ")
|
||||||
31
models.py
Normal file
31
models.py
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
"""
|
||||||
|
Data models for VocabListGenerator
|
||||||
|
"""
|
||||||
|
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
|
||||||
|
# Valid CEFR proficiency levels
|
||||||
|
CEFR_LEVELS = ("A1", "A2", "B1", "B2", "C1", "C2")
|
||||||
|
|
||||||
|
CEFR_DESCRIPTIONS = {
|
||||||
|
"A1": "Beginner — absolute basics, the 100-200 most common words, simple concrete concepts",
|
||||||
|
"A2": "Elementary — basic everyday vocabulary, simple familiar topics",
|
||||||
|
"B1": "Intermediate — practical vocabulary for familiar topics, travel, work",
|
||||||
|
"B2": "Upper-Intermediate — broader vocabulary including abstract and technical topics",
|
||||||
|
"C1": "Advanced — precise vocabulary, idiomatic expressions, nuanced meaning",
|
||||||
|
"C2": "Proficient — near-native vocabulary, highly specialised or literary terms",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class VocabRequest:
|
||||||
|
"""Represents a single vocabulary generation request"""
|
||||||
|
amount: int # Number of word pairs to generate
|
||||||
|
lang_first_id: int # Polly language ID for the first language
|
||||||
|
lang_second_id: int # Polly language ID for the second language
|
||||||
|
lang_first_name: str # Human-readable name of the first language (sent to LLM)
|
||||||
|
lang_second_name: str # Human-readable name of the second language (sent to LLM)
|
||||||
|
category: str # Topic / category of the vocabulary list
|
||||||
|
instructions: str # Any additional instructions for the LLM
|
||||||
|
level: str = "A2" # CEFR proficiency level (A1, A2, B1, B2, C1, C2)
|
||||||
1098
output/2026_02_19_adjectives_beginners_en_es_A1.json
Normal file
1098
output/2026_02_19_adjectives_beginners_en_es_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_adjectives_beginners_en_pt_A1.json
Normal file
1098
output/2026_02_19_adjectives_beginners_en_pt_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_adjectives_beginners_es_pt_A1.json
Normal file
1098
output/2026_02_19_adjectives_beginners_es_pt_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_de_fr_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_de_fr_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_de_it_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_de_it_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1124
output/2026_02_19_animals_wildlife_de_ja_A1.json
Normal file
1124
output/2026_02_19_animals_wildlife_de_ja_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_de_ko_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_de_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_de_pl_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_de_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1072
output/2026_02_19_animals_wildlife_de_zh_A1.json
Normal file
1072
output/2026_02_19_animals_wildlife_de_zh_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_en_de_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_en_de_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_en_es_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_en_es_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_en_fr_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_en_fr_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_en_it_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_en_it_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_en_ja_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_en_ja_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_en_ko_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_en_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_en_pl_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_en_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1124
output/2026_02_19_animals_wildlife_en_pt_A1.json
Normal file
1124
output/2026_02_19_animals_wildlife_en_pt_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1137
output/2026_02_19_animals_wildlife_en_zh_A1.json
Normal file
1137
output/2026_02_19_animals_wildlife_en_zh_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_es_de_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_es_de_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_es_fr_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_es_fr_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1072
output/2026_02_19_animals_wildlife_es_it_A1.json
Normal file
1072
output/2026_02_19_animals_wildlife_es_it_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_es_ja_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_es_ja_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_es_ko_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_es_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_es_pl_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_es_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_es_pt_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_es_pt_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_es_zh_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_es_zh_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_fr_it_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_fr_it_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
519
output/2026_02_19_animals_wildlife_fr_ja_A1.json
Normal file
519
output/2026_02_19_animals_wildlife_fr_ja_A1.json
Normal file
@@ -0,0 +1,519 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T13:27:47.906Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 80,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Animals & Wildlife"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Animals & Wildlife"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "chien",
|
||||||
|
"wordSecond": "犬 (いぬ, inu)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "chat",
|
||||||
|
"wordSecond": "猫 (ねこ, neko)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "oiseau",
|
||||||
|
"wordSecond": "鳥 (とり, tori)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "vache",
|
||||||
|
"wordSecond": "牛 (うし, ushi)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cheval",
|
||||||
|
"wordSecond": "馬 (うま, uma)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cochon",
|
||||||
|
"wordSecond": "豚 (ぶた, buta)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "poule",
|
||||||
|
"wordSecond": "鶏 (にわとり, niwatori)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "lion",
|
||||||
|
"wordSecond": "ライオン (らいおん, raion)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "tigre",
|
||||||
|
"wordSecond": "虎 (とら, tora)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "éléphant",
|
||||||
|
"wordSecond": "象 (ぞう, zou)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "ours",
|
||||||
|
"wordSecond": "熊 (くま, kuma)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "poisson",
|
||||||
|
"wordSecond": "魚 (さかな, sakana)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "baleine",
|
||||||
|
"wordSecond": "鯨 (くじら, kujira)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "requin",
|
||||||
|
"wordSecond": "鮫 (さめ, same)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "papillon",
|
||||||
|
"wordSecond": "蝶 (ちょう, chou)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "abeille",
|
||||||
|
"wordSecond": "蜂 (はち, hachi)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "fourmi",
|
||||||
|
"wordSecond": "蟻 (あり, ari)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "souris",
|
||||||
|
"wordSecond": "鼠 (ねずみ, nezumi)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "lapin",
|
||||||
|
"wordSecond": "兎 (うさぎ, usagi)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 14,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "singe",
|
||||||
|
"wordSecond": "猿 (さる, saru)",
|
||||||
|
"createdAt": "2026-02-19T13:27:47.906Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100072,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100073,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100074,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100075,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100076,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100077,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100078,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100079,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
1111
output/2026_02_19_animals_wildlife_fr_ko_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_fr_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1124
output/2026_02_19_animals_wildlife_fr_pl_A1.json
Normal file
1124
output/2026_02_19_animals_wildlife_fr_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_fr_zh_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_fr_zh_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_it_ja_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_it_ja_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_it_ko_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_it_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1189
output/2026_02_19_animals_wildlife_it_pl_A1.json
Normal file
1189
output/2026_02_19_animals_wildlife_it_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1072
output/2026_02_19_animals_wildlife_it_zh_A1.json
Normal file
1072
output/2026_02_19_animals_wildlife_it_zh_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1072
output/2026_02_19_animals_wildlife_ja_ko_A1.json
Normal file
1072
output/2026_02_19_animals_wildlife_ja_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_ja_pl_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_ja_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_ja_zh_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_ja_zh_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1111
output/2026_02_19_animals_wildlife_ko_pl_A1.json
Normal file
1111
output/2026_02_19_animals_wildlife_ko_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_pt_de_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_pt_de_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1124
output/2026_02_19_animals_wildlife_pt_fr_A1.json
Normal file
1124
output/2026_02_19_animals_wildlife_pt_fr_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1124
output/2026_02_19_animals_wildlife_pt_it_A1.json
Normal file
1124
output/2026_02_19_animals_wildlife_pt_it_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_pt_ja_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_pt_ja_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_pt_ko_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_pt_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_pt_pl_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_pt_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1072
output/2026_02_19_animals_wildlife_pt_zh_A1.json
Normal file
1072
output/2026_02_19_animals_wildlife_pt_zh_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1085
output/2026_02_19_animals_wildlife_zh_ko_A1.json
Normal file
1085
output/2026_02_19_animals_wildlife_zh_ko_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1098
output/2026_02_19_animals_wildlife_zh_pl_A1.json
Normal file
1098
output/2026_02_19_animals_wildlife_zh_pl_A1.json
Normal file
File diff suppressed because it is too large
Load Diff
1215
output/2026_02_19_arts_culture_en_es_B1.json
Normal file
1215
output/2026_02_19_arts_culture_en_es_B1.json
Normal file
File diff suppressed because it is too large
Load Diff
968
output/2026_02_19_arts_culture_en_pt_B1.json
Normal file
968
output/2026_02_19_arts_culture_en_pt_B1.json
Normal file
@@ -0,0 +1,968 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T16:13:14.977Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 73,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Arts & Culture"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Arts & Culture"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "painting",
|
||||||
|
"wordSecond": "pintura",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "sculpture",
|
||||||
|
"wordSecond": "escultura",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "gallery",
|
||||||
|
"wordSecond": "galeria",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "canvas",
|
||||||
|
"wordSecond": "tela",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "portrait",
|
||||||
|
"wordSecond": "retrato",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "theatre",
|
||||||
|
"wordSecond": "teatro",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "concert",
|
||||||
|
"wordSecond": "concerto",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "orchestra",
|
||||||
|
"wordSecond": "orquestra",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "dance",
|
||||||
|
"wordSecond": "dança",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "opera",
|
||||||
|
"wordSecond": "ópera",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "melody",
|
||||||
|
"wordSecond": "melodia",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "rhythm",
|
||||||
|
"wordSecond": "ritmo",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "chord",
|
||||||
|
"wordSecond": "acorde",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "instrument",
|
||||||
|
"wordSecond": "instrumento",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "genre",
|
||||||
|
"wordSecond": "gênero",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "film",
|
||||||
|
"wordSecond": "filme",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "director",
|
||||||
|
"wordSecond": "diretor",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "scene",
|
||||||
|
"wordSecond": "cena",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "trailer",
|
||||||
|
"wordSecond": "trailer",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "premiere",
|
||||||
|
"wordSecond": "estreia",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "artist",
|
||||||
|
"wordSecond": "artista",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "exhibition",
|
||||||
|
"wordSecond": "exposição",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "museum",
|
||||||
|
"wordSecond": "museu",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "drawing",
|
||||||
|
"wordSecond": "desenho",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "sketch",
|
||||||
|
"wordSecond": "esboço",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "brush",
|
||||||
|
"wordSecond": "pincel",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "palette",
|
||||||
|
"wordSecond": "paleta",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "clay",
|
||||||
|
"wordSecond": "argila",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "marble",
|
||||||
|
"wordSecond": "mármore",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "statue",
|
||||||
|
"wordSecond": "estátua",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "stage",
|
||||||
|
"wordSecond": "palco",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "actor",
|
||||||
|
"wordSecond": "ator",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "actress",
|
||||||
|
"wordSecond": "atriz",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "audience",
|
||||||
|
"wordSecond": "público",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "performance",
|
||||||
|
"wordSecond": "apresentação",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "ballet",
|
||||||
|
"wordSecond": "balé",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "symphony",
|
||||||
|
"wordSecond": "sinfonia",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "choir",
|
||||||
|
"wordSecond": "coral",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "song",
|
||||||
|
"wordSecond": "canção",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "lyrics",
|
||||||
|
"wordSecond": "letra",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "tune",
|
||||||
|
"wordSecond": "melodia",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "beat",
|
||||||
|
"wordSecond": "batida",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "band",
|
||||||
|
"wordSecond": "banda",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "piano",
|
||||||
|
"wordSecond": "piano",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "guitar",
|
||||||
|
"wordSecond": "violão",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "violin",
|
||||||
|
"wordSecond": "violino",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "drum",
|
||||||
|
"wordSecond": "bateria",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "jazz",
|
||||||
|
"wordSecond": "jazz",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "rock",
|
||||||
|
"wordSecond": "rock",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "pop",
|
||||||
|
"wordSecond": "pop",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "classical",
|
||||||
|
"wordSecond": "clássico",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "cinema",
|
||||||
|
"wordSecond": "cinema",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "movie",
|
||||||
|
"wordSecond": "filme",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "screen",
|
||||||
|
"wordSecond": "tela",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "script",
|
||||||
|
"wordSecond": "roteiro",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "character",
|
||||||
|
"wordSecond": "personagem",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "plot",
|
||||||
|
"wordSecond": "enredo",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "dialogue",
|
||||||
|
"wordSecond": "diálogo",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "camera",
|
||||||
|
"wordSecond": "câmera",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "lighting",
|
||||||
|
"wordSecond": "iluminação",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "costume",
|
||||||
|
"wordSecond": "figurino",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "makeup",
|
||||||
|
"wordSecond": "maquiagem",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "set",
|
||||||
|
"wordSecond": "cenário",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "soundtrack",
|
||||||
|
"wordSecond": "trilha sonora",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "subtitles",
|
||||||
|
"wordSecond": "legendas",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "review",
|
||||||
|
"wordSecond": "crítica",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "award",
|
||||||
|
"wordSecond": "prêmio",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "festival",
|
||||||
|
"wordSecond": "festival",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "culture",
|
||||||
|
"wordSecond": "cultura",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "tradition",
|
||||||
|
"wordSecond": "tradição",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "heritage",
|
||||||
|
"wordSecond": "patrimônio",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "craft",
|
||||||
|
"wordSecond": "artesanato",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100072,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "design",
|
||||||
|
"wordSecond": "design",
|
||||||
|
"createdAt": "2026-02-19T16:13:14.977Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100072,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
1007
output/2026_02_19_arts_culture_es_pt_B1.json
Normal file
1007
output/2026_02_19_arts_culture_es_pt_B1.json
Normal file
File diff suppressed because it is too large
Load Diff
942
output/2026_02_19_body_parts_health_de_fr_A2.json
Normal file
942
output/2026_02_19_body_parts_health_de_fr_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:07:25.297Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Kopf",
|
||||||
|
"wordSecond": "tête",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Auge",
|
||||||
|
"wordSecond": "œil",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Nase",
|
||||||
|
"wordSecond": "nez",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Mund",
|
||||||
|
"wordSecond": "bouche",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Ohr",
|
||||||
|
"wordSecond": "oreille",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Hals",
|
||||||
|
"wordSecond": "cou",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Schulter",
|
||||||
|
"wordSecond": "épaule",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Arm",
|
||||||
|
"wordSecond": "bras",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Ellbogen",
|
||||||
|
"wordSecond": "coude",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Hand",
|
||||||
|
"wordSecond": "main",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Finger",
|
||||||
|
"wordSecond": "doigt",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Daumen",
|
||||||
|
"wordSecond": "pouce",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Brust",
|
||||||
|
"wordSecond": "poitrine",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Rücken",
|
||||||
|
"wordSecond": "dos",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Bauch",
|
||||||
|
"wordSecond": "ventre",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Hüfte",
|
||||||
|
"wordSecond": "hanche",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Bein",
|
||||||
|
"wordSecond": "jambe",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Knie",
|
||||||
|
"wordSecond": "genou",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Fuß",
|
||||||
|
"wordSecond": "pied",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Zehe",
|
||||||
|
"wordSecond": "orteil",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Haar",
|
||||||
|
"wordSecond": "cheveu",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Gesicht",
|
||||||
|
"wordSecond": "visage",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Lippe",
|
||||||
|
"wordSecond": "lèvre",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Zahn",
|
||||||
|
"wordSecond": "dent",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Zunge",
|
||||||
|
"wordSecond": "langue",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Kinn",
|
||||||
|
"wordSecond": "menton",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Stirn",
|
||||||
|
"wordSecond": "front",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Wange",
|
||||||
|
"wordSecond": "joue",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Hals",
|
||||||
|
"wordSecond": "gorge",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Handgelenk",
|
||||||
|
"wordSecond": "poignet",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Knöchel",
|
||||||
|
"wordSecond": "cheville",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Herz",
|
||||||
|
"wordSecond": "cœur",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Lunge",
|
||||||
|
"wordSecond": "poumon",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Leber",
|
||||||
|
"wordSecond": "foie",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Magen",
|
||||||
|
"wordSecond": "estomac",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Niere",
|
||||||
|
"wordSecond": "rein",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Gehirn",
|
||||||
|
"wordSecond": "cerveau",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Knochen",
|
||||||
|
"wordSecond": "os",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Muskel",
|
||||||
|
"wordSecond": "muscle",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Blut",
|
||||||
|
"wordSecond": "sang",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Haut",
|
||||||
|
"wordSecond": "peau",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Nagel",
|
||||||
|
"wordSecond": "ongle",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Schmerz",
|
||||||
|
"wordSecond": "douleur",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Fieber",
|
||||||
|
"wordSecond": "fièvre",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Erkältung",
|
||||||
|
"wordSecond": "rhume",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Husten",
|
||||||
|
"wordSecond": "toux",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Schnupfen",
|
||||||
|
"wordSecond": "rhinite",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Kopfschmerzen",
|
||||||
|
"wordSecond": "mal de tête",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Halsschmerzen",
|
||||||
|
"wordSecond": "mal de gorge",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Bauchschmerzen",
|
||||||
|
"wordSecond": "mal de ventre",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Müdigkeit",
|
||||||
|
"wordSecond": "fatigue",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "gesund",
|
||||||
|
"wordSecond": "sain",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "krank",
|
||||||
|
"wordSecond": "malade",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Arzt",
|
||||||
|
"wordSecond": "médecin",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Ärztin",
|
||||||
|
"wordSecond": "médecin",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Krankenhaus",
|
||||||
|
"wordSecond": "hôpital",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Medizin",
|
||||||
|
"wordSecond": "médicament",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Tablette",
|
||||||
|
"wordSecond": "comprimé",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Pille",
|
||||||
|
"wordSecond": "pilule",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Injektion",
|
||||||
|
"wordSecond": "injection",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Verband",
|
||||||
|
"wordSecond": "pansement",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Operation",
|
||||||
|
"wordSecond": "opération",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Apotheke",
|
||||||
|
"wordSecond": "pharmacie",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Krankenwagen",
|
||||||
|
"wordSecond": "ambulance",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Schwester",
|
||||||
|
"wordSecond": "infirmière",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Pfleger",
|
||||||
|
"wordSecond": "infirmier",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Termin",
|
||||||
|
"wordSecond": "rendez-vous",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Untersuchung",
|
||||||
|
"wordSecond": "examen",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Diagnose",
|
||||||
|
"wordSecond": "diagnostic",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Behandlung",
|
||||||
|
"wordSecond": "traitement",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "Erholung",
|
||||||
|
"wordSecond": "récupération",
|
||||||
|
"createdAt": "2026-02-19T14:07:25.297Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
929
output/2026_02_19_body_parts_health_de_it_A2.json
Normal file
929
output/2026_02_19_body_parts_health_de_it_A2.json
Normal file
@@ -0,0 +1,929 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:07:39.037Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 70,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Kopf",
|
||||||
|
"wordSecond": "testa",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Arm",
|
||||||
|
"wordSecond": "braccio",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Bein",
|
||||||
|
"wordSecond": "gamba",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Hand",
|
||||||
|
"wordSecond": "mano",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Fuß",
|
||||||
|
"wordSecond": "piede",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Auge",
|
||||||
|
"wordSecond": "occhio",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Ohr",
|
||||||
|
"wordSecond": "orecchio",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Nase",
|
||||||
|
"wordSecond": "naso",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Mund",
|
||||||
|
"wordSecond": "bocca",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Zahn",
|
||||||
|
"wordSecond": "dente",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Hals",
|
||||||
|
"wordSecond": "collo",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Schulter",
|
||||||
|
"wordSecond": "spalla",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Rücken",
|
||||||
|
"wordSecond": "schiena",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Brust",
|
||||||
|
"wordSecond": "petto",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Bauch",
|
||||||
|
"wordSecond": "pancia",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Finger",
|
||||||
|
"wordSecond": "dito",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Daumen",
|
||||||
|
"wordSecond": "pollice",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Knie",
|
||||||
|
"wordSecond": "ginocchio",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Knöchel",
|
||||||
|
"wordSecond": "caviglia",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Zehe",
|
||||||
|
"wordSecond": "dito del piede",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Haar",
|
||||||
|
"wordSecond": "capello",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Gesicht",
|
||||||
|
"wordSecond": "viso",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Lippe",
|
||||||
|
"wordSecond": "labbro",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Zunge",
|
||||||
|
"wordSecond": "lingua",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Kinn",
|
||||||
|
"wordSecond": "mento",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Stirn",
|
||||||
|
"wordSecond": "fronte",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Wange",
|
||||||
|
"wordSecond": "guancia",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Ellbogen",
|
||||||
|
"wordSecond": "gomito",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Handgelenk",
|
||||||
|
"wordSecond": "polso",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Hüfte",
|
||||||
|
"wordSecond": "anca",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Herz",
|
||||||
|
"wordSecond": "cuore",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Lunge",
|
||||||
|
"wordSecond": "polmone",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Leber",
|
||||||
|
"wordSecond": "fegato",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Magen",
|
||||||
|
"wordSecond": "stomaco",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Niere",
|
||||||
|
"wordSecond": "rene",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Gehirn",
|
||||||
|
"wordSecond": "cervello",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Blut",
|
||||||
|
"wordSecond": "sangue",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Knochen",
|
||||||
|
"wordSecond": "osso",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Haut",
|
||||||
|
"wordSecond": "pelle",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Muskel",
|
||||||
|
"wordSecond": "muscolo",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Schmerz",
|
||||||
|
"wordSecond": "dolore",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Fieber",
|
||||||
|
"wordSecond": "febbre",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Erkältung",
|
||||||
|
"wordSecond": "raffreddore",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Husten",
|
||||||
|
"wordSecond": "tosse",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Schnupfen",
|
||||||
|
"wordSecond": "naso che cola",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Kopfschmerzen",
|
||||||
|
"wordSecond": "mal di testa",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Halsschmerzen",
|
||||||
|
"wordSecond": "mal di gola",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Bauchschmerzen",
|
||||||
|
"wordSecond": "mal di pancia",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Zahnschmerzen",
|
||||||
|
"wordSecond": "mal di denti",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Müde",
|
||||||
|
"wordSecond": "stanco",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Gesund",
|
||||||
|
"wordSecond": "sano",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Krank",
|
||||||
|
"wordSecond": "malato",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Schwach",
|
||||||
|
"wordSecond": "debole",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Stark",
|
||||||
|
"wordSecond": "forte",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Arzt",
|
||||||
|
"wordSecond": "medico",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Ärztin",
|
||||||
|
"wordSecond": "dottoressa",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Krankenhaus",
|
||||||
|
"wordSecond": "ospedale",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Medizin",
|
||||||
|
"wordSecond": "medicina",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Tablette",
|
||||||
|
"wordSecond": "compressa",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Pille",
|
||||||
|
"wordSecond": "pillola",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Tropfen",
|
||||||
|
"wordSecond": "gocce",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Salbe",
|
||||||
|
"wordSecond": "pomata",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Verband",
|
||||||
|
"wordSecond": "benda",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Pflaster",
|
||||||
|
"wordSecond": "cerotto",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Injektion",
|
||||||
|
"wordSecond": "iniezione",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Operation",
|
||||||
|
"wordSecond": "operazione",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Untersuchung",
|
||||||
|
"wordSecond": "visita medica",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Blutdruck",
|
||||||
|
"wordSecond": "pressione sanguigna",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Temperatur",
|
||||||
|
"wordSecond": "temperatura",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "Gesundheit",
|
||||||
|
"wordSecond": "salute",
|
||||||
|
"createdAt": "2026-02-19T14:07:39.037Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
942
output/2026_02_19_body_parts_health_de_ja_A2.json
Normal file
942
output/2026_02_19_body_parts_health_de_ja_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:08:01.491Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Kopf",
|
||||||
|
"wordSecond": "頭 (あたま, atama)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Auge",
|
||||||
|
"wordSecond": "目 (め, me)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Ohr",
|
||||||
|
"wordSecond": "耳 (みみ, mimi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Nase",
|
||||||
|
"wordSecond": "鼻 (はな, hana)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Mund",
|
||||||
|
"wordSecond": "口 (くち, kuchi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Zahn",
|
||||||
|
"wordSecond": "歯 (は, ha)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Zunge",
|
||||||
|
"wordSecond": "舌 (した, shita)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Hals",
|
||||||
|
"wordSecond": "首 (くび, kubi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Schulter",
|
||||||
|
"wordSecond": "肩 (かた, kata)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Arm",
|
||||||
|
"wordSecond": "腕 (うで, ude)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Ellbogen",
|
||||||
|
"wordSecond": "肘 (ひじ, hiji)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Hand",
|
||||||
|
"wordSecond": "手 (て, te)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Finger",
|
||||||
|
"wordSecond": "指 (ゆび, yubi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Brust",
|
||||||
|
"wordSecond": "胸 (むね, mune)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Bauch",
|
||||||
|
"wordSecond": "お腹 (おなか, onaka)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Rücken",
|
||||||
|
"wordSecond": "背中 (せなか, senaka)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Hüfte",
|
||||||
|
"wordSecond": "腰 (こし, koshi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Bein",
|
||||||
|
"wordSecond": "足 (あし, ashi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Knie",
|
||||||
|
"wordSecond": "膝 (ひざ, hiza)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Fuß",
|
||||||
|
"wordSecond": "足 (あし, ashi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Zehe",
|
||||||
|
"wordSecond": "足の指 (あしのゆび, ashi no yubi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Haar",
|
||||||
|
"wordSecond": "髪 (かみ, kami)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Gesicht",
|
||||||
|
"wordSecond": "顔 (かお, kao)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Stirn",
|
||||||
|
"wordSecond": "額 (ひたい, hitai)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Wange",
|
||||||
|
"wordSecond": "頬 (ほお, hoo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Kinn",
|
||||||
|
"wordSecond": "顎 (あご, ago)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Lippe",
|
||||||
|
"wordSecond": "唇 (くちびる, kuchibiru)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Hals (Kehle)",
|
||||||
|
"wordSecond": "喉 (のど, nodo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Handgelenk",
|
||||||
|
"wordSecond": "手首 (てくび, tekubi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Knöchel",
|
||||||
|
"wordSecond": "足首 (あしくび, ashikubi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Herz",
|
||||||
|
"wordSecond": "心臓 (しんぞう, shinzou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Lunge",
|
||||||
|
"wordSecond": "肺 (はい, hai)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Leber",
|
||||||
|
"wordSecond": "肝臓 (かんぞう, kanzou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Magen",
|
||||||
|
"wordSecond": "胃 (い, i)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Darm",
|
||||||
|
"wordSecond": "腸 (ちょう, chou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Niere",
|
||||||
|
"wordSecond": "腎臓 (じんぞう, jinzou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Gehirn",
|
||||||
|
"wordSecond": "脳 (のう, nou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Blut",
|
||||||
|
"wordSecond": "血 (ち, chi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Knochen",
|
||||||
|
"wordSecond": "骨 (ほね, hone)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Muskel",
|
||||||
|
"wordSecond": "筋肉 (きんにく, kinniku)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Haut",
|
||||||
|
"wordSecond": "皮膚 (ひふ, hifu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Schmerz",
|
||||||
|
"wordSecond": "痛み (いたみ, itami)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Kopfschmerzen",
|
||||||
|
"wordSecond": "頭痛 (ずつう, zutsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Bauchschmerzen",
|
||||||
|
"wordSecond": "腹痛 (ふくつう, fukutsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Fieber",
|
||||||
|
"wordSecond": "熱 (ねつ, netsu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Erkältung",
|
||||||
|
"wordSecond": "風邪 (かぜ, kaze)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Husten",
|
||||||
|
"wordSecond": "咳 (せき, seki)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Schnupfen",
|
||||||
|
"wordSecond": "鼻水 (はなみず, hanamizu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Müdigkeit",
|
||||||
|
"wordSecond": "疲れ (つかれ, tsukare)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Gesund",
|
||||||
|
"wordSecond": "健康 (けんこう, kenkou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Krank",
|
||||||
|
"wordSecond": "病気 (びょうき, byouki)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Arzt",
|
||||||
|
"wordSecond": "医者 (いしゃ, isha)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Krankenhaus",
|
||||||
|
"wordSecond": "病院 (びょういん, byouin)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Medizin",
|
||||||
|
"wordSecond": "薬 (くすり, kusuri)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Tablette",
|
||||||
|
"wordSecond": "錠剤 (じょうざい, jouzai)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Pflaster",
|
||||||
|
"wordSecond": "絆創膏 (ばんそうこう, bansoukou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Verband",
|
||||||
|
"wordSecond": "包帯 (ほうたい, houtai)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Operation",
|
||||||
|
"wordSecond": "手術 (しゅじゅつ, shujutsu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Untersuchung",
|
||||||
|
"wordSecond": "検査 (けんさ, kensa)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Blutdruck",
|
||||||
|
"wordSecond": "血圧 (けつあつ, ketsuatsu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Temperatur",
|
||||||
|
"wordSecond": "体温 (たいおん, taion)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Puls",
|
||||||
|
"wordSecond": "脈 (みゃく, myaku)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Atmung",
|
||||||
|
"wordSecond": "呼吸 (こきゅう, kokyuu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Schlaf",
|
||||||
|
"wordSecond": "睡眠 (すいみん, suimin)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Appetit",
|
||||||
|
"wordSecond": "食欲 (しょくよく, shokuyoku)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Übelkeit",
|
||||||
|
"wordSecond": "吐き気 (はきけ, hakike)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Durchfall",
|
||||||
|
"wordSecond": "下痢 (げり, geri)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Verstopfung",
|
||||||
|
"wordSecond": "便秘 (べんぴ, benpi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Allergie",
|
||||||
|
"wordSecond": "アレルギー (arerugii)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Wunde",
|
||||||
|
"wordSecond": "傷 (きず, kizu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "Blutung",
|
||||||
|
"wordSecond": "出血 (しゅっけつ, shukketsu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:01.491Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
942
output/2026_02_19_body_parts_health_de_ko_A2.json
Normal file
942
output/2026_02_19_body_parts_health_de_ko_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:08:39.078Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Kopf",
|
||||||
|
"wordSecond": "머리 (meori)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Auge",
|
||||||
|
"wordSecond": "눈 (nun)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Ohr",
|
||||||
|
"wordSecond": "귀 (gwi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Nase",
|
||||||
|
"wordSecond": "코 (ko)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Mund",
|
||||||
|
"wordSecond": "입 (ip)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Zahn",
|
||||||
|
"wordSecond": "이 (i)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Zunge",
|
||||||
|
"wordSecond": "혀 (hyeo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Hals",
|
||||||
|
"wordSecond": "목 (mok)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Schulter",
|
||||||
|
"wordSecond": "어깨 (eokkae)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Arm",
|
||||||
|
"wordSecond": "팔 (pal)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Ellbogen",
|
||||||
|
"wordSecond": "팔꿈치 (palkkumchi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Hand",
|
||||||
|
"wordSecond": "손 (son)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Finger",
|
||||||
|
"wordSecond": "손가락 (songarak)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Daumen",
|
||||||
|
"wordSecond": "엄지손가락 (eomjisongarak)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Brust",
|
||||||
|
"wordSecond": "가슴 (gaseum)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Rücken",
|
||||||
|
"wordSecond": "등 (deung)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Bauch",
|
||||||
|
"wordSecond": "배 (bae)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Bein",
|
||||||
|
"wordSecond": "다리 (dari)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Knie",
|
||||||
|
"wordSecond": "무릎 (mureup)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Fuß",
|
||||||
|
"wordSecond": "발 (bal)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Zehe",
|
||||||
|
"wordSecond": "발가락 (balgarak)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Gesicht",
|
||||||
|
"wordSecond": "얼굴 (eolgul)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Stirn",
|
||||||
|
"wordSecond": "이마 (ima)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Wange",
|
||||||
|
"wordSecond": "뺨 (ppyam)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Kinn",
|
||||||
|
"wordSecond": "턱 (teok)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Haar",
|
||||||
|
"wordSecond": "머리카락 (meorikarak)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Lippe",
|
||||||
|
"wordSecond": "입술 (ipsul)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Hals (Kehle)",
|
||||||
|
"wordSecond": "목구멍 (mokgumeong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Nacken",
|
||||||
|
"wordSecond": "목덜미 (mokdeolmi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Handgelenk",
|
||||||
|
"wordSecond": "손목 (sonmok)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Knöchel",
|
||||||
|
"wordSecond": "발목 (balmok)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Herz",
|
||||||
|
"wordSecond": "심장 (simjang)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Lunge",
|
||||||
|
"wordSecond": "폐 (pye)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Leber",
|
||||||
|
"wordSecond": "간 (gan)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Magen",
|
||||||
|
"wordSecond": "위 (wi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Niere",
|
||||||
|
"wordSecond": "콩팥 (kongpat)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Gehirn",
|
||||||
|
"wordSecond": "뇌 (noe)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Knochen",
|
||||||
|
"wordSecond": "뼈 (ppyeo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Muskel",
|
||||||
|
"wordSecond": "근육 (geunyuk)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Blut",
|
||||||
|
"wordSecond": "피 (pi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Haut",
|
||||||
|
"wordSecond": "피부 (pibu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Schmerz",
|
||||||
|
"wordSecond": "아픔 (apeum)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Kopfschmerzen",
|
||||||
|
"wordSecond": "두통 (dutong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Bauchschmerzen",
|
||||||
|
"wordSecond": "복통 (boktong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Zahnschmerzen",
|
||||||
|
"wordSecond": "치통 (chitong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Fieber",
|
||||||
|
"wordSecond": "열 (yeol)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Erkältung",
|
||||||
|
"wordSecond": "감기 (gamgi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Husten",
|
||||||
|
"wordSecond": "기침 (gichim)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Schnupfen",
|
||||||
|
"wordSecond": "콧물 (konmul)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Halsschmerzen",
|
||||||
|
"wordSecond": "목아픔 (mogapeum)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Müde",
|
||||||
|
"wordSecond": "피곤한 (pigonhan)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Gesund",
|
||||||
|
"wordSecond": "건강한 (geonganghan)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Krank",
|
||||||
|
"wordSecond": "아픈 (apeun)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Arzt",
|
||||||
|
"wordSecond": "의사 (uisa)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Krankenschwester",
|
||||||
|
"wordSecond": "간호사 (ganhosa)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Medizin",
|
||||||
|
"wordSecond": "약 (yak)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Tablette",
|
||||||
|
"wordSecond": "알약 (alyak)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Krankenhaus",
|
||||||
|
"wordSecond": "병원 (byeongwon)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Apotheke",
|
||||||
|
"wordSecond": "약국 (yakguk)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Verband",
|
||||||
|
"wordSecond": "붕대 (bungdae)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Pflaster",
|
||||||
|
"wordSecond": "반창고 (banchanggo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Spritze",
|
||||||
|
"wordSecond": "주사 (jusa)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Operation",
|
||||||
|
"wordSecond": "수술 (susul)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Untersuchung",
|
||||||
|
"wordSecond": "검사 (geomsa)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Temperatur",
|
||||||
|
"wordSecond": "체온 (cheon)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Blutdruck",
|
||||||
|
"wordSecond": "혈압 (hyeorap)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Puls",
|
||||||
|
"wordSecond": "맥박 (maekbak)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Atmung",
|
||||||
|
"wordSecond": "호흡 (hoheup)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Schlaf",
|
||||||
|
"wordSecond": "잠 (jam)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Ernährung",
|
||||||
|
"wordSecond": "영양 (yeongyang)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "Bewegung",
|
||||||
|
"wordSecond": "운동 (undong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:39.078Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
955
output/2026_02_19_body_parts_health_de_pl_A2.json
Normal file
955
output/2026_02_19_body_parts_health_de_pl_A2.json
Normal file
@@ -0,0 +1,955 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:08:53.870Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 72,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Kopf",
|
||||||
|
"wordSecond": "głowa",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Auge",
|
||||||
|
"wordSecond": "oko",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Ohr",
|
||||||
|
"wordSecond": "ucho",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Nase",
|
||||||
|
"wordSecond": "nos",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Mund",
|
||||||
|
"wordSecond": "usta",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Zähne",
|
||||||
|
"wordSecond": "zęby",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Zunge",
|
||||||
|
"wordSecond": "język",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Hals",
|
||||||
|
"wordSecond": "gardło",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Schulter",
|
||||||
|
"wordSecond": "ramię",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Arm",
|
||||||
|
"wordSecond": "ramię",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Ellbogen",
|
||||||
|
"wordSecond": "łokieć",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Hand",
|
||||||
|
"wordSecond": "dłoń",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Finger",
|
||||||
|
"wordSecond": "palec",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Daumen",
|
||||||
|
"wordSecond": "kciuk",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Brust",
|
||||||
|
"wordSecond": "klatka piersiowa",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Rücken",
|
||||||
|
"wordSecond": "plecy",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Bauch",
|
||||||
|
"wordSecond": "brzuch",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Hüfte",
|
||||||
|
"wordSecond": "biodro",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Bein",
|
||||||
|
"wordSecond": "noga",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Knie",
|
||||||
|
"wordSecond": "kolano",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Fuß",
|
||||||
|
"wordSecond": "stopa",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Zehe",
|
||||||
|
"wordSecond": "palec u nogi",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Knöchel",
|
||||||
|
"wordSecond": "kostka",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Gesicht",
|
||||||
|
"wordSecond": "twarz",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Stirn",
|
||||||
|
"wordSecond": "czoło",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Wange",
|
||||||
|
"wordSecond": "policzek",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Kinn",
|
||||||
|
"wordSecond": "broda",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Haar",
|
||||||
|
"wordSecond": "włos",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Lippe",
|
||||||
|
"wordSecond": "warga",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Handgelenk",
|
||||||
|
"wordSecond": "nadgarstek",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Herz",
|
||||||
|
"wordSecond": "serce",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Lunge",
|
||||||
|
"wordSecond": "płuco",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Magen",
|
||||||
|
"wordSecond": "żołądek",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Leber",
|
||||||
|
"wordSecond": "wątroba",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Niere",
|
||||||
|
"wordSecond": "nerka",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Gehirn",
|
||||||
|
"wordSecond": "mózg",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Blut",
|
||||||
|
"wordSecond": "krew",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Knochen",
|
||||||
|
"wordSecond": "kość",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Muskel",
|
||||||
|
"wordSecond": "mięsień",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Haut",
|
||||||
|
"wordSecond": "skóra",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Schmerz",
|
||||||
|
"wordSecond": "ból",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Fieber",
|
||||||
|
"wordSecond": "gorączka",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Erkältung",
|
||||||
|
"wordSecond": "przeziębienie",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Husten",
|
||||||
|
"wordSecond": "kaszel",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Schnupfen",
|
||||||
|
"wordSecond": "katar",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Halsschmerzen",
|
||||||
|
"wordSecond": "ból gardła",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Kopfschmerzen",
|
||||||
|
"wordSecond": "ból głowy",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Bauchschmerzen",
|
||||||
|
"wordSecond": "ból brzucha",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Zahnschmerzen",
|
||||||
|
"wordSecond": "ból zęba",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Müde",
|
||||||
|
"wordSecond": "zmęczony",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Gesund",
|
||||||
|
"wordSecond": "zdrowy",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Krank",
|
||||||
|
"wordSecond": "chory",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Arzt",
|
||||||
|
"wordSecond": "lekarz",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Ärztin",
|
||||||
|
"wordSecond": "lekarka",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Krankenhaus",
|
||||||
|
"wordSecond": "szpital",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Medizin",
|
||||||
|
"wordSecond": "lekarstwo",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Tablette",
|
||||||
|
"wordSecond": "tabletka",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Pille",
|
||||||
|
"wordSecond": "pigułka",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Tropfen",
|
||||||
|
"wordSecond": "krople",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Salbe",
|
||||||
|
"wordSecond": "maść",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Verband",
|
||||||
|
"wordSecond": "bandaż",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Pflaster",
|
||||||
|
"wordSecond": "plaster",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Spritze",
|
||||||
|
"wordSecond": "zastrzyk",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Operation",
|
||||||
|
"wordSecond": "operacja",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Untersuchung",
|
||||||
|
"wordSecond": "badanie",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Blutdruck",
|
||||||
|
"wordSecond": "ciśnienie krwi",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Temperatur",
|
||||||
|
"wordSecond": "temperatura",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Apotheke",
|
||||||
|
"wordSecond": "apteka",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Termin",
|
||||||
|
"wordSecond": "wizyta",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Notfall",
|
||||||
|
"wordSecond": "nagły wypadek",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Ruhe",
|
||||||
|
"wordSecond": "odpoczynek",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "Schlaf",
|
||||||
|
"wordSecond": "sen",
|
||||||
|
"createdAt": "2026-02-19T14:08:53.870Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
942
output/2026_02_19_body_parts_health_de_zh_A2.json
Normal file
942
output/2026_02_19_body_parts_health_de_zh_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:08:19.237Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Kopf",
|
||||||
|
"wordSecond": "头 (tou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Auge",
|
||||||
|
"wordSecond": "眼睛 (yanjing)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Ohr",
|
||||||
|
"wordSecond": "耳朵 (erduo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Nase",
|
||||||
|
"wordSecond": "鼻子 (bizi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Mund",
|
||||||
|
"wordSecond": "嘴 (zui)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Zähne",
|
||||||
|
"wordSecond": "牙齿 (yachi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Zunge",
|
||||||
|
"wordSecond": "舌头 (shetou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Hals",
|
||||||
|
"wordSecond": "脖子 (bozi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Schulter",
|
||||||
|
"wordSecond": "肩膀 (jianbang)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Arm",
|
||||||
|
"wordSecond": "胳膊 (gebo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Ellbogen",
|
||||||
|
"wordSecond": "肘 (zhou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Hand",
|
||||||
|
"wordSecond": "手 (shou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Finger",
|
||||||
|
"wordSecond": "手指 (shouzhi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Daumen",
|
||||||
|
"wordSecond": "拇指 (muzhi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Brust",
|
||||||
|
"wordSecond": "胸 (xiong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Rücken",
|
||||||
|
"wordSecond": "背 (bei)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Bauch",
|
||||||
|
"wordSecond": "肚子 (duzi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Hüfte",
|
||||||
|
"wordSecond": "臀部 (tunbu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Bein",
|
||||||
|
"wordSecond": "腿 (tui)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Knie",
|
||||||
|
"wordSecond": "膝盖 (xigai)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Fuß",
|
||||||
|
"wordSecond": "脚 (jiao)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Zehen",
|
||||||
|
"wordSecond": "脚趾 (jiaozhi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Knöchel",
|
||||||
|
"wordSecond": "脚踝 (jiaohuai)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Haar",
|
||||||
|
"wordSecond": "头发 (toufa)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Gesicht",
|
||||||
|
"wordSecond": "脸 (lian)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Stirn",
|
||||||
|
"wordSecond": "额头 (etu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Wange",
|
||||||
|
"wordSecond": "脸颊 (lianjia)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Kinn",
|
||||||
|
"wordSecond": "下巴 (xiaba)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Lippe",
|
||||||
|
"wordSecond": "嘴唇 (zuichun)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Haut",
|
||||||
|
"wordSecond": "皮肤 (pifu)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Nagel",
|
||||||
|
"wordSecond": "指甲 (zhijia)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Herz",
|
||||||
|
"wordSecond": "心脏 (xinzang)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Lunge",
|
||||||
|
"wordSecond": "肺 (fei)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Leber",
|
||||||
|
"wordSecond": "肝 (gan)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Magen",
|
||||||
|
"wordSecond": "胃 (wei)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Niere",
|
||||||
|
"wordSecond": "肾 (shen)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Gehirn",
|
||||||
|
"wordSecond": "大脑 (danao)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Blut",
|
||||||
|
"wordSecond": "血 (xue)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Knochen",
|
||||||
|
"wordSecond": "骨头 (gutou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Muskel",
|
||||||
|
"wordSecond": "肌肉 (jirou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Schmerz",
|
||||||
|
"wordSecond": "疼痛 (tengtong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Kopfschmerz",
|
||||||
|
"wordSecond": "头痛 (toutong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Bauchschmerz",
|
||||||
|
"wordSecond": "肚子痛 (duzitong)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Fieber",
|
||||||
|
"wordSecond": "发烧 (fashao)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Husten",
|
||||||
|
"wordSecond": "咳嗽 (kesou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Schnupfen",
|
||||||
|
"wordSecond": "感冒 (ganmao)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Erkältung",
|
||||||
|
"wordSecond": "感冒 (ganmao)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Müde",
|
||||||
|
"wordSecond": "累 (lei)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Gesund",
|
||||||
|
"wordSecond": "健康 (jiankang)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Krank",
|
||||||
|
"wordSecond": "生病 (shengbing)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Arzt",
|
||||||
|
"wordSecond": "医生 (yisheng)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Ärztin",
|
||||||
|
"wordSecond": "医生 (yisheng)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Krankenhaus",
|
||||||
|
"wordSecond": "医院 (yiyuan)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Medizin",
|
||||||
|
"wordSecond": "药 (yao)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Tablette",
|
||||||
|
"wordSecond": "药片 (yaopian)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Apotheke",
|
||||||
|
"wordSecond": "药店 (yaodian)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Verband",
|
||||||
|
"wordSecond": "绷带 (bengdai)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Pflaster",
|
||||||
|
"wordSecond": "创可贴 (chuangketie)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Temperatur",
|
||||||
|
"wordSecond": "体温 (tiwen)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Blutdruck",
|
||||||
|
"wordSecond": "血压 (xueya)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Puls",
|
||||||
|
"wordSecond": "脉搏 (maibo)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Atmung",
|
||||||
|
"wordSecond": "呼吸 (huxi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Schlaf",
|
||||||
|
"wordSecond": "睡眠 (shuimian)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Appetit",
|
||||||
|
"wordSecond": "胃口 (weikou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Durst",
|
||||||
|
"wordSecond": "口渴 (kouke)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Übelkeit",
|
||||||
|
"wordSecond": "恶心 (exin)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Durchfall",
|
||||||
|
"wordSecond": "腹泻 (fuxie)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Verstopfung",
|
||||||
|
"wordSecond": "便秘 (bianmi)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Allergie",
|
||||||
|
"wordSecond": "过敏 (guomin)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Wunde",
|
||||||
|
"wordSecond": "伤口 (shangkou)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 15,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "Narbe",
|
||||||
|
"wordSecond": "疤痕 (bahen)",
|
||||||
|
"createdAt": "2026-02-19T14:08:19.237Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
929
output/2026_02_19_body_parts_health_en_de_A2.json
Normal file
929
output/2026_02_19_body_parts_health_en_de_A2.json
Normal file
@@ -0,0 +1,929 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:01:21.335Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 70,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "Kopf",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "Haar",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "Gesicht",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "Stirn",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "Auge",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "Ohr",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "Nase",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "Mund",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "Lippe",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "Zahn",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "Zunge",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "Kinn",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "Hals",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "Schulter",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "Arm",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "Ellbogen",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "Handgelenk",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "Hand",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "Finger",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "Daumen",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "Brust",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "Rücken",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "Bauch",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "Taille",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "Hüfte",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "Bein",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "Knie",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "Knöchel",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "Fuß",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "Zehe",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "Haut",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "Knochen",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "Muskel",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "Blut",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "Herz",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "Lunge",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "Leber",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "Magen",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "Gehirn",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "kidney",
|
||||||
|
"wordSecond": "Niere",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "Schmerz",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "ache",
|
||||||
|
"wordSecond": "Weh",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "Kopfschmerz",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "Bauchschmerz",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "toothache",
|
||||||
|
"wordSecond": "Zahnschmerz",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "Fieber",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cold",
|
||||||
|
"wordSecond": "Erkältung",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "Husten",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "Niesen",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "müde",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "gesund",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "krank",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "ill",
|
||||||
|
"wordSecond": "krank",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "well",
|
||||||
|
"wordSecond": "wohl",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "Arzt",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "Krankenschwester",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "Krankenhaus",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "Medizin",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "Tablette",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "Verband",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "injury",
|
||||||
|
"wordSecond": "Verletzung",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cut",
|
||||||
|
"wordSecond": "Schnitt",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "bruise",
|
||||||
|
"wordSecond": "Prellung",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "wound",
|
||||||
|
"wordSecond": "Wunde",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "health",
|
||||||
|
"wordSecond": "Gesundheit",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "exercise",
|
||||||
|
"wordSecond": "Bewegung",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "rest",
|
||||||
|
"wordSecond": "Ruhe",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "sleep",
|
||||||
|
"wordSecond": "Schlaf",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "food",
|
||||||
|
"wordSecond": "Essen",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "water",
|
||||||
|
"wordSecond": "Wasser",
|
||||||
|
"createdAt": "2026-02-19T14:01:21.335Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
929
output/2026_02_19_body_parts_health_en_es_A2.json
Normal file
929
output/2026_02_19_body_parts_health_en_es_A2.json
Normal file
@@ -0,0 +1,929 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:00:55.284Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 70,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "cabeza",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "brazo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "pierna",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "mano",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "pie",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "ojo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "oreja",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "nariz",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "boca",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "pelo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "cara",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "cuello",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "hombro",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "codo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "muñeca",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "dedo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "rodilla",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "tobillo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "dedo del pie",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "espalda",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "pecho",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "estómago",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "piel",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "hueso",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "músculo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "corazón",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "pulmón",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "hígado",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "cerebro",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "sangre",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "dolor",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "fiebre",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "cold",
|
||||||
|
"wordSecond": "resfriado",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "tos",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "dolor de cabeza",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "dolor de estómago",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "cansado",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "sano",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "enfermo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "médico",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "enfermero",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "hospital",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "medicina",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "pastilla",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "venda",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "diente",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "lengua",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "labio",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "barbilla",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "frente",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "eyebrow",
|
||||||
|
"wordSecond": "ceja",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "eyelash",
|
||||||
|
"wordSecond": "pestaña",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "cheek",
|
||||||
|
"wordSecond": "mejilla",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "throat",
|
||||||
|
"wordSecond": "garganta",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "cintura",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "cadera",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "pulgar",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "nail",
|
||||||
|
"wordSecond": "uña",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "heel",
|
||||||
|
"wordSecond": "talón",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "body",
|
||||||
|
"wordSecond": "cuerpo",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "health",
|
||||||
|
"wordSecond": "salud",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "illness",
|
||||||
|
"wordSecond": "enfermedad",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "injury",
|
||||||
|
"wordSecond": "lesión",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "cut",
|
||||||
|
"wordSecond": "corte",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "bruise",
|
||||||
|
"wordSecond": "moretón",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "swelling",
|
||||||
|
"wordSecond": "hinchazón",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "temperature",
|
||||||
|
"wordSecond": "temperatura",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "appointment",
|
||||||
|
"wordSecond": "cita",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "pharmacy",
|
||||||
|
"wordSecond": "farmacia",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 3,
|
||||||
|
"wordFirst": "prescription",
|
||||||
|
"wordSecond": "receta",
|
||||||
|
"createdAt": "2026-02-19T14:00:55.284Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
955
output/2026_02_19_body_parts_health_en_fr_A2.json
Normal file
955
output/2026_02_19_body_parts_health_en_fr_A2.json
Normal file
@@ -0,0 +1,955 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:01:33.674Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 72,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "tête",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "cheveux",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "visage",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "front",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "œil",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "eyes",
|
||||||
|
"wordSecond": "yeux",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "oreille",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "nez",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "bouche",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "lèvre",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "dent",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "teeth",
|
||||||
|
"wordSecond": "dents",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "langue",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "menton",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "cou",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "épaule",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "bras",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "coude",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "poignet",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "main",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "doigt",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "pouce",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "poitrine",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "dos",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "ventre",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "taille",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "hanche",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "jambe",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "genou",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "cheville",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "pied",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "feet",
|
||||||
|
"wordSecond": "pieds",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "orteil",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "peau",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "os",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "muscle",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "sang",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "cœur",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "poumon",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "foie",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "stomach (organ)",
|
||||||
|
"wordSecond": "estomac",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "cerveau",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "health",
|
||||||
|
"wordSecond": "santé",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "en bonne santé",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "malade",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "ill",
|
||||||
|
"wordSecond": "malade",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "douleur",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "ache",
|
||||||
|
"wordSecond": "douleur",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "mal de tête",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "mal au ventre",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "toothache",
|
||||||
|
"wordSecond": "mal aux dents",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "fièvre",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cold",
|
||||||
|
"wordSecond": "rhume",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "toux",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "éternuement",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "fatigué",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "weak",
|
||||||
|
"wordSecond": "faible",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "strong",
|
||||||
|
"wordSecond": "fort",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "médecin",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "infirmière",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "hôpital",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "clinic",
|
||||||
|
"wordSecond": "clinique",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "médicament",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "pilule",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "pansement",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "wound",
|
||||||
|
"wordSecond": "blessure",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cut",
|
||||||
|
"wordSecond": "coupure",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "bruise",
|
||||||
|
"wordSecond": "ecchymose",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "accident",
|
||||||
|
"wordSecond": "accident",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "exercise",
|
||||||
|
"wordSecond": "exercice",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "rest",
|
||||||
|
"wordSecond": "repos",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "sleep",
|
||||||
|
"wordSecond": "sommeil",
|
||||||
|
"createdAt": "2026-02-19T14:01:33.674Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
929
output/2026_02_19_body_parts_health_en_it_A2.json
Normal file
929
output/2026_02_19_body_parts_health_en_it_A2.json
Normal file
@@ -0,0 +1,929 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:01:45.931Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 70,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "testa",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "capelli",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "viso",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "fronte",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "occhio",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "orecchio",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "naso",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "bocca",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "labbro",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "dente",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "lingua",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "mento",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "collo",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "spalla",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "braccio",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "gomito",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "polso",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "mano",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "dito",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "pollice",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "petto",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "schiena",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "stomaco",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "vita",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "fianco",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "gamba",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "thigh",
|
||||||
|
"wordSecond": "coscia",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "ginocchio",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "caviglia",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "piede",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "dito del piede",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "heel",
|
||||||
|
"wordSecond": "tallone",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "pelle",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "osso",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "muscolo",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "sangue",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "cuore",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "polmone",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "fegato",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "stomaco",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "cervello",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "dolore",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "ache",
|
||||||
|
"wordSecond": "male",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "mal di testa",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "mal di stomaco",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "toothache",
|
||||||
|
"wordSecond": "mal di denti",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "febbre",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "cold",
|
||||||
|
"wordSecond": "raffreddore",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "tosse",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "starnuto",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "stanco",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "sleepy",
|
||||||
|
"wordSecond": "assonnato",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "sano",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "malato",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "ill",
|
||||||
|
"wordSecond": "malato",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "well",
|
||||||
|
"wordSecond": "bene",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "dottore",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "infermiere",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "ospedale",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "medicina",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "pillola",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "benda",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "cut",
|
||||||
|
"wordSecond": "taglio",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "bruise",
|
||||||
|
"wordSecond": "livido",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "burn",
|
||||||
|
"wordSecond": "bruciatura",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "wound",
|
||||||
|
"wordSecond": "ferita",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "accident",
|
||||||
|
"wordSecond": "incidente",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "exercise",
|
||||||
|
"wordSecond": "esercizio",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "rest",
|
||||||
|
"wordSecond": "riposo",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 20,
|
||||||
|
"wordFirst": "sleep",
|
||||||
|
"wordSecond": "sonno",
|
||||||
|
"createdAt": "2026-02-19T14:01:45.931Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
981
output/2026_02_19_body_parts_health_en_ja_A2.json
Normal file
981
output/2026_02_19_body_parts_health_en_ja_A2.json
Normal file
@@ -0,0 +1,981 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:02:07.930Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 74,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "頭 (あたま, atama)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "髪 (かみ, kami)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "顔 (かお, kao)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "額 (ひたい, hitai)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "目 (め, me)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "eyebrow",
|
||||||
|
"wordSecond": "眉 (まゆ, mayu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "eyelash",
|
||||||
|
"wordSecond": "まつげ (matsuge)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "耳 (みみ, mimi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "鼻 (はな, hana)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cheek",
|
||||||
|
"wordSecond": "頬 (ほお, hoo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "口 (くち, kuchi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "唇 (くちびる, kuchibiru)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "歯 (は, ha)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "舌 (した, shita)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "あご (ago)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "首 (くび, kubi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "肩 (かた, kata)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "腕 (うで, ude)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "ひじ (hiji)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "手首 (てくび, tekubi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "手 (て, te)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "指 (ゆび, yubi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "親指 (おやゆび, oyayubi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "nail",
|
||||||
|
"wordSecond": "爪 (つめ, tsume)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "胸 (むね, mune)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "背中 (せなか, senaka)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "お腹 (おなか, onaka)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "腰 (こし, koshi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "腰 (こし, koshi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "足 (あし, ashi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "thigh",
|
||||||
|
"wordSecond": "太もも (ふともも, futomomo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "ひざ (hiza)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "calf",
|
||||||
|
"wordSecond": "ふくらはぎ (fukurahagi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "足首 (あしくび, ashikubi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "足 (あし, ashi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "heel",
|
||||||
|
"wordSecond": "かかと (kakato)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "足の指 (あしのゆび, ashi no yubi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "肌 (はだ, hada)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "骨 (ほね, hone)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "筋肉 (きんにく, kinniku)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "血 (ち, chi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "心臓 (しんぞう, shinzou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "肺 (はい, hai)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "肝臓 (かんぞう, kanzou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "stomach (organ)",
|
||||||
|
"wordSecond": "胃 (い, i)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "intestine",
|
||||||
|
"wordSecond": "腸 (ちょう, chou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "脳 (のう, nou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "痛み (いたみ, itami)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "頭痛 (ずつう, zutsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "腹痛 (ふくつう, fukutsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "toothache",
|
||||||
|
"wordSecond": "歯痛 (しつう, shitsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "熱 (ねつ, netsu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "咳 (せき, seki)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cold (illness)",
|
||||||
|
"wordSecond": "風邪 (かぜ, kaze)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "くしゃみ (kushami)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "疲れた (つかれた, tsukareta)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "健康な (けんこうな, kenkou na)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "病気の (びょうきの, byouki no)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "医者 (いしゃ, isha)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "看護師 (かんごし, kangoshi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "病院 (びょういん, byouin)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "clinic",
|
||||||
|
"wordSecond": "診療所 (しんりょうじょ, shinryoujo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "薬 (くすり, kusuri)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "錠剤 (じょうざい, jouzai)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "包帯 (ほうたい, houtai)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "injury",
|
||||||
|
"wordSecond": "怪我 (けが, kega)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cut",
|
||||||
|
"wordSecond": "切り傷 (きりきず, kirikizu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "bruise",
|
||||||
|
"wordSecond": "打撲傷 (だぼくしょう, dabokushou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "burn",
|
||||||
|
"wordSecond": "火傷 (やけど, yakedo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "rest",
|
||||||
|
"wordSecond": "休み (やすみ, yasumi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "sleep",
|
||||||
|
"wordSecond": "睡眠 (すいみん, suimin)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "exercise",
|
||||||
|
"wordSecond": "運動 (うんどう, undou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100072,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "diet",
|
||||||
|
"wordSecond": "食事 (しょくじ, shokuji)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100073,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "water",
|
||||||
|
"wordSecond": "水 (みず, mizu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:07.930Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100072,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100073,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
955
output/2026_02_19_body_parts_health_en_ko_A2.json
Normal file
955
output/2026_02_19_body_parts_health_en_ko_A2.json
Normal file
@@ -0,0 +1,955 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:02:42.829Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 72,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "머리 (meori)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "머리카락 (meorikarak)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "얼굴 (eolgul)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "이마 (ima)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "눈 (nun)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "eyebrow",
|
||||||
|
"wordSecond": "눈썹 (nunsseop)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "eyelash",
|
||||||
|
"wordSecond": "속눈썹 (songnunsseop)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "귀 (gwi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "코 (ko)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "입 (ip)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "입술 (ipsul)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "이 (i)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "혀 (hyeo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "턱 (teok)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cheek",
|
||||||
|
"wordSecond": "뺨 (ppyam)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "목 (mok)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "어깨 (eokkae)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "팔 (pal)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "팔꿈치 (palkkumchi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "손목 (sonmok)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "손 (son)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "손가락 (songarak)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "엄지손가락 (eomjisongarak)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "nail",
|
||||||
|
"wordSecond": "손톱 (sontop)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "가슴 (gaseum)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "등 (deung)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "배 (bae)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "허리 (heori)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "엉덩이 (eongdeongi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "다리 (dari)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "무릎 (mureup)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "발목 (balmok)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "발 (bal)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "발가락 (balgarak)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "피부 (pibu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "뼈 (ppyeo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "근육 (geunyuk)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "피 (pi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "심장 (simjang)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "폐 (pye)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "간 (gan)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "stomach (organ)",
|
||||||
|
"wordSecond": "위 (wi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "intestine",
|
||||||
|
"wordSecond": "창자 (changja)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "뇌 (noe)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "통증 (tongjeung)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "두통 (dutong)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "복통 (boktong)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "열 (yeol)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cold",
|
||||||
|
"wordSecond": "감기 (gamgi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "기침 (gichim)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "재채기 (jaechaegi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "피곤한 (pigonhan)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "건강한 (geonganghan)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "아픈 (apeun)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "illness",
|
||||||
|
"wordSecond": "병 (byeong)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "injury",
|
||||||
|
"wordSecond": "부상 (busang)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "의사 (uisa)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "간호사 (ganhosa)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "병원 (byeongwon)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "clinic",
|
||||||
|
"wordSecond": "의원 (uiwon)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "약 (yak)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "알약 (alyak)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "붕대 (bungdae)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "injection",
|
||||||
|
"wordSecond": "주사 (jusa)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "checkup",
|
||||||
|
"wordSecond": "검진 (geomjin)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "operation",
|
||||||
|
"wordSecond": "수술 (susul)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "rest",
|
||||||
|
"wordSecond": "휴식 (hyusik)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "sleep",
|
||||||
|
"wordSecond": "잠 (jam)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "food",
|
||||||
|
"wordSecond": "음식 (eumsik)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "water",
|
||||||
|
"wordSecond": "물 (mul)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "exercise",
|
||||||
|
"wordSecond": "운동 (undong)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "breath",
|
||||||
|
"wordSecond": "숨 (sum)",
|
||||||
|
"createdAt": "2026-02-19T14:02:42.829Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
981
output/2026_02_19_body_parts_health_en_pl_A2.json
Normal file
981
output/2026_02_19_body_parts_health_en_pl_A2.json
Normal file
@@ -0,0 +1,981 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:02:56.218Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 74,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "głowa",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "włosy",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "twarz",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "czoło",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "oko",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "ucho",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "nos",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "usta",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "warga",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "ząb",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "język",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "broda",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "szyja",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "ramię",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "ręka",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "łokieć",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "nadgarstek",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "dłoń",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "palec",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "kciuk",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "klatka piersiowa",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "plecy",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "brzuch",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "talia",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "biodro",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "noga",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "thigh",
|
||||||
|
"wordSecond": "udo",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "kolano",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "calf",
|
||||||
|
"wordSecond": "łydka",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "kostka",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "stopa",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "heel",
|
||||||
|
"wordSecond": "pięta",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "palec u nogi",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "skóra",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "kość",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "mięsień",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "krew",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "serce",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "płuco",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "wątroba",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "żołądek",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "kidney",
|
||||||
|
"wordSecond": "nerka",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "mózg",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "ból",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "ache",
|
||||||
|
"wordSecond": "ból",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "ból głowy",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "ból brzucha",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "toothache",
|
||||||
|
"wordSecond": "ból zęba",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "gorączka",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "cold",
|
||||||
|
"wordSecond": "przeziębienie",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "kaszel",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "kichnięcie",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "runny nose",
|
||||||
|
"wordSecond": "katar",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "sore throat",
|
||||||
|
"wordSecond": "ból gardła",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "zmęczony",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "sleepy",
|
||||||
|
"wordSecond": "senny",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "zdrowy",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "chory",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "ill",
|
||||||
|
"wordSecond": "chory",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "weak",
|
||||||
|
"wordSecond": "słaby",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "strong",
|
||||||
|
"wordSecond": "silny",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "lekarz",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "pielęgniarka",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "szpital",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "clinic",
|
||||||
|
"wordSecond": "przychodnia",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "lekarstwo",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "tabletka",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "bandaż",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "injection",
|
||||||
|
"wordSecond": "zastrzyk",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "appointment",
|
||||||
|
"wordSecond": "wizyta",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "rest",
|
||||||
|
"wordSecond": "odpoczynek",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "sleep",
|
||||||
|
"wordSecond": "sen",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100072,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "water",
|
||||||
|
"wordSecond": "woda",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100073,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "food",
|
||||||
|
"wordSecond": "jedzenie",
|
||||||
|
"createdAt": "2026-02-19T14:02:56.218Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100072,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100073,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
981
output/2026_02_19_body_parts_health_en_pt_A2.json
Normal file
981
output/2026_02_19_body_parts_health_en_pt_A2.json
Normal file
@@ -0,0 +1,981 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:01:08.791Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 74,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "cabeça",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "braço",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "perna",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "mão",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "pé",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "olho",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "orelha",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "nariz",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "boca",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "cabelo",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "rosto",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "pescoço",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "ombro",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "cotovelo",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "pulso",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "dedo",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "polegar",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "peito",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "costas",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "barriga",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "cintura",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "quadril",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "joelho",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "tornozelo",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "dedo do pé",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "pele",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "osso",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "músculo",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "sangue",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "coração",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "pulmão",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "fígado",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "stomach (organ)",
|
||||||
|
"wordSecond": "estômago",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "cérebro",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "dente",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "língua",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "lábio",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "cheek",
|
||||||
|
"wordSecond": "bochecha",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "queixo",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "testa",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "eyebrow",
|
||||||
|
"wordSecond": "sobrancelha",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "eyelash",
|
||||||
|
"wordSecond": "cílio",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "beard",
|
||||||
|
"wordSecond": "barba",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "nail",
|
||||||
|
"wordSecond": "unha",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "heel",
|
||||||
|
"wordSecond": "calcanhar",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "throat",
|
||||||
|
"wordSecond": "garganta",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "dor",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "febre",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "cold",
|
||||||
|
"wordSecond": "resfriado",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "tosse",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "dor de cabeça",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "dor de barriga",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "cansado",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "saudável",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "doente",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "médico",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "enfermeiro",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "remédio",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "hospital",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "clinic",
|
||||||
|
"wordSecond": "clínica",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "pharmacy",
|
||||||
|
"wordSecond": "farmácia",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "appointment",
|
||||||
|
"wordSecond": "consulta",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "bandagem",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "pílula",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "syrup",
|
||||||
|
"wordSecond": "xarope",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "injection",
|
||||||
|
"wordSecond": "injeção",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "wound",
|
||||||
|
"wordSecond": "ferida",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "cut",
|
||||||
|
"wordSecond": "corte",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "bruise",
|
||||||
|
"wordSecond": "hematoma",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "swelling",
|
||||||
|
"wordSecond": "inchaço",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "itch",
|
||||||
|
"wordSecond": "coceira",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "espirro",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100072,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "breath",
|
||||||
|
"wordSecond": "respiração",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100073,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 7,
|
||||||
|
"wordFirst": "sleep",
|
||||||
|
"wordSecond": "sono",
|
||||||
|
"createdAt": "2026-02-19T14:01:08.791Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100072,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100073,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
942
output/2026_02_19_body_parts_health_en_zh_A2.json
Normal file
942
output/2026_02_19_body_parts_health_en_zh_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:02:24.661Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "head",
|
||||||
|
"wordSecond": "头 (tou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "hair",
|
||||||
|
"wordSecond": "头发 (toufa)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "face",
|
||||||
|
"wordSecond": "脸 (lian)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "forehead",
|
||||||
|
"wordSecond": "额头 (etu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "eye",
|
||||||
|
"wordSecond": "眼睛 (yanjing)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "ear",
|
||||||
|
"wordSecond": "耳朵 (erduo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "nose",
|
||||||
|
"wordSecond": "鼻子 (bizi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "mouth",
|
||||||
|
"wordSecond": "嘴 (zui)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "lip",
|
||||||
|
"wordSecond": "嘴唇 (zuichun)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "tooth",
|
||||||
|
"wordSecond": "牙齿 (yachi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "tongue",
|
||||||
|
"wordSecond": "舌头 (shetou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "chin",
|
||||||
|
"wordSecond": "下巴 (xiaba)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "neck",
|
||||||
|
"wordSecond": "脖子 (bozi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "shoulder",
|
||||||
|
"wordSecond": "肩膀 (jianbang)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "arm",
|
||||||
|
"wordSecond": "胳膊 (gebo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "elbow",
|
||||||
|
"wordSecond": "胳膊肘 (gebozhou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "hand",
|
||||||
|
"wordSecond": "手 (shou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "wrist",
|
||||||
|
"wordSecond": "手腕 (shouwan)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "finger",
|
||||||
|
"wordSecond": "手指 (shouzhi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "thumb",
|
||||||
|
"wordSecond": "大拇指 (damuzhi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "chest",
|
||||||
|
"wordSecond": "胸 (xiong)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "back",
|
||||||
|
"wordSecond": "背 (bei)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "stomach",
|
||||||
|
"wordSecond": "肚子 (duzi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "waist",
|
||||||
|
"wordSecond": "腰 (yao)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "hip",
|
||||||
|
"wordSecond": "臀部 (tunbu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "leg",
|
||||||
|
"wordSecond": "腿 (tui)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "knee",
|
||||||
|
"wordSecond": "膝盖 (xigai)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "foot",
|
||||||
|
"wordSecond": "脚 (jiao)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "ankle",
|
||||||
|
"wordSecond": "脚踝 (jiaohuai)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "toe",
|
||||||
|
"wordSecond": "脚趾 (jiaozhi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "skin",
|
||||||
|
"wordSecond": "皮肤 (pifu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "bone",
|
||||||
|
"wordSecond": "骨头 (gutou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "muscle",
|
||||||
|
"wordSecond": "肌肉 (jirou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "blood",
|
||||||
|
"wordSecond": "血 (xue)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "heart",
|
||||||
|
"wordSecond": "心脏 (xinzang)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "lung",
|
||||||
|
"wordSecond": "肺 (fei)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "liver",
|
||||||
|
"wordSecond": "肝 (gan)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "stomach (organ)",
|
||||||
|
"wordSecond": "胃 (wei)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "kidney",
|
||||||
|
"wordSecond": "肾 (shen)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "brain",
|
||||||
|
"wordSecond": "大脑 (danao)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "pain",
|
||||||
|
"wordSecond": "疼 (teng)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "ache",
|
||||||
|
"wordSecond": "痛 (tong)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "headache",
|
||||||
|
"wordSecond": "头痛 (toutong)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "stomachache",
|
||||||
|
"wordSecond": "肚子疼 (duziteng)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "fever",
|
||||||
|
"wordSecond": "发烧 (fashao)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "cold (illness)",
|
||||||
|
"wordSecond": "感冒 (ganmao)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "cough",
|
||||||
|
"wordSecond": "咳嗽 (kesou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "sneeze",
|
||||||
|
"wordSecond": "打喷嚏 (dapenti)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "tired",
|
||||||
|
"wordSecond": "累 (lei)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "sleepy",
|
||||||
|
"wordSecond": "困 (kun)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "healthy",
|
||||||
|
"wordSecond": "健康 (jiankang)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "sick",
|
||||||
|
"wordSecond": "生病 (shengbing)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "ill",
|
||||||
|
"wordSecond": "不舒服 (bushufu)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "doctor",
|
||||||
|
"wordSecond": "医生 (yisheng)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "nurse",
|
||||||
|
"wordSecond": "护士 (hushi)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "医院 (yiyuan)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "clinic",
|
||||||
|
"wordSecond": "诊所 (zhensuo)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "medicine",
|
||||||
|
"wordSecond": "药 (yao)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "pill",
|
||||||
|
"wordSecond": "药片 (yaopian)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "bandage",
|
||||||
|
"wordSecond": "绷带 (bengdai)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "injection",
|
||||||
|
"wordSecond": "打针 (dazhen)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "check-up",
|
||||||
|
"wordSecond": "检查 (jiancha)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "temperature",
|
||||||
|
"wordSecond": "体温 (tiwen)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "blood pressure",
|
||||||
|
"wordSecond": "血压 (xueya)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "wound",
|
||||||
|
"wordSecond": "伤口 (shangkou)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "cut",
|
||||||
|
"wordSecond": "割伤 (geshang)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "bruise",
|
||||||
|
"wordSecond": "淤青 (yuqing)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "fracture",
|
||||||
|
"wordSecond": "骨折 (guzhe)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "allergy",
|
||||||
|
"wordSecond": "过敏 (guomin)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "dizzy",
|
||||||
|
"wordSecond": "头晕 (touyun)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 1,
|
||||||
|
"languageSecondId": 2,
|
||||||
|
"wordFirst": "nausea",
|
||||||
|
"wordSecond": "恶心 (exin)",
|
||||||
|
"createdAt": "2026-02-19T14:02:24.661Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
981
output/2026_02_19_body_parts_health_es_de_A2.json
Normal file
981
output/2026_02_19_body_parts_health_es_de_A2.json
Normal file
@@ -0,0 +1,981 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:03:26.028Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 74,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cabeza",
|
||||||
|
"wordSecond": "Kopf",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "brazo",
|
||||||
|
"wordSecond": "Arm",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pierna",
|
||||||
|
"wordSecond": "Bein",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "mano",
|
||||||
|
"wordSecond": "Hand",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pie",
|
||||||
|
"wordSecond": "Fuß",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "dedo",
|
||||||
|
"wordSecond": "Finger",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "dedo del pie",
|
||||||
|
"wordSecond": "Zehe",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "ojo",
|
||||||
|
"wordSecond": "Auge",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "oreja",
|
||||||
|
"wordSecond": "Ohr",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "nariz",
|
||||||
|
"wordSecond": "Nase",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "boca",
|
||||||
|
"wordSecond": "Mund",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "labio",
|
||||||
|
"wordSecond": "Lippe",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "diente",
|
||||||
|
"wordSecond": "Zahn",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "lengua",
|
||||||
|
"wordSecond": "Zunge",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "barbilla",
|
||||||
|
"wordSecond": "Kinn",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cuello",
|
||||||
|
"wordSecond": "Hals",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hombro",
|
||||||
|
"wordSecond": "Schulter",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pecho",
|
||||||
|
"wordSecond": "Brust",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "espalda",
|
||||||
|
"wordSecond": "Rücken",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "Bauch",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "codo",
|
||||||
|
"wordSecond": "Ellbogen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "muñeca",
|
||||||
|
"wordSecond": "Handgelenk",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "rodilla",
|
||||||
|
"wordSecond": "Knie",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "tobillo",
|
||||||
|
"wordSecond": "Knöchel",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pelo",
|
||||||
|
"wordSecond": "Haar",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "uña",
|
||||||
|
"wordSecond": "Nagel",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "piel",
|
||||||
|
"wordSecond": "Haut",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "corazón",
|
||||||
|
"wordSecond": "Herz",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pulmón",
|
||||||
|
"wordSecond": "Lunge",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hígado",
|
||||||
|
"wordSecond": "Leber",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "riñón",
|
||||||
|
"wordSecond": "Niere",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "Magen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cerebro",
|
||||||
|
"wordSecond": "Gehirn",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "sangre",
|
||||||
|
"wordSecond": "Blut",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hueso",
|
||||||
|
"wordSecond": "Knochen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "músculo",
|
||||||
|
"wordSecond": "Muskel",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "dolor",
|
||||||
|
"wordSecond": "Schmerz",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "fiebre",
|
||||||
|
"wordSecond": "Fieber",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "resfriado",
|
||||||
|
"wordSecond": "Erkältung",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "tos",
|
||||||
|
"wordSecond": "Husten",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cansado",
|
||||||
|
"wordSecond": "müde",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "enfermo",
|
||||||
|
"wordSecond": "krank",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "sano",
|
||||||
|
"wordSecond": "gesund",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "médico",
|
||||||
|
"wordSecond": "Arzt",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "enfermera",
|
||||||
|
"wordSecond": "Krankenschwester",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "Krankenhaus",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "medicina",
|
||||||
|
"wordSecond": "Medizin",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "pastilla",
|
||||||
|
"wordSecond": "Tablette",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "inyección",
|
||||||
|
"wordSecond": "Spritze",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "herida",
|
||||||
|
"wordSecond": "Wunde",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "fractura",
|
||||||
|
"wordSecond": "Bruch",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "operación",
|
||||||
|
"wordSecond": "Operation",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "cita",
|
||||||
|
"wordSecond": "Termin",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "receta",
|
||||||
|
"wordSecond": "Rezept",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "farmacia",
|
||||||
|
"wordSecond": "Apotheke",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "ambulancia",
|
||||||
|
"wordSecond": "Krankenwagen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "dolor de cabeza",
|
||||||
|
"wordSecond": "Kopfschmerzen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "dolor de estómago",
|
||||||
|
"wordSecond": "Bauchschmerzen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "dolor de garganta",
|
||||||
|
"wordSecond": "Halsschmerzen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "dolor de espalda",
|
||||||
|
"wordSecond": "Rückenschmerzen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "gripe",
|
||||||
|
"wordSecond": "Grippe",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "alergia",
|
||||||
|
"wordSecond": "Allergie",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "virus",
|
||||||
|
"wordSecond": "Virus",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "infección",
|
||||||
|
"wordSecond": "Infektion",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "vómito",
|
||||||
|
"wordSecond": "Erbrechen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "diarrea",
|
||||||
|
"wordSecond": "Durchfall",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "mareo",
|
||||||
|
"wordSecond": "Schwindel",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "fatiga",
|
||||||
|
"wordSecond": "Erschöpfung",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "estornudo",
|
||||||
|
"wordSecond": "Niesen",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "respiración",
|
||||||
|
"wordSecond": "Atmung",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "latido",
|
||||||
|
"wordSecond": "Herzschlag",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100071,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "temperatura",
|
||||||
|
"wordSecond": "Temperatur",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100072,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "presión",
|
||||||
|
"wordSecond": "Druck",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100073,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 15,
|
||||||
|
"wordFirst": "salud",
|
||||||
|
"wordSecond": "Gesundheit",
|
||||||
|
"createdAt": "2026-02-19T14:03:26.028Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100071,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100072,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100073,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
942
output/2026_02_19_body_parts_health_es_fr_A2.json
Normal file
942
output/2026_02_19_body_parts_health_es_fr_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:03:39.948Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cabeza",
|
||||||
|
"wordSecond": "tête",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "brazo",
|
||||||
|
"wordSecond": "bras",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pierna",
|
||||||
|
"wordSecond": "jambe",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "mano",
|
||||||
|
"wordSecond": "main",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pie",
|
||||||
|
"wordSecond": "pied",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "ojo",
|
||||||
|
"wordSecond": "œil",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "nariz",
|
||||||
|
"wordSecond": "nez",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "boca",
|
||||||
|
"wordSecond": "bouche",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "oreja",
|
||||||
|
"wordSecond": "oreille",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cuello",
|
||||||
|
"wordSecond": "cou",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hombro",
|
||||||
|
"wordSecond": "épaule",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "codo",
|
||||||
|
"wordSecond": "coude",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "muñeca",
|
||||||
|
"wordSecond": "poignet",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "dedo",
|
||||||
|
"wordSecond": "doigt",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "uña",
|
||||||
|
"wordSecond": "ongle",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pecho",
|
||||||
|
"wordSecond": "poitrine",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "espalda",
|
||||||
|
"wordSecond": "dos",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "estomac",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cadera",
|
||||||
|
"wordSecond": "hanche",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "rodilla",
|
||||||
|
"wordSecond": "genou",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "tobillo",
|
||||||
|
"wordSecond": "cheville",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pelo",
|
||||||
|
"wordSecond": "cheveux",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cara",
|
||||||
|
"wordSecond": "visage",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "labio",
|
||||||
|
"wordSecond": "lèvre",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "diente",
|
||||||
|
"wordSecond": "dent",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "lengua",
|
||||||
|
"wordSecond": "langue",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "barbilla",
|
||||||
|
"wordSecond": "menton",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "frente",
|
||||||
|
"wordSecond": "front",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "ceja",
|
||||||
|
"wordSecond": "sourcil",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pestaña",
|
||||||
|
"wordSecond": "cil",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "corazón",
|
||||||
|
"wordSecond": "cœur",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pulmón",
|
||||||
|
"wordSecond": "poumon",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hígado",
|
||||||
|
"wordSecond": "foie",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "riñón",
|
||||||
|
"wordSecond": "rein",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "estomac",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cerebro",
|
||||||
|
"wordSecond": "cerveau",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "sangre",
|
||||||
|
"wordSecond": "sang",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hueso",
|
||||||
|
"wordSecond": "os",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "músculo",
|
||||||
|
"wordSecond": "muscle",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "piel",
|
||||||
|
"wordSecond": "peau",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "dolor",
|
||||||
|
"wordSecond": "douleur",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "fiebre",
|
||||||
|
"wordSecond": "fièvre",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "resfriado",
|
||||||
|
"wordSecond": "rhume",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "tos",
|
||||||
|
"wordSecond": "toux",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cansado",
|
||||||
|
"wordSecond": "fatigué",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "sano",
|
||||||
|
"wordSecond": "sain",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "enfermo",
|
||||||
|
"wordSecond": "malade",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "médico",
|
||||||
|
"wordSecond": "médecin",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "enfermera",
|
||||||
|
"wordSecond": "infirmière",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "hôpital",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "medicina",
|
||||||
|
"wordSecond": "médicament",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "pastilla",
|
||||||
|
"wordSecond": "comprimé",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "inyección",
|
||||||
|
"wordSecond": "piqûre",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "herida",
|
||||||
|
"wordSecond": "blessure",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "corte",
|
||||||
|
"wordSecond": "coupure",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "moretón",
|
||||||
|
"wordSecond": "ecchymose",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "hinchazón",
|
||||||
|
"wordSecond": "gonflement",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "salud",
|
||||||
|
"wordSecond": "santé",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "enfermedad",
|
||||||
|
"wordSecond": "maladie",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "gripe",
|
||||||
|
"wordSecond": "grippe",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "dolor de cabeza",
|
||||||
|
"wordSecond": "mal de tête",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "dolor de estómago",
|
||||||
|
"wordSecond": "mal de ventre",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "dolor de garganta",
|
||||||
|
"wordSecond": "mal de gorge",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "dolor de muelas",
|
||||||
|
"wordSecond": "mal de dents",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "farmacia",
|
||||||
|
"wordSecond": "pharmacie",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "clínica",
|
||||||
|
"wordSecond": "clinique",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "consulta",
|
||||||
|
"wordSecond": "consultation",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "receta",
|
||||||
|
"wordSecond": "ordonnance",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "operación",
|
||||||
|
"wordSecond": "opération",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "cura",
|
||||||
|
"wordSecond": "soin",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 14,
|
||||||
|
"wordFirst": "venda",
|
||||||
|
"wordSecond": "bandage",
|
||||||
|
"createdAt": "2026-02-19T14:03:39.948Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
1059
output/2026_02_19_body_parts_health_es_it_A2.json
Normal file
1059
output/2026_02_19_body_parts_health_es_it_A2.json
Normal file
File diff suppressed because it is too large
Load Diff
942
output/2026_02_19_body_parts_health_es_ja_A2.json
Normal file
942
output/2026_02_19_body_parts_health_es_ja_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:04:17.938Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cabeza",
|
||||||
|
"wordSecond": "頭 (あたま, atama)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "brazo",
|
||||||
|
"wordSecond": "腕 (うで, ude)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pierna",
|
||||||
|
"wordSecond": "脚 (あし, ashi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "mano",
|
||||||
|
"wordSecond": "手 (て, te)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pie",
|
||||||
|
"wordSecond": "足 (あし, ashi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "ojo",
|
||||||
|
"wordSecond": "目 (め, me)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "oreja",
|
||||||
|
"wordSecond": "耳 (みみ, mimi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "nariz",
|
||||||
|
"wordSecond": "鼻 (はな, hana)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "boca",
|
||||||
|
"wordSecond": "口 (くち, kuchi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "diente",
|
||||||
|
"wordSecond": "歯 (は, ha)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "lengua",
|
||||||
|
"wordSecond": "舌 (した, shita)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cuello",
|
||||||
|
"wordSecond": "首 (くび, kubi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hombro",
|
||||||
|
"wordSecond": "肩 (かた, kata)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pecho",
|
||||||
|
"wordSecond": "胸 (むね, mune)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "espalda",
|
||||||
|
"wordSecond": "背中 (せなか, senaka)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "お腹 (おなか, onaka)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "codo",
|
||||||
|
"wordSecond": "肘 (ひじ, hiji)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "muñeca",
|
||||||
|
"wordSecond": "手首 (てくび, tekubi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "dedo",
|
||||||
|
"wordSecond": "指 (ゆび, yubi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "uña",
|
||||||
|
"wordSecond": "爪 (つめ, tsume)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "rodilla",
|
||||||
|
"wordSecond": "膝 (ひざ, hiza)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "tobillo",
|
||||||
|
"wordSecond": "足首 (あしくび, ashikubi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pelo",
|
||||||
|
"wordSecond": "髪 (かみ, kami)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cara",
|
||||||
|
"wordSecond": "顔 (かお, kao)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "frente",
|
||||||
|
"wordSecond": "額 (ひたい, hitai)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "ceja",
|
||||||
|
"wordSecond": "眉 (まゆ, mayu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pestaña",
|
||||||
|
"wordSecond": "まつげ (matsuge)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "labio",
|
||||||
|
"wordSecond": "唇 (くちびる, kuchibiru)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "barbilla",
|
||||||
|
"wordSecond": "あご (ago)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "mejilla",
|
||||||
|
"wordSecond": "頬 (ほお, hoo)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "corazón",
|
||||||
|
"wordSecond": "心臓 (しんぞう, shinzou)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pulmón",
|
||||||
|
"wordSecond": "肺 (はい, hai)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hígado",
|
||||||
|
"wordSecond": "肝臓 (かんぞう, kanzou)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "riñón",
|
||||||
|
"wordSecond": "腎臓 (じんぞう, jinzou)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "estómago (órgano)",
|
||||||
|
"wordSecond": "胃 (い, i)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "intestino",
|
||||||
|
"wordSecond": "腸 (ちょう, chou)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "sangre",
|
||||||
|
"wordSecond": "血 (ち, chi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hueso",
|
||||||
|
"wordSecond": "骨 (ほね, hone)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "músculo",
|
||||||
|
"wordSecond": "筋肉 (きんにく, kinniku)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "piel",
|
||||||
|
"wordSecond": "皮膚 (ひふ, hifu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "dolor",
|
||||||
|
"wordSecond": "痛み (いたみ, itami)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "fiebre",
|
||||||
|
"wordSecond": "熱 (ねつ, netsu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "resfriado",
|
||||||
|
"wordSecond": "風邪 (かぜ, kaze)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "tos",
|
||||||
|
"wordSecond": "咳 (せき, seki)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "cansado",
|
||||||
|
"wordSecond": "疲れた (つかれた, tsukareta)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "saludable",
|
||||||
|
"wordSecond": "健康な (けんこうな, kenkou na)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "enfermo",
|
||||||
|
"wordSecond": "病気 (びょうき, byouki)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "médico",
|
||||||
|
"wordSecond": "医者 (いしゃ, isha)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "enfermera",
|
||||||
|
"wordSecond": "看護師 (かんごし, kangoshi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "病院 (びょういん, byouin)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "medicina",
|
||||||
|
"wordSecond": "薬 (くすり, kusuri)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pastilla",
|
||||||
|
"wordSecond": "錠剤 (じょうざい, jouzai)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "inyección",
|
||||||
|
"wordSecond": "注射 (ちゅうしゃ, chuusha)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "herida",
|
||||||
|
"wordSecond": "怪我 (けが, kega)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "sangrado",
|
||||||
|
"wordSecond": "出血 (しゅっけつ, shukketsu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "moretón",
|
||||||
|
"wordSecond": "あざ (aza)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "hinchazón",
|
||||||
|
"wordSecond": "腫れ (はれ, hare)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "picazón",
|
||||||
|
"wordSecond": "かゆみ (kayumi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "náusea",
|
||||||
|
"wordSecond": "吐き気 (はきけ, hakike)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "mareo",
|
||||||
|
"wordSecond": "めまい (memai)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "dolor de cabeza",
|
||||||
|
"wordSecond": "頭痛 (ずつう, zutsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "dolor de garganta",
|
||||||
|
"wordSecond": "喉の痛み (のどのいたみ, nodo no itami)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "dolor de estómago",
|
||||||
|
"wordSecond": "腹痛 (ふくつう, fukutsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "dolor de espalda",
|
||||||
|
"wordSecond": "背中の痛み (せなかのいたみ, senaka no itami)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "dolor de muelas",
|
||||||
|
"wordSecond": "歯痛 (しつう, shitsuu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "gripe",
|
||||||
|
"wordSecond": "インフルエンザ (infuruenza)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "alergia",
|
||||||
|
"wordSecond": "アレルギー (arerugii)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "asma",
|
||||||
|
"wordSecond": "喘息 (ぜんそく, zensoku)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "presión arterial",
|
||||||
|
"wordSecond": "血圧 (けつあつ, ketsuatsu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "temperatura",
|
||||||
|
"wordSecond": "体温 (たいおん, taion)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 21,
|
||||||
|
"wordFirst": "pulso",
|
||||||
|
"wordSecond": "脈 (みゃく, myaku)",
|
||||||
|
"createdAt": "2026-02-19T14:04:17.938Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
929
output/2026_02_19_body_parts_health_es_ko_A2.json
Normal file
929
output/2026_02_19_body_parts_health_es_ko_A2.json
Normal file
@@ -0,0 +1,929 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:04:56.241Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 70,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cabeza",
|
||||||
|
"wordSecond": "머리 (meori)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "ojo",
|
||||||
|
"wordSecond": "눈 (nun)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "nariz",
|
||||||
|
"wordSecond": "코 (ko)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "boca",
|
||||||
|
"wordSecond": "입 (ip)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "oreja",
|
||||||
|
"wordSecond": "귀 (gwi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cuello",
|
||||||
|
"wordSecond": "목 (mok)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hombro",
|
||||||
|
"wordSecond": "어깨 (eokkae)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "brazo",
|
||||||
|
"wordSecond": "팔 (pal)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "codo",
|
||||||
|
"wordSecond": "팔꿈치 (palkkumchi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "muñeca",
|
||||||
|
"wordSecond": "손목 (sonmok)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "mano",
|
||||||
|
"wordSecond": "손 (son)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "dedo",
|
||||||
|
"wordSecond": "손가락 (songarak)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pecho",
|
||||||
|
"wordSecond": "가슴 (gaseum)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "espalda",
|
||||||
|
"wordSecond": "등 (deung)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "배 (bae)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cintura",
|
||||||
|
"wordSecond": "허리 (heori)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cadera",
|
||||||
|
"wordSecond": "엉덩이 (eongdeongi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pierna",
|
||||||
|
"wordSecond": "다리 (dari)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "rodilla",
|
||||||
|
"wordSecond": "무릎 (mureup)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "tobillo",
|
||||||
|
"wordSecond": "발목 (balmok)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pie",
|
||||||
|
"wordSecond": "발 (bal)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "dedo del pie",
|
||||||
|
"wordSecond": "발가락 (balgarak)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pelo",
|
||||||
|
"wordSecond": "머리카락 (meorikarak)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "frente",
|
||||||
|
"wordSecond": "이마 (ima)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "ceja",
|
||||||
|
"wordSecond": "눈썹 (nunsseop)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pestaña",
|
||||||
|
"wordSecond": "속눈썹 (songnunsseop)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "labio",
|
||||||
|
"wordSecond": "입술 (ipsul)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "diente",
|
||||||
|
"wordSecond": "이 (i)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "lengua",
|
||||||
|
"wordSecond": "혀 (hyeo)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "barbilla",
|
||||||
|
"wordSecond": "턱 (teok)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "corazón",
|
||||||
|
"wordSecond": "심장 (simjang)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pulmón",
|
||||||
|
"wordSecond": "폐 (pye)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hígado",
|
||||||
|
"wordSecond": "간 (gan)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "riñón",
|
||||||
|
"wordSecond": "콩팥 (kongpat)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "estómago (órgano)",
|
||||||
|
"wordSecond": "위 (wi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "intestino",
|
||||||
|
"wordSecond": "창자 (changja)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cerebro",
|
||||||
|
"wordSecond": "뇌 (noe)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "sangre",
|
||||||
|
"wordSecond": "피 (pi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hueso",
|
||||||
|
"wordSecond": "뼈 (ppyeo)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "músculo",
|
||||||
|
"wordSecond": "근육 (geunyuk)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "piel",
|
||||||
|
"wordSecond": "피부 (pibu)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "uña",
|
||||||
|
"wordSecond": "손톱 (sontop)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "dolor",
|
||||||
|
"wordSecond": "아픔 (apeum)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "fiebre",
|
||||||
|
"wordSecond": "열 (yeol)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "resfriado",
|
||||||
|
"wordSecond": "감기 (gamgi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "tos",
|
||||||
|
"wordSecond": "기침 (gichim)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cansado",
|
||||||
|
"wordSecond": "피곤한 (pigonhan)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "saludable",
|
||||||
|
"wordSecond": "건강한 (geonganghan)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "enfermo",
|
||||||
|
"wordSecond": "아픈 (apeun)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "médico",
|
||||||
|
"wordSecond": "의사 (uisa)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "enfermera",
|
||||||
|
"wordSecond": "간호사 (ganhosa)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "병원 (byeongwon)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "medicina",
|
||||||
|
"wordSecond": "약 (yak)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "pastilla",
|
||||||
|
"wordSecond": "알약 (alyak)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "inyección",
|
||||||
|
"wordSecond": "주사 (jusa)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "herida",
|
||||||
|
"wordSecond": "상처 (sangcheo)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cicatriz",
|
||||||
|
"wordSecond": "흉터 (hyungteo)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "vómito",
|
||||||
|
"wordSecond": "구토 (guto)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "diarrea",
|
||||||
|
"wordSecond": "설사 (seolsa)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "alergia",
|
||||||
|
"wordSecond": "알레르기 (allereugi)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "gripe",
|
||||||
|
"wordSecond": "독감 (dokgam)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "dolor de cabeza",
|
||||||
|
"wordSecond": "두통 (dutong)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "dolor de estómago",
|
||||||
|
"wordSecond": "복통 (boktong)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "dolor de garganta",
|
||||||
|
"wordSecond": "목아픔 (mogapeum)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "dolor de muelas",
|
||||||
|
"wordSecond": "치통 (chitong)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "sano",
|
||||||
|
"wordSecond": "건강한 (geonganghan)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "débil",
|
||||||
|
"wordSecond": "약한 (yakan)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "fuerte",
|
||||||
|
"wordSecond": "강한 (ganghan)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "cura",
|
||||||
|
"wordSecond": "치료 (chiryo)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 13,
|
||||||
|
"wordFirst": "operación",
|
||||||
|
"wordSecond": "수술 (susul)",
|
||||||
|
"createdAt": "2026-02-19T14:04:56.241Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
942
output/2026_02_19_body_parts_health_es_pl_A2.json
Normal file
942
output/2026_02_19_body_parts_health_es_pl_A2.json
Normal file
@@ -0,0 +1,942 @@
|
|||||||
|
{
|
||||||
|
"type": "Category",
|
||||||
|
"exportDate": "2026-02-19T14:05:11.172Z",
|
||||||
|
"metadata": {
|
||||||
|
"itemCount": 71,
|
||||||
|
"categoryCount": 1,
|
||||||
|
"exportScope": "Category: Body Parts & Health"
|
||||||
|
},
|
||||||
|
"category": {
|
||||||
|
"type": "TagCategory",
|
||||||
|
"id": 99999,
|
||||||
|
"name": "Body Parts & Health"
|
||||||
|
},
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"id": 100000,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "cabeza",
|
||||||
|
"wordSecond": "głowa",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100001,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "brazo",
|
||||||
|
"wordSecond": "ramię",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100002,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pierna",
|
||||||
|
"wordSecond": "noga",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100003,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "mano",
|
||||||
|
"wordSecond": "ręka",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100004,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pie",
|
||||||
|
"wordSecond": "stopa",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100005,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dedo",
|
||||||
|
"wordSecond": "palec",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100006,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "ojo",
|
||||||
|
"wordSecond": "oko",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100007,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "nariz",
|
||||||
|
"wordSecond": "nos",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100008,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "boca",
|
||||||
|
"wordSecond": "usta",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100009,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "oreja",
|
||||||
|
"wordSecond": "ucho",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100010,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "cara",
|
||||||
|
"wordSecond": "twarz",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100011,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "frente",
|
||||||
|
"wordSecond": "czoło",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100012,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "barbilla",
|
||||||
|
"wordSecond": "broda",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100013,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "cuello",
|
||||||
|
"wordSecond": "szyja",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100014,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hombro",
|
||||||
|
"wordSecond": "bark",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100015,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "espalda",
|
||||||
|
"wordSecond": "plecy",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100016,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pecho",
|
||||||
|
"wordSecond": "klatka piersiowa",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100017,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "brzuch",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100018,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "codo",
|
||||||
|
"wordSecond": "łokieć",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100019,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "muñeca",
|
||||||
|
"wordSecond": "nadgarstek",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100020,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "rodilla",
|
||||||
|
"wordSecond": "kolano",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100021,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "tobillo",
|
||||||
|
"wordSecond": "kostka",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100022,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dedo del pie",
|
||||||
|
"wordSecond": "palec u nogi",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100023,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pelo",
|
||||||
|
"wordSecond": "włos",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100024,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "ceja",
|
||||||
|
"wordSecond": "brew",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100025,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pestaña",
|
||||||
|
"wordSecond": "rzęsa",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100026,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "labio",
|
||||||
|
"wordSecond": "warga",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100027,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "diente",
|
||||||
|
"wordSecond": "ząb",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100028,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "lengua",
|
||||||
|
"wordSecond": "język",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100029,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "mejilla",
|
||||||
|
"wordSecond": "policzek",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100030,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "corazón",
|
||||||
|
"wordSecond": "serce",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100031,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "pulmón",
|
||||||
|
"wordSecond": "płuco",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100032,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hígado",
|
||||||
|
"wordSecond": "wątroba",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100033,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "riñón",
|
||||||
|
"wordSecond": "nerka",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100034,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "estómago",
|
||||||
|
"wordSecond": "żołądek",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100035,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "cerebro",
|
||||||
|
"wordSecond": "mózg",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100036,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "sangre",
|
||||||
|
"wordSecond": "krew",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100037,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hueso",
|
||||||
|
"wordSecond": "kość",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100038,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "músculo",
|
||||||
|
"wordSecond": "mięsień",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100039,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "piel",
|
||||||
|
"wordSecond": "skóra",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100040,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "uña",
|
||||||
|
"wordSecond": "paznokieć",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100041,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dolor",
|
||||||
|
"wordSecond": "ból",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100042,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "fiebre",
|
||||||
|
"wordSecond": "gorączka",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100043,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "resfriado",
|
||||||
|
"wordSecond": "przeziębienie",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100044,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "tos",
|
||||||
|
"wordSecond": "kaszel",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100045,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "cansado",
|
||||||
|
"wordSecond": "zmęczony",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100046,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "sano",
|
||||||
|
"wordSecond": "zdrowy",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100047,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "enfermo",
|
||||||
|
"wordSecond": "chory",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100048,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "médico",
|
||||||
|
"wordSecond": "lekarz",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100049,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "medicina",
|
||||||
|
"wordSecond": "lekarstwo",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100050,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hospital",
|
||||||
|
"wordSecond": "szpital",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100051,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "enfermera",
|
||||||
|
"wordSecond": "pielęgniarka",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100052,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "farmacia",
|
||||||
|
"wordSecond": "apteka",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100053,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "herida",
|
||||||
|
"wordSecond": "rana",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100054,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "moretón",
|
||||||
|
"wordSecond": "siniak",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100055,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "hinchazón",
|
||||||
|
"wordSecond": "obrzęk",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100056,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "gripe",
|
||||||
|
"wordSecond": "grypa",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100057,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "alergia",
|
||||||
|
"wordSecond": "alergia",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100058,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "vómito",
|
||||||
|
"wordSecond": "wymioty",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100059,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "diarrea",
|
||||||
|
"wordSecond": "biegunka",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100060,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "estornudo",
|
||||||
|
"wordSecond": "kichnięcie",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100061,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dolor de cabeza",
|
||||||
|
"wordSecond": "ból głowy",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100062,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dolor de garganta",
|
||||||
|
"wordSecond": "ból gardła",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100063,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dolor de estómago",
|
||||||
|
"wordSecond": "ból brzucha",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100064,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dolor de espalda",
|
||||||
|
"wordSecond": "ból pleców",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100065,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "dolor de muelas",
|
||||||
|
"wordSecond": "ból zęba",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100066,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "salud",
|
||||||
|
"wordSecond": "zdrowie",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100067,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "enfermedad",
|
||||||
|
"wordSecond": "choroba",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100068,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "receta",
|
||||||
|
"wordSecond": "recepta",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100069,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "inyección",
|
||||||
|
"wordSecond": "zastrzyk",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 100070,
|
||||||
|
"languageFirstId": 3,
|
||||||
|
"languageSecondId": 24,
|
||||||
|
"wordFirst": "operación",
|
||||||
|
"wordSecond": "operacja",
|
||||||
|
"createdAt": "2026-02-19T14:05:11.172Z",
|
||||||
|
"features": "{}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"states": [],
|
||||||
|
"stageMappings": [
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100000,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100001,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100002,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100003,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100004,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100005,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100006,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100007,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100008,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100009,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100010,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100011,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100012,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100013,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100014,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100015,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100016,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100017,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100018,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100019,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100020,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100021,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100022,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100023,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100024,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100025,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100026,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100027,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100028,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100029,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100030,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100031,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100032,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100033,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100034,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100035,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100036,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100037,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100038,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100039,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100040,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100041,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100042,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100043,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100044,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100045,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100046,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100047,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100048,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100049,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100050,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100051,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100052,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100053,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100054,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100055,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100056,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100057,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100058,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100059,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100060,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100061,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100062,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100063,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100064,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100065,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100066,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100067,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100068,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100069,
|
||||||
|
"stage": "NEW"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"vocabularyItemId": 100070,
|
||||||
|
"stage": "NEW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user