chore(meta): wiki sweep — 2,131 dead heightmap links, nav refresh, GOVERNANCE reality (T-1070, T-1071)
- T-1070: scaffold_bodies.py heightmap link now conditional (bake criteria per import_heightmaps.py); surgical removal of the dead image line from all 2,131 body pages lacking the file (267 with the file keep theirs) - T-1071: 26 real link breaks fixed (knowledge/→concepts/, pre-governance decision anchors, 9 phantom catalog companions unlinked, cygni relink to the corporation page, wrong design-doc path); wiki/index.md counts fixed (301 systems) + Economics nav section; corporations/index.md regenerated from frontmatter (all 155, tier1.toml grouping — corrects 4 misfiled tier-1 corps); 25 orphaned station GTTRs linked from 11 system pages (own ##-heading so atlas sync cannot absorb it); GOVERNANCE.md + star-system template rewritten to the generated model (DB owns structured fields, wiki owns prose); triangles/index.md added - Sol markers conversion REVERTED before commit: atlas_viewer.gd:433 still renders the legacy geometry schema, so conversion would drop Sol's Atlas overlays — split to T-1073 (convert together with the client read path) Broken relative links: 2,180 → 25 (all remaining are intentional _templates/ placeholders). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -78,7 +78,7 @@ def _body_prose(bd: dict, system_dir: Path) -> str:
|
||||
if btype == "moon":
|
||||
lines.append(f"{pclass.replace('_', ' ').title()} moon.")
|
||||
elif pclass in ("gas_giant", "gas_giant_ringed"):
|
||||
lines.append(f"Gas giant.")
|
||||
lines.append("Gas giant.")
|
||||
else:
|
||||
lines.append(f"{pclass.replace('_', ' ').title()} {btype}.")
|
||||
lines.append("")
|
||||
@@ -90,11 +90,20 @@ def _body_prose(bd: dict, system_dir: Path) -> str:
|
||||
# Visual overview
|
||||
lines.append("## Visual")
|
||||
lines.append("")
|
||||
lines.append(f"")
|
||||
lines.append("")
|
||||
lines.append("")
|
||||
# Heightmap link only when the file exists or will exist: import_heightmaps.py
|
||||
# bakes heightmap.png solely for non-Sol, non-gas inhabited bodies with
|
||||
# population > 0 (D-202 amended, #963) — linking it elsewhere produces a
|
||||
# dead image.
|
||||
if pclass not in ("gas_giant", "gas_giant_ringed"):
|
||||
lines.append(f"")
|
||||
lines.append("")
|
||||
heightmap_path = system_dir / "bodies" / bid / "heightmap.png"
|
||||
will_exist = (system_dir.name != "GJ-0"
|
||||
and bool(wiki.get("inhabited"))
|
||||
and bool(wiki.get("population")))
|
||||
if heightmap_path.exists() or will_exist:
|
||||
lines.append("")
|
||||
lines.append("")
|
||||
|
||||
# Profile table
|
||||
lines.append("## Profile")
|
||||
@@ -118,7 +127,7 @@ def _body_prose(bd: dict, system_dir: Path) -> str:
|
||||
label = "Orbit" if btype == "moon" else "Year"
|
||||
lines.append(f"| **{label}** | {orbit['period_days']:.0f} days |")
|
||||
if wiki.get("inhabited"):
|
||||
lines.append(f"| **Inhabited** | yes |")
|
||||
lines.append("| **Inhabited** | yes |")
|
||||
if wiki.get("population"):
|
||||
lines.append(f"| **Population** | {wiki['population']} |")
|
||||
if wiki.get("economy"):
|
||||
|
||||
+75
-22
@@ -5,9 +5,28 @@
|
||||
|
||||
---
|
||||
|
||||
## Two Ownership Models
|
||||
|
||||
The wiki has two kinds of content with different sources of truth (see
|
||||
`tooling/db/wiki_sync.py`):
|
||||
|
||||
- **DB owns structured fields, wiki owns prose** (`star-systems/`): identity,
|
||||
gates, history, economy, factions, and culture live in `server/data/systems.db`
|
||||
and are rendered into READ-ONLY page sections. Authored prose sections
|
||||
(Supply Dependency, Faction Notes, Silence Topic, Narrative Hook, Calibration
|
||||
Note) are written in the wiki and preserved across regeneration. Never edit a
|
||||
section marked `<!-- READ-ONLY -->` — it will be overwritten by the next sync.
|
||||
- **Wiki is truth** (flat categories): `corporations/`, `factions/`,
|
||||
`contraband/`, `economics/`, etc. are authored markdown (plus TOML in
|
||||
`economics/`). Where machine-readable, the generators import FROM the wiki
|
||||
(e.g. corporation frontmatter → `systems.db` per D-182).
|
||||
|
||||
---
|
||||
|
||||
## Status Lifecycle
|
||||
|
||||
Every wiki entry has a `status` field in its YAML frontmatter:
|
||||
Authored flat-category entries (corporations, factions, contraband, concepts,
|
||||
triangles, …) carry a `status` field in their YAML frontmatter:
|
||||
|
||||
| Status | Meaning | Who Can Set |
|
||||
|--------|---------|-------------|
|
||||
@@ -19,10 +38,16 @@ Every wiki entry has a `status` field in its YAML frontmatter:
|
||||
|
||||
**Demotion:** A `canonical` entry can be demoted to `draft` if a decision changes its foundation. Only Miri or the project lead can demote canonical entries.
|
||||
|
||||
**Out of scope:** generated `star-systems/` pages have no status field. System
|
||||
pages carry no frontmatter at all; body pages carry frontmatter that IS the
|
||||
body definition (machine-owned, see below), not an editorial status.
|
||||
|
||||
---
|
||||
|
||||
## Creating New Entries
|
||||
|
||||
For **flat-category** entries:
|
||||
|
||||
1. Copy the appropriate template from `_templates/`
|
||||
2. Fill in the YAML frontmatter (all fields)
|
||||
3. Write a concise `description` — one line that captures what makes this entry distinct. This field enables context-aware loading (agents filter by description before loading full files).
|
||||
@@ -32,28 +57,52 @@ Every wiki entry has a `status` field in its YAML frontmatter:
|
||||
|
||||
**Templates available:** `star-system`, `station`, `district`, `location`, `character`, `faction`, `technology`, `cultural-group`, `contraband`, `institution`, `species`, `lore`, `concept`, `triangle`
|
||||
|
||||
**Do not hand-create** system or body pages under `star-systems/` — they are
|
||||
produced by the generator pipeline (`wiki_sync.py`, the atlas sync, and
|
||||
`scaffold_bodies.py`). Authoring happens inside the designated prose sections
|
||||
of generated pages, or in the GTTR files alongside them.
|
||||
|
||||
---
|
||||
|
||||
## Directory Rules
|
||||
|
||||
### Spatial Hierarchy (`star-systems/`)
|
||||
### Spatial Hierarchy (`star-systems/`) — generated
|
||||
|
||||
```
|
||||
star-systems/
|
||||
{system-slug}/
|
||||
index.md # System overview
|
||||
{station-slug}/
|
||||
index.md # Station overview
|
||||
{district-slug}/
|
||||
index.md # District overview
|
||||
{location-slug}.md # Location files (flat within district)
|
||||
index.md # Sector/hop navigation (companions as unlinked text)
|
||||
catalog.md # Full table of all systems by GJ designation
|
||||
gttr-{corridor}.md # Corridor-level Drifter's Guide prose (core, east, …)
|
||||
GJ-{id}/
|
||||
index.md # System page — NO frontmatter:
|
||||
# title block + System Profile (READ-ONLY, systems.db)
|
||||
# + authored prose sections (Supply Dependency,
|
||||
# Faction Notes, Silence Topic, Narrative Hook,
|
||||
# Calibration Note)
|
||||
# + Topology (READ-ONLY, star-map.json)
|
||||
# + Celestial Bodies / Stations & Facilities tables
|
||||
# (READ-ONLY, systems.db via atlas sync)
|
||||
# + Stations GTTR link line
|
||||
gttr.md # System-level Drifter's Guide prose (→ gttr_hook)
|
||||
gttr-{location}.md # Station/settlement-level Guide prose, flat per system
|
||||
bodies/
|
||||
{body_id}/
|
||||
index.md # Body page — YAML frontmatter IS the body definition
|
||||
# (generator input; e.g. axial_tilt feeds
|
||||
# import_economics). Prose below the frontmatter.
|
||||
globe.png # Rendered globe (all bodies)
|
||||
reliefmap.png # Color hypsometric render (non-gas bodies)
|
||||
heightmap.png # 16-bit canonical elevation — inhabited bodies only
|
||||
terrain.npz # Simulation grids
|
||||
markers.json # Names-only city markers (D-223) → atlas_city_names
|
||||
```
|
||||
|
||||
- Systems contain stations (nested directories)
|
||||
- Stations contain districts (nested directories)
|
||||
- Districts contain locations (flat files, no subdirectory)
|
||||
- Each directory level has an `index.md` with that entity's overview
|
||||
- Slugs are lowercase, hyphenated, unique within their parent
|
||||
- **Stations and districts have no wiki directories.** They are rows in
|
||||
`systems.db`, rendered into each system page's Stations & Facilities table.
|
||||
Station-level prose lives in flat `gttr-{slug}.md` files in the system dir.
|
||||
- Body directories are keyed by body id (e.g. `GJ71d-1`), not by display-name slug.
|
||||
- Never edit READ-ONLY sections or `bodies/*/index.md` frontmatter by hand —
|
||||
regenerate from sources instead.
|
||||
|
||||
### Flat Categories
|
||||
|
||||
@@ -72,28 +121,32 @@ No nesting within flat categories. Use `cross_refs` in frontmatter for relations
|
||||
|
||||
- Use `cross_refs` in YAML frontmatter for machine-readable references (slugs only)
|
||||
- Use markdown links in body text for human-readable navigation
|
||||
- Use `decision_refs` for links to `decisions/*.md` entries (e.g., `[D-036]`)
|
||||
- Use `decision_refs` for links to `governance/decisions/*.md` entries (e.g., `[D-036]`)
|
||||
|
||||
---
|
||||
|
||||
## Scale Considerations
|
||||
|
||||
The spatial hierarchy is designed to scale from a single starting system to 500+ (full game):
|
||||
The generated spatial model already covers the full Reach (~301 systems, ~2,600
|
||||
body pages):
|
||||
|
||||
- Each system is a self-contained directory tree
|
||||
- Cross-system references use full slug paths (e.g., `star-systems/{system-slug}/{station-slug}/{district-slug}`)
|
||||
- Characters, factions, and other flat categories remain at wiki root — they are not nested per system
|
||||
- Characters reference their home district via `home_district` frontmatter field
|
||||
- Each system is a self-contained generated directory tree; adding systems means
|
||||
adding rows to the sources (`systems.db` pipeline + `star-map.json`), not
|
||||
hand-building directories
|
||||
- Cross-system references in prose use relative links to `GJ-{id}/index.md`
|
||||
- Characters, factions, and other flat categories remain at wiki root — they are
|
||||
not nested per system
|
||||
|
||||
---
|
||||
|
||||
## Naming Conventions
|
||||
|
||||
- **File slugs:** lowercase, hyphenated (e.g., `vuurkloof.md`, `freight-exchange.md`)
|
||||
- **Directory slugs:** lowercase, hyphenated (e.g., `vuurkloof/`, `{station-slug}/`, `{district-slug}/`)
|
||||
- **System directories:** GJ designation with hyphen (e.g., `GJ-71/`, `GJ-820B/`)
|
||||
- **Body directories:** body id from the Celestial Bodies table (e.g., `GJ71d-1/`)
|
||||
- **Canonical IDs:** match content schema format (e.g., `npc:{character-slug}`)
|
||||
- **Display names:** title case, as they appear in-game
|
||||
|
||||
---
|
||||
|
||||
**Last updated:** 2026-02-13
|
||||
**Last updated:** 2026-06-12
|
||||
|
||||
@@ -1,21 +1,11 @@
|
||||
---
|
||||
title: "" # Display name (e.g., "Vuurkloof")
|
||||
description: "" # One-line summary for context filtering (e.g., "Geothermal frontier system, through-route topology, south_reach corridor")
|
||||
slug: "" # URL-safe identifier (e.g., "vuurkloof")
|
||||
category: star-system
|
||||
status: proposed # proposed | draft | canonical
|
||||
created: YYYY-MM-DD
|
||||
updated: YYYY-MM-DD
|
||||
stellar_class: "" # e.g., G3V, K1III
|
||||
settlement_age: 0 # years since first settlement
|
||||
population: 0 # system-wide
|
||||
reach_position: "" # core | mid-reach | frontier | rim
|
||||
stations: [] # slugs of stations in this system
|
||||
gate_connections: [] # slugs of connected systems
|
||||
tags: []
|
||||
decision_refs: [] # e.g., [D-036]
|
||||
cross_refs: [] # slugs of related entries
|
||||
---
|
||||
<!-- TEMPLATE: star-system page (generated model)
|
||||
|
||||
System pages carry NO YAML frontmatter. Structured fields live in
|
||||
server/data/systems.db (DB owns structured, wiki owns prose — see
|
||||
tooling/db/wiki_sync.py and wiki/GOVERNANCE.md). Pages are produced by the
|
||||
generator pipeline; the authoring surface is the five prose sections below.
|
||||
Sections marked READ-ONLY are regenerated from their source — never edit them
|
||||
by hand. -->
|
||||
|
||||
# {Name}
|
||||
**{GJ ID}** | {star-type} | {sector}
|
||||
@@ -34,6 +24,9 @@ cross_refs: [] # slugs of related entries
|
||||
| **History** | {history_tags} |
|
||||
| **Population** | {population} |
|
||||
| **Economy** | Tier {n} · {economic_base} |
|
||||
| **Industries** | {industry_tags} |
|
||||
| **Exports** | {export_commodities} |
|
||||
| **Imports** | {import_commodities} |
|
||||
| **Governance** | {governance_type} · {governance_body} |
|
||||
| **Atmosphere** | {atmosphere_tags} |
|
||||
| **Stability** | {stability_level} · {stability_descriptor} |
|
||||
@@ -46,34 +39,37 @@ cross_refs: [] # slugs of related entries
|
||||
---
|
||||
|
||||
## Supply Dependency
|
||||
<!-- What the system produces, what it imports, where the economic leverage lies.
|
||||
<!-- AUTHORED PROSE — preserved across regeneration.
|
||||
What the system produces, what it imports, where the economic leverage lies.
|
||||
Required for manufacturing/transit_logistics base and narrative_notable systems. -->
|
||||
|
||||
{How the system feeds itself, what it exports, what supply relationships define its
|
||||
economic position. Where the leverage points are.}
|
||||
|
||||
## Faction Notes
|
||||
<!-- Significant local factions not covered by standard columns.
|
||||
<!-- AUTHORED PROSE — significant local factions not covered by standard columns.
|
||||
Who has institutional presence, who competes, who cooperates. -->
|
||||
|
||||
{Faction presence, institutional relationships, political dynamics.}
|
||||
|
||||
## Silence Topic
|
||||
<!-- What the system does not discuss. The administered or organic silence.
|
||||
Required for narrative_notable and Institutional Core / Diplomatic Periphery zones. -->
|
||||
<!-- AUTHORED PROSE — what the system does not discuss. The administered or organic
|
||||
silence. Required for narrative_notable and Institutional Core / Diplomatic
|
||||
Periphery zones. -->
|
||||
|
||||
{The thing the system's residents, institutions, or records avoid discussing.
|
||||
What a visitor would eventually notice is never mentioned.}
|
||||
|
||||
## Narrative Hook
|
||||
<!-- Required if narrative_notable = true. One sentence that captures the
|
||||
core dramatic tension or mystery of the system. -->
|
||||
<!-- AUTHORED PROSE — required if narrative_notable = true. One sentence that
|
||||
captures the core dramatic tension or mystery of the system. -->
|
||||
|
||||
{One sentence.}
|
||||
|
||||
## Calibration Note
|
||||
<!-- Unusual column combinations requiring justification. Explains why the
|
||||
system profile data is internally consistent despite seeming contradictions. -->
|
||||
<!-- AUTHORED PROSE — unusual column combinations requiring justification. Explains
|
||||
why the system profile data is internally consistent despite seeming
|
||||
contradictions. -->
|
||||
|
||||
{Why the system profile values make sense together. Addresses apparent
|
||||
contradictions in star type, settlement wave, economic tier, topology, etc.}
|
||||
@@ -82,3 +78,23 @@ contradictions in star type, settlement wave, economic tier, topology, etc.}
|
||||
<!-- READ-ONLY — regenerated from star-map.json edges -->
|
||||
- **Hop Distance from Gateway:** {n}
|
||||
- **Adjacent Systems:** {comma-separated GJ IDs}
|
||||
|
||||
## Celestial Bodies
|
||||
<!-- READ-ONLY — generated from systems.db bodies/stations tables (atlas sync) -->
|
||||
|
||||
| Orbit | ID | Name | Type | Inhabited | Pop | Mass | Gravity | Year (d) | Day (h) | Atmo | Class | Hydro | Economy | Settlement | Industrial |
|
||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||
| {n} | `{body_id}` | {name} | {type} | {yes/no} | {pop} | {mass} | {g} | {days} | {hours} | {atmo} | {class} | {hydro} | {economy} | {settlement} | {industrial} |
|
||||
|
||||
### Stations & Facilities
|
||||
|
||||
| ID | Name | Type | Orbits | Population | Economy | Governance | Docking | Gate | Districts |
|
||||
|---|---|---|---|---|---|---|---|---|---|
|
||||
| `{station_id}` | {name} | {type} | `{body_id}` | {pop} | {economy} | {governance} | {docking} | {yes/no} | {n} |
|
||||
|
||||
## Stations GTTR
|
||||
<!-- Links to station/settlement-level Drifter's Guide prose files
|
||||
(gttr-{slug}.md, flat in the system directory). Only present when such
|
||||
guides exist for this system. -->
|
||||
|
||||
[{Location Name}](gttr-{slug}.md) · [{Location Name}](gttr-{slug}.md)
|
||||
|
||||
@@ -16,9 +16,9 @@ cross_refs: []
|
||||
How to write tagged monologue and dialogue content for The Settled Reach. Read the knowledge system docs first — this guide assumes you know what a FactId is and how RelationshipState works.
|
||||
|
||||
**Prerequisites:**
|
||||
- [Fact Catalog](../knowledge/fact-catalog.md) — 24 FactIds with confidence progressions
|
||||
- [Entity Attributes](../knowledge/entity-attributes.md) — 14 canonical EntityKnowledge keys
|
||||
- [Relationship States](../knowledge/relationship-states.md) — 5 states, transitions, dialogue access tiers
|
||||
- [Fact Catalog](../concepts/fact-catalog.md) — 24 FactIds with confidence progressions
|
||||
- [Entity Attributes](../concepts/entity-attributes.md) — 14 canonical EntityKnowledge keys
|
||||
- [Relationship States](../concepts/relationship-states.md) — 5 states, transitions, dialogue access tiers
|
||||
|
||||
**Canonical sources:** D-028 (dialogue architecture), D-032 (separate monologue pools), D-035 (tag taxonomy)
|
||||
|
||||
@@ -437,7 +437,7 @@ prerequisite:
|
||||
|
||||
Fires only if the active character knows the named fact at the specified confidence **or higher**. Confidence levels ordered: `Suspects` < `KnowsOf` < `KnowsDetails` < `Direct`.
|
||||
|
||||
Use exact FactId strings from the [Fact Catalog](../knowledge/fact-catalog.md) — `"contraband.ring_exists"` not `"Ring Exists"`. The 24 canonical FactIds are the only valid values.
|
||||
Use exact FactId strings from the [Fact Catalog](../concepts/fact-catalog.md) — `"contraband.ring_exists"` not `"Ring Exists"`. The 24 canonical FactIds are the only valid values.
|
||||
|
||||
### Gating on RelationshipState
|
||||
|
||||
@@ -831,11 +831,11 @@ Before submitting a line:
|
||||
---
|
||||
|
||||
**Cross-References:**
|
||||
- [D-028](../../../decisions/content.md#d-028-dialogue-architecture--tagged-line-pools-with-four-relational-layers): Dialogue architecture, four relational layers
|
||||
- [D-032](../../../decisions/content.md#d-032-separate-monologue-pools-per-character): Separate monologue pools per character
|
||||
- [D-035](../../../decisions/content.md#d-035-converged-tag-taxonomy-for-dialogue-and-monologue-line-pools): Converged tag taxonomy
|
||||
- [Fact Catalog](../knowledge/fact-catalog.md): All 24 FactIds for prerequisites
|
||||
- [Entity Attributes](../knowledge/entity-attributes.md): 14 canonical known_attributes keys
|
||||
- [Relationship States](../knowledge/relationship-states.md): 5 states, transitions, access tier mapping
|
||||
- [D-028](../../governance/decisions/content.md#d-028-dialogue-architecture--tagged-line-pools-with-four-relational-layers): Dialogue architecture, four relational layers
|
||||
- [D-032](../../governance/decisions/content.md#d-032-separate-monologue-pools-per-character-superseded--deferred-to-phase-6): Separate monologue pools per character
|
||||
- [D-035](../../governance/decisions/content.md#d-035-converged-tag-taxonomy-for-dialogue-and-monologue-line-pools): Converged tag taxonomy
|
||||
- [Fact Catalog](../concepts/fact-catalog.md): All 24 FactIds for prerequisites
|
||||
- [Entity Attributes](../concepts/entity-attributes.md): 14 canonical known_attributes keys
|
||||
- [Relationship States](../concepts/relationship-states.md): 5 states, transitions, access tier mapping
|
||||
|
||||
*If this guide contradicts a decision file, the decision file wins.*
|
||||
|
||||
@@ -277,7 +277,7 @@ These four keys capture the observer's subjective assessment of the target throu
|
||||
|
||||
**Usage**: Shapes the observer's moral arc and internal conflict. Monologue tone shifts when the observer assigns moral weight — guilt, justification, and rationalization are driven by this key. The Comfort-Doubt-Reckoning-Compromise arc references `moral_weight` to determine which phase the observer occupies relative to specific NPCs.
|
||||
|
||||
**Archetype note**: Both smuggler and detective use `moral_weight` with the same enum values but different criteria. The smuggler assesses complicity in the ring's operations ("how dirty are their hands?") — see [Smuggler Moral Arc](../../design/smuggler-moral-arc.md). The detective assesses culpability in the crime ("how responsible are they for the harm?"). Same scale, different lens. A smuggler might mark a debt-driven peripheral as `"compromised"` (dragged in, not choosing) while the detective marks the same NPC as `"complicit"` (they knew and did nothing).
|
||||
**Archetype note**: Both smuggler and detective use `moral_weight` with the same enum values but different criteria. The smuggler assesses complicity in the ring's operations ("how dirty are their hands?") — see [Smuggler Moral Arc](../../docs/design/smuggler-moral-arc.md). The detective assesses culpability in the crime ("how responsible are they for the harm?"). Same scale, different lens. A smuggler might mark a debt-driven peripheral as `"compromised"` (dragged in, not choosing) while the detective marks the same NPC as `"complicit"` (they knew and did nothing).
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -121,7 +121,7 @@ But also:
|
||||
- [Neural Lattice](../technology/neural-lattice.md) — The technology being modified
|
||||
- [Medical-Grade Replacements](medical-grade-replacements.md) — Secondary contraband (healthcare dimension)
|
||||
- [Severance Equipment](severance-equipment.md) — Tertiary contraband (political dimension)
|
||||
- [Fact Catalog](../knowledge/fact-catalog.md) — FactId confidence progressions
|
||||
- [Fact Catalog](../concepts/fact-catalog.md) — FactId confidence progressions
|
||||
- D-037: Contraband specification
|
||||
- D-017: Perception modes (lattice tier determines available modes)
|
||||
|
||||
|
||||
@@ -131,7 +131,7 @@ Medical-grade replacements are the smuggling ring's moral shield. When the ring
|
||||
- [Neural Lattice](../technology/neural-lattice.md) — The technology being replaced (degradation section)
|
||||
- [Lattice Components](lattice-components.md) — Primary contraband (capability dimension)
|
||||
- [Severance Equipment](severance-equipment.md) — Tertiary contraband (political dimension)
|
||||
- [Fact Catalog](../knowledge/fact-catalog.md) — `contraband.medical_grade` confidence progression
|
||||
- [Fact Catalog](../concepts/fact-catalog.md) — `contraband.medical_grade` confidence progression
|
||||
- D-037: Contraband specification (moral dimension confirmed)
|
||||
|
||||
---
|
||||
|
||||
@@ -122,7 +122,7 @@ Severance equipment is the thing that prevents the district story from being sma
|
||||
- [Severance Technology](../technology/severance-tech.md) — What the equipment does and why it matters
|
||||
- [Lattice Components](lattice-components.md) — Primary contraband (commercial dimension)
|
||||
- [Medical-Grade Replacements](medical-grade-replacements.md) — Secondary contraband (healthcare dimension)
|
||||
- [Fact Catalog](../knowledge/fact-catalog.md) — `contraband.severance_tech` confidence progression
|
||||
- [Fact Catalog](../concepts/fact-catalog.md) — `contraband.severance_tech` confidence progression
|
||||
- D-037: Contraband specification
|
||||
- D-023: Three-tier content model (contamination seed for storyteller)
|
||||
|
||||
|
||||
+167
-48
@@ -1,58 +1,177 @@
|
||||
# Corporations
|
||||
|
||||
Major commercial entities operating at civilizational scale in the Settled Reach. These are Syndic-tier organizations whose products are so fundamental to the Reach's infrastructure that they operate beyond the normal commercial register.
|
||||
Commercial entities of the Settled Reach with canonical wiki profiles — from Syndic-tier organizations whose products underpin the Reach's infrastructure down to regional producers, cooperatives, and cultural houses. Page frontmatter (slug, headquarters, scope, tags) feeds `systems.db` via `import_economics.py` (D-182: wiki is truth for corporations).
|
||||
|
||||
## Narrative Profiles
|
||||
|
||||
Thirteen corporations with established lore profiles — faction relationships, narrative histories, and canonical status. Not yet modeled in the economics simulation.
|
||||
|
||||
| Corporation | System | Product | Scale |
|
||||
|------------|--------|---------|-------|
|
||||
| [Gate Corporation](gate-corporation.md) | [Renaissance](../star-systems/GJ-251/index.md) (GJ 251) | Span gate infrastructure | Every inhabited system |
|
||||
| [Mastroianni Vehicle Group](mastroianni-vehicle-group.md) | [Nova Roma](../star-systems/GJ-764/index.md) (GJ 764) | Transit vehicles, trains, haulers | Reach-wide fleet |
|
||||
| [Prometheus Labs](prometheus-labs.md) | [Prometheus](../star-systems/GJ-702B/index.md) (GJ 702B) | Longevity hardware, implants | Every Perpetual |
|
||||
| [Adams & Ford Publishing](adams-ford-publishing.md) | [Parallax](../star-systems/GJ-280A/index.md) (GJ 280A) | The Drifter's Guide to the Reach | Every data terminal |
|
||||
| [Mercado Travessia](mercado-travessia.md) | [Travessia](../star-systems/GJ-1156/index.md) (GJ 1156) | Grocery and household goods chain | Hop 2 to hop 7 |
|
||||
| [Stalownia Kowalski](stalownia-kowalski.md) | [Nowa Huta](../star-systems/GJ-896A/index.md) (GJ 896A) | Heavy mining and construction equipment | South_reach primary, extraction sectors reach-wide |
|
||||
| [Ferreira Monteiro](ferreira-monteiro.md) | [Matamba](../star-systems/GJ-884/index.md) (GJ 884) | Trade arbitration and commercial law | South_reach primary, reach-wide precedent |
|
||||
| [Calloway Distillery](calloway-distillery.md) | [Calloway Reach](../star-systems/GJ-3325/index.md) (GJ 3325) | Single malt whisky | North reach export, cult following |
|
||||
| [thrds](thrds.md) | [Braemar](../star-systems/GJ-475/index.md) (GJ 475) | Cold-weather technical clothing | North reach and beyond |
|
||||
| [Bífröst Marmor](bifrost-marmor.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Marble quarrying and finishing | The Reach's only source; inner-corridor premium market |
|
||||
| [Nordmark Skog](nordmark-skog.md) | [Stillvakt](../star-systems/GJ-534/index.md) (GJ 534) | Timber and structural panels | West_reach corridor |
|
||||
| [Talbräu](talbrau.md) | [Brückenau](../star-systems/GJ-798/index.md) (GJ 798) | Franconian farmhouse lager | West_reach transit corridor |
|
||||
| [Vins de Grand Vide](vins-de-grand-vide.md) | [Confluent](../star-systems/GJ-395/index.md) (GJ 395) | Négociant wine cooperative; Grand Vide Classé certification and distribution | West_reach corridor; inner-corridor premium market |
|
||||
This index is generated from page frontmatter — regenerate it rather than editing the tables by hand.
|
||||
|
||||
## Tier 1 Corporations
|
||||
|
||||
Twenty-five corporations with full economics simulation profiles. These organizations actively participate in the market simulation — producing, trading, and consuming commodities. Each has a `tier1.toml` economic data file.
|
||||
Twenty-nine corporations with full economics simulation profiles ([tier1.toml](../economics/corporations/tier1.toml)). These organizations actively participate in the market simulation — producing, trading, and consuming commodities.
|
||||
|
||||
| Corporation | System | Product | Scale |
|
||||
|------------|--------|---------|-------|
|
||||
| [Groombridge Settlement House](groombridge-settlement-house.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Inter-faction financial clearing and settlement | Reach-wide |
|
||||
| [Compact Financial Exchange](compact-financial-exchange.md) | [Ostmark](../star-systems/GJ-601A/index.md) (GJ 601A) | Mark-denominated clearing, Compact currency infrastructure | Compact zone |
|
||||
| [Meridian Risk Partners](meridian-risk.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Commercial and infrastructure insurance underwriting | Reach-wide |
|
||||
| [Somatic Futures](somatic-futures.md) | [Ran](../star-systems/GJ-144/index.md) (GJ 144) | Re-embodiment procedures and longevity clinical services | South_reach primary; inner corridor nodes |
|
||||
| [The Blue Collective](the-blue-collective.md) | [Dagat](../star-systems/GJ-482A/index.md) (GJ 482A) | Deep ocean fishery, kelp cultivation, Dagat Blue dye | East_reach; reach-wide export |
|
||||
| [Hanyang Precision Systems](hanyang-precision.md) | [Changwon](../star-systems/GJ-860B/index.md) (GJ 860B) | Precision navigation and gate calibration instruments | East_reach and reach-wide |
|
||||
| [Jeonnam Old Table Cooperative](jeonnam-old-table.md) | [Changwon](../star-systems/GJ-860B/index.md) (GJ 860B) | Fermented foods and specialty agricultural products | East_reach; reach-wide export |
|
||||
| [The Registry](the-registry.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Commercial intelligence, corporate history, due diligence | Reach-wide |
|
||||
| [Westmark Distribution](westmark-distribution.md) | [Ostmark](../star-systems/GJ-601A/index.md) (GJ 601A) | Compact bulk freight and distribution logistics | Compact zone |
|
||||
| [Kallast Agrosyndic](kallast-agrosyndic.md) | [Ran](../star-systems/GJ-144/index.md) (GJ 144) | Industrial-scale grain and staple crop production | South_reach and inner corridor |
|
||||
| [Baektu Mining Alliance](baektu-mining-alliance.md) | [Zenzele](../star-systems/GJ-1111/index.md) (GJ 1111) | Belt mining, metallic ores and refined metals | South_reach belt operations |
|
||||
| [Rare Vein Survey](rare-vein-survey.md) | [Parallax](../star-systems/GJ-280A/index.md) (GJ 280A) | Deep rock survey, mineral deposit prospecting | Reach-wide survey operations |
|
||||
| [Cygni Combines](cygni-combines.md) | [Cygni B](../star-systems/GJ-820B/index.md) (GJ 820B) | Electronics manufacturing, industrial components | East_reach primary; reach-wide |
|
||||
| [Lagrange Fuel Systems](lagrange-fuel-systems.md) | [GJ 445](../star-systems/GJ-445/index.md) (GJ 445) | Ice comet harvesting, fusion fuel supply | Inner corridor |
|
||||
| [Société Chimique du Vide](societe-chimique.md) | [Confluent](../star-systems/GJ-395/index.md) (GJ 395) | Industrial chemicals, pharmaceutical precursors | West_reach primary; reach-wide |
|
||||
| [Salud Alliance](salud-alliance.md) | [Matamba](../star-systems/GJ-884/index.md) (GJ 884) | Pharmaceutical distribution and formulary management | South_reach; reach-wide distribution |
|
||||
| [Sato Medical Systems](sato-medical.md) | [Shimanami](../star-systems/GJ-848/index.md) (GJ 848) | Specialist medical devices and diagnostics | East_reach; export to inner corridor |
|
||||
| [Sova Station Works](sova-station-works.md) | [Sova](../star-systems/GJ-280B/index.md) (GJ 280B) | Station module fabrication and habitat construction | Reach-wide |
|
||||
| [Trans-Reach Rail](trans-reach-rail.md) | [Gateway](../star-systems/GJ-244A/index.md) (GJ 244A) | Railway infrastructure engineering, vacuum transit | Inner corridor and reach-wide |
|
||||
| [Takamori Lattice Works](takamori-lattice-works.md) | [Dài Lộ](../star-systems/GJ-136/index.md) (GJ 136) | FTL drive components, lattice engineering | East_reach; reach-wide export |
|
||||
| [Thalassa Resort Group](thalassa-resort-group.md) | [Gateway](../star-systems/GJ-244A/index.md) (GJ 244A) | Premium hospitality, transit hotels, fine dining | Gateway and major junction nodes |
|
||||
| [Kovalev Freight Lines](kovalev-freight.md) | [Prometheus](../star-systems/GJ-702B/index.md) (GJ 702B) | Perishable freight, cold chain logistics | Reach-wide |
|
||||
| [Umoja Freight](umoja-freight.md) | [Zenzele](../star-systems/GJ-1111/index.md) (GJ 1111) | Bulk freight, ore and metals distribution | South_reach; core corridor secondary |
|
||||
| [Westphalia Heavy Works](westphalia-heavy-works.md) | [Ostmark](../star-systems/GJ-601A/index.md) (GJ 601A) | Heavy mining and extraction equipment | Compact zone; west_reach |
|
||||
| [Matahari Consumer Goods](matahari-consumer-goods.md) | [Confluência](../star-systems/GJ-566B/index.md) (GJ 566B) | Household goods, textiles, consumer essentials | South_reach; inner corridor |
|
||||
| Corporation | Headquarters | Type |
|
||||
|------------|--------------|------|
|
||||
| [Baektu Mining Alliance](baektu-mining-alliance.md) | [Isivikelo](../star-systems/GJ-1111/index.md) (GJ 1111) | Asteroid Belt Mining and Ore Processing |
|
||||
| [Bífröst Marmor](bifrost-marmor.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Marble quarrying and finishing |
|
||||
| [Calloway Distillery](calloway-distillery.md) | [Calloway Reach](../star-systems/GJ-3325/index.md) (GJ 3325) | Agricultural / Collective (Distillers' Council) |
|
||||
| [Compact Financial Exchange](compact-financial-exchange.md) | [Rand](../star-systems/GJ-601A/index.md) (GJ 601A) | Commercial Clearing and Settlement (Compact Zone) |
|
||||
| [Cygni Combines](cygni-combines.md) | [Cygni B](../star-systems/GJ-820B/index.md) (GJ 820B) | Electronics and Advanced Materials Manufacturing |
|
||||
| [Groombridge Settlement House](groombridge-settlement-house.md) | [Lendel](../star-systems/GJ-380/index.md) (GJ 380) | Interstellar Financial Clearing |
|
||||
| [Hanyang Precision Systems](hanyang-precision.md) | [Changwon](../star-systems/GJ-860B/index.md) (GJ 860B) | Precision Instrument Manufacturing |
|
||||
| [Jeonnam Old Table Cooperative](jeonnam-old-table.md) | [Changwon](../star-systems/GJ-860B/index.md) (GJ 860B) | Traditional Fermentation and Organic Products |
|
||||
| [Kallast Agrosyndic](kallast-agrosyndic.md) | [Kallast](../star-systems/GJ-144/index.md) (GJ 144) | Agricultural Production and Grain Trade |
|
||||
| [Kovalev Freight Lines](kovalev-freight.md) | [Prometheus](../star-systems/GJ-702B/index.md) (GJ 702B) | Specialized Perishable Freight and Cold Chain Logistics |
|
||||
| [Lagrange Fuel Systems](lagrange-fuel-systems.md) | [Lagrange Station](../star-systems/GJ-445/index.md) (GJ 445) | Ice Harvesting, Water Supply, and Fusion Fuel Refinement |
|
||||
| [Matahari Consumer Goods](matahari-consumer-goods.md) | [Confluência](../star-systems/GJ-566B/index.md) (GJ 566B) | Consumer Products Manufacturing and Distribution |
|
||||
| [Meridian Risk Partners](meridian-risk.md) | [Lendel](../star-systems/GJ-380/index.md) (GJ 380) | Insurance Underwriting and Reinsurance |
|
||||
| [Rare Vein Survey](rare-vein-survey.md) | [Parallax](../star-systems/GJ-280A/index.md) (GJ 280A) | Rare Minerals Survey and Specialist Extraction |
|
||||
| [Salud Alliance](salud-alliance.md) | [Matamba](../star-systems/GJ-884/index.md) (GJ 884) | Medical Goods Distribution and Supply Chain Management |
|
||||
| [Sato Medical Systems](sato-medical.md) | [Oshima](../star-systems/GJ-848/index.md) (GJ 848) | Medical Goods Manufacturing and East Reach Distribution |
|
||||
| [Société Chimique du Vide](societe-chimique.md) | [Confluent](../star-systems/GJ-395/index.md) (GJ 395) | Industrial Chemicals and Chemical Feedstock Production |
|
||||
| [Somatic Futures](somatic-futures.md) | [Kallast](../star-systems/GJ-144/index.md) (GJ 144) | Licensed Re-embodiment and Longevity Services |
|
||||
| [Sova Station Works](sova-station-works.md) | [Sova](../star-systems/GJ-280B/index.md) (GJ 280B) | Habitat Module Fabrication and Station Construction |
|
||||
| [Takamori Lattice Works](takamori-lattice-works.md) | [Hải Cảng](../star-systems/GJ-136/index.md) (GJ 136) | Lattice Substrate and Drive Core Manufacturing |
|
||||
| [Thalassa Resort Group](thalassa-resort-group.md) | [Gateway](../star-systems/GJ-244A/index.md) (GJ 244A) | Premium Hospitality and Luxury Services |
|
||||
| [The Blue Collective](the-blue-collective.md) | [Dagat](../star-systems/GJ-482A/index.md) (GJ 482A) | Marine Agriculture and Natural Dye Production |
|
||||
| [The Registry](the-registry.md) | [Lendel](../star-systems/GJ-380/index.md) (GJ 380) | Commercial Intelligence and Information Services |
|
||||
| [thrds](thrds.md) | [Braemar](../star-systems/GJ-475/index.md) (GJ 475) | Textile / Design Cooperative |
|
||||
| [Trans-Reach Rail](trans-reach-rail.md) | [Gateway](../star-systems/GJ-244A/index.md) (GJ 244A) | Planetary Rail Infrastructure and Transit Systems |
|
||||
| [Umoja Freight](umoja-freight.md) | [Zenzele Horizon](../star-systems/GJ-1111/index.md) (GJ 1111) | Bulk Freight and Materials Distribution |
|
||||
| [Vins de Grand Vide](vins-de-grand-vide.md) | [Confluent](../star-systems/GJ-395/index.md) (GJ 395) | Agricultural / Distribution Cooperative |
|
||||
| [Westmark Distribution](westmark-distribution.md) | [Rand](../star-systems/GJ-601A/index.md) (GJ 601A) | Compact Zone Freight and Distribution |
|
||||
| [Westphalia Heavy Works](westphalia-heavy-works.md) | [Rand](../star-systems/GJ-601A/index.md) (GJ 601A) | Heavy Equipment Fabrication and Industrial Machinery |
|
||||
|
||||
## Narrative Profiles
|
||||
|
||||
126 corporations with established lore profiles — faction relationships, narrative histories, and canonical status. Not modeled in the economics simulation. (Tier-2 simulation corps live in [economics/corporations/tier2/](../economics/corporations/tier2/) and have no wiki pages.)
|
||||
|
||||
| Corporation | Headquarters | Type |
|
||||
|------------|--------------|------|
|
||||
| [Adams & Ford Publishing Syndicate](adams-ford-publishing.md) | [Parallax](../star-systems/GJ-280A/index.md) (GJ 280A) | Independent Media Syndicate |
|
||||
| [Alcazar Hospitality](alcazar-hospitality.md) | [Altair](../star-systems/GJ-768/index.md) (GJ 768) | Premium Hospitality Group |
|
||||
| [Alcyone Tech](alcyone-tech.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Precision Technology Manufacturer |
|
||||
| [Aldgate Trust](aldgate-trust.md) | [Crown's Hollow](../star-systems/GJ-661A/index.md) (GJ 661A) | Fiduciary Services / Estate Management |
|
||||
| [Alentejo Partners](alentejo-partners.md) | [Caparica](../star-systems/GJ-1002/index.md) (GJ 1002) | Agricultural Aggregator and Export Cooperative |
|
||||
| [Algarve Botanics](algarve-botanics.md) | [Inhambane](../star-systems/GJ-54/index.md) (GJ 54) | Botanical Spirit and Extract Producer |
|
||||
| [Arbour Aggregates](arbour-aggregates.md) | [Arbour](../star-systems/GJ-338B/index.md) (GJ 338B) | Stone and Timber Extraction Cooperative |
|
||||
| [Arclamp](arclamp.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Furniture and Interior Design Manufacturer |
|
||||
| [Ashwick Broadcasting](ashwick-broadcasting.md) | [Ashfield](../star-systems/GJ-178/index.md) (GJ 178) | Documentary and Cultural Broadcasting |
|
||||
| [Atrium Culture](atrium-culture.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Arts Foundation and Cultural Institution |
|
||||
| [Baia Fundo Productions](baia-fundo-productions.md) | [Confluência](../star-systems/GJ-566B/index.md) (GJ 566B) | Documentary and Dramatic Content Studio |
|
||||
| [Bavarian Craft](bavarian-craft.md) | [Bergtor](../star-systems/GJ-505A/index.md) (GJ 505A) | Heritage Woodcraft and Artisan Manufacturing |
|
||||
| [Bergkraft Antriebswerke](bergkraft-antriebswerke.md) | [Bergtor](../star-systems/GJ-505A/index.md) (GJ 505A) | Precision Drive and Propulsion Systems Manufacturer |
|
||||
| [Brindlewood Honey](brindlewood-honey.md) | [Ashfield](../star-systems/GJ-178/index.md) (GJ 178) | Regional Specialty Producer |
|
||||
| [Byeolbit Entertainment](byeolbit-entertainment.md) | [Seongho](../star-systems/GJ-660A/index.md) (GJ 660A) | Drama, Music, and Entertainment Production |
|
||||
| [Calloway Workshop](calloway-workshop.md) | [Calloway Reach](../star-systems/GJ-3325/index.md) (GJ 3325) | Furniture and Object Design |
|
||||
| [Calluna Wellness](calluna-wellness.md) | [Cairn](../star-systems/GJ-845/index.md) (GJ 845) | Extended Recovery and Lattice Adjustment Service |
|
||||
| [Cape Modern](cape-modern.md) | [Kaapse Baai](../star-systems/GJ-213/index.md) (GJ 213) | Contemporary Furniture and Interior Design Manufacturer |
|
||||
| [Commonstock Foods](commonstock-foods.md) | [Sirius](../star-systems/GJ-244A/index.md) (GJ 244A) | Consumer Food Manufacturer |
|
||||
| [Comptoir Lendel](comptoir-lendel.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Luxury Food and Specialty Goods Trading House |
|
||||
| [Coriolis Exchange](coriolis-exchange.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Multi-Currency Settlement and Exchange Service |
|
||||
| [Dalbit Systems](dalbit-systems.md) | [Seongho](../star-systems/GJ-660A/index.md) (GJ 660A) | Precision Electronics and Navigation Systems Manufacturer |
|
||||
| [Destilaria Confluencia](destilaria-confluencia.md) | [Confluência](../star-systems/GJ-566B/index.md) (GJ 566B) | Artisanal Spirit Producer |
|
||||
| [Durban Engineering](durban-engineering.md) | [Isibaya](../star-systems/GJ-905/index.md) (GJ 905) | Structural Monitoring and Environmental Sensing Systems |
|
||||
| [Earth Standard Group](earth-standard-group.md) | [Earth](../star-systems/GJ-0/index.md) (GJ 0) | Heavy Industry and Materials |
|
||||
| [Eastbay Trading](eastbay-trading.md) | [Bridgepoint](../star-systems/GJ-53A/index.md) (GJ 53A) | Consumer Goods Distributor and Transit Hub Importer |
|
||||
| [Endymion Instruments](endymion-instruments.md) | [The Narrows](../star-systems/GJ-875/index.md) (GJ 875) | Precision Survey and Navigation Instruments |
|
||||
| [Erzgebirge Instruments](erzgebirge-instruments.md) | [Eisentor](../star-systems/GJ-3454/index.md) (GJ 3454) | Precision Metrology and Calibration Standards |
|
||||
| [Ferreira Monteiro](ferreira-monteiro.md) | [Matamba](../star-systems/GJ-884/index.md) (GJ 884) | Commercial Law and Trade Arbitration |
|
||||
| [Fieldborn Grain](fieldborn-grain.md) | [Calloway Reach](../star-systems/GJ-3325/index.md) (GJ 3325) | Agricultural Grain Producer and Distributor |
|
||||
| [Fjeldtone Music](fjeldtone-music.md) | [Halvøy](../star-systems/GJ-624/index.md) (GJ 624) | Music Label and Catalogue Publisher |
|
||||
| [Graben Studio](graben-studio.md) | [Freiholt](../star-systems/GJ-453/index.md) (GJ 453) | Film and Immersive Media Production Studio |
|
||||
| [Grampian Systems](grampian-systems.md) | [Calloway Reach](../star-systems/GJ-3325/index.md) (GJ 3325) | Precision Systems and Environmental Monitoring Manufacturer |
|
||||
| [Gridsupply Electronics](gridsupply-electronics.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Commodity Electronics Manufacturer |
|
||||
| [Gronnmark Consumer](gronnmark-consumer.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Volume Consumer Goods Manufacturer |
|
||||
| [Groot Karoo Cellars](groot-karoo-cellars.md) | [Karoo](../star-systems/GJ-222A/index.md) (GJ 222A) | Fortified Wine and Brandy Cooperative |
|
||||
| [Haesungdan Records](haesungdan-records.md) | [Miryang](../star-systems/GJ-754/index.md) (GJ 754) | Vocal Arts Label |
|
||||
| [Hakone Hospitality](hakone-hospitality.md) | [Matsue](../star-systems/GJ-687/index.md) (GJ 687) | Thermal and Restorative Hospitality Group |
|
||||
| [Hana Creative](hana-creative.md) | [Jinghu](../star-systems/GJ-445/index.md) (GJ 445) | Visual Design and Cultural Media Studio |
|
||||
| [Hangang Studio](hangang-studio.md) | [Songjiang](../star-systems/GJ-625/index.md) (GJ 625) | Media Platform and Archive Catalogue Service |
|
||||
| [Hangil Celadon](hangil-celadon.md) | [Miryang](../star-systems/GJ-754/index.md) (GJ 754) | Traditional Celadon Pottery Manufacturer |
|
||||
| [Hartsteen Legal](hartsteen-legal.md) | [Confluent](../star-systems/GJ-395/index.md) (GJ 395) | Commercial Law Firm |
|
||||
| [Higashiyama Vehicle](higashiyama-vehicle.md) | [Kurashiki](../star-systems/GJ-205/index.md) (GJ 205) | Surface and Atmospheric Vehicle Manufacturer |
|
||||
| [Highland Cooperative](highland-cooperative.md) | [Crown's Hollow](../star-systems/GJ-661A/index.md) (GJ 661A) | Specialty Agricultural Cooperative |
|
||||
| [Iberian Standard Foods](iberian-standard-foods.md) | [Caparica](../star-systems/GJ-1002/index.md) (GJ 1002) | Consumer Goods Manufacturer |
|
||||
| [Incheon Salt](incheon-salt.md) | [Changwon](../star-systems/GJ-860B/index.md) (GJ 860B) | Regional Specialty Producer |
|
||||
| [Ironbark Films](ironbark-films.md) | [Fremantle](../star-systems/GJ-273/index.md) (GJ 273) | Cultural Content Producer |
|
||||
| [Iznik Atelier](iznik-atelier.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Heritage Craft Manufacturer |
|
||||
| [Jeju Lattice](jeju-lattice.md) | [Yeongwol](../star-systems/GJ-268/index.md) (GJ 268) | Precision Technology Manufacturer |
|
||||
| [Kaapse Baai Wines](kaapse-baai-wines.md) | [Kaapse Baai](../star-systems/GJ-213/index.md) (GJ 213) | Estate Wine Producer and Appellation Authority |
|
||||
| [Kalahari Leatherworks](kalahari-leatherworks.md) | [Karoo](../star-systems/GJ-222A/index.md) (GJ 222A) | Heritage Craft Manufacturer |
|
||||
| [Kaur Observatory Equipment](kaur-observatory-equipment.md) | [Kaur's Observatory](../star-systems/GJ-432A/index.md) (GJ 432A) | Scientific Observation and Survey Instrumentation |
|
||||
| [Kellervolk](kellervolk.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Cultural Content Producer |
|
||||
| [Kinlochewe Instruments](kinlochewe-instruments.md) | [Braemar](../star-systems/GJ-475/index.md) (GJ 475) | Precision Technology Manufacturer |
|
||||
| [Koryo Standard](koryo-standard.md) | [Jeonnam](../star-systems/GJ-3728B/index.md) (GJ 3728B) | Consumer Goods Manufacturer |
|
||||
| [Kumho Navigation](kumho-navigation.md) | [Hwaseong](../star-systems/GJ-1125/index.md) (GJ 1125) | Precision Technology Manufacturer |
|
||||
| [Kyoei Design](kyoei-design.md) | [Kurashiki](../star-systems/GJ-205/index.md) (GJ 205) | Design and Furniture Manufacturer |
|
||||
| [Kyoto Valley Estates](kyoto-valley-estates.md) | [Kurashiki](../star-systems/GJ-205/index.md) (GJ 205) | Regional Specialty Producer |
|
||||
| [Leerfeld Records](leerfeld-records.md) | [Confluent](../star-systems/GJ-395/index.md) (GJ 395) | Compositional Music Label |
|
||||
| [Lowlands Consumer](lowlands-consumer.md) | [Dokkum](../star-systems/GJ-506/index.md) (GJ 506) | Consumer Goods Manufacturer |
|
||||
| [Luanda Fabrication](luanda-fabrication.md) | [Matamba](../star-systems/GJ-884/index.md) (GJ 884) | Precision Substrate and Custom Electronics Assembly |
|
||||
| [Lusaka Advisory](lusaka-advisory.md) | [Zenzele](../star-systems/GJ-1111/index.md) (GJ 1111) | Commercial Strategy and Advisory Firm |
|
||||
| [Lusitanian Glass](lusitanian-glass.md) | [Caparica](../star-systems/GJ-1002/index.md) (GJ 1002) | Heritage Craft Manufacturer |
|
||||
| [Maas Rijn Entertainment](maas-rijn-entertainment.md) | [Dokkum](../star-systems/GJ-506/index.md) (GJ 506) | Cultural Content Producer |
|
||||
| [Maison Cinq](maison-cinq.md) | [Sirius](../star-systems/GJ-244A/index.md) (GJ 244A) | Luxury Design and Institutional Interiors |
|
||||
| [Makuti Consumer](makuti-consumer.md) | [Mwangaza](../star-systems/GJ-693/index.md) (GJ 693) | Consumer Goods Manufacturer |
|
||||
| [Mastroianni Vehicle Group](mastroianni-vehicle-group.md) | [Nova Roma](../star-systems/GJ-764/index.md) (GJ 764) | Industrial Manufacturing |
|
||||
| [Matosinhos Fishing](matosinhos-fishing.md) | [Velha Guarda](../star-systems/GJ-4A/index.md) (GJ 4A) | Seafood Producer and Processor |
|
||||
| [Mercado Travessia](mercado-travessia.md) | [Travessia](../star-systems/GJ-1156/index.md) (GJ 1156) | Retail Distribution |
|
||||
| [Meridional Banking](meridional-banking.md) | [Meridian](../star-systems/GJ-674/index.md) (GJ 674) | Financial Institution |
|
||||
| [Meridional Technical](meridional-technical.md) | [Meridian](../star-systems/GJ-674/index.md) (GJ 674) | Precision Technology Manufacturer |
|
||||
| [Mirai Entertainment](mirai-entertainment.md) | [Kurashiki](../star-systems/GJ-205/index.md) (GJ 205) | Cultural Content Producer |
|
||||
| [Moorfield Records](moorfield-records.md) | [Braemar](../star-systems/GJ-475/index.md) (GJ 475) | Folk and Working Tradition Label |
|
||||
| [Mwanga Media](mwanga-media.md) | [Mwangaza](../star-systems/GJ-693/index.md) (GJ 693) | Cultural Content Producer |
|
||||
| [Namsan Collective](namsan-collective.md) | [Yeongwol](../star-systems/GJ-268/index.md) (GJ 268) | Cultural Content Producer |
|
||||
| [Nexus Way Express](nexus-way-express.md) | [Sirius](../star-systems/GJ-244A/index.md) (GJ 244A) | Premium Logistics and Transit Services |
|
||||
| [Nordhavn Financial](nordhavn-financial.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Commercial Financial Institution |
|
||||
| [Nordmark Skog](nordmark-skog.md) | [Stillvakt](../star-systems/GJ-534/index.md) (GJ 534) | Forestry and timber products |
|
||||
| [Nordschatten Records](nordschatten-records.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Experimental Music Label |
|
||||
| [Norrland Woodcraft](norrland-woodcraft.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Heritage Craft Manufacturer |
|
||||
| [Ondori Interactive](ondori-interactive.md) | [Jeonnam](../star-systems/GJ-3728B/index.md) (GJ 3728B) | Cultural Content Producer |
|
||||
| [Open Corridor Stream](open-corridor-stream.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Media Platform and Catalogue Service |
|
||||
| [Orkney Ceramics](orkney-ceramics.md) | [Cairn](../star-systems/GJ-845/index.md) (GJ 845) | Heritage Craft Manufacturer |
|
||||
| [Pembrokeshire Smithy](pembrokeshire-smithy.md) | [Pemberton](../star-systems/GJ-194B/index.md) (GJ 194B) | Heritage Craft Manufacturer |
|
||||
| [Plainfield Agricultural](plainfield-agricultural.md) | [Fremantle](../star-systems/GJ-273/index.md) (GJ 273) | Consumer Goods Manufacturer (Agricultural) |
|
||||
| [Porto Alegre Technical](porto-alegre-technical.md) | [Nowa Huta](../star-systems/GJ-896A/index.md) (GJ 896A) | Precision Technology Manufacturer |
|
||||
| [Prometheus Labs](prometheus-labs.md) | [Prometheus](../star-systems/GJ-702B/index.md) (GJ 702B) | Biotechnology / Longevity Infrastructure |
|
||||
| [Quebrada Cultural](quebrada-cultural.md) | [Matamba](../star-systems/GJ-884/index.md) (GJ 884) | Cultural Content Producer |
|
||||
| [Reach Archive Standard](reach-archive-standard.md) | [Sirius](../star-systems/GJ-244A/index.md) (GJ 244A) | Media Platform and Catalogue Service (Archival) |
|
||||
| [Reach Standard Media](reach-standard-media.md) | [Sirius](../star-systems/GJ-244A/index.md) (GJ 244A) | Cultural Content Producer (News and Editorial) |
|
||||
| [Reach Transport](reach-transport.md) | [Sirius](../star-systems/GJ-244A/index.md) (GJ 244A) | Branded Freight and Parcel Delivery Service |
|
||||
| [Resonance Premium](resonance-premium.md) | [Sirius](../star-systems/GJ-244A/index.md) (GJ 244A) | Media Platform and Catalogue Service (Premium Curated) |
|
||||
| [Rheingold Distillers](rheingold-distillers.md) | [Rødvik](../star-systems/GJ-581/index.md) (GJ 581) | Regional Specialty Producer (Spirits) |
|
||||
| [Rheintal Systems](rheintal-systems.md) | [Neustadt](../star-systems/GJ-526/index.md) (GJ 526) | Precision Technology Manufacturer (Industrial Sensors) |
|
||||
| [Rijdbaar](rijdbaar.md) | [Confluent](../star-systems/GJ-395/index.md) (GJ 395) | Design and Furniture Manufacturer |
|
||||
| [Rush Mining](rush-mining.md) | [Rush](../star-systems/GJ-725B/index.md) (GJ 725B) | Multi-Resource Extraction |
|
||||
| [Saigon Consulting](saigon-consulting.md) | [Binh Trang](../star-systems/GJ-17/index.md) (GJ 17) | Logistics and Operational Efficiency Consultancy |
|
||||
| [Scapa Flow Industries](scapa-flow-industries.md) | [Quaterna](../star-systems/GJ-570A/index.md) (GJ 570A) | Industrial Manufacturing and Fuel Bunkering |
|
||||
| [Schwarzwald Gin](schwarzwald-gin.md) | [Dunkelholz](../star-systems/GJ-615/index.md) (GJ 615) | Regional Specialty Producer (Spirits) |
|
||||
| [Sede Chemical Works](sede-chemical-works.md) | [Sede](../star-systems/GJ-559B/index.md) (GJ 559B) | Chemical Feedstock Processing and Synthesis |
|
||||
| [Sendai Forge](sendai-forge.md) | [Kurashiki](../star-systems/GJ-205/index.md) (GJ 205) | Heritage Craft Manufacturer (Bladed and Precision Tools) |
|
||||
| [Sertanejo Design](sertanejo-design.md) | [Roça Nova](../star-systems/GJ-67/index.md) (GJ 67) | Design and Furniture Manufacturer (Interior and Spatial) |
|
||||
| [Shetland Wool](shetland-wool.md) | [Crown's Hollow](../star-systems/GJ-661A/index.md) (GJ 661A) | Heritage Craft Manufacturer (Natural Fiber Textiles) |
|
||||
| [Spitsbergen Retreat](spitsbergen-retreat.md) | [Halvøy](../star-systems/GJ-624/index.md) (GJ 624) | Extreme-Isolation Hospitality |
|
||||
| [Stalownia Kowalski](stalownia-kowalski.md) | [Nowa Huta](../star-systems/GJ-896A/index.md) (GJ 896A) | Heavy Industrial Manufacturing |
|
||||
| [Steinbach Furniture](steinbach-furniture.md) | [Steinfeld](../star-systems/GJ-454/index.md) (GJ 454) | Design and Furniture Manufacturer (Modular Systems) |
|
||||
| [Sunderland Precision](sunderland-precision.md) | [Ashworth Junction](../star-systems/GJ-873/index.md) (GJ 873) | Precision Technology Manufacturer (Environmental Sensors) |
|
||||
| [Sungshin Music](sungshin-music.md) | [Shimanami](../star-systems/GJ-848/index.md) (GJ 848) | Cultural Content Producer (Music Publishing and Recording) |
|
||||
| [Svanevann Waters](svanevann-waters.md) | [Nyrheim](../star-systems/GJ-3737/index.md) (GJ 3737) | Regional Specialty Producer (Mineral Water) |
|
||||
| [Talbräu](talbrau.md) | [Brückenau](../star-systems/GJ-798/index.md) (GJ 798) | Brewing cooperative |
|
||||
| [The Gate Corporation](gate-corporation.md) | [Renaissance](../star-systems/GJ-251/index.md) (GJ 251) | Infrastructure Monopoly |
|
||||
| [Thorngate Media](thorngate-media.md) | [Crown's Hollow](../star-systems/GJ-661A/index.md) (GJ 661A) | Cultural Content Producer (Documentary and Investigative Journalism) |
|
||||
| [Threshold Fuel Syndicate](threshold-fuel-syndicate.md) | [Threshold](../star-systems/GJ-71/index.md) (GJ 71) | Ice Harvesting and Fusion Fuel Refinery |
|
||||
| [Tongyeong Drive](tongyeong-drive.md) | [Miryang](../star-systems/GJ-754/index.md) (GJ 754) | Precision Technology Manufacturer (Vessel Drive and Navigation Systems) |
|
||||
| [Transit Library](transit-library.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Media Platform and Catalogue Service (Lending and Public Access) |
|
||||
| [Trek Standard](trek-standard.md) | [Groombridge](../star-systems/GJ-380/index.md) (GJ 380) | Consumer Goods Manufacturer; Certification Body Operator |
|
||||
| [Veldfontein Botanical](veldfontein-botanical.md) | [Inhambane](../star-systems/GJ-54/index.md) (GJ 54) | Regional Specialty Producer (Botanical Extracts) |
|
||||
| [Vlaams Atelier](vlaams-atelier.md) | [Bestevaer](../star-systems/GJ-103/index.md) (GJ 103) | Design and Furniture Manufacturer; Interior Design Practice |
|
||||
| [Vlaanderen Optica](vlaanderen-optica.md) | [Dokkum](../star-systems/GJ-506/index.md) (GJ 506) | Precision Optical Instrument Manufacturer |
|
||||
| [Vuma Sound](vuma-sound.md) | [Matamba](../star-systems/GJ-884/index.md) (GJ 884) | Collaborative Music House |
|
||||
| [Westfield Common](westfield-common.md) | [Neustadt](../star-systems/GJ-526/index.md) (GJ 526) | Consumer Goods Brand Aggregator |
|
||||
| [Wolkenbruch Cinema](wolkenbruch-cinema.md) | [Neustadt](../star-systems/GJ-526/index.md) (GJ 526) | Cultural Film Production |
|
||||
| [Workshift Apparel](workshift-apparel.md) | [Ashfield](../star-systems/GJ-178/index.md) (GJ 178) | Industrial and Agricultural Workwear Manufacturer |
|
||||
| [Xing Yun Films](xing-yun-films.md) | [Songjiang](../star-systems/GJ-625/index.md) (GJ 625) | Film Production Studio |
|
||||
| [Zindua Records](zindua-records.md) | [Zenzele](../star-systems/GJ-1111/index.md) (GJ 1111) | Independent Music Label |
|
||||
| [Zulu Consumer](zulu-consumer.md) | [Zenzele](../star-systems/GJ-1111/index.md) (GJ 1111) | Household Consumer Goods Manufacturer |
|
||||
|
||||
## Key Relationships
|
||||
|
||||
|
||||
@@ -108,7 +108,7 @@ For the wider game, Stalownia represents a particular kind of reach: not the tra
|
||||
- [Nowa Huta](../star-systems/GJ-896A/index.md) — Headquarters; founding system
|
||||
- [Gate Corporation](gate-corporation.md) — Complementary infrastructure; Stalownia builds what Gate Corporation connects
|
||||
- [Mastroianni Vehicle Group](mastroianni-vehicle-group.md) — Adjacent product territory; mobile vs. fixed equipment boundary
|
||||
- [Cygni B Combines](../factions/cygni-b-combines.md) — Construction scope overlap; regional separation manages competition
|
||||
- [Cygni Combines](cygni-combines.md) — Construction scope overlap; regional separation manages competition
|
||||
- [Kraków Junction](../star-systems/GJ-1116B/index.md) — Adjacent system; primary logistics corridor for equipment shipment
|
||||
|
||||
---
|
||||
|
||||
+3
-2
@@ -9,7 +9,8 @@
|
||||
|
||||
### World
|
||||
|
||||
- **[Star Systems](star-systems/index.md)** — 301 systems connected by alien-built horizon gates. 10 fully written, 10 named.
|
||||
- **[Star Systems](star-systems/index.md)** — 301 systems connected by alien-built horizon gates. 220 named, 301 with full prose pages.
|
||||
- **[Economics](economics/)** — Generator source of truth: commodity catalog, production chains, currency zones, system specializations, architecture traits (TOML) plus prose docs. Schema spec: [schema.md](economics/schema.md).
|
||||
- **[Factions](factions/index.md)** — Political and institutional factions (Assembly, Commission, Institute, Syndics, Guardians, Unbound).
|
||||
- **[Corporations](corporations/index.md)** — Civilizational-scale commercial entities (Gate Corporation, MVG, Prometheus Labs).
|
||||
- **[Technology](technology/index.md)** — Neural lattice, gate infrastructure, clone transfer, severance tech.
|
||||
@@ -29,7 +30,7 @@
|
||||
|
||||
1. **Content creators:** Source material for dialogue, monologue, NPC profiles. Entries marked `canonical` are setting truth.
|
||||
2. **System implementers:** Mechanical integration points — knowledge graph flags, perception modes, faction mechanics.
|
||||
3. **Everyone:** Cross-reference between decisions (`decisions/*.md`) and implementation.
|
||||
3. **Everyone:** Cross-reference between decisions (`governance/decisions/*.md`) and implementation.
|
||||
|
||||
**Status levels:** `canonical` (confirmed), `draft` (in review), `proposed` (under consideration).
|
||||
|
||||
|
||||
@@ -45,6 +45,4 @@ Barren moon.
|
||||
|
||||
## Visual
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
@@ -48,6 +48,4 @@ Temperate planet.
|
||||
|
||||
## Visual
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
@@ -48,6 +48,4 @@ Arid planet.
|
||||
|
||||
## Visual
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
@@ -45,6 +45,4 @@ Frozen moon.
|
||||
|
||||
## Visual
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Cold Arid planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Cold Arid planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Cold Arid planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Hot Arid planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Hot Arid planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Cold Arid planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -50,8 +50,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Barren moon.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
@@ -47,8 +47,6 @@ Frozen planet.
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Profile
|
||||
|
||||
| | |
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user