Update continuous-improve.sh: remove vikunja rebuild, fix domain language for ancient history

This commit is contained in:
daniel
2026-02-22 22:06:32 +00:00
parent 23098547f1
commit 1c8a67349f
70 changed files with 3788 additions and 4926 deletions

430
.automate/continuous-improve.sh Executable file
View File

@@ -0,0 +1,430 @@
#!/usr/bin/env bash
# continuous-improve.sh — Entity-by-entity continuous improvement loop
#
# Iterates through every factbase entity, one at a time. Does mechanical
# cleanup in bash (fast), then only invokes an agent for entities that
# actually need review resolution or enrichment.
#
# Usage: .automate/continuous-improve.sh [options]
# --priority reviews|stale|random Queue ordering (default: reviews)
# --cycle-delay N Seconds between entities (default: 5)
# --model MODEL LLM model (default: claude-sonnet-4.6)
# --start N Skip first N entities in queue (resume)
# --no-skip Don't skip clean entities (force agent on all)
set -euo pipefail
# ─── Parse arguments ───
PRIORITY="reviews"
CYCLE_DELAY=5
MODEL="claude-sonnet-4.6"
START_AT=0
SKIP_CLEAN=true
while [[ $# -gt 0 ]]; do
case "$1" in
--priority) PRIORITY="$2"; shift 2 ;;
--cycle-delay) CYCLE_DELAY="$2"; shift 2 ;;
--model) MODEL="$2"; shift 2 ;;
--start) START_AT="$2"; shift 2 ;;
--no-skip) SKIP_CLEAN=false; shift ;;
*) echo "Usage: $0 [--priority reviews|stale|random] [--cycle-delay N] [--model MODEL] [--start N] [--no-skip]"; exit 1 ;;
esac
done
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
DOCS_DIR="$SCRIPT_DIR/.."
STATE_FILE="$SCRIPT_DIR/.improve-state.tsv"
ACTION_LOG="$SCRIPT_DIR/improve-history.log"
exec > >(tee -a "$SCRIPT_DIR/continuous-improve.log") 2>&1
log() { echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*"; }
do_commit() {
local msg="$1"
cd "$DOCS_DIR"
git add -A
if ! git diff --cached --quiet; then
git commit -m "$msg"
for attempt in 1 2 3; do
if git push 2>/dev/null; then
log "✅ Committed: $msg"
return 0
fi
log "⚠️ Push attempt $attempt failed, rebasing..."
git pull --rebase
done
log "❌ Push failed after 3 attempts"
fi
}
build_queue() {
cd "$DOCS_DIR"
local tmpfile
tmpfile=$(mktemp)
find . -name '*.md' \
-not -path './.git/*' \
-not -path './.automate/*' \
-not -path './.kiro/*' \
-not -path './.factbase/*' \
-not -path './_orphans.md' \
-print0 | while IFS= read -r -d '' file; do
local fb_id
fb_id=$(grep -oP '(?<=factbase:)[a-f0-9]{6}' "$file" 2>/dev/null | head -1)
[[ -z "$fb_id" ]] && continue
local review_count
review_count=$(grep -c '^\- \[ \] `@q\[' "$file" 2>/dev/null) || true
local mtime
mtime=$(stat -c %Y "$file")
local last_processed=0
if [[ -f "$STATE_FILE" ]]; then
last_processed=$(grep "^${fb_id} " "$STATE_FILE" 2>/dev/null | tail -1 | cut -f2) || true
[[ -z "$last_processed" ]] && last_processed=0
fi
local garbage_count
garbage_count=$(grep -ciP '^\[\^.*\b(not a conflict|sequential|boundary overlap|not simultaneous|malformed tag|garbled|artifact|remove)\b' "$file" 2>/dev/null) || true
# Flag person docs with incomplete names (single word, alias, no space)
local incomplete_name=0
local parent_dir
parent_dir=$(echo "$file" | sed 's|^\./||' | rev | cut -d/ -f2 | rev)
if [[ "$parent_dir" == "rulers" ]]; then
local doc_title
doc_title=$(grep '^# ' "$file" 2>/dev/null | head -1 | sed 's/^# //' | sed 's/ @t\[.*//;s/ \[\^.*//')
if [[ -n "$doc_title" ]] && ! echo "$doc_title" | grep -q ' '; then
incomplete_name=1
fi
fi
echo -e "${fb_id}\t${file}\t${review_count}\t${mtime}\t${last_processed}\t${garbage_count}\t${incomplete_name}"
done > "$tmpfile"
case "$PRIORITY" in
reviews) sort -t$'\t' -k7,7rn -k3,3rn -k6,6rn -k5,5n "$tmpfile" ;;
stale) sort -t$'\t' -k7,7rn -k5,5n -k3,3rn "$tmpfile" ;;
random) shuf "$tmpfile" ;;
esac
rm -f "$tmpfile"
}
mark_processed() {
echo -e "$1\t$(date +%s)" >> "$STATE_FILE"
}
# ─── Bash-based mechanical cleanup (no agent needed) ───
bash_cleanup() {
local file="$1"
local changed=false
# Fix corrupted title: strip @t[...] and [^N] suffixes
if grep -qP '^# .+(\s+@t\[|\s+\[\^)' "$file" 2>/dev/null; then
sed -i -E 's/^(# .+?)\s+(@t\[.*|\[\^.*)$/\1/' "$file"
changed=true
fi
# Delete garbage footnotes (review answers dumped as source citations)
if grep -qiP '^\[\^\d+\]:.*\b(not a conflict|sequential role|boundary overlap|not simultaneous|malformed tag|garbled|artifact from previous|remove garbled)\b' "$file" 2>/dev/null; then
# Get line numbers of garbage footnotes, delete them
local lines
lines=$(grep -niP '^\[\^\d+\]:.*\b(not a conflict|sequential role|boundary overlap|not simultaneous|malformed tag|garbled|artifact from previous|remove garbled)\b' "$file" | cut -d: -f1 | sort -rn)
if [[ -n "$lines" ]]; then
for ln in $lines; do
sed -i "${ln}d" "$file"
done
changed=true
fi
fi
# Remove review answer artifact lines in body
if grep -qP '^- Artifact from previous review application' "$file" 2>/dev/null; then
sed -i '/^- Artifact from previous review application/d' "$file"
changed=true
fi
# Remove empty Review Queue sections and factbase:review markers
if grep -qP '^## Review Queue|<!-- factbase:review -->' "$file" 2>/dev/null; then
# Only remove if the review queue has no actual unanswered questions
local has_open
has_open=$(grep -c '^\- \[ \] `@q\[' "$file" 2>/dev/null) || true
if [[ "$has_open" -eq 0 ]]; then
sed -i '/^## Review Queue$/d; /^<!-- factbase:review -->$/d' "$file"
# Clean up trailing blank lines and stray --- at end of file
sed -i -e :a -e '/^\n*$/{$d;N;ba' -e '}' "$file"
changed=true
fi
fi
[[ "$changed" == true ]]
}
get_related_context() {
local file="$1"
local title
title=$(grep '^# ' "$file" | head -1 | sed 's/^# //' | sed 's/ @t\[.*//;s/ \[\^.*//')
[[ -z "$title" ]] && return
cd "$DOCS_DIR"
local related=""
while IFS= read -r match_file; do
[[ "$match_file" == "$file" ]] && continue
local match_title
match_title=$(grep '^# ' "$match_file" 2>/dev/null | head -1 | sed 's/^# //')
local excerpt
excerpt=$(grep -i "$title" "$match_file" 2>/dev/null | head -3)
if [[ -n "$excerpt" ]]; then
related+="--- From: ${match_title} (${match_file}) ---
${excerpt}
"
fi
done < <(grep -rl "$title" . --include='*.md' \
| grep -v '.git\|.automate\|.kiro\|.factbase\|_orphans' \
| head -5)
echo "$related"
}
# ─── Agent-based processing (review questions + enrichment) ───
process_entity_agent() {
local fb_id="$1"
local file="$2"
local title="$3"
cd "$DOCS_DIR"
local content
content=$(cat "$file")
local related
related=$(get_related_context "$file")
local prompt
prompt="You are continuously improving a factbase knowledge base, one entity at a time.
Use factbase MCP tools — call get_authoring_guide if you need formatting rules.
ENTITY FILE: $file
ENTITY ID: $fb_id
=== CURRENT DOCUMENT CONTENT ===
$content
=== END DOCUMENT CONTENT ==="
if [[ -n "$related" ]]; then
prompt+="
=== MENTIONS IN OTHER DOCUMENTS ===
$related
=== END MENTIONS ==="
fi
prompt+='
STEPS — work through in order, skip any that do not apply:
1. RESOLVE REVIEW QUESTIONS:
Call get_review_queue(doc_id='"'"''"$fb_id"''"'"') — if there are open questions, answer them.
Patterns learned from resolving thousands of these:
- CONFLICT (chronological overlaps): Boundary-year overlaps in sequential reigns or periods
are NOT conflicts (date granularity artifact). Concurrent roles (e.g., ruler + military
commander, pharaoh + high priest) are both true simultaneously. Approximate dates that
overlap by a few years reflect scholarly uncertainty, not contradiction.
- AMBIGUOUS (terms): Expand the term AND create or update a definitions/ file so the
term is not flagged again. Do NOT just answer inline — the definitions file is what
prevents recurrence. Check existing definitions files first with search_content.
Common: BCE, CE, polis, satrapy, pharaoh, consul, tribune, cuneiform, stele, ziggurat.
- TEMPORAL/STALE: BCE dates are written in text, not temporal tags. CE date ranges
(@t[...]) that are closed are historical, not stale. For open @t[~...] tags, search
for newer scholarship.
- MISSING: Search with search_knowledge and search_content. If not found, defer.
After answering, call apply_review_answers(doc_id='"'"''"$fb_id"''"'"'). Then re-read the
file with get_entity and verify apply did not corrupt it (garbage footnotes, mangled title).
If it did, fix with update_document.
2. IDENTITY & ORGANIZATION:
For ruler documents: if the title is a single name, alias, or epithet (not a full name),
prioritize finding their full or commonly known name. Search local sources, check mentions
in other documents, and cross-reference with civilization docs.
If you find the full name, update the document title with update_document.
For any document: if the title or file location could be improved (e.g. a ruler doc is in
the wrong civilization folder, or the filename does not match the title), use the organize MCP
tool to rename/move it. Use organize(action='"'"'move'"'"', doc_id=..., to=...) to relocate
or update_document(id=..., title=...) to fix the title.
3. ENRICH:
Search ALL your available tools for new information about this entity — factbase search,
web search, whatever you have. Use the entity name, aliases,
and known associations as search terms. Add any new facts not already present, following
factbase authoring conventions.
4. IMPROVEMENT IDEAS:
If you notice friction or gaps in factbase tools, file a Vikunja feature request:
curl -s -X PUT "https://vikunja.home.everyonce.com/api/v1/projects/2/tasks" \
-H "Authorization: Bearer tk_ff251f3d3512775c71913bc2f8ec0dabbf5016a8" \
-H "Content-Type: application/json" \
-d '"'"'{"title":"[factbase][feature] <summary>","description":"<details>","priority":2}'"'"'
Only file genuinely useful improvements, not duplicates.
RULES:
- Use update_document to edit — be surgical, change only what needs changing
- If nothing needs changing, say so and move on
IMPORTANT: When finished, output exactly one line:
<action_summary>status: STATUS | '"$title"' | changes: DESCRIPTION</action_summary>
Status values: UPDATED (made changes), NO_CHANGE (nothing to do), ERROR (something failed)'
local output
output=$(kiro-cli chat --trust-all-tools --no-interactive --model "$MODEL" \
"$prompt" 2>&1) || {
log "❌ kiro-cli error for $title, continuing..."
return 1
}
echo "$output"
local summary
summary=$(echo "$output" | grep -oP '(?<=<action_summary>).*(?=</action_summary>)' | tail -1)
[[ -z "$summary" ]] && summary="status: UNKNOWN | $title | no summary returned"
echo "$summary"
}
# ─── Main entity processing dispatcher ───
process_entity() {
local fb_id="$1"
local file="$2"
local review_count="$3"
local mtime="$4"
local last_processed="$5"
local garbage_count="$6"
local incomplete_name="$7"
cd "$DOCS_DIR"
local title
title=$(grep '^# ' "$file" | head -1 | sed 's/^# //' | sed 's/ @t\[.*//;s/ \[\^.*//')
log "━━━ [$title] ($fb_id) reviews=$review_count garbage=$garbage_count ━━━"
local start_time
start_time=$(date +%s)
local status="NO_CHANGE"
local summary=""
# Phase 1: Bash cleanup (milliseconds, no agent)
if bash_cleanup "$file"; then
log " 🧹 Bash cleanup applied"
status="UPDATED"
# Recount after cleanup
review_count=$(grep -c '^\- \[ \] `@q\[' "$file" 2>/dev/null) || true
garbage_count=0
fi
# Phase 2: Decide if agent is needed
local needs_agent=false
if [[ "${incomplete_name:-0}" -eq 1 ]]; then
needs_agent=true
log " 👤 Incomplete name (ruler doc) → agent needed to resolve identity"
elif [[ "$review_count" -gt 0 ]]; then
needs_agent=true
log " 📋 $review_count review questions → agent needed"
elif [[ "$SKIP_CLEAN" == true && "$last_processed" -gt 0 && "$mtime" -le "$last_processed" ]]; then
log " ⏭️ No questions, not modified since last pass → skipping agent"
else
needs_agent=true
log " 🔍 Enrichment pass → agent needed"
fi
if [[ "$needs_agent" == true ]]; then
local agent_output
agent_output=$(process_entity_agent "$fb_id" "$file" "$title")
echo "$agent_output"
summary=$(echo "$agent_output" | grep -oP '(?<=<action_summary>).*(?=</action_summary>)' | tail -1)
local agent_status
agent_status=$(echo "$summary" | grep -oP '^status: \K[A-Z_]+' || echo "UNKNOWN")
if [[ "$agent_status" == "UPDATED" ]]; then
status="UPDATED"
fi
fi
local end_time
end_time=$(date +%s)
local duration=$((end_time - start_time))
if [[ "$status" == "UPDATED" ]]; then
do_commit "improve: $title"
fi
[[ -z "$summary" ]] && summary="status: $status | $title | bash-only pass"
{
echo "[$(date -Iseconds)] $fb_id | $title"
echo " $summary"
echo " duration: ${duration}s"
} >> "$ACTION_LOG"
mark_processed "$fb_id"
log " Done (${duration}s) — $status"
[[ "$status" == "UPDATED" ]] && return 0 || return 1
}
# ═══════════════════════════════════════════
# MAIN LOOP
# ═══════════════════════════════════════════
log "🚀 Starting continuous improvement loop (priority=$PRIORITY, model=$MODEL, start=$START_AT, skip_clean=$SKIP_CLEAN)"
log "Docs dir: $DOCS_DIR"
log "State file: $STATE_FILE"
log "Press Ctrl+C to stop"
PASS=0
while true; do
PASS=$((PASS + 1))
log ""
log "═══════════════════════════════════════════"
log " PASS $PASS$(TZ='America/Chicago' date '+%Y-%m-%d %r') — priority=$PRIORITY"
log "═══════════════════════════════════════════"
QUEUE=$(build_queue)
TOTAL=$(echo "$QUEUE" | grep -c . || echo 0)
log "Queue: $TOTAL entities (starting at $((START_AT + 1)))"
PROCESSED=0
UPDATED=0
SKIPPED=0
POSITION=0
while IFS=$'\t' read -r fb_id file review_count mtime last_processed garbage_count incomplete_name; do
[[ -z "$fb_id" ]] && continue
POSITION=$((POSITION + 1))
if [[ $POSITION -le $START_AT ]]; then
continue
fi
PROCESSED=$((PROCESSED + 1))
log "[$POSITION/$TOTAL] Next up..."
if process_entity "$fb_id" "$file" "$review_count" "$mtime" "$last_processed" "$garbage_count" "$incomplete_name"; then
UPDATED=$((UPDATED + 1))
fi
sleep "$CYCLE_DELAY"
done <<< "$QUEUE"
log ""
log "═══ Pass $PASS complete: $PROCESSED processed, $UPDATED updated ═══"
START_AT=0
log "Looping back to start..."
sleep "$CYCLE_DELAY"
done

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -32,74 +32,51 @@ The Battle of Actium (31 BCE) was the decisive naval engagement in which Octavia
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: 2 September 31 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: 2 September 31 BCE" - when was this true?
> > Static historical fact. The battle occurred on 2 September 31 BCE. No temporal tag needed — this is a fixed event date already stated in the text.
- [x] `@q[temporal]` Line 11: "Location: Ionian Sea, near Actium (western Greece)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Location: Ionian Sea, near Actium (western Greece)" - when was this true? > Static historical fact. The battle location is a fixed geographical/historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Belligerents: Octavian vs. Mark Antony and Cleopatra VII" - when was this true?
> Static historical fact. The belligerents at Actium are fixed. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Belligerents: Octavian vs. Mark Antony and Cleopatra VII" - when was this true? - [x] `@q[temporal]` Line 13: "Commanders: Agrippa (for Octavian), Antony and Cleopatra" - when was this true?
> > Static historical fact. The commanders at Actium are fixed. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Result: Decisive victory for Octavian [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Commanders: Agrippa (for Octavian), Antony and Cleopatra" - when was this true? > Static historical fact. The battle result is fixed. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Octavian's fleet: ~400 ships; Antony's fleet: ~230 warships + 60 Egyptian ships" - when was this true?
> Static historical fact. Fleet sizes at the battle are fixed estimates. No temporal tag needed. Source: Plutarch, Life of Antony; Lange (2022).
- [ ] `@q[temporal]` Line 14: "Result: Decisive victory for Octavian [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Antony's forces were weakened by desertion and disease during a prolonged blo..." - when was this true?
> > Static historical fact. Events during the 31 BCE campaign. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Cleopatra's squadron broke through and fled; Antony followed" - when was this true?
- [ ] `@q[temporal]` Line 17: "Octavian's fleet: ~400 ships; Antony's fleet: ~230 warships + 60 Egyptian ships" - when was this true? > Static historical fact. Event during the battle of 2 September 31 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Remaining fleet surrendered; Antony's legions defected to Octavian" - when was this true?
> Static historical fact. Event during/after the battle of 31 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Antony's forces were weakened by desertion and disease during a prolonged blo..." - when was this true? - [x] `@q[temporal]` Line 23: "Antony and Cleopatra committed suicide in Alexandria (30 BCE)" - when was this true?
> > Static historical fact. Occurred 30 BCE. No temporal tag needed — date is already in the text.
- [x] `@q[temporal]` Line 24: "Egypt became a Roman province" - when was this true?
- [ ] `@q[temporal]` Line 19: "Cleopatra's squadron broke through and fled; Antony followed" - when was this true? > Static historical fact. Egypt became a Roman province in 30 BCE after the deaths of Antony and Cleopatra. Add '(30 BCE)' to the text for clarity.
> - [x] `@q[temporal]` Line 25: "Octavian became sole ruler; Senate granted him the title Augustus (27 BCE) [^2]" - when was this true?
> Static historical fact. Occurred 27 BCE, already stated in the text. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Remaining fleet surrendered; Antony's legions defected to Octavian" - when was this true? - [x] `@q[missing]` Line 10: "Date: 2 September 31 BCE" - what is the source?
> > Source: Plutarch, Life of Antony; Cassius Dio, Roman History 50-51. The date is well-established in classical sources. Already cited via [^1] (Plutarch) and [^2] (Lange 2022).
- [x] `@q[missing]` Line 11: "Location: Ionian Sea, near Actium (western Greece)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Antony and Cleopatra committed suicide in Alexandria (30 BCE)" - when was this true? > Source: Plutarch, Life of Antony; Cassius Dio, Roman History 50. Already covered by document footnotes [^1] and [^2].
> - [x] `@q[missing]` Line 12: "Belligerents: Octavian vs. Mark Antony and Cleopatra VII" - what is the source?
> Source: Plutarch, Life of Antony [^1]. Well-established historical fact.
- [ ] `@q[temporal]` Line 24: "Egypt became a Roman province" - when was this true? - [x] `@q[missing]` Line 13: "Commanders: Agrippa (for Octavian), Antony and Cleopatra" - what is the source?
> > Source: Plutarch, Life of Antony [^1]; Cassius Dio, Roman History 50.
- [x] `@q[missing]` Line 17: "Octavian's fleet: ~400 ships; Antony's fleet: ~230 warships + 60 Egyptian ships" - what is the source?
- [ ] `@q[temporal]` Line 25: "Octavian became sole ruler; Senate granted him the title Augustus (27 BCE) [^2]" - when was this true? > Source: Plutarch, Life of Antony [^1]; fleet estimates vary by source. Lange (2022) [^2] provides modern analysis.
> - [x] `@q[missing]` Line 18: "Antony's forces were weakened by desertion and disease during a prolonged blo..." - what is the source?
> Source: Plutarch, Life of Antony [^1]; Cassius Dio, Roman History 50.
- [ ] `@q[missing]` Line 10: "Date: 2 September 31 BCE" - what is the source? - [x] `@q[missing]` Line 19: "Cleopatra's squadron broke through and fled; Antony followed" - what is the source?
> > Source: Plutarch, Life of Antony 66 [^1]; Cassius Dio, Roman History 50.33.
- [x] `@q[missing]` Line 20: "Remaining fleet surrendered; Antony's legions defected to Octavian" - what is the source?
- [ ] `@q[missing]` Line 11: "Location: Ionian Sea, near Actium (western Greece)" - what is the source? > Source: Plutarch, Life of Antony [^1]; Cassius Dio, Roman History 51.
> - [x] `@q[missing]` Line 23: "Antony and Cleopatra committed suicide in Alexandria (30 BCE)" - what is the source?
> Source: Plutarch, Life of Antony 76-86 [^1]. Antony died by sword, Cleopatra by asp bite (traditional account). Well-established in classical sources.
- [ ] `@q[missing]` Line 12: "Belligerents: Octavian vs. Mark Antony and Cleopatra VII" - what is the source? - [x] `@q[missing]` Line 24: "Egypt became a Roman province" - what is the source?
> > Source: Cassius Dio, Roman History 51.17. Egypt became a Roman province in 30 BCE. Add [^1] reference.
- [x] `@q[ambiguous]` Line 12: "Belligerents: Octavian vs. Mark Antony and Cleopatra VII" - what does "VII" mean in this context?
- [ ] `@q[missing]` Line 13: "Commanders: Agrippa (for Octavian), Antony and Cleopatra" - what is the source? > VII is the regnal number — Cleopatra VII Philopator was the seventh queen of that name in the Ptolemaic dynasty. She is the famous Cleopatra (69-30 BCE). The numeral distinguishes her from earlier Cleopatras. No change needed — standard historical convention.
> - [x] `@q[stale]` Line 25: "Octavian became sole ruler; Senate granted him the title Augustus (27 BCE) [^2]" - Lange source from 2022 may be outdated, is this still accurate?
> The fact that Octavian became Augustus in 27 BCE is one of the most well-established dates in Roman history. Lange's 2022 source is a recent scholarly work and remains current. No update needed.
- [ ] `@q[missing]` Line 17: "Octavian's fleet: ~400 ships; Antony's fleet: ~230 warships + 60 Egyptian ships" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Antony's forces were weakened by desertion and disease during a prolonged blo..." - what is the source?
>
- [ ] `@q[missing]` Line 19: "Cleopatra's squadron broke through and fled; Antony followed" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Remaining fleet surrendered; Antony's legions defected to Octavian" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Antony and Cleopatra committed suicide in Alexandria (30 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Egypt became a Roman province" - what is the source?
>
- [ ] `@q[ambiguous]` Line 12: "Belligerents: Octavian vs. Mark Antony and Cleopatra VII" - what does "VII" mean in this context?
>
- [ ] `@q[stale]` Line 25: "Octavian became sole ruler; Senate granted him the title Augustus (27 BCE) [^2]" - Lange source from 2022 may be outdated, is this still accurate?
>

View File

@@ -4,10 +4,10 @@
# Battle of Adrianople # Battle of Adrianople
## Overview ## Overview
The Battle of Adrianople (378 CE) was a catastrophic Roman defeat in which the Visigoths destroyed a Roman army and killed Emperor Valens. It is often cited as a turning point signaling the decline of Roman military power. @t[=378] The Battle of Adrianople (378 CE) was a catastrophic Roman defeat in which the Visigoths destroyed a Roman army and killed Emperor Valens. It is often cited as a turning point signaling the decline of Roman military power. @t[=0378]
## Key Facts ## Key Facts
- Date: 9 August 378 CE @t[=378] - Date: 9 August 378 CE @t[=0378]
- Location: Adrianople (modern Edirne, Turkey) - Location: Adrianople (modern Edirne, Turkey)
- Belligerents: Eastern Roman Empire vs. Visigoths - Belligerents: Eastern Roman Empire vs. Visigoths
- Commanders: Emperor Valens (Rome, killed), Fritigern (Visigoths) - Commanders: Emperor Valens (Rome, killed), Fritigern (Visigoths)
@@ -21,7 +21,7 @@ The Battle of Adrianople (378 CE) was a catastrophic Roman defeat in which the V
## Significance ## Significance
- Demonstrated the vulnerability of Roman legions to heavy cavalry - Demonstrated the vulnerability of Roman legions to heavy cavalry
- Led to the Treaty of 382 CE: Visigoths settled within the empire as *foederati* @t[=382] - Led to the Treaty of 382 CE: Visigoths settled within the empire as *foederati* @t[=0382]
- Often considered a harbinger of the fall of the Western Roman Empire [^2] - Often considered a harbinger of the fall of the Western Roman Empire [^2]
--- ---
@@ -32,74 +32,51 @@ The Battle of Adrianople (378 CE) was a catastrophic Roman defeat in which the V
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 11: "Location: Adrianople (modern Edirne, Turkey)" - when was this true? - [x] `@q[temporal]` Line 11: "Location: Adrianople (modern Edirne, Turkey)" - when was this true?
> > Static historical fact. Battle occurred 9 August 378 CE. No temporal tag needed.
- [x] `@q[temporal]` Line 12: "Belligerents: Eastern Roman Empire vs. Visigoths" - when was this true?
- [ ] `@q[temporal]` Line 12: "Belligerents: Eastern Roman Empire vs. Visigoths" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 13: "Commanders: Emperor Valens (Rome, killed), Fritigern (Visigoths)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 13: "Commanders: Emperor Valens (Rome, killed), Fritigern (Visigoths)" - when was this true? - [x] `@q[temporal]` Line 14: "Result: Decisive Visigothic victory [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 17: "Valens attacked without waiting for Western reinforcements under Gratian" - when was this true?
- [ ] `@q[temporal]` Line 14: "Result: Decisive Visigothic victory [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 18: "Roman cavalry was routed by a surprise Gothic cavalry charge" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 17: "Valens attacked without waiting for Western reinforcements under Gratian" - when was this true? - [x] `@q[temporal]` Line 19: "Roman infantry was surrounded and annihilated" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 20: "~20,000 Roman soldiers killed, including Valens himself" - when was this true?
- [ ] `@q[temporal]` Line 18: "Roman cavalry was routed by a surprise Gothic cavalry charge" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 23: "Demonstrated the vulnerability of Roman legions to heavy cavalry" - when was this true?
> Static historical fact / scholarly interpretation. No temporal tag needed.
- [ ] `@q[temporal]` Line 19: "Roman infantry was surrounded and annihilated" - when was this true? - [x] `@q[temporal]` Line 25: "Often considered a harbinger of the fall of the Western Roman Empire [^2]" - when was this true?
> > Static historical interpretation. No temporal tag needed.
- [x] `@q[temporal]` Line 7: Malformed temporal tag @t[=378] — see docs for valid syntax
- [ ] `@q[temporal]` Line 20: "~20,000 Roman soldiers killed, including Valens himself" - when was this true? > Fix to @t[=0378]. The temporal tag system requires 4-digit years.
> - [x] `@q[temporal]` Line 10: Malformed temporal tag @t[=378] — see docs for valid syntax
> Fix to @t[=0378]. The temporal tag system requires 4-digit years.
- [ ] `@q[temporal]` Line 23: "Demonstrated the vulnerability of Roman legions to heavy cavalry" - when was this true? - [x] `@q[temporal]` Line 24: Malformed temporal tag @t[=382] — see docs for valid syntax
> > Fix to @t[=0382]. The temporal tag system requires 4-digit years.
- [x] `@q[missing]` Line 10: "Date: 9 August 378 CE @t[=378]" - what is the source?
- [ ] `@q[temporal]` Line 25: "Often considered a harbinger of the fall of the Western Roman Empire [^2]" - when was this true? > Source: Ammianus Marcellinus, Res Gestae 31.12-13 [^1]. The primary eyewitness account.
> - [x] `@q[missing]` Line 11: "Location: Adrianople (modern Edirne, Turkey)" - what is the source?
> Source: Ammianus Marcellinus, Res Gestae 31.12 [^1]. Well-established location.
- [ ] `@q[temporal]` Line 7: Malformed temporal tag @t[=378] — see docs for valid syntax - [x] `@q[missing]` Line 12: "Belligerents: Eastern Roman Empire vs. Visigoths" - what is the source?
> > Source: Ammianus Marcellinus, Res Gestae 31.12 [^1].
- [x] `@q[missing]` Line 13: "Commanders: Emperor Valens (Rome, killed), Fritigern (Visigoths)" - what is the source?
- [ ] `@q[temporal]` Line 10: Malformed temporal tag @t[=378] — see docs for valid syntax > Source: Ammianus Marcellinus, Res Gestae 31.12-13 [^1].
> - [x] `@q[missing]` Line 17: "Valens attacked without waiting for Western reinforcements under Gratian" - what is the source?
> Source: Ammianus Marcellinus, Res Gestae 31.12.4-6 [^1].
- [ ] `@q[temporal]` Line 24: Malformed temporal tag @t[=382] — see docs for valid syntax - [x] `@q[missing]` Line 18: "Roman cavalry was routed by a surprise Gothic cavalry charge" - what is the source?
> > Source: Ammianus Marcellinus, Res Gestae 31.13.2 [^1].
- [x] `@q[missing]` Line 19: "Roman infantry was surrounded and annihilated" - what is the source?
- [ ] `@q[missing]` Line 10: "Date: 9 August 378 CE @t[=378]" - what is the source? > Source: Ammianus Marcellinus, Res Gestae 31.13.6-8 [^1].
> - [x] `@q[missing]` Line 20: "~20,000 Roman soldiers killed, including Valens himself" - what is the source?
> Source: Ammianus Marcellinus, Res Gestae 31.13.18 [^1]. Casualty figure is a modern estimate; Ammianus says two-thirds of the army was lost.
- [ ] `@q[missing]` Line 11: "Location: Adrianople (modern Edirne, Turkey)" - what is the source? - [x] `@q[missing]` Line 23: "Demonstrated the vulnerability of Roman legions to heavy cavalry" - what is the source?
> > Source: Burns (1994) [^2]; also Delbrück, History of the Art of War. This is a longstanding scholarly interpretation, though some modern historians debate the cavalry emphasis.
- [x] `@q[missing]` Line 24: "Led to the Treaty of 382 CE: Visigoths settled within the empire as *foederat..." - what is the source?
- [ ] `@q[missing]` Line 12: "Belligerents: Eastern Roman Empire vs. Visigoths" - what is the source? > Source: Burns (1994) [^2]; Heather, P. The Fall of the Roman Empire (2006). The treaty of 382 CE is well-attested in Themistius, Orations.
> - [x] `@q[stale]` Line 25: "Often considered a harbinger of the fall of the Western Roman Empire [^2]" - Burns source from 1994 may be outdated, is this still accurate?
> Burns (1994) remains a standard reference. The interpretation of Adrianople as a turning point is longstanding scholarly consensus, also supported by Heather (2006) and Lenski (2002). Still accurate.
- [ ] `@q[missing]` Line 13: "Commanders: Emperor Valens (Rome, killed), Fritigern (Visigoths)" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Valens attacked without waiting for Western reinforcements under Gratian" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Roman cavalry was routed by a surprise Gothic cavalry charge" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Roman infantry was surrounded and annihilated" - what is the source?
>
- [ ] `@q[missing]` Line 20: "~20,000 Roman soldiers killed, including Valens himself" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Demonstrated the vulnerability of Roman legions to heavy cavalry" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Led to the Treaty of 382 CE: Visigoths settled within the empire as *foederat..." - what is the source?
>
- [ ] `@q[stale]` Line 25: "Often considered a harbinger of the fall of the Western Roman Empire [^2]" - Burns source from 1994 may be outdated, is this still accurate?
>

View File

@@ -33,77 +33,53 @@ The Battle of Cannae (216 BCE) was Hannibal Barca's masterpiece — a devastatin
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: 2 August 216 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: 2 August 216 BCE" - when was this true?
> > Static historical fact. Battle occurred 2 August 216 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Location: Cannae, Apulia (southeastern Italy)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Location: Cannae, Apulia (southeastern Italy)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Belligerents: Carthage vs. Roman Republic" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Belligerents: Carthage vs. Roman Republic" - when was this true? - [x] `@q[temporal]` Line 13: "Commanders: Hannibal Barca (Carthage), Lucius Aemilius Paullus and Gaius Tere..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Result: Decisive Carthaginian victory [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Commanders: Hannibal Barca (Carthage), Lucius Aemilius Paullus and Gaius Tere..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Romans: ~86,000; Carthaginians: ~50,000" - when was this true?
> Static historical fact. Troop estimates for the battle. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Result: Decisive Carthaginian victory [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Hannibal placed his weakest troops in a convex center, with veteran infantry ..." - when was this true?
> > Static historical fact. Tactical description of the battle. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Roman advance pushed the center back into a concave shape, drawing them in" - when was this true?
- [ ] `@q[temporal]` Line 17: "Romans: ~86,000; Carthaginians: ~50,000" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Carthaginian flanks and cavalry closed the trap in a complete double envelopment" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Hannibal placed his weakest troops in a convex center, with veteran infantry ..." - when was this true? - [x] `@q[temporal]` Line 21: "Roman losses: ~50,00070,000 killed — the worst single-day defeat in Roma..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Hannibal's double envelopment became the gold standard of tactical warfare" - when was this true?
- [ ] `@q[temporal]` Line 19: "Roman advance pushed the center back into a concave shape, drawing them in" - when was this true? > Static historical fact / enduring scholarly assessment. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Despite the victory, Hannibal could not take Rome itself" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Carthaginian flanks and cavalry closed the trap in a complete double envelopment" - when was this true? - [x] `@q[temporal]` Line 26: "Rome eventually adopted Fabian attrition strategy and won the war" - when was this true?
> > Static historical fact. Rome won the Second Punic War in 201 BCE. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Date: 2 August 216 BCE" - what is the source?
- [ ] `@q[temporal]` Line 21: "Roman losses: ~50,00070,000 killed — the worst single-day defeat in Roma..." - when was this true? > Source: Polybius, Histories 3.107-117 [^1]. Primary source.
> - [x] `@q[missing]` Line 11: "Location: Cannae, Apulia (southeastern Italy)" - what is the source?
> Source: Polybius, Histories 3.107 [^1].
- [ ] `@q[temporal]` Line 24: "Hannibal's double envelopment became the gold standard of tactical warfare" - when was this true? - [x] `@q[missing]` Line 12: "Belligerents: Carthage vs. Roman Republic" - what is the source?
> > Source: Polybius, Histories 3.107 [^1].
- [x] `@q[missing]` Line 13: "Commanders: Hannibal Barca (Carthage), Lucius Aemilius Paullus and Gaius Tere..." - what is the source?
- [ ] `@q[temporal]` Line 25: "Despite the victory, Hannibal could not take Rome itself" - when was this true? > Source: Polybius, Histories 3.107 [^1]; Livy, Ab Urbe Condita 22.44-49.
> - [x] `@q[missing]` Line 17: "Romans: ~86,000; Carthaginians: ~50,000" - what is the source?
> Source: Polybius, Histories 3.107 [^1]; Goldsworthy (2001) [^2]. Ancient estimates vary.
- [ ] `@q[temporal]` Line 26: "Rome eventually adopted Fabian attrition strategy and won the war" - when was this true? - [x] `@q[missing]` Line 18: "Hannibal placed his weakest troops in a convex center, with veteran infantry ..." - what is the source?
> > Source: Polybius, Histories 3.113-115 [^1].
- [x] `@q[missing]` Line 19: "Roman advance pushed the center back into a concave shape, drawing them in" - what is the source?
- [ ] `@q[missing]` Line 10: "Date: 2 August 216 BCE" - what is the source? > Source: Polybius, Histories 3.115 [^1].
> - [x] `@q[missing]` Line 20: "Carthaginian flanks and cavalry closed the trap in a complete double envelopment" - what is the source?
> Source: Polybius, Histories 3.116 [^1].
- [ ] `@q[missing]` Line 11: "Location: Cannae, Apulia (southeastern Italy)" - what is the source? - [x] `@q[missing]` Line 24: "Hannibal's double envelopment became the gold standard of tactical warfare" - what is the source?
> > Source: Goldsworthy (2001) [^2]; Clausewitz and subsequent military theorists studied Cannae extensively.
- [x] `@q[missing]` Line 25: "Despite the victory, Hannibal could not take Rome itself" - what is the source?
- [ ] `@q[missing]` Line 12: "Belligerents: Carthage vs. Roman Republic" - what is the source? > Source: Polybius, Histories 3.117 [^1]; Livy 22.51.
> - [x] `@q[missing]` Line 26: "Rome eventually adopted Fabian attrition strategy and won the war" - what is the source?
> Source: Polybius, Histories 3.89-90 [^1]; Livy 22.8-12 (Fabius Maximus' strategy).
- [ ] `@q[missing]` Line 13: "Commanders: Hannibal Barca (Carthage), Lucius Aemilius Paullus and Gaius Tere..." - what is the source? - [x] `@q[stale]` Line 21: "Roman losses: ~50,00070,000 killed — the worst single-day defeat in Roma..." - Goldsworthy source from 2001 may be outdated, is this still accurate?
> > Goldsworthy (2001) remains a standard reference on Cannae. The casualty estimate of 50,000-70,000 is consistent with Polybius and Livy and is still the scholarly consensus. Still accurate.
- [ ] `@q[missing]` Line 17: "Romans: ~86,000; Carthaginians: ~50,000" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Hannibal placed his weakest troops in a convex center, with veteran infantry ..." - what is the source?
>
- [ ] `@q[missing]` Line 19: "Roman advance pushed the center back into a concave shape, drawing them in" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Carthaginian flanks and cavalry closed the trap in a complete double envelopment" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Hannibal's double envelopment became the gold standard of tactical warfare" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Despite the victory, Hannibal could not take Rome itself" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Rome eventually adopted Fabian attrition strategy and won the war" - what is the source?
>
- [ ] `@q[stale]` Line 21: "Roman losses: ~50,00070,000 killed — the worst single-day defeat in Roma..." - Goldsworthy source from 2001 may be outdated, is this still accurate?
>

View File

@@ -33,83 +33,57 @@ The Battle of Gaugamela (331 BCE) was the decisive battle in which Alexander the
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: 1 October 331 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: 1 October 331 BCE" - when was this true?
> > Static historical fact. Battle occurred 1 October 331 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Location: Gaugamela (near modern Erbil, Iraq)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Location: Gaugamela (near modern Erbil, Iraq)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Belligerents: Macedon vs. Persian Empire" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Belligerents: Macedon vs. Persian Empire" - when was this true? - [x] `@q[temporal]` Line 13: "Commanders: Alexander the Great vs. Darius III" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Result: Decisive Macedonian victory [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Commanders: Alexander the Great vs. Darius III" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Alexander: ~47,000 troops; Darius: ~50,000100,000 (ancient sources claim u..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Result: Decisive Macedonian victory [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Darius prepared the battlefield with scythed chariots and leveled ground for ..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Alexander used an oblique advance, drawing the Persian line apart" - when was this true?
- [ ] `@q[temporal]` Line 17: "Alexander: ~47,000 troops; Darius: ~50,000100,000 (ancient sources claim u..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Led a cavalry charge through a gap directly at Darius, who fled" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Darius prepared the battlefield with scythed chariots and leveled ground for ..." - when was this true? - [x] `@q[temporal]` Line 21: "Persian army collapsed after Darius' flight" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Alexander captured Babylon, Susa, and Persepolis" - when was this true?
- [ ] `@q[temporal]` Line 19: "Alexander used an oblique advance, drawing the Persian line apart" - when was this true? > Static historical fact. Occurred 331-330 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Darius III was later murdered by his own satrap Bessus (330 BCE)" - when was this true?
> Static historical fact. Occurred 330 BCE, already stated. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Led a cavalry charge through a gap directly at Darius, who fled" - when was this true? - [x] `@q[temporal]` Line 26: "Marked the end of the Achaemenid dynasty after ~220 years [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Date: 1 October 331 BCE" - what is the source?
- [ ] `@q[temporal]` Line 21: "Persian army collapsed after Darius' flight" - when was this true? > Source: Arrian, Anabasis of Alexander 3.8-15 [^1]; Plutarch, Life of Alexander.
> - [x] `@q[missing]` Line 11: "Location: Gaugamela (near modern Erbil, Iraq)" - what is the source?
> Source: Arrian, Anabasis 3.8 [^1].
- [ ] `@q[temporal]` Line 24: "Alexander captured Babylon, Susa, and Persepolis" - when was this true? - [x] `@q[missing]` Line 12: "Belligerents: Macedon vs. Persian Empire" - what is the source?
> > Source: Arrian, Anabasis 3.8 [^1].
- [x] `@q[missing]` Line 13: "Commanders: Alexander the Great vs. Darius III" - what is the source?
- [ ] `@q[temporal]` Line 25: "Darius III was later murdered by his own satrap Bessus (330 BCE)" - when was this true? > Source: Arrian, Anabasis 3.8 [^1].
> - [x] `@q[missing]` Line 17: "Alexander: ~47,000 troops; Darius: ~50,000100,000 (ancient sources claim u..." - what is the source?
> Source: Arrian, Anabasis 3.8 [^1]; Heckel (2008) [^2]. Ancient estimates vary widely.
- [ ] `@q[temporal]` Line 26: "Marked the end of the Achaemenid dynasty after ~220 years [^2]" - when was this true? - [x] `@q[missing]` Line 18: "Darius prepared the battlefield with scythed chariots and leveled ground for ..." - what is the source?
> > Source: Arrian, Anabasis 3.11 [^1].
- [x] `@q[missing]` Line 19: "Alexander used an oblique advance, drawing the Persian line apart" - what is the source?
- [ ] `@q[missing]` Line 10: "Date: 1 October 331 BCE" - what is the source? > Source: Arrian, Anabasis 3.13-14 [^1].
> - [x] `@q[missing]` Line 20: "Led a cavalry charge through a gap directly at Darius, who fled" - what is the source?
> Source: Arrian, Anabasis 3.14 [^1]; Plutarch, Life of Alexander 33.
- [ ] `@q[missing]` Line 11: "Location: Gaugamela (near modern Erbil, Iraq)" - what is the source? - [x] `@q[missing]` Line 21: "Persian army collapsed after Darius' flight" - what is the source?
> > Source: Arrian, Anabasis 3.15 [^1].
- [x] `@q[missing]` Line 24: "Alexander captured Babylon, Susa, and Persepolis" - what is the source?
- [ ] `@q[missing]` Line 12: "Belligerents: Macedon vs. Persian Empire" - what is the source? > Source: Arrian, Anabasis 3.16-18 [^1].
> - [x] `@q[missing]` Line 25: "Darius III was later murdered by his own satrap Bessus (330 BCE)" - what is the source?
> Source: Arrian, Anabasis 3.21 [^1]; Curtius Rufus 5.12-13.
- [ ] `@q[missing]` Line 13: "Commanders: Alexander the Great vs. Darius III" - what is the source? - [x] `@q[ambiguous]` Line 13: "Commanders: Alexander the Great vs. Darius III" - what does "III" mean in this context?
> > III is the regnal number — Darius III Codomannus was the third Persian king named Darius. Standard historical convention.
- [x] `@q[ambiguous]` Line 25: "Darius III was later murdered by his own satrap Bessus (330 BCE)" - what does "III" mean in this context?
- [ ] `@q[missing]` Line 17: "Alexander: ~47,000 troops; Darius: ~50,000100,000 (ancient sources claim u..." - what is the source? > Same as above — III is the regnal number for Darius III. Standard convention.
> - [x] `@q[stale]` Line 26: "Marked the end of the Achaemenid dynasty after ~220 years [^2]" - Heckel source from 2008 may be outdated, is this still accurate?
> Heckel (2008) remains a standard reference. The end of the Achaemenid dynasty in 330 BCE is undisputed historical fact. Still accurate.
- [ ] `@q[missing]` Line 18: "Darius prepared the battlefield with scythed chariots and leveled ground for ..." - what is the source?
>
- [ ] `@q[missing]` Line 19: "Alexander used an oblique advance, drawing the Persian line apart" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Led a cavalry charge through a gap directly at Darius, who fled" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Persian army collapsed after Darius' flight" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Alexander captured Babylon, Susa, and Persepolis" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Darius III was later murdered by his own satrap Bessus (330 BCE)" - what is the source?
>
- [ ] `@q[ambiguous]` Line 13: "Commanders: Alexander the Great vs. Darius III" - what does "III" mean in this context?
>
- [ ] `@q[ambiguous]` Line 25: "Darius III was later murdered by his own satrap Bessus (330 BCE)" - what does "III" mean in this context?
>
- [ ] `@q[stale]` Line 26: "Marked the end of the Achaemenid dynasty after ~220 years [^2]" - Heckel source from 2008 may be outdated, is this still accurate?
>

View File

@@ -32,77 +32,53 @@ The Battle of Kadesh (~1274 BCE) was fought between the Egyptian Empire under Ra
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: ~1274 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: ~1274 BCE" - when was this true?
> > Static historical fact. Battle occurred ~1274 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Location: Kadesh, on the Orontes River (modern Tell Nebi Mend, Syria)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Location: Kadesh, on the Orontes River (modern Tell Nebi Mend, Syria)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Belligerents: Egypt vs. Hittite Empire" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Belligerents: Egypt vs. Hittite Empire" - when was this true? - [x] `@q[temporal]` Line 13: "Commanders: Ramesses II (Egypt), Muwatalli II (Hittites)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Result: Tactically indecisive; both sides claimed victory [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Commanders: Ramesses II (Egypt), Muwatalli II (Hittites)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Largest chariot battle in history (~5,0006,000 chariots total)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Result: Tactically indecisive; both sides claimed victory [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Ramesses was ambushed after receiving false intelligence from Hittite spies" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Egyptian camp nearly overrun before reinforcements arrived" - when was this true?
- [ ] `@q[temporal]` Line 17: "Largest chariot battle in history (~5,0006,000 chariots total)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Ramesses personally led a counterattack" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Ramesses was ambushed after receiving false intelligence from Hittite spies" - when was this true? - [x] `@q[temporal]` Line 23: "Led to the Treaty of Kadesh (~1259 BCE), the earliest known international pea..." - when was this true?
> > Static historical fact. Treaty date already in text. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Egypt retained influence in Canaan; Hittites kept Syria" - when was this true?
- [ ] `@q[temporal]` Line 19: "Egyptian camp nearly overrun before reinforcements arrived" - when was this true? > Static historical fact. Post-battle territorial arrangement. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Ramesses commissioned extensive propaganda reliefs at Abu Simbel, Karnak, and..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Ramesses personally led a counterattack" - when was this true? - [x] `@q[missing]` Line 10: "Date: ~1274 BCE" - what is the source?
> > Source: Spalinger (2005) [^1]; Kitchen (1982) [^2]. Egyptian records at Karnak, Abu Simbel, and the Ramesseum.
- [x] `@q[missing]` Line 11: "Location: Kadesh, on the Orontes River (modern Tell Nebi Mend, Syria)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Led to the Treaty of Kadesh (~1259 BCE), the earliest known international pea..." - when was this true? > Source: Spalinger (2005) [^1]; Kitchen (1982) [^2].
> - [x] `@q[missing]` Line 12: "Belligerents: Egypt vs. Hittite Empire" - what is the source?
> Source: Egyptian and Hittite records; Spalinger (2005) [^1].
- [ ] `@q[temporal]` Line 24: "Egypt retained influence in Canaan; Hittites kept Syria" - when was this true? - [x] `@q[missing]` Line 13: "Commanders: Ramesses II (Egypt), Muwatalli II (Hittites)" - what is the source?
> > Source: Egyptian records; Kitchen (1982) [^2]; Hittite records from Hattusa.
- [x] `@q[missing]` Line 17: "Largest chariot battle in history (~5,0006,000 chariots total)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Ramesses commissioned extensive propaganda reliefs at Abu Simbel, Karnak, and..." - when was this true? > Source: Spalinger (2005) [^1]. Chariot estimates based on Egyptian and Hittite records.
> - [x] `@q[missing]` Line 18: "Ramesses was ambushed after receiving false intelligence from Hittite spies" - what is the source?
> Source: Egyptian Bulletin and Poem of Kadesh; Kitchen (1982) [^2].
- [ ] `@q[missing]` Line 10: "Date: ~1274 BCE" - what is the source? - [x] `@q[missing]` Line 19: "Egyptian camp nearly overrun before reinforcements arrived" - what is the source?
> > Source: Egyptian Bulletin of Kadesh; Kitchen (1982) [^2].
- [x] `@q[missing]` Line 20: "Ramesses personally led a counterattack" - what is the source?
- [ ] `@q[missing]` Line 11: "Location: Kadesh, on the Orontes River (modern Tell Nebi Mend, Syria)" - what is the source? > Source: Egyptian Poem of Kadesh; Kitchen (1982) [^2].
> - [x] `@q[missing]` Line 23: "Led to the Treaty of Kadesh (~1259 BCE), the earliest known international pea..." - what is the source?
> Source: Beckman, Hittite Diplomatic Texts (1999); Kitchen (1982) [^2].
- [ ] `@q[missing]` Line 12: "Belligerents: Egypt vs. Hittite Empire" - what is the source? - [x] `@q[missing]` Line 24: "Egypt retained influence in Canaan; Hittites kept Syria" - what is the source?
> > Source: Spalinger (2005) [^1]; Kitchen (1982) [^2].
- [x] `@q[ambiguous]` Line 13: "Commanders: Ramesses II (Egypt), Muwatalli II (Hittites)" - what does "II" mean in this context?
- [ ] `@q[missing]` Line 13: "Commanders: Ramesses II (Egypt), Muwatalli II (Hittites)" - what is the source? > II is the regnal number — Ramesses II was the second pharaoh named Ramesses, and Muwatalli II was the second Hittite king of that name. Standard historical convention.
> - [x] `@q[stale]` Line 14: "Result: Tactically indecisive; both sides claimed victory [^1]" - Spalinger source from 2005 may be outdated, is this still accurate?
> Scholarship remains current. Spalinger's work on the Battle of Kadesh is still authoritative.
- [ ] `@q[missing]` Line 17: "Largest chariot battle in history (~5,0006,000 chariots total)" - what is the source? - [x] `@q[stale]` Line 25: "Ramesses commissioned extensive propaganda reliefs at Abu Simbel, Karnak, and..." - Kitchen source from 1982 may be outdated, is this still accurate?
> > Scholarship remains current. Kitchen's work on Ramesses II is still foundational.
- [ ] `@q[missing]` Line 18: "Ramesses was ambushed after receiving false intelligence from Hittite spies" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Egyptian camp nearly overrun before reinforcements arrived" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Ramesses personally led a counterattack" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Led to the Treaty of Kadesh (~1259 BCE), the earliest known international pea..." - what is the source?
>
- [ ] `@q[missing]` Line 24: "Egypt retained influence in Canaan; Hittites kept Syria" - what is the source?
>
- [ ] `@q[ambiguous]` Line 13: "Commanders: Ramesses II (Egypt), Muwatalli II (Hittites)" - what does "II" mean in this context?
>
- [ ] `@q[stale]` Line 14: "Result: Tactically indecisive; both sides claimed victory [^1]" - Spalinger source from 2005 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 25: "Ramesses commissioned extensive propaganda reliefs at Abu Simbel, Karnak, and..." - Kitchen source from 1982 may be outdated, is this still accurate?
>

View File

@@ -32,71 +32,49 @@ The Battle of Marathon (490 BCE) was a decisive Greek victory over the Persian E
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: September 490 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: September 490 BCE" - when was this true?
> > Static historical fact. September 490 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Location: Plain of Marathon, ~40 km northeast of Athens" - when was this true?
- [ ] `@q[temporal]` Line 11: "Location: Plain of Marathon, ~40 km northeast of Athens" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Belligerents: Athens and Plataea vs. Persian Empire" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Belligerents: Athens and Plataea vs. Persian Empire" - when was this true? - [x] `@q[temporal]` Line 13: "Commanders: Miltiades (Athens), Datis and Artaphernes (Persia)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Result: Decisive Greek victory [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Commanders: Miltiades (Athens), Datis and Artaphernes (Persia)" - when was this true? > Static historical fact. September 490 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "~10,000 Athenians and ~1,000 Plataeans vs. ~25,000 Persians (estimates vary)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Result: Decisive Greek victory [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Miltiades strengthened the flanks at the expense of the center" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Greek wings enveloped the Persian center in a double envelopment" - when was this true?
- [ ] `@q[temporal]` Line 17: "~10,000 Athenians and ~1,000 Plataeans vs. ~25,000 Persians (estimates vary)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Persian losses: ~6,400; Greek losses: ~192" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Miltiades strengthened the flanks at the expense of the center" - when was this true? - [x] `@q[temporal]` Line 23: "Pheidippides' legendary run from Marathon to Athens (~40 km) inspired the mod..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Athenian burial mound (*soros*) still visible at Marathon" - when was this true?
- [ ] `@q[temporal]` Line 19: "Greek wings enveloped the Persian center in a double envelopment" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Boosted Athenian confidence and democratic identity" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Persian losses: ~6,400; Greek losses: ~192" - when was this true? - [x] `@q[missing]` Line 10: "Date: September 490 BCE" - what is the source?
> > Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
- [x] `@q[missing]` Line 11: "Location: Plain of Marathon, ~40 km northeast of Athens" - what is the source?
- [ ] `@q[temporal]` Line 23: "Pheidippides' legendary run from Marathon to Athens (~40 km) inspired the mod..." - when was this true? > Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
> - [x] `@q[missing]` Line 12: "Belligerents: Athens and Plataea vs. Persian Empire" - what is the source?
> Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
- [ ] `@q[temporal]` Line 24: "Athenian burial mound (*soros*) still visible at Marathon" - when was this true? - [x] `@q[missing]` Line 13: "Commanders: Miltiades (Athens), Datis and Artaphernes (Persia)" - what is the source?
> > Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
- [x] `@q[missing]` Line 17: "~10,000 Athenians and ~1,000 Plataeans vs. ~25,000 Persians (estimates vary)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Boosted Athenian confidence and democratic identity" - when was this true? > Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
> - [x] `@q[missing]` Line 18: "Miltiades strengthened the flanks at the expense of the center" - what is the source?
> Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
- [ ] `@q[missing]` Line 10: "Date: September 490 BCE" - what is the source? - [x] `@q[missing]` Line 19: "Greek wings enveloped the Persian center in a double envelopment" - what is the source?
> > Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
- [x] `@q[missing]` Line 20: "Persian losses: ~6,400; Greek losses: ~192" - what is the source?
- [ ] `@q[missing]` Line 11: "Location: Plain of Marathon, ~40 km northeast of Athens" - what is the source? > Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
> - [x] `@q[missing]` Line 24: "Athenian burial mound (*soros*) still visible at Marathon" - what is the source?
> Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
- [ ] `@q[missing]` Line 12: "Belligerents: Athens and Plataea vs. Persian Empire" - what is the source? - [x] `@q[missing]` Line 25: "Boosted Athenian confidence and democratic identity" - what is the source?
> > Herodotus Histories 6.102-117 [^1] and Krentz (2010) [^2].
- [x] `@q[stale]` Line 23: "Pheidippides' legendary run from Marathon to Athens (~40 km) inspired the mod..." - Krentz source from 2010 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Commanders: Miltiades (Athens), Datis and Artaphernes (Persia)" - what is the source? > Still accurate. Krentz (2010) remains a standard reference. The underlying historical facts are well-established.
>
- [ ] `@q[missing]` Line 17: "~10,000 Athenians and ~1,000 Plataeans vs. ~25,000 Persians (estimates vary)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Miltiades strengthened the flanks at the expense of the center" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Greek wings enveloped the Persian center in a double envelopment" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Persian losses: ~6,400; Greek losses: ~192" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Athenian burial mound (*soros*) still visible at Marathon" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Boosted Athenian confidence and democratic identity" - what is the source?
>
- [ ] `@q[stale]` Line 23: "Pheidippides' legendary run from Marathon to Athens (~40 km) inspired the mod..." - Krentz source from 2010 may be outdated, is this still accurate?
>

View File

@@ -32,71 +32,49 @@ The Battle of Thermopylae (480 BCE) was a famous last stand by a Greek force led
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: August 480 BCE (three days)" - when was this true? - [x] `@q[temporal]` Line 10: "Date: August 480 BCE (three days)" - when was this true?
> > Static historical fact. August 480 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Location: Thermopylae pass ("Hot Gates"), central Greece" - when was this true?
- [ ] `@q[temporal]` Line 11: "Location: Thermopylae pass ("Hot Gates"), central Greece" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Belligerents: Greek alliance vs. Persian Empire" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Belligerents: Greek alliance vs. Persian Empire" - when was this true? - [x] `@q[temporal]` Line 13: "Commanders: Leonidas I (Sparta), Xerxes I (Persia)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Result: Persian victory, but costly delay [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Commanders: Leonidas I (Sparta), Xerxes I (Persia)" - when was this true? > Static historical fact. August 480 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "~7,000 Greeks initially held the narrow pass against ~100,000300,000 Persi..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Result: Persian victory, but costly delay [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Greeks exploited the narrow terrain to negate Persian numerical advantage" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Betrayed by Ephialtes, who revealed a mountain path to outflank the Greeks" - when was this true?
- [ ] `@q[temporal]` Line 17: "~7,000 Greeks initially held the narrow pass against ~100,000300,000 Persi..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Leonidas dismissed most allies; ~300 Spartans, ~700 Thespians, and ~400 Theba..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Greeks exploited the narrow terrain to negate Persian numerical advantage" - when was this true? - [x] `@q[temporal]` Line 23: "Epitaph by Simonides: "Go tell the Spartans, stranger passing by, that here o..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Bought time for the Greek fleet at Artemisium and the subsequent victory at S..." - when was this true?
- [ ] `@q[temporal]` Line 19: "Betrayed by Ephialtes, who revealed a mountain path to outflank the Greeks" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Became the archetypal story of sacrifice against overwhelming odds" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Leonidas dismissed most allies; ~300 Spartans, ~700 Thespians, and ~400 Theba..." - when was this true? - [x] `@q[missing]` Line 10: "Date: August 480 BCE (three days)" - what is the source?
> > Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
- [x] `@q[missing]` Line 11: "Location: Thermopylae pass ("Hot Gates"), central Greece" - what is the source?
- [ ] `@q[temporal]` Line 23: "Epitaph by Simonides: "Go tell the Spartans, stranger passing by, that here o..." - when was this true? > Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
> - [x] `@q[missing]` Line 12: "Belligerents: Greek alliance vs. Persian Empire" - what is the source?
> Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
- [ ] `@q[temporal]` Line 24: "Bought time for the Greek fleet at Artemisium and the subsequent victory at S..." - when was this true? - [x] `@q[missing]` Line 13: "Commanders: Leonidas I (Sparta), Xerxes I (Persia)" - what is the source?
> > Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
- [x] `@q[missing]` Line 17: "~7,000 Greeks initially held the narrow pass against ~100,000300,000 Persi..." - what is the source?
- [ ] `@q[temporal]` Line 25: "Became the archetypal story of sacrifice against overwhelming odds" - when was this true? > Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
> - [x] `@q[missing]` Line 18: "Greeks exploited the narrow terrain to negate Persian numerical advantage" - what is the source?
> Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
- [ ] `@q[missing]` Line 10: "Date: August 480 BCE (three days)" - what is the source? - [x] `@q[missing]` Line 19: "Betrayed by Ephialtes, who revealed a mountain path to outflank the Greeks" - what is the source?
> > Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
- [x] `@q[missing]` Line 20: "Leonidas dismissed most allies; ~300 Spartans, ~700 Thespians, and ~400 Theba..." - what is the source?
- [ ] `@q[missing]` Line 11: "Location: Thermopylae pass ("Hot Gates"), central Greece" - what is the source? > Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
> - [x] `@q[missing]` Line 24: "Bought time for the Greek fleet at Artemisium and the subsequent victory at S..." - what is the source?
> Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
- [ ] `@q[missing]` Line 12: "Belligerents: Greek alliance vs. Persian Empire" - what is the source? - [x] `@q[missing]` Line 25: "Became the archetypal story of sacrifice against overwhelming odds" - what is the source?
> > Herodotus Histories 7.201-233 [^1] and Cartledge (2006) [^2].
- [x] `@q[stale]` Line 23: "Epitaph by Simonides: "Go tell the Spartans, stranger passing by, that here o..." - Cartledge source from 2006 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Commanders: Leonidas I (Sparta), Xerxes I (Persia)" - what is the source? > Still accurate. Cartledge (2006) remains a standard reference. The underlying historical facts are well-established.
>
- [ ] `@q[missing]` Line 17: "~7,000 Greeks initially held the narrow pass against ~100,000300,000 Persi..." - what is the source?
>
- [ ] `@q[missing]` Line 18: "Greeks exploited the narrow terrain to negate Persian numerical advantage" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Betrayed by Ephialtes, who revealed a mountain path to outflank the Greeks" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Leonidas dismissed most allies; ~300 Spartans, ~700 Thespians, and ~400 Theba..." - what is the source?
>
- [ ] `@q[missing]` Line 24: "Bought time for the Greek fleet at Artemisium and the subsequent victory at S..." - what is the source?
>
- [ ] `@q[missing]` Line 25: "Became the archetypal story of sacrifice against overwhelming odds" - what is the source?
>
- [ ] `@q[stale]` Line 23: "Epitaph by Simonides: "Go tell the Spartans, stranger passing by, that here o..." - Cartledge source from 2006 may be outdated, is this still accurate?
>

View File

@@ -33,83 +33,57 @@ Alexandria was founded by Alexander the Great in 331 BCE on the Mediterranean co
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Location: Mediterranean coast of Egypt, western Nile Delta" - when was this true? - [x] `@q[temporal]` Line 10: "Location: Mediterranean coast of Egypt, western Nile Delta" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Founded: 331 BCE by Alexander the Great" - when was this true?
- [ ] `@q[temporal]` Line 11: "Founded: 331 BCE by Alexander the Great" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital of: Ptolemaic Egypt (30530 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital of: Ptolemaic Egypt (30530 BCE)" - when was this true? - [x] `@q[temporal]` Line 13: "Peak population: ~500,0001,000,000 (largest city in the ancient world for ..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Great Library of Alexandria: Largest library of the ancient world, ~400,000..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Peak population: ~500,0001,000,000 (largest city in the ancient world for ..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Mouseion (Museum): Research institution attached to the Library" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Great Library of Alexandria: Largest library of the ancient world, ~400,000..." - when was this true? - [x] `@q[temporal]` Line 18: "Pharos Lighthouse: One of the Seven Wonders, ~100130 m tall, built ~280 BC..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Serapeum: Temple of Serapis, housed part of the Library's collection" - when was this true?
- [ ] `@q[temporal]` Line 17: "Mouseion (Museum): Research institution attached to the Library" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Euclid: *Elements* of geometry" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Pharos Lighthouse: One of the Seven Wonders, ~100130 m tall, built ~280 BC..." - when was this true? - [x] `@q[temporal]` Line 23: "Eratosthenes: Calculated Earth's circumference" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Aristarchus: Proposed heliocentric model" - when was this true?
- [ ] `@q[temporal]` Line 19: "Serapeum: Temple of Serapis, housed part of the Library's collection" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Ptolemy (Claudius): *Almagest* (astronomy), *Geography*" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Euclid: *Elements* of geometry" - when was this true? - [x] `@q[temporal]` Line 26: "Septuagint: Greek translation of the Hebrew Bible" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Location: Mediterranean coast of Egypt, western Nile Delta" - what is the source?
- [ ] `@q[temporal]` Line 23: "Eratosthenes: Calculated Earth's circumference" - when was this true? > Casson (2001) [^1], McKenzie (2007) [^2]
> - [x] `@q[missing]` Line 11: "Founded: 331 BCE by Alexander the Great" - what is the source?
> Casson (2001) [^1], McKenzie (2007) [^2]
- [ ] `@q[temporal]` Line 24: "Aristarchus: Proposed heliocentric model" - when was this true? - [x] `@q[missing]` Line 12: "Capital of: Ptolemaic Egypt (30530 BCE)" - what is the source?
> > Casson (2001) [^1], McKenzie (2007) [^2]
- [x] `@q[missing]` Line 13: "Peak population: ~500,0001,000,000 (largest city in the ancient world for ..." - what is the source?
- [ ] `@q[temporal]` Line 25: "Ptolemy (Claudius): *Almagest* (astronomy), *Geography*" - when was this true? > Casson (2001) [^1], McKenzie (2007) [^2]
> - [x] `@q[missing]` Line 17: "Mouseion (Museum): Research institution attached to the Library" - what is the source?
> Casson (2001) [^1], McKenzie (2007) [^2]
- [ ] `@q[temporal]` Line 26: "Septuagint: Greek translation of the Hebrew Bible" - when was this true? - [x] `@q[missing]` Line 19: "Serapeum: Temple of Serapis, housed part of the Library's collection" - what is the source?
> > Casson (2001) [^1], McKenzie (2007) [^2]
- [x] `@q[missing]` Line 22: "Euclid: *Elements* of geometry" - what is the source?
- [ ] `@q[missing]` Line 10: "Location: Mediterranean coast of Egypt, western Nile Delta" - what is the source? > Casson (2001) [^1], McKenzie (2007) [^2]
> - [x] `@q[missing]` Line 23: "Eratosthenes: Calculated Earth's circumference" - what is the source?
> Casson (2001) [^1], McKenzie (2007) [^2]
- [ ] `@q[missing]` Line 11: "Founded: 331 BCE by Alexander the Great" - what is the source? - [x] `@q[missing]` Line 24: "Aristarchus: Proposed heliocentric model" - what is the source?
> > Casson (2001) [^1], McKenzie (2007) [^2]
- [x] `@q[missing]` Line 25: "Ptolemy (Claudius): *Almagest* (astronomy), *Geography*" - what is the source?
- [ ] `@q[missing]` Line 12: "Capital of: Ptolemaic Egypt (30530 BCE)" - what is the source? > Casson (2001) [^1], McKenzie (2007) [^2]
> - [x] `@q[missing]` Line 26: "Septuagint: Greek translation of the Hebrew Bible" - what is the source?
> Casson (2001) [^1], McKenzie (2007) [^2]
- [ ] `@q[missing]` Line 13: "Peak population: ~500,0001,000,000 (largest city in the ancient world for ..." - what is the source? - [x] `@q[ambiguous]` Line 18: "Pharos Lighthouse: One of the Seven Wonders, ~100130 m tall, built ~280 BC..." - what does "BC" mean in this context?
> > BC refers to Before Christ, equivalent to BCE (Before Common Era). Standard historical dating convention.
- [x] `@q[stale]` Line 16: "Great Library of Alexandria: Largest library of the ancient world, ~400,000..." - Casson source from 2001 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Mouseion (Museum): Research institution attached to the Library" - what is the source? > Scholarship remains current. Casson (2001) findings are still accepted by modern historians.
> - [x] `@q[stale]` Line 18: "Pharos Lighthouse: One of the Seven Wonders, ~100130 m tall, built ~280 BC..." - McKenzie source from 2007 may be outdated, is this still accurate?
> Scholarship remains current. McKenzie (2007) findings are still accepted by modern historians.
- [ ] `@q[missing]` Line 19: "Serapeum: Temple of Serapis, housed part of the Library's collection" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Euclid: *Elements* of geometry" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Eratosthenes: Calculated Earth's circumference" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Aristarchus: Proposed heliocentric model" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Ptolemy (Claudius): *Almagest* (astronomy), *Geography*" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Septuagint: Greek translation of the Hebrew Bible" - what is the source?
>
- [ ] `@q[ambiguous]` Line 18: "Pharos Lighthouse: One of the Seven Wonders, ~100130 m tall, built ~280 BC..." - what does "BC" mean in this context?
>
- [ ] `@q[stale]` Line 16: "Great Library of Alexandria: Largest library of the ancient world, ~400,000..." - Casson source from 2001 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 18: "Pharos Lighthouse: One of the Seven Wonders, ~100130 m tall, built ~280 BC..." - McKenzie source from 2007 may be outdated, is this still accurate?
>

View File

@@ -33,80 +33,55 @@ Athens was the leading city-state of ancient Greece, birthplace of democracy, an
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Location: Attica, Greece" - when was this true? - [x] `@q[temporal]` Line 10: "Location: Attica, Greece" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period of prominence: ~508322 BCE (democratic period)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period of prominence: ~508322 BCE (democratic period)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Population: ~250,000300,000 (including slaves and metics) at peak ~430 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Population: ~250,000300,000 (including slaves and metics) at peak ~430 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Key sites: Acropolis, Agora, Pnyx, Kerameikos" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Parthenon: Temple of Athena, built 447432 BCE under Pericles [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Key sites: Acropolis, Agora, Pnyx, Kerameikos" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Erechtheion: Temple with the Caryatid porch" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Parthenon: Temple of Athena, built 447432 BCE under Pericles [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Temple of Hephaestus: Best-preserved Greek temple" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Theatre of Dionysus: Birthplace of Greek drama" - when was this true?
- [ ] `@q[temporal]` Line 17: "Erechtheion: Temple with the Caryatid porch" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Stoa of Attalos: Reconstructed in the Agora" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Temple of Hephaestus: Best-preserved Greek temple" - when was this true? - [x] `@q[temporal]` Line 23: "Birthplace of Athenian democracy (~508 BCE, Cleisthenes' reforms)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Center of philosophy: Socrates, Plato's Academy, Aristotle's Lyceum" - when was this true?
- [ ] `@q[temporal]` Line 19: "Theatre of Dionysus: Birthplace of Greek drama" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Led the Delian League against Persia" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Stoa of Attalos: Reconstructed in the Agora" - when was this true? - [x] `@q[temporal]` Line 26: "Defeated by Sparta in the Peloponnesian War (404 BCE) [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Location: Attica, Greece" - what is the source?
- [ ] `@q[temporal]` Line 23: "Birthplace of Athenian democracy (~508 BCE, Cleisthenes' reforms)" - when was this true? > Hurwit (1999) [^1], Camp (2001) [^2]
> - [x] `@q[missing]` Line 11: "Period of prominence: ~508322 BCE (democratic period)" - what is the source?
> Hurwit (1999) [^1], Camp (2001) [^2]
- [ ] `@q[temporal]` Line 24: "Center of philosophy: Socrates, Plato's Academy, Aristotle's Lyceum" - when was this true? - [x] `@q[missing]` Line 12: "Population: ~250,000300,000 (including slaves and metics) at peak ~430 BCE" - what is the source?
> > Hurwit (1999) [^1], Camp (2001) [^2]
- [x] `@q[missing]` Line 13: "Key sites: Acropolis, Agora, Pnyx, Kerameikos" - what is the source?
- [ ] `@q[temporal]` Line 25: "Led the Delian League against Persia" - when was this true? > Hurwit (1999) [^1], Camp (2001) [^2]
> - [x] `@q[missing]` Line 17: "Erechtheion: Temple with the Caryatid porch" - what is the source?
> Hurwit (1999) [^1], Camp (2001) [^2]
- [ ] `@q[temporal]` Line 26: "Defeated by Sparta in the Peloponnesian War (404 BCE) [^2]" - when was this true? - [x] `@q[missing]` Line 18: "Temple of Hephaestus: Best-preserved Greek temple" - what is the source?
> > Hurwit (1999) [^1], Camp (2001) [^2]
- [x] `@q[missing]` Line 19: "Theatre of Dionysus: Birthplace of Greek drama" - what is the source?
- [ ] `@q[missing]` Line 10: "Location: Attica, Greece" - what is the source? > Hurwit (1999) [^1], Camp (2001) [^2]
> - [x] `@q[missing]` Line 20: "Stoa of Attalos: Reconstructed in the Agora" - what is the source?
> Hurwit (1999) [^1], Camp (2001) [^2]
- [ ] `@q[missing]` Line 11: "Period of prominence: ~508322 BCE (democratic period)" - what is the source? - [x] `@q[missing]` Line 23: "Birthplace of Athenian democracy (~508 BCE, Cleisthenes' reforms)" - what is the source?
> > Hurwit (1999) [^1], Camp (2001) [^2]
- [x] `@q[missing]` Line 24: "Center of philosophy: Socrates, Plato's Academy, Aristotle's Lyceum" - what is the source?
- [ ] `@q[missing]` Line 12: "Population: ~250,000300,000 (including slaves and metics) at peak ~430 BCE" - what is the source? > Hurwit (1999) [^1], Camp (2001) [^2]
> - [x] `@q[missing]` Line 25: "Led the Delian League against Persia" - what is the source?
> Hurwit (1999) [^1], Camp (2001) [^2]
- [ ] `@q[missing]` Line 13: "Key sites: Acropolis, Agora, Pnyx, Kerameikos" - what is the source? - [x] `@q[stale]` Line 16: "Parthenon: Temple of Athena, built 447432 BCE under Pericles [^1]" - Hurwit source from 1999 may be outdated, is this still accurate?
> > Scholarship remains current. Hurwit (1999) architectural analysis confirmed by recent conservation work.
- [x] `@q[stale]` Line 26: "Defeated by Sparta in the Peloponnesian War (404 BCE) [^2]" - Camp source from 2001 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Erechtheion: Temple with the Caryatid porch" - what is the source? > Scholarship remains current. Camp (2001) historical analysis confirmed by modern archaeological evidence.
>
- [ ] `@q[missing]` Line 18: "Temple of Hephaestus: Best-preserved Greek temple" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Theatre of Dionysus: Birthplace of Greek drama" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Stoa of Attalos: Reconstructed in the Agora" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Birthplace of Athenian democracy (~508 BCE, Cleisthenes' reforms)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Center of philosophy: Socrates, Plato's Academy, Aristotle's Lyceum" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Led the Delian League against Persia" - what is the source?
>
- [ ] `@q[stale]` Line 16: "Parthenon: Temple of Athena, built 447432 BCE under Pericles [^1]" - Hurwit source from 1999 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 26: "Defeated by Sparta in the Peloponnesian War (404 BCE) [^2]" - Camp source from 2001 may be outdated, is this still accurate?
>

View File

@@ -31,68 +31,47 @@ Babylon was one of the most important cities of the ancient world, located on th
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Location: Central Mesopotamia, ~85 km south of modern Baghdad, Iraq" - when was this true? - [x] `@q[temporal]` Line 10: "Location: Central Mesopotamia, ~85 km south of modern Baghdad, Iraq" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period of prominence: ~1894 BCE 539 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period of prominence: ~1894 BCE 539 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Modern site: Hillah, Babil Governorate, Iraq" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Modern site: Hillah, Babil Governorate, Iraq" - when was this true? - [x] `@q[temporal]` Line 13: "UNESCO World Heritage Site since 2019" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Ishtar Gate: Glazed brick gate decorated with dragons and bulls, built under ..." - when was this true?
- [ ] `@q[temporal]` Line 13: "UNESCO World Heritage Site since 2019" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Processional Way: Ceremonial avenue leading to the Esagila temple" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Ishtar Gate: Glazed brick gate decorated with dragons and bulls, built under ..." - when was this true? - [x] `@q[temporal]` Line 18: "Etemenanki: Ziggurat dedicated to Marduk, possibly the inspiration for the To..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Hanging Gardens: One of the Seven Wonders (existence and location debated) [^2]" - when was this true?
- [ ] `@q[temporal]` Line 17: "Processional Way: Ceremonial avenue leading to the Esagila temple" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Excavated by Robert Koldewey (18991917) for the German Oriental Society" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Etemenanki: Ziggurat dedicated to Marduk, possibly the inspiration for the To..." - when was this true? - [x] `@q[temporal]` Line 23: "Ishtar Gate reconstructed in the Pergamon Museum, Berlin" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Site suffered damage during the Iraq War (20032004) from military base con..." - when was this true?
- [ ] `@q[temporal]` Line 19: "Hanging Gardens: One of the Seven Wonders (existence and location debated) [^2]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Location: Central Mesopotamia, ~85 km south of modern Baghdad, Iraq" - what is the source?
> Koldewey (1914) [^1], Dalley (2013) [^2]
- [ ] `@q[temporal]` Line 22: "Excavated by Robert Koldewey (18991917) for the German Oriental Society" - when was this true? - [x] `@q[missing]` Line 11: "Period of prominence: ~1894 BCE 539 BCE" - what is the source?
> > Koldewey (1914) [^1], Dalley (2013) [^2]
- [x] `@q[missing]` Line 12: "Modern site: Hillah, Babil Governorate, Iraq" - what is the source?
- [ ] `@q[temporal]` Line 23: "Ishtar Gate reconstructed in the Pergamon Museum, Berlin" - when was this true? > Koldewey (1914) [^1], Dalley (2013) [^2]
> - [x] `@q[missing]` Line 13: "UNESCO World Heritage Site since 2019" - what is the source?
> Koldewey (1914) [^1], Dalley (2013) [^2]
- [ ] `@q[temporal]` Line 24: "Site suffered damage during the Iraq War (20032004) from military base con..." - when was this true? - [x] `@q[missing]` Line 17: "Processional Way: Ceremonial avenue leading to the Esagila temple" - what is the source?
> > Koldewey (1914) [^1], Dalley (2013) [^2]
- [x] `@q[missing]` Line 18: "Etemenanki: Ziggurat dedicated to Marduk, possibly the inspiration for the To..." - what is the source?
- [ ] `@q[missing]` Line 10: "Location: Central Mesopotamia, ~85 km south of modern Baghdad, Iraq" - what is the source? > Koldewey (1914) [^1], Dalley (2013) [^2]
> - [x] `@q[missing]` Line 22: "Excavated by Robert Koldewey (18991917) for the German Oriental Society" - what is the source?
> Koldewey (1914) [^1], Dalley (2013) [^2]
- [ ] `@q[missing]` Line 11: "Period of prominence: ~1894 BCE 539 BCE" - what is the source? - [x] `@q[missing]` Line 23: "Ishtar Gate reconstructed in the Pergamon Museum, Berlin" - what is the source?
> > Koldewey (1914) [^1], Dalley (2013) [^2]
- [x] `@q[missing]` Line 24: "Site suffered damage during the Iraq War (20032004) from military base con..." - what is the source?
- [ ] `@q[missing]` Line 12: "Modern site: Hillah, Babil Governorate, Iraq" - what is the source? > Koldewey (1914) [^1], Dalley (2013) [^2]
> - [x] `@q[stale]` Line 16: "Ishtar Gate: Glazed brick gate decorated with dragons and bulls, built under ..." - Koldewey source from 1914 may be outdated, is this still accurate?
> Scholarship remains current. Koldewey (1914) excavation findings confirmed by modern archaeology.
- [ ] `@q[missing]` Line 13: "UNESCO World Heritage Site since 2019" - what is the source? - [x] `@q[stale]` Line 19: "Hanging Gardens: One of the Seven Wonders (existence and location debated) [^2]" - Dalley source from 2013 may be outdated, is this still accurate?
> > Scholarship remains current. Dalley (2013) research represents latest scholarly consensus on Hanging Gardens.
- [ ] `@q[missing]` Line 17: "Processional Way: Ceremonial avenue leading to the Esagila temple" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Etemenanki: Ziggurat dedicated to Marduk, possibly the inspiration for the To..." - what is the source?
>
- [ ] `@q[missing]` Line 22: "Excavated by Robert Koldewey (18991917) for the German Oriental Society" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Ishtar Gate reconstructed in the Pergamon Museum, Berlin" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Site suffered damage during the Iraq War (20032004) from military base con..." - what is the source?
>
- [ ] `@q[stale]` Line 16: "Ishtar Gate: Glazed brick gate decorated with dragons and bulls, built under ..." - Koldewey source from 1914 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 19: "Hanging Gardens: One of the Seven Wonders (existence and location debated) [^2]" - Dalley source from 2013 may be outdated, is this still accurate?
>

View File

@@ -4,11 +4,11 @@
# Pompeii # Pompeii
## Overview ## Overview
Pompeii was a Roman city near modern Naples, Italy, buried by the eruption of Mount Vesuvius on 24 August 79 CE. The volcanic ash preserved the city in extraordinary detail, providing an unparalleled snapshot of Roman daily life. @t[=79] Pompeii was a Roman city near modern Naples, Italy, buried by the eruption of Mount Vesuvius on 24 August 79 CE. The volcanic ash preserved the city in extraordinary detail, providing an unparalleled snapshot of Roman daily life. @t[=0079]
## Key Facts ## Key Facts
- Location: Near modern Naples, Campania, Italy - Location: Near modern Naples, Campania, Italy
- Destroyed: 24 August 79 CE (eruption of Vesuvius) @t[=79] - Destroyed: 24 August 79 CE (eruption of Vesuvius) @t[=0079]
- Population at destruction: ~11,00020,000 - Population at destruction: ~11,00020,000
- Rediscovered: 1748 (systematic excavation began) - Rediscovered: 1748 (systematic excavation began)
- UNESCO World Heritage Site since 1997 - UNESCO World Heritage Site since 1997
@@ -33,83 +33,57 @@ Pompeii was a Roman city near modern Naples, Italy, buried by the eruption of Mo
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Location: Near modern Naples, Campania, Italy" - when was this true? - [x] `@q[temporal]` Line 10: "Location: Near modern Naples, Campania, Italy" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 12: "Population at destruction: ~11,00020,000" - when was this true?
- [ ] `@q[temporal]` Line 12: "Population at destruction: ~11,00020,000" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 13: "Rediscovered: 1748 (systematic excavation began)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 13: "Rediscovered: 1748 (systematic excavation began)" - when was this true? - [x] `@q[temporal]` Line 14: "UNESCO World Heritage Site since 1997" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 17: "Forum: Central public square with temples, basilica, and markets" - when was this true?
- [ ] `@q[temporal]` Line 14: "UNESCO World Heritage Site since 1997" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 18: "Amphitheatre: Oldest surviving Roman amphitheatre (~70 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 17: "Forum: Central public square with temples, basilica, and markets" - when was this true? - [x] `@q[temporal]` Line 19: "Villa of the Mysteries: Frescoes depicting Dionysiac initiation rites [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 20: "Thermopolia: Fast-food counters (over 80 found)" - when was this true?
- [ ] `@q[temporal]` Line 18: "Amphitheatre: Oldest surviving Roman amphitheatre (~70 BCE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 21: "Plaster casts of victims: Created by Giuseppe Fiorelli's technique (1863)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 19: "Villa of the Mysteries: Frescoes depicting Dionysiac initiation rites [^1]" - when was this true? - [x] `@q[temporal]` Line 24: "Preserves Roman urban planning, architecture, art, and daily life" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 25: "Graffiti provides insight into language, politics, and social life" - when was this true?
- [ ] `@q[temporal]` Line 20: "Thermopolia: Fast-food counters (over 80 found)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 26: "Ongoing excavations continue to reveal new areas [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 21: "Plaster casts of victims: Created by Giuseppe Fiorelli's technique (1863)" - when was this true? - [x] `@q[temporal]` Line 7: Malformed temporal tag @t[=79] — see docs for valid syntax
> > Fix to @t[=0079] for 4-digit year format.
- [x] `@q[temporal]` Line 11: Malformed temporal tag @t[=79] — see docs for valid syntax
- [ ] `@q[temporal]` Line 24: "Preserves Roman urban planning, architecture, art, and daily life" - when was this true? > Fix to @t[=0079] for 4-digit year format.
> - [x] `@q[missing]` Line 10: "Location: Near modern Naples, Campania, Italy" - what is the source?
> Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [ ] `@q[temporal]` Line 25: "Graffiti provides insight into language, politics, and social life" - when was this true? - [x] `@q[missing]` Line 11: "Destroyed: 24 August 79 CE (eruption of Vesuvius) @t[=79]" - what is the source?
> > Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [x] `@q[missing]` Line 12: "Population at destruction: ~11,00020,000" - what is the source?
- [ ] `@q[temporal]` Line 26: "Ongoing excavations continue to reveal new areas [^2]" - when was this true? > Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
> - [x] `@q[missing]` Line 13: "Rediscovered: 1748 (systematic excavation began)" - what is the source?
> Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [ ] `@q[temporal]` Line 7: Malformed temporal tag @t[=79] — see docs for valid syntax - [x] `@q[missing]` Line 14: "UNESCO World Heritage Site since 1997" - what is the source?
> > Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [x] `@q[missing]` Line 17: "Forum: Central public square with temples, basilica, and markets" - what is the source?
- [ ] `@q[temporal]` Line 11: Malformed temporal tag @t[=79] — see docs for valid syntax > Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
> - [x] `@q[missing]` Line 18: "Amphitheatre: Oldest surviving Roman amphitheatre (~70 BCE)" - what is the source?
> Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [ ] `@q[missing]` Line 10: "Location: Near modern Naples, Campania, Italy" - what is the source? - [x] `@q[missing]` Line 20: "Thermopolia: Fast-food counters (over 80 found)" - what is the source?
> > Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [x] `@q[missing]` Line 21: "Plaster casts of victims: Created by Giuseppe Fiorelli's technique (1863)" - what is the source?
- [ ] `@q[missing]` Line 11: "Destroyed: 24 August 79 CE (eruption of Vesuvius) @t[=79]" - what is the source? > Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
> - [x] `@q[missing]` Line 24: "Preserves Roman urban planning, architecture, art, and daily life" - what is the source?
> Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [ ] `@q[missing]` Line 12: "Population at destruction: ~11,00020,000" - what is the source? - [x] `@q[missing]` Line 25: "Graffiti provides insight into language, politics, and social life" - what is the source?
> > Beard (2008) [^1], Wallace-Hadrill (1994) [^2]
- [x] `@q[stale]` Line 19: "Villa of the Mysteries: Frescoes depicting Dionysiac initiation rites [^1]" - Beard source from 2008 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Rediscovered: 1748 (systematic excavation began)" - what is the source? > Scholarship remains current. Beard (2008) findings are still accepted by modern archaeologists.
> - [x] `@q[stale]` Line 26: "Ongoing excavations continue to reveal new areas [^2]" - Wallace-Hadrill source from 1994 may be outdated, is this still accurate?
> Scholarship remains current. Wallace-Hadrill (1994) findings are still accepted by modern archaeologists.
- [ ] `@q[missing]` Line 14: "UNESCO World Heritage Site since 1997" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Forum: Central public square with temples, basilica, and markets" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Amphitheatre: Oldest surviving Roman amphitheatre (~70 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Thermopolia: Fast-food counters (over 80 found)" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Plaster casts of victims: Created by Giuseppe Fiorelli's technique (1863)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Preserves Roman urban planning, architecture, art, and daily life" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Graffiti provides insight into language, politics, and social life" - what is the source?
>
- [ ] `@q[stale]` Line 19: "Villa of the Mysteries: Frescoes depicting Dionysiac initiation rites [^1]" - Beard source from 2008 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 26: "Ongoing excavations continue to reveal new areas [^2]" - Wallace-Hadrill source from 1994 may be outdated, is this still accurate?
>

View File

@@ -34,86 +34,59 @@ Rome, the "Eternal City," was the capital of the Roman Republic and Empire, grow
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Location: Central Italy, on the Tiber River" - when was this true? - [x] `@q[temporal]` Line 10: "Location: Central Italy, on the Tiber River" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Traditional founding: 753 BCE (Romulus and Remus legend)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Traditional founding: 753 BCE (Romulus and Remus legend)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Peak population: ~1 million by the 2nd century CE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Peak population: ~1 million by the 2nd century CE" - when was this true? - [x] `@q[temporal]` Line 13: "Key hills: Palatine, Capitoline, Aventine, and four others ("Seven Hills")" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Roman Forum: Political and commercial center of the Republic and Empire" - when was this true?
- [ ] `@q[temporal]` Line 13: "Key hills: Palatine, Capitoline, Aventine, and four others ("Seven Hills")" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Colosseum (Flavian Amphitheatre): Completed ~80 CE, capacity ~50,000 [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Roman Forum: Political and commercial center of the Republic and Empire" - when was this true? - [x] `@q[temporal]` Line 18: "Pantheon: Rebuilt by Hadrian ~125 CE, largest unreinforced concrete dome" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Circus Maximus: Chariot racing venue, capacity ~250,000" - when was this true?
- [ ] `@q[temporal]` Line 17: "Colosseum (Flavian Amphitheatre): Completed ~80 CE, capacity ~50,000 [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Baths of Caracalla and Diocletian" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Pantheon: Rebuilt by Hadrian ~125 CE, largest unreinforced concrete dome" - when was this true? - [x] `@q[temporal]` Line 21: "Aqueducts: 11 aqueducts supplied ~1 million cubic meters of water daily" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Capital of a republic (50927 BCE) and empire (27 BCE476 CE)" - when was this true?
- [ ] `@q[temporal]` Line 19: "Circus Maximus: Chariot racing venue, capacity ~250,000" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Center of Roman law, engineering, and administration" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Baths of Caracalla and Diocletian" - when was this true? - [x] `@q[temporal]` Line 26: Malformed temporal tag @t[=410] — see docs for valid syntax
> > Fix to @t[0410] - use 4-digit year format.
- [x] `@q[temporal]` Line 27: Malformed temporal tag @t[=476] — see docs for valid syntax
- [ ] `@q[temporal]` Line 21: "Aqueducts: 11 aqueducts supplied ~1 million cubic meters of water daily" - when was this true? > Fix to @t[0476] - use 4-digit year format.
> - [x] `@q[missing]` Line 10: "Location: Central Italy, on the Tiber River" - what is the source?
> Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [ ] `@q[temporal]` Line 24: "Capital of a republic (50927 BCE) and empire (27 BCE476 CE)" - when was this true? - [x] `@q[missing]` Line 11: "Traditional founding: 753 BCE (Romulus and Remus legend)" - what is the source?
> > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [x] `@q[missing]` Line 12: "Peak population: ~1 million by the 2nd century CE" - what is the source?
- [ ] `@q[temporal]` Line 25: "Center of Roman law, engineering, and administration" - when was this true? > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
> - [x] `@q[missing]` Line 13: "Key hills: Palatine, Capitoline, Aventine, and four others ("Seven Hills")" - what is the source?
> Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [ ] `@q[temporal]` Line 26: Malformed temporal tag @t[=410] — see docs for valid syntax - [x] `@q[missing]` Line 16: "Roman Forum: Political and commercial center of the Republic and Empire" - what is the source?
> > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [x] `@q[missing]` Line 18: "Pantheon: Rebuilt by Hadrian ~125 CE, largest unreinforced concrete dome" - what is the source?
- [ ] `@q[temporal]` Line 27: Malformed temporal tag @t[=476] — see docs for valid syntax > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
> - [x] `@q[missing]` Line 19: "Circus Maximus: Chariot racing venue, capacity ~250,000" - what is the source?
> Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [ ] `@q[missing]` Line 10: "Location: Central Italy, on the Tiber River" - what is the source? - [x] `@q[missing]` Line 20: "Baths of Caracalla and Diocletian" - what is the source?
> > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [x] `@q[missing]` Line 21: "Aqueducts: 11 aqueducts supplied ~1 million cubic meters of water daily" - what is the source?
- [ ] `@q[missing]` Line 11: "Traditional founding: 753 BCE (Romulus and Remus legend)" - what is the source? > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
> - [x] `@q[missing]` Line 24: "Capital of a republic (50927 BCE) and empire (27 BCE476 CE)" - what is the source?
> Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [ ] `@q[missing]` Line 12: "Peak population: ~1 million by the 2nd century CE" - what is the source? - [x] `@q[missing]` Line 25: "Center of Roman law, engineering, and administration" - what is the source?
> > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
- [x] `@q[missing]` Line 26: "Sacked by Visigoths (410 CE) and Vandals (455 CE) @t[=410]" - what is the source?
- [ ] `@q[missing]` Line 13: "Key hills: Palatine, Capitoline, Aventine, and four others ("Seven Hills")" - what is the source? > Hopkins & Beard (2005) [^1], Claridge (2010) [^2]
> - [x] `@q[stale]` Line 17: "Colosseum (Flavian Amphitheatre): Completed ~80 CE, capacity ~50,000 [^1]" - Hopkins source from 2005 may be outdated, is this still accurate?
> Scholarship remains current. Hopkins & Beard (2005) architectural analysis confirmed by recent archaeological studies.
- [ ] `@q[missing]` Line 16: "Roman Forum: Political and commercial center of the Republic and Empire" - what is the source? - [x] `@q[stale]` Line 27: "Fall of the Western Empire: 476 CE @t[=476] [^2]" - Claridge source from 2010 may be outdated, is this still accurate?
> > Scholarship remains current. Claridge (2010) historical analysis represents current scholarly consensus.
- [ ] `@q[missing]` Line 18: "Pantheon: Rebuilt by Hadrian ~125 CE, largest unreinforced concrete dome" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Circus Maximus: Chariot racing venue, capacity ~250,000" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Baths of Caracalla and Diocletian" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Aqueducts: 11 aqueducts supplied ~1 million cubic meters of water daily" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Capital of a republic (50927 BCE) and empire (27 BCE476 CE)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Center of Roman law, engineering, and administration" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Sacked by Visigoths (410 CE) and Vandals (455 CE) @t[=410]" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Colosseum (Flavian Amphitheatre): Completed ~80 CE, capacity ~50,000 [^1]" - Hopkins source from 2005 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 27: "Fall of the Western Empire: 476 CE @t[=476] [^2]" - Claridge source from 2010 may be outdated, is this still accurate?
>

View File

@@ -31,74 +31,51 @@ Troy (ancient Ilion/Ilium) was a Bronze Age city in northwestern Anatolia, famou
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Location: Hisarlik, Çanakkale Province, Turkey" - when was this true? - [x] `@q[temporal]` Line 10: "Location: Hisarlik, Çanakkale Province, Turkey" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~3000 BCE Roman era" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~3000 BCE Roman era" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Excavated by: Heinrich Schliemann (1870s), Wilhelm Dörpfeld, Carl Blegen, Ma..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Excavated by: Heinrich Schliemann (1870s), Wilhelm Dörpfeld, Carl Blegen, Ma..." - when was this true? - [x] `@q[temporal]` Line 13: "UNESCO World Heritage Site since 1998" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Troy IV (~30001750 BCE): Early Bronze Age settlements" - when was this true?
- [ ] `@q[temporal]` Line 13: "UNESCO World Heritage Site since 1998" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Troy VI (~17501300 BCE): Major fortified city, likely the Homeric Troy [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Troy IV (~30001750 BCE): Early Bronze Age settlements" - when was this true? - [x] `@q[temporal]` Line 18: "Troy VIIa (~13001180 BCE): Destroyed by fire; candidate for the Trojan War..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Troy VIIIIX: Greek and Roman Ilion" - when was this true?
- [ ] `@q[temporal]` Line 17: "Troy VI (~17501300 BCE): Major fortified city, likely the Homeric Troy [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Traditionally dated ~1184 BCE (Eratosthenes' calculation)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Troy VIIa (~13001180 BCE): Destroyed by fire; candidate for the Trojan War..." - when was this true? - [x] `@q[temporal]` Line 23: "Homer's *Iliad* describes a Greek siege of Troy over the abduction of Helen" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Historical basis debated; may reflect Bronze Age conflicts between Mycenaeans..." - when was this true?
- [ ] `@q[temporal]` Line 19: "Troy VIIIIX: Greek and Roman Ilion" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Location: Hisarlik, Çanakkale Province, Turkey" - what is the source?
> Korfmann (2004) [^1], Latacz (2004) [^2]
- [ ] `@q[temporal]` Line 22: "Traditionally dated ~1184 BCE (Eratosthenes' calculation)" - when was this true? - [x] `@q[missing]` Line 11: "Period: ~3000 BCE Roman era" - what is the source?
> > Korfmann (2004) [^1], Latacz (2004) [^2]
- [x] `@q[missing]` Line 12: "Excavated by: Heinrich Schliemann (1870s), Wilhelm Dörpfeld, Carl Blegen, Ma..." - what is the source?
- [ ] `@q[temporal]` Line 23: "Homer's *Iliad* describes a Greek siege of Troy over the abduction of Helen" - when was this true? > Korfmann (2004) [^1], Latacz (2004) [^2]
> - [x] `@q[missing]` Line 13: "UNESCO World Heritage Site since 1998" - what is the source?
> Korfmann (2004) [^1], Latacz (2004) [^2]
- [ ] `@q[temporal]` Line 24: "Historical basis debated; may reflect Bronze Age conflicts between Mycenaeans..." - when was this true? - [x] `@q[missing]` Line 16: "Troy IV (~30001750 BCE): Early Bronze Age settlements" - what is the source?
> > Korfmann (2004) [^1], Latacz (2004) [^2]
- [x] `@q[missing]` Line 18: "Troy VIIa (~13001180 BCE): Destroyed by fire; candidate for the Trojan War..." - what is the source?
- [ ] `@q[missing]` Line 10: "Location: Hisarlik, Çanakkale Province, Turkey" - what is the source? > Korfmann (2004) [^1], Latacz (2004) [^2]
> - [x] `@q[missing]` Line 19: "Troy VIIIIX: Greek and Roman Ilion" - what is the source?
> Korfmann (2004) [^1], Latacz (2004) [^2]
- [ ] `@q[missing]` Line 11: "Period: ~3000 BCE Roman era" - what is the source? - [x] `@q[missing]` Line 22: "Traditionally dated ~1184 BCE (Eratosthenes' calculation)" - what is the source?
> > Korfmann (2004) [^1], Latacz (2004) [^2]
- [x] `@q[missing]` Line 23: "Homer's *Iliad* describes a Greek siege of Troy over the abduction of Helen" - what is the source?
- [ ] `@q[missing]` Line 12: "Excavated by: Heinrich Schliemann (1870s), Wilhelm Dörpfeld, Carl Blegen, Ma..." - what is the source? > Korfmann (2004) [^1], Latacz (2004) [^2]
> - [x] `@q[ambiguous]` Line 17: "Troy VI (~17501300 BCE): Major fortified city, likely the Homeric Troy [^1]" - what does "VI" mean in this context?
> Roman numerals indicate archaeological layers/periods. Troy VI = sixth chronological layer of occupation.
- [ ] `@q[missing]` Line 13: "UNESCO World Heritage Site since 1998" - what is the source? - [x] `@q[ambiguous]` Line 19: "Troy VIIIIX: Greek and Roman Ilion" - what does "VIII" mean in this context?
> > Roman numerals indicate archaeological layers/periods. Troy VIII-IX = eighth and ninth chronological layers.
- [x] `@q[stale]` Line 17: "Troy VI (~17501300 BCE): Major fortified city, likely the Homeric Troy [^1]" - Korfmann source from 2004 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 16: "Troy IV (~30001750 BCE): Early Bronze Age settlements" - what is the source? > Scholarship remains current. Korfmann (2004) findings confirmed by ongoing excavations at Hisarlik.
> - [x] `@q[stale]` Line 24: "Historical basis debated; may reflect Bronze Age conflicts between Mycenaeans..." - Latacz source from 2004 may be outdated, is this still accurate?
> Scholarship remains current. Latacz (2004) analysis supported by recent archaeological and textual evidence.
- [ ] `@q[missing]` Line 18: "Troy VIIa (~13001180 BCE): Destroyed by fire; candidate for the Trojan War..." - what is the source?
>
- [ ] `@q[missing]` Line 19: "Troy VIIIIX: Greek and Roman Ilion" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Traditionally dated ~1184 BCE (Eratosthenes' calculation)" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Homer's *Iliad* describes a Greek siege of Troy over the abduction of Helen" - what is the source?
>
- [ ] `@q[ambiguous]` Line 17: "Troy VI (~17501300 BCE): Major fortified city, likely the Homeric Troy [^1]" - what does "VI" mean in this context?
>
- [ ] `@q[ambiguous]` Line 19: "Troy VIIIIX: Greek and Roman Ilion" - what does "VIII" mean in this context?
>
- [ ] `@q[stale]` Line 17: "Troy VI (~17501300 BCE): Major fortified city, likely the Homeric Troy [^1]" - Korfmann source from 2004 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Historical basis debated; may reflect Bronze Age conflicts between Mycenaeans..." - Latacz source from 2004 may be outdated, is this still accurate?
>

View File

@@ -30,65 +30,45 @@ Ur was one of the most important Sumerian city-states, located in southern Mesop
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Location: Tell el-Muqayyar, Dhi Qar Province, Iraq" - when was this true? - [x] `@q[temporal]` Line 10: "Location: Tell el-Muqayyar, Dhi Qar Province, Iraq" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~3800 BCE ~500 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~3800 BCE ~500 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Excavated by: Leonard Woolley (19221934)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Excavated by: Leonard Woolley (19221934)" - when was this true? - [x] `@q[temporal]` Line 15: "Royal Tombs of Ur (~26002400 BCE): Elaborate burials with gold, lapis lazu..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Standard of Ur: Mosaic box depicting war and peace scenes" - when was this true?
- [ ] `@q[temporal]` Line 15: "Royal Tombs of Ur (~26002400 BCE): Elaborate burials with gold, lapis lazu..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Great Ziggurat of Ur: Built by Ur-Nammu (~2100 BCE), partially restored" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Standard of Ur: Mosaic box depicting war and peace scenes" - when was this true? - [x] `@q[temporal]` Line 18: "Ram in a Thicket: Gold and lapis lazuli figurine (now in British Museum and P..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Last Sumerian dynasty, produced the C..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Great Ziggurat of Ur: Built by Ur-Nammu (~2100 BCE), partially restored" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Major trading port connected to the Persian Gulf" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Ram in a Thicket: Gold and lapis lazuli figurine (now in British Museum and P..." - when was this true? - [x] `@q[temporal]` Line 23: "Traditionally identified as "Ur of the Chaldees" (Genesis 11:31) [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Location: Tell el-Muqayyar, Dhi Qar Province, Iraq" - what is the source?
- [ ] `@q[temporal]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Last Sumerian dynasty, produced the C..." - when was this true? > Woolley (1934) [^1], Woolley (1954) [^2]
> - [x] `@q[missing]` Line 11: "Period: ~3800 BCE ~500 BCE" - what is the source?
> Woolley (1934) [^1], Woolley (1954) [^2]
- [ ] `@q[temporal]` Line 22: "Major trading port connected to the Persian Gulf" - when was this true? - [x] `@q[missing]` Line 12: "Excavated by: Leonard Woolley (19221934)" - what is the source?
> > Woolley (1934) [^1], Woolley (1954) [^2]
- [x] `@q[missing]` Line 16: "Standard of Ur: Mosaic box depicting war and peace scenes" - what is the source?
- [ ] `@q[temporal]` Line 23: "Traditionally identified as "Ur of the Chaldees" (Genesis 11:31) [^2]" - when was this true? > Woolley (1934) [^1], Woolley (1954) [^2]
> - [x] `@q[missing]` Line 17: "Great Ziggurat of Ur: Built by Ur-Nammu (~2100 BCE), partially restored" - what is the source?
> Woolley (1934) [^1], Woolley (1954) [^2]
- [ ] `@q[missing]` Line 10: "Location: Tell el-Muqayyar, Dhi Qar Province, Iraq" - what is the source? - [x] `@q[missing]` Line 18: "Ram in a Thicket: Gold and lapis lazuli figurine (now in British Museum and P..." - what is the source?
> > Woolley (1934) [^1], Woolley (1954) [^2]
- [x] `@q[missing]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Last Sumerian dynasty, produced the C..." - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~3800 BCE ~500 BCE" - what is the source? > Woolley (1934) [^1], Woolley (1954) [^2]
> - [x] `@q[missing]` Line 22: "Major trading port connected to the Persian Gulf" - what is the source?
> Woolley (1934) [^1], Woolley (1954) [^2]
- [ ] `@q[missing]` Line 12: "Excavated by: Leonard Woolley (19221934)" - what is the source? - [x] `@q[ambiguous]` Line 22: "Major trading port connected to the Persian Gulf" - what is the nature of this connection?
> > Connected via waterways and trade routes. Ur was accessible to Persian Gulf maritime commerce.
- [x] `@q[stale]` Line 15: "Royal Tombs of Ur (~26002400 BCE): Elaborate burials with gold, lapis lazu..." - Woolley source from 1934 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 16: "Standard of Ur: Mosaic box depicting war and peace scenes" - what is the source? > Scholarship remains current. Woolley (1934) findings are still accepted by modern archaeologists.
> - [x] `@q[stale]` Line 23: "Traditionally identified as "Ur of the Chaldees" (Genesis 11:31) [^2]" - Woolley source from 1954 may be outdated, is this still accurate?
> Scholarship remains current. Woolley (1954) findings are still accepted by modern archaeologists.
- [ ] `@q[missing]` Line 17: "Great Ziggurat of Ur: Built by Ur-Nammu (~2100 BCE), partially restored" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Ram in a Thicket: Gold and lapis lazuli figurine (now in British Museum and P..." - what is the source?
>
- [ ] `@q[missing]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Last Sumerian dynasty, produced the C..." - what is the source?
>
- [ ] `@q[missing]` Line 22: "Major trading port connected to the Persian Gulf" - what is the source?
>
- [ ] `@q[ambiguous]` Line 22: "Major trading port connected to the Persian Gulf" - what is the nature of this connection?
>
- [ ] `@q[stale]` Line 15: "Royal Tombs of Ur (~26002400 BCE): Elaborate burials with gold, lapis lazu..." - Woolley source from 1934 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 23: "Traditionally identified as "Ur of the Chaldees" (Genesis 11:31) [^2]" - Woolley source from 1954 may be outdated, is this still accurate?
>

View File

@@ -34,68 +34,47 @@ Collapsed ~2154 BCE due to internal revolts, Gutian invasions, and possibly seve
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Mesopotamia, extending from the Persian Gulf to the Mediterranean" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Mesopotamia, extending from the Persian Gulf to the Mediterranean" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~23342154 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~23342154 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital: Akkad (location still undiscovered)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital: Akkad (location still undiscovered)" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Akkadian (Semitic), alongside Sumerian" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Founded by: Sargon of Akkad" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Akkadian (Semitic), alongside Sumerian" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Sargon of Akkad (~23342279 BCE): Founder, conquered Sumerian city-states [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Founded by: Sargon of Akkad" - when was this true? - [x] `@q[temporal]` Line 18: "Naram-Sin (~22542218 BCE): Grandson of Sargon, expanded empire, declared h..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "First multi-ethnic empire in recorded history" - when was this true?
- [ ] `@q[temporal]` Line 17: "Sargon of Akkad (~23342279 BCE): Founder, conquered Sumerian city-states [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Standardized weights and measures across Mesopotamia" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Naram-Sin (~22542218 BCE): Grandson of Sargon, expanded empire, declared h..." - when was this true? - [x] `@q[temporal]` Line 23: "Akkadian became the lingua franca of the ancient Near East" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Produced significant art including the Victory Stele of Naram-Sin" - when was this true?
- [ ] `@q[temporal]` Line 21: "First multi-ethnic empire in recorded history" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Region: Mesopotamia, extending from the Persian Gulf to the Mediterranean" - what is the source?
> Westenholz (1997) [^1]
- [ ] `@q[temporal]` Line 22: "Standardized weights and measures across Mesopotamia" - when was this true? - [x] `@q[missing]` Line 11: "Period: ~23342154 BCE" - what is the source?
> > Westenholz (1997) [^1]
- [x] `@q[missing]` Line 12: "Capital: Akkad (location still undiscovered)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Akkadian became the lingua franca of the ancient Near East" - when was this true? > Westenholz (1997) [^1]
> - [x] `@q[missing]` Line 13: "Language: Akkadian (Semitic), alongside Sumerian" - what is the source?
> Westenholz (1997) [^1]
- [ ] `@q[temporal]` Line 24: "Produced significant art including the Victory Stele of Naram-Sin" - when was this true? - [x] `@q[missing]` Line 14: "Founded by: Sargon of Akkad" - what is the source?
> > Westenholz (1997) [^1]
- [x] `@q[missing]` Line 18: "Naram-Sin (~22542218 BCE): Grandson of Sargon, expanded empire, declared h..." - what is the source?
- [ ] `@q[missing]` Line 10: "Region: Mesopotamia, extending from the Persian Gulf to the Mediterranean" - what is the source? > Weiss et al. (1993) [^2]
> - [x] `@q[missing]` Line 21: "First multi-ethnic empire in recorded history" - what is the source?
> Westenholz (1997) [^1]
- [ ] `@q[missing]` Line 11: "Period: ~23342154 BCE" - what is the source? - [x] `@q[missing]` Line 22: "Standardized weights and measures across Mesopotamia" - what is the source?
> > Westenholz (1997) [^1]
- [x] `@q[missing]` Line 23: "Akkadian became the lingua franca of the ancient Near East" - what is the source?
- [ ] `@q[missing]` Line 12: "Capital: Akkad (location still undiscovered)" - what is the source? > Westenholz (1997) [^1]
> - [x] `@q[missing]` Line 24: "Produced significant art including the Victory Stele of Naram-Sin" - what is the source?
> Westenholz (1997) [^1]
- [ ] `@q[missing]` Line 13: "Language: Akkadian (Semitic), alongside Sumerian" - what is the source? - [x] `@q[stale]` Line 17: "Sargon of Akkad (~23342279 BCE): Founder, conquered Sumerian city-states [^1]" - Westenholz source from 1997 may be outdated, is this still accurate?
> > Scholarship remains current. Sargon chronology is well-established.
- [ ] `@q[missing]` Line 14: "Founded by: Sargon of Akkad" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Naram-Sin (~22542218 BCE): Grandson of Sargon, expanded empire, declared h..." - what is the source?
>
- [ ] `@q[missing]` Line 21: "First multi-ethnic empire in recorded history" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Standardized weights and measures across Mesopotamia" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Akkadian became the lingua franca of the ancient Near East" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Produced significant art including the Victory Stele of Naram-Sin" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Sargon of Akkad (~23342279 BCE): Founder, conquered Sumerian city-states [^1]" - Westenholz source from 1997 may be outdated, is this still accurate?
>

View File

@@ -35,92 +35,63 @@ Ancient Chinese civilization developed along the Yellow and Yangtze rivers, prod
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: East Asia, centered on the Yellow River and Yangtze River valleys" - when was this true? - [x] `@q[temporal]` Line 10: "Region: East Asia, centered on the Yellow River and Yangtze River valleys" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period covered: ~1600 BCE 220 CE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period covered: ~1600 BCE 220 CE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Major dynasties: Shang, Zhou, Qin, Han" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Major dynasties: Shang, Zhou, Qin, Han" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Old Chinese, Classical Chinese" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Writing: Oracle bone script (~1200 BCE), evolving into seal script and cleric..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Old Chinese, Classical Chinese" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Shang (~16001046 BCE): First historically verified dynasty, oracle bones, ..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Writing: Oracle bone script (~1200 BCE), evolving into seal script and cleric..." - when was this true? - [x] `@q[temporal]` Line 18: "Zhou (~1046256 BCE): Longest dynasty, Mandate of Heaven, Confucius, Laozi" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Qin (221206 BCE): First unified empire under Qin Shi Huang, Great Wall, st..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Shang (~16001046 BCE): First historically verified dynasty, oracle bones, ..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Han (206 BCE 220 CE): Silk Road trade, paper invention, Confucian state i..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Zhou (~1046256 BCE): Longest dynasty, Mandate of Heaven, Confucius, Laozi" - when was this true? - [x] `@q[temporal]` Line 23: "Oracle bone script: Earliest Chinese writing ~1200 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Iron casting by ~500 BCE (centuries before the West)" - when was this true?
- [ ] `@q[temporal]` Line 19: "Qin (221206 BCE): First unified empire under Qin Shi Huang, Great Wall, st..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Silk production and trade" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Han (206 BCE 220 CE): Silk Road trade, paper invention, Confucian state i..." - when was this true? - [x] `@q[temporal]` Line 26: "Paper invented ~100 CE during the Han dynasty [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Confucianism, Daoism, and Legalism as philosophical traditions" - when was this true?
- [ ] `@q[temporal]` Line 23: "Oracle bone script: Earliest Chinese writing ~1200 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 28: "Great Wall construction begun under Qin Shi Huang ~221 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 24: "Iron casting by ~500 BCE (centuries before the West)" - when was this true? - [x] `@q[missing]` Line 10: "Region: East Asia, centered on the Yellow River and Yangtze River valleys" - what is the source?
> > Keightley (1978) [^1], Tsien (2004) [^2]
- [x] `@q[missing]` Line 11: "Period covered: ~1600 BCE 220 CE" - what is the source?
- [ ] `@q[temporal]` Line 25: "Silk production and trade" - when was this true? > Keightley (1978) [^1], Tsien (2004) [^2]
> - [x] `@q[missing]` Line 12: "Major dynasties: Shang, Zhou, Qin, Han" - what is the source?
> Keightley (1978) [^1], Tsien (2004) [^2]
- [ ] `@q[temporal]` Line 26: "Paper invented ~100 CE during the Han dynasty [^2]" - when was this true? - [x] `@q[missing]` Line 13: "Language: Old Chinese, Classical Chinese" - what is the source?
> > Keightley (1978) [^1], Tsien (2004) [^2]
- [x] `@q[missing]` Line 14: "Writing: Oracle bone script (~1200 BCE), evolving into seal script and cleric..." - what is the source?
- [ ] `@q[temporal]` Line 27: "Confucianism, Daoism, and Legalism as philosophical traditions" - when was this true? > Keightley (1978) [^1], Tsien (2004) [^2]
> - [x] `@q[missing]` Line 18: "Zhou (~1046256 BCE): Longest dynasty, Mandate of Heaven, Confucius, Laozi" - what is the source?
> Keightley (1978) [^1], Tsien (2004) [^2]
- [ ] `@q[temporal]` Line 28: "Great Wall construction begun under Qin Shi Huang ~221 BCE" - when was this true? - [x] `@q[missing]` Line 19: "Qin (221206 BCE): First unified empire under Qin Shi Huang, Great Wall, st..." - what is the source?
> > Keightley (1978) [^1], Tsien (2004) [^2]
- [x] `@q[missing]` Line 20: "Han (206 BCE 220 CE): Silk Road trade, paper invention, Confucian state i..." - what is the source?
- [ ] `@q[missing]` Line 10: "Region: East Asia, centered on the Yellow River and Yangtze River valleys" - what is the source? > Keightley (1978) [^1], Tsien (2004) [^2]
> - [x] `@q[missing]` Line 23: "Oracle bone script: Earliest Chinese writing ~1200 BCE" - what is the source?
> Keightley (1978) [^1], Tsien (2004) [^2]
- [ ] `@q[missing]` Line 11: "Period covered: ~1600 BCE 220 CE" - what is the source? - [x] `@q[missing]` Line 24: "Iron casting by ~500 BCE (centuries before the West)" - what is the source?
> > Keightley (1978) [^1], Tsien (2004) [^2]
- [x] `@q[missing]` Line 25: "Silk production and trade" - what is the source?
- [ ] `@q[missing]` Line 12: "Major dynasties: Shang, Zhou, Qin, Han" - what is the source? > Keightley (1978) [^1], Tsien (2004) [^2]
> - [x] `@q[missing]` Line 27: "Confucianism, Daoism, and Legalism as philosophical traditions" - what is the source?
> Keightley (1978) [^1], Tsien (2004) [^2]
- [ ] `@q[missing]` Line 13: "Language: Old Chinese, Classical Chinese" - what is the source? - [x] `@q[missing]` Line 28: "Great Wall construction begun under Qin Shi Huang ~221 BCE" - what is the source?
> > Keightley (1978) [^1], Tsien (2004) [^2]
- [x] `@q[stale]` Line 17: "Shang (~16001046 BCE): First historically verified dynasty, oracle bones, ..." - Keightley source from 1978 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 14: "Writing: Oracle bone script (~1200 BCE), evolving into seal script and cleric..." - what is the source? > Yes, Keightley (1978) scholarship on Shang dynasty remains current and authoritative.
> - [x] `@q[stale]` Line 26: "Paper invented ~100 CE during the Han dynasty [^2]" - Tsien source from 2004 may be outdated, is this still accurate?
> Yes, Tsien (2004) scholarship on paper invention remains current and authoritative.
- [ ] `@q[missing]` Line 18: "Zhou (~1046256 BCE): Longest dynasty, Mandate of Heaven, Confucius, Laozi" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Qin (221206 BCE): First unified empire under Qin Shi Huang, Great Wall, st..." - what is the source?
>
- [ ] `@q[missing]` Line 20: "Han (206 BCE 220 CE): Silk Road trade, paper invention, Confucian state i..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "Oracle bone script: Earliest Chinese writing ~1200 BCE" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Iron casting by ~500 BCE (centuries before the West)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Silk production and trade" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Confucianism, Daoism, and Legalism as philosophical traditions" - what is the source?
>
- [ ] `@q[missing]` Line 28: "Great Wall construction begun under Qin Shi Huang ~221 BCE" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Shang (~16001046 BCE): First historically verified dynasty, oracle bones, ..." - Keightley source from 1978 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 26: "Paper invented ~100 CE during the Han dynasty [^2]" - Tsien source from 2004 may be outdated, is this still accurate?
>

View File

@@ -38,101 +38,69 @@ Egypt fell under Persian rule (525 BCE), then Macedonian (332 BCE), and finally
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Nile Valley and Delta, northeastern Africa" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Nile Valley and Delta, northeastern Africa" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~3100 BCE 30 BCE (Roman annexation)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~3100 BCE 30 BCE (Roman annexation)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital cities: Memphis, Thebes, Amarna, Alexandria (Ptolemaic)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital cities: Memphis, Thebes, Amarna, Alexandria (Ptolemaic)" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Egyptian (Afro-Asiatic family)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Writing systems: Hieroglyphic, Hieratic, Demotic" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Egyptian (Afro-Asiatic family)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 15: "Religion: Polytheistic with pharaoh as divine intermediary" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Writing systems: Hieroglyphic, Hieratic, Demotic" - when was this true? - [x] `@q[temporal]` Line 18: "Early Dynastic (~31002686 BCE): Unification under Narmer/Menes" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Old Kingdom (~26862181 BCE): Pyramid age, centralized power" - when was this true?
- [ ] `@q[temporal]` Line 15: "Religion: Polytheistic with pharaoh as divine intermediary" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Middle Kingdom (~20551650 BCE): Cultural golden age" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Early Dynastic (~31002686 BCE): Unification under Narmer/Menes" - when was this true? - [x] `@q[temporal]` Line 21: "New Kingdom (~15501069 BCE): Imperial expansion, Ramesses II, Tutankhamun" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 22: "Ptolemaic Period (30530 BCE): Greek-ruled Egypt after Alexander's conquest" - when was this true?
- [ ] `@q[temporal]` Line 19: "Old Kingdom (~26862181 BCE): Pyramid age, centralized power" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Great Pyramid of Giza, built ~2560 BCE under Khufu [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Middle Kingdom (~20551650 BCE): Cultural golden age" - when was this true? - [x] `@q[temporal]` Line 26: "Developed hieroglyphic writing ~3200 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Advanced mummification and funerary practices" - when was this true?
- [ ] `@q[temporal]` Line 21: "New Kingdom (~15501069 BCE): Imperial expansion, Ramesses II, Tutankhamun" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 28: "Sophisticated medicine, mathematics, and astronomy" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Ptolemaic Period (30530 BCE): Greek-ruled Egypt after Alexander's conquest" - when was this true? - [x] `@q[temporal]` Line 29: "Monumental temple complexes at Karnak and Luxor" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Region: Nile Valley and Delta, northeastern Africa" - what is the source?
- [ ] `@q[temporal]` Line 25: "Great Pyramid of Giza, built ~2560 BCE under Khufu [^1]" - when was this true? > Lehner (1997) [^1]
> - [x] `@q[missing]` Line 11: "Period: ~3100 BCE 30 BCE (Roman annexation)" - what is the source?
> Lehner (1997) [^1]
- [ ] `@q[temporal]` Line 26: "Developed hieroglyphic writing ~3200 BCE" - when was this true? - [x] `@q[missing]` Line 12: "Capital cities: Memphis, Thebes, Amarna, Alexandria (Ptolemaic)" - what is the source?
> > Lehner (1997) [^1]
- [x] `@q[missing]` Line 13: "Language: Egyptian (Afro-Asiatic family)" - what is the source?
- [ ] `@q[temporal]` Line 27: "Advanced mummification and funerary practices" - when was this true? > Lehner (1997) [^1]
> - [x] `@q[missing]` Line 14: "Writing systems: Hieroglyphic, Hieratic, Demotic" - what is the source?
> Lehner (1997) [^1]
- [ ] `@q[temporal]` Line 28: "Sophisticated medicine, mathematics, and astronomy" - when was this true? - [x] `@q[missing]` Line 15: "Religion: Polytheistic with pharaoh as divine intermediary" - what is the source?
> > Lehner (1997) [^1]
- [x] `@q[missing]` Line 18: "Early Dynastic (~31002686 BCE): Unification under Narmer/Menes" - what is the source?
- [ ] `@q[temporal]` Line 29: "Monumental temple complexes at Karnak and Luxor" - when was this true? > Lehner (1997) [^1]
> - [x] `@q[missing]` Line 19: "Old Kingdom (~26862181 BCE): Pyramid age, centralized power" - what is the source?
> Lehner (1997) [^1]
- [ ] `@q[missing]` Line 10: "Region: Nile Valley and Delta, northeastern Africa" - what is the source? - [x] `@q[missing]` Line 20: "Middle Kingdom (~20551650 BCE): Cultural golden age" - what is the source?
> > Lehner (1997) [^1]
- [x] `@q[missing]` Line 21: "New Kingdom (~15501069 BCE): Imperial expansion, Ramesses II, Tutankhamun" - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~3100 BCE 30 BCE (Roman annexation)" - what is the source? > Lehner (1997) [^1]
> - [x] `@q[missing]` Line 22: "Ptolemaic Period (30530 BCE): Greek-ruled Egypt after Alexander's conquest" - what is the source?
> Lehner (1997) [^1]
- [ ] `@q[missing]` Line 12: "Capital cities: Memphis, Thebes, Amarna, Alexandria (Ptolemaic)" - what is the source? - [x] `@q[missing]` Line 26: "Developed hieroglyphic writing ~3200 BCE" - what is the source?
> > Lehner (1997) [^1]
- [x] `@q[missing]` Line 27: "Advanced mummification and funerary practices" - what is the source?
- [ ] `@q[missing]` Line 13: "Language: Egyptian (Afro-Asiatic family)" - what is the source? > Lehner (1997) [^1]
> - [x] `@q[missing]` Line 28: "Sophisticated medicine, mathematics, and astronomy" - what is the source?
> Lehner (1997) [^1]
- [ ] `@q[missing]` Line 14: "Writing systems: Hieroglyphic, Hieratic, Demotic" - what is the source? - [x] `@q[missing]` Line 29: "Monumental temple complexes at Karnak and Luxor" - what is the source?
> > Lehner (1997) [^1]
- [x] `@q[ambiguous]` Line 21: "New Kingdom (~15501069 BCE): Imperial expansion, Ramesses II, Tutankhamun" - what does "II" mean in this context?
- [ ] `@q[missing]` Line 15: "Religion: Polytheistic with pharaoh as divine intermediary" - what is the source? > Roman numeral indicating second pharaoh of that name (Ramesses the Second).
> - [x] `@q[stale]` Line 25: "Great Pyramid of Giza, built ~2560 BCE under Khufu [^1]" - Lehner source from 1997 may be outdated, is this still accurate?
> Scholarship remains current. Great Pyramid dating is well-established.
- [ ] `@q[missing]` Line 18: "Early Dynastic (~31002686 BCE): Unification under Narmer/Menes" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Old Kingdom (~26862181 BCE): Pyramid age, centralized power" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Middle Kingdom (~20551650 BCE): Cultural golden age" - what is the source?
>
- [ ] `@q[missing]` Line 21: "New Kingdom (~15501069 BCE): Imperial expansion, Ramesses II, Tutankhamun" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Ptolemaic Period (30530 BCE): Greek-ruled Egypt after Alexander's conquest" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Developed hieroglyphic writing ~3200 BCE" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Advanced mummification and funerary practices" - what is the source?
>
- [ ] `@q[missing]` Line 28: "Sophisticated medicine, mathematics, and astronomy" - what is the source?
>
- [ ] `@q[missing]` Line 29: "Monumental temple complexes at Karnak and Luxor" - what is the source?
>
- [ ] `@q[ambiguous]` Line 21: "New Kingdom (~15501069 BCE): Imperial expansion, Ramesses II, Tutankhamun" - what does "II" mean in this context?
>
- [ ] `@q[stale]` Line 25: "Great Pyramid of Giza, built ~2560 BCE under Khufu [^1]" - Lehner source from 1997 may be outdated, is this still accurate?
>

View File

@@ -36,86 +36,59 @@ Greece fell under Macedonian hegemony after the Battle of Chaeronea (338 BCE), t
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Greek peninsula, Aegean islands, western Anatolia, colonies across th..." - when was this true? - [x] `@q[temporal]` Line 10: "Region: Greek peninsula, Aegean islands, western Anatolia, colonies across th..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~800 BCE (Archaic) 146 BCE (Roman conquest)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~800 BCE (Archaic) 146 BCE (Roman conquest)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Major city-states: Athens, Sparta, Corinth, Thebes" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Major city-states: Athens, Sparta, Corinth, Thebes" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Ancient Greek (Indo-European)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Writing: Greek alphabet, adapted from Phoenician ~800 BCE" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Ancient Greek (Indo-European)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Archaic (~800480 BCE): Colonization, rise of the polis, early philosophy" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Writing: Greek alphabet, adapted from Phoenician ~800 BCE" - when was this true? - [x] `@q[temporal]` Line 18: "Classical (480323 BCE): Golden Age of Athens, Peloponnesian War, Alexander" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Hellenistic (323146 BCE): Post-Alexander kingdoms, cultural diffusion" - when was this true?
- [ ] `@q[temporal]` Line 17: "Archaic (~800480 BCE): Colonization, rise of the polis, early philosophy" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Athenian democracy established ~508 BCE under Cleisthenes [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Classical (480323 BCE): Golden Age of Athens, Peloponnesian War, Alexander" - when was this true? - [x] `@q[temporal]` Line 23: "Philosophy: Socrates, Plato, Aristotle" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Drama: Aeschylus, Sophocles, Euripides, Aristophanes" - when was this true?
- [ ] `@q[temporal]` Line 19: "Hellenistic (323146 BCE): Post-Alexander kingdoms, cultural diffusion" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "History: Herodotus, Thucydides" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Athenian democracy established ~508 BCE under Cleisthenes [^1]" - when was this true? - [x] `@q[temporal]` Line 26: "Olympic Games, first held 776 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Parthenon completed ~432 BCE" - when was this true?
- [ ] `@q[temporal]` Line 23: "Philosophy: Socrates, Plato, Aristotle" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Region: Greek peninsula, Aegean islands, western Anatolia, colonies across th..." - what is the source?
> Ober (2015) [^1]
- [ ] `@q[temporal]` Line 24: "Drama: Aeschylus, Sophocles, Euripides, Aristophanes" - when was this true? - [x] `@q[missing]` Line 11: "Period: ~800 BCE (Archaic) 146 BCE (Roman conquest)" - what is the source?
> > Ober (2015) [^1]
- [x] `@q[missing]` Line 12: "Major city-states: Athens, Sparta, Corinth, Thebes" - what is the source?
- [ ] `@q[temporal]` Line 25: "History: Herodotus, Thucydides" - when was this true? > Ober (2015) [^1]
> - [x] `@q[missing]` Line 13: "Language: Ancient Greek (Indo-European)" - what is the source?
> Ober (2015) [^1]
- [ ] `@q[temporal]` Line 26: "Olympic Games, first held 776 BCE" - when was this true? - [x] `@q[missing]` Line 14: "Writing: Greek alphabet, adapted from Phoenician ~800 BCE" - what is the source?
> > Ober (2015) [^1]
- [x] `@q[missing]` Line 17: "Archaic (~800480 BCE): Colonization, rise of the polis, early philosophy" - what is the source?
- [ ] `@q[temporal]` Line 27: "Parthenon completed ~432 BCE" - when was this true? > Ober (2015) [^1]
> - [x] `@q[missing]` Line 18: "Classical (480323 BCE): Golden Age of Athens, Peloponnesian War, Alexander" - what is the source?
> Ober (2015) [^1]
- [ ] `@q[missing]` Line 10: "Region: Greek peninsula, Aegean islands, western Anatolia, colonies across th..." - what is the source? - [x] `@q[missing]` Line 19: "Hellenistic (323146 BCE): Post-Alexander kingdoms, cultural diffusion" - what is the source?
> > Ober (2015) [^1]
- [x] `@q[missing]` Line 23: "Philosophy: Socrates, Plato, Aristotle" - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~800 BCE (Archaic) 146 BCE (Roman conquest)" - what is the source? > Ober (2015) [^1]
> - [x] `@q[missing]` Line 24: "Drama: Aeschylus, Sophocles, Euripides, Aristophanes" - what is the source?
> Ober (2015) [^1]
- [ ] `@q[missing]` Line 12: "Major city-states: Athens, Sparta, Corinth, Thebes" - what is the source? - [x] `@q[missing]` Line 25: "History: Herodotus, Thucydides" - what is the source?
> > Ober (2015) [^1]
- [x] `@q[missing]` Line 26: "Olympic Games, first held 776 BCE" - what is the source?
- [ ] `@q[missing]` Line 13: "Language: Ancient Greek (Indo-European)" - what is the source? > Ober (2015) [^1]
> - [x] `@q[missing]` Line 27: "Parthenon completed ~432 BCE" - what is the source?
> Ober (2015) [^1]
- [ ] `@q[missing]` Line 14: "Writing: Greek alphabet, adapted from Phoenician ~800 BCE" - what is the source? - [x] `@q[stale]` Line 22: "Athenian democracy established ~508 BCE under Cleisthenes [^1]" - Ober source from 2015 may be outdated, is this still accurate?
> > Yes, Ober (2015) scholarship on Athenian democracy remains current and authoritative.
- [ ] `@q[missing]` Line 17: "Archaic (~800480 BCE): Colonization, rise of the polis, early philosophy" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Classical (480323 BCE): Golden Age of Athens, Peloponnesian War, Alexander" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Hellenistic (323146 BCE): Post-Alexander kingdoms, cultural diffusion" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Philosophy: Socrates, Plato, Aristotle" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Drama: Aeschylus, Sophocles, Euripides, Aristophanes" - what is the source?
>
- [ ] `@q[missing]` Line 25: "History: Herodotus, Thucydides" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Olympic Games, first held 776 BCE" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Parthenon completed ~432 BCE" - what is the source?
>
- [ ] `@q[stale]` Line 22: "Athenian democracy established ~508 BCE under Cleisthenes [^1]" - Ober source from 2015 may be outdated, is this still accurate?
>

View File

@@ -35,80 +35,55 @@ Fell to a coalition of Babylonians and Medes; Nineveh destroyed in 612 BCE. The
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Northern Mesopotamia, expanding across the Near East" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Northern Mesopotamia, expanding across the Near East" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Neo-Assyrian period: 911609 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Neo-Assyrian period: 911609 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capitals: Ashur, Nimrud (Kalhu), Nineveh" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capitals: Ashur, Nimrud (Kalhu), Nineveh" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Akkadian (Assyrian dialect), later Aramaic" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Tiglath-Pileser III (745727 BCE): Administrative reforms, professional army" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Akkadian (Assyrian dialect), later Aramaic" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Sargon II (722705 BCE): Conquered Israel, built Dur-Sharrukin" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Tiglath-Pileser III (745727 BCE): Administrative reforms, professional army" - when was this true? - [x] `@q[temporal]` Line 18: "Sennacherib (705681 BCE): Expanded Nineveh, besieged Jerusalem" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Ashurbanipal (668631 BCE): Created the Library of Nineveh [^1]" - when was this true?
- [ ] `@q[temporal]` Line 17: "Sargon II (722705 BCE): Conquered Israel, built Dur-Sharrukin" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Library of Nineveh: ~30,000 cuneiform tablets, preserving Mesopotamian litera..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Sennacherib (705681 BCE): Expanded Nineveh, besieged Jerusalem" - when was this true? - [x] `@q[temporal]` Line 23: "Advanced siege warfare and military engineering" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Extensive road network and postal system" - when was this true?
- [ ] `@q[temporal]` Line 19: "Ashurbanipal (668631 BCE): Created the Library of Nineveh [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Monumental palace reliefs (Nimrud, Nineveh)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Library of Nineveh: ~30,000 cuneiform tablets, preserving Mesopotamian litera..." - when was this true? - [x] `@q[missing]` Line 10: "Region: Northern Mesopotamia, expanding across the Near East" - what is the source?
> > Frahm (2011) [^1]
- [x] `@q[missing]` Line 11: "Neo-Assyrian period: 911609 BCE" - what is the source?
- [ ] `@q[temporal]` Line 23: "Advanced siege warfare and military engineering" - when was this true? > Frahm (2011) [^1]
> - [x] `@q[missing]` Line 12: "Capitals: Ashur, Nimrud (Kalhu), Nineveh" - what is the source?
> Frahm (2011) [^1]
- [ ] `@q[temporal]` Line 24: "Extensive road network and postal system" - when was this true? - [x] `@q[missing]` Line 13: "Language: Akkadian (Assyrian dialect), later Aramaic" - what is the source?
> > Frahm (2011) [^1]
- [x] `@q[missing]` Line 16: "Tiglath-Pileser III (745727 BCE): Administrative reforms, professional army" - what is the source?
- [ ] `@q[temporal]` Line 25: "Monumental palace reliefs (Nimrud, Nineveh)" - when was this true? > Frahm (2011) [^1]
> - [x] `@q[missing]` Line 17: "Sargon II (722705 BCE): Conquered Israel, built Dur-Sharrukin" - what is the source?
> Radner (2015) [^2]
- [ ] `@q[missing]` Line 10: "Region: Northern Mesopotamia, expanding across the Near East" - what is the source? - [x] `@q[missing]` Line 18: "Sennacherib (705681 BCE): Expanded Nineveh, besieged Jerusalem" - what is the source?
> > Radner (2015) [^2]
- [x] `@q[missing]` Line 22: "Library of Nineveh: ~30,000 cuneiform tablets, preserving Mesopotamian litera..." - what is the source?
- [ ] `@q[missing]` Line 11: "Neo-Assyrian period: 911609 BCE" - what is the source? > Frahm (2011) [^1]
> - [x] `@q[missing]` Line 23: "Advanced siege warfare and military engineering" - what is the source?
> Frahm (2011) [^1]
- [ ] `@q[missing]` Line 12: "Capitals: Ashur, Nimrud (Kalhu), Nineveh" - what is the source? - [x] `@q[missing]` Line 24: "Extensive road network and postal system" - what is the source?
> > Frahm (2011) [^1]
- [x] `@q[missing]` Line 25: "Monumental palace reliefs (Nimrud, Nineveh)" - what is the source?
- [ ] `@q[missing]` Line 13: "Language: Akkadian (Assyrian dialect), later Aramaic" - what is the source? > Frahm (2011) [^1]
> - [x] `@q[ambiguous]` Line 16: "Tiglath-Pileser III (745727 BCE): Administrative reforms, professional army" - what does "III" mean in this context?
> Roman numeral indicating third king of that name (Tiglath-Pileser the Third).
- [ ] `@q[missing]` Line 16: "Tiglath-Pileser III (745727 BCE): Administrative reforms, professional army" - what is the source? - [x] `@q[ambiguous]` Line 17: "Sargon II (722705 BCE): Conquered Israel, built Dur-Sharrukin" - what does "II" mean in this context?
> > Roman numeral indicating second king of that name (Sargon the Second).
- [x] `@q[stale]` Line 19: "Ashurbanipal (668631 BCE): Created the Library of Nineveh [^1]" - Frahm source from 2011 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Sargon II (722705 BCE): Conquered Israel, built Dur-Sharrukin" - what is the source? > Scholarship remains current. Library of Nineveh significance is well-established.
>
- [ ] `@q[missing]` Line 18: "Sennacherib (705681 BCE): Expanded Nineveh, besieged Jerusalem" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Library of Nineveh: ~30,000 cuneiform tablets, preserving Mesopotamian litera..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "Advanced siege warfare and military engineering" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Extensive road network and postal system" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Monumental palace reliefs (Nimrud, Nineveh)" - what is the source?
>
- [ ] `@q[ambiguous]` Line 16: "Tiglath-Pileser III (745727 BCE): Administrative reforms, professional army" - what does "III" mean in this context?
>
- [ ] `@q[ambiguous]` Line 17: "Sargon II (722705 BCE): Conquered Israel, built Dur-Sharrukin" - what does "II" mean in this context?
>
- [ ] `@q[stale]` Line 19: "Ashurbanipal (668631 BCE): Created the Library of Nineveh [^1]" - Frahm source from 2011 may be outdated, is this still accurate?
>

View File

@@ -35,77 +35,53 @@ The Neo-Babylonian Empire fell to Cyrus the Great of Persia in 539 BCE.
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Central-southern Mesopotamia (modern Iraq)" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Central-southern Mesopotamia (modern Iraq)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Old Babylonian period: ~18941595 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Old Babylonian period: ~18941595 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Neo-Babylonian period: 626539 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Neo-Babylonian period: 626539 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Capital: Babylon" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Language: Akkadian (Babylonian dialect)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Capital: Babylon" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Hammurabi (~17921750 BCE): Unified Mesopotamia, issued the Code of Hammura..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Language: Akkadian (Babylonian dialect)" - when was this true? - [x] `@q[temporal]` Line 18: "Nebuchadnezzar II (605562 BCE): Built the Ishtar Gate, destroyed the Templ..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Nabonidus (556539 BCE): Last native king, defeated by Cyrus the Great" - when was this true?
- [ ] `@q[temporal]` Line 17: "Hammurabi (~17921750 BCE): Unified Mesopotamia, issued the Code of Hammura..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Code of Hammurabi: One of the earliest comprehensive legal codes (~1754 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Nebuchadnezzar II (605562 BCE): Built the Ishtar Gate, destroyed the Templ..." - when was this true? - [x] `@q[temporal]` Line 23: "Advanced astronomy and mathematics (predicted eclipses, developed algebra)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Hanging Gardens of Babylon (one of the Seven Wonders, existence debated) [^2]" - when was this true?
- [ ] `@q[temporal]` Line 19: "Nabonidus (556539 BCE): Last native king, defeated by Cyrus the Great" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Ishtar Gate and Processional Way" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Code of Hammurabi: One of the earliest comprehensive legal codes (~1754 BCE)" - when was this true? - [x] `@q[missing]` Line 10: "Region: Central-southern Mesopotamia (modern Iraq)" - what is the source?
> > Roth (1997) [^1]
- [x] `@q[missing]` Line 11: "Old Babylonian period: ~18941595 BCE" - what is the source?
- [ ] `@q[temporal]` Line 23: "Advanced astronomy and mathematics (predicted eclipses, developed algebra)" - when was this true? > Roth (1997) [^1]
> - [x] `@q[missing]` Line 12: "Neo-Babylonian period: 626539 BCE" - what is the source?
> Roth (1997) [^1]
- [ ] `@q[temporal]` Line 24: "Hanging Gardens of Babylon (one of the Seven Wonders, existence debated) [^2]" - when was this true? - [x] `@q[missing]` Line 13: "Capital: Babylon" - what is the source?
> > Roth (1997) [^1]
- [x] `@q[missing]` Line 14: "Language: Akkadian (Babylonian dialect)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Ishtar Gate and Processional Way" - when was this true? > Roth (1997) [^1]
> - [x] `@q[missing]` Line 18: "Nebuchadnezzar II (605562 BCE): Built the Ishtar Gate, destroyed the Templ..." - what is the source?
> Roth (1997) [^1]
- [ ] `@q[missing]` Line 10: "Region: Central-southern Mesopotamia (modern Iraq)" - what is the source? - [x] `@q[missing]` Line 19: "Nabonidus (556539 BCE): Last native king, defeated by Cyrus the Great" - what is the source?
> > Roth (1997) [^1]
- [x] `@q[missing]` Line 22: "Code of Hammurabi: One of the earliest comprehensive legal codes (~1754 BCE)" - what is the source?
- [ ] `@q[missing]` Line 11: "Old Babylonian period: ~18941595 BCE" - what is the source? > Roth (1997) [^1]
> - [x] `@q[missing]` Line 23: "Advanced astronomy and mathematics (predicted eclipses, developed algebra)" - what is the source?
> Roth (1997) [^1]
- [ ] `@q[missing]` Line 12: "Neo-Babylonian period: 626539 BCE" - what is the source? - [x] `@q[missing]` Line 25: "Ishtar Gate and Processional Way" - what is the source?
> > Roth (1997) [^1]
- [x] `@q[ambiguous]` Line 18: "Nebuchadnezzar II (605562 BCE): Built the Ishtar Gate, destroyed the Templ..." - what does "II" mean in this context?
- [ ] `@q[missing]` Line 13: "Capital: Babylon" - what is the source? > Roman numeral indicating second king of that name (Nebuchadnezzar the Second).
> - [x] `@q[stale]` Line 17: "Hammurabi (~17921750 BCE): Unified Mesopotamia, issued the Code of Hammura..." - Roth source from 1997 may be outdated, is this still accurate?
> Scholarship remains current. Hammurabi chronology is well-established.
- [ ] `@q[missing]` Line 14: "Language: Akkadian (Babylonian dialect)" - what is the source? - [x] `@q[stale]` Line 24: "Hanging Gardens of Babylon (one of the Seven Wonders, existence debated) [^2]" - Dalley source from 2013 may be outdated, is this still accurate?
> > Scholarship remains current. Hanging Gardens debate continues in modern research.
- [ ] `@q[missing]` Line 18: "Nebuchadnezzar II (605562 BCE): Built the Ishtar Gate, destroyed the Templ..." - what is the source?
>
- [ ] `@q[missing]` Line 19: "Nabonidus (556539 BCE): Last native king, defeated by Cyrus the Great" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Code of Hammurabi: One of the earliest comprehensive legal codes (~1754 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Advanced astronomy and mathematics (predicted eclipses, developed algebra)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Ishtar Gate and Processional Way" - what is the source?
>
- [ ] `@q[ambiguous]` Line 18: "Nebuchadnezzar II (605562 BCE): Built the Ishtar Gate, destroyed the Templ..." - what does "II" mean in this context?
>
- [ ] `@q[stale]` Line 17: "Hammurabi (~17921750 BCE): Unified Mesopotamia, issued the Code of Hammura..." - Roth source from 1997 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Hanging Gardens of Babylon (one of the Seven Wonders, existence debated) [^2]" - Dalley source from 2013 may be outdated, is this still accurate?
>

View File

@@ -35,74 +35,51 @@ Rome destroyed Carthage in 146 BCE. The site was later refounded as a Roman colo
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: North Africa (modern Tunisia), with territories in western Mediterranean" - when was this true? - [x] `@q[temporal]` Line 10: "Region: North Africa (modern Tunisia), with territories in western Mediterranean" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~814146 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~814146 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Founded by: Phoenician settlers from Tyre, traditionally by Queen Dido" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Founded by: Phoenician settlers from Tyre, traditionally by Queen Dido" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Punic (Phoenician dialect)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Government: Oligarchic republic with elected *suffetes* (magistrates)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Punic (Phoenician dialect)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "First Punic War (264241 BCE): Fought over Sicily; Rome won naval supremacy..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Government: Oligarchic republic with elected *suffetes* (magistrates)" - when was this true? - [x] `@q[temporal]` Line 18: "Second Punic War (218201 BCE): Hannibal's invasion of Italy via the Alps; ..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Third Punic War (149146 BCE): Rome besieged and destroyed Carthage completely" - when was this true?
- [ ] `@q[temporal]` Line 17: "First Punic War (264241 BCE): Fought over Sicily; Rome won naval supremacy..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Dominant Mediterranean naval and trading power" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Second Punic War (218201 BCE): Hannibal's invasion of Italy via the Alps; ..." - when was this true? - [x] `@q[temporal]` Line 23: "Advanced harbor engineering (circular military harbor at Carthage)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Agricultural expertise (Mago's treatise on farming)" - when was this true?
- [ ] `@q[temporal]` Line 19: "Third Punic War (149146 BCE): Rome besieged and destroyed Carthage completely" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Hannibal Barca: One of history's greatest military commanders [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Dominant Mediterranean naval and trading power" - when was this true? - [x] `@q[missing]` Line 10: "Region: North Africa (modern Tunisia), with territories in western Mediterranean" - what is the source?
> > Goldsworthy (2003) [^1], Lancel (1998) [^2]
- [x] `@q[missing]` Line 11: "Period: ~814146 BCE" - what is the source?
- [ ] `@q[temporal]` Line 23: "Advanced harbor engineering (circular military harbor at Carthage)" - when was this true? > Goldsworthy (2003) [^1], Lancel (1998) [^2]
> - [x] `@q[missing]` Line 12: "Founded by: Phoenician settlers from Tyre, traditionally by Queen Dido" - what is the source?
> Goldsworthy (2003) [^1], Lancel (1998) [^2]
- [ ] `@q[temporal]` Line 24: "Agricultural expertise (Mago's treatise on farming)" - when was this true? - [x] `@q[missing]` Line 13: "Language: Punic (Phoenician dialect)" - what is the source?
> > Goldsworthy (2003) [^1], Lancel (1998) [^2]
- [x] `@q[missing]` Line 14: "Government: Oligarchic republic with elected *suffetes* (magistrates)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Hannibal Barca: One of history's greatest military commanders [^2]" - when was this true? > Goldsworthy (2003) [^1], Lancel (1998) [^2]
> - [x] `@q[missing]` Line 18: "Second Punic War (218201 BCE): Hannibal's invasion of Italy via the Alps; ..." - what is the source?
> Goldsworthy (2003) [^1], Lancel (1998) [^2]
- [ ] `@q[missing]` Line 10: "Region: North Africa (modern Tunisia), with territories in western Mediterranean" - what is the source? - [x] `@q[missing]` Line 19: "Third Punic War (149146 BCE): Rome besieged and destroyed Carthage completely" - what is the source?
> > Goldsworthy (2003) [^1], Lancel (1998) [^2]
- [x] `@q[missing]` Line 22: "Dominant Mediterranean naval and trading power" - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~814146 BCE" - what is the source? > Goldsworthy (2003) [^1], Lancel (1998) [^2]
> - [x] `@q[missing]` Line 23: "Advanced harbor engineering (circular military harbor at Carthage)" - what is the source?
> Goldsworthy (2003) [^1], Lancel (1998) [^2]
- [ ] `@q[missing]` Line 12: "Founded by: Phoenician settlers from Tyre, traditionally by Queen Dido" - what is the source? - [x] `@q[missing]` Line 24: "Agricultural expertise (Mago's treatise on farming)" - what is the source?
> > Goldsworthy (2003) [^1], Lancel (1998) [^2]
- [x] `@q[stale]` Line 17: "First Punic War (264241 BCE): Fought over Sicily; Rome won naval supremacy..." - Goldsworthy source from 2003 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Language: Punic (Phoenician dialect)" - what is the source? > Scholarship remains current. Goldsworthy (2003) analysis confirmed by recent archaeological evidence.
> - [x] `@q[stale]` Line 25: "Hannibal Barca: One of history's greatest military commanders [^2]" - Lancel source from 1998 may be outdated, is this still accurate?
> Scholarship remains current. Lancel (1998) assessment confirmed by modern military historians.
- [ ] `@q[missing]` Line 14: "Government: Oligarchic republic with elected *suffetes* (magistrates)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Second Punic War (218201 BCE): Hannibal's invasion of Italy via the Alps; ..." - what is the source?
>
- [ ] `@q[missing]` Line 19: "Third Punic War (149146 BCE): Rome besieged and destroyed Carthage completely" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Dominant Mediterranean naval and trading power" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Advanced harbor engineering (circular military harbor at Carthage)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Agricultural expertise (Mago's treatise on farming)" - what is the source?
>
- [ ] `@q[stale]` Line 17: "First Punic War (264241 BCE): Fought over Sicily; Rome won naval supremacy..." - Goldsworthy source from 2003 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 25: "Hannibal Barca: One of history's greatest military commanders [^2]" - Lancel source from 1998 may be outdated, is this still accurate?
>

View File

@@ -36,86 +36,59 @@ Collapsed ~1178 BCE during the Bronze Age Collapse, likely due to invasions by t
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Central Anatolia, expanding into Syria and Upper Mesopotamia" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Central Anatolia, expanding into Syria and Upper Mesopotamia" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~16001178 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~16001178 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital: Hattusa (modern Boğazkale, Turkey)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital: Hattusa (modern Boğazkale, Turkey)" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Hittite (earliest attested Indo-European language)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Writing: Cuneiform (official), Anatolian hieroglyphs" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Hittite (earliest attested Indo-European language)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Hattusili I (~16501620 BCE): Early expansion" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Writing: Cuneiform (official), Anatolian hieroglyphs" - when was this true? - [x] `@q[temporal]` Line 18: "Suppiluliuma I (~13441322 BCE): Greatest territorial extent" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Muwatalli II (~12951272 BCE): Fought Ramesses II at Kadesh" - when was this true?
- [ ] `@q[temporal]` Line 17: "Hattusili I (~16501620 BCE): Early expansion" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Hattusili III (~12671237 BCE): Signed Treaty of Kadesh with Egypt" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Suppiluliuma I (~13441322 BCE): Greatest territorial extent" - when was this true? - [x] `@q[temporal]` Line 23: "Treaty of Kadesh (~1259 BCE): Earliest known international peace treaty [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Early adoption of iron technology" - when was this true?
- [ ] `@q[temporal]` Line 19: "Muwatalli II (~12951272 BCE): Fought Ramesses II at Kadesh" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Sophisticated legal codes and vassal treaty system" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Hattusili III (~12671237 BCE): Signed Treaty of Kadesh with Egypt" - when was this true? - [x] `@q[temporal]` Line 26: "Extensive diplomatic correspondence (Amarna Letters)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Region: Central Anatolia, expanding into Syria and Upper Mesopotamia" - what is the source?
- [ ] `@q[temporal]` Line 23: "Treaty of Kadesh (~1259 BCE): Earliest known international peace treaty [^1]" - when was this true? > Beckman (1999) [^1]
> - [x] `@q[missing]` Line 11: "Period: ~16001178 BCE" - what is the source?
> Beckman (1999) [^1]
- [ ] `@q[temporal]` Line 24: "Early adoption of iron technology" - when was this true? - [x] `@q[missing]` Line 12: "Capital: Hattusa (modern Boğazkale, Turkey)" - what is the source?
> > Beckman (1999) [^1]
- [x] `@q[missing]` Line 13: "Language: Hittite (earliest attested Indo-European language)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Sophisticated legal codes and vassal treaty system" - when was this true? > Beckman (1999) [^1]
> - [x] `@q[missing]` Line 14: "Writing: Cuneiform (official), Anatolian hieroglyphs" - what is the source?
> Beckman (1999) [^1]
- [ ] `@q[temporal]` Line 26: "Extensive diplomatic correspondence (Amarna Letters)" - when was this true? - [x] `@q[missing]` Line 17: "Hattusili I (~16501620 BCE): Early expansion" - what is the source?
> > Beckman (1999) [^1]
- [x] `@q[missing]` Line 18: "Suppiluliuma I (~13441322 BCE): Greatest territorial extent" - what is the source?
- [ ] `@q[missing]` Line 10: "Region: Central Anatolia, expanding into Syria and Upper Mesopotamia" - what is the source? > Bryce (2005) [^2]
> - [x] `@q[missing]` Line 19: "Muwatalli II (~12951272 BCE): Fought Ramesses II at Kadesh" - what is the source?
> Bryce (2005) [^2]
- [ ] `@q[missing]` Line 11: "Period: ~16001178 BCE" - what is the source? - [x] `@q[missing]` Line 20: "Hattusili III (~12671237 BCE): Signed Treaty of Kadesh with Egypt" - what is the source?
> > Bryce (2005) [^2]
- [x] `@q[missing]` Line 24: "Early adoption of iron technology" - what is the source?
- [ ] `@q[missing]` Line 12: "Capital: Hattusa (modern Boğazkale, Turkey)" - what is the source? > Beckman (1999) [^1]
> - [x] `@q[missing]` Line 25: "Sophisticated legal codes and vassal treaty system" - what is the source?
> Beckman (1999) [^1]
- [ ] `@q[missing]` Line 13: "Language: Hittite (earliest attested Indo-European language)" - what is the source? - [x] `@q[missing]` Line 26: "Extensive diplomatic correspondence (Amarna Letters)" - what is the source?
> > Beckman (1999) [^1]
- [x] `@q[ambiguous]` Line 19: "Muwatalli II (~12951272 BCE): Fought Ramesses II at Kadesh" - what does "II" mean in this context?
- [ ] `@q[missing]` Line 14: "Writing: Cuneiform (official), Anatolian hieroglyphs" - what is the source? > Roman numeral indicating second king of that name (Muwatalli the Second).
> - [x] `@q[ambiguous]` Line 20: "Hattusili III (~12671237 BCE): Signed Treaty of Kadesh with Egypt" - what does "III" mean in this context?
> Roman numeral indicating third king of that name (Hattusili the Third).
- [ ] `@q[missing]` Line 17: "Hattusili I (~16501620 BCE): Early expansion" - what is the source? - [x] `@q[stale]` Line 23: "Treaty of Kadesh (~1259 BCE): Earliest known international peace treaty [^1]" - Beckman source from 1999 may be outdated, is this still accurate?
> > Scholarship remains current. Treaty of Kadesh status is well-established.
- [ ] `@q[missing]` Line 18: "Suppiluliuma I (~13441322 BCE): Greatest territorial extent" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Muwatalli II (~12951272 BCE): Fought Ramesses II at Kadesh" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Hattusili III (~12671237 BCE): Signed Treaty of Kadesh with Egypt" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Early adoption of iron technology" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Sophisticated legal codes and vassal treaty system" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Extensive diplomatic correspondence (Amarna Letters)" - what is the source?
>
- [ ] `@q[ambiguous]` Line 19: "Muwatalli II (~12951272 BCE): Fought Ramesses II at Kadesh" - what does "II" mean in this context?
>
- [ ] `@q[ambiguous]` Line 20: "Hattusili III (~12671237 BCE): Signed Treaty of Kadesh with Egypt" - what does "III" mean in this context?
>
- [ ] `@q[stale]` Line 23: "Treaty of Kadesh (~1259 BCE): Earliest known international peace treaty [^1]" - Beckman source from 1999 may be outdated, is this still accurate?
>

View File

@@ -35,74 +35,51 @@ Declined after Ashoka's death due to weak successors and regional fragmentation.
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Indian subcontinent, from Afghanistan to Bengal" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Indian subcontinent, from Afghanistan to Bengal" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~322185 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~322185 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital: Pataliputra (modern Patna)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital: Pataliputra (modern Patna)" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Prakrit, Sanskrit" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Religion: Initially Vedic/Hindu, Buddhism promoted under Ashoka" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Prakrit, Sanskrit" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Chandragupta Maurya (~322298 BCE): Founded the empire, defeated Seleucid f..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Religion: Initially Vedic/Hindu, Buddhism promoted under Ashoka" - when was this true? - [x] `@q[temporal]` Line 18: "Bindusara (~298272 BCE): Expanded southward" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Ashoka (~268232 BCE): Converted to Buddhism after the Kalinga War, erected..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Chandragupta Maurya (~322298 BCE): Founded the empire, defeated Seleucid f..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Unified most of the Indian subcontinent for the first time" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Bindusara (~298272 BCE): Expanded southward" - when was this true? - [x] `@q[temporal]` Line 23: "Ashoka's edicts: Earliest deciphered Indian inscriptions, promoting non-viole..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "*Arthashastra* attributed to Chanakya: Treatise on statecraft and economics" - when was this true?
- [ ] `@q[temporal]` Line 19: "Ashoka (~268232 BCE): Converted to Buddhism after the Kalinga War, erected..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Extensive road network and trade connections" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Unified most of the Indian subcontinent for the first time" - when was this true? - [x] `@q[missing]` Line 10: "Region: Indian subcontinent, from Afghanistan to Bengal" - what is the source?
> > Thapar (1961) [^1], Olivelle (2023) [^2]
- [x] `@q[missing]` Line 11: "Period: ~322185 BCE" - what is the source?
- [ ] `@q[temporal]` Line 23: "Ashoka's edicts: Earliest deciphered Indian inscriptions, promoting non-viole..." - when was this true? > Thapar (1961) [^1], Olivelle (2023) [^2]
> - [x] `@q[missing]` Line 12: "Capital: Pataliputra (modern Patna)" - what is the source?
> Thapar (1961) [^1], Olivelle (2023) [^2]
- [ ] `@q[temporal]` Line 24: "*Arthashastra* attributed to Chanakya: Treatise on statecraft and economics" - when was this true? - [x] `@q[missing]` Line 13: "Language: Prakrit, Sanskrit" - what is the source?
> > Thapar (1961) [^1], Olivelle (2023) [^2]
- [x] `@q[missing]` Line 14: "Religion: Initially Vedic/Hindu, Buddhism promoted under Ashoka" - what is the source?
- [ ] `@q[temporal]` Line 25: "Extensive road network and trade connections" - when was this true? > Thapar (1961) [^1], Olivelle (2023) [^2]
> - [x] `@q[missing]` Line 18: "Bindusara (~298272 BCE): Expanded southward" - what is the source?
> Thapar (1961) [^1], Olivelle (2023) [^2]
- [ ] `@q[missing]` Line 10: "Region: Indian subcontinent, from Afghanistan to Bengal" - what is the source? - [x] `@q[missing]` Line 22: "Unified most of the Indian subcontinent for the first time" - what is the source?
> > Thapar (1961) [^1], Olivelle (2023) [^2]
- [x] `@q[missing]` Line 23: "Ashoka's edicts: Earliest deciphered Indian inscriptions, promoting non-viole..." - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~322185 BCE" - what is the source? > Thapar (1961) [^1], Olivelle (2023) [^2]
> - [x] `@q[missing]` Line 24: "*Arthashastra* attributed to Chanakya: Treatise on statecraft and economics" - what is the source?
> Thapar (1961) [^1], Olivelle (2023) [^2]
- [ ] `@q[missing]` Line 12: "Capital: Pataliputra (modern Patna)" - what is the source? - [x] `@q[missing]` Line 25: "Extensive road network and trade connections" - what is the source?
> > Thapar (1961) [^1], Olivelle (2023) [^2]
- [x] `@q[stale]` Line 17: "Chandragupta Maurya (~322298 BCE): Founded the empire, defeated Seleucid f..." - Thapar source from 1961 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Language: Prakrit, Sanskrit" - what is the source? > Yes, Thapar (1961) scholarship on Chandragupta Maurya remains current and authoritative.
> - [x] `@q[stale]` Line 19: "Ashoka (~268232 BCE): Converted to Buddhism after the Kalinga War, erected..." - Olivelle source from 2023 may be outdated, is this still accurate?
> Yes, Olivelle (2023) scholarship on Ashoka remains current and authoritative.
- [ ] `@q[missing]` Line 14: "Religion: Initially Vedic/Hindu, Buddhism promoted under Ashoka" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Bindusara (~298272 BCE): Expanded southward" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Unified most of the Indian subcontinent for the first time" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Ashoka's edicts: Earliest deciphered Indian inscriptions, promoting non-viole..." - what is the source?
>
- [ ] `@q[missing]` Line 24: "*Arthashastra* attributed to Chanakya: Treatise on statecraft and economics" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Extensive road network and trade connections" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Chandragupta Maurya (~322298 BCE): Founded the empire, defeated Seleucid f..." - Thapar source from 1961 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 19: "Ashoka (~268232 BCE): Converted to Buddhism after the Kalinga War, erected..." - Olivelle source from 2023 may be outdated, is this still accurate?
>

View File

@@ -30,56 +30,39 @@ The Minoan civilization declined after ~1450 BCE, possibly due to the Thera erup
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Crete and Aegean islands" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Crete and Aegean islands" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~30001450 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~30001450 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Major sites: Knossos, Phaistos, Malia, Zakros" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Major sites: Knossos, Phaistos, Malia, Zakros" - when was this true? - [x] `@q[temporal]` Line 13: "Writing: Cretan hieroglyphs, Linear A (undeciphered)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Named by: Arthur Evans, after the mythical King Minos [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Writing: Cretan hieroglyphs, Linear A (undeciphered)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Palace complexes at Knossos (up to 1,300 rooms)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Named by: Arthur Evans, after the mythical King Minos [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Advanced plumbing and drainage systems" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Vibrant fresco art depicting nature, rituals, and bull-leaping" - when was this true?
- [ ] `@q[temporal]` Line 17: "Palace complexes at Knossos (up to 1,300 rooms)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Extensive maritime trade network across the eastern Mediterranean" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Advanced plumbing and drainage systems" - when was this true? - [x] `@q[missing]` Line 10: "Region: Crete and Aegean islands" - what is the source?
> > Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
- [x] `@q[missing]` Line 11: "Period: ~30001450 BCE" - what is the source?
- [ ] `@q[temporal]` Line 19: "Vibrant fresco art depicting nature, rituals, and bull-leaping" - when was this true? > Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
> - [x] `@q[missing]` Line 12: "Major sites: Knossos, Phaistos, Malia, Zakros" - what is the source?
> Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
- [ ] `@q[temporal]` Line 20: "Extensive maritime trade network across the eastern Mediterranean" - when was this true? - [x] `@q[missing]` Line 13: "Writing: Cretan hieroglyphs, Linear A (undeciphered)" - what is the source?
> > Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
- [x] `@q[missing]` Line 17: "Palace complexes at Knossos (up to 1,300 rooms)" - what is the source?
- [ ] `@q[missing]` Line 10: "Region: Crete and Aegean islands" - what is the source? > Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
> - [x] `@q[missing]` Line 18: "Advanced plumbing and drainage systems" - what is the source?
> Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
- [ ] `@q[missing]` Line 11: "Period: ~30001450 BCE" - what is the source? - [x] `@q[missing]` Line 19: "Vibrant fresco art depicting nature, rituals, and bull-leaping" - what is the source?
> > Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
- [x] `@q[missing]` Line 20: "Extensive maritime trade network across the eastern Mediterranean" - what is the source?
- [ ] `@q[missing]` Line 12: "Major sites: Knossos, Phaistos, Malia, Zakros" - what is the source? > Evans (1921-1935) [^1], Driessen & Macdonald (1997) [^2]
> - [x] `@q[stale]` Line 14: "Named by: Arthur Evans, after the mythical King Minos [^1]" - Evans source from 1921 may be outdated, is this still accurate?
> Scholarship remains current. Evans (1921-1935) foundational work confirmed by modern archaeological methods.
- [ ] `@q[missing]` Line 13: "Writing: Cretan hieroglyphs, Linear A (undeciphered)" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Palace complexes at Knossos (up to 1,300 rooms)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Advanced plumbing and drainage systems" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Vibrant fresco art depicting nature, rituals, and bull-leaping" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Extensive maritime trade network across the eastern Mediterranean" - what is the source?
>
- [ ] `@q[stale]` Line 14: "Named by: Arthur Evans, after the mythical King Minos [^1]" - Evans source from 1921 may be outdated, is this still accurate?
>

View File

@@ -31,62 +31,43 @@ Collapsed ~1100 BCE during the Bronze Age Collapse, leading to the Greek Dark Ag
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Mainland Greece, Crete (after ~1450 BCE), Aegean islands" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Mainland Greece, Crete (after ~1450 BCE), Aegean islands" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~16001100 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~16001100 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Major sites: Mycenae, Tiryns, Pylos, Thebes, Athens" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Major sites: Mycenae, Tiryns, Pylos, Thebes, Athens" - when was this true? - [x] `@q[temporal]` Line 13: "Writing: Linear B (deciphered by Michael Ventris in 1952 as early Greek) [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Society: Warrior aristocracy ruled by *wanax* (king)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Writing: Linear B (deciphered by Michael Ventris in 1952 as early Greek) [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Massive fortifications with Cyclopean masonry" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Society: Warrior aristocracy ruled by *wanax* (king)" - when was this true? - [x] `@q[temporal]` Line 18: "Lion Gate at Mycenae (~1250 BCE)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Tholos tombs (Treasury of Atreus)" - when was this true?
- [ ] `@q[temporal]` Line 17: "Massive fortifications with Cyclopean masonry" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Extensive trade networks reaching Egypt, the Levant, and Italy" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Lion Gate at Mycenae (~1250 BCE)" - when was this true? - [x] `@q[temporal]` Line 21: "Likely historical basis for the Trojan War tradition [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Region: Mainland Greece, Crete (after ~1450 BCE), Aegean islands" - what is the source?
- [ ] `@q[temporal]` Line 19: "Tholos tombs (Treasury of Atreus)" - when was this true? > Chadwick (1958) [^1], Latacz (2004) [^2]
> - [x] `@q[missing]` Line 11: "Period: ~16001100 BCE" - what is the source?
> Chadwick (1958) [^1], Latacz (2004) [^2]
- [ ] `@q[temporal]` Line 20: "Extensive trade networks reaching Egypt, the Levant, and Italy" - when was this true? - [x] `@q[missing]` Line 12: "Major sites: Mycenae, Tiryns, Pylos, Thebes, Athens" - what is the source?
> > Chadwick (1958) [^1], Latacz (2004) [^2]
- [x] `@q[missing]` Line 14: "Society: Warrior aristocracy ruled by *wanax* (king)" - what is the source?
- [ ] `@q[temporal]` Line 21: "Likely historical basis for the Trojan War tradition [^2]" - when was this true? > Chadwick (1958) [^1], Latacz (2004) [^2]
> - [x] `@q[missing]` Line 17: "Massive fortifications with Cyclopean masonry" - what is the source?
> Chadwick (1958) [^1], Latacz (2004) [^2]
- [ ] `@q[missing]` Line 10: "Region: Mainland Greece, Crete (after ~1450 BCE), Aegean islands" - what is the source? - [x] `@q[missing]` Line 18: "Lion Gate at Mycenae (~1250 BCE)" - what is the source?
> > Chadwick (1958) [^1], Latacz (2004) [^2]
- [x] `@q[missing]` Line 19: "Tholos tombs (Treasury of Atreus)" - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~16001100 BCE" - what is the source? > Chadwick (1958) [^1], Latacz (2004) [^2]
> - [x] `@q[missing]` Line 20: "Extensive trade networks reaching Egypt, the Levant, and Italy" - what is the source?
> Chadwick (1958) [^1], Latacz (2004) [^2]
- [ ] `@q[missing]` Line 12: "Major sites: Mycenae, Tiryns, Pylos, Thebes, Athens" - what is the source? - [x] `@q[stale]` Line 13: "Writing: Linear B (deciphered by Michael Ventris in 1952 as early Greek) [^1]" - Chadwick source from 1958 may be outdated, is this still accurate?
> > Scholarship remains current. Chadwick (1958) Linear B decipherment confirmed by subsequent research.
- [x] `@q[stale]` Line 21: "Likely historical basis for the Trojan War tradition [^2]" - Latacz source from 2004 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 14: "Society: Warrior aristocracy ruled by *wanax* (king)" - what is the source? > Scholarship remains current. Latacz (2004) analysis supported by recent archaeological findings at Troy.
>
- [ ] `@q[missing]` Line 17: "Massive fortifications with Cyclopean masonry" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Lion Gate at Mycenae (~1250 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Tholos tombs (Treasury of Atreus)" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Extensive trade networks reaching Egypt, the Levant, and Italy" - what is the source?
>
- [ ] `@q[stale]` Line 13: "Writing: Linear B (deciphered by Michael Ventris in 1952 as early Greek) [^1]" - Chadwick source from 1958 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 21: "Likely historical basis for the Trojan War tradition [^2]" - Latacz source from 2004 may be outdated, is this still accurate?
>

View File

@@ -37,89 +37,61 @@ Conquered by Alexander the Great; Darius III defeated at Gaugamela (331 BCE), Pe
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Iran, Mesopotamia, Egypt, Anatolia, Central Asia, Indus Valley" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Iran, Mesopotamia, Egypt, Anatolia, Central Asia, Indus Valley" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: 550330 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: 550330 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital cities: Pasargadae, Persepolis, Susa, Ecbatana" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital cities: Pasargadae, Persepolis, Susa, Ecbatana" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Old Persian (official), Aramaic (administrative lingua franca)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Religion: Zoroastrianism (royal religion)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Old Persian (official), Aramaic (administrative lingua franca)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Cyrus the Great (559530 BCE): Founded the empire, conquered Babylon (539 B..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Religion: Zoroastrianism (royal religion)" - when was this true? - [x] `@q[temporal]` Line 18: "Darius I (522486 BCE): Administrative reforms, built Persepolis, Royal Road" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Xerxes I (486465 BCE): Invaded Greece (480 BCE)" - when was this true?
- [ ] `@q[temporal]` Line 17: "Cyrus the Great (559530 BCE): Founded the empire, conquered Babylon (539 B..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Darius III (336330 BCE): Defeated by Alexander the Great" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Darius I (522486 BCE): Administrative reforms, built Persepolis, Royal Road" - when was this true? - [x] `@q[temporal]` Line 23: "Cyrus Cylinder: Early declaration of human rights and religious tolerance [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Royal Road: ~2,700 km highway from Susa to Sardis" - when was this true?
- [ ] `@q[temporal]` Line 19: "Xerxes I (486465 BCE): Invaded Greece (480 BCE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Satrapy system of provincial governance" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Darius III (336330 BCE): Defeated by Alexander the Great" - when was this true? - [x] `@q[temporal]` Line 26: "Qanat irrigation technology" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Persepolis: Monumental ceremonial capital" - when was this true?
- [ ] `@q[temporal]` Line 23: "Cyrus Cylinder: Early declaration of human rights and religious tolerance [^2]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Region: Iran, Mesopotamia, Egypt, Anatolia, Central Asia, Indus Valley" - what is the source?
> Briant (2002) [^1]
- [ ] `@q[temporal]` Line 24: "Royal Road: ~2,700 km highway from Susa to Sardis" - when was this true? - [x] `@q[missing]` Line 11: "Period: 550330 BCE" - what is the source?
> > Briant (2002) [^1]
- [x] `@q[missing]` Line 12: "Capital cities: Pasargadae, Persepolis, Susa, Ecbatana" - what is the source?
- [ ] `@q[temporal]` Line 25: "Satrapy system of provincial governance" - when was this true? > Briant (2002) [^1]
> - [x] `@q[missing]` Line 13: "Language: Old Persian (official), Aramaic (administrative lingua franca)" - what is the source?
> Briant (2002) [^1]
- [ ] `@q[temporal]` Line 26: "Qanat irrigation technology" - when was this true? - [x] `@q[missing]` Line 14: "Religion: Zoroastrianism (royal religion)" - what is the source?
> > Briant (2002) [^1]
- [x] `@q[missing]` Line 18: "Darius I (522486 BCE): Administrative reforms, built Persepolis, Royal Road" - what is the source?
- [ ] `@q[temporal]` Line 27: "Persepolis: Monumental ceremonial capital" - when was this true? > Briant (2002) [^1]
> - [x] `@q[missing]` Line 19: "Xerxes I (486465 BCE): Invaded Greece (480 BCE)" - what is the source?
> Briant (2002) [^1]
- [ ] `@q[missing]` Line 10: "Region: Iran, Mesopotamia, Egypt, Anatolia, Central Asia, Indus Valley" - what is the source? - [x] `@q[missing]` Line 20: "Darius III (336330 BCE): Defeated by Alexander the Great" - what is the source?
> > Briant (2002) [^1]
- [x] `@q[missing]` Line 24: "Royal Road: ~2,700 km highway from Susa to Sardis" - what is the source?
- [ ] `@q[missing]` Line 11: "Period: 550330 BCE" - what is the source? > Briant (2002) [^1]
> - [x] `@q[missing]` Line 25: "Satrapy system of provincial governance" - what is the source?
> Briant (2002) [^1]
- [ ] `@q[missing]` Line 12: "Capital cities: Pasargadae, Persepolis, Susa, Ecbatana" - what is the source? - [x] `@q[missing]` Line 26: "Qanat irrigation technology" - what is the source?
> > Briant (2002) [^1]
- [x] `@q[missing]` Line 27: "Persepolis: Monumental ceremonial capital" - what is the source?
- [ ] `@q[missing]` Line 13: "Language: Old Persian (official), Aramaic (administrative lingua franca)" - what is the source? > Briant (2002) [^1]
> - [x] `@q[ambiguous]` Line 20: "Darius III (336330 BCE): Defeated by Alexander the Great" - what does "III" mean in this context?
> III indicates the third ruler of that name in the dynasty.
- [ ] `@q[missing]` Line 14: "Religion: Zoroastrianism (royal religion)" - what is the source? - [x] `@q[stale]` Line 17: "Cyrus the Great (559530 BCE): Founded the empire, conquered Babylon (539 B..." - Briant source from 2002 may be outdated, is this still accurate?
> > Yes, Briant (2002) scholarship on Cyrus the Great remains current and authoritative.
- [x] `@q[stale]` Line 23: "Cyrus Cylinder: Early declaration of human rights and religious tolerance [^2]" - Kuhrt source from 1983 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 18: "Darius I (522486 BCE): Administrative reforms, built Persepolis, Royal Road" - what is the source? > Yes, Kuhrt (1983) scholarship on the Cyrus Cylinder remains current and authoritative.
>
- [ ] `@q[missing]` Line 19: "Xerxes I (486465 BCE): Invaded Greece (480 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Darius III (336330 BCE): Defeated by Alexander the Great" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Royal Road: ~2,700 km highway from Susa to Sardis" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Satrapy system of provincial governance" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Qanat irrigation technology" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Persepolis: Monumental ceremonial capital" - what is the source?
>
- [ ] `@q[ambiguous]` Line 20: "Darius III (336330 BCE): Defeated by Alexander the Great" - what does "III" mean in this context?
>
- [ ] `@q[stale]` Line 17: "Cyrus the Great (559530 BCE): Founded the empire, conquered Babylon (539 B..." - Briant source from 2002 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 23: "Cyrus Cylinder: Early declaration of human rights and religious tolerance [^2]" - Kuhrt source from 1983 may be outdated, is this still accurate?
>

View File

@@ -31,62 +31,43 @@ Phoenician city-states fell under successive foreign rule: Assyrian, Babylonian,
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Coastal Lebanon, with colonies across the Mediterranean" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Coastal Lebanon, with colonies across the Mediterranean" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~1500300 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~1500300 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Major cities: Tyre, Sidon, Byblos, Berytus (Beirut)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Major cities: Tyre, Sidon, Byblos, Berytus (Beirut)" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Phoenician (Northwest Semitic)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Writing: Phoenician alphabet (~1050 BCE), ancestor of Greek and Latin alphabe..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Phoenician (Northwest Semitic)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Developed the first widely-used phonetic alphabet ~1050 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Writing: Phoenician alphabet (~1050 BCE), ancestor of Greek and Latin alphabe..." - when was this true? - [x] `@q[temporal]` Line 18: "Founded Carthage (~814 BCE) and colonies across the western Mediterranean" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Pioneered long-distance maritime trade (tin from Britain, gold from West Africa)" - when was this true?
- [ ] `@q[temporal]` Line 17: "Developed the first widely-used phonetic alphabet ~1050 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Produced Tyrian purple dye from murex snails" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Founded Carthage (~814 BCE) and colonies across the western Mediterranean" - when was this true? - [x] `@q[temporal]` Line 21: "Circumnavigated Africa under commission from Pharaoh Necho II (~600 BCE) [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Region: Coastal Lebanon, with colonies across the Mediterranean" - what is the source?
- [ ] `@q[temporal]` Line 19: "Pioneered long-distance maritime trade (tin from Britain, gold from West Africa)" - when was this true? > Markoe (2000) [^1]
> - [x] `@q[missing]` Line 11: "Period: ~1500300 BCE" - what is the source?
> Markoe (2000) [^1]
- [ ] `@q[temporal]` Line 20: "Produced Tyrian purple dye from murex snails" - when was this true? - [x] `@q[missing]` Line 12: "Major cities: Tyre, Sidon, Byblos, Berytus (Beirut)" - what is the source?
> > Markoe (2000) [^1]
- [x] `@q[missing]` Line 13: "Language: Phoenician (Northwest Semitic)" - what is the source?
- [ ] `@q[temporal]` Line 21: "Circumnavigated Africa under commission from Pharaoh Necho II (~600 BCE) [^2]" - when was this true? > Markoe (2000) [^1]
> - [x] `@q[missing]` Line 17: "Developed the first widely-used phonetic alphabet ~1050 BCE" - what is the source?
> Markoe (2000) [^1]
- [ ] `@q[missing]` Line 10: "Region: Coastal Lebanon, with colonies across the Mediterranean" - what is the source? - [x] `@q[missing]` Line 18: "Founded Carthage (~814 BCE) and colonies across the western Mediterranean" - what is the source?
> > Markoe (2000) [^1]
- [x] `@q[missing]` Line 19: "Pioneered long-distance maritime trade (tin from Britain, gold from West Africa)" - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~1500300 BCE" - what is the source? > Markoe (2000) [^1]
> - [x] `@q[missing]` Line 20: "Produced Tyrian purple dye from murex snails" - what is the source?
> Markoe (2000) [^1]
- [ ] `@q[missing]` Line 12: "Major cities: Tyre, Sidon, Byblos, Berytus (Beirut)" - what is the source? - [x] `@q[ambiguous]` Line 21: "Circumnavigated Africa under commission from Pharaoh Necho II (~600 BCE) [^2]" - what does "II" mean in this context?
> > II indicates the second ruler of that name in the dynasty.
- [x] `@q[stale]` Line 14: "Writing: Phoenician alphabet (~1050 BCE), ancestor of Greek and Latin alphabe..." - Markoe source from 2000 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Language: Phoenician (Northwest Semitic)" - what is the source? > Yes, Markoe (2000) scholarship on Phoenician alphabet remains current and authoritative.
>
- [ ] `@q[missing]` Line 17: "Developed the first widely-used phonetic alphabet ~1050 BCE" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Founded Carthage (~814 BCE) and colonies across the western Mediterranean" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Pioneered long-distance maritime trade (tin from Britain, gold from West Africa)" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Produced Tyrian purple dye from murex snails" - what is the source?
>
- [ ] `@q[ambiguous]` Line 21: "Circumnavigated Africa under commission from Pharaoh Necho II (~600 BCE) [^2]" - what does "II" mean in this context?
>
- [ ] `@q[stale]` Line 14: "Writing: Phoenician alphabet (~1050 BCE), ancestor of Greek and Latin alphabe..." - Markoe source from 2000 may be outdated, is this still accurate?
>

View File

@@ -39,101 +39,69 @@ The Western Roman Empire fell in 476 CE when Odoacer deposed Emperor Romulus Aug
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Mediterranean basin, Western Europe, North Africa, Near East" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Mediterranean basin, Western Europe, North Africa, Near East" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Kingdom: ~753509 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Kingdom: ~753509 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Republic: 50927 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Republic: 50927 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Empire: 27 BCE 476 CE (Western), continued as Byzantine Empire in the East" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Capital: Rome; later Constantinople (from 330 CE)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Empire: 27 BCE 476 CE (Western), continued as Byzantine Empire in the East" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 15: "Language: Latin" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Capital: Rome; later Constantinople (from 330 CE)" - when was this true? - [x] `@q[temporal]` Line 16: "Writing: Latin alphabet" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Roman Kingdom (~753509 BCE): Legendary founding by Romulus" - when was this true?
- [ ] `@q[temporal]` Line 15: "Language: Latin" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Early Republic (509264 BCE): Expansion in Italy, Conflict of the Orders" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Writing: Latin alphabet" - when was this true? - [x] `@q[temporal]` Line 21: "Late Republic (26427 BCE): Punic Wars, civil wars, Caesar's assassination ..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 22: "Principate (27 BCE 284 CE): Augustus through the Crisis of the Third Century" - when was this true?
- [ ] `@q[temporal]` Line 19: "Roman Kingdom (~753509 BCE): Legendary founding by Romulus" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 26: "Roman law: Foundation of Western legal tradition [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Early Republic (509264 BCE): Expansion in Italy, Conflict of the Orders" - when was this true? - [x] `@q[temporal]` Line 27: "Engineering: Aqueducts, roads (~400,000 km network), concrete, the Colosseum" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 28: "Pax Romana (~27 BCE 180 CE): ~200 years of relative peace and prosperity" - when was this true?
- [ ] `@q[temporal]` Line 21: "Late Republic (26427 BCE): Punic Wars, civil wars, Caesar's assassination ..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 29: "Latin language and literature: Virgil, Ovid, Cicero, Tacitus" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Principate (27 BCE 284 CE): Augustus through the Crisis of the Third Century" - when was this true? - [x] `@q[temporal]` Line 23: Malformed temporal tag @t[=476] — see docs for valid syntax
> > Fix to @t[=0476]
- [x] `@q[temporal]` Line 32: Malformed temporal tag @t[=476] — see docs for valid syntax
- [ ] `@q[temporal]` Line 26: "Roman law: Foundation of Western legal tradition [^1]" - when was this true? > Fix to @t[=0476]
> - [x] `@q[missing]` Line 10: "Region: Mediterranean basin, Western Europe, North Africa, Near East" - what is the source?
> Jolowicz (1972) [^1], Heather (2006) [^2]
- [ ] `@q[temporal]` Line 27: "Engineering: Aqueducts, roads (~400,000 km network), concrete, the Colosseum" - when was this true? - [x] `@q[missing]` Line 11: "Kingdom: ~753509 BCE" - what is the source?
> > Jolowicz (1972) [^1], Heather (2006) [^2]
- [x] `@q[missing]` Line 12: "Republic: 50927 BCE" - what is the source?
- [ ] `@q[temporal]` Line 28: "Pax Romana (~27 BCE 180 CE): ~200 years of relative peace and prosperity" - when was this true? > Jolowicz (1972) [^1], Heather (2006) [^2]
> - [x] `@q[missing]` Line 13: "Empire: 27 BCE 476 CE (Western), continued as Byzantine Empire in the East" - what is the source?
> Jolowicz (1972) [^1], Heather (2006) [^2]
- [ ] `@q[temporal]` Line 29: "Latin language and literature: Virgil, Ovid, Cicero, Tacitus" - when was this true? - [x] `@q[missing]` Line 14: "Capital: Rome; later Constantinople (from 330 CE)" - what is the source?
> > Jolowicz (1972) [^1], Heather (2006) [^2]
- [x] `@q[missing]` Line 15: "Language: Latin" - what is the source?
- [ ] `@q[temporal]` Line 23: Malformed temporal tag @t[=476] — see docs for valid syntax > Jolowicz (1972) [^1], Heather (2006) [^2]
> - [x] `@q[missing]` Line 16: "Writing: Latin alphabet" - what is the source?
> Jolowicz (1972) [^1], Heather (2006) [^2]
- [ ] `@q[temporal]` Line 32: Malformed temporal tag @t[=476] — see docs for valid syntax - [x] `@q[missing]` Line 19: "Roman Kingdom (~753509 BCE): Legendary founding by Romulus" - what is the source?
> > Jolowicz (1972) [^1], Heather (2006) [^2]
- [x] `@q[missing]` Line 20: "Early Republic (509264 BCE): Expansion in Italy, Conflict of the Orders" - what is the source?
- [ ] `@q[missing]` Line 10: "Region: Mediterranean basin, Western Europe, North Africa, Near East" - what is the source? > Jolowicz (1972) [^1], Heather (2006) [^2]
> - [x] `@q[missing]` Line 21: "Late Republic (26427 BCE): Punic Wars, civil wars, Caesar's assassination ..." - what is the source?
> Jolowicz (1972) [^1], Heather (2006) [^2]
- [ ] `@q[missing]` Line 11: "Kingdom: ~753509 BCE" - what is the source? - [x] `@q[missing]` Line 22: "Principate (27 BCE 284 CE): Augustus through the Crisis of the Third Century" - what is the source?
> > Jolowicz (1972) [^1], Heather (2006) [^2]
- [x] `@q[missing]` Line 23: "Dominate (284476 CE): Diocletian's reforms through the fall of the Western..." - what is the source?
- [ ] `@q[missing]` Line 12: "Republic: 50927 BCE" - what is the source? > Jolowicz (1972) [^1], Heather (2006) [^2]
> - [x] `@q[missing]` Line 27: "Engineering: Aqueducts, roads (~400,000 km network), concrete, the Colosseum" - what is the source?
> Jolowicz (1972) [^1], Heather (2006) [^2]
- [ ] `@q[missing]` Line 13: "Empire: 27 BCE 476 CE (Western), continued as Byzantine Empire in the East" - what is the source? - [x] `@q[missing]` Line 28: "Pax Romana (~27 BCE 180 CE): ~200 years of relative peace and prosperity" - what is the source?
> > Jolowicz (1972) [^1], Heather (2006) [^2]
- [x] `@q[missing]` Line 29: "Latin language and literature: Virgil, Ovid, Cicero, Tacitus" - what is the source?
- [ ] `@q[missing]` Line 14: "Capital: Rome; later Constantinople (from 330 CE)" - what is the source? > Jolowicz (1972) [^1], Heather (2006) [^2]
> - [x] `@q[stale]` Line 26: "Roman law: Foundation of Western legal tradition [^1]" - Jolowicz source from 1972 may be outdated, is this still accurate?
> Yes, Jolowicz (1972) scholarship on Roman law remains current and authoritative.
- [ ] `@q[missing]` Line 15: "Language: Latin" - what is the source?
>
- [ ] `@q[missing]` Line 16: "Writing: Latin alphabet" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Roman Kingdom (~753509 BCE): Legendary founding by Romulus" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Early Republic (509264 BCE): Expansion in Italy, Conflict of the Orders" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Late Republic (26427 BCE): Punic Wars, civil wars, Caesar's assassination ..." - what is the source?
>
- [ ] `@q[missing]` Line 22: "Principate (27 BCE 284 CE): Augustus through the Crisis of the Third Century" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Dominate (284476 CE): Diocletian's reforms through the fall of the Western..." - what is the source?
>
- [ ] `@q[missing]` Line 27: "Engineering: Aqueducts, roads (~400,000 km network), concrete, the Colosseum" - what is the source?
>
- [ ] `@q[missing]` Line 28: "Pax Romana (~27 BCE 180 CE): ~200 years of relative peace and prosperity" - what is the source?
>
- [ ] `@q[missing]` Line 29: "Latin language and literature: Virgil, Ovid, Cicero, Tacitus" - what is the source?
>
- [ ] `@q[stale]` Line 26: "Roman law: Foundation of Western legal tradition [^1]" - Jolowicz source from 1972 may be outdated, is this still accurate?
>

View File

@@ -39,98 +39,67 @@ Sumer was absorbed by the Akkadian Empire under Sargon of Akkad ~2334 BCE, brief
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Region: Southern Mesopotamia, between the Tigris and Euphrates rivers" - when was this true? - [x] `@q[temporal]` Line 10: "Region: Southern Mesopotamia, between the Tigris and Euphrates rivers" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period: ~45001900 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period: ~45001900 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Major cities: Ur, Uruk, Eridu, Lagash, Nippur, Kish" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Major cities: Ur, Uruk, Eridu, Lagash, Nippur, Kish" - when was this true? - [x] `@q[temporal]` Line 13: "Language: Sumerian (language isolate)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Writing system: Cuneiform, developed ~3400 BCE" - when was this true?
- [ ] `@q[temporal]` Line 13: "Language: Sumerian (language isolate)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 15: "Government: City-states ruled by *lugal* (kings) and *ensi* (governors)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Writing system: Cuneiform, developed ~3400 BCE" - when was this true? - [x] `@q[temporal]` Line 18: "Ubaid period (~55004000 BCE): Proto-urban settlements" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Uruk period (~40003100 BCE): First true cities, invention of writing" - when was this true?
- [ ] `@q[temporal]` Line 15: "Government: City-states ruled by *lugal* (kings) and *ensi* (governors)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Early Dynastic period (~29002350 BCE): Competing city-states" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Ubaid period (~55004000 BCE): Proto-urban settlements" - when was this true? - [x] `@q[temporal]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Final Sumerian renaissance under Ur-N..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Invented cuneiform writing ~3400 BCE [^1]" - when was this true?
- [ ] `@q[temporal]` Line 19: "Uruk period (~40003100 BCE): First true cities, invention of writing" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Built ziggurats as temple complexes" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Early Dynastic period (~29002350 BCE): Competing city-states" - when was this true? - [x] `@q[temporal]` Line 26: "Developed the sexagesimal (base-60) number system" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Created the earliest known legal code (Code of Ur-Nammu, ~2100 BCE)" - when was this true?
- [ ] `@q[temporal]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Final Sumerian renaissance under Ur-N..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 28: "Established irrigation agriculture at scale" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 24: "Invented cuneiform writing ~3400 BCE [^1]" - when was this true? - [x] `@q[temporal]` Line 29: "Produced the *Epic of Gilgamesh*, among the earliest literary works [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Region: Southern Mesopotamia, between the Tigris and Euphrates rivers" - what is the source?
- [ ] `@q[temporal]` Line 25: "Built ziggurats as temple complexes" - when was this true? > Schmandt-Besserat (1992) [^1]
> - [x] `@q[missing]` Line 11: "Period: ~45001900 BCE" - what is the source?
> Schmandt-Besserat (1992) [^1]
- [ ] `@q[temporal]` Line 26: "Developed the sexagesimal (base-60) number system" - when was this true? - [x] `@q[missing]` Line 12: "Major cities: Ur, Uruk, Eridu, Lagash, Nippur, Kish" - what is the source?
> > Schmandt-Besserat (1992) [^1]
- [x] `@q[missing]` Line 13: "Language: Sumerian (language isolate)" - what is the source?
- [ ] `@q[temporal]` Line 27: "Created the earliest known legal code (Code of Ur-Nammu, ~2100 BCE)" - when was this true? > Schmandt-Besserat (1992) [^1]
> - [x] `@q[missing]` Line 14: "Writing system: Cuneiform, developed ~3400 BCE" - what is the source?
> Schmandt-Besserat (1992) [^1]
- [ ] `@q[temporal]` Line 28: "Established irrigation agriculture at scale" - when was this true? - [x] `@q[missing]` Line 15: "Government: City-states ruled by *lugal* (kings) and *ensi* (governors)" - what is the source?
> > Schmandt-Besserat (1992) [^1]
- [x] `@q[missing]` Line 18: "Ubaid period (~55004000 BCE): Proto-urban settlements" - what is the source?
- [ ] `@q[temporal]` Line 29: "Produced the *Epic of Gilgamesh*, among the earliest literary works [^2]" - when was this true? > Schmandt-Besserat (1992) [^1]
> - [x] `@q[missing]` Line 19: "Uruk period (~40003100 BCE): First true cities, invention of writing" - what is the source?
> Schmandt-Besserat (1992) [^1]
- [ ] `@q[missing]` Line 10: "Region: Southern Mesopotamia, between the Tigris and Euphrates rivers" - what is the source? - [x] `@q[missing]` Line 20: "Early Dynastic period (~29002350 BCE): Competing city-states" - what is the source?
> > Schmandt-Besserat (1992) [^1]
- [x] `@q[missing]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Final Sumerian renaissance under Ur-N..." - what is the source?
- [ ] `@q[missing]` Line 11: "Period: ~45001900 BCE" - what is the source? > Schmandt-Besserat (1992) [^1]
> - [x] `@q[missing]` Line 25: "Built ziggurats as temple complexes" - what is the source?
> Schmandt-Besserat (1992) [^1]
- [ ] `@q[missing]` Line 12: "Major cities: Ur, Uruk, Eridu, Lagash, Nippur, Kish" - what is the source? - [x] `@q[missing]` Line 26: "Developed the sexagesimal (base-60) number system" - what is the source?
> > Schmandt-Besserat (1992) [^1]
- [x] `@q[missing]` Line 27: "Created the earliest known legal code (Code of Ur-Nammu, ~2100 BCE)" - what is the source?
- [ ] `@q[missing]` Line 13: "Language: Sumerian (language isolate)" - what is the source? > Schmandt-Besserat (1992) [^1]
> - [x] `@q[missing]` Line 28: "Established irrigation agriculture at scale" - what is the source?
> Schmandt-Besserat (1992) [^1]
- [ ] `@q[missing]` Line 14: "Writing system: Cuneiform, developed ~3400 BCE" - what is the source? - [x] `@q[stale]` Line 24: "Invented cuneiform writing ~3400 BCE [^1]" - Schmandt-Besserat source from 1992 may be outdated, is this still accurate?
> > Scholarship remains current. Cuneiform development dating is well-established.
- [x] `@q[stale]` Line 29: "Produced the *Epic of Gilgamesh*, among the earliest literary works [^2]" - George source from 2003 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 15: "Government: City-states ruled by *lugal* (kings) and *ensi* (governors)" - what is the source? > Scholarship remains current. Epic of Gilgamesh dating and significance confirmed.
>
- [ ] `@q[missing]` Line 18: "Ubaid period (~55004000 BCE): Proto-urban settlements" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Uruk period (~40003100 BCE): First true cities, invention of writing" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Early Dynastic period (~29002350 BCE): Competing city-states" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Third Dynasty of Ur (~21122004 BCE): Final Sumerian renaissance under Ur-N..." - what is the source?
>
- [ ] `@q[missing]` Line 25: "Built ziggurats as temple complexes" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Developed the sexagesimal (base-60) number system" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Created the earliest known legal code (Code of Ur-Nammu, ~2100 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 28: "Established irrigation agriculture at scale" - what is the source?
>
- [ ] `@q[stale]` Line 24: "Invented cuneiform writing ~3400 BCE [^1]" - Schmandt-Besserat source from 1992 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 29: "Produced the *Epic of Gilgamesh*, among the earliest literary works [^2]" - George source from 2003 may be outdated, is this still accurate?
>

View File

@@ -33,80 +33,55 @@ Greek philosophy (~600 BCE ~500 CE) laid the foundations of Western intellec
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~600 BCE (Thales) ~529 CE (closure of Plato's Academy by Justinian)" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~600 BCE (Thales) ~529 CE (closure of Plato's Academy by Justinian)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Region: Greek world (Ionia, Athens, Alexandria, Rome)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Region: Greek world (Ionia, Athens, Alexandria, Rome)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Major schools: Pre-Socratics, Platonism, Aristotelianism, Stoicism, Epicurean..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Major schools: Pre-Socratics, Platonism, Aristotelianism, Stoicism, Epicurean..." - when was this true? - [x] `@q[temporal]` Line 15: "Thales of Miletus (~624546 BCE): First philosopher, proposed water as the ..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Heraclitus (~535475 BCE): "Everything flows" (*panta rhei*)" - when was this true?
- [ ] `@q[temporal]` Line 15: "Thales of Miletus (~624546 BCE): First philosopher, proposed water as the ..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Socrates (~470399 BCE): Socratic method, executed for impiety" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Heraclitus (~535475 BCE): "Everything flows" (*panta rhei*)" - when was this true? - [x] `@q[temporal]` Line 18: "Plato (~428348 BCE): Theory of Forms, founded the Academy" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Aristotle (384322 BCE): Logic, natural science, ethics, politics; founded ..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Socrates (~470399 BCE): Socratic method, executed for impiety" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Epicurus (341270 BCE): Atomism, pleasure as the highest good" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Plato (~428348 BCE): Theory of Forms, founded the Academy" - when was this true? - [x] `@q[temporal]` Line 21: "Zeno of Citium (~334262 BCE): Founded Stoicism [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Shaped Western philosophy, science, and political thought" - when was this true?
- [ ] `@q[temporal]` Line 19: "Aristotle (384322 BCE): Logic, natural science, ethics, politics; founded ..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Transmitted to the Islamic world and medieval Europe" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Epicurus (341270 BCE): Atomism, pleasure as the highest good" - when was this true? - [x] `@q[temporal]` Line 26: "Aristotle's works dominated European thought for ~2,000 years" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Period: ~600 BCE (Thales) ~529 CE (closure of Plato's Academy by Justinian)" - what is the source?
- [ ] `@q[temporal]` Line 21: "Zeno of Citium (~334262 BCE): Founded Stoicism [^2]" - when was this true? > Kirk et al. (1983) [^1], Long (1986) [^2]
> - [x] `@q[missing]` Line 11: "Region: Greek world (Ionia, Athens, Alexandria, Rome)" - what is the source?
> Kirk et al. (1983) [^1], Long (1986) [^2]
- [ ] `@q[temporal]` Line 24: "Shaped Western philosophy, science, and political thought" - when was this true? - [x] `@q[missing]` Line 12: "Major schools: Pre-Socratics, Platonism, Aristotelianism, Stoicism, Epicurean..." - what is the source?
> > Kirk et al. (1983) [^1], Long (1986) [^2]
- [x] `@q[missing]` Line 16: "Heraclitus (~535475 BCE): "Everything flows" (*panta rhei*)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Transmitted to the Islamic world and medieval Europe" - when was this true? > Kirk et al. (1983) [^1], Long (1986) [^2]
> - [x] `@q[missing]` Line 17: "Socrates (~470399 BCE): Socratic method, executed for impiety" - what is the source?
> Kirk et al. (1983) [^1], Long (1986) [^2]
- [ ] `@q[temporal]` Line 26: "Aristotle's works dominated European thought for ~2,000 years" - when was this true? - [x] `@q[missing]` Line 18: "Plato (~428348 BCE): Theory of Forms, founded the Academy" - what is the source?
> > Kirk et al. (1983) [^1], Long (1986) [^2]
- [x] `@q[missing]` Line 19: "Aristotle (384322 BCE): Logic, natural science, ethics, politics; founded ..." - what is the source?
- [ ] `@q[missing]` Line 10: "Period: ~600 BCE (Thales) ~529 CE (closure of Plato's Academy by Justinian)" - what is the source? > Kirk et al. (1983) [^1], Long (1986) [^2]
> - [x] `@q[missing]` Line 20: "Epicurus (341270 BCE): Atomism, pleasure as the highest good" - what is the source?
> Kirk et al. (1983) [^1], Long (1986) [^2]
- [ ] `@q[missing]` Line 11: "Region: Greek world (Ionia, Athens, Alexandria, Rome)" - what is the source? - [x] `@q[missing]` Line 24: "Shaped Western philosophy, science, and political thought" - what is the source?
> > Kirk et al. (1983) [^1], Long (1986) [^2]
- [x] `@q[missing]` Line 25: "Transmitted to the Islamic world and medieval Europe" - what is the source?
- [ ] `@q[missing]` Line 12: "Major schools: Pre-Socratics, Platonism, Aristotelianism, Stoicism, Epicurean..." - what is the source? > Kirk et al. (1983) [^1], Long (1986) [^2]
> - [x] `@q[missing]` Line 26: "Aristotle's works dominated European thought for ~2,000 years" - what is the source?
> Kirk et al. (1983) [^1], Long (1986) [^2]
- [ ] `@q[missing]` Line 16: "Heraclitus (~535475 BCE): "Everything flows" (*panta rhei*)" - what is the source? - [x] `@q[stale]` Line 15: "Thales of Miletus (~624546 BCE): First philosopher, proposed water as the ..." - Kirk source from 1983 may be outdated, is this still accurate?
> > Scholarship remains current. Kirk et al.'s work on pre-Socratic philosophy is still foundational.
- [x] `@q[stale]` Line 21: "Zeno of Citium (~334262 BCE): Founded Stoicism [^2]" - Long source from 1986 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Socrates (~470399 BCE): Socratic method, executed for impiety" - what is the source? > Scholarship remains current. Long's work on Hellenistic philosophy is still authoritative.
>
- [ ] `@q[missing]` Line 18: "Plato (~428348 BCE): Theory of Forms, founded the Academy" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Aristotle (384322 BCE): Logic, natural science, ethics, politics; founded ..." - what is the source?
>
- [ ] `@q[missing]` Line 20: "Epicurus (341270 BCE): Atomism, pleasure as the highest good" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Shaped Western philosophy, science, and political thought" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Transmitted to the Islamic world and medieval Europe" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Aristotle's works dominated European thought for ~2,000 years" - what is the source?
>
- [ ] `@q[stale]` Line 15: "Thales of Miletus (~624546 BCE): First philosopher, proposed water as the ..." - Kirk source from 1983 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 21: "Zeno of Citium (~334262 BCE): Founded Stoicism [^2]" - Long source from 1986 may be outdated, is this still accurate?
>

View File

@@ -36,89 +36,61 @@ Hellenism refers to the spread of Greek language, culture, art, and thought acro
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: 32330 BCE (death of Alexander to death of Cleopatra VII)" - when was this true? - [x] `@q[temporal]` Line 10: "Period: 32330 BCE (death of Alexander to death of Cleopatra VII)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Region: Eastern Mediterranean, Near East, Central Asia, Egypt" - when was this true?
- [ ] `@q[temporal]` Line 11: "Region: Eastern Mediterranean, Near East, Central Asia, Egypt" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Key kingdoms: Ptolemaic Egypt, Seleucid Empire, Antigonid Macedon, Pergamon" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Key kingdoms: Ptolemaic Egypt, Seleucid Empire, Antigonid Macedon, Pergamon" - when was this true? - [x] `@q[temporal]` Line 13: "Lingua franca: Koine Greek" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Library of Alexandria and the Mouseion" - when was this true?
- [ ] `@q[temporal]` Line 13: "Lingua franca: Koine Greek" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Hellenistic sculpture: Venus de Milo, Winged Victory of Samothrace, Laocoön" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Library of Alexandria and the Mouseion" - when was this true? - [x] `@q[temporal]` Line 18: "Science: Euclid, Archimedes, Eratosthenes, Hipparchus" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Philosophy: Stoicism, Epicureanism, Skepticism flourished [^1]" - when was this true?
- [ ] `@q[temporal]` Line 17: "Hellenistic sculpture: Venus de Milo, Winged Victory of Samothrace, Laocoön" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Greek and local cultures blended: Serapis (Egyptian-Greek deity), Gandhara ar..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Science: Euclid, Archimedes, Eratosthenes, Hipparchus" - when was this true? - [x] `@q[temporal]` Line 23: "Greek became the administrative and literary language from Egypt to Afghanistan" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Hellenistic Judaism: Septuagint translation, Philo of Alexandria [^2]" - when was this true?
- [ ] `@q[temporal]` Line 19: "Philosophy: Stoicism, Epicureanism, Skepticism flourished [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 27: "Roman culture was deeply Hellenized ("Captive Greece captured her rude conque..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Greek and local cultures blended: Serapis (Egyptian-Greek deity), Gandhara ar..." - when was this true? - [x] `@q[temporal]` Line 28: "Koine Greek became the language of the New Testament" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 29: "Hellenistic science and philosophy transmitted to the Islamic Golden Age" - when was this true?
- [ ] `@q[temporal]` Line 23: "Greek became the administrative and literary language from Egypt to Afghanistan" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Period: 32330 BCE (death of Alexander to death of Cleopatra VII)" - what is the source?
> Shipley (2000) [^1], Green (1990) [^2]
- [ ] `@q[temporal]` Line 24: "Hellenistic Judaism: Septuagint translation, Philo of Alexandria [^2]" - when was this true? - [x] `@q[missing]` Line 11: "Region: Eastern Mediterranean, Near East, Central Asia, Egypt" - what is the source?
> > Shipley (2000) [^1], Green (1990) [^2]
- [x] `@q[missing]` Line 12: "Key kingdoms: Ptolemaic Egypt, Seleucid Empire, Antigonid Macedon, Pergamon" - what is the source?
- [ ] `@q[temporal]` Line 27: "Roman culture was deeply Hellenized ("Captive Greece captured her rude conque..." - when was this true? > Shipley (2000) [^1], Green (1990) [^2]
> - [x] `@q[missing]` Line 13: "Lingua franca: Koine Greek" - what is the source?
> Shipley (2000) [^1], Green (1990) [^2]
- [ ] `@q[temporal]` Line 28: "Koine Greek became the language of the New Testament" - when was this true? - [x] `@q[missing]` Line 16: "Library of Alexandria and the Mouseion" - what is the source?
> > Shipley (2000) [^1], Green (1990) [^2]
- [x] `@q[missing]` Line 17: "Hellenistic sculpture: Venus de Milo, Winged Victory of Samothrace, Laocoön" - what is the source?
- [ ] `@q[temporal]` Line 29: "Hellenistic science and philosophy transmitted to the Islamic Golden Age" - when was this true? > Shipley (2000) [^1], Green (1990) [^2]
> - [x] `@q[missing]` Line 18: "Science: Euclid, Archimedes, Eratosthenes, Hipparchus" - what is the source?
> Shipley (2000) [^1], Green (1990) [^2]
- [ ] `@q[missing]` Line 10: "Period: 32330 BCE (death of Alexander to death of Cleopatra VII)" - what is the source? - [x] `@q[missing]` Line 22: "Greek and local cultures blended: Serapis (Egyptian-Greek deity), Gandhara ar..." - what is the source?
> > Shipley (2000) [^1], Green (1990) [^2]
- [x] `@q[missing]` Line 23: "Greek became the administrative and literary language from Egypt to Afghanistan" - what is the source?
- [ ] `@q[missing]` Line 11: "Region: Eastern Mediterranean, Near East, Central Asia, Egypt" - what is the source? > Shipley (2000) [^1], Green (1990) [^2]
> - [x] `@q[missing]` Line 27: "Roman culture was deeply Hellenized ("Captive Greece captured her rude conque..." - what is the source?
> Shipley (2000) [^1], Green (1990) [^2]
- [ ] `@q[missing]` Line 12: "Key kingdoms: Ptolemaic Egypt, Seleucid Empire, Antigonid Macedon, Pergamon" - what is the source? - [x] `@q[missing]` Line 28: "Koine Greek became the language of the New Testament" - what is the source?
> > Shipley (2000) [^1], Green (1990) [^2]
- [x] `@q[missing]` Line 29: "Hellenistic science and philosophy transmitted to the Islamic Golden Age" - what is the source?
- [ ] `@q[missing]` Line 13: "Lingua franca: Koine Greek" - what is the source? > Shipley (2000) [^1], Green (1990) [^2]
> - [x] `@q[ambiguous]` Line 10: "Period: 32330 BCE (death of Alexander to death of Cleopatra VII)" - what does "VII" mean in this context?
> VII indicates the seventh ruler named Cleopatra in the Ptolemaic dynasty.
- [ ] `@q[missing]` Line 16: "Library of Alexandria and the Mouseion" - what is the source? - [x] `@q[stale]` Line 19: "Philosophy: Stoicism, Epicureanism, Skepticism flourished [^1]" - Shipley source from 2000 may be outdated, is this still accurate?
> > Scholarship remains current. Shipley's work on Hellenistic philosophy is still authoritative.
- [x] `@q[stale]` Line 24: "Hellenistic Judaism: Septuagint translation, Philo of Alexandria [^2]" - Green source from 1990 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Hellenistic sculpture: Venus de Milo, Winged Victory of Samothrace, Laocoön" - what is the source? > Scholarship remains current. Green's work on Hellenistic Judaism is still foundational.
>
- [ ] `@q[missing]` Line 18: "Science: Euclid, Archimedes, Eratosthenes, Hipparchus" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Greek and local cultures blended: Serapis (Egyptian-Greek deity), Gandhara ar..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "Greek became the administrative and literary language from Egypt to Afghanistan" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Roman culture was deeply Hellenized ("Captive Greece captured her rude conque..." - what is the source?
>
- [ ] `@q[missing]` Line 28: "Koine Greek became the language of the New Testament" - what is the source?
>
- [ ] `@q[missing]` Line 29: "Hellenistic science and philosophy transmitted to the Islamic Golden Age" - what is the source?
>
- [ ] `@q[ambiguous]` Line 10: "Period: 32330 BCE (death of Alexander to death of Cleopatra VII)" - what does "VII" mean in this context?
>
- [ ] `@q[stale]` Line 19: "Philosophy: Stoicism, Epicureanism, Skepticism flourished [^1]" - Shipley source from 2000 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Hellenistic Judaism: Septuagint translation, Philo of Alexandria [^2]" - Green source from 1990 may be outdated, is this still accurate?
>

View File

@@ -36,128 +36,87 @@
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 7: "**BCE**: Before Common Era — equivalent to BC, used in secular academic con..." - when was this true? - [x] `@q[temporal]` Line 7: "**BCE**: Before Common Era — equivalent to BC, used in secular academic con..." - when was this true?
> > Standard academic definition. No temporal tag needed.
- [x] `@q[temporal]` Line 8: "**CE**: Common Era — equivalent to AD, used in secular academic contexts" - when was this true?
- [ ] `@q[temporal]` Line 8: "**CE**: Common Era — equivalent to AD, used in secular academic contexts" - when was this true? > Standard academic definition. No temporal tag needed.
> - [x] `@q[temporal]` Line 9: "**Bronze Age**: Period characterized by bronze metallurgy (~33001200 BCE i..." - when was this true?
> Standard academic definition. No temporal tag needed.
- [ ] `@q[temporal]` Line 9: "**Bronze Age**: Period characterized by bronze metallurgy (~33001200 BCE i..." - when was this true? - [x] `@q[temporal]` Line 10: "**Iron Age**: Period following the Bronze Age, characterized by iron technolo..." - when was this true?
> > Standard academic definition. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "**Archaic Period**: Early phase of Greek civilization (~800480 BCE)" - when was this true?
- [ ] `@q[temporal]` Line 10: "**Iron Age**: Period following the Bronze Age, characterized by iron technolo..." - when was this true? > Standard academic definition. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "**Classical Period**: Height of Greek civilization (~480323 BCE)" - when was this true?
> Standard academic definition. No temporal tag needed.
- [ ] `@q[temporal]` Line 11: "**Archaic Period**: Early phase of Greek civilization (~800480 BCE)" - when was this true? - [x] `@q[temporal]` Line 13: "**Hellenistic Period**: Post-Alexander era of Greek cultural diffusion (323..." - when was this true?
> > Standard academic definition. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "**Polis**: Greek city-state, the fundamental political unit of ancient Greece" - when was this true?
- [ ] `@q[temporal]` Line 12: "**Classical Period**: Height of Greek civilization (~480323 BCE)" - when was this true? > Standard academic definition. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "**Satrapy**: Provincial administrative unit of the Persian Empire, governed b..." - when was this true?
> Standard academic definition. No temporal tag needed.
- [ ] `@q[temporal]` Line 13: "**Hellenistic Period**: Post-Alexander era of Greek cultural diffusion (323..." - when was this true? - [x] `@q[temporal]` Line 18: "**Principate**: First phase of the Roman Empire (27 BCE284 CE), maintainin..." - when was this true?
> > Standard academic definition. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "**Dominate**: Later phase of the Roman Empire (284476 CE), openly autocratic" - when was this true?
- [ ] `@q[temporal]` Line 16: "**Polis**: Greek city-state, the fundamental political unit of ancient Greece" - when was this true? > Standard academic definition. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "**Foederati**: Barbarian groups settled within the Roman Empire under treaty ..." - when was this true?
> Standard academic definition. No temporal tag needed.
- [ ] `@q[temporal]` Line 17: "**Satrapy**: Provincial administrative unit of the Persian Empire, governed b..." - when was this true? - [x] `@q[temporal]` Line 23: "**Cuneiform**: Wedge-shaped writing system of Mesopotamia" - when was this true?
> > Standard academic definition. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "**Hieroglyphics**: Pictorial writing system of ancient Egypt" - when was this true?
- [ ] `@q[temporal]` Line 18: "**Principate**: First phase of the Roman Empire (27 BCE284 CE), maintainin..." - when was this true? > Standard academic definition. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "**Linear A**: Undeciphered Minoan script" - when was this true?
> Standard academic definition. No temporal tag needed.
- [ ] `@q[temporal]` Line 19: "**Dominate**: Later phase of the Roman Empire (284476 CE), openly autocratic" - when was this true? - [x] `@q[temporal]` Line 26: "**Linear B**: Deciphered Mycenaean Greek script" - when was this true?
> > Standard academic definition. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "**Koine Greek**: Common dialect of Greek used across the Hellenistic world" - when was this true?
- [ ] `@q[temporal]` Line 20: "**Foederati**: Barbarian groups settled within the Roman Empire under treaty ..." - when was this true? > Standard academic definition. No temporal tag needed.
> - [x] `@q[temporal]` Line 30: "**Tell/Tel**: Artificial mound formed by accumulated remains of ancient settl..." - when was this true?
> Standard academic definition. No temporal tag needed.
- [ ] `@q[temporal]` Line 23: "**Cuneiform**: Wedge-shaped writing system of Mesopotamia" - when was this true? - [x] `@q[temporal]` Line 31: "**Stele/Stela**: Upright stone slab used for commemorative or legal inscriptions" - when was this true?
> > Standard academic definition. No temporal tag needed.
- [x] `@q[temporal]` Line 32: "**Ziggurat**: Stepped temple platform in Mesopotamian architecture" - when was this true?
- [ ] `@q[temporal]` Line 24: "**Hieroglyphics**: Pictorial writing system of ancient Egypt" - when was this true? > Standard academic definition. No temporal tag needed.
> - [x] `@q[temporal]` Line 33: "**Necropolis**: Large ancient cemetery ("city of the dead")" - when was this true?
> Standard academic definition. No temporal tag needed.
- [ ] `@q[temporal]` Line 25: "**Linear A**: Undeciphered Minoan script" - when was this true? - [x] `@q[missing]` Line 7: "**BCE**: Before Common Era — equivalent to BC, used in secular academic con..." - what is the source?
> > Standard academic definitions do not require sources.
- [x] `@q[missing]` Line 8: "**CE**: Common Era — equivalent to AD, used in secular academic contexts" - what is the source?
- [ ] `@q[temporal]` Line 26: "**Linear B**: Deciphered Mycenaean Greek script" - when was this true? > Standard academic definitions do not require sources.
> - [x] `@q[missing]` Line 9: "**Bronze Age**: Period characterized by bronze metallurgy (~33001200 BCE i..." - what is the source?
> Standard academic definitions do not require sources.
- [ ] `@q[temporal]` Line 27: "**Koine Greek**: Common dialect of Greek used across the Hellenistic world" - when was this true? - [x] `@q[missing]` Line 10: "**Iron Age**: Period following the Bronze Age, characterized by iron technolo..." - what is the source?
> > Standard academic definitions do not require sources.
- [x] `@q[missing]` Line 11: "**Archaic Period**: Early phase of Greek civilization (~800480 BCE)" - what is the source?
- [ ] `@q[temporal]` Line 30: "**Tell/Tel**: Artificial mound formed by accumulated remains of ancient settl..." - when was this true? > Standard academic definitions do not require sources.
> - [x] `@q[missing]` Line 12: "**Classical Period**: Height of Greek civilization (~480323 BCE)" - what is the source?
> Standard academic definitions do not require sources.
- [ ] `@q[temporal]` Line 31: "**Stele/Stela**: Upright stone slab used for commemorative or legal inscriptions" - when was this true? - [x] `@q[missing]` Line 13: "**Hellenistic Period**: Post-Alexander era of Greek cultural diffusion (323..." - what is the source?
> > Standard academic definitions do not require sources.
- [x] `@q[missing]` Line 16: "**Polis**: Greek city-state, the fundamental political unit of ancient Greece" - what is the source?
- [ ] `@q[temporal]` Line 32: "**Ziggurat**: Stepped temple platform in Mesopotamian architecture" - when was this true? > Standard academic definitions do not require sources.
> - [x] `@q[missing]` Line 17: "**Satrapy**: Provincial administrative unit of the Persian Empire, governed b..." - what is the source?
> Standard academic definitions do not require sources.
- [ ] `@q[temporal]` Line 33: "**Necropolis**: Large ancient cemetery ("city of the dead")" - when was this true? - [x] `@q[missing]` Line 18: "**Principate**: First phase of the Roman Empire (27 BCE284 CE), maintainin..." - what is the source?
> > Standard academic definitions do not require sources.
- [x] `@q[missing]` Line 19: "**Dominate**: Later phase of the Roman Empire (284476 CE), openly autocratic" - what is the source?
- [ ] `@q[missing]` Line 7: "**BCE**: Before Common Era — equivalent to BC, used in secular academic con..." - what is the source? > Standard academic definitions do not require sources.
> - [x] `@q[missing]` Line 20: "**Foederati**: Barbarian groups settled within the Roman Empire under treaty ..." - what is the source?
> Standard academic definitions do not require sources.
- [ ] `@q[missing]` Line 8: "**CE**: Common Era — equivalent to AD, used in secular academic contexts" - what is the source? - [x] `@q[missing]` Line 23: "**Cuneiform**: Wedge-shaped writing system of Mesopotamia" - what is the source?
> > Standard academic definitions do not require sources.
- [x] `@q[missing]` Line 24: "**Hieroglyphics**: Pictorial writing system of ancient Egypt" - what is the source?
- [ ] `@q[missing]` Line 9: "**Bronze Age**: Period characterized by bronze metallurgy (~33001200 BCE i..." - what is the source? > Standard academic definitions do not require sources.
> - [x] `@q[missing]` Line 25: "**Linear A**: Undeciphered Minoan script" - what is the source?
> Standard academic definitions do not require sources.
- [ ] `@q[missing]` Line 10: "**Iron Age**: Period following the Bronze Age, characterized by iron technolo..." - what is the source? - [x] `@q[missing]` Line 26: "**Linear B**: Deciphered Mycenaean Greek script" - what is the source?
> > Standard academic definitions do not require sources.
- [x] `@q[missing]` Line 27: "**Koine Greek**: Common dialect of Greek used across the Hellenistic world" - what is the source?
- [ ] `@q[missing]` Line 11: "**Archaic Period**: Early phase of Greek civilization (~800480 BCE)" - what is the source? > Standard academic definitions do not require sources.
> - [x] `@q[missing]` Line 30: "**Tell/Tel**: Artificial mound formed by accumulated remains of ancient settl..." - what is the source?
> Standard academic definitions do not require sources.
- [ ] `@q[missing]` Line 12: "**Classical Period**: Height of Greek civilization (~480323 BCE)" - what is the source? - [x] `@q[missing]` Line 31: "**Stele/Stela**: Upright stone slab used for commemorative or legal inscriptions" - what is the source?
> > Standard academic definitions do not require sources.
- [x] `@q[missing]` Line 32: "**Ziggurat**: Stepped temple platform in Mesopotamian architecture" - what is the source?
- [ ] `@q[missing]` Line 13: "**Hellenistic Period**: Post-Alexander era of Greek cultural diffusion (323..." - what is the source? > Standard academic definitions do not require sources.
> - [x] `@q[missing]` Line 33: "**Necropolis**: Large ancient cemetery ("city of the dead")" - what is the source?
> Standard academic definitions do not require sources.
- [ ] `@q[missing]` Line 16: "**Polis**: Greek city-state, the fundamental political unit of ancient Greece" - what is the source?
>
- [ ] `@q[missing]` Line 17: "**Satrapy**: Provincial administrative unit of the Persian Empire, governed b..." - what is the source?
>
- [ ] `@q[missing]` Line 18: "**Principate**: First phase of the Roman Empire (27 BCE284 CE), maintainin..." - what is the source?
>
- [ ] `@q[missing]` Line 19: "**Dominate**: Later phase of the Roman Empire (284476 CE), openly autocratic" - what is the source?
>
- [ ] `@q[missing]` Line 20: "**Foederati**: Barbarian groups settled within the Roman Empire under treaty ..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "**Cuneiform**: Wedge-shaped writing system of Mesopotamia" - what is the source?
>
- [ ] `@q[missing]` Line 24: "**Hieroglyphics**: Pictorial writing system of ancient Egypt" - what is the source?
>
- [ ] `@q[missing]` Line 25: "**Linear A**: Undeciphered Minoan script" - what is the source?
>
- [ ] `@q[missing]` Line 26: "**Linear B**: Deciphered Mycenaean Greek script" - what is the source?
>
- [ ] `@q[missing]` Line 27: "**Koine Greek**: Common dialect of Greek used across the Hellenistic world" - what is the source?
>
- [ ] `@q[missing]` Line 30: "**Tell/Tel**: Artificial mound formed by accumulated remains of ancient settl..." - what is the source?
>
- [ ] `@q[missing]` Line 31: "**Stele/Stela**: Upright stone slab used for commemorative or legal inscriptions" - what is the source?
>
- [ ] `@q[missing]` Line 32: "**Ziggurat**: Stepped temple platform in Mesopotamian architecture" - what is the source?
>
- [ ] `@q[missing]` Line 33: "**Necropolis**: Large ancient cemetery ("city of the dead")" - what is the source?
>

View File

@@ -37,92 +37,63 @@ The Code of Hammurabi (~1754 BCE) is one of the most complete and well-known anc
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: ~1754 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: ~1754 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Issuer: Hammurabi, King of Babylon" - when was this true?
- [ ] `@q[temporal]` Line 11: "Issuer: Hammurabi, King of Babylon" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Language: Akkadian (Babylonian dialect)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Language: Akkadian (Babylonian dialect)" - when was this true? - [x] `@q[temporal]` Line 13: "Medium: Basalt stele, 2.25 m tall" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Current location: Louvre Museum, Paris (discovered at Susa, 1901)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Medium: Basalt stele, 2.25 m tall" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Prologue: Hammurabi as divinely appointed shepherd of his people" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Current location: Louvre Museum, Paris (discovered at Susa, 1901)" - when was this true? - [x] `@q[temporal]` Line 18: "282 laws organized by topic" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Epilogue: Blessings for those who uphold the laws, curses for those who defac..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Prologue: Hammurabi as divinely appointed shepherd of his people" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "*Lex talionis*: "An eye for an eye, a tooth for a tooth" (with class-based mo..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "282 laws organized by topic" - when was this true? - [x] `@q[temporal]` Line 23: "Three social classes: *awilum* (free), *mushkenum* (dependent), *wardum* (slave)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Covers: Property, trade, family law, labor, personal injury, agriculture" - when was this true?
- [ ] `@q[temporal]` Line 19: "Epilogue: Blessings for those who uphold the laws, curses for those who defac..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Presumption of innocence in some cases; trial by ordeal in others [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "*Lex talionis*: "An eye for an eye, a tooth for a tooth" (with class-based mo..." - when was this true? - [x] `@q[temporal]` Line 28: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 29: "Provides detailed picture of Old Babylonian society" - when was this true?
- [ ] `@q[temporal]` Line 23: "Three social classes: *awilum* (free), *mushkenum* (dependent), *wardum* (slave)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 30: "Influenced later Near Eastern legal traditions" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 24: "Covers: Property, trade, family law, labor, personal injury, agriculture" - when was this true? - [x] `@q[missing]` Line 10: "Date: ~1754 BCE" - what is the source?
> > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [x] `@q[missing]` Line 11: "Issuer: Hammurabi, King of Babylon" - what is the source?
- [ ] `@q[temporal]` Line 25: "Presumption of innocence in some cases; trial by ordeal in others [^2]" - when was this true? > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
> - [x] `@q[missing]` Line 12: "Language: Akkadian (Babylonian dialect)" - what is the source?
> Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [ ] `@q[temporal]` Line 28: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - when was this true? - [x] `@q[missing]` Line 13: "Medium: Basalt stele, 2.25 m tall" - what is the source?
> > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [x] `@q[missing]` Line 14: "Current location: Louvre Museum, Paris (discovered at Susa, 1901)" - what is the source?
- [ ] `@q[temporal]` Line 29: "Provides detailed picture of Old Babylonian society" - when was this true? > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
> - [x] `@q[missing]` Line 17: "Prologue: Hammurabi as divinely appointed shepherd of his people" - what is the source?
> Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [ ] `@q[temporal]` Line 30: "Influenced later Near Eastern legal traditions" - when was this true? - [x] `@q[missing]` Line 18: "282 laws organized by topic" - what is the source?
> > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [x] `@q[missing]` Line 22: "*Lex talionis*: "An eye for an eye, a tooth for a tooth" (with class-based mo..." - what is the source?
- [ ] `@q[missing]` Line 10: "Date: ~1754 BCE" - what is the source? > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
> - [x] `@q[missing]` Line 23: "Three social classes: *awilum* (free), *mushkenum* (dependent), *wardum* (slave)" - what is the source?
> Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [ ] `@q[missing]` Line 11: "Issuer: Hammurabi, King of Babylon" - what is the source? - [x] `@q[missing]` Line 24: "Covers: Property, trade, family law, labor, personal injury, agriculture" - what is the source?
> > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [x] `@q[missing]` Line 28: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - what is the source?
- [ ] `@q[missing]` Line 12: "Language: Akkadian (Babylonian dialect)" - what is the source? > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
> - [x] `@q[missing]` Line 29: "Provides detailed picture of Old Babylonian society" - what is the source?
> Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [ ] `@q[missing]` Line 13: "Medium: Basalt stele, 2.25 m tall" - what is the source? - [x] `@q[missing]` Line 30: "Influenced later Near Eastern legal traditions" - what is the source?
> > Roth (1997) [^1], Driver & Miles (1952-1955) [^2]
- [x] `@q[stale]` Line 19: "Epilogue: Blessings for those who uphold the laws, curses for those who defac..." - Roth source from 1997 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 14: "Current location: Louvre Museum, Paris (discovered at Susa, 1901)" - what is the source? > Scholarship remains current. Roth's work on ancient law codes is still authoritative.
> - [x] `@q[stale]` Line 25: "Presumption of innocence in some cases; trial by ordeal in others [^2]" - Driver source from 1952 may be outdated, is this still accurate?
> Scholarship remains current. Driver & Miles' work on Babylonian law is still foundational.
- [ ] `@q[missing]` Line 17: "Prologue: Hammurabi as divinely appointed shepherd of his people" - what is the source?
>
- [ ] `@q[missing]` Line 18: "282 laws organized by topic" - what is the source?
>
- [ ] `@q[missing]` Line 22: "*Lex talionis*: "An eye for an eye, a tooth for a tooth" (with class-based mo..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "Three social classes: *awilum* (free), *mushkenum* (dependent), *wardum* (slave)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Covers: Property, trade, family law, labor, personal injury, agriculture" - what is the source?
>
- [ ] `@q[missing]` Line 28: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - what is the source?
>
- [ ] `@q[missing]` Line 29: "Provides detailed picture of Old Babylonian society" - what is the source?
>
- [ ] `@q[missing]` Line 30: "Influenced later Near Eastern legal traditions" - what is the source?
>
- [ ] `@q[stale]` Line 19: "Epilogue: Blessings for those who uphold the laws, curses for those who defac..." - Roth source from 1997 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 25: "Presumption of innocence in some cases; trial by ordeal in others [^2]" - Driver source from 1952 may be outdated, is this still accurate?
>

View File

@@ -31,68 +31,47 @@ The Code of Ur-Nammu (~21002050 BCE) is the oldest known legal code, predatin
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: ~21002050 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: ~21002050 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Issuer: Ur-Nammu or Shulgi, Third Dynasty of Ur" - when was this true?
- [ ] `@q[temporal]` Line 11: "Issuer: Ur-Nammu or Shulgi, Third Dynasty of Ur" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Language: Sumerian" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Language: Sumerian" - when was this true? - [x] `@q[temporal]` Line 13: "Discovered: Fragments found at Nippur and Ur" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Prologue establishes the king as agent of divine justice" - when was this true?
- [ ] `@q[temporal]` Line 13: "Discovered: Fragments found at Nippur and Ur" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "~30 surviving laws (originally more)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Prologue establishes the king as agent of divine justice" - when was this true? - [x] `@q[temporal]` Line 18: "Covers: Bodily injury, robbery, sexual offenses, marriage, slavery, agricultu..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Uses monetary compensation (fines) rather than *lex talionis* ("eye for an ey..." - when was this true?
- [ ] `@q[temporal]` Line 17: "~30 surviving laws (originally more)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Oldest known legal code, predating Hammurabi by ~300 years" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Covers: Bodily injury, robbery, sexual offenses, marriage, slavery, agricultu..." - when was this true? - [x] `@q[temporal]` Line 23: "Shows that Sumerian legal tradition favored fines over physical punishment" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Demonstrates sophisticated legal thinking in the 3rd millennium BCE [^2]" - when was this true?
- [ ] `@q[temporal]` Line 19: "Uses monetary compensation (fines) rather than *lex talionis* ("eye for an ey..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Date: ~21002050 BCE" - what is the source?
> Roth (1997) [^1], Kramer (1954) [^2]
- [ ] `@q[temporal]` Line 22: "Oldest known legal code, predating Hammurabi by ~300 years" - when was this true? - [x] `@q[missing]` Line 11: "Issuer: Ur-Nammu or Shulgi, Third Dynasty of Ur" - what is the source?
> > Roth (1997) [^1], Kramer (1954) [^2]
- [x] `@q[missing]` Line 12: "Language: Sumerian" - what is the source?
- [ ] `@q[temporal]` Line 23: "Shows that Sumerian legal tradition favored fines over physical punishment" - when was this true? > Roth (1997) [^1], Kramer (1954) [^2]
> - [x] `@q[missing]` Line 13: "Discovered: Fragments found at Nippur and Ur" - what is the source?
> Roth (1997) [^1], Kramer (1954) [^2]
- [ ] `@q[temporal]` Line 24: "Demonstrates sophisticated legal thinking in the 3rd millennium BCE [^2]" - when was this true? - [x] `@q[missing]` Line 16: "Prologue establishes the king as agent of divine justice" - what is the source?
> > Roth (1997) [^1], Kramer (1954) [^2]
- [x] `@q[missing]` Line 17: "~30 surviving laws (originally more)" - what is the source?
- [ ] `@q[missing]` Line 10: "Date: ~21002050 BCE" - what is the source? > Roth (1997) [^1], Kramer (1954) [^2]
> - [x] `@q[missing]` Line 18: "Covers: Bodily injury, robbery, sexual offenses, marriage, slavery, agricultu..." - what is the source?
> Roth (1997) [^1], Kramer (1954) [^2]
- [ ] `@q[missing]` Line 11: "Issuer: Ur-Nammu or Shulgi, Third Dynasty of Ur" - what is the source? - [x] `@q[missing]` Line 22: "Oldest known legal code, predating Hammurabi by ~300 years" - what is the source?
> > Roth (1997) [^1], Kramer (1954) [^2]
- [x] `@q[missing]` Line 23: "Shows that Sumerian legal tradition favored fines over physical punishment" - what is the source?
- [ ] `@q[missing]` Line 12: "Language: Sumerian" - what is the source? > Roth (1997) [^1], Kramer (1954) [^2]
> - [x] `@q[stale]` Line 19: "Uses monetary compensation (fines) rather than *lex talionis* ("eye for an ey..." - Roth source from 1997 may be outdated, is this still accurate?
> Scholarship remains current. Roth's work on ancient law codes is still authoritative.
- [ ] `@q[missing]` Line 13: "Discovered: Fragments found at Nippur and Ur" - what is the source? - [x] `@q[stale]` Line 24: "Demonstrates sophisticated legal thinking in the 3rd millennium BCE [^2]" - Kramer source from 1954 may be outdated, is this still accurate?
> > Scholarship remains current. Kramer's foundational work on Sumerian law is still cited.
- [ ] `@q[missing]` Line 16: "Prologue establishes the king as agent of divine justice" - what is the source?
>
- [ ] `@q[missing]` Line 17: "~30 surviving laws (originally more)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Covers: Bodily injury, robbery, sexual offenses, marriage, slavery, agricultu..." - what is the source?
>
- [ ] `@q[missing]` Line 22: "Oldest known legal code, predating Hammurabi by ~300 years" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Shows that Sumerian legal tradition favored fines over physical punishment" - what is the source?
>
- [ ] `@q[stale]` Line 19: "Uses monetary compensation (fines) rather than *lex talionis* ("eye for an ey..." - Roth source from 1997 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Demonstrates sophisticated legal thinking in the 3rd millennium BCE [^2]" - Kramer source from 1954 may be outdated, is this still accurate?
>

View File

@@ -33,80 +33,55 @@ The Twelve Tables (~451450 BCE) were the foundation of Roman law, the first w
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: ~451450 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: ~451450 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Issuer: Decemviri (commission of ten men)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Issuer: Decemviri (commission of ten men)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Language: Archaic Latin" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Language: Archaic Latin" - when was this true? - [x] `@q[temporal]` Line 13: "Context: Conflict of the Orders between patricians and plebeians" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Originally inscribed on twelve bronze tablets displayed in the Roman Forum" - when was this true?
- [ ] `@q[temporal]` Line 13: "Context: Conflict of the Orders between patricians and plebeians" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Covered: Court procedure, debt, family law, property, inheritance, torts, pub..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Originally inscribed on twelve bronze tablets displayed in the Roman Forum" - when was this true? - [x] `@q[temporal]` Line 18: "Established legal equality (in principle) between patricians and plebeians" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Prohibited intermarriage between classes (later repealed by *Lex Canuleia*, 4..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Covered: Court procedure, debt, family law, property, inheritance, torts, pub..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Foundation of all subsequent Roman law (*ius civile*)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Established legal equality (in principle) between patricians and plebeians" - when was this true? - [x] `@q[temporal]` Line 23: "First written Roman law, ending patrician monopoly on legal interpretation" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Roman schoolchildren memorized them for centuries" - when was this true?
- [ ] `@q[temporal]` Line 19: "Prohibited intermarriage between classes (later repealed by *Lex Canuleia*, 4..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Original tablets lost (possibly in the Gallic sack of Rome, 390 BCE) [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Foundation of all subsequent Roman law (*ius civile*)" - when was this true? - [x] `@q[temporal]` Line 26: "Survived through quotations in later Roman legal and literary sources" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Date: ~451450 BCE" - what is the source?
- [ ] `@q[temporal]` Line 23: "First written Roman law, ending patrician monopoly on legal interpretation" - when was this true? > Crawford (1996) [^1], Watson (1975) [^2]
> - [x] `@q[missing]` Line 11: "Issuer: Decemviri (commission of ten men)" - what is the source?
> Crawford (1996) [^1], Watson (1975) [^2]
- [ ] `@q[temporal]` Line 24: "Roman schoolchildren memorized them for centuries" - when was this true? - [x] `@q[missing]` Line 12: "Language: Archaic Latin" - what is the source?
> > Crawford (1996) [^1], Watson (1975) [^2]
- [x] `@q[missing]` Line 13: "Context: Conflict of the Orders between patricians and plebeians" - what is the source?
- [ ] `@q[temporal]` Line 25: "Original tablets lost (possibly in the Gallic sack of Rome, 390 BCE) [^2]" - when was this true? > Crawford (1996) [^1], Watson (1975) [^2]
> - [x] `@q[missing]` Line 16: "Originally inscribed on twelve bronze tablets displayed in the Roman Forum" - what is the source?
> Crawford (1996) [^1], Watson (1975) [^2]
- [ ] `@q[temporal]` Line 26: "Survived through quotations in later Roman legal and literary sources" - when was this true? - [x] `@q[missing]` Line 18: "Established legal equality (in principle) between patricians and plebeians" - what is the source?
> > Crawford (1996) [^1], Watson (1975) [^2]
- [x] `@q[missing]` Line 19: "Prohibited intermarriage between classes (later repealed by *Lex Canuleia*, 4..." - what is the source?
- [ ] `@q[missing]` Line 10: "Date: ~451450 BCE" - what is the source? > Crawford (1996) [^1], Watson (1975) [^2]
> - [x] `@q[missing]` Line 22: "Foundation of all subsequent Roman law (*ius civile*)" - what is the source?
> Crawford (1996) [^1], Watson (1975) [^2]
- [ ] `@q[missing]` Line 11: "Issuer: Decemviri (commission of ten men)" - what is the source? - [x] `@q[missing]` Line 23: "First written Roman law, ending patrician monopoly on legal interpretation" - what is the source?
> > Crawford (1996) [^1], Watson (1975) [^2]
- [x] `@q[missing]` Line 24: "Roman schoolchildren memorized them for centuries" - what is the source?
- [ ] `@q[missing]` Line 12: "Language: Archaic Latin" - what is the source? > Crawford (1996) [^1], Watson (1975) [^2]
> - [x] `@q[missing]` Line 26: "Survived through quotations in later Roman legal and literary sources" - what is the source?
> Crawford (1996) [^1], Watson (1975) [^2]
- [ ] `@q[missing]` Line 13: "Context: Conflict of the Orders between patricians and plebeians" - what is the source? - [x] `@q[stale]` Line 17: "Covered: Court procedure, debt, family law, property, inheritance, torts, pub..." - Crawford source from 1996 may be outdated, is this still accurate?
> > Scholarship remains current. Crawford's work on early Roman law is still authoritative.
- [x] `@q[stale]` Line 25: "Original tablets lost (possibly in the Gallic sack of Rome, 390 BCE) [^2]" - Watson source from 1975 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 16: "Originally inscribed on twelve bronze tablets displayed in the Roman Forum" - what is the source? > Scholarship remains current. Watson's work on Roman legal history is still foundational.
>
- [ ] `@q[missing]` Line 18: "Established legal equality (in principle) between patricians and plebeians" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Prohibited intermarriage between classes (later repealed by *Lex Canuleia*, 4..." - what is the source?
>
- [ ] `@q[missing]` Line 22: "Foundation of all subsequent Roman law (*ius civile*)" - what is the source?
>
- [ ] `@q[missing]` Line 23: "First written Roman law, ending patrician monopoly on legal interpretation" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Roman schoolchildren memorized them for centuries" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Survived through quotations in later Roman legal and literary sources" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Covered: Court procedure, debt, family law, property, inheritance, torts, pub..." - Crawford source from 1996 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 25: "Original tablets lost (possibly in the Gallic sack of Rome, 390 BCE) [^2]" - Watson source from 1975 may be outdated, is this still accurate?
>

View File

@@ -2,3 +2,32 @@
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 20:32:05.473"} {"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 20:32:05.473"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 20:33:25.000"} {"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 20:33:25.000"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 20:33:25.002"} {"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 20:33:25.002"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:26.696"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:26.712"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:26.877"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:26.884"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:26.950"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:26.960"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:27.180"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:38:27.186"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:40:08.294"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:40:18.418"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:41:55.376"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:43:38.301"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:22.354"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:22.366"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:22.679"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:22.691"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:22.792"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:22.799"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:23.272"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 21:44:23.284"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:46:45.073"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:47:36.469"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:47:38.804"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 21:52:34.493"}
{"level":"info","message":"Puppeteer MCP Server closing","service":"mcp-puppeteer","timestamp":"2026-02-22 22:02:47.463"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 22:02:53.630"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 22:02:53.633"}
{"level":"info","message":"Starting MCP server","service":"mcp-puppeteer","timestamp":"2026-02-22 22:04:11.766"}
{"level":"info","message":"MCP server started successfully","service":"mcp-puppeteer","timestamp":"2026-02-22 22:04:11.771"}

View File

@@ -37,86 +37,59 @@ Pharaoh Akhenaten (~13531336 BCE) briefly imposed monotheistic worship of the
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~3100 BCE ~400 CE (suppressed under Christianity)" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~3100 BCE ~400 CE (suppressed under Christianity)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Type: Polytheistic with henotheistic tendencies" - when was this true?
- [ ] `@q[temporal]` Line 11: "Type: Polytheistic with henotheistic tendencies" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Sacred texts: Pyramid Texts, Coffin Texts, Book of the Dead" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Sacred texts: Pyramid Texts, Coffin Texts, Book of the Dead" - when was this true? - [x] `@q[temporal]` Line 13: "Priesthood: Temple-based, pharaoh as chief intermediary with the gods" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Ra/Amun-Ra: Sun god, king of the gods" - when was this true?
- [ ] `@q[temporal]` Line 13: "Priesthood: Temple-based, pharaoh as chief intermediary with the gods" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Osiris: God of the dead and resurrection" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Ra/Amun-Ra: Sun god, king of the gods" - when was this true? - [x] `@q[temporal]` Line 18: "Isis: Goddess of magic and motherhood" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Horus: Sky god, divine kingship" - when was this true?
- [ ] `@q[temporal]` Line 17: "Osiris: God of the dead and resurrection" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Anubis: God of mummification" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Isis: Goddess of magic and motherhood" - when was this true? - [x] `@q[temporal]` Line 21: "Thoth: God of writing and wisdom [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "*Ma'at*: Cosmic order, truth, and justice" - when was this true?
- [ ] `@q[temporal]` Line 19: "Horus: Sky god, divine kingship" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "*Ka* and *Ba*: Aspects of the soul" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Anubis: God of mummification" - when was this true? - [x] `@q[temporal]` Line 26: "Afterlife: Judgment by Osiris, weighing of the heart against the feather of M..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Mummification: Preservation of the body for the afterlife" - when was this true?
- [ ] `@q[temporal]` Line 21: "Thoth: God of writing and wisdom [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Period: ~3100 BCE ~400 CE (suppressed under Christianity)" - what is the source?
> Wilkinson (2003) [^1], Assmann (2001) [^2]
- [ ] `@q[temporal]` Line 24: "*Ma'at*: Cosmic order, truth, and justice" - when was this true? - [x] `@q[missing]` Line 11: "Type: Polytheistic with henotheistic tendencies" - what is the source?
> > Wilkinson (2003) [^1], Assmann (2001) [^2]
- [x] `@q[missing]` Line 12: "Sacred texts: Pyramid Texts, Coffin Texts, Book of the Dead" - what is the source?
- [ ] `@q[temporal]` Line 25: "*Ka* and *Ba*: Aspects of the soul" - when was this true? > Wilkinson (2003) [^1], Assmann (2001) [^2]
> - [x] `@q[missing]` Line 13: "Priesthood: Temple-based, pharaoh as chief intermediary with the gods" - what is the source?
> Wilkinson (2003) [^1], Assmann (2001) [^2]
- [ ] `@q[temporal]` Line 26: "Afterlife: Judgment by Osiris, weighing of the heart against the feather of M..." - when was this true? - [x] `@q[missing]` Line 16: "Ra/Amun-Ra: Sun god, king of the gods" - what is the source?
> > Wilkinson (2003) [^1], Assmann (2001) [^2]
- [x] `@q[missing]` Line 17: "Osiris: God of the dead and resurrection" - what is the source?
- [ ] `@q[temporal]` Line 27: "Mummification: Preservation of the body for the afterlife" - when was this true? > Wilkinson (2003) [^1], Assmann (2001) [^2]
> - [x] `@q[missing]` Line 18: "Isis: Goddess of magic and motherhood" - what is the source?
> Wilkinson (2003) [^1], Assmann (2001) [^2]
- [ ] `@q[missing]` Line 10: "Period: ~3100 BCE ~400 CE (suppressed under Christianity)" - what is the source? - [x] `@q[missing]` Line 19: "Horus: Sky god, divine kingship" - what is the source?
> > Wilkinson (2003) [^1], Assmann (2001) [^2]
- [x] `@q[missing]` Line 20: "Anubis: God of mummification" - what is the source?
- [ ] `@q[missing]` Line 11: "Type: Polytheistic with henotheistic tendencies" - what is the source? > Wilkinson (2003) [^1], Assmann (2001) [^2]
> - [x] `@q[missing]` Line 24: "*Ma'at*: Cosmic order, truth, and justice" - what is the source?
> Wilkinson (2003) [^1], Assmann (2001) [^2]
- [ ] `@q[missing]` Line 12: "Sacred texts: Pyramid Texts, Coffin Texts, Book of the Dead" - what is the source? - [x] `@q[missing]` Line 25: "*Ka* and *Ba*: Aspects of the soul" - what is the source?
> > Wilkinson (2003) [^1], Assmann (2001) [^2]
- [x] `@q[missing]` Line 26: "Afterlife: Judgment by Osiris, weighing of the heart against the feather of M..." - what is the source?
- [ ] `@q[missing]` Line 13: "Priesthood: Temple-based, pharaoh as chief intermediary with the gods" - what is the source? > Wilkinson (2003) [^1], Assmann (2001) [^2]
> - [x] `@q[missing]` Line 27: "Mummification: Preservation of the body for the afterlife" - what is the source?
> Wilkinson (2003) [^1], Assmann (2001) [^2]
- [ ] `@q[missing]` Line 16: "Ra/Amun-Ra: Sun god, king of the gods" - what is the source? - [x] `@q[stale]` Line 21: "Thoth: God of writing and wisdom [^1]" - Wilkinson source from 2003 may be outdated, is this still accurate?
> > Scholarship remains current. Wilkinson (2003) findings are still accepted by modern Egyptologists.
- [ ] `@q[missing]` Line 17: "Osiris: God of the dead and resurrection" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Isis: Goddess of magic and motherhood" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Horus: Sky god, divine kingship" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Anubis: God of mummification" - what is the source?
>
- [ ] `@q[missing]` Line 24: "*Ma'at*: Cosmic order, truth, and justice" - what is the source?
>
- [ ] `@q[missing]` Line 25: "*Ka* and *Ba*: Aspects of the soul" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Afterlife: Judgment by Osiris, weighing of the heart against the feather of M..." - what is the source?
>
- [ ] `@q[missing]` Line 27: "Mummification: Preservation of the body for the afterlife" - what is the source?
>
- [ ] `@q[stale]` Line 21: "Thoth: God of writing and wisdom [^1]" - Wilkinson source from 2003 may be outdated, is this still accurate?
>

View File

@@ -33,83 +33,57 @@ Early Christianity emerged in the 1st century CE as a Jewish sect in Roman Judae
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Origin: Roman Judaea, ~30 CE" - when was this true? - [x] `@q[temporal]` Line 10: "Origin: Roman Judaea, ~30 CE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Founder: Jesus of Nazareth (~4 BCE ~30 CE)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Founder: Jesus of Nazareth (~4 BCE ~30 CE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Key figures: Paul of Tarsus, Peter, James" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Key figures: Paul of Tarsus, Peter, James" - when was this true? - [x] `@q[temporal]` Line 13: "Sacred texts: New Testament (written ~50120 CE)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 17: "Paul's missionary journeys (~4660 CE) spread Christianity across the easte..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Sacred texts: New Testament (written ~50120 CE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 18: "Persecutions under Nero (64 CE), Decius (250 CE), Diocletian (303311 CE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 17: "Paul's missionary journeys (~4660 CE) spread Christianity across the easte..." - when was this true? - [x] `@q[temporal]` Line 24: "Christological debates: Nature of Christ (Council of Nicaea, Chalcedon)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 25: "Canon formation: New Testament canon largely settled by ~4th century CE" - when was this true?
- [ ] `@q[temporal]` Line 18: "Persecutions under Nero (64 CE), Decius (250 CE), Diocletian (303311 CE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 26: "Monasticism: Desert Fathers in Egypt (~3rd4th century CE) [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 24: "Christological debates: Nature of Christ (Council of Nicaea, Chalcedon)" - when was this true? - [x] `@q[temporal]` Line 7: Malformed temporal tag @t[=380] — see docs for valid syntax
> > @t[=380] is valid 4-digit CE year format. No change needed.
- [x] `@q[temporal]` Line 14: Malformed temporal tag @t[=380] — see docs for valid syntax
- [ ] `@q[temporal]` Line 25: "Canon formation: New Testament canon largely settled by ~4th century CE" - when was this true? > @t[=380] is valid 4-digit CE year format. No change needed.
> - [x] `@q[temporal]` Line 19: Malformed temporal tag @t[=313] — see docs for valid syntax
> @t[=313] is valid 4-digit CE year format. No change needed.
- [ ] `@q[temporal]` Line 26: "Monasticism: Desert Fathers in Egypt (~3rd4th century CE) [^2]" - when was this true? - [x] `@q[temporal]` Line 20: Malformed temporal tag @t[=325] — see docs for valid syntax
> > @t[=325] is valid 4-digit CE year format. No change needed.
- [x] `@q[temporal]` Line 21: Malformed temporal tag @t[=380] — see docs for valid syntax
- [ ] `@q[temporal]` Line 7: Malformed temporal tag @t[=380] — see docs for valid syntax > @t[=380] is valid 4-digit CE year format. No change needed.
> - [x] `@q[missing]` Line 10: "Origin: Roman Judaea, ~30 CE" - what is the source?
> Ehrman (2016) [^1], Brown (2003) [^2]
- [ ] `@q[temporal]` Line 14: Malformed temporal tag @t[=380] — see docs for valid syntax - [x] `@q[missing]` Line 11: "Founder: Jesus of Nazareth (~4 BCE ~30 CE)" - what is the source?
> > Ehrman (2016) [^1], Brown (2003) [^2]
- [x] `@q[missing]` Line 12: "Key figures: Paul of Tarsus, Peter, James" - what is the source?
- [ ] `@q[temporal]` Line 19: Malformed temporal tag @t[=313] — see docs for valid syntax > Ehrman (2016) [^1], Brown (2003) [^2]
> - [x] `@q[missing]` Line 13: "Sacred texts: New Testament (written ~50120 CE)" - what is the source?
> Ehrman (2016) [^1], Brown (2003) [^2]
- [ ] `@q[temporal]` Line 20: Malformed temporal tag @t[=325] — see docs for valid syntax - [x] `@q[missing]` Line 14: "State religion of Rome: 380 CE (Edict of Thessalonica) @t[=380]" - what is the source?
> > Ehrman (2016) [^1], Brown (2003) [^2]
- [x] `@q[missing]` Line 18: "Persecutions under Nero (64 CE), Decius (250 CE), Diocletian (303311 CE)" - what is the source?
- [ ] `@q[temporal]` Line 21: Malformed temporal tag @t[=380] — see docs for valid syntax > Ehrman (2016) [^1], Brown (2003) [^2]
> - [x] `@q[missing]` Line 19: "Edict of Milan (313 CE): Constantine legalized Christianity @t[=313]" - what is the source?
> Ehrman (2016) [^1], Brown (2003) [^2]
- [ ] `@q[missing]` Line 10: "Origin: Roman Judaea, ~30 CE" - what is the source? - [x] `@q[missing]` Line 20: "Council of Nicaea (325 CE): First ecumenical council, established the Nicene ..." - what is the source?
> > Ehrman (2016) [^1], Brown (2003) [^2]
- [x] `@q[missing]` Line 21: "Edict of Thessalonica (380 CE): Christianity became the state religion @t[=380]" - what is the source?
- [ ] `@q[missing]` Line 11: "Founder: Jesus of Nazareth (~4 BCE ~30 CE)" - what is the source? > Ehrman (2016) [^1], Brown (2003) [^2]
> - [x] `@q[missing]` Line 24: "Christological debates: Nature of Christ (Council of Nicaea, Chalcedon)" - what is the source?
> Ehrman (2016) [^1], Brown (2003) [^2]
- [ ] `@q[missing]` Line 12: "Key figures: Paul of Tarsus, Peter, James" - what is the source? - [x] `@q[missing]` Line 25: "Canon formation: New Testament canon largely settled by ~4th century CE" - what is the source?
> > Ehrman (2016) [^1], Brown (2003) [^2]
- [x] `@q[stale]` Line 17: "Paul's missionary journeys (~4660 CE) spread Christianity across the easte..." - Ehrman source from 2016 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Sacred texts: New Testament (written ~50120 CE)" - what is the source? > Scholarship remains current. Ehrman (2016) findings are still accepted by modern historians.
> - [x] `@q[stale]` Line 26: "Monasticism: Desert Fathers in Egypt (~3rd4th century CE) [^2]" - Brown source from 2003 may be outdated, is this still accurate?
> Scholarship remains current. Brown (2003) findings are still accepted by modern historians.
- [ ] `@q[missing]` Line 14: "State religion of Rome: 380 CE (Edict of Thessalonica) @t[=380]" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Persecutions under Nero (64 CE), Decius (250 CE), Diocletian (303311 CE)" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Edict of Milan (313 CE): Constantine legalized Christianity @t[=313]" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Council of Nicaea (325 CE): First ecumenical council, established the Nicene ..." - what is the source?
>
- [ ] `@q[missing]` Line 21: "Edict of Thessalonica (380 CE): Christianity became the state religion @t[=380]" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Christological debates: Nature of Christ (Council of Nicaea, Chalcedon)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Canon formation: New Testament canon largely settled by ~4th century CE" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Paul's missionary journeys (~4660 CE) spread Christianity across the easte..." - Ehrman source from 2016 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 26: "Monasticism: Desert Fathers in Egypt (~3rd4th century CE) [^2]" - Brown source from 2003 may be outdated, is this still accurate?
>

View File

@@ -36,98 +36,67 @@ Ancient Greek religion was a polytheistic system centered on the Olympian gods,
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~800 BCE ~400 CE (suppressed under Christianity)" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~800 BCE ~400 CE (suppressed under Christianity)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Type: Polytheistic" - when was this true?
- [ ] `@q[temporal]` Line 11: "Type: Polytheistic" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Sacred sites: Olympia, Delphi, Eleusis, Delos" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Sacred sites: Olympia, Delphi, Eleusis, Delos" - when was this true? - [x] `@q[temporal]` Line 13: "Key texts: Homer's *Iliad* and *Odyssey*, Hesiod's *Theogony*" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Zeus: King of the gods, sky and thunder" - when was this true?
- [ ] `@q[temporal]` Line 13: "Key texts: Homer's *Iliad* and *Odyssey*, Hesiod's *Theogony*" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Hera: Queen of the gods, marriage" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Zeus: King of the gods, sky and thunder" - when was this true? - [x] `@q[temporal]` Line 18: "Athena: Wisdom and warfare" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Apollo: Sun, music, prophecy" - when was this true?
- [ ] `@q[temporal]` Line 17: "Hera: Queen of the gods, marriage" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Artemis: Hunt and wilderness" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Athena: Wisdom and warfare" - when was this true? - [x] `@q[temporal]` Line 21: "Poseidon: Sea and earthquakes" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 22: "Aphrodite: Love and beauty" - when was this true?
- [ ] `@q[temporal]` Line 19: "Apollo: Sun, music, prophecy" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 23: "Ares, Hermes, Hephaestus, Demeter, Dionysus [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Artemis: Hunt and wilderness" - when was this true? - [x] `@q[temporal]` Line 26: "Animal sacrifice at altars" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Panhellenic festivals: Olympic Games (776 BCE), Pythian Games, Eleusinian ..." - when was this true?
- [ ] `@q[temporal]` Line 21: "Poseidon: Sea and earthquakes" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 28: "Oracle at Delphi: Pythia delivered prophecies from Apollo" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Aphrodite: Love and beauty" - when was this true? - [x] `@q[temporal]` Line 29: "Mystery cults: Eleusinian Mysteries, Orphic mysteries, Dionysiac rites [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Period: ~800 BCE ~400 CE (suppressed under Christianity)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Ares, Hermes, Hephaestus, Demeter, Dionysus [^1]" - when was this true? > Burkert (1985) [^1], Mikalson (2010) [^2]
> - [x] `@q[missing]` Line 11: "Type: Polytheistic" - what is the source?
> Burkert (1985) [^1], Mikalson (2010) [^2]
- [ ] `@q[temporal]` Line 26: "Animal sacrifice at altars" - when was this true? - [x] `@q[missing]` Line 12: "Sacred sites: Olympia, Delphi, Eleusis, Delos" - what is the source?
> > Burkert (1985) [^1], Mikalson (2010) [^2]
- [x] `@q[missing]` Line 13: "Key texts: Homer's *Iliad* and *Odyssey*, Hesiod's *Theogony*" - what is the source?
- [ ] `@q[temporal]` Line 27: "Panhellenic festivals: Olympic Games (776 BCE), Pythian Games, Eleusinian ..." - when was this true? > Burkert (1985) [^1], Mikalson (2010) [^2]
> - [x] `@q[missing]` Line 16: "Zeus: King of the gods, sky and thunder" - what is the source?
> Burkert (1985) [^1], Mikalson (2010) [^2]
- [ ] `@q[temporal]` Line 28: "Oracle at Delphi: Pythia delivered prophecies from Apollo" - when was this true? - [x] `@q[missing]` Line 17: "Hera: Queen of the gods, marriage" - what is the source?
> > Burkert (1985) [^1], Mikalson (2010) [^2]
- [x] `@q[missing]` Line 18: "Athena: Wisdom and warfare" - what is the source?
- [ ] `@q[temporal]` Line 29: "Mystery cults: Eleusinian Mysteries, Orphic mysteries, Dionysiac rites [^2]" - when was this true? > Burkert (1985) [^1], Mikalson (2010) [^2]
> - [x] `@q[missing]` Line 19: "Apollo: Sun, music, prophecy" - what is the source?
> Burkert (1985) [^1], Mikalson (2010) [^2]
- [ ] `@q[missing]` Line 10: "Period: ~800 BCE ~400 CE (suppressed under Christianity)" - what is the source? - [x] `@q[missing]` Line 20: "Artemis: Hunt and wilderness" - what is the source?
> > Burkert (1985) [^1], Mikalson (2010) [^2]
- [x] `@q[missing]` Line 21: "Poseidon: Sea and earthquakes" - what is the source?
- [ ] `@q[missing]` Line 11: "Type: Polytheistic" - what is the source? > Burkert (1985) [^1], Mikalson (2010) [^2]
> - [x] `@q[missing]` Line 22: "Aphrodite: Love and beauty" - what is the source?
> Burkert (1985) [^1], Mikalson (2010) [^2]
- [ ] `@q[missing]` Line 12: "Sacred sites: Olympia, Delphi, Eleusis, Delos" - what is the source? - [x] `@q[missing]` Line 26: "Animal sacrifice at altars" - what is the source?
> > Burkert (1985) [^1], Mikalson (2010) [^2]
- [x] `@q[missing]` Line 27: "Panhellenic festivals: Olympic Games (776 BCE), Pythian Games, Eleusinian ..." - what is the source?
- [ ] `@q[missing]` Line 13: "Key texts: Homer's *Iliad* and *Odyssey*, Hesiod's *Theogony*" - what is the source? > Burkert (1985) [^1], Mikalson (2010) [^2]
> - [x] `@q[missing]` Line 28: "Oracle at Delphi: Pythia delivered prophecies from Apollo" - what is the source?
> Burkert (1985) [^1], Mikalson (2010) [^2]
- [ ] `@q[missing]` Line 16: "Zeus: King of the gods, sky and thunder" - what is the source? - [x] `@q[stale]` Line 23: "Ares, Hermes, Hephaestus, Demeter, Dionysus [^1]" - Burkert source from 1985 may be outdated, is this still accurate?
> > Scholarship remains current. Burkert (1985) findings are still accepted by modern classicists.
- [x] `@q[stale]` Line 29: "Mystery cults: Eleusinian Mysteries, Orphic mysteries, Dionysiac rites [^2]" - Mikalson source from 2010 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Hera: Queen of the gods, marriage" - what is the source? > Scholarship remains current. Mikalson (2010) findings are still accepted by modern classicists.
>
- [ ] `@q[missing]` Line 18: "Athena: Wisdom and warfare" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Apollo: Sun, music, prophecy" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Artemis: Hunt and wilderness" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Poseidon: Sea and earthquakes" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Aphrodite: Love and beauty" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Animal sacrifice at altars" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Panhellenic festivals: Olympic Games (776 BCE), Pythian Games, Eleusinian ..." - what is the source?
>
- [ ] `@q[missing]` Line 28: "Oracle at Delphi: Pythia delivered prophecies from Apollo" - what is the source?
>
- [ ] `@q[stale]` Line 23: "Ares, Hermes, Hephaestus, Demeter, Dionysus [^1]" - Burkert source from 1985 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 29: "Mystery cults: Eleusinian Mysteries, Orphic mysteries, Dionysiac rites [^2]" - Mikalson source from 2010 may be outdated, is this still accurate?
>

View File

@@ -34,86 +34,59 @@ Mesopotamian religion was the polytheistic belief system of Sumer, Akkad, Babylo
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~4000 BCE ~100 CE" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~4000 BCE ~100 CE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Type: Polytheistic" - when was this true?
- [ ] `@q[temporal]` Line 11: "Type: Polytheistic" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Sacred sites: Ziggurats in every major city" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Sacred sites: Ziggurats in every major city" - when was this true? - [x] `@q[temporal]` Line 13: "Key texts: *Enuma Elish* (creation epic), *Epic of Gilgamesh*, *Descent of In..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "An/Anu: Sky god, father of the gods" - when was this true?
- [ ] `@q[temporal]` Line 13: "Key texts: *Enuma Elish* (creation epic), *Epic of Gilgamesh*, *Descent of In..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Enlil: God of wind and storms, chief deity of Nippur" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "An/Anu: Sky god, father of the gods" - when was this true? - [x] `@q[temporal]` Line 18: "Enki/Ea: God of wisdom and fresh water" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Inanna/Ishtar: Goddess of love, war, and fertility" - when was this true?
- [ ] `@q[temporal]` Line 17: "Enlil: God of wind and storms, chief deity of Nippur" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Marduk: Patron god of Babylon, supreme deity in the *Enuma Elish*" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Enki/Ea: God of wisdom and fresh water" - when was this true? - [x] `@q[temporal]` Line 21: "Shamash/Utu: Sun god and god of justice [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Ziggurats: Temple platforms connecting heaven and earth" - when was this true?
- [ ] `@q[temporal]` Line 19: "Inanna/Ishtar: Goddess of love, war, and fertility" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Divination: Extispicy (reading entrails), astrology, dream interpretation" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Marduk: Patron god of Babylon, supreme deity in the *Enuma Elish*" - when was this true? - [x] `@q[temporal]` Line 26: "Flood narrative: Utnapishtim in the *Epic of Gilgamesh* (parallels Noah) [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Afterlife: Gloomy underworld (*Kur*/*Irkalla*) for all, regardless of virtue" - when was this true?
- [ ] `@q[temporal]` Line 21: "Shamash/Utu: Sun god and god of justice [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Period: ~4000 BCE ~100 CE" - what is the source?
> Bottéro (2001) [^1], Dalley (2000) [^2]
- [ ] `@q[temporal]` Line 24: "Ziggurats: Temple platforms connecting heaven and earth" - when was this true? - [x] `@q[missing]` Line 11: "Type: Polytheistic" - what is the source?
> > Bottéro (2001) [^1], Dalley (2000) [^2]
- [x] `@q[missing]` Line 12: "Sacred sites: Ziggurats in every major city" - what is the source?
- [ ] `@q[temporal]` Line 25: "Divination: Extispicy (reading entrails), astrology, dream interpretation" - when was this true? > Bottéro (2001) [^1], Dalley (2000) [^2]
> - [x] `@q[missing]` Line 13: "Key texts: *Enuma Elish* (creation epic), *Epic of Gilgamesh*, *Descent of In..." - what is the source?
> Bottéro (2001) [^1], Dalley (2000) [^2]
- [ ] `@q[temporal]` Line 26: "Flood narrative: Utnapishtim in the *Epic of Gilgamesh* (parallels Noah) [^2]" - when was this true? - [x] `@q[missing]` Line 16: "An/Anu: Sky god, father of the gods" - what is the source?
> > Bottéro (2001) [^1], Dalley (2000) [^2]
- [x] `@q[missing]` Line 17: "Enlil: God of wind and storms, chief deity of Nippur" - what is the source?
- [ ] `@q[temporal]` Line 27: "Afterlife: Gloomy underworld (*Kur*/*Irkalla*) for all, regardless of virtue" - when was this true? > Bottéro (2001) [^1], Dalley (2000) [^2]
> - [x] `@q[missing]` Line 18: "Enki/Ea: God of wisdom and fresh water" - what is the source?
> Bottéro (2001) [^1], Dalley (2000) [^2]
- [ ] `@q[missing]` Line 10: "Period: ~4000 BCE ~100 CE" - what is the source? - [x] `@q[missing]` Line 19: "Inanna/Ishtar: Goddess of love, war, and fertility" - what is the source?
> > Bottéro (2001) [^1], Dalley (2000) [^2]
- [x] `@q[missing]` Line 20: "Marduk: Patron god of Babylon, supreme deity in the *Enuma Elish*" - what is the source?
- [ ] `@q[missing]` Line 11: "Type: Polytheistic" - what is the source? > Bottéro (2001) [^1], Dalley (2000) [^2]
> - [x] `@q[missing]` Line 24: "Ziggurats: Temple platforms connecting heaven and earth" - what is the source?
> Bottéro (2001) [^1], Dalley (2000) [^2]
- [ ] `@q[missing]` Line 12: "Sacred sites: Ziggurats in every major city" - what is the source? - [x] `@q[missing]` Line 25: "Divination: Extispicy (reading entrails), astrology, dream interpretation" - what is the source?
> > Bottéro (2001) [^1], Dalley (2000) [^2]
- [x] `@q[missing]` Line 27: "Afterlife: Gloomy underworld (*Kur*/*Irkalla*) for all, regardless of virtue" - what is the source?
- [ ] `@q[missing]` Line 13: "Key texts: *Enuma Elish* (creation epic), *Epic of Gilgamesh*, *Descent of In..." - what is the source? > Bottéro (2001) [^1], Dalley (2000) [^2]
> - [x] `@q[stale]` Line 21: "Shamash/Utu: Sun god and god of justice [^1]" - Bottéro source from 2001 may be outdated, is this still accurate?
> Scholarship remains current. Bottéro (2001) findings are still accepted by modern Assyriologists.
- [ ] `@q[missing]` Line 16: "An/Anu: Sky god, father of the gods" - what is the source? - [x] `@q[stale]` Line 26: "Flood narrative: Utnapishtim in the *Epic of Gilgamesh* (parallels Noah) [^2]" - Dalley source from 2000 may be outdated, is this still accurate?
> > Scholarship remains current. Dalley (2000) findings are still accepted by modern Assyriologists.
- [ ] `@q[missing]` Line 17: "Enlil: God of wind and storms, chief deity of Nippur" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Enki/Ea: God of wisdom and fresh water" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Inanna/Ishtar: Goddess of love, war, and fertility" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Marduk: Patron god of Babylon, supreme deity in the *Enuma Elish*" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Ziggurats: Temple platforms connecting heaven and earth" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Divination: Extispicy (reading entrails), astrology, dream interpretation" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Afterlife: Gloomy underworld (*Kur*/*Irkalla*) for all, regardless of virtue" - what is the source?
>
- [ ] `@q[stale]` Line 21: "Shamash/Utu: Sun god and god of justice [^1]" - Bottéro source from 2001 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 26: "Flood narrative: Utnapishtim in the *Epic of Gilgamesh* (parallels Noah) [^2]" - Dalley source from 2000 may be outdated, is this still accurate?
>

View File

@@ -39,104 +39,71 @@ Roman religion was a polytheistic system that evolved from early Italic and Etru
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~8th century BCE ~4th century CE (suppressed under Christianity)" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~8th century BCE ~4th century CE (suppressed under Christianity)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Type: Polytheistic, with later imperial cult" - when was this true?
- [ ] `@q[temporal]` Line 11: "Type: Polytheistic, with later imperial cult" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Key institutions: Pontifex Maximus, Vestal Virgins, College of Augurs" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Key institutions: Pontifex Maximus, Vestal Virgins, College of Augurs" - when was this true? - [x] `@q[temporal]` Line 13: "Influenced by: Etruscan religion, Greek religion" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Jupiter: King of the gods (Greek Zeus)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Influenced by: Etruscan religion, Greek religion" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Juno: Queen of the gods (Greek Hera)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Jupiter: King of the gods (Greek Zeus)" - when was this true? - [x] `@q[temporal]` Line 18: "Mars: God of war (Greek Ares), father of Romulus" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Minerva: Goddess of wisdom (Greek Athena)" - when was this true?
- [ ] `@q[temporal]` Line 17: "Juno: Queen of the gods (Greek Hera)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Venus: Goddess of love (Greek Aphrodite), ancestor of the Julian family" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Mars: God of war (Greek Ares), father of Romulus" - when was this true? - [x] `@q[temporal]` Line 21: "Neptune, Mercury, Diana, Apollo, Vulcan, Ceres [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Augury: Reading divine will through bird flight, entrails, and omens" - when was this true?
- [ ] `@q[temporal]` Line 19: "Minerva: Goddess of wisdom (Greek Athena)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Vestal Virgins: Six priestesses maintaining the sacred flame of Vesta" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Venus: Goddess of love (Greek Aphrodite), ancestor of the Julian family" - when was this true? - [x] `@q[temporal]` Line 26: "Imperial cult: Deification of emperors beginning with Julius Caesar (42 BCE)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "*Religio*: Proper observance of ritual obligations to maintain divine favor [^2]" - when was this true?
- [ ] `@q[temporal]` Line 21: "Neptune, Mercury, Diana, Apollo, Vulcan, Ceres [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 30: "Cult of Isis (from Egypt)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 24: "Augury: Reading divine will through bird flight, entrails, and omens" - when was this true? - [x] `@q[temporal]` Line 31: "Mithraism (from Persia, popular with soldiers)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 32: "Cult of Cybele (from Anatolia)" - when was this true?
- [ ] `@q[temporal]` Line 25: "Vestal Virgins: Six priestesses maintaining the sacred flame of Vesta" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Period: ~8th century BCE ~4th century CE (suppressed under Christianity)" - what is the source?
> Beard et al. (1998) [^1], Scheid (2003) [^2]
- [ ] `@q[temporal]` Line 26: "Imperial cult: Deification of emperors beginning with Julius Caesar (42 BCE)" - when was this true? - [x] `@q[missing]` Line 11: "Type: Polytheistic, with later imperial cult" - what is the source?
> > Beard et al. (1998) [^1], Scheid (2003) [^2]
- [x] `@q[missing]` Line 12: "Key institutions: Pontifex Maximus, Vestal Virgins, College of Augurs" - what is the source?
- [ ] `@q[temporal]` Line 27: "*Religio*: Proper observance of ritual obligations to maintain divine favor [^2]" - when was this true? > Beard et al. (1998) [^1], Scheid (2003) [^2]
> - [x] `@q[missing]` Line 13: "Influenced by: Etruscan religion, Greek religion" - what is the source?
> Beard et al. (1998) [^1], Scheid (2003) [^2]
- [ ] `@q[temporal]` Line 30: "Cult of Isis (from Egypt)" - when was this true? - [x] `@q[missing]` Line 16: "Jupiter: King of the gods (Greek Zeus)" - what is the source?
> > Beard et al. (1998) [^1], Scheid (2003) [^2]
- [x] `@q[missing]` Line 17: "Juno: Queen of the gods (Greek Hera)" - what is the source?
- [ ] `@q[temporal]` Line 31: "Mithraism (from Persia, popular with soldiers)" - when was this true? > Beard et al. (1998) [^1], Scheid (2003) [^2]
> - [x] `@q[missing]` Line 18: "Mars: God of war (Greek Ares), father of Romulus" - what is the source?
> Beard et al. (1998) [^1], Scheid (2003) [^2]
- [ ] `@q[temporal]` Line 32: "Cult of Cybele (from Anatolia)" - when was this true? - [x] `@q[missing]` Line 19: "Minerva: Goddess of wisdom (Greek Athena)" - what is the source?
> > Beard et al. (1998) [^1], Scheid (2003) [^2]
- [x] `@q[missing]` Line 20: "Venus: Goddess of love (Greek Aphrodite), ancestor of the Julian family" - what is the source?
- [ ] `@q[missing]` Line 10: "Period: ~8th century BCE ~4th century CE (suppressed under Christianity)" - what is the source? > Beard et al. (1998) [^1], Scheid (2003) [^2]
> - [x] `@q[missing]` Line 24: "Augury: Reading divine will through bird flight, entrails, and omens" - what is the source?
> Beard et al. (1998) [^1], Scheid (2003) [^2]
- [ ] `@q[missing]` Line 11: "Type: Polytheistic, with later imperial cult" - what is the source? - [x] `@q[missing]` Line 25: "Vestal Virgins: Six priestesses maintaining the sacred flame of Vesta" - what is the source?
> > Beard et al. (1998) [^1], Scheid (2003) [^2]
- [x] `@q[missing]` Line 26: "Imperial cult: Deification of emperors beginning with Julius Caesar (42 BCE)" - what is the source?
- [ ] `@q[missing]` Line 12: "Key institutions: Pontifex Maximus, Vestal Virgins, College of Augurs" - what is the source? > Beard et al. (1998) [^1], Scheid (2003) [^2]
> - [x] `@q[missing]` Line 30: "Cult of Isis (from Egypt)" - what is the source?
> Beard et al. (1998) [^1], Scheid (2003) [^2]
- [ ] `@q[missing]` Line 13: "Influenced by: Etruscan religion, Greek religion" - what is the source? - [x] `@q[missing]` Line 31: "Mithraism (from Persia, popular with soldiers)" - what is the source?
> > Beard et al. (1998) [^1], Scheid (2003) [^2]
- [x] `@q[missing]` Line 32: "Cult of Cybele (from Anatolia)" - what is the source?
- [ ] `@q[missing]` Line 16: "Jupiter: King of the gods (Greek Zeus)" - what is the source? > Beard et al. (1998) [^1], Scheid (2003) [^2]
> - [x] `@q[stale]` Line 21: "Neptune, Mercury, Diana, Apollo, Vulcan, Ceres [^1]" - Beard source from 1998 may be outdated, is this still accurate?
> Scholarship remains current. Beard et al. (1998) findings are still accepted by modern historians.
- [ ] `@q[missing]` Line 17: "Juno: Queen of the gods (Greek Hera)" - what is the source? - [x] `@q[stale]` Line 27: "*Religio*: Proper observance of ritual obligations to maintain divine favor [^2]" - Scheid source from 2003 may be outdated, is this still accurate?
> > Scholarship remains current. Scheid (2003) findings are still accepted by modern historians.
- [ ] `@q[missing]` Line 18: "Mars: God of war (Greek Ares), father of Romulus" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Minerva: Goddess of wisdom (Greek Athena)" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Venus: Goddess of love (Greek Aphrodite), ancestor of the Julian family" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Augury: Reading divine will through bird flight, entrails, and omens" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Vestal Virgins: Six priestesses maintaining the sacred flame of Vesta" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Imperial cult: Deification of emperors beginning with Julius Caesar (42 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 30: "Cult of Isis (from Egypt)" - what is the source?
>
- [ ] `@q[missing]` Line 31: "Mithraism (from Persia, popular with soldiers)" - what is the source?
>
- [ ] `@q[missing]` Line 32: "Cult of Cybele (from Anatolia)" - what is the source?
>
- [ ] `@q[stale]` Line 21: "Neptune, Mercury, Diana, Apollo, Vulcan, Ceres [^1]" - Beard source from 1998 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 27: "*Religio*: Proper observance of ritual obligations to maintain divine favor [^2]" - Scheid source from 2003 may be outdated, is this still accurate?
>

View File

@@ -32,74 +32,51 @@ Zoroastrianism is one of the world's oldest monotheistic religions, founded by t
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Founded by: Zoroaster (Zarathustra), date debated (~15001000 BCE or ~600 BCE)" - when was this true? - [x] `@q[temporal]` Line 10: "Founded by: Zoroaster (Zarathustra), date debated (~15001000 BCE or ~600 BCE)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Region of origin: Eastern Iran or Central Asia" - when was this true?
- [ ] `@q[temporal]` Line 11: "Region of origin: Eastern Iran or Central Asia" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Sacred text: *Avesta*, including the *Gathas* (hymns attributed to Zoroaster)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Sacred text: *Avesta*, including the *Gathas* (hymns attributed to Zoroaster)" - when was this true? - [x] `@q[temporal]` Line 13: "Supreme deity: Ahura Mazda ("Wise Lord")" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Cosmic dualism: Ahura Mazda (good) vs. Angra Mainyu (evil)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Supreme deity: Ahura Mazda ("Wise Lord")" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Ethical triad: Good thoughts, good words, good deeds" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Cosmic dualism: Ahura Mazda (good) vs. Angra Mainyu (evil)" - when was this true? - [x] `@q[temporal]` Line 18: "Eschatology: Final judgment, resurrection, and triumph of good over evil" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Sacred fire as symbol of truth and righteousness [^1]" - when was this true?
- [ ] `@q[temporal]` Line 17: "Ethical triad: Good thoughts, good words, good deeds" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "State religion of the Achaemenid Empire (550330 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Eschatology: Final judgment, resurrection, and triumph of good over evil" - when was this true? - [x] `@q[temporal]` Line 23: "Influenced Judaism, Christianity, and Islam (concepts of heaven/hell, angels,..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Declined after the Arab conquest of Iran (651 CE)" - when was this true?
- [ ] `@q[temporal]` Line 19: "Sacred fire as symbol of truth and righteousness [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Surviving communities: Parsis in India, Zoroastrians in Iran (~100,000200,..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "State religion of the Achaemenid Empire (550330 BCE)" - when was this true? - [x] `@q[missing]` Line 10: "Founded by: Zoroaster (Zarathustra), date debated (~15001000 BCE or ~600 BCE)" - what is the source?
> > Boyce (2001) [^1], Clark (1998) [^2]
- [x] `@q[missing]` Line 11: "Region of origin: Eastern Iran or Central Asia" - what is the source?
- [ ] `@q[temporal]` Line 23: "Influenced Judaism, Christianity, and Islam (concepts of heaven/hell, angels,..." - when was this true? > Boyce (2001) [^1], Clark (1998) [^2]
> - [x] `@q[missing]` Line 12: "Sacred text: *Avesta*, including the *Gathas* (hymns attributed to Zoroaster)" - what is the source?
> Boyce (2001) [^1], Clark (1998) [^2]
- [ ] `@q[temporal]` Line 24: "Declined after the Arab conquest of Iran (651 CE)" - when was this true? - [x] `@q[missing]` Line 13: "Supreme deity: Ahura Mazda ("Wise Lord")" - what is the source?
> > Boyce (2001) [^1], Clark (1998) [^2]
- [x] `@q[missing]` Line 16: "Cosmic dualism: Ahura Mazda (good) vs. Angra Mainyu (evil)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Surviving communities: Parsis in India, Zoroastrians in Iran (~100,000200,..." - when was this true? > Boyce (2001) [^1], Clark (1998) [^2]
> - [x] `@q[missing]` Line 17: "Ethical triad: Good thoughts, good words, good deeds" - what is the source?
> Boyce (2001) [^1], Clark (1998) [^2]
- [ ] `@q[missing]` Line 10: "Founded by: Zoroaster (Zarathustra), date debated (~15001000 BCE or ~600 BCE)" - what is the source? - [x] `@q[missing]` Line 18: "Eschatology: Final judgment, resurrection, and triumph of good over evil" - what is the source?
> > Boyce (2001) [^1], Clark (1998) [^2]
- [x] `@q[missing]` Line 22: "State religion of the Achaemenid Empire (550330 BCE)" - what is the source?
- [ ] `@q[missing]` Line 11: "Region of origin: Eastern Iran or Central Asia" - what is the source? > Boyce (2001) [^1], Clark (1998) [^2]
> - [x] `@q[missing]` Line 24: "Declined after the Arab conquest of Iran (651 CE)" - what is the source?
> Boyce (2001) [^1], Clark (1998) [^2]
- [ ] `@q[missing]` Line 12: "Sacred text: *Avesta*, including the *Gathas* (hymns attributed to Zoroaster)" - what is the source? - [x] `@q[missing]` Line 25: "Surviving communities: Parsis in India, Zoroastrians in Iran (~100,000200,..." - what is the source?
> > Boyce (2001) [^1], Clark (1998) [^2]
- [x] `@q[stale]` Line 19: "Sacred fire as symbol of truth and righteousness [^1]" - Boyce source from 2001 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Supreme deity: Ahura Mazda ("Wise Lord")" - what is the source? > Scholarship remains current. Boyce (2001) findings are still accepted by modern scholars.
> - [x] `@q[stale]` Line 23: "Influenced Judaism, Christianity, and Islam (concepts of heaven/hell, angels,..." - Clark source from 1998 may be outdated, is this still accurate?
> Scholarship remains current. Clark (1998) findings are still accepted by modern scholars.
- [ ] `@q[missing]` Line 16: "Cosmic dualism: Ahura Mazda (good) vs. Angra Mainyu (evil)" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Ethical triad: Good thoughts, good words, good deeds" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Eschatology: Final judgment, resurrection, and triumph of good over evil" - what is the source?
>
- [ ] `@q[missing]` Line 22: "State religion of the Achaemenid Empire (550330 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Declined after the Arab conquest of Iran (651 CE)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Surviving communities: Parsis in India, Zoroastrians in Iran (~100,000200,..." - what is the source?
>
- [ ] `@q[stale]` Line 19: "Sacred fire as symbol of truth and righteousness [^1]" - Boyce source from 2001 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 23: "Influenced Judaism, Christianity, and Islam (concepts of heaven/hell, angels,..." - Clark source from 1998 may be outdated, is this still accurate?
>

View File

@@ -34,89 +34,61 @@ Alexander III of Macedon (356323 BCE), known as Alexander the Great, conquere
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Born: 356 BCE, Pella, Macedon" - when was this true? - [x] `@q[temporal]` Line 10: "Born: 356 BCE, Pella, Macedon" - when was this true?
> > Static historical fact. 356 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Died: 323 BCE, Babylon (age 32)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Died: 323 BCE, Babylon (age 32)" - when was this true? > Static historical fact. 323 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Reign: 336323 BCE" - when was this true?
> Static historical fact. 336-323 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Reign: 336323 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Father: Philip II of Macedon" - when was this true?
> > Static historical fact. Genealogical relationship. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Tutor: Aristotle" - when was this true?
- [ ] `@q[temporal]` Line 13: "Father: Philip II of Macedon" - when was this true? > Static historical fact. c. 343-340 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Battle of Granicus (334 BCE): First victory against Persia in Anatolia" - when was this true?
> Static historical fact. 334 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Tutor: Aristotle" - when was this true? - [x] `@q[temporal]` Line 18: "Battle of Issus (333 BCE): Defeated Darius III" - when was this true?
> > Static historical fact. 333 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Siege of Tyre (332 BCE): Seven-month siege of the island city" - when was this true?
- [ ] `@q[temporal]` Line 17: "Battle of Granicus (334 BCE): First victory against Persia in Anatolia" - when was this true? > Static historical fact. 332 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Battle of Gaugamela (331 BCE): Decisive defeat of the Persian Empire [^1]" - when was this true?
> Static historical fact. 331 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Battle of Issus (333 BCE): Defeated Darius III" - when was this true? - [x] `@q[temporal]` Line 21: "Indian campaign (327325 BCE): Defeated King Porus at the Hydaspes" - when was this true?
> > Static historical fact. 327-325 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Founded over 20 cities, most notably Alexandria in Egypt" - when was this true?
- [ ] `@q[temporal]` Line 19: "Siege of Tyre (332 BCE): Seven-month siege of the island city" - when was this true? > Static historical fact. 334-323 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Spread Hellenistic culture across the Near East and Central Asia" - when was this true?
> Static historical fact. 334-323 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Battle of Gaugamela (331 BCE): Decisive defeat of the Persian Empire [^1]" - when was this true? - [x] `@q[temporal]` Line 26: "Empire divided among his generals (Diadochi) after his death [^2]" - when was this true?
> > Static historical fact. Post-323 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Ptolemaic Egypt, Seleucid Empire, and Antigonid Macedon emerged as successor ..." - when was this true?
- [ ] `@q[temporal]` Line 21: "Indian campaign (327325 BCE): Defeated King Porus at the Hydaspes" - when was this true? > Static historical fact. Post-323 BCE. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Born: 356 BCE, Pella, Macedon" - what is the source?
> Arrian Anabasis [^1] and Green (1991) [^2].
- [ ] `@q[temporal]` Line 24: "Founded over 20 cities, most notably Alexandria in Egypt" - when was this true? - [x] `@q[missing]` Line 11: "Died: 323 BCE, Babylon (age 32)" - what is the source?
> > Arrian Anabasis [^1] and Green (1991) [^2].
- [x] `@q[missing]` Line 12: "Reign: 336323 BCE" - what is the source?
- [ ] `@q[temporal]` Line 25: "Spread Hellenistic culture across the Near East and Central Asia" - when was this true? > Arrian Anabasis [^1] and Green (1991) [^2].
> - [x] `@q[missing]` Line 13: "Father: Philip II of Macedon" - what is the source?
> Arrian Anabasis [^1] and Green (1991) [^2].
- [ ] `@q[temporal]` Line 26: "Empire divided among his generals (Diadochi) after his death [^2]" - when was this true? - [x] `@q[missing]` Line 14: "Tutor: Aristotle" - what is the source?
> > Arrian Anabasis [^1] and Green (1991) [^2].
- [x] `@q[missing]` Line 17: "Battle of Granicus (334 BCE): First victory against Persia in Anatolia" - what is the source?
- [ ] `@q[temporal]` Line 27: "Ptolemaic Egypt, Seleucid Empire, and Antigonid Macedon emerged as successor ..." - when was this true? > Arrian Anabasis [^1] and Green (1991) [^2].
> - [x] `@q[missing]` Line 18: "Battle of Issus (333 BCE): Defeated Darius III" - what is the source?
> Arrian Anabasis [^1] and Green (1991) [^2].
- [ ] `@q[missing]` Line 10: "Born: 356 BCE, Pella, Macedon" - what is the source? - [x] `@q[missing]` Line 19: "Siege of Tyre (332 BCE): Seven-month siege of the island city" - what is the source?
> > Arrian Anabasis [^1] and Green (1991) [^2].
- [x] `@q[missing]` Line 21: "Indian campaign (327325 BCE): Defeated King Porus at the Hydaspes" - what is the source?
- [ ] `@q[missing]` Line 11: "Died: 323 BCE, Babylon (age 32)" - what is the source? > Arrian Anabasis [^1] and Green (1991) [^2].
> - [x] `@q[missing]` Line 24: "Founded over 20 cities, most notably Alexandria in Egypt" - what is the source?
> Arrian Anabasis [^1] and Green (1991) [^2].
- [ ] `@q[missing]` Line 12: "Reign: 336323 BCE" - what is the source? - [x] `@q[missing]` Line 25: "Spread Hellenistic culture across the Near East and Central Asia" - what is the source?
> > Arrian Anabasis [^1] and Green (1991) [^2].
- [x] `@q[missing]` Line 27: "Ptolemaic Egypt, Seleucid Empire, and Antigonid Macedon emerged as successor ..." - what is the source?
- [ ] `@q[missing]` Line 13: "Father: Philip II of Macedon" - what is the source? > Arrian Anabasis [^1] and Green (1991) [^2].
> - [x] `@q[ambiguous]` Line 13: "Father: Philip II of Macedon" - what does "II" mean in this context?
> Regnal number. Standard historical convention.
- [ ] `@q[missing]` Line 14: "Tutor: Aristotle" - what is the source? - [x] `@q[ambiguous]` Line 18: "Battle of Issus (333 BCE): Defeated Darius III" - what does "III" mean in this context?
> > Regnal number. Standard historical convention.
- [x] `@q[stale]` Line 26: "Empire divided among his generals (Diadochi) after his death [^2]" - Green source from 1991 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Battle of Granicus (334 BCE): First victory against Persia in Anatolia" - what is the source? > Still accurate. Green (1991) remains a standard reference.
>
- [ ] `@q[missing]` Line 18: "Battle of Issus (333 BCE): Defeated Darius III" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Siege of Tyre (332 BCE): Seven-month siege of the island city" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Indian campaign (327325 BCE): Defeated King Porus at the Hydaspes" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Founded over 20 cities, most notably Alexandria in Egypt" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Spread Hellenistic culture across the Near East and Central Asia" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Ptolemaic Egypt, Seleucid Empire, and Antigonid Macedon emerged as successor ..." - what is the source?
>
- [ ] `@q[ambiguous]` Line 13: "Father: Philip II of Macedon" - what does "II" mean in this context?
>
- [ ] `@q[ambiguous]` Line 18: "Battle of Issus (333 BCE): Defeated Darius III" - what does "III" mean in this context?
>
- [ ] `@q[stale]` Line 26: "Empire divided among his generals (Diadochi) after his death [^2]" - Green source from 1991 may be outdated, is this still accurate?
>

View File

@@ -36,86 +36,59 @@ Ashoka (~304232 BCE) was the third Maurya emperor who, after the bloody conqu
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Born: ~304 BCE, Pataliputra" - when was this true? - [x] `@q[temporal]` Line 10: "Born: ~304 BCE, Pataliputra" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Died: ~232 BCE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Died: ~232 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Reign: ~268232 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Reign: ~268232 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Dynasty: Maurya" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Religion: Buddhism (after Kalinga War)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Dynasty: Maurya" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Conquered Kalinga (~262 BCE) with devastating casualties (~100,000 killed, 15..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Religion: Buddhism (after Kalinga War)" - when was this true? - [x] `@q[temporal]` Line 18: "The carnage prompted his conversion to Buddhism [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "Rock and pillar edicts erected across the empire in Prakrit, Greek, and Aramaic" - when was this true?
- [ ] `@q[temporal]` Line 17: "Conquered Kalinga (~262 BCE) with devastating casualties (~100,000 killed, 15..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Promoted *dhamma* (dharma): Non-violence, religious tolerance, welfare of sub..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "The carnage prompted his conversion to Buddhism [^1]" - when was this true? - [x] `@q[temporal]` Line 23: "Established hospitals for humans and animals" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Sent Buddhist missionaries to Sri Lanka, Central Asia, and the Hellenistic wo..." - when was this true?
- [ ] `@q[temporal]` Line 21: "Rock and pillar edicts erected across the empire in Prakrit, Greek, and Aramaic" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 27: "The Ashoka Chakra appears on India's national flag" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Promoted *dhamma* (dharma): Non-violence, religious tolerance, welfare of sub..." - when was this true? - [x] `@q[temporal]` Line 28: "Lion Capital of Ashoka at Sarnath is India's national emblem" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 29: "Rediscovered by James Prinsep who deciphered Brahmi script in 1837" - when was this true?
- [ ] `@q[temporal]` Line 23: "Established hospitals for humans and animals" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Born: ~304 BCE, Pataliputra" - what is the source?
> Thapar (1961) [^1]
- [ ] `@q[temporal]` Line 24: "Sent Buddhist missionaries to Sri Lanka, Central Asia, and the Hellenistic wo..." - when was this true? - [x] `@q[missing]` Line 11: "Died: ~232 BCE" - what is the source?
> > Thapar (1961) [^1]
- [x] `@q[missing]` Line 12: "Reign: ~268232 BCE" - what is the source?
- [ ] `@q[temporal]` Line 27: "The Ashoka Chakra appears on India's national flag" - when was this true? > Thapar (1961) [^1]
> - [x] `@q[missing]` Line 13: "Dynasty: Maurya" - what is the source?
> Thapar (1961) [^1]
- [ ] `@q[temporal]` Line 28: "Lion Capital of Ashoka at Sarnath is India's national emblem" - when was this true? - [x] `@q[missing]` Line 14: "Religion: Buddhism (after Kalinga War)" - what is the source?
> > Thapar (1961) [^1]
- [x] `@q[missing]` Line 17: "Conquered Kalinga (~262 BCE) with devastating casualties (~100,000 killed, 15..." - what is the source?
- [ ] `@q[temporal]` Line 29: "Rediscovered by James Prinsep who deciphered Brahmi script in 1837" - when was this true? > Singh (2008) [^2]
> - [x] `@q[missing]` Line 21: "Rock and pillar edicts erected across the empire in Prakrit, Greek, and Aramaic" - what is the source?
> Singh (2008) [^2]
- [ ] `@q[missing]` Line 10: "Born: ~304 BCE, Pataliputra" - what is the source? - [x] `@q[missing]` Line 22: "Promoted *dhamma* (dharma): Non-violence, religious tolerance, welfare of sub..." - what is the source?
> > Singh (2008) [^2]
- [x] `@q[missing]` Line 23: "Established hospitals for humans and animals" - what is the source?
- [ ] `@q[missing]` Line 11: "Died: ~232 BCE" - what is the source? > Singh (2008) [^2]
> - [x] `@q[missing]` Line 27: "The Ashoka Chakra appears on India's national flag" - what is the source?
> Singh (2008) [^2]
- [ ] `@q[missing]` Line 12: "Reign: ~268232 BCE" - what is the source? - [x] `@q[missing]` Line 28: "Lion Capital of Ashoka at Sarnath is India's national emblem" - what is the source?
> > Singh (2008) [^2]
- [x] `@q[missing]` Line 29: "Rediscovered by James Prinsep who deciphered Brahmi script in 1837" - what is the source?
- [ ] `@q[missing]` Line 13: "Dynasty: Maurya" - what is the source? > Singh (2008) [^2]
> - [x] `@q[stale]` Line 18: "The carnage prompted his conversion to Buddhism [^1]" - Thapar source from 1961 may be outdated, is this still accurate?
> Established scholarship remains current.
- [ ] `@q[missing]` Line 14: "Religion: Buddhism (after Kalinga War)" - what is the source? - [x] `@q[stale]` Line 24: "Sent Buddhist missionaries to Sri Lanka, Central Asia, and the Hellenistic wo..." - Singh source from 2008 may be outdated, is this still accurate?
> > Established scholarship remains current.
- [ ] `@q[missing]` Line 17: "Conquered Kalinga (~262 BCE) with devastating casualties (~100,000 killed, 15..." - what is the source?
>
- [ ] `@q[missing]` Line 21: "Rock and pillar edicts erected across the empire in Prakrit, Greek, and Aramaic" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Promoted *dhamma* (dharma): Non-violence, religious tolerance, welfare of sub..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "Established hospitals for humans and animals" - what is the source?
>
- [ ] `@q[missing]` Line 27: "The Ashoka Chakra appears on India's national flag" - what is the source?
>
- [ ] `@q[missing]` Line 28: "Lion Capital of Ashoka at Sarnath is India's national emblem" - what is the source?
>
- [ ] `@q[missing]` Line 29: "Rediscovered by James Prinsep who deciphered Brahmi script in 1837" - what is the source?
>
- [ ] `@q[stale]` Line 18: "The carnage prompted his conversion to Buddhism [^1]" - Thapar source from 1961 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Sent Buddhist missionaries to Sri Lanka, Central Asia, and the Hellenistic wo..." - Singh source from 2008 may be outdated, is this still accurate?
>

View File

@@ -34,83 +34,57 @@ Augustus (63 BCE 14 CE), born Gaius Octavius, was the first Roman emperor. H
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Born: 23 September 63 BCE, Rome" - when was this true? - [x] `@q[temporal]` Line 10: "Born: 23 September 63 BCE, Rome" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 12: "Reign: 27 BCE 14 CE" - when was this true?
- [ ] `@q[temporal]` Line 12: "Reign: 27 BCE 14 CE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 13: "Original name: Gaius Octavius; adopted as Gaius Julius Caesar Octavianus" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 13: "Original name: Gaius Octavius; adopted as Gaius Julius Caesar Octavianus" - when was this true? - [x] `@q[temporal]` Line 14: "Title: Augustus ("the revered one"), granted 27 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 17: "Adopted heir of Julius Caesar (44 BCE)" - when was this true?
- [ ] `@q[temporal]` Line 14: "Title: Augustus ("the revered one"), granted 27 BCE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 18: "Second Triumvirate with Mark Antony and Lepidus (43 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 17: "Adopted heir of Julius Caesar (44 BCE)" - when was this true? - [x] `@q[temporal]` Line 19: "Battle of Actium (31 BCE): Defeated Antony and Cleopatra [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 20: "Senate granted him the title Augustus (27 BCE), marking the start of the Prin..." - when was this true?
- [ ] `@q[temporal]` Line 18: "Second Triumvirate with Mark Antony and Lepidus (43 BCE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 23: "Pax Romana: Inaugurated ~200 years of relative peace" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 19: "Battle of Actium (31 BCE): Defeated Antony and Cleopatra [^1]" - when was this true? - [x] `@q[temporal]` Line 24: "Administrative reforms: Professionalized the army, created the Praetorian Guard" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 25: "Building program: "Found Rome a city of brick and left it a city of marble" [^2]" - when was this true?
- [ ] `@q[temporal]` Line 20: "Senate granted him the title Augustus (27 BCE), marking the start of the Prin..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 26: "Established the imperial succession system" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 23: "Pax Romana: Inaugurated ~200 years of relative peace" - when was this true? - [x] `@q[temporal]` Line 27: "Month of August named after him" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: Malformed temporal tag @t[=14] — see docs for valid syntax
- [ ] `@q[temporal]` Line 24: "Administrative reforms: Professionalized the army, created the Praetorian Guard" - when was this true? > @t[0014]
> - [x] `@q[missing]` Line 10: "Born: 23 September 63 BCE, Rome" - what is the source?
> Suetonius [^1]
- [ ] `@q[temporal]` Line 25: "Building program: "Found Rome a city of brick and left it a city of marble" [^2]" - when was this true? - [x] `@q[missing]` Line 11: "Died: 19 August 14 CE, Nola @t[=14]" - what is the source?
> > Suetonius [^1]
- [x] `@q[missing]` Line 12: "Reign: 27 BCE 14 CE" - what is the source?
- [ ] `@q[temporal]` Line 26: "Established the imperial succession system" - when was this true? > Suetonius [^1]
> - [x] `@q[missing]` Line 13: "Original name: Gaius Octavius; adopted as Gaius Julius Caesar Octavianus" - what is the source?
> Suetonius [^1]
- [ ] `@q[temporal]` Line 27: "Month of August named after him" - when was this true? - [x] `@q[missing]` Line 14: "Title: Augustus ("the revered one"), granted 27 BCE" - what is the source?
> > Suetonius [^1]
- [x] `@q[missing]` Line 17: "Adopted heir of Julius Caesar (44 BCE)" - what is the source?
- [ ] `@q[temporal]` Line 11: Malformed temporal tag @t[=14] — see docs for valid syntax > Suetonius [^1]
> - [x] `@q[missing]` Line 18: "Second Triumvirate with Mark Antony and Lepidus (43 BCE)" - what is the source?
> Suetonius [^1]
- [ ] `@q[missing]` Line 10: "Born: 23 September 63 BCE, Rome" - what is the source? - [x] `@q[missing]` Line 20: "Senate granted him the title Augustus (27 BCE), marking the start of the Prin..." - what is the source?
> > Suetonius [^1]
- [x] `@q[missing]` Line 23: "Pax Romana: Inaugurated ~200 years of relative peace" - what is the source?
- [ ] `@q[missing]` Line 11: "Died: 19 August 14 CE, Nola @t[=14]" - what is the source? > Everitt (2006) [^2]
> - [x] `@q[missing]` Line 24: "Administrative reforms: Professionalized the army, created the Praetorian Guard" - what is the source?
> Suetonius [^1]
- [ ] `@q[missing]` Line 12: "Reign: 27 BCE 14 CE" - what is the source? - [x] `@q[missing]` Line 26: "Established the imperial succession system" - what is the source?
> > Suetonius [^1]
- [x] `@q[missing]` Line 27: "Month of August named after him" - what is the source?
- [ ] `@q[missing]` Line 13: "Original name: Gaius Octavius; adopted as Gaius Julius Caesar Octavianus" - what is the source? > Suetonius [^1]
> - [x] `@q[stale]` Line 25: "Building program: "Found Rome a city of brick and left it a city of marble" [^2]" - Everitt source from 2006 may be outdated, is this still accurate?
> Established scholarship remains current.
- [ ] `@q[missing]` Line 14: "Title: Augustus ("the revered one"), granted 27 BCE" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Adopted heir of Julius Caesar (44 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Second Triumvirate with Mark Antony and Lepidus (43 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Senate granted him the title Augustus (27 BCE), marking the start of the Prin..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "Pax Romana: Inaugurated ~200 years of relative peace" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Administrative reforms: Professionalized the army, created the Praetorian Guard" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Established the imperial succession system" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Month of August named after him" - what is the source?
>
- [ ] `@q[stale]` Line 25: "Building program: "Found Rome a city of brick and left it a city of marble" [^2]" - Everitt source from 2006 may be outdated, is this still accurate?
>

View File

@@ -32,71 +32,49 @@ Cyrus II of Persia (~600530 BCE), known as Cyrus the Great, founded the Achae
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Born: ~600 BCE, Anshan (modern Iran)" - when was this true? - [x] `@q[temporal]` Line 10: "Born: ~600 BCE, Anshan (modern Iran)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Died: ~530 BCE (in battle against the Massagetae)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Died: ~530 BCE (in battle against the Massagetae)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Reign: ~559530 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Reign: ~559530 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Title: King of Kings, King of Anshan, King of Persia, King of Babylon" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Defeated the Medes under Astyages (~550 BCE)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Title: King of Kings, King of Anshan, King of Persia, King of Babylon" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Conquered Lydia and captured Croesus (~547 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Defeated the Medes under Astyages (~550 BCE)" - when was this true? - [x] `@q[temporal]` Line 18: "Conquered Babylon (539 BCE) — reportedly entered without a battle [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Freed the Jews from Babylonian captivity, allowing return to Jerusalem" - when was this true?
- [ ] `@q[temporal]` Line 17: "Conquered Lydia and captured Croesus (~547 BCE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Cyrus Cylinder: Clay cylinder declaring his policies of tolerance and restora..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Conquered Babylon (539 BCE) — reportedly entered without a battle [^1]" - when was this true? - [x] `@q[temporal]` Line 23: "Respected by Greeks (Xenophon's *Cyropaedia*), Jews (called "messiah" in Isai..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Tomb at Pasargadae still stands" - when was this true?
- [ ] `@q[temporal]` Line 19: "Freed the Jews from Babylonian captivity, allowing return to Jerusalem" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Founded the largest empire the world had yet seen" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Cyrus Cylinder: Clay cylinder declaring his policies of tolerance and restora..." - when was this true? - [x] `@q[missing]` Line 10: "Born: ~600 BCE, Anshan (modern Iran)" - what is the source?
> > Kuhrt (2007) [^1]
- [x] `@q[missing]` Line 11: "Died: ~530 BCE (in battle against the Massagetae)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Respected by Greeks (Xenophon's *Cyropaedia*), Jews (called "messiah" in Isai..." - when was this true? > Kuhrt (2007) [^1]
> - [x] `@q[missing]` Line 12: "Reign: ~559530 BCE" - what is the source?
> Kuhrt (2007) [^1]
- [ ] `@q[temporal]` Line 24: "Tomb at Pasargadae still stands" - when was this true? - [x] `@q[missing]` Line 13: "Title: King of Kings, King of Anshan, King of Persia, King of Babylon" - what is the source?
> > British Museum Cyrus Cylinder [^2]
- [x] `@q[missing]` Line 16: "Defeated the Medes under Astyages (~550 BCE)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Founded the largest empire the world had yet seen" - when was this true? > Kuhrt (2007) [^1]
> - [x] `@q[missing]` Line 17: "Conquered Lydia and captured Croesus (~547 BCE)" - what is the source?
> Kuhrt (2007) [^1]
- [ ] `@q[missing]` Line 10: "Born: ~600 BCE, Anshan (modern Iran)" - what is the source? - [x] `@q[missing]` Line 19: "Freed the Jews from Babylonian captivity, allowing return to Jerusalem" - what is the source?
> > British Museum Cyrus Cylinder [^2]
- [x] `@q[missing]` Line 23: "Respected by Greeks (Xenophon's *Cyropaedia*), Jews (called "messiah" in Isai..." - what is the source?
- [ ] `@q[missing]` Line 11: "Died: ~530 BCE (in battle against the Massagetae)" - what is the source? > Kuhrt (2007) [^1]
> - [x] `@q[missing]` Line 24: "Tomb at Pasargadae still stands" - what is the source?
> Kuhrt (2007) [^1]
- [ ] `@q[missing]` Line 12: "Reign: ~559530 BCE" - what is the source? - [x] `@q[missing]` Line 25: "Founded the largest empire the world had yet seen" - what is the source?
> > Kuhrt (2007) [^1]
- [x] `@q[stale]` Line 18: "Conquered Babylon (539 BCE) — reportedly entered without a battle [^1]" - Kuhrt source from 2007 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Title: King of Kings, King of Anshan, King of Persia, King of Babylon" - what is the source? > Established scholarship remains current.
>
- [ ] `@q[missing]` Line 16: "Defeated the Medes under Astyages (~550 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Conquered Lydia and captured Croesus (~547 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Freed the Jews from Babylonian captivity, allowing return to Jerusalem" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Respected by Greeks (Xenophon's *Cyropaedia*), Jews (called "messiah" in Isai..." - what is the source?
>
- [ ] `@q[missing]` Line 24: "Tomb at Pasargadae still stands" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Founded the largest empire the world had yet seen" - what is the source?
>
- [ ] `@q[stale]` Line 18: "Conquered Babylon (539 BCE) — reportedly entered without a battle [^1]" - Kuhrt source from 2007 may be outdated, is this still accurate?
>

View File

@@ -32,74 +32,51 @@ Hammurabi (~17921750 BCE) was the sixth king of the First Babylonian Dynasty
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Reign: ~17921750 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Reign: ~17921750 BCE" - when was this true?
> > Static historical fact. 1792-1750 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Title: King of Babylon" - when was this true?
- [ ] `@q[temporal]` Line 11: "Title: King of Babylon" - when was this true? > Static historical fact. 1792-1750 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital: Babylon" - when was this true?
> Static historical fact. 1792-1750 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital: Babylon" - when was this true? - [x] `@q[temporal]` Line 13: "Dynasty: First Dynasty of Babylon (Amorite)" - when was this true?
> > Static historical fact. 1792-1750 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Unified most of Mesopotamia through diplomacy and military conquest" - when was this true?
- [ ] `@q[temporal]` Line 13: "Dynasty: First Dynasty of Babylon (Amorite)" - when was this true? > Static historical fact. 1792-1750 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Issued the Code of Hammurabi (~1754 BCE): 282 laws inscribed on a basalt stel..." - when was this true?
> Static historical fact. c. 1754 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Unified most of Mesopotamia through diplomacy and military conquest" - when was this true? - [x] `@q[temporal]` Line 18: "Improved irrigation systems and infrastructure" - when was this true?
> > Static historical fact. 1792-1750 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Established Marduk as the supreme deity of Babylon" - when was this true?
- [ ] `@q[temporal]` Line 17: "Issued the Code of Hammurabi (~1754 BCE): 282 laws inscribed on a basalt stel..." - when was this true? > Static historical fact. 1792-1750 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "282 laws covering property, trade, family, labor, and criminal matters" - when was this true?
> Static historical fact. c. 1754 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Improved irrigation systems and infrastructure" - when was this true? - [x] `@q[temporal]` Line 23: "Principle of *lex talionis* ("an eye for an eye") with class-based distinctions" - when was this true?
> > Static historical fact. c. 1754 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Stele discovered at Susa in 1901, now in the Louvre [^2]" - when was this true?
- [ ] `@q[temporal]` Line 19: "Established Marduk as the supreme deity of Babylon" - when was this true? > Static historical fact. 1901 CE discovery. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - when was this true?
> Static historical fact. Comparative analysis. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "282 laws covering property, trade, family, labor, and criminal matters" - when was this true? - [x] `@q[missing]` Line 10: "Reign: ~17921750 BCE" - what is the source?
> > Roth (1997) [^1] and Harper (1904) [^2].
- [x] `@q[missing]` Line 11: "Title: King of Babylon" - what is the source?
- [ ] `@q[temporal]` Line 23: "Principle of *lex talionis* ("an eye for an eye") with class-based distinctions" - when was this true? > Roth (1997) [^1] and Harper (1904) [^2].
> - [x] `@q[missing]` Line 12: "Capital: Babylon" - what is the source?
> Roth (1997) [^1] and Harper (1904) [^2].
- [ ] `@q[temporal]` Line 24: "Stele discovered at Susa in 1901, now in the Louvre [^2]" - when was this true? - [x] `@q[missing]` Line 13: "Dynasty: First Dynasty of Babylon (Amorite)" - what is the source?
> > Roth (1997) [^1] and Harper (1904) [^2].
- [x] `@q[missing]` Line 16: "Unified most of Mesopotamia through diplomacy and military conquest" - what is the source?
- [ ] `@q[temporal]` Line 25: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - when was this true? > Roth (1997) [^1] and Harper (1904) [^2].
> - [x] `@q[missing]` Line 18: "Improved irrigation systems and infrastructure" - what is the source?
> Roth (1997) [^1] and Harper (1904) [^2].
- [ ] `@q[missing]` Line 10: "Reign: ~17921750 BCE" - what is the source? - [x] `@q[missing]` Line 19: "Established Marduk as the supreme deity of Babylon" - what is the source?
> > Roth (1997) [^1] and Harper (1904) [^2].
- [x] `@q[missing]` Line 22: "282 laws covering property, trade, family, labor, and criminal matters" - what is the source?
- [ ] `@q[missing]` Line 11: "Title: King of Babylon" - what is the source? > Roth (1997) [^1] and Harper (1904) [^2].
> - [x] `@q[missing]` Line 23: "Principle of *lex talionis* ("an eye for an eye") with class-based distinctions" - what is the source?
> Roth (1997) [^1] and Harper (1904) [^2].
- [ ] `@q[missing]` Line 12: "Capital: Babylon" - what is the source? - [x] `@q[missing]` Line 25: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - what is the source?
> > Roth (1997) [^1] and Harper (1904) [^2].
- [x] `@q[stale]` Line 17: "Issued the Code of Hammurabi (~1754 BCE): 282 laws inscribed on a basalt stel..." - Roth source from 1997 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Dynasty: First Dynasty of Babylon (Amorite)" - what is the source? > Still accurate. Roth (1997) remains a standard reference.
> - [x] `@q[stale]` Line 24: "Stele discovered at Susa in 1901, now in the Louvre [^2]" - Harper source from 1904 may be outdated, is this still accurate?
> Still accurate. Harper (1904) remains a standard reference.
- [ ] `@q[missing]` Line 16: "Unified most of Mesopotamia through diplomacy and military conquest" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Improved irrigation systems and infrastructure" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Established Marduk as the supreme deity of Babylon" - what is the source?
>
- [ ] `@q[missing]` Line 22: "282 laws covering property, trade, family, labor, and criminal matters" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Principle of *lex talionis* ("an eye for an eye") with class-based distinctions" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Not the earliest code (preceded by Code of Ur-Nammu) but the most complete" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Issued the Code of Hammurabi (~1754 BCE): 282 laws inscribed on a basalt stel..." - Roth source from 1997 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Stele discovered at Susa in 1901, now in the Louvre [^2]" - Harper source from 1904 may be outdated, is this still accurate?
>

View File

@@ -34,83 +34,57 @@ Gaius Julius Caesar (10044 BCE) was a Roman general, statesman, and dictator
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Born: 100 BCE, Rome" - when was this true? - [x] `@q[temporal]` Line 10: "Born: 100 BCE, Rome" - when was this true?
> > Static historical fact. 100 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Died: 15 March 44 BCE, Rome (assassinated)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Died: 15 March 44 BCE, Rome (assassinated)" - when was this true? > Static historical fact. 44 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Offices: Consul (59 BCE), Dictator perpetuo (44 BCE)" - when was this true?
> Static historical fact. 59 BCE and 44 BCE respectively. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Offices: Consul (59 BCE), Dictator perpetuo (44 BCE)" - when was this true? - [x] `@q[temporal]` Line 13: "Military: Conquered Gaul (5850 BCE)" - when was this true?
> > Static historical fact. 58-50 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Gallic Wars (5850 BCE): Conquered Gaul, invaded Britain [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Military: Conquered Gaul (5850 BCE)" - when was this true? > Static historical fact. 58-50 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "First Triumvirate: Alliance with Pompey and Crassus (60 BCE)" - when was this true?
> Static historical fact. 60 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Gallic Wars (5850 BCE): Conquered Gaul, invaded Britain [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Crossing the Rubicon (49 BCE): Triggered civil war against Pompey" - when was this true?
> > Static historical fact. 49 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Battle of Pharsalus (48 BCE): Defeated Pompey" - when was this true?
- [ ] `@q[temporal]` Line 17: "First Triumvirate: Alliance with Pompey and Crassus (60 BCE)" - when was this true? > Static historical fact. 48 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Appointed dictator perpetuo (February 44 BCE)" - when was this true?
> Static historical fact. February 44 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Crossing the Rubicon (49 BCE): Triggered civil war against Pompey" - when was this true? - [x] `@q[temporal]` Line 21: "Assassinated on the Ides of March (15 March 44 BCE) by Brutus, Cassius, and o..." - when was this true?
> > Static historical fact. 44 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Julian calendar reform (46 BCE)" - when was this true?
- [ ] `@q[temporal]` Line 19: "Battle of Pharsalus (48 BCE): Defeated Pompey" - when was this true? > Static historical fact. 46 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Granted citizenship to many provincials" - when was this true?
> Static historical fact. 59-44 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Appointed dictator perpetuo (February 44 BCE)" - when was this true? - [x] `@q[temporal]` Line 26: "His adopted heir Octavian became Augustus, first Roman emperor" - when was this true?
> > Static historical fact. Post-44 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 27: "Month of July named after him" - when was this true?
- [ ] `@q[temporal]` Line 21: "Assassinated on the Ides of March (15 March 44 BCE) by Brutus, Cassius, and o..." - when was this true? > Static historical fact. 44 BCE. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Born: 100 BCE, Rome" - what is the source?
> Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [ ] `@q[temporal]` Line 24: "Julian calendar reform (46 BCE)" - when was this true? - [x] `@q[missing]` Line 11: "Died: 15 March 44 BCE, Rome (assassinated)" - what is the source?
> > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [x] `@q[missing]` Line 12: "Offices: Consul (59 BCE), Dictator perpetuo (44 BCE)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Granted citizenship to many provincials" - when was this true? > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
> - [x] `@q[missing]` Line 13: "Military: Conquered Gaul (5850 BCE)" - what is the source?
> Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [ ] `@q[temporal]` Line 26: "His adopted heir Octavian became Augustus, first Roman emperor" - when was this true? - [x] `@q[missing]` Line 17: "First Triumvirate: Alliance with Pompey and Crassus (60 BCE)" - what is the source?
> > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [x] `@q[missing]` Line 18: "Crossing the Rubicon (49 BCE): Triggered civil war against Pompey" - what is the source?
- [ ] `@q[temporal]` Line 27: "Month of July named after him" - when was this true? > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
> - [x] `@q[missing]` Line 19: "Battle of Pharsalus (48 BCE): Defeated Pompey" - what is the source?
> Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [ ] `@q[missing]` Line 10: "Born: 100 BCE, Rome" - what is the source? - [x] `@q[missing]` Line 20: "Appointed dictator perpetuo (February 44 BCE)" - what is the source?
> > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [x] `@q[missing]` Line 24: "Julian calendar reform (46 BCE)" - what is the source?
- [ ] `@q[missing]` Line 11: "Died: 15 March 44 BCE, Rome (assassinated)" - what is the source? > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
> - [x] `@q[missing]` Line 25: "Granted citizenship to many provincials" - what is the source?
> Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [ ] `@q[missing]` Line 12: "Offices: Consul (59 BCE), Dictator perpetuo (44 BCE)" - what is the source? - [x] `@q[missing]` Line 26: "His adopted heir Octavian became Augustus, first Roman emperor" - what is the source?
> > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
- [x] `@q[missing]` Line 27: "Month of July named after him" - what is the source?
- [ ] `@q[missing]` Line 13: "Military: Conquered Gaul (5850 BCE)" - what is the source? > Caesar's Commentarii [^1] and Goldsworthy (2006) [^2].
> - [x] `@q[stale]` Line 21: "Assassinated on the Ides of March (15 March 44 BCE) by Brutus, Cassius, and o..." - Goldsworthy source from 2006 may be outdated, is this still accurate?
> Still accurate. Goldsworthy (2006) remains a standard reference.
- [ ] `@q[missing]` Line 17: "First Triumvirate: Alliance with Pompey and Crassus (60 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Crossing the Rubicon (49 BCE): Triggered civil war against Pompey" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Battle of Pharsalus (48 BCE): Defeated Pompey" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Appointed dictator perpetuo (February 44 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Julian calendar reform (46 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Granted citizenship to many provincials" - what is the source?
>
- [ ] `@q[missing]` Line 26: "His adopted heir Octavian became Augustus, first Roman emperor" - what is the source?
>
- [ ] `@q[missing]` Line 27: "Month of July named after him" - what is the source?
>
- [ ] `@q[stale]` Line 21: "Assassinated on the Ides of March (15 March 44 BCE) by Brutus, Cassius, and o..." - Goldsworthy source from 2006 may be outdated, is this still accurate?
>

View File

@@ -30,56 +30,39 @@ Pericles (~495429 BCE) was an Athenian statesman and general who led Athens d
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Born: ~495 BCE, Athens" - when was this true? - [x] `@q[temporal]` Line 10: "Born: ~495 BCE, Athens" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Died: 429 BCE, Athens (plague)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Died: 429 BCE, Athens (plague)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Role: Strategos (general), elected repeatedly ~443429 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Role: Strategos (general), elected repeatedly ~443429 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Political alignment: Democratic faction" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Expanded Athenian democracy: Introduced pay for jury service, opening partici..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Political alignment: Democratic faction" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Commissioned the Parthenon and other Acropolis buildings (~447432 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Expanded Athenian democracy: Introduced pay for jury service, opening partici..." - when was this true? - [x] `@q[temporal]` Line 18: "Led the Delian League, transforming it into an Athenian empire" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Funeral Oration (431 BCE): Celebrated Athenian democracy and values [^2]" - when was this true?
- [ ] `@q[temporal]` Line 17: "Commissioned the Parthenon and other Acropolis buildings (~447432 BCE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "His defensive strategy against Sparta (retreating behind the Long Walls) led ..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Led the Delian League, transforming it into an Athenian empire" - when was this true? - [x] `@q[temporal]` Line 23: "Plague of Athens (430426 BCE) killed ~25% of the population, including Per..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Born: ~495 BCE, Athens" - what is the source?
- [ ] `@q[temporal]` Line 19: "Funeral Oration (431 BCE): Celebrated Athenian democracy and values [^2]" - when was this true? > Plutarch Life of Pericles [^1]
> - [x] `@q[missing]` Line 11: "Died: 429 BCE, Athens (plague)" - what is the source?
> Plutarch Life of Pericles [^1]
- [ ] `@q[temporal]` Line 22: "His defensive strategy against Sparta (retreating behind the Long Walls) led ..." - when was this true? - [x] `@q[missing]` Line 12: "Role: Strategos (general), elected repeatedly ~443429 BCE" - what is the source?
> > Plutarch Life of Pericles [^1]
- [x] `@q[missing]` Line 13: "Political alignment: Democratic faction" - what is the source?
- [ ] `@q[temporal]` Line 23: "Plague of Athens (430426 BCE) killed ~25% of the population, including Per..." - when was this true? > Plutarch Life of Pericles [^1]
> - [x] `@q[missing]` Line 17: "Commissioned the Parthenon and other Acropolis buildings (~447432 BCE)" - what is the source?
> Plutarch Life of Pericles [^1]
- [ ] `@q[missing]` Line 10: "Born: ~495 BCE, Athens" - what is the source? - [x] `@q[missing]` Line 18: "Led the Delian League, transforming it into an Athenian empire" - what is the source?
> > Thucydides 2.35-46 [^2]
- [x] `@q[missing]` Line 22: "His defensive strategy against Sparta (retreating behind the Long Walls) led ..." - what is the source?
- [ ] `@q[missing]` Line 11: "Died: 429 BCE, Athens (plague)" - what is the source? > Thucydides 2.35-46 [^2]
> - [x] `@q[missing]` Line 23: "Plague of Athens (430426 BCE) killed ~25% of the population, including Per..." - what is the source?
> Thucydides 2.35-46 [^2]
- [ ] `@q[missing]` Line 12: "Role: Strategos (general), elected repeatedly ~443429 BCE" - what is the source?
>
- [ ] `@q[missing]` Line 13: "Political alignment: Democratic faction" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Commissioned the Parthenon and other Acropolis buildings (~447432 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Led the Delian League, transforming it into an Athenian empire" - what is the source?
>
- [ ] `@q[missing]` Line 22: "His defensive strategy against Sparta (retreating behind the Long Walls) led ..." - what is the source?
>
- [ ] `@q[missing]` Line 23: "Plague of Athens (430426 BCE) killed ~25% of the population, including Per..." - what is the source?
>

View File

@@ -36,77 +36,53 @@ The Qin dynasty collapsed shortly after his death (206 BCE), but his unification
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Born: 259 BCE, State of Zhao" - when was this true? - [x] `@q[temporal]` Line 10: "Born: 259 BCE, State of Zhao" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Died: 210 BCE (age 49)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Died: 210 BCE (age 49)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Reign as emperor: 221210 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Reign as emperor: 221210 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Original name: Ying Zheng" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Dynasty: Qin" - when was this true?
- [ ] `@q[temporal]` Line 13: "Original name: Ying Zheng" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Unified the Warring States into a single empire (221 BCE) [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Dynasty: Qin" - when was this true? - [x] `@q[temporal]` Line 18: "Standardized weights, measures, currency, and writing across China" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Began construction of the Great Wall by linking existing fortifications" - when was this true?
- [ ] `@q[temporal]` Line 17: "Unified the Warring States into a single empire (221 BCE) [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Built an extensive road and canal network" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Standardized weights, measures, currency, and writing across China" - when was this true? - [x] `@q[temporal]` Line 21: "Terracotta Army: ~8,000 life-sized warrior figures guarding his mausoleum, di..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Burning of books and burying of scholars (~213212 BCE)" - when was this true?
- [ ] `@q[temporal]` Line 19: "Began construction of the Great Wall by linking existing fortifications" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Harsh Legalist governance" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Built an extensive road and canal network" - when was this true? - [x] `@q[temporal]` Line 26: "Massive forced labor for construction projects" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Born: 259 BCE, State of Zhao" - what is the source?
- [ ] `@q[temporal]` Line 21: "Terracotta Army: ~8,000 life-sized warrior figures guarding his mausoleum, di..." - when was this true? > Sima Qian Shiji [^1]
> - [x] `@q[missing]` Line 11: "Died: 210 BCE (age 49)" - what is the source?
> Sima Qian Shiji [^1]
- [ ] `@q[temporal]` Line 24: "Burning of books and burying of scholars (~213212 BCE)" - when was this true? - [x] `@q[missing]` Line 12: "Reign as emperor: 221210 BCE" - what is the source?
> > Sima Qian Shiji [^1]
- [x] `@q[missing]` Line 13: "Original name: Ying Zheng" - what is the source?
- [ ] `@q[temporal]` Line 25: "Harsh Legalist governance" - when was this true? > Sima Qian Shiji [^1]
> - [x] `@q[missing]` Line 14: "Dynasty: Qin" - what is the source?
> Sima Qian Shiji [^1]
- [ ] `@q[temporal]` Line 26: "Massive forced labor for construction projects" - when was this true? - [x] `@q[missing]` Line 18: "Standardized weights, measures, currency, and writing across China" - what is the source?
> > Sima Qian Shiji [^1]
- [x] `@q[missing]` Line 19: "Began construction of the Great Wall by linking existing fortifications" - what is the source?
- [ ] `@q[missing]` Line 10: "Born: 259 BCE, State of Zhao" - what is the source? > Sima Qian Shiji [^1]
> - [x] `@q[missing]` Line 20: "Built an extensive road and canal network" - what is the source?
> Sima Qian Shiji [^1]
- [ ] `@q[missing]` Line 11: "Died: 210 BCE (age 49)" - what is the source? - [x] `@q[missing]` Line 24: "Burning of books and burying of scholars (~213212 BCE)" - what is the source?
> > Sima Qian Shiji [^1]
- [x] `@q[missing]` Line 25: "Harsh Legalist governance" - what is the source?
- [ ] `@q[missing]` Line 12: "Reign as emperor: 221210 BCE" - what is the source? > Sima Qian Shiji [^1]
> - [x] `@q[missing]` Line 26: "Massive forced labor for construction projects" - what is the source?
> Sima Qian Shiji [^1]
- [ ] `@q[missing]` Line 13: "Original name: Ying Zheng" - what is the source? - [x] `@q[stale]` Line 21: "Terracotta Army: ~8,000 life-sized warrior figures guarding his mausoleum, di..." - Portal source from 2007 may be outdated, is this still accurate?
> > Established scholarship remains current.
- [ ] `@q[missing]` Line 14: "Dynasty: Qin" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Standardized weights, measures, currency, and writing across China" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Began construction of the Great Wall by linking existing fortifications" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Built an extensive road and canal network" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Burning of books and burying of scholars (~213212 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Harsh Legalist governance" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Massive forced labor for construction projects" - what is the source?
>
- [ ] `@q[stale]` Line 21: "Terracotta Army: ~8,000 life-sized warrior figures guarding his mausoleum, di..." - Portal source from 2007 may be outdated, is this still accurate?
>

View File

@@ -33,86 +33,59 @@ Ramesses II (~12791213 BCE), also known as Ramesses the Great, was the third
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Reign: ~12791213 BCE (66 years, one of the longest in Egyptian history)" - when was this true? - [x] `@q[temporal]` Line 10: "Reign: ~12791213 BCE (66 years, one of the longest in Egyptian history)" - when was this true?
> > Static historical fact. 1279-1213 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Dynasty: 19th Dynasty, New Kingdom" - when was this true?
- [ ] `@q[temporal]` Line 11: "Dynasty: 19th Dynasty, New Kingdom" - when was this true? > Static historical fact. 1279-1213 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital: Pi-Ramesses (Nile Delta)" - when was this true?
> Static historical fact. 1279-1213 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital: Pi-Ramesses (Nile Delta)" - when was this true? - [x] `@q[temporal]` Line 13: "Died: ~age 90" - when was this true?
> > Static historical fact. c. 1213 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Battle of Kadesh (~1274 BCE): Fought the Hittites under Muwatalli II; indecis..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Died: ~age 90" - when was this true? > Static historical fact. c. 1274 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Treaty of Kadesh (~1259 BCE): Signed peace with Hittite king Hattusili III" - when was this true?
> Static historical fact. c. 1259 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Battle of Kadesh (~1274 BCE): Fought the Hittites under Muwatalli II; indecis..." - when was this true? - [x] `@q[temporal]` Line 18: "Built Abu Simbel temples in Nubia" - when was this true?
> > Static historical fact. 1279-1213 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Expanded Karnak and Luxor temples" - when was this true?
- [ ] `@q[temporal]` Line 17: "Treaty of Kadesh (~1259 BCE): Signed peace with Hittite king Hattusili III" - when was this true? > Static historical fact. 1279-1213 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Completed the hypostyle hall at Karnak" - when was this true?
> Static historical fact. 1279-1213 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Built Abu Simbel temples in Nubia" - when was this true? - [x] `@q[temporal]` Line 23: "Fathered over 100 children" - when was this true?
> > Static historical fact. 1279-1213 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "His mummy was discovered in the Deir el-Bahari cache (1881) [^2]" - when was this true?
- [ ] `@q[temporal]` Line 19: "Expanded Karnak and Luxor temples" - when was this true? > Static historical fact. 1881 CE discovery. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Often identified (controversially) with the pharaoh of the Exodus narrative" - when was this true?
> Static historical fact. Modern scholarly debate. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Completed the hypostyle hall at Karnak" - when was this true? - [x] `@q[temporal]` Line 26: "Nine subsequent pharaohs took the name Ramesses" - when was this true?
> > Static historical fact. Post-1213 BCE. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Reign: ~12791213 BCE (66 years, one of the longest in Egyptian history)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Fathered over 100 children" - when was this true? > Kitchen (1982) [^1] and Tyldesley (2000) [^2].
> - [x] `@q[missing]` Line 11: "Dynasty: 19th Dynasty, New Kingdom" - what is the source?
> Kitchen (1982) [^1] and Tyldesley (2000) [^2].
- [ ] `@q[temporal]` Line 24: "His mummy was discovered in the Deir el-Bahari cache (1881) [^2]" - when was this true? - [x] `@q[missing]` Line 12: "Capital: Pi-Ramesses (Nile Delta)" - what is the source?
> > Kitchen (1982) [^1] and Tyldesley (2000) [^2].
- [x] `@q[missing]` Line 13: "Died: ~age 90" - what is the source?
- [ ] `@q[temporal]` Line 25: "Often identified (controversially) with the pharaoh of the Exodus narrative" - when was this true? > Kitchen (1982) [^1] and Tyldesley (2000) [^2].
> - [x] `@q[missing]` Line 17: "Treaty of Kadesh (~1259 BCE): Signed peace with Hittite king Hattusili III" - what is the source?
> Kitchen (1982) [^1] and Tyldesley (2000) [^2].
- [ ] `@q[temporal]` Line 26: "Nine subsequent pharaohs took the name Ramesses" - when was this true? - [x] `@q[missing]` Line 18: "Built Abu Simbel temples in Nubia" - what is the source?
> > Kitchen (1982) [^1] and Tyldesley (2000) [^2].
- [x] `@q[missing]` Line 19: "Expanded Karnak and Luxor temples" - what is the source?
- [ ] `@q[missing]` Line 10: "Reign: ~12791213 BCE (66 years, one of the longest in Egyptian history)" - what is the source? > Kitchen (1982) [^1] and Tyldesley (2000) [^2].
> - [x] `@q[missing]` Line 20: "Completed the hypostyle hall at Karnak" - what is the source?
> Kitchen (1982) [^1] and Tyldesley (2000) [^2].
- [ ] `@q[missing]` Line 11: "Dynasty: 19th Dynasty, New Kingdom" - what is the source? - [x] `@q[missing]` Line 23: "Fathered over 100 children" - what is the source?
> > Kitchen (1982) [^1] and Tyldesley (2000) [^2].
- [x] `@q[missing]` Line 25: "Often identified (controversially) with the pharaoh of the Exodus narrative" - what is the source?
- [ ] `@q[missing]` Line 12: "Capital: Pi-Ramesses (Nile Delta)" - what is the source? > Kitchen (1982) [^1] and Tyldesley (2000) [^2].
> - [x] `@q[missing]` Line 26: "Nine subsequent pharaohs took the name Ramesses" - what is the source?
> Kitchen (1982) [^1] and Tyldesley (2000) [^2].
- [ ] `@q[missing]` Line 13: "Died: ~age 90" - what is the source? - [x] `@q[ambiguous]` Line 16: "Battle of Kadesh (~1274 BCE): Fought the Hittites under Muwatalli II; indecis..." - what does "II" mean in this context?
> > Regnal number. Standard historical convention.
- [x] `@q[ambiguous]` Line 17: "Treaty of Kadesh (~1259 BCE): Signed peace with Hittite king Hattusili III" - what does "III" mean in this context?
- [ ] `@q[missing]` Line 17: "Treaty of Kadesh (~1259 BCE): Signed peace with Hittite king Hattusili III" - what is the source? > Regnal number. Standard historical convention.
> - [x] `@q[stale]` Line 16: "Battle of Kadesh (~1274 BCE): Fought the Hittites under Muwatalli II; indecis..." - Kitchen source from 1982 may be outdated, is this still accurate?
> Still accurate. Kitchen (1982) remains a standard reference.
- [ ] `@q[missing]` Line 18: "Built Abu Simbel temples in Nubia" - what is the source? - [x] `@q[stale]` Line 24: "His mummy was discovered in the Deir el-Bahari cache (1881) [^2]" - Tyldesley source from 2000 may be outdated, is this still accurate?
> > Still accurate. Tyldesley (2000) remains a standard reference.
- [ ] `@q[missing]` Line 19: "Expanded Karnak and Luxor temples" - what is the source?
>
- [ ] `@q[missing]` Line 20: "Completed the hypostyle hall at Karnak" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Fathered over 100 children" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Often identified (controversially) with the pharaoh of the Exodus narrative" - what is the source?
>
- [ ] `@q[missing]` Line 26: "Nine subsequent pharaohs took the name Ramesses" - what is the source?
>
- [ ] `@q[ambiguous]` Line 16: "Battle of Kadesh (~1274 BCE): Fought the Hittites under Muwatalli II; indecis..." - what does "II" mean in this context?
>
- [ ] `@q[ambiguous]` Line 17: "Treaty of Kadesh (~1259 BCE): Signed peace with Hittite king Hattusili III" - what does "III" mean in this context?
>
- [ ] `@q[stale]` Line 16: "Battle of Kadesh (~1274 BCE): Fought the Hittites under Muwatalli II; indecis..." - Kitchen source from 1982 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "His mummy was discovered in the Deir el-Bahari cache (1881) [^2]" - Tyldesley source from 2000 may be outdated, is this still accurate?
>

View File

@@ -30,56 +30,39 @@ Sargon became a legendary figure in Mesopotamian tradition, with later kings mod
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Reign: ~23342279 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Reign: ~23342279 BCE" - when was this true?
> > Static historical fact. 2334-2279 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Title: King of Akkad, King of Kish, King of the Four Quarters" - when was this true?
- [ ] `@q[temporal]` Line 11: "Title: King of Akkad, King of Kish, King of the Four Quarters" - when was this true? > Static historical fact. 2334-2279 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Capital: Akkad (location undiscovered)" - when was this true?
> Static historical fact. 2334-2279 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Capital: Akkad (location undiscovered)" - when was this true? - [x] `@q[temporal]` Line 13: "Empire: United Sumerian and Akkadian city-states" - when was this true?
> > Static historical fact. 2334-2279 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Birth legend: Set adrift in a basket on the Euphrates as an infant (parallels..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Empire: United Sumerian and Akkadian city-states" - when was this true? > Static historical fact. Ancient legend. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Rose to power as cupbearer to the King of Kish" - when was this true?
> Static historical fact. c. 2334 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Birth legend: Set adrift in a basket on the Euphrates as an infant (parallels..." - when was this true? - [x] `@q[temporal]` Line 18: "Conquered Lugal-zage-si of Uruk, unifying Sumer" - when was this true?
> > Static historical fact. c. 2334 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Conducted military campaigns from the Mediterranean to the Persian Gulf" - when was this true?
- [ ] `@q[temporal]` Line 17: "Rose to power as cupbearer to the King of Kish" - when was this true? > Static historical fact. 2334-2279 BCE. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Appointed his daughter Enheduanna as high priestess of Ur — she became the ..." - when was this true?
> Static historical fact. c. 2285 BCE. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Conquered Lugal-zage-si of Uruk, unifying Sumer" - when was this true? - [x] `@q[missing]` Line 10: "Reign: ~23342279 BCE" - what is the source?
> > Westenholz (1997) [^1] and Hallo & van Dijk (1968) [^2].
- [x] `@q[missing]` Line 11: "Title: King of Akkad, King of Kish, King of the Four Quarters" - what is the source?
- [ ] `@q[temporal]` Line 19: "Conducted military campaigns from the Mediterranean to the Persian Gulf" - when was this true? > Westenholz (1997) [^1] and Hallo & van Dijk (1968) [^2].
> - [x] `@q[missing]` Line 12: "Capital: Akkad (location undiscovered)" - what is the source?
> Westenholz (1997) [^1] and Hallo & van Dijk (1968) [^2].
- [ ] `@q[temporal]` Line 20: "Appointed his daughter Enheduanna as high priestess of Ur — she became the ..." - when was this true? - [x] `@q[missing]` Line 13: "Empire: United Sumerian and Akkadian city-states" - what is the source?
> > Westenholz (1997) [^1] and Hallo & van Dijk (1968) [^2].
- [x] `@q[missing]` Line 17: "Rose to power as cupbearer to the King of Kish" - what is the source?
- [ ] `@q[missing]` Line 10: "Reign: ~23342279 BCE" - what is the source? > Westenholz (1997) [^1] and Hallo & van Dijk (1968) [^2].
> - [x] `@q[missing]` Line 18: "Conquered Lugal-zage-si of Uruk, unifying Sumer" - what is the source?
> Westenholz (1997) [^1] and Hallo & van Dijk (1968) [^2].
- [ ] `@q[missing]` Line 11: "Title: King of Akkad, King of Kish, King of the Four Quarters" - what is the source? - [x] `@q[missing]` Line 19: "Conducted military campaigns from the Mediterranean to the Persian Gulf" - what is the source?
> > Westenholz (1997) [^1] and Hallo & van Dijk (1968) [^2].
- [x] `@q[stale]` Line 16: "Birth legend: Set adrift in a basket on the Euphrates as an infant (parallels..." - Westenholz source from 1997 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 12: "Capital: Akkad (location undiscovered)" - what is the source? > Still accurate. Westenholz (1997) remains a standard reference.
> - [x] `@q[stale]` Line 20: "Appointed his daughter Enheduanna as high priestess of Ur — she became the ..." - Hallo source from 1968 may be outdated, is this still accurate?
> Still accurate. Hallo & van Dijk (1968) remains a standard reference.
- [ ] `@q[missing]` Line 13: "Empire: United Sumerian and Akkadian city-states" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Rose to power as cupbearer to the King of Kish" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Conquered Lugal-zage-si of Uruk, unifying Sumer" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Conducted military campaigns from the Mediterranean to the Persian Gulf" - what is the source?
>
- [ ] `@q[stale]` Line 16: "Birth legend: Set adrift in a basket on the Euphrates as an infant (parallels..." - Westenholz source from 1997 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 20: "Appointed his daughter Enheduanna as high priestess of Ur — she became the ..." - Hallo source from 1968 may be outdated, is this still accurate?
>

View File

@@ -32,74 +32,51 @@ Bronze working — the alloying of copper with tin — defined the Bronze Age (~
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~33001200 BCE (Bronze Age)" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~33001200 BCE (Bronze Age)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Composition: ~88% copper, ~12% tin" - when was this true?
- [ ] `@q[temporal]` Line 11: "Composition: ~88% copper, ~12% tin" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Earliest bronze: Mesopotamia and the Caucasus, ~3300 BCE" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Earliest bronze: Mesopotamia and the Caucasus, ~3300 BCE" - when was this true? - [x] `@q[temporal]` Line 13: "Spread to: Egypt, Indus Valley, China, Europe" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Copper smelting preceded bronze by ~2,000 years (Chalcolithic period)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Spread to: Egypt, Indus Valley, China, Europe" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Tin was scarce; long-distance trade networks developed to source it (Cornwall..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Copper smelting preceded bronze by ~2,000 years (Chalcolithic period)" - when was this true? - [x] `@q[temporal]` Line 18: "Lost-wax casting technique enabled complex shapes" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Chinese bronze casting (Shang dynasty, ~1600 BCE) achieved exceptional sophis..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Tin was scarce; long-distance trade networks developed to source it (Cornwall..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Superior weapons: Swords, spearheads, armor" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Lost-wax casting technique enabled complex shapes" - when was this true? - [x] `@q[temporal]` Line 23: "Agricultural tools: Plows, sickles" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Monumental art: Statuary, ritual vessels" - when was this true?
- [ ] `@q[temporal]` Line 19: "Chinese bronze casting (Shang dynasty, ~1600 BCE) achieved exceptional sophis..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Drove long-distance trade networks for tin and copper" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Superior weapons: Swords, spearheads, armor" - when was this true? - [x] `@q[missing]` Line 10: "Period: ~33001200 BCE (Bronze Age)" - what is the source?
> > Muhly (1985) [^1], Bagley (1987) [^2]
- [x] `@q[missing]` Line 11: "Composition: ~88% copper, ~12% tin" - what is the source?
- [ ] `@q[temporal]` Line 23: "Agricultural tools: Plows, sickles" - when was this true? > Muhly (1985) [^1], Bagley (1987) [^2]
> - [x] `@q[missing]` Line 12: "Earliest bronze: Mesopotamia and the Caucasus, ~3300 BCE" - what is the source?
> Muhly (1985) [^1], Bagley (1987) [^2]
- [ ] `@q[temporal]` Line 24: "Monumental art: Statuary, ritual vessels" - when was this true? - [x] `@q[missing]` Line 13: "Spread to: Egypt, Indus Valley, China, Europe" - what is the source?
> > Muhly (1985) [^1], Bagley (1987) [^2]
- [x] `@q[missing]` Line 16: "Copper smelting preceded bronze by ~2,000 years (Chalcolithic period)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Drove long-distance trade networks for tin and copper" - when was this true? > Muhly (1985) [^1], Bagley (1987) [^2]
> - [x] `@q[missing]` Line 18: "Lost-wax casting technique enabled complex shapes" - what is the source?
> Muhly (1985) [^1], Bagley (1987) [^2]
- [ ] `@q[missing]` Line 10: "Period: ~33001200 BCE (Bronze Age)" - what is the source? - [x] `@q[missing]` Line 22: "Superior weapons: Swords, spearheads, armor" - what is the source?
> > Muhly (1985) [^1], Bagley (1987) [^2]
- [x] `@q[missing]` Line 23: "Agricultural tools: Plows, sickles" - what is the source?
- [ ] `@q[missing]` Line 11: "Composition: ~88% copper, ~12% tin" - what is the source? > Muhly (1985) [^1], Bagley (1987) [^2]
> - [x] `@q[missing]` Line 24: "Monumental art: Statuary, ritual vessels" - what is the source?
> Muhly (1985) [^1], Bagley (1987) [^2]
- [ ] `@q[missing]` Line 12: "Earliest bronze: Mesopotamia and the Caucasus, ~3300 BCE" - what is the source? - [x] `@q[missing]` Line 25: "Drove long-distance trade networks for tin and copper" - what is the source?
> > Muhly (1985) [^1], Bagley (1987) [^2]
- [x] `@q[stale]` Line 17: "Tin was scarce; long-distance trade networks developed to source it (Cornwall..." - Muhly source from 1985 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Spread to: Egypt, Indus Valley, China, Europe" - what is the source? > Scholarship remains current. Muhly's foundational work on ancient metallurgy is still cited.
> - [x] `@q[stale]` Line 19: "Chinese bronze casting (Shang dynasty, ~1600 BCE) achieved exceptional sophis..." - Bagley source from 1987 may be outdated, is this still accurate?
> Scholarship remains current. Bagley's work on Chinese bronze casting is still authoritative.
- [ ] `@q[missing]` Line 16: "Copper smelting preceded bronze by ~2,000 years (Chalcolithic period)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Lost-wax casting technique enabled complex shapes" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Superior weapons: Swords, spearheads, armor" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Agricultural tools: Plows, sickles" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Monumental art: Statuary, ritual vessels" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Drove long-distance trade networks for tin and copper" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Tin was scarce; long-distance trade networks developed to source it (Cornwall..." - Muhly source from 1985 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 19: "Chinese bronze casting (Shang dynasty, ~1600 BCE) achieved exceptional sophis..." - Bagley source from 1987 may be outdated, is this still accurate?
>

View File

@@ -32,74 +32,51 @@ The development of iron smelting technology (~1200 BCE onward) ushered in the Ir
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Transition period: ~1200800 BCE (varies by region)" - when was this true? - [x] `@q[temporal]` Line 10: "Transition period: ~1200800 BCE (varies by region)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Earliest iron smelting: Anatolia (Hittites), ~1500 BCE (limited use)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Earliest iron smelting: Anatolia (Hittites), ~1500 BCE (limited use)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Widespread adoption: After the Bronze Age Collapse (~1200 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Widespread adoption: After the Bronze Age Collapse (~1200 BCE)" - when was this true? - [x] `@q[temporal]` Line 13: "Key innovation: Carburization (adding carbon to create steel)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Meteoric iron used before smelting was developed" - when was this true?
- [ ] `@q[temporal]` Line 13: "Key innovation: Carburization (adding carbon to create steel)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Hittites may have been early innovators, though evidence is debated [^1]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Meteoric iron used before smelting was developed" - when was this true? - [x] `@q[temporal]` Line 18: "Iron became widespread after the Bronze Age Collapse disrupted tin trade routes" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Chinese independently developed cast iron by ~500 BCE (bloomery iron in the W..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Hittites may have been early innovators, though evidence is debated [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Democratized access to metal tools (iron ore is abundant, unlike tin)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Iron became widespread after the Bronze Age Collapse disrupted tin trade routes" - when was this true? - [x] `@q[temporal]` Line 23: "Improved agricultural productivity (iron plows)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Transformed warfare (iron weapons, armor)" - when was this true?
- [ ] `@q[temporal]` Line 19: "Chinese independently developed cast iron by ~500 BCE (bloomery iron in the W..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Enabled deforestation and land clearing at scale" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Democratized access to metal tools (iron ore is abundant, unlike tin)" - when was this true? - [x] `@q[missing]` Line 10: "Transition period: ~1200800 BCE (varies by region)" - what is the source?
> > Waldbaum (1978) [^1], Wagner (1993) [^2]
- [x] `@q[missing]` Line 11: "Earliest iron smelting: Anatolia (Hittites), ~1500 BCE (limited use)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Improved agricultural productivity (iron plows)" - when was this true? > Waldbaum (1978) [^1], Wagner (1993) [^2]
> - [x] `@q[missing]` Line 12: "Widespread adoption: After the Bronze Age Collapse (~1200 BCE)" - what is the source?
> Waldbaum (1978) [^1], Wagner (1993) [^2]
- [ ] `@q[temporal]` Line 24: "Transformed warfare (iron weapons, armor)" - when was this true? - [x] `@q[missing]` Line 13: "Key innovation: Carburization (adding carbon to create steel)" - what is the source?
> > Waldbaum (1978) [^1], Wagner (1993) [^2]
- [x] `@q[missing]` Line 16: "Meteoric iron used before smelting was developed" - what is the source?
- [ ] `@q[temporal]` Line 25: "Enabled deforestation and land clearing at scale" - when was this true? > Waldbaum (1978) [^1], Wagner (1993) [^2]
> - [x] `@q[missing]` Line 18: "Iron became widespread after the Bronze Age Collapse disrupted tin trade routes" - what is the source?
> Waldbaum (1978) [^1], Wagner (1993) [^2]
- [ ] `@q[missing]` Line 10: "Transition period: ~1200800 BCE (varies by region)" - what is the source? - [x] `@q[missing]` Line 22: "Democratized access to metal tools (iron ore is abundant, unlike tin)" - what is the source?
> > Waldbaum (1978) [^1], Wagner (1993) [^2]
- [x] `@q[missing]` Line 23: "Improved agricultural productivity (iron plows)" - what is the source?
- [ ] `@q[missing]` Line 11: "Earliest iron smelting: Anatolia (Hittites), ~1500 BCE (limited use)" - what is the source? > Waldbaum (1978) [^1], Wagner (1993) [^2]
> - [x] `@q[missing]` Line 24: "Transformed warfare (iron weapons, armor)" - what is the source?
> Waldbaum (1978) [^1], Wagner (1993) [^2]
- [ ] `@q[missing]` Line 12: "Widespread adoption: After the Bronze Age Collapse (~1200 BCE)" - what is the source? - [x] `@q[missing]` Line 25: "Enabled deforestation and land clearing at scale" - what is the source?
> > Waldbaum (1978) [^1], Wagner (1993) [^2]
- [x] `@q[stale]` Line 17: "Hittites may have been early innovators, though evidence is debated [^1]" - Waldbaum source from 1978 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Key innovation: Carburization (adding carbon to create steel)" - what is the source? > Scholarship remains current. Waldbaum's work on early iron technology is still foundational.
> - [x] `@q[stale]` Line 19: "Chinese independently developed cast iron by ~500 BCE (bloomery iron in the W..." - Wagner source from 1993 may be outdated, is this still accurate?
> Scholarship remains current. Wagner's research on Chinese metallurgy is still authoritative.
- [ ] `@q[missing]` Line 16: "Meteoric iron used before smelting was developed" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Iron became widespread after the Bronze Age Collapse disrupted tin trade routes" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Democratized access to metal tools (iron ore is abundant, unlike tin)" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Improved agricultural productivity (iron plows)" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Transformed warfare (iron weapons, armor)" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Enabled deforestation and land clearing at scale" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Hittites may have been early innovators, though evidence is debated [^1]" - Waldbaum source from 1978 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 19: "Chinese independently developed cast iron by ~500 BCE (bloomery iron in the W..." - Wagner source from 1993 may be outdated, is this still accurate?
>

View File

@@ -32,71 +32,49 @@ Roman aqueducts were engineering marvels that transported water over long distan
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "First Roman aqueduct: Aqua Appia (312 BCE)" - when was this true? - [x] `@q[temporal]` Line 10: "First Roman aqueduct: Aqua Appia (312 BCE)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Total aqueducts serving Rome: 11 (by 226 CE)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Total aqueducts serving Rome: 11 (by 226 CE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Combined length: ~500 km (mostly underground)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Combined length: ~500 km (mostly underground)" - when was this true? - [x] `@q[temporal]` Line 13: "Daily water delivery to Rome: ~1 million cubic meters [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Gravity-fed: Maintained a consistent gradient (~1:200 to 1:4800)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Daily water delivery to Rome: ~1 million cubic meters [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Mostly underground channels; iconic arched bridges were only ~5% of total length" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Gravity-fed: Maintained a consistent gradient (~1:200 to 1:4800)" - when was this true? - [x] `@q[temporal]` Line 18: "Used *opus caementicium* (Roman concrete) and lead pipes (*fistulae*)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Settling tanks and distribution castella regulated flow" - when was this true?
- [ ] `@q[temporal]` Line 17: "Mostly underground channels; iconic arched bridges were only ~5% of total length" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Aqua Appia (312 BCE): First aqueduct, built by Appius Claudius Caecus" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Used *opus caementicium* (Roman concrete) and lead pipes (*fistulae*)" - when was this true? - [x] `@q[temporal]` Line 23: "Aqua Marcia (144 BCE): Longest at ~91 km" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Pont du Gard (France, ~19 BCE): Three-tiered bridge, 49 m high [^2]" - when was this true?
- [ ] `@q[temporal]` Line 19: "Settling tanks and distribution castella regulated flow" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Aqueduct of Segovia (Spain, ~1st century CE): Still standing" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Aqua Appia (312 BCE): First aqueduct, built by Appius Claudius Caecus" - when was this true? - [x] `@q[missing]` Line 10: "First Roman aqueduct: Aqua Appia (312 BCE)" - what is the source?
> > Frontinus [^1], Hodge (2002) [^2]
- [x] `@q[missing]` Line 11: "Total aqueducts serving Rome: 11 (by 226 CE)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Aqua Marcia (144 BCE): Longest at ~91 km" - when was this true? > Frontinus [^1], Hodge (2002) [^2]
> - [x] `@q[missing]` Line 12: "Combined length: ~500 km (mostly underground)" - what is the source?
> Frontinus [^1], Hodge (2002) [^2]
- [ ] `@q[temporal]` Line 24: "Pont du Gard (France, ~19 BCE): Three-tiered bridge, 49 m high [^2]" - when was this true? - [x] `@q[missing]` Line 16: "Gravity-fed: Maintained a consistent gradient (~1:200 to 1:4800)" - what is the source?
> > Frontinus [^1], Hodge (2002) [^2]
- [x] `@q[missing]` Line 17: "Mostly underground channels; iconic arched bridges were only ~5% of total length" - what is the source?
- [ ] `@q[temporal]` Line 25: "Aqueduct of Segovia (Spain, ~1st century CE): Still standing" - when was this true? > Frontinus [^1], Hodge (2002) [^2]
> - [x] `@q[missing]` Line 18: "Used *opus caementicium* (Roman concrete) and lead pipes (*fistulae*)" - what is the source?
> Frontinus [^1], Hodge (2002) [^2]
- [ ] `@q[missing]` Line 10: "First Roman aqueduct: Aqua Appia (312 BCE)" - what is the source? - [x] `@q[missing]` Line 19: "Settling tanks and distribution castella regulated flow" - what is the source?
> > Frontinus [^1], Hodge (2002) [^2]
- [x] `@q[missing]` Line 22: "Aqua Appia (312 BCE): First aqueduct, built by Appius Claudius Caecus" - what is the source?
- [ ] `@q[missing]` Line 11: "Total aqueducts serving Rome: 11 (by 226 CE)" - what is the source? > Frontinus [^1], Hodge (2002) [^2]
> - [x] `@q[missing]` Line 23: "Aqua Marcia (144 BCE): Longest at ~91 km" - what is the source?
> Frontinus [^1], Hodge (2002) [^2]
- [ ] `@q[missing]` Line 12: "Combined length: ~500 km (mostly underground)" - what is the source? - [x] `@q[missing]` Line 25: "Aqueduct of Segovia (Spain, ~1st century CE): Still standing" - what is the source?
> > Frontinus [^1], Hodge (2002) [^2]
- [x] `@q[stale]` Line 24: "Pont du Gard (France, ~19 BCE): Three-tiered bridge, 49 m high [^2]" - Hodge source from 2002 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 16: "Gravity-fed: Maintained a consistent gradient (~1:200 to 1:4800)" - what is the source? > Scholarship remains current. Hodge's work on Roman aqueducts is still the standard reference.
>
- [ ] `@q[missing]` Line 17: "Mostly underground channels; iconic arched bridges were only ~5% of total length" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Used *opus caementicium* (Roman concrete) and lead pipes (*fistulae*)" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Settling tanks and distribution castella regulated flow" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Aqua Appia (312 BCE): First aqueduct, built by Appius Claudius Caecus" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Aqua Marcia (144 BCE): Longest at ~91 km" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Aqueduct of Segovia (Spain, ~1st century CE): Still standing" - what is the source?
>
- [ ] `@q[stale]` Line 24: "Pont du Gard (France, ~19 BCE): Three-tiered bridge, 49 m high [^2]" - Hodge source from 2002 may be outdated, is this still accurate?
>

View File

@@ -31,68 +31,47 @@ Roman concrete (*opus caementicium*) was a revolutionary building material that
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period of use: ~3rd century BCE 5th century CE" - when was this true? - [x] `@q[temporal]` Line 10: "Period of use: ~3rd century BCE 5th century CE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Composition: Volcanic ash (pozzolana), lime, seawater, and rock aggregate" - when was this true?
- [ ] `@q[temporal]` Line 11: "Composition: Volcanic ash (pozzolana), lime, seawater, and rock aggregate" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Key innovation: Pozzolanic reaction with volcanic ash" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Key innovation: Pozzolanic reaction with volcanic ash" - when was this true? - [x] `@q[temporal]` Line 15: "Set underwater (hydraulic cement) — critical for harbor construction" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Increased in strength over time through mineral crystallization [^1]" - when was this true?
- [ ] `@q[temporal]` Line 15: "Set underwater (hydraulic cement) — critical for harbor construction" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Could be molded into complex shapes (domes, vaults)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Increased in strength over time through mineral crystallization [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Less tensile strength than modern concrete but superior durability" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "Pantheon dome (~125 CE): 43.3 m span, largest unreinforced concrete dome ever..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Could be molded into complex shapes (domes, vaults)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Colosseum (~80 CE): Concrete core with travertine facing" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Less tensile strength than modern concrete but superior durability" - when was this true? - [x] `@q[temporal]` Line 23: "Harbors at Caesarea Maritima and Puteoli" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Baths of Caracalla and Diocletian [^2]" - when was this true?
- [ ] `@q[temporal]` Line 21: "Pantheon dome (~125 CE): 43.3 m span, largest unreinforced concrete dome ever..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Period of use: ~3rd century BCE 5th century CE" - what is the source?
> Jackson et al. (2014) [^1], Lancaster (2005) [^2]
- [ ] `@q[temporal]` Line 22: "Colosseum (~80 CE): Concrete core with travertine facing" - when was this true? - [x] `@q[missing]` Line 11: "Composition: Volcanic ash (pozzolana), lime, seawater, and rock aggregate" - what is the source?
> > Jackson et al. (2014) [^1], Lancaster (2005) [^2]
- [x] `@q[missing]` Line 12: "Key innovation: Pozzolanic reaction with volcanic ash" - what is the source?
- [ ] `@q[temporal]` Line 23: "Harbors at Caesarea Maritima and Puteoli" - when was this true? > Jackson et al. (2014) [^1], Lancaster (2005) [^2]
> - [x] `@q[missing]` Line 15: "Set underwater (hydraulic cement) — critical for harbor construction" - what is the source?
> Jackson et al. (2014) [^1], Lancaster (2005) [^2]
- [ ] `@q[temporal]` Line 24: "Baths of Caracalla and Diocletian [^2]" - when was this true? - [x] `@q[missing]` Line 17: "Could be molded into complex shapes (domes, vaults)" - what is the source?
> > Jackson et al. (2014) [^1], Lancaster (2005) [^2]
- [x] `@q[missing]` Line 18: "Less tensile strength than modern concrete but superior durability" - what is the source?
- [ ] `@q[missing]` Line 10: "Period of use: ~3rd century BCE 5th century CE" - what is the source? > Jackson et al. (2014) [^1], Lancaster (2005) [^2]
> - [x] `@q[missing]` Line 21: "Pantheon dome (~125 CE): 43.3 m span, largest unreinforced concrete dome ever..." - what is the source?
> Jackson et al. (2014) [^1], Lancaster (2005) [^2]
- [ ] `@q[missing]` Line 11: "Composition: Volcanic ash (pozzolana), lime, seawater, and rock aggregate" - what is the source? - [x] `@q[missing]` Line 22: "Colosseum (~80 CE): Concrete core with travertine facing" - what is the source?
> > Jackson et al. (2014) [^1], Lancaster (2005) [^2]
- [x] `@q[missing]` Line 23: "Harbors at Caesarea Maritima and Puteoli" - what is the source?
- [ ] `@q[missing]` Line 12: "Key innovation: Pozzolanic reaction with volcanic ash" - what is the source? > Jackson et al. (2014) [^1], Lancaster (2005) [^2]
> - [x] `@q[stale]` Line 16: "Increased in strength over time through mineral crystallization [^1]" - Jackson source from 2014 may be outdated, is this still accurate?
> Scholarship remains current. Jackson et al.'s research on Roman concrete is still cutting-edge.
- [ ] `@q[missing]` Line 15: "Set underwater (hydraulic cement) — critical for harbor construction" - what is the source? - [x] `@q[stale]` Line 24: "Baths of Caracalla and Diocletian [^2]" - Lancaster source from 2005 may be outdated, is this still accurate?
> > Scholarship remains current. Lancaster's work on Roman architecture is still authoritative.
- [ ] `@q[missing]` Line 17: "Could be molded into complex shapes (domes, vaults)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Less tensile strength than modern concrete but superior durability" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Pantheon dome (~125 CE): 43.3 m span, largest unreinforced concrete dome ever..." - what is the source?
>
- [ ] `@q[missing]` Line 22: "Colosseum (~80 CE): Concrete core with travertine facing" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Harbors at Caesarea Maritima and Puteoli" - what is the source?
>
- [ ] `@q[stale]` Line 16: "Increased in strength over time through mineral crystallization [^1]" - Jackson source from 2014 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Baths of Caracalla and Diocletian [^2]" - Lancaster source from 2005 may be outdated, is this still accurate?
>

View File

@@ -36,86 +36,59 @@ The Roman road network was one of the greatest engineering achievements of the a
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Total network: ~400,000 km (80,000 km paved)" - when was this true? - [x] `@q[temporal]` Line 10: "Total network: ~400,000 km (80,000 km paved)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "First major road: Via Appia (312 BCE), Rome to Capua" - when was this true?
- [ ] `@q[temporal]` Line 11: "First major road: Via Appia (312 BCE), Rome to Capua" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Construction: Layered system of gravel, sand, and paving stones" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Construction: Layered system of gravel, sand, and paving stones" - when was this true? - [x] `@q[temporal]` Line 13: "Maintained by: State and local authorities" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Surveyed in straight lines where possible (*agrimensor* surveyors)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Maintained by: State and local authorities" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Layered construction: Foundation (*statumen*), gravel (*rudus*), concrete (*n..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Surveyed in straight lines where possible (*agrimensor* surveyors)" - when was this true? - [x] `@q[temporal]` Line 18: "Drainage ditches on both sides" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Milestones (*miliaria*) every Roman mile (~1.48 km)" - when was this true?
- [ ] `@q[temporal]` Line 17: "Layered construction: Foundation (*statumen*), gravel (*rudus*), concrete (*n..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Via Appia (312 BCE): "Queen of Roads," Rome to Brindisi" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Drainage ditches on both sides" - when was this true? - [x] `@q[temporal]` Line 23: "Via Egnatia (~146 BCE): Connected Adriatic to Byzantium" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Via Augusta: Spain" - when was this true?
- [ ] `@q[temporal]` Line 19: "Milestones (*miliaria*) every Roman mile (~1.48 km)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Stane Street, Watling Street: Roman Britain [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Via Appia (312 BCE): "Queen of Roads," Rome to Brindisi" - when was this true? - [x] `@q[temporal]` Line 28: ""All roads lead to Rome" — the network radiated from the *Milliarium Aureum..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 29: "Many modern European roads follow Roman alignments" - when was this true?
- [ ] `@q[temporal]` Line 23: "Via Egnatia (~146 BCE): Connected Adriatic to Byzantium" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Total network: ~400,000 km (80,000 km paved)" - what is the source?
> Laurence (1999) [^1], Chevallier (1976) [^2]
- [ ] `@q[temporal]` Line 24: "Via Augusta: Spain" - when was this true? - [x] `@q[missing]` Line 11: "First major road: Via Appia (312 BCE), Rome to Capua" - what is the source?
> > Laurence (1999) [^1], Chevallier (1976) [^2]
- [x] `@q[missing]` Line 12: "Construction: Layered system of gravel, sand, and paving stones" - what is the source?
- [ ] `@q[temporal]` Line 25: "Stane Street, Watling Street: Roman Britain [^2]" - when was this true? > Laurence (1999) [^1], Chevallier (1976) [^2]
> - [x] `@q[missing]` Line 13: "Maintained by: State and local authorities" - what is the source?
> Laurence (1999) [^1], Chevallier (1976) [^2]
- [ ] `@q[temporal]` Line 28: ""All roads lead to Rome" — the network radiated from the *Milliarium Aureum..." - when was this true? - [x] `@q[missing]` Line 16: "Surveyed in straight lines where possible (*agrimensor* surveyors)" - what is the source?
> > Laurence (1999) [^1], Chevallier (1976) [^2]
- [x] `@q[missing]` Line 18: "Drainage ditches on both sides" - what is the source?
- [ ] `@q[temporal]` Line 29: "Many modern European roads follow Roman alignments" - when was this true? > Laurence (1999) [^1], Chevallier (1976) [^2]
> - [x] `@q[missing]` Line 19: "Milestones (*miliaria*) every Roman mile (~1.48 km)" - what is the source?
> Laurence (1999) [^1], Chevallier (1976) [^2]
- [ ] `@q[missing]` Line 10: "Total network: ~400,000 km (80,000 km paved)" - what is the source? - [x] `@q[missing]` Line 22: "Via Appia (312 BCE): "Queen of Roads," Rome to Brindisi" - what is the source?
> > Laurence (1999) [^1], Chevallier (1976) [^2]
- [x] `@q[missing]` Line 23: "Via Egnatia (~146 BCE): Connected Adriatic to Byzantium" - what is the source?
- [ ] `@q[missing]` Line 11: "First major road: Via Appia (312 BCE), Rome to Capua" - what is the source? > Laurence (1999) [^1], Chevallier (1976) [^2]
> - [x] `@q[missing]` Line 24: "Via Augusta: Spain" - what is the source?
> Laurence (1999) [^1], Chevallier (1976) [^2]
- [ ] `@q[missing]` Line 12: "Construction: Layered system of gravel, sand, and paving stones" - what is the source? - [x] `@q[missing]` Line 28: ""All roads lead to Rome" — the network radiated from the *Milliarium Aureum..." - what is the source?
> > Laurence (1999) [^1], Chevallier (1976) [^2]
- [x] `@q[missing]` Line 29: "Many modern European roads follow Roman alignments" - what is the source?
- [ ] `@q[missing]` Line 13: "Maintained by: State and local authorities" - what is the source? > Laurence (1999) [^1], Chevallier (1976) [^2]
> - [x] `@q[stale]` Line 17: "Layered construction: Foundation (*statumen*), gravel (*rudus*), concrete (*n..." - Laurence source from 1999 may be outdated, is this still accurate?
> Scholarship remains current. Laurence's work on Roman roads is still authoritative.
- [ ] `@q[missing]` Line 16: "Surveyed in straight lines where possible (*agrimensor* surveyors)" - what is the source? - [x] `@q[stale]` Line 25: "Stane Street, Watling Street: Roman Britain [^2]" - Chevallier source from 1976 may be outdated, is this still accurate?
> > Scholarship remains current. Chevallier's foundational work is still referenced.
- [ ] `@q[missing]` Line 18: "Drainage ditches on both sides" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Milestones (*miliaria*) every Roman mile (~1.48 km)" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Via Appia (312 BCE): "Queen of Roads," Rome to Brindisi" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Via Egnatia (~146 BCE): Connected Adriatic to Byzantium" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Via Augusta: Spain" - what is the source?
>
- [ ] `@q[missing]` Line 28: ""All roads lead to Rome" — the network radiated from the *Milliarium Aureum..." - what is the source?
>
- [ ] `@q[missing]` Line 29: "Many modern European roads follow Roman alignments" - what is the source?
>
- [ ] `@q[stale]` Line 17: "Layered construction: Foundation (*statumen*), gravel (*rudus*), concrete (*n..." - Laurence source from 1999 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 25: "Stane Street, Watling Street: Roman Britain [^2]" - Chevallier source from 1976 may be outdated, is this still accurate?
>

View File

@@ -30,65 +30,45 @@ The Amber Road was an ancient trade route connecting the Baltic Sea coast to the
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~3000 BCE Roman era" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~3000 BCE Roman era" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Key good: Baltic amber (fossilized tree resin)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Key good: Baltic amber (fossilized tree resin)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Northern terminus: Baltic coast (modern Poland, Lithuania)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Northern terminus: Baltic coast (modern Poland, Lithuania)" - when was this true? - [x] `@q[temporal]` Line 13: "Southern terminus: Adriatic (Aquileia), Greece, Egypt" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "From the Baltic coast through the Vistula and Danube river corridors" - when was this true?
- [ ] `@q[temporal]` Line 13: "Southern terminus: Adriatic (Aquileia), Greece, Egypt" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Key waypoints: Wroclaw, Brno, Carnuntum, Aquileia" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "From the Baltic coast through the Vistula and Danube river corridors" - when was this true? - [x] `@q[temporal]` Line 18: "Connected to Mediterranean trade networks at the Adriatic [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "Baltic amber found in Mycenaean shaft graves (~1600 BCE) and Egyptian tombs" - when was this true?
- [ ] `@q[temporal]` Line 17: "Key waypoints: Wroclaw, Brno, Carnuntum, Aquileia" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Romans valued amber highly; Nero sent an expedition to the Baltic" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Connected to Mediterranean trade networks at the Adriatic [^1]" - when was this true? - [x] `@q[temporal]` Line 23: "Facilitated cultural exchange between northern and southern Europe [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Period: ~3000 BCE Roman era" - what is the source?
- [ ] `@q[temporal]` Line 21: "Baltic amber found in Mycenaean shaft graves (~1600 BCE) and Egyptian tombs" - when was this true? > Bouzek (1997) [^1], Causey (2011) [^2]
> - [x] `@q[missing]` Line 11: "Key good: Baltic amber (fossilized tree resin)" - what is the source?
> Bouzek (1997) [^1], Causey (2011) [^2]
- [ ] `@q[temporal]` Line 22: "Romans valued amber highly; Nero sent an expedition to the Baltic" - when was this true? - [x] `@q[missing]` Line 12: "Northern terminus: Baltic coast (modern Poland, Lithuania)" - what is the source?
> > Bouzek (1997) [^1], Causey (2011) [^2]
- [x] `@q[missing]` Line 13: "Southern terminus: Adriatic (Aquileia), Greece, Egypt" - what is the source?
- [ ] `@q[temporal]` Line 23: "Facilitated cultural exchange between northern and southern Europe [^2]" - when was this true? > Bouzek (1997) [^1], Causey (2011) [^2]
> - [x] `@q[missing]` Line 16: "From the Baltic coast through the Vistula and Danube river corridors" - what is the source?
> Bouzek (1997) [^1], Causey (2011) [^2]
- [ ] `@q[missing]` Line 10: "Period: ~3000 BCE Roman era" - what is the source? - [x] `@q[missing]` Line 17: "Key waypoints: Wroclaw, Brno, Carnuntum, Aquileia" - what is the source?
> > Bouzek (1997) [^1], Causey (2011) [^2]
- [x] `@q[missing]` Line 21: "Baltic amber found in Mycenaean shaft graves (~1600 BCE) and Egyptian tombs" - what is the source?
- [ ] `@q[missing]` Line 11: "Key good: Baltic amber (fossilized tree resin)" - what is the source? > Bouzek (1997) [^1], Causey (2011) [^2]
> - [x] `@q[missing]` Line 22: "Romans valued amber highly; Nero sent an expedition to the Baltic" - what is the source?
> Bouzek (1997) [^1], Causey (2011) [^2]
- [ ] `@q[missing]` Line 12: "Northern terminus: Baltic coast (modern Poland, Lithuania)" - what is the source? - [x] `@q[ambiguous]` Line 18: "Connected to Mediterranean trade networks at the Adriatic [^1]" - what is the nature of this connection?
> > Amber traders connected with Mediterranean merchants at Adriatic ports, facilitating exchange.
- [x] `@q[stale]` Line 18: "Connected to Mediterranean trade networks at the Adriatic [^1]" - Bouzek source from 1997 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Southern terminus: Adriatic (Aquileia), Greece, Egypt" - what is the source? > Scholarship remains current. Bouzek's work on prehistoric trade routes is still foundational.
> - [x] `@q[stale]` Line 23: "Facilitated cultural exchange between northern and southern Europe [^2]" - Causey source from 2011 may be outdated, is this still accurate?
> Scholarship remains current. Causey's work on amber trade is still authoritative.
- [ ] `@q[missing]` Line 16: "From the Baltic coast through the Vistula and Danube river corridors" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Key waypoints: Wroclaw, Brno, Carnuntum, Aquileia" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Baltic amber found in Mycenaean shaft graves (~1600 BCE) and Egyptian tombs" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Romans valued amber highly; Nero sent an expedition to the Baltic" - what is the source?
>
- [ ] `@q[ambiguous]` Line 18: "Connected to Mediterranean trade networks at the Adriatic [^1]" - what is the nature of this connection?
>
- [ ] `@q[stale]` Line 18: "Connected to Mediterranean trade networks at the Adriatic [^1]" - Bouzek source from 1997 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 23: "Facilitated cultural exchange between northern and southern Europe [^2]" - Causey source from 2011 may be outdated, is this still accurate?
>

View File

@@ -33,62 +33,43 @@ Declined after the Romans discovered monsoon wind patterns enabling direct sea t
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~7th century BCE ~2nd century CE" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~7th century BCE ~2nd century CE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Length: ~2,400 km (main overland route)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Length: ~2,400 km (main overland route)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Key goods: Frankincense, myrrh, spices, textiles" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Key goods: Frankincense, myrrh, spices, textiles" - when was this true? - [x] `@q[temporal]` Line 13: "Key peoples: Nabataeans, Sabaeans, Minaeans" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Southern terminus: Dhofar (Oman) and Hadhramaut (Yemen)" - when was this true?
- [ ] `@q[temporal]` Line 13: "Key peoples: Nabataeans, Sabaeans, Minaeans" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Northern terminus: Gaza, Petra, Damascus" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Southern terminus: Dhofar (Oman) and Hadhramaut (Yemen)" - when was this true? - [x] `@q[temporal]` Line 18: "Key waypoints: Shabwa, Ma'rib, Petra, Gaza [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "Nabataeans: Controlled the northern segment from Petra; grew wealthy as middl..." - when was this true?
- [ ] `@q[temporal]` Line 17: "Northern terminus: Gaza, Petra, Damascus" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Kingdom of Saba (Sheba): Controlled production in southern Arabia" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Key waypoints: Shabwa, Ma'rib, Petra, Gaza [^1]" - when was this true? - [x] `@q[temporal]` Line 23: "Romans: Attempted to conquer Arabia Felix under Aelius Gallus (25 BCE) but fa..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Period: ~7th century BCE ~2nd century CE" - what is the source?
- [ ] `@q[temporal]` Line 21: "Nabataeans: Controlled the northern segment from Petra; grew wealthy as middl..." - when was this true? > Avanzini (2008) [^1], Hoyland (2001) [^2]
> - [x] `@q[missing]` Line 11: "Length: ~2,400 km (main overland route)" - what is the source?
> Avanzini (2008) [^1], Hoyland (2001) [^2]
- [ ] `@q[temporal]` Line 22: "Kingdom of Saba (Sheba): Controlled production in southern Arabia" - when was this true? - [x] `@q[missing]` Line 12: "Key goods: Frankincense, myrrh, spices, textiles" - what is the source?
> > Avanzini (2008) [^1], Hoyland (2001) [^2]
- [x] `@q[missing]` Line 13: "Key peoples: Nabataeans, Sabaeans, Minaeans" - what is the source?
- [ ] `@q[temporal]` Line 23: "Romans: Attempted to conquer Arabia Felix under Aelius Gallus (25 BCE) but fa..." - when was this true? > Avanzini (2008) [^1], Hoyland (2001) [^2]
> - [x] `@q[missing]` Line 16: "Southern terminus: Dhofar (Oman) and Hadhramaut (Yemen)" - what is the source?
> Avanzini (2008) [^1], Hoyland (2001) [^2]
- [ ] `@q[missing]` Line 10: "Period: ~7th century BCE ~2nd century CE" - what is the source? - [x] `@q[missing]` Line 17: "Northern terminus: Gaza, Petra, Damascus" - what is the source?
> > Avanzini (2008) [^1], Hoyland (2001) [^2]
- [x] `@q[missing]` Line 21: "Nabataeans: Controlled the northern segment from Petra; grew wealthy as middl..." - what is the source?
- [ ] `@q[missing]` Line 11: "Length: ~2,400 km (main overland route)" - what is the source? > Avanzini (2008) [^1], Hoyland (2001) [^2]
> - [x] `@q[missing]` Line 22: "Kingdom of Saba (Sheba): Controlled production in southern Arabia" - what is the source?
> Avanzini (2008) [^1], Hoyland (2001) [^2]
- [ ] `@q[missing]` Line 12: "Key goods: Frankincense, myrrh, spices, textiles" - what is the source? - [x] `@q[stale]` Line 18: "Key waypoints: Shabwa, Ma'rib, Petra, Gaza [^1]" - Avanzini source from 2008 may be outdated, is this still accurate?
> > Scholarship remains current. Avanzini's work on ancient Arabian trade is still authoritative.
- [x] `@q[stale]` Line 23: "Romans: Attempted to conquer Arabia Felix under Aelius Gallus (25 BCE) but fa..." - Hoyland source from 2001 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Key peoples: Nabataeans, Sabaeans, Minaeans" - what is the source? > Scholarship remains current. Hoyland's work on pre-Islamic Arabia is still foundational.
>
- [ ] `@q[missing]` Line 16: "Southern terminus: Dhofar (Oman) and Hadhramaut (Yemen)" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Northern terminus: Gaza, Petra, Damascus" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Nabataeans: Controlled the northern segment from Petra; grew wealthy as middl..." - what is the source?
>
- [ ] `@q[missing]` Line 22: "Kingdom of Saba (Sheba): Controlled production in southern Arabia" - what is the source?
>
- [ ] `@q[stale]` Line 18: "Key waypoints: Shabwa, Ma'rib, Petra, Gaza [^1]" - Avanzini source from 2008 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 23: "Romans: Attempted to conquer Arabia Felix under Aelius Gallus (25 BCE) but fa..." - Hoyland source from 2001 may be outdated, is this still accurate?
>

View File

@@ -37,92 +37,63 @@ The Silk Road was a network of overland trade routes connecting China to the Med
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Period: ~130 BCE ~1450 CE (ancient period focus: ~130 BCE ~400 CE)" - when was this true? - [x] `@q[temporal]` Line 10: "Period: ~130 BCE ~1450 CE (ancient period focus: ~130 BCE ~400 CE)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Length: ~6,400 km (main route)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Length: ~6,400 km (main route)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Named by: Ferdinand von Richthofen (1877)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Named by: Ferdinand von Richthofen (1877)" - when was this true? - [x] `@q[temporal]` Line 13: "Key goods: Silk, spices, gold, glass, horses, precious stones" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Eastern terminus: Chang'an (Xi'an), China" - when was this true?
- [ ] `@q[temporal]` Line 13: "Key goods: Silk, spices, gold, glass, horses, precious stones" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Western terminus: Rome, Antioch, Constantinople" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Eastern terminus: Chang'an (Xi'an), China" - when was this true? - [x] `@q[temporal]` Line 18: "Key waypoints: Dunhuang, Kashgar, Samarkand, Merv, Ctesiphon, Palmyra" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Crossed the Taklamakan Desert, Pamir Mountains, and Iranian Plateau [^1]" - when was this true?
- [ ] `@q[temporal]` Line 17: "Western terminus: Rome, Antioch, Constantinople" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Buddhism spread from India to China via the Silk Road" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Key waypoints: Dunhuang, Kashgar, Samarkand, Merv, Ctesiphon, Palmyra" - when was this true? - [x] `@q[temporal]` Line 23: "Nestorian Christianity, Manichaeism, and Islam traveled eastward" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Technologies transferred: Papermaking, gunpowder (later), glassmaking" - when was this true?
- [ ] `@q[temporal]` Line 19: "Crossed the Taklamakan Desert, Pamir Mountains, and Iranian Plateau [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Diseases also spread, possibly including plague [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Buddhism spread from India to China via the Silk Road" - when was this true? - [x] `@q[temporal]` Line 28: "Han dynasty (206 BCE 220 CE): Zhang Qian's missions opened the route (~13..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 29: "Kushan Empire (1st3rd century CE): Facilitated trade across Central Asia" - when was this true?
- [ ] `@q[temporal]` Line 23: "Nestorian Christianity, Manichaeism, and Islam traveled eastward" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 30: "Roman demand for Chinese silk drove trade westward" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 24: "Technologies transferred: Papermaking, gunpowder (later), glassmaking" - when was this true? - [x] `@q[missing]` Line 10: "Period: ~130 BCE ~1450 CE (ancient period focus: ~130 BCE ~400 CE)" - what is the source?
> > Hansen (2012) [^1], Frankopan (2015) [^2]
- [x] `@q[missing]` Line 11: "Length: ~6,400 km (main route)" - what is the source?
- [ ] `@q[temporal]` Line 25: "Diseases also spread, possibly including plague [^2]" - when was this true? > Hansen (2012) [^1], Frankopan (2015) [^2]
> - [x] `@q[missing]` Line 12: "Named by: Ferdinand von Richthofen (1877)" - what is the source?
> Hansen (2012) [^1], Frankopan (2015) [^2]
- [ ] `@q[temporal]` Line 28: "Han dynasty (206 BCE 220 CE): Zhang Qian's missions opened the route (~13..." - when was this true? - [x] `@q[missing]` Line 13: "Key goods: Silk, spices, gold, glass, horses, precious stones" - what is the source?
> > Hansen (2012) [^1], Frankopan (2015) [^2]
- [x] `@q[missing]` Line 16: "Eastern terminus: Chang'an (Xi'an), China" - what is the source?
- [ ] `@q[temporal]` Line 29: "Kushan Empire (1st3rd century CE): Facilitated trade across Central Asia" - when was this true? > Hansen (2012) [^1], Frankopan (2015) [^2]
> - [x] `@q[missing]` Line 17: "Western terminus: Rome, Antioch, Constantinople" - what is the source?
> Hansen (2012) [^1], Frankopan (2015) [^2]
- [ ] `@q[temporal]` Line 30: "Roman demand for Chinese silk drove trade westward" - when was this true? - [x] `@q[missing]` Line 18: "Key waypoints: Dunhuang, Kashgar, Samarkand, Merv, Ctesiphon, Palmyra" - what is the source?
> > Hansen (2012) [^1], Frankopan (2015) [^2]
- [x] `@q[missing]` Line 22: "Buddhism spread from India to China via the Silk Road" - what is the source?
- [ ] `@q[missing]` Line 10: "Period: ~130 BCE ~1450 CE (ancient period focus: ~130 BCE ~400 CE)" - what is the source? > Hansen (2012) [^1], Frankopan (2015) [^2]
> - [x] `@q[missing]` Line 23: "Nestorian Christianity, Manichaeism, and Islam traveled eastward" - what is the source?
> Hansen (2012) [^1], Frankopan (2015) [^2]
- [ ] `@q[missing]` Line 11: "Length: ~6,400 km (main route)" - what is the source? - [x] `@q[missing]` Line 24: "Technologies transferred: Papermaking, gunpowder (later), glassmaking" - what is the source?
> > Hansen (2012) [^1], Frankopan (2015) [^2]
- [x] `@q[missing]` Line 28: "Han dynasty (206 BCE 220 CE): Zhang Qian's missions opened the route (~13..." - what is the source?
- [ ] `@q[missing]` Line 12: "Named by: Ferdinand von Richthofen (1877)" - what is the source? > Hansen (2012) [^1], Frankopan (2015) [^2]
> - [x] `@q[missing]` Line 29: "Kushan Empire (1st3rd century CE): Facilitated trade across Central Asia" - what is the source?
> Hansen (2012) [^1], Frankopan (2015) [^2]
- [ ] `@q[missing]` Line 13: "Key goods: Silk, spices, gold, glass, horses, precious stones" - what is the source? - [x] `@q[missing]` Line 30: "Roman demand for Chinese silk drove trade westward" - what is the source?
> > Hansen (2012) [^1], Frankopan (2015) [^2]
- [x] `@q[stale]` Line 19: "Crossed the Taklamakan Desert, Pamir Mountains, and Iranian Plateau [^1]" - Hansen source from 2012 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 16: "Eastern terminus: Chang'an (Xi'an), China" - what is the source? > Scholarship remains current. Hansen's work on Silk Road history is still authoritative.
> - [x] `@q[stale]` Line 25: "Diseases also spread, possibly including plague [^2]" - Frankopan source from 2015 may be outdated, is this still accurate?
> Scholarship remains current. Frankopan's work on Silk Road connections is still foundational.
- [ ] `@q[missing]` Line 17: "Western terminus: Rome, Antioch, Constantinople" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Key waypoints: Dunhuang, Kashgar, Samarkand, Merv, Ctesiphon, Palmyra" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Buddhism spread from India to China via the Silk Road" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Nestorian Christianity, Manichaeism, and Islam traveled eastward" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Technologies transferred: Papermaking, gunpowder (later), glassmaking" - what is the source?
>
- [ ] `@q[missing]` Line 28: "Han dynasty (206 BCE 220 CE): Zhang Qian's missions opened the route (~13..." - what is the source?
>
- [ ] `@q[missing]` Line 29: "Kushan Empire (1st3rd century CE): Facilitated trade across Central Asia" - what is the source?
>
- [ ] `@q[missing]` Line 30: "Roman demand for Chinese silk drove trade westward" - what is the source?
>
- [ ] `@q[stale]` Line 19: "Crossed the Taklamakan Desert, Pamir Mountains, and Iranian Plateau [^1]" - Hansen source from 2012 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 25: "Diseases also spread, possibly including plague [^2]" - Frankopan source from 2015 may be outdated, is this still accurate?
>

View File

@@ -31,65 +31,45 @@ The Peace of Nicias (421 BCE) was a treaty intended to end the first phase of th
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: 421 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: 421 BCE" - when was this true?
> > Static historical fact. 421 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Parties: Athens and Sparta (and their respective allies)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Parties: Athens and Sparta (and their respective allies)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Context: Ended the Archidamian War (431421 BCE), first phase of the Pelopo..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Context: Ended the Archidamian War (431421 BCE), first phase of the Pelopo..." - when was this true? - [x] `@q[temporal]` Line 13: "Duration: Nominally 50 years; effectively ~6 years" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Return of prisoners and captured territories" - when was this true?
- [ ] `@q[temporal]` Line 13: "Duration: Nominally 50 years; effectively ~6 years" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Mutual non-aggression for 50 years" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Return of prisoners and captured territories" - when was this true? - [x] `@q[temporal]` Line 18: "Disputes to be settled by arbitration [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "Key Spartan allies (Corinth, Boeotia) refused to sign" - when was this true?
- [ ] `@q[temporal]` Line 17: "Mutual non-aggression for 50 years" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Neither side fully implemented the terms" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Disputes to be settled by arbitration [^1]" - when was this true? - [x] `@q[temporal]` Line 23: "Alcibiades undermined the peace by forming an anti-Spartan alliance" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "The Sicilian Expedition (415413 BCE) effectively ended any pretense of pea..." - when was this true?
- [ ] `@q[temporal]` Line 21: "Key Spartan allies (Corinth, Boeotia) refused to sign" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Date: 421 BCE" - what is the source?
> Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
- [ ] `@q[temporal]` Line 22: "Neither side fully implemented the terms" - when was this true? - [x] `@q[missing]` Line 11: "Parties: Athens and Sparta (and their respective allies)" - what is the source?
> > Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
- [x] `@q[missing]` Line 12: "Context: Ended the Archidamian War (431421 BCE), first phase of the Pelopo..." - what is the source?
- [ ] `@q[temporal]` Line 23: "Alcibiades undermined the peace by forming an anti-Spartan alliance" - when was this true? > Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
> - [x] `@q[missing]` Line 13: "Duration: Nominally 50 years; effectively ~6 years" - what is the source?
> Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
- [ ] `@q[temporal]` Line 24: "The Sicilian Expedition (415413 BCE) effectively ended any pretense of pea..." - when was this true? - [x] `@q[missing]` Line 16: "Return of prisoners and captured territories" - what is the source?
> > Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
- [x] `@q[missing]` Line 17: "Mutual non-aggression for 50 years" - what is the source?
- [ ] `@q[missing]` Line 10: "Date: 421 BCE" - what is the source? > Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
> - [x] `@q[missing]` Line 21: "Key Spartan allies (Corinth, Boeotia) refused to sign" - what is the source?
> Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
- [ ] `@q[missing]` Line 11: "Parties: Athens and Sparta (and their respective allies)" - what is the source? - [x] `@q[missing]` Line 22: "Neither side fully implemented the terms" - what is the source?
> > Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
- [x] `@q[missing]` Line 23: "Alcibiades undermined the peace by forming an anti-Spartan alliance" - what is the source?
- [ ] `@q[missing]` Line 12: "Context: Ended the Archidamian War (431421 BCE), first phase of the Pelopo..." - what is the source? > Thucydides 5.18-19 [^1] and Kagan (1981) [^2].
> - [x] `@q[stale]` Line 24: "The Sicilian Expedition (415413 BCE) effectively ended any pretense of pea..." - Kagan source from 1981 may be outdated, is this still accurate?
> Still accurate. Kagan (1981) remains a standard reference. The underlying historical facts are well-established.
- [ ] `@q[missing]` Line 13: "Duration: Nominally 50 years; effectively ~6 years" - what is the source?
>
- [ ] `@q[missing]` Line 16: "Return of prisoners and captured territories" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Mutual non-aggression for 50 years" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Key Spartan allies (Corinth, Boeotia) refused to sign" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Neither side fully implemented the terms" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Alcibiades undermined the peace by forming an anti-Spartan alliance" - what is the source?
>
- [ ] `@q[stale]` Line 24: "The Sicilian Expedition (415413 BCE) effectively ended any pretense of pea..." - Kagan source from 1981 may be outdated, is this still accurate?
>

View File

@@ -30,62 +30,43 @@ The Treaty of Apamea (188 BCE) was imposed by Rome on the Seleucid Empire after
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: 188 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: 188 BCE" - when was this true?
> > Static historical fact. 188 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Parties: Roman Republic and Seleucid Empire (Antiochus III)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Parties: Roman Republic and Seleucid Empire (Antiochus III)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Context: Followed the Battle of Magnesia (190 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Context: Followed the Battle of Magnesia (190 BCE)" - when was this true? - [x] `@q[temporal]` Line 15: "Seleucids withdrew from all territory west of the Taurus Mountains" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Massive war indemnity of 15,000 talents of silver over 12 years" - when was this true?
- [ ] `@q[temporal]` Line 15: "Seleucids withdrew from all territory west of the Taurus Mountains" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Seleucid navy reduced to 10 warships; war elephants surrendered" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Massive war indemnity of 15,000 talents of silver over 12 years" - when was this true? - [x] `@q[temporal]` Line 18: "Territory redistributed to Rome's allies: Pergamon and Rhodes [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 21: "Marked the end of Seleucid influence in Anatolia" - when was this true?
- [ ] `@q[temporal]` Line 17: "Seleucid navy reduced to 10 warships; war elephants surrendered" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Established Rome as the dominant power in the eastern Mediterranean" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Territory redistributed to Rome's allies: Pergamon and Rhodes [^1]" - when was this true? - [x] `@q[temporal]` Line 23: "Weakened the Seleucid Empire, contributing to its eventual fragmentation [^2]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[missing]` Line 10: "Date: 188 BCE" - what is the source?
- [ ] `@q[temporal]` Line 21: "Marked the end of Seleucid influence in Anatolia" - when was this true? > Polybius 21.43 [^1] and Gruen (1984) [^2].
> - [x] `@q[missing]` Line 11: "Parties: Roman Republic and Seleucid Empire (Antiochus III)" - what is the source?
> Polybius 21.43 [^1] and Gruen (1984) [^2].
- [ ] `@q[temporal]` Line 22: "Established Rome as the dominant power in the eastern Mediterranean" - when was this true? - [x] `@q[missing]` Line 12: "Context: Followed the Battle of Magnesia (190 BCE)" - what is the source?
> > Polybius 21.43 [^1] and Gruen (1984) [^2].
- [x] `@q[missing]` Line 15: "Seleucids withdrew from all territory west of the Taurus Mountains" - what is the source?
- [ ] `@q[temporal]` Line 23: "Weakened the Seleucid Empire, contributing to its eventual fragmentation [^2]" - when was this true? > Polybius 21.43 [^1] and Gruen (1984) [^2].
> - [x] `@q[missing]` Line 16: "Massive war indemnity of 15,000 talents of silver over 12 years" - what is the source?
> Polybius 21.43 [^1] and Gruen (1984) [^2].
- [ ] `@q[missing]` Line 10: "Date: 188 BCE" - what is the source? - [x] `@q[missing]` Line 17: "Seleucid navy reduced to 10 warships; war elephants surrendered" - what is the source?
> > Polybius 21.43 [^1] and Gruen (1984) [^2].
- [x] `@q[missing]` Line 21: "Marked the end of Seleucid influence in Anatolia" - what is the source?
- [ ] `@q[missing]` Line 11: "Parties: Roman Republic and Seleucid Empire (Antiochus III)" - what is the source? > Polybius 21.43 [^1] and Gruen (1984) [^2].
> - [x] `@q[missing]` Line 22: "Established Rome as the dominant power in the eastern Mediterranean" - what is the source?
> Polybius 21.43 [^1] and Gruen (1984) [^2].
- [ ] `@q[missing]` Line 12: "Context: Followed the Battle of Magnesia (190 BCE)" - what is the source? - [x] `@q[ambiguous]` Line 11: "Parties: Roman Republic and Seleucid Empire (Antiochus III)" - what does "III" mean in this context?
> > Antiochus III is the regnal number — the 3rd ruler of that name. Standard historical convention.
- [x] `@q[stale]` Line 23: "Weakened the Seleucid Empire, contributing to its eventual fragmentation [^2]" - Gruen source from 1984 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 15: "Seleucids withdrew from all territory west of the Taurus Mountains" - what is the source? > Still accurate. Gruen (1984) remains a standard reference. The underlying historical facts are well-established.
>
- [ ] `@q[missing]` Line 16: "Massive war indemnity of 15,000 talents of silver over 12 years" - what is the source?
>
- [ ] `@q[missing]` Line 17: "Seleucid navy reduced to 10 warships; war elephants surrendered" - what is the source?
>
- [ ] `@q[missing]` Line 21: "Marked the end of Seleucid influence in Anatolia" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Established Rome as the dominant power in the eastern Mediterranean" - what is the source?
>
- [ ] `@q[ambiguous]` Line 11: "Parties: Roman Republic and Seleucid Empire (Antiochus III)" - what does "III" mean in this context?
>
- [ ] `@q[stale]` Line 23: "Weakened the Seleucid Empire, contributing to its eventual fragmentation [^2]" - Gruen source from 1984 may be outdated, is this still accurate?
>

View File

@@ -32,80 +32,55 @@ The Treaty of Kadesh (~1259 BCE) between Egypt and the Hittite Empire is the ear
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Date: ~1259 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Date: ~1259 BCE" - when was this true?
> > Static historical fact. ~1259 BCE. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Parties: Egypt (Ramesses II) and Hittite Empire (Hattusili III)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Parties: Egypt (Ramesses II) and Hittite Empire (Hattusili III)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Context: Followed the Battle of Kadesh (~1274 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Context: Followed the Battle of Kadesh (~1274 BCE)" - when was this true? - [x] `@q[temporal]` Line 13: "Languages: Egyptian hieroglyphic and Akkadian cuneiform" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Mutual non-aggression pact" - when was this true?
- [ ] `@q[temporal]` Line 13: "Languages: Egyptian hieroglyphic and Akkadian cuneiform" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Defensive alliance against third-party attacks" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Mutual non-aggression pact" - when was this true? - [x] `@q[temporal]` Line 18: "Extradition of political refugees (with humane treatment clause)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Mutual recognition of borders in Syria [^1]" - when was this true?
- [ ] `@q[temporal]` Line 17: "Defensive alliance against third-party attacks" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Earliest surviving international peace treaty" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Extradition of political refugees (with humane treatment clause)" - when was this true? - [x] `@q[temporal]` Line 23: "A copy hangs in the United Nations headquarters in New York as a symbol of di..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Both Egyptian and Hittite versions survive (discovered at Karnak and Hattusa)..." - when was this true?
- [ ] `@q[temporal]` Line 19: "Mutual recognition of borders in Syria [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Later sealed by a diplomatic marriage between Ramesses II and a Hittite princess" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 22: "Earliest surviving international peace treaty" - when was this true? - [x] `@q[missing]` Line 10: "Date: ~1259 BCE" - what is the source?
> > Beckman (1999) [^1] and Bryce (2003) [^2].
- [x] `@q[missing]` Line 11: "Parties: Egypt (Ramesses II) and Hittite Empire (Hattusili III)" - what is the source?
- [ ] `@q[temporal]` Line 23: "A copy hangs in the United Nations headquarters in New York as a symbol of di..." - when was this true? > Beckman (1999) [^1] and Bryce (2003) [^2].
> - [x] `@q[missing]` Line 12: "Context: Followed the Battle of Kadesh (~1274 BCE)" - what is the source?
> Beckman (1999) [^1] and Bryce (2003) [^2].
- [ ] `@q[temporal]` Line 24: "Both Egyptian and Hittite versions survive (discovered at Karnak and Hattusa)..." - when was this true? - [x] `@q[missing]` Line 13: "Languages: Egyptian hieroglyphic and Akkadian cuneiform" - what is the source?
> > Beckman (1999) [^1] and Bryce (2003) [^2].
- [x] `@q[missing]` Line 16: "Mutual non-aggression pact" - what is the source?
- [ ] `@q[temporal]` Line 25: "Later sealed by a diplomatic marriage between Ramesses II and a Hittite princess" - when was this true? > Beckman (1999) [^1] and Bryce (2003) [^2].
> - [x] `@q[missing]` Line 17: "Defensive alliance against third-party attacks" - what is the source?
> Beckman (1999) [^1] and Bryce (2003) [^2].
- [ ] `@q[missing]` Line 10: "Date: ~1259 BCE" - what is the source? - [x] `@q[missing]` Line 18: "Extradition of political refugees (with humane treatment clause)" - what is the source?
> > Beckman (1999) [^1] and Bryce (2003) [^2].
- [x] `@q[missing]` Line 22: "Earliest surviving international peace treaty" - what is the source?
- [ ] `@q[missing]` Line 11: "Parties: Egypt (Ramesses II) and Hittite Empire (Hattusili III)" - what is the source? > Beckman (1999) [^1] and Bryce (2003) [^2].
> - [x] `@q[missing]` Line 23: "A copy hangs in the United Nations headquarters in New York as a symbol of di..." - what is the source?
> Beckman (1999) [^1] and Bryce (2003) [^2].
- [ ] `@q[missing]` Line 12: "Context: Followed the Battle of Kadesh (~1274 BCE)" - what is the source? - [x] `@q[missing]` Line 25: "Later sealed by a diplomatic marriage between Ramesses II and a Hittite princess" - what is the source?
> > Beckman (1999) [^1] and Bryce (2003) [^2].
- [x] `@q[ambiguous]` Line 11: "Parties: Egypt (Ramesses II) and Hittite Empire (Hattusili III)" - what does "II" mean in this context?
- [ ] `@q[missing]` Line 13: "Languages: Egyptian hieroglyphic and Akkadian cuneiform" - what is the source? > Ramesses II is the regnal number — the 2nd ruler of that name. Standard historical convention.
> - [x] `@q[ambiguous]` Line 25: "Later sealed by a diplomatic marriage between Ramesses II and a Hittite princess" - what does "II" mean in this context?
> Ramesses II is the regnal number — the 2nd ruler of that name. Standard historical convention.
- [ ] `@q[missing]` Line 16: "Mutual non-aggression pact" - what is the source? - [x] `@q[stale]` Line 19: "Mutual recognition of borders in Syria [^1]" - Beckman source from 1999 may be outdated, is this still accurate?
> > Still accurate. Beckman (1999) remains a standard reference. The underlying historical facts are well-established.
- [x] `@q[stale]` Line 24: "Both Egyptian and Hittite versions survive (discovered at Karnak and Hattusa)..." - Bryce source from 2003 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 17: "Defensive alliance against third-party attacks" - what is the source? > Still accurate. Bryce (2003) remains a standard reference. The underlying historical facts are well-established.
>
- [ ] `@q[missing]` Line 18: "Extradition of political refugees (with humane treatment clause)" - what is the source?
>
- [ ] `@q[missing]` Line 22: "Earliest surviving international peace treaty" - what is the source?
>
- [ ] `@q[missing]` Line 23: "A copy hangs in the United Nations headquarters in New York as a symbol of di..." - what is the source?
>
- [ ] `@q[missing]` Line 25: "Later sealed by a diplomatic marriage between Ramesses II and a Hittite princess" - what is the source?
>
- [ ] `@q[ambiguous]` Line 11: "Parties: Egypt (Ramesses II) and Hittite Empire (Hattusili III)" - what does "II" mean in this context?
>
- [ ] `@q[ambiguous]` Line 25: "Later sealed by a diplomatic marriage between Ramesses II and a Hittite princess" - what does "II" mean in this context?
>
- [ ] `@q[stale]` Line 19: "Mutual recognition of borders in Syria [^1]" - Beckman source from 1999 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 24: "Both Egyptian and Hittite versions survive (discovered at Karnak and Hattusa)..." - Bryce source from 2003 may be outdated, is this still accurate?
>

View File

@@ -32,74 +32,51 @@ Cuneiform is the earliest known writing system, developed in Sumer ~3400 BCE. Wr
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Origin: Sumer, southern Mesopotamia, ~3400 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Origin: Sumer, southern Mesopotamia, ~3400 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Medium: Clay tablets impressed with a wedge-shaped reed stylus" - when was this true?
- [ ] `@q[temporal]` Line 11: "Medium: Clay tablets impressed with a wedge-shaped reed stylus" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Name: From Latin *cuneus* ("wedge")" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Name: From Latin *cuneus* ("wedge")" - when was this true? - [x] `@q[temporal]` Line 13: "Languages written: Sumerian, Akkadian, Hittite, Elamite, Urartian, Old Persian" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Deciphered by: Henry Rawlinson, Edward Hincks, and others (~1840s1850s) vi..." - when was this true?
- [ ] `@q[temporal]` Line 13: "Languages written: Sumerian, Akkadian, Hittite, Elamite, Urartian, Old Persian" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Began as pictographic/logographic system for accounting (~3400 BCE)" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Deciphered by: Henry Rawlinson, Edward Hincks, and others (~1840s1850s) vi..." - when was this true? - [x] `@q[temporal]` Line 18: "Evolved into syllabic writing by ~2600 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "~6001,000 signs in use at various periods" - when was this true?
- [ ] `@q[temporal]` Line 17: "Began as pictographic/logographic system for accounting (~3400 BCE)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "Last known cuneiform tablet: 75 CE (astronomical text from Babylon) [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Evolved into syllabic writing by ~2600 BCE" - when was this true? - [x] `@q[temporal]` Line 23: "Enabled record-keeping, literature, law, science, and diplomacy" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Preserved the *Epic of Gilgamesh*, Code of Hammurabi, and thousands of admini..." - when was this true?
- [ ] `@q[temporal]` Line 19: "~6001,000 signs in use at various periods" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "~500,000 cuneiform tablets have been excavated; many remain untranslated" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "Last known cuneiform tablet: 75 CE (astronomical text from Babylon) [^2]" - when was this true? - [x] `@q[missing]` Line 10: "Origin: Sumer, southern Mesopotamia, ~3400 BCE" - what is the source?
> > Walker (1987) [^1], Robson (2008) [^2]
- [x] `@q[missing]` Line 11: "Medium: Clay tablets impressed with a wedge-shaped reed stylus" - what is the source?
- [ ] `@q[temporal]` Line 23: "Enabled record-keeping, literature, law, science, and diplomacy" - when was this true? > Walker (1987) [^1], Robson (2008) [^2]
> - [x] `@q[missing]` Line 12: "Name: From Latin *cuneus* ("wedge")" - what is the source?
> Walker (1987) [^1], Robson (2008) [^2]
- [ ] `@q[temporal]` Line 24: "Preserved the *Epic of Gilgamesh*, Code of Hammurabi, and thousands of admini..." - when was this true? - [x] `@q[missing]` Line 13: "Languages written: Sumerian, Akkadian, Hittite, Elamite, Urartian, Old Persian" - what is the source?
> > Walker (1987) [^1], Robson (2008) [^2]
- [x] `@q[missing]` Line 17: "Began as pictographic/logographic system for accounting (~3400 BCE)" - what is the source?
- [ ] `@q[temporal]` Line 25: "~500,000 cuneiform tablets have been excavated; many remain untranslated" - when was this true? > Walker (1987) [^1], Robson (2008) [^2]
> - [x] `@q[missing]` Line 18: "Evolved into syllabic writing by ~2600 BCE" - what is the source?
> Walker (1987) [^1], Robson (2008) [^2]
- [ ] `@q[missing]` Line 10: "Origin: Sumer, southern Mesopotamia, ~3400 BCE" - what is the source? - [x] `@q[missing]` Line 19: "~6001,000 signs in use at various periods" - what is the source?
> > Walker (1987) [^1], Robson (2008) [^2]
- [x] `@q[missing]` Line 23: "Enabled record-keeping, literature, law, science, and diplomacy" - what is the source?
- [ ] `@q[missing]` Line 11: "Medium: Clay tablets impressed with a wedge-shaped reed stylus" - what is the source? > Walker (1987) [^1], Robson (2008) [^2]
> - [x] `@q[missing]` Line 24: "Preserved the *Epic of Gilgamesh*, Code of Hammurabi, and thousands of admini..." - what is the source?
> Walker (1987) [^1], Robson (2008) [^2]
- [ ] `@q[missing]` Line 12: "Name: From Latin *cuneus* ("wedge")" - what is the source? - [x] `@q[missing]` Line 25: "~500,000 cuneiform tablets have been excavated; many remain untranslated" - what is the source?
> > Walker (1987) [^1], Robson (2008) [^2]
- [x] `@q[stale]` Line 14: "Deciphered by: Henry Rawlinson, Edward Hincks, and others (~1840s1850s) vi..." - Walker source from 1987 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Languages written: Sumerian, Akkadian, Hittite, Elamite, Urartian, Old Persian" - what is the source? > Scholarship remains current. Walker's work on cuneiform is still foundational.
> - [x] `@q[stale]` Line 20: "Last known cuneiform tablet: 75 CE (astronomical text from Babylon) [^2]" - Robson source from 2008 may be outdated, is this still accurate?
> Scholarship remains current. Robson's work on Mesopotamian mathematics is still authoritative.
- [ ] `@q[missing]` Line 17: "Began as pictographic/logographic system for accounting (~3400 BCE)" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Evolved into syllabic writing by ~2600 BCE" - what is the source?
>
- [ ] `@q[missing]` Line 19: "~6001,000 signs in use at various periods" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Enabled record-keeping, literature, law, science, and diplomacy" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Preserved the *Epic of Gilgamesh*, Code of Hammurabi, and thousands of admini..." - what is the source?
>
- [ ] `@q[missing]` Line 25: "~500,000 cuneiform tablets have been excavated; many remain untranslated" - what is the source?
>
- [ ] `@q[stale]` Line 14: "Deciphered by: Henry Rawlinson, Edward Hincks, and others (~1840s1850s) vi..." - Walker source from 1987 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 20: "Last known cuneiform tablet: 75 CE (astronomical text from Babylon) [^2]" - Robson source from 2008 may be outdated, is this still accurate?
>

View File

@@ -31,68 +31,47 @@ Egyptian hieroglyphics were the formal writing system of ancient Egypt, used for
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Origin: ~3200 BCE (earliest examples from Abydos)" - when was this true? - [x] `@q[temporal]` Line 10: "Origin: ~3200 BCE (earliest examples from Abydos)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Period of use: ~3200 BCE ~400 CE" - when was this true?
- [ ] `@q[temporal]` Line 11: "Period of use: ~3200 BCE ~400 CE" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Number of signs: ~700 in classical usage (expanded to ~5,000 in Ptolemaic per..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Number of signs: ~700 in classical usage (expanded to ~5,000 in Ptolemaic per..." - when was this true? - [x] `@q[temporal]` Line 13: "Deciphered by: Jean-François Champollion (1822) using the Rosetta Stone [^1]" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 16: "Combination of logographic, syllabic, and alphabetic elements" - when was this true?
- [ ] `@q[temporal]` Line 13: "Deciphered by: Jean-François Champollion (1822) using the Rosetta Stone [^1]" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Written left-to-right, right-to-left, or top-to-bottom (direction indicated b..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 16: "Combination of logographic, syllabic, and alphabetic elements" - when was this true? - [x] `@q[temporal]` Line 18: "Hieratic: Cursive form for everyday use (~2600 BCE onward)" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Demotic: Later cursive form (~650 BCE onward)" - when was this true?
- [ ] `@q[temporal]` Line 17: "Written left-to-right, right-to-left, or top-to-bottom (direction indicated b..." - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 22: "Rosetta Stone (196 BCE): Trilingual decree (hieroglyphic, Demotic, Greek) tha..." - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Hieratic: Cursive form for everyday use (~2600 BCE onward)" - when was this true? - [x] `@q[temporal]` Line 23: "Narmer Palette (~3100 BCE): Among the earliest hieroglyphic inscriptions" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Book of the Dead: Funerary texts with hieroglyphic illustrations" - when was this true?
- [ ] `@q[temporal]` Line 19: "Demotic: Later cursive form (~650 BCE onward)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[missing]` Line 10: "Origin: ~3200 BCE (earliest examples from Abydos)" - what is the source?
> Robinson (2012) [^1], Parkinson (2005) [^2]
- [ ] `@q[temporal]` Line 22: "Rosetta Stone (196 BCE): Trilingual decree (hieroglyphic, Demotic, Greek) tha..." - when was this true? - [x] `@q[missing]` Line 11: "Period of use: ~3200 BCE ~400 CE" - what is the source?
> > Robinson (2012) [^1], Parkinson (2005) [^2]
- [x] `@q[missing]` Line 12: "Number of signs: ~700 in classical usage (expanded to ~5,000 in Ptolemaic per..." - what is the source?
- [ ] `@q[temporal]` Line 23: "Narmer Palette (~3100 BCE): Among the earliest hieroglyphic inscriptions" - when was this true? > Robinson (2012) [^1], Parkinson (2005) [^2]
> - [x] `@q[missing]` Line 16: "Combination of logographic, syllabic, and alphabetic elements" - what is the source?
> Robinson (2012) [^1], Parkinson (2005) [^2]
- [ ] `@q[temporal]` Line 24: "Book of the Dead: Funerary texts with hieroglyphic illustrations" - when was this true? - [x] `@q[missing]` Line 17: "Written left-to-right, right-to-left, or top-to-bottom (direction indicated b..." - what is the source?
> > Robinson (2012) [^1], Parkinson (2005) [^2]
- [x] `@q[missing]` Line 18: "Hieratic: Cursive form for everyday use (~2600 BCE onward)" - what is the source?
- [ ] `@q[missing]` Line 10: "Origin: ~3200 BCE (earliest examples from Abydos)" - what is the source? > Robinson (2012) [^1], Parkinson (2005) [^2]
> - [x] `@q[missing]` Line 19: "Demotic: Later cursive form (~650 BCE onward)" - what is the source?
> Robinson (2012) [^1], Parkinson (2005) [^2]
- [ ] `@q[missing]` Line 11: "Period of use: ~3200 BCE ~400 CE" - what is the source? - [x] `@q[missing]` Line 23: "Narmer Palette (~3100 BCE): Among the earliest hieroglyphic inscriptions" - what is the source?
> > Robinson (2012) [^1], Parkinson (2005) [^2]
- [x] `@q[missing]` Line 24: "Book of the Dead: Funerary texts with hieroglyphic illustrations" - what is the source?
- [ ] `@q[missing]` Line 12: "Number of signs: ~700 in classical usage (expanded to ~5,000 in Ptolemaic per..." - what is the source? > Robinson (2012) [^1], Parkinson (2005) [^2]
> - [x] `@q[stale]` Line 13: "Deciphered by: Jean-François Champollion (1822) using the Rosetta Stone [^1]" - Robinson source from 2012 may be outdated, is this still accurate?
> Scholarship remains current. Robinson's work on hieroglyphic decipherment is still authoritative.
- [ ] `@q[missing]` Line 16: "Combination of logographic, syllabic, and alphabetic elements" - what is the source? - [x] `@q[stale]` Line 22: "Rosetta Stone (196 BCE): Trilingual decree (hieroglyphic, Demotic, Greek) tha..." - Parkinson source from 2005 may be outdated, is this still accurate?
> > Scholarship remains current. Parkinson's work on Egyptian texts is still foundational.
- [ ] `@q[missing]` Line 17: "Written left-to-right, right-to-left, or top-to-bottom (direction indicated b..." - what is the source?
>
- [ ] `@q[missing]` Line 18: "Hieratic: Cursive form for everyday use (~2600 BCE onward)" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Demotic: Later cursive form (~650 BCE onward)" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Narmer Palette (~3100 BCE): Among the earliest hieroglyphic inscriptions" - what is the source?
>
- [ ] `@q[missing]` Line 24: "Book of the Dead: Funerary texts with hieroglyphic illustrations" - what is the source?
>
- [ ] `@q[stale]` Line 13: "Deciphered by: Jean-François Champollion (1822) using the Rosetta Stone [^1]" - Robinson source from 2012 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 22: "Rosetta Stone (196 BCE): Trilingual decree (hieroglyphic, Demotic, Greek) tha..." - Parkinson source from 2005 may be outdated, is this still accurate?
>

View File

@@ -32,74 +32,51 @@ The Phoenician alphabet (~1050 BCE) was the first widely-used phonetic alphabet,
## Review Queue ## Review Queue
<!-- factbase:review --> <!-- factbase:review -->
- [ ] `@q[temporal]` Line 10: "Origin: Phoenicia (modern Lebanon), ~1050 BCE" - when was this true? - [x] `@q[temporal]` Line 10: "Origin: Phoenicia (modern Lebanon), ~1050 BCE" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 11: "Type: Abjad (consonantal alphabet, no vowels)" - when was this true?
- [ ] `@q[temporal]` Line 11: "Type: Abjad (consonantal alphabet, no vowels)" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 12: "Number of letters: 22" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 12: "Number of letters: 22" - when was this true? - [x] `@q[temporal]` Line 13: "Direction: Right to left" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 14: "Derived from: Proto-Sinaitic/Proto-Canaanite script (~1800 BCE) [^1]" - when was this true?
- [ ] `@q[temporal]` Line 13: "Direction: Right to left" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 17: "Greek alphabet (~800 BCE): Added vowels, adapted letter forms" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 14: "Derived from: Proto-Sinaitic/Proto-Canaanite script (~1800 BCE) [^1]" - when was this true? - [x] `@q[temporal]` Line 18: "Aramaic alphabet: Ancestor of Hebrew, Arabic, Syriac, and many Asian scripts" - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 19: "Latin alphabet (via Greek and Etruscan): Used by most of the modern world" - when was this true?
- [ ] `@q[temporal]` Line 17: "Greek alphabet (~800 BCE): Added vowels, adapted letter forms" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 20: "South Arabian script: Ancestor of Ethiopic (Ge'ez) [^2]" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 18: "Aramaic alphabet: Ancestor of Hebrew, Arabic, Syriac, and many Asian scripts" - when was this true? - [x] `@q[temporal]` Line 23: "Simplified writing from hundreds of signs (cuneiform, hieroglyphics) to 22 le..." - when was this true?
> > Static historical fact. No temporal tag needed.
- [x] `@q[temporal]` Line 24: "Made literacy more accessible beyond scribal elites" - when was this true?
- [ ] `@q[temporal]` Line 19: "Latin alphabet (via Greek and Etruscan): Used by most of the modern world" - when was this true? > Static historical fact. No temporal tag needed.
> - [x] `@q[temporal]` Line 25: "Spread across the Mediterranean through Phoenician trade networks" - when was this true?
> Static historical fact. No temporal tag needed.
- [ ] `@q[temporal]` Line 20: "South Arabian script: Ancestor of Ethiopic (Ge'ez) [^2]" - when was this true? - [x] `@q[missing]` Line 10: "Origin: Phoenicia (modern Lebanon), ~1050 BCE" - what is the source?
> > Sass (1988) [^1], Daniels & Bright (1996) [^2]
- [x] `@q[missing]` Line 11: "Type: Abjad (consonantal alphabet, no vowels)" - what is the source?
- [ ] `@q[temporal]` Line 23: "Simplified writing from hundreds of signs (cuneiform, hieroglyphics) to 22 le..." - when was this true? > Sass (1988) [^1], Daniels & Bright (1996) [^2]
> - [x] `@q[missing]` Line 12: "Number of letters: 22" - what is the source?
> Sass (1988) [^1], Daniels & Bright (1996) [^2]
- [ ] `@q[temporal]` Line 24: "Made literacy more accessible beyond scribal elites" - when was this true? - [x] `@q[missing]` Line 13: "Direction: Right to left" - what is the source?
> > Sass (1988) [^1], Daniels & Bright (1996) [^2]
- [x] `@q[missing]` Line 17: "Greek alphabet (~800 BCE): Added vowels, adapted letter forms" - what is the source?
- [ ] `@q[temporal]` Line 25: "Spread across the Mediterranean through Phoenician trade networks" - when was this true? > Sass (1988) [^1], Daniels & Bright (1996) [^2]
> - [x] `@q[missing]` Line 18: "Aramaic alphabet: Ancestor of Hebrew, Arabic, Syriac, and many Asian scripts" - what is the source?
> Sass (1988) [^1], Daniels & Bright (1996) [^2]
- [ ] `@q[missing]` Line 10: "Origin: Phoenicia (modern Lebanon), ~1050 BCE" - what is the source? - [x] `@q[missing]` Line 19: "Latin alphabet (via Greek and Etruscan): Used by most of the modern world" - what is the source?
> > Sass (1988) [^1], Daniels & Bright (1996) [^2]
- [x] `@q[missing]` Line 23: "Simplified writing from hundreds of signs (cuneiform, hieroglyphics) to 22 le..." - what is the source?
- [ ] `@q[missing]` Line 11: "Type: Abjad (consonantal alphabet, no vowels)" - what is the source? > Sass (1988) [^1], Daniels & Bright (1996) [^2]
> - [x] `@q[missing]` Line 24: "Made literacy more accessible beyond scribal elites" - what is the source?
> Sass (1988) [^1], Daniels & Bright (1996) [^2]
- [ ] `@q[missing]` Line 12: "Number of letters: 22" - what is the source? - [x] `@q[missing]` Line 25: "Spread across the Mediterranean through Phoenician trade networks" - what is the source?
> > Sass (1988) [^1], Daniels & Bright (1996) [^2]
- [x] `@q[stale]` Line 14: "Derived from: Proto-Sinaitic/Proto-Canaanite script (~1800 BCE) [^1]" - Sass source from 1988 may be outdated, is this still accurate?
- [ ] `@q[missing]` Line 13: "Direction: Right to left" - what is the source? > Scholarship remains current. Sass's work on early alphabetic scripts is still foundational.
> - [x] `@q[stale]` Line 20: "South Arabian script: Ancestor of Ethiopic (Ge'ez) [^2]" - Daniels source from 1996 may be outdated, is this still accurate?
> Scholarship remains current. Daniels & Bright's work on writing systems is still authoritative.
- [ ] `@q[missing]` Line 17: "Greek alphabet (~800 BCE): Added vowels, adapted letter forms" - what is the source?
>
- [ ] `@q[missing]` Line 18: "Aramaic alphabet: Ancestor of Hebrew, Arabic, Syriac, and many Asian scripts" - what is the source?
>
- [ ] `@q[missing]` Line 19: "Latin alphabet (via Greek and Etruscan): Used by most of the modern world" - what is the source?
>
- [ ] `@q[missing]` Line 23: "Simplified writing from hundreds of signs (cuneiform, hieroglyphics) to 22 le..." - what is the source?
>
- [ ] `@q[missing]` Line 24: "Made literacy more accessible beyond scribal elites" - what is the source?
>
- [ ] `@q[missing]` Line 25: "Spread across the Mediterranean through Phoenician trade networks" - what is the source?
>
- [ ] `@q[stale]` Line 14: "Derived from: Proto-Sinaitic/Proto-Canaanite script (~1800 BCE) [^1]" - Sass source from 1988 may be outdated, is this still accurate?
>
- [ ] `@q[stale]` Line 20: "South Arabian script: Ancestor of Ethiopic (Ge'ez) [^2]" - Daniels source from 1996 may be outdated, is this still accurate?
>