feat(content): author 124 notable brand corps across 8 categories (#828)
Adds brands.toml with 124 brand_products entries (plus halo/volume pairs and brand_inputs) covering all 8 D-189 categories: terroir, heritage_craft, tech_premium, cultural, service_premium, commodity_branded, design_heritage, platform_catalogue. Includes 112 new wiki/corporations stub pages for FK integrity. Brand layer validation V-B01–V-B06 passes; Phase 2 coverage gate failures are pre-existing raw-commodity gaps (out of scope for #828). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -336,7 +336,8 @@ This domain covers: currency system, commodity taxonomy, shadow economy, corpora
|
||||
- Queryable content: `brand_products JOIN corp_presence` filtered by location and `product_subcategory`; sub-millisecond at 10K+ rows — primary use case alongside economic simulation
|
||||
|
||||
**5. DB Schema**
|
||||
- `brand_products`: `brand_product_id`, `corp_id`, `product_name`, `brand_category` (8 values), `value_trajectory`, `scarcity_class` (`capped` / `constrained` / `scalable` / `unlimited`), `product_subcategory`, `base_premium_multiplier`, `premium_floor`, `origin_system`, `terroir_locked`, `currency_denomination`, `shadow_viable`, `brand_tier` (`halo` / `volume`), `halo_brand_id` (for volume tiers)
|
||||
- `brand_products`: `brand_product_id`, `corp_id`, `product_name`, `brand_category` (8 values), `value_trajectory`, `scarcity_class` (`capped` / `constrained` / `scalable` / `unlimited`), `product_subcategory`, `base_premium_multiplier`, `premium_floor`, `origin_system`, `terroir_locked`, `currency_denomination`, `shadow_viable`, `brand_tier` (`halo` / `volume`), `halo_brand_id` (for volume tiers), `price_tier` (enum — see below)
|
||||
- `price_tier` enum (5 values — amended Sprint 36 per team decision; closed enum locked on sprint-36/copy branch): `mass` (widely accessible, lowest price point; commodity_branded volume tiers) / `premium` (above-average quality signal; most volume tiers across categories) / `luxury` (aspirational, restricted availability; terroir and design_heritage halos) / `flagship` (pinnacle output, ultra-scarce; Veblen curve inflection; max 1 per brand, lore-grounded scarcity ceiling required) / `institutional` (B2B contract pricing, not market price; service_premium and platform_catalogue)
|
||||
- `brand_inputs`: `brand_product_id`, `commodity_id`, `quantity`
|
||||
- `system_fiscal`: `system_id`, `corp_tax_rate`, `collection_efficiency` (derived from `shadow_economy_intensity`)
|
||||
- `corp_financial_state` + `corp_lifecycle_events` tables for acquisition/startup lifecycle
|
||||
@@ -440,4 +441,4 @@ This domain covers: currency system, commodity taxonomy, shadow economy, corpora
|
||||
|
||||
---
|
||||
|
||||
*19 decisions (D-171–D-187, D-189–D-190), 1 rejected alternative (R-011). Domain: economics. Last updated: 2026-04-10.*
|
||||
*19 decisions (D-171–D-187, D-189–D-190), 1 rejected alternative (R-011). Domain: economics. Last updated: 2026-04-19.*
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,392 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Generate minimal wiki stub pages for corps in brands.toml that don't yet have wiki pages."""
|
||||
|
||||
import os
|
||||
import re
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
REPO = Path(__file__).parent.parent
|
||||
BRANDS_TOML = REPO / "wiki/economics/corporations/brands.toml"
|
||||
CORPS_DIR = REPO / "wiki/corporations"
|
||||
|
||||
# Star system ID -> (proper_name, corridor)
|
||||
SYSTEMS = {
|
||||
"GJ 0": ("Sol", "sol-gateway-axis"),
|
||||
"GJ 1": ("Grünfeld", "west_reach"),
|
||||
"GJ 1002": ("Caparica", "south_reach"),
|
||||
"GJ 1005A": ("Port Desrochers", "east_reach"),
|
||||
"GJ 103": ("Bestevaer", "west_reach"),
|
||||
"GJ 105A": ("Nová Tržnice", "east_reach"),
|
||||
"GJ 1061": ("Crux Station", "south_reach"),
|
||||
"GJ 1075": ("Espinho", "south_reach"),
|
||||
"GJ 1073": ("Mabuhay", "east_reach"),
|
||||
"GJ 107A": ("Tình Yên", "east_reach"),
|
||||
"GJ 1111": ("Zenzele", "south_reach"),
|
||||
"GJ 1116A": ("Mabaso Junction", "north_reach"),
|
||||
"GJ 1116B": ("Kraków Junction", "west_reach"),
|
||||
"GJ 1125": ("Hwaseong", "east_reach"),
|
||||
"GJ 1128": ("Devereux Point", "east_reach"),
|
||||
"GJ 1156": ("Travessia", "south_reach"),
|
||||
"GJ 1230A": ("Uusi Vantaa", "north_reach"),
|
||||
"GJ 1232": ("Gammelstad", "west_reach"),
|
||||
"GJ 1235": ("Knotenpunkt", "deep_frontier"),
|
||||
"GJ 124": ("Hạ Long", "east_reach"),
|
||||
"GJ 1245A": ("Okoro's Claim", "north_reach"),
|
||||
"GJ 1245B": ("Koeberg", "south_reach"),
|
||||
"GJ 1248": ("Haltefenn", "west_reach"),
|
||||
"GJ 127A": ("Dalim", "deep_frontier"),
|
||||
"GJ 127B": ("Echternach", "west_reach"),
|
||||
"GJ 1286": ("Kensho", "core"),
|
||||
"GJ 1289": ("Athabasca", "north_reach"),
|
||||
"GJ 1292": ("Moyale", "north_reach"),
|
||||
"GJ 136": ("Dài Lộ", "east_reach"),
|
||||
"GJ 137": ("Novaya Zarya", "east_reach"),
|
||||
"GJ 138": ("Sertão", "deep_frontier"),
|
||||
"GJ 139": ("Okafor Station", "north_reach"),
|
||||
"GJ 142": ("Leuchtturm", "deep_frontier"),
|
||||
"GJ 144": ("Ran", "core"),
|
||||
"GJ 15A": ("Lu Ban", "core"),
|
||||
"GJ 166A": ("Keid", "core"),
|
||||
"GJ 172": ("Kaelong", "east_reach"),
|
||||
"GJ 17": ("Binh Trang", "east_reach"),
|
||||
"GJ 178": ("Ashfield", "north_reach"),
|
||||
"GJ 183": ("Waterkant", "north_reach"),
|
||||
"GJ 19": ("Solheim", "west_reach"),
|
||||
"GJ 191": ("Kapteyn's Star", "west_reach"),
|
||||
"GJ 194B": ("Pemberton", "north_reach"),
|
||||
"GJ 197": ("Puerto Último", "south_reach"),
|
||||
"GJ 201": ("GJ 201", "deep_frontier"),
|
||||
"GJ 204": ("Pedra Funda", "deep_frontier"),
|
||||
"GJ 205": ("Kurashiki", "east_reach"),
|
||||
"GJ 208": ("Pereira's Rest", "west_reach"),
|
||||
"GJ 2097": ("Nascente", "south_reach"),
|
||||
"GJ 211": ("Encruzilhada", "deep_frontier"),
|
||||
"GJ 213": ("Kaapse Baai", "south_reach"),
|
||||
"GJ 216A": ("Kelburn Crossing", "north_reach"),
|
||||
"GJ 216B": ("Gemini Point", "north_reach"),
|
||||
"GJ 222A": ("Karoo", "south_reach"),
|
||||
"GJ 229": ("Port Mäkelä", "west_reach"),
|
||||
"GJ 231": ("Thorvaldsen's Circuit", "west_reach"),
|
||||
"GJ 234A": ("Carvalhais", "south_reach"),
|
||||
"GJ 244A": ("Sirius", "core"),
|
||||
"GJ 250A": ("Carrington's Post", "north_reach"),
|
||||
"GJ 251": ("Renaissance", "core"),
|
||||
"GJ 268": ("Yeongwol", "east_reach"),
|
||||
"GJ 27": ("Okahandja", "south_reach"),
|
||||
"GJ 273": ("Fremantle", "north_reach"),
|
||||
"GJ 280A": ("Parallax", "core"),
|
||||
"GJ 282A": ("Bout du Chemin", "west_reach"),
|
||||
"GJ 285": ("Fenwick's Lantern", "north_reach"),
|
||||
"GJ 286": ("Weitblick", "deep_frontier"),
|
||||
"GJ 299": ("Várzea", "south_reach"),
|
||||
"GJ 300": ("Dunmore Stillwater", "north_reach"),
|
||||
"GJ 302": ("Lichtbrücke", "west_reach"),
|
||||
"GJ 309": ("Vorposten", "deep_frontier"),
|
||||
"GJ 3135": ("Whitfield Crossing", "east_reach"),
|
||||
"GJ 320": ("Sonnwend", "west_reach"),
|
||||
"GJ 3250": ("Rionegro", "south_reach"),
|
||||
"GJ 325A": ("Purnima", "east_reach"),
|
||||
"GJ 33": ("96 Piscium", "south_reach"),
|
||||
"GJ 3323": ("Entroncamento", "south_reach"),
|
||||
"GJ 3325": ("Calloway Reach", "north_reach"),
|
||||
"GJ 3333": ("Groenland", "west_reach"),
|
||||
"GJ 3379": ("Shenwei", "east_reach"),
|
||||
"GJ 338B": ("Arbour", "core"),
|
||||
"GJ 3454": ("Eisentor", "west_reach"),
|
||||
"GJ 349": ("Randgebiet", "deep_frontier"),
|
||||
"GJ 34A": ("Tanegashima", "north_reach"),
|
||||
"GJ 34B": ("Yongjin", "east_reach"),
|
||||
"GJ 35": ("Vuurkloof", "south_reach"),
|
||||
"GJ 3522": ("Sindri", "core"),
|
||||
"GJ 3533": ("Trung's Crossing", "east_reach"),
|
||||
"GJ 3586": ("Eisfeld", "west_reach"),
|
||||
"GJ 3612": ("Xa Vời", "east_reach"),
|
||||
"GJ 3618": ("Pemberton's Loop", "north_reach"),
|
||||
"GJ 3622": ("Havnfjord", "north_reach"),
|
||||
"GJ 370": ("Traagwater", "west_reach"),
|
||||
"GJ 3728B": ("Jeonnam", "east_reach"),
|
||||
"GJ 3737": ("Nyrheim", "west_reach"),
|
||||
"GJ 380": ("Groombridge", "core"),
|
||||
"GJ 3820": ("Uusi Vantaa", "north_reach"),
|
||||
"GJ 3877": ("Tessera", "core"),
|
||||
"GJ 388": ("The Lantern", "south_reach"),
|
||||
"GJ 393": ("Encrucijada", "south_reach"),
|
||||
"GJ 395": ("Confluent", "west_reach"),
|
||||
"GJ 3991": ("Dunbar", "north_reach"),
|
||||
"GJ 402": ("Prospect Hill", "north_reach"),
|
||||
"GJ 4053": ("Dzimbahwe", "south_reach"),
|
||||
"GJ 406": ("Wolf 359", "north_reach"),
|
||||
"GJ 408": ("Oude Kraal", "north_reach"),
|
||||
"GJ 410": ("Wagtoring", "north_reach"),
|
||||
"GJ 411": ("Lalande", "south_reach"),
|
||||
"GJ 412A": ("Morales' End", "south_reach"),
|
||||
"GJ 412B": ("Korhonen", "east_reach"),
|
||||
"GJ 414A": ("Vindkast", "west_reach"),
|
||||
"GJ 42": ("Langemark", "west_reach"),
|
||||
"GJ 423A": ("Marunong", "east_reach"),
|
||||
"GJ 423B": ("Quilombo", "south_reach"),
|
||||
"GJ 4274": ("Suzhou", "east_reach"),
|
||||
"GJ 4285": ("Lam's Prospect", "east_reach"),
|
||||
"GJ 432A": ("Kaur's Observatory", "east_reach"),
|
||||
"GJ 435": ("Mirante", "south_reach"),
|
||||
"GJ 438": ("Relay 7", "east_reach"),
|
||||
"GJ 442A": ("Torsby", "west_reach"),
|
||||
"GJ 445": ("Jinghu", "east_reach"),
|
||||
"GJ 447": ("Ross 128", "core"),
|
||||
"GJ 449": ("Murakami's Lantern", "east_reach"),
|
||||
"GJ 451A": ("Groombridge 1830", "south_reach"),
|
||||
"GJ 453": ("Freiholt", "west_reach"),
|
||||
"GJ 454": ("Steinfeld", "west_reach"),
|
||||
"GJ 473A": ("Passagem", "south_reach"),
|
||||
"GJ 473B": ("Nkosi's Bridge", "north_reach"),
|
||||
"GJ 475": ("Braemar", "north_reach"),
|
||||
"GJ 482A": ("Dagat", "east_reach"),
|
||||
"GJ 49": ("Dernier Quai", "east_reach"),
|
||||
"GJ 4A": ("Velha Guarda", "south_reach"),
|
||||
"GJ 501B": ("Candeia", "deep_frontier"),
|
||||
"GJ 502": ("Meridian", "west_reach"),
|
||||
"GJ 505A": ("Bergtor", "west_reach"),
|
||||
"GJ 506": ("Dokkum", "west_reach"),
|
||||
"GJ 508A": ("Stilwater", "north_reach"),
|
||||
"GJ 526": ("Neustadt", "west_reach"),
|
||||
"GJ 529": ("Yttermark", "west_reach"),
|
||||
"GJ 532": ("Kettenschmied", "deep_frontier"),
|
||||
"GJ 534": ("Stillvakt", "west_reach"),
|
||||
"GJ 536": ("Retiro", "south_reach"),
|
||||
"GJ 53A": ("Bridgepoint", "east_reach"),
|
||||
"GJ 54": ("Inhambane", "south_reach"),
|
||||
"GJ 54.1": ("Ribeiro's Star", "south_reach"),
|
||||
"GJ 541": ("Chandra Deep", "east_reach"),
|
||||
"GJ 542": ("Kopparhytta", "west_reach"),
|
||||
"GJ 546": ("Eerste Wacht", "deep_frontier"),
|
||||
"GJ 551": ("Proxima", "core"),
|
||||
"GJ 555": ("Tanaka Station", "east_reach"),
|
||||
"GJ 556": ("Recanto", "deep_frontier"),
|
||||
"GJ 559B": ("ACB", "core"),
|
||||
"GJ 566A": ("Haodu", "east_reach"),
|
||||
"GJ 566B": ("Confluência", "south_reach"),
|
||||
"GJ 567": ("Fragua", "south_reach"),
|
||||
"GJ 570A": ("Bastion", "core"),
|
||||
"GJ 575A": ("Ratnagiri", "north_reach"),
|
||||
"GJ 581": ("Rødvik", "west_reach"),
|
||||
"GJ 588": ("Harrowfield", "north_reach"),
|
||||
"GJ 598": ("Helle Wacht", "deep_frontier"),
|
||||
"GJ 601A": ("Ostmark", "west_reach"),
|
||||
"GJ 603": ("Mossbank", "north_reach"),
|
||||
"GJ 615": ("Dunkelholz", "west_reach"),
|
||||
"GJ 624": ("Halvøy", "west_reach"),
|
||||
"GJ 625": ("Songjiang", "east_reach"),
|
||||
"GJ 628": ("Brennan's Drift", "west_reach"),
|
||||
"GJ 631": ("Bakshi Spur", "west_reach"),
|
||||
"GJ 635A": ("Stilmark", "west_reach"),
|
||||
"GJ 635B": ("Clearwater Station", "east_reach"),
|
||||
"GJ 638": ("Greymantle", "north_reach"),
|
||||
"GJ 643": ("Marktfeld", "west_reach"),
|
||||
"GJ 644A": ("Mavela", "south_reach"),
|
||||
"GJ 644C": ("Moçâmedes", "south_reach"),
|
||||
"GJ 653": ("Dunmore", "north_reach"),
|
||||
"GJ 660A": ("Seongho", "east_reach"),
|
||||
"GJ 661A": ("Crown's Hollow", "north_reach"),
|
||||
"GJ 661B": ("Breëvlei", "north_reach"),
|
||||
"GJ 663A": ("Johannsen's Star", "north_reach"),
|
||||
"GJ 664": ("Caldwell Point", "west_reach"),
|
||||
"GJ 667A": ("New Ballarat", "north_reach"),
|
||||
"GJ 667B": ("Kampala Gate", "north_reach"),
|
||||
"GJ 667C": ("Gliese 667", "east_reach"),
|
||||
"GJ 66A": ("p Eridani", "east_reach"),
|
||||
"GJ 66B": ("Voss", "west_reach"),
|
||||
"GJ 67": ("Roça Nova", "south_reach"),
|
||||
"GJ 672": ("Nova Estrada", "deep_frontier"),
|
||||
"GJ 673": ("Lindström Station", "north_reach"),
|
||||
"GJ 674": ("Meridian", "core"),
|
||||
"GJ 675": ("Neugrund", "deep_frontier"),
|
||||
"GJ 680": ("Carnarvon", "north_reach"),
|
||||
"GJ 682": ("Taishan", "east_reach"),
|
||||
"GJ 684A": ("Sonnenkap", "deep_frontier"),
|
||||
"GJ 684B": ("Paso Largo", "deep_frontier"),
|
||||
"GJ 687": ("Matsue", "east_reach"),
|
||||
"GJ 688": ("Aguas Bravas", "south_reach"),
|
||||
"GJ 693": ("Mwangaza", "south_reach"),
|
||||
"GJ 699": ("Barnard's Star", "core"),
|
||||
"GJ 702B": ("Prometheus", "core"),
|
||||
"GJ 706": ("Ngata's Star", "north_reach"),
|
||||
"GJ 716": ("Murchison", "north_reach"),
|
||||
"GJ 71": ("Tau Ceti", "core"),
|
||||
"GJ 713A": ("Samuels Reach", "east_reach"),
|
||||
"GJ 722": ("Skuilplek", "deep_frontier"),
|
||||
"GJ 725B": ("Struve", "core"),
|
||||
"GJ 729": ("Ross 154", "west_reach"),
|
||||
"GJ 737B": ("Punta del Sol", "south_reach"),
|
||||
"GJ 75": ("Enugu", "north_reach"),
|
||||
"GJ 752A": ("Ribeirão", "south_reach"),
|
||||
"GJ 754": ("Miryang", "east_reach"),
|
||||
"GJ 764": ("Nova Roma", "core"),
|
||||
"GJ 768": ("Altair", "south_reach"),
|
||||
"GJ 770": ("Rekohu", "north_reach"),
|
||||
"GJ 771A": ("Alshain", "west_reach"),
|
||||
"GJ 775": ("Randsholm", "west_reach"),
|
||||
"GJ 780": ("Puerto Rivera", "north_reach"),
|
||||
"GJ 783A": ("Aurelius", "core"),
|
||||
"GJ 784": ("Kovács Loop", "east_reach"),
|
||||
"GJ 785": ("Porto Fechado", "south_reach"),
|
||||
"GJ 79": ("Oshima", "east_reach"),
|
||||
"GJ 798": ("Brückenau", "west_reach"),
|
||||
"GJ 807": ("Grenzstein", "west_reach"),
|
||||
"GJ 809": ("Seiðrmaðr", "west_reach"),
|
||||
"GJ 820B": ("Cygni B", "core"),
|
||||
"GJ 825": ("Lacaille", "north_reach"),
|
||||
"GJ 827": ("Solandar", "south_reach"),
|
||||
"GJ 829": ("Posto Avançado", "south_reach"),
|
||||
"GJ 83.1": ("Farol", "south_reach"),
|
||||
"GJ 832": ("Hansestadt", "west_reach"),
|
||||
"GJ 845": ("Cairn", "north_reach"),
|
||||
"GJ 848": ("Shimanami", "east_reach"),
|
||||
"GJ 86": ("Kumasi", "south_reach"),
|
||||
"GJ 860A": ("Kruger 60", "south_reach"),
|
||||
"GJ 860B": ("Changwon", "east_reach"),
|
||||
"GJ 866A": ("EZ Aqr", "east_reach"),
|
||||
"GJ 873": ("Ashworth Junction", "north_reach"),
|
||||
"GJ 875": ("The Narrows", "deep_frontier"),
|
||||
"GJ 876": ("Koskinen's Reach", "north_reach"),
|
||||
"GJ 877": ("Holmgren's Passage", "north_reach"),
|
||||
"GJ 879": ("Singh's Landing", "north_reach"),
|
||||
"GJ 880": ("Holgersen's Landing", "north_reach"),
|
||||
"GJ 884": ("Matamba", "south_reach"),
|
||||
"GJ 887": ("Lacaille", "core"),
|
||||
"GJ 892": ("Cairnside", "deep_frontier"),
|
||||
"GJ 896A": ("Nowa Huta", "south_reach"),
|
||||
"GJ 905": ("Isibaya", "south_reach"),
|
||||
"GJ 908": ("Thornfield Station", "east_reach"),
|
||||
"GJ 909A": ("Tam Giang", "east_reach"),
|
||||
"GJ 92": ("Pollux", "south_reach"),
|
||||
"GJ 95": ("Caledonia's End", "north_reach"),
|
||||
}
|
||||
|
||||
# Brand category -> description template suffix and tags hint
|
||||
CATEGORY_META = {
|
||||
"terroir": ("regional specialty producer", ["terroir", "scarcity_class_rare"]),
|
||||
"heritage_craft": ("heritage craft manufacturer", ["heritage_craft", "artisan"]),
|
||||
"tech_premium": ("precision technology manufacturer", ["tech_premium", "electronics"]),
|
||||
"cultural": ("cultural content producer", ["cultural", "entertainment"]),
|
||||
"service_premium": ("premium service provider", ["service_premium"]),
|
||||
"commodity_branded": ("consumer goods manufacturer", ["commodity_branded", "consumer_goods"]),
|
||||
"design_heritage": ("design and furniture manufacturer", ["design_heritage", "consumer_goods"]),
|
||||
"platform_catalogue": ("media platform and catalogue service", ["platform_catalogue", "entertainment"]),
|
||||
}
|
||||
|
||||
def slug_to_title(slug: str) -> str:
|
||||
"""Convert a slug like 'my-corp-name' to 'My Corp Name'."""
|
||||
return " ".join(w.capitalize() for w in slug.replace("-", " ").split())
|
||||
|
||||
def parse_brands_toml(path: Path) -> dict:
|
||||
"""Parse brands.toml and return dict of corp_id -> {origin_system, brand_category}."""
|
||||
corps = {}
|
||||
current_corp = None
|
||||
current_system = None
|
||||
current_category = None
|
||||
|
||||
with open(path, "r", encoding="utf-8") as f:
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
if line == "[[brand_products]]":
|
||||
# Save previous
|
||||
if current_corp and current_system:
|
||||
if current_corp not in corps:
|
||||
corps[current_corp] = {
|
||||
"origin_system": current_system,
|
||||
"brand_category": current_category,
|
||||
}
|
||||
current_corp = None
|
||||
current_system = None
|
||||
current_category = None
|
||||
elif line.startswith("corp_id = "):
|
||||
current_corp = line.split("=", 1)[1].strip().strip('"')
|
||||
elif line.startswith("origin_system = "):
|
||||
current_system = line.split("=", 1)[1].strip().strip('"')
|
||||
elif line.startswith("brand_category = "):
|
||||
current_category = line.split("=", 1)[1].strip().strip('"')
|
||||
|
||||
# Save last
|
||||
if current_corp and current_system:
|
||||
if current_corp not in corps:
|
||||
corps[current_corp] = {
|
||||
"origin_system": current_system,
|
||||
"brand_category": current_category,
|
||||
}
|
||||
|
||||
return corps
|
||||
|
||||
def generate_stub(slug: str, origin_system: str, brand_category: str) -> str:
|
||||
title = slug_to_title(slug)
|
||||
sys_info = SYSTEMS.get(origin_system, (origin_system, "unknown"))
|
||||
sys_name, corridor = sys_info
|
||||
|
||||
cat_meta = CATEGORY_META.get(brand_category, ("commercial enterprise", []))
|
||||
cat_desc, cat_tags = cat_meta
|
||||
|
||||
corridor_currency = "tractus"
|
||||
if corridor in ("west_reach",):
|
||||
corridor_currency = "mark"
|
||||
elif corridor == "core":
|
||||
corridor_currency = "tractus"
|
||||
|
||||
headquarters = f"{sys_name} ({origin_system})"
|
||||
tags_list = [brand_category, corridor, corridor_currency] + cat_tags
|
||||
# Deduplicate while preserving order
|
||||
seen = set()
|
||||
tags = []
|
||||
for t in tags_list:
|
||||
if t not in seen:
|
||||
seen.add(t)
|
||||
tags.append(t)
|
||||
tags_str = "[" + ", ".join(tags) + "]"
|
||||
|
||||
description = f"{title} — {cat_desc} based in {sys_name}, {corridor.replace('_', ' ')}"
|
||||
|
||||
return f"""---
|
||||
title: "{title}"
|
||||
description: "{description}"
|
||||
slug: {slug}
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: {headquarters}
|
||||
tags: {tags_str}
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# {title}
|
||||
|
||||
**Type:** Corporation — {cat_desc.title()}
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — {corridor.replace('_', ' ')} operations
|
||||
**Headquarters:** {headquarters}
|
||||
|
||||
{title} is a {cat_desc} operating out of {sys_name} ({origin_system}). Details to be expanded.
|
||||
"""
|
||||
|
||||
def main():
|
||||
corps = parse_brands_toml(BRANDS_TOML)
|
||||
print(f"Found {len(corps)} unique corp_ids in brands.toml")
|
||||
|
||||
created = 0
|
||||
skipped = 0
|
||||
for slug, meta in sorted(corps.items()):
|
||||
stub_path = CORPS_DIR / f"{slug}.md"
|
||||
if stub_path.exists():
|
||||
skipped += 1
|
||||
continue
|
||||
content = generate_stub(slug, meta["origin_system"], meta["brand_category"])
|
||||
stub_path.write_text(content, encoding="utf-8")
|
||||
created += 1
|
||||
print(f" created: {slug}.md")
|
||||
|
||||
print(f"\nDone. Created {created} stubs, skipped {skipped} existing.")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Alcazar Hospitality"
|
||||
description: "Alcazar Hospitality — premium service provider based in Altair, south reach"
|
||||
slug: alcazar-hospitality
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Altair (GJ 768)
|
||||
tags: [service_premium, south_reach, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Alcazar Hospitality
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Altair (GJ 768)
|
||||
|
||||
Alcazar Hospitality is a premium service provider operating out of Altair (GJ 768). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Alcyone Tech"
|
||||
description: "Alcyone Tech — precision technology manufacturer based in Groombridge, core"
|
||||
slug: alcyone-tech
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [tech_premium, core, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Alcyone Tech
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Alcyone Tech is a precision technology manufacturer operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Aldgate Trust"
|
||||
description: "Aldgate Trust — premium service provider based in Crown's Hollow, north reach"
|
||||
slug: aldgate-trust
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Crown's Hollow (GJ 661A)
|
||||
tags: [service_premium, north_reach, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Aldgate Trust
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Crown's Hollow (GJ 661A)
|
||||
|
||||
Aldgate Trust is a premium service provider operating out of Crown's Hollow (GJ 661A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Alentejo Partners"
|
||||
description: "Alentejo Partners — regional specialty producer based in Caparica, south reach"
|
||||
slug: alentejo-partners
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Caparica (GJ 1002)
|
||||
tags: [terroir, south_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Alentejo Partners
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Caparica (GJ 1002)
|
||||
|
||||
Alentejo Partners is a regional specialty producer operating out of Caparica (GJ 1002). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Algarve Botanics"
|
||||
description: "Algarve Botanics — regional specialty producer based in Inhambane, south reach"
|
||||
slug: algarve-botanics
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Inhambane (GJ 54)
|
||||
tags: [terroir, south_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Algarve Botanics
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Inhambane (GJ 54)
|
||||
|
||||
Algarve Botanics is a regional specialty producer operating out of Inhambane (GJ 54). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Arclamp"
|
||||
description: "Arclamp — design and furniture manufacturer based in Groombridge, core"
|
||||
slug: arclamp
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [design_heritage, core, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Arclamp
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Arclamp is a design and furniture manufacturer operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Ashwick Broadcasting"
|
||||
description: "Ashwick Broadcasting — cultural content producer based in Ashfield, north reach"
|
||||
slug: ashwick-broadcasting
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Ashfield (GJ 178)
|
||||
tags: [cultural, north_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Ashwick Broadcasting
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Ashfield (GJ 178)
|
||||
|
||||
Ashwick Broadcasting is a cultural content producer operating out of Ashfield (GJ 178). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Atrium Culture"
|
||||
description: "Atrium Culture — cultural content producer based in Groombridge, core"
|
||||
slug: atrium-culture
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [cultural, core, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Atrium Culture
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Atrium Culture is a cultural content producer operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Baia Fundo Productions"
|
||||
description: "Baia Fundo Productions — cultural content producer based in Confluência, south reach"
|
||||
slug: baia-fundo-productions
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Confluência (GJ 566B)
|
||||
tags: [cultural, south_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Baia Fundo Productions
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Confluência (GJ 566B)
|
||||
|
||||
Baia Fundo Productions is a cultural content producer operating out of Confluência (GJ 566B). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Bavarian Craft"
|
||||
description: "Bavarian Craft — heritage craft manufacturer based in Bergtor, west reach"
|
||||
slug: bavarian-craft
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Bergtor (GJ 505A)
|
||||
tags: [heritage_craft, west_reach, mark, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Bavarian Craft
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Bergtor (GJ 505A)
|
||||
|
||||
Bavarian Craft is a heritage craft manufacturer operating out of Bergtor (GJ 505A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Bergkraft Antriebswerke"
|
||||
description: "Bergkraft Antriebswerke — precision technology manufacturer based in Bergtor, west reach"
|
||||
slug: bergkraft-antriebswerke
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Bergtor (GJ 505A)
|
||||
tags: [tech_premium, west_reach, mark, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Bergkraft Antriebswerke
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Bergtor (GJ 505A)
|
||||
|
||||
Bergkraft Antriebswerke is a precision technology manufacturer operating out of Bergtor (GJ 505A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Brindlewood Honey"
|
||||
description: "Brindlewood Honey — regional specialty producer based in Ashfield, north reach"
|
||||
slug: brindlewood-honey
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Ashfield (GJ 178)
|
||||
tags: [terroir, north_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Brindlewood Honey
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Ashfield (GJ 178)
|
||||
|
||||
Brindlewood Honey is a regional specialty producer operating out of Ashfield (GJ 178). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Byeolbit Entertainment"
|
||||
description: "Byeolbit Entertainment — cultural content producer based in Seongho, east reach"
|
||||
slug: byeolbit-entertainment
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Seongho (GJ 660A)
|
||||
tags: [cultural, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Byeolbit Entertainment
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Seongho (GJ 660A)
|
||||
|
||||
Byeolbit Entertainment is a cultural content producer operating out of Seongho (GJ 660A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Calloway Workshop"
|
||||
description: "Calloway Workshop — design and furniture manufacturer based in Calloway Reach, north reach"
|
||||
slug: calloway-workshop
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Calloway Reach (GJ 3325)
|
||||
tags: [design_heritage, north_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Calloway Workshop
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Calloway Reach (GJ 3325)
|
||||
|
||||
Calloway Workshop is a design and furniture manufacturer operating out of Calloway Reach (GJ 3325). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Calluna Wellness"
|
||||
description: "Calluna Wellness — premium service provider based in Cairn, north reach"
|
||||
slug: calluna-wellness
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Cairn (GJ 845)
|
||||
tags: [service_premium, north_reach, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Calluna Wellness
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Cairn (GJ 845)
|
||||
|
||||
Calluna Wellness is a premium service provider operating out of Cairn (GJ 845). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Cape Modern"
|
||||
description: "Cape Modern — design and furniture manufacturer based in Kaapse Baai, south reach"
|
||||
slug: cape-modern
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kaapse Baai (GJ 213)
|
||||
tags: [design_heritage, south_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Cape Modern
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Kaapse Baai (GJ 213)
|
||||
|
||||
Cape Modern is a design and furniture manufacturer operating out of Kaapse Baai (GJ 213). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Commonstock Foods"
|
||||
description: "Commonstock Foods — consumer goods manufacturer based in Sirius, core"
|
||||
slug: commonstock-foods
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Sirius (GJ 244A)
|
||||
tags: [commodity_branded, core, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Commonstock Foods
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Sirius (GJ 244A)
|
||||
|
||||
Commonstock Foods is a consumer goods manufacturer operating out of Sirius (GJ 244A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Comptoir Lendel"
|
||||
description: "Comptoir Lendel — regional specialty producer based in Groombridge, core"
|
||||
slug: comptoir-lendel
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [terroir, core, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Comptoir Lendel
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Comptoir Lendel is a regional specialty producer operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Coriolis Exchange"
|
||||
description: "Coriolis Exchange — premium service provider based in Groombridge, core"
|
||||
slug: coriolis-exchange
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [service_premium, core, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Coriolis Exchange
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Coriolis Exchange is a premium service provider operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Dalbit Systems"
|
||||
description: "Dalbit Systems — precision technology manufacturer based in Seongho, east reach"
|
||||
slug: dalbit-systems
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Seongho (GJ 660A)
|
||||
tags: [tech_premium, east_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Dalbit Systems
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Seongho (GJ 660A)
|
||||
|
||||
Dalbit Systems is a precision technology manufacturer operating out of Seongho (GJ 660A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Destilaria Confluencia"
|
||||
description: "Destilaria Confluencia — regional specialty producer based in Confluência, south reach"
|
||||
slug: destilaria-confluencia
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Confluência (GJ 566B)
|
||||
tags: [terroir, south_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Destilaria Confluencia
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Confluência (GJ 566B)
|
||||
|
||||
Destilaria Confluencia is a regional specialty producer operating out of Confluência (GJ 566B). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Durban Engineering"
|
||||
description: "Durban Engineering — precision technology manufacturer based in Isibaya, south reach"
|
||||
slug: durban-engineering
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Isibaya (GJ 905)
|
||||
tags: [tech_premium, south_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Durban Engineering
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Isibaya (GJ 905)
|
||||
|
||||
Durban Engineering is a precision technology manufacturer operating out of Isibaya (GJ 905). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Eastbay Trading"
|
||||
description: "Eastbay Trading — consumer goods manufacturer based in Bridgepoint, east reach"
|
||||
slug: eastbay-trading
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Bridgepoint (GJ 53A)
|
||||
tags: [commodity_branded, east_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Eastbay Trading
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Bridgepoint (GJ 53A)
|
||||
|
||||
Eastbay Trading is a consumer goods manufacturer operating out of Bridgepoint (GJ 53A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Endymion Instruments"
|
||||
description: "Endymion Instruments — precision technology manufacturer based in The Narrows, deep frontier"
|
||||
slug: endymion-instruments
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: The Narrows (GJ 875)
|
||||
tags: [tech_premium, deep_frontier, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Endymion Instruments
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — deep frontier operations
|
||||
**Headquarters:** The Narrows (GJ 875)
|
||||
|
||||
Endymion Instruments is a precision technology manufacturer operating out of The Narrows (GJ 875). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Erzgebirge Instruments"
|
||||
description: "Erzgebirge Instruments — precision technology manufacturer based in Eisentor, west reach"
|
||||
slug: erzgebirge-instruments
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Eisentor (GJ 3454)
|
||||
tags: [tech_premium, west_reach, mark, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Erzgebirge Instruments
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Eisentor (GJ 3454)
|
||||
|
||||
Erzgebirge Instruments is a precision technology manufacturer operating out of Eisentor (GJ 3454). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Fieldborn Grain"
|
||||
description: "Fieldborn Grain — consumer goods manufacturer based in Calloway Reach, north reach"
|
||||
slug: fieldborn-grain
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Calloway Reach (GJ 3325)
|
||||
tags: [commodity_branded, north_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Fieldborn Grain
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Calloway Reach (GJ 3325)
|
||||
|
||||
Fieldborn Grain is a consumer goods manufacturer operating out of Calloway Reach (GJ 3325). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Fjeldtone Music"
|
||||
description: "Fjeldtone Music — cultural content producer based in Halvøy, west reach"
|
||||
slug: fjeldtone-music
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Halvøy (GJ 624)
|
||||
tags: [cultural, west_reach, mark, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Fjeldtone Music
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Halvøy (GJ 624)
|
||||
|
||||
Fjeldtone Music is a cultural content producer operating out of Halvøy (GJ 624). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Graben Studio"
|
||||
description: "Graben Studio — cultural content producer based in Freiholt, west reach"
|
||||
slug: graben-studio
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Freiholt (GJ 453)
|
||||
tags: [cultural, west_reach, mark, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Graben Studio
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Freiholt (GJ 453)
|
||||
|
||||
Graben Studio is a cultural content producer operating out of Freiholt (GJ 453). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Grampian Systems"
|
||||
description: "Grampian Systems — precision technology manufacturer based in Calloway Reach, north reach"
|
||||
slug: grampian-systems
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Calloway Reach (GJ 3325)
|
||||
tags: [tech_premium, north_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Grampian Systems
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Calloway Reach (GJ 3325)
|
||||
|
||||
Grampian Systems is a precision technology manufacturer operating out of Calloway Reach (GJ 3325). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Gridsupply Electronics"
|
||||
description: "Gridsupply Electronics — consumer goods manufacturer based in Groombridge, core"
|
||||
slug: gridsupply-electronics
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [commodity_branded, core, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Gridsupply Electronics
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Gridsupply Electronics is a consumer goods manufacturer operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Gronnmark Consumer"
|
||||
description: "Gronnmark Consumer — consumer goods manufacturer based in Nyrheim, west reach"
|
||||
slug: gronnmark-consumer
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Nyrheim (GJ 3737)
|
||||
tags: [commodity_branded, west_reach, mark, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Gronnmark Consumer
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Nyrheim (GJ 3737)
|
||||
|
||||
Gronnmark Consumer is a consumer goods manufacturer operating out of Nyrheim (GJ 3737). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Groot Karoo Cellars"
|
||||
description: "Groot Karoo Cellars — regional specialty producer based in Karoo, south reach"
|
||||
slug: groot-karoo-cellars
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Karoo (GJ 222A)
|
||||
tags: [terroir, south_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Groot Karoo Cellars
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Karoo (GJ 222A)
|
||||
|
||||
Groot Karoo Cellars is a regional specialty producer operating out of Karoo (GJ 222A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Haesungdan Records"
|
||||
description: "Haesungdan Records — cultural content producer based in Miryang, east reach"
|
||||
slug: haesungdan-records
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Miryang (GJ 754)
|
||||
tags: [cultural, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Haesungdan Records
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Miryang (GJ 754)
|
||||
|
||||
Haesungdan Records is a cultural content producer operating out of Miryang (GJ 754). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Hakone Hospitality"
|
||||
description: "Hakone Hospitality — premium service provider based in Matsue, east reach"
|
||||
slug: hakone-hospitality
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Matsue (GJ 687)
|
||||
tags: [service_premium, east_reach, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Hakone Hospitality
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Matsue (GJ 687)
|
||||
|
||||
Hakone Hospitality is a premium service provider operating out of Matsue (GJ 687). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Hana Creative"
|
||||
description: "Hana Creative — cultural content producer based in Jinghu, east reach"
|
||||
slug: hana-creative
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Jinghu (GJ 445)
|
||||
tags: [cultural, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Hana Creative
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Jinghu (GJ 445)
|
||||
|
||||
Hana Creative is a cultural content producer operating out of Jinghu (GJ 445). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Hangang Studio"
|
||||
description: "Hangang Studio — media platform and catalogue service based in Songjiang, east reach"
|
||||
slug: hangang-studio
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Songjiang (GJ 625)
|
||||
tags: [platform_catalogue, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Hangang Studio
|
||||
|
||||
**Type:** Corporation — Media Platform And Catalogue Service
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Songjiang (GJ 625)
|
||||
|
||||
Hangang Studio is a media platform and catalogue service operating out of Songjiang (GJ 625). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Hangil Celadon"
|
||||
description: "Hangil Celadon — heritage craft manufacturer based in Miryang, east reach"
|
||||
slug: hangil-celadon
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Miryang (GJ 754)
|
||||
tags: [heritage_craft, east_reach, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Hangil Celadon
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Miryang (GJ 754)
|
||||
|
||||
Hangil Celadon is a heritage craft manufacturer operating out of Miryang (GJ 754). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Hartsteen Legal"
|
||||
description: "Hartsteen Legal — premium service provider based in Confluent, west reach"
|
||||
slug: hartsteen-legal
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Confluent (GJ 395)
|
||||
tags: [service_premium, west_reach, mark]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Hartsteen Legal
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Confluent (GJ 395)
|
||||
|
||||
Hartsteen Legal is a premium service provider operating out of Confluent (GJ 395). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Higashiyama Vehicle"
|
||||
description: "Higashiyama Vehicle — precision technology manufacturer based in Kurashiki, east reach"
|
||||
slug: higashiyama-vehicle
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kurashiki (GJ 205)
|
||||
tags: [tech_premium, east_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Higashiyama Vehicle
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Kurashiki (GJ 205)
|
||||
|
||||
Higashiyama Vehicle is a precision technology manufacturer operating out of Kurashiki (GJ 205). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Highland Cooperative"
|
||||
description: "Highland Cooperative — regional specialty producer based in Crown's Hollow, north reach"
|
||||
slug: highland-cooperative
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Crown's Hollow (GJ 661A)
|
||||
tags: [terroir, north_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Highland Cooperative
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Crown's Hollow (GJ 661A)
|
||||
|
||||
Highland Cooperative is a regional specialty producer operating out of Crown's Hollow (GJ 661A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Iberian Standard Foods"
|
||||
description: "Iberian Standard Foods — consumer goods manufacturer based in Caparica, south reach"
|
||||
slug: iberian-standard-foods
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Caparica (GJ 1002)
|
||||
tags: [commodity_branded, south_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Iberian Standard Foods
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Caparica (GJ 1002)
|
||||
|
||||
Iberian Standard Foods is a consumer goods manufacturer operating out of Caparica (GJ 1002). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Incheon Salt"
|
||||
description: "Incheon Salt — regional specialty producer based in Changwon, east reach"
|
||||
slug: incheon-salt
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Changwon (GJ 860B)
|
||||
tags: [terroir, east_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Incheon Salt
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Changwon (GJ 860B)
|
||||
|
||||
Incheon Salt is a regional specialty producer operating out of Changwon (GJ 860B). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Ironbark Films"
|
||||
description: "Ironbark Films — cultural content producer based in Fremantle, north reach"
|
||||
slug: ironbark-films
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Fremantle (GJ 273)
|
||||
tags: [cultural, north_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Ironbark Films
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Fremantle (GJ 273)
|
||||
|
||||
Ironbark Films is a cultural content producer operating out of Fremantle (GJ 273). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Iznik Atelier"
|
||||
description: "Iznik Atelier — heritage craft manufacturer based in Groombridge, core"
|
||||
slug: iznik-atelier
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [heritage_craft, core, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Iznik Atelier
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Iznik Atelier is a heritage craft manufacturer operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Jeju Lattice"
|
||||
description: "Jeju Lattice — precision technology manufacturer based in Yeongwol, east reach"
|
||||
slug: jeju-lattice
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Yeongwol (GJ 268)
|
||||
tags: [tech_premium, east_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Jeju Lattice
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Yeongwol (GJ 268)
|
||||
|
||||
Jeju Lattice is a precision technology manufacturer operating out of Yeongwol (GJ 268). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kaapse Baai Wines"
|
||||
description: "Kaapse Baai Wines — regional specialty producer based in Kaapse Baai, south reach"
|
||||
slug: kaapse-baai-wines
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kaapse Baai (GJ 213)
|
||||
tags: [terroir, south_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kaapse Baai Wines
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Kaapse Baai (GJ 213)
|
||||
|
||||
Kaapse Baai Wines is a regional specialty producer operating out of Kaapse Baai (GJ 213). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kalahari Leatherworks"
|
||||
description: "Kalahari Leatherworks — heritage craft manufacturer based in Karoo, south reach"
|
||||
slug: kalahari-leatherworks
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Karoo (GJ 222A)
|
||||
tags: [heritage_craft, south_reach, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kalahari Leatherworks
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Karoo (GJ 222A)
|
||||
|
||||
Kalahari Leatherworks is a heritage craft manufacturer operating out of Karoo (GJ 222A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kaur Observatory Equipment"
|
||||
description: "Kaur Observatory Equipment — precision technology manufacturer based in Kaur's Observatory, east reach"
|
||||
slug: kaur-observatory-equipment
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kaur's Observatory (GJ 432A)
|
||||
tags: [tech_premium, east_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kaur Observatory Equipment
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Kaur's Observatory (GJ 432A)
|
||||
|
||||
Kaur Observatory Equipment is a precision technology manufacturer operating out of Kaur's Observatory (GJ 432A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kellervolk"
|
||||
description: "Kellervolk — cultural content producer based in Nyrheim, west reach"
|
||||
slug: kellervolk
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Nyrheim (GJ 3737)
|
||||
tags: [cultural, west_reach, mark, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kellervolk
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Nyrheim (GJ 3737)
|
||||
|
||||
Kellervolk is a cultural content producer operating out of Nyrheim (GJ 3737). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kinlochewe Instruments"
|
||||
description: "Kinlochewe Instruments — precision technology manufacturer based in Braemar, north reach"
|
||||
slug: kinlochewe-instruments
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Braemar (GJ 475)
|
||||
tags: [tech_premium, north_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kinlochewe Instruments
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Braemar (GJ 475)
|
||||
|
||||
Kinlochewe Instruments is a precision technology manufacturer operating out of Braemar (GJ 475). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Koryo Standard"
|
||||
description: "Koryo Standard — consumer goods manufacturer based in Jeonnam, east reach"
|
||||
slug: koryo-standard
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Jeonnam (GJ 3728B)
|
||||
tags: [commodity_branded, east_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Koryo Standard
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Jeonnam (GJ 3728B)
|
||||
|
||||
Koryo Standard is a consumer goods manufacturer operating out of Jeonnam (GJ 3728B). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kumho Navigation"
|
||||
description: "Kumho Navigation — precision technology manufacturer based in Hwaseong, east reach"
|
||||
slug: kumho-navigation
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Hwaseong (GJ 1125)
|
||||
tags: [tech_premium, east_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kumho Navigation
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Hwaseong (GJ 1125)
|
||||
|
||||
Kumho Navigation is a precision technology manufacturer operating out of Hwaseong (GJ 1125). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kyoei Design"
|
||||
description: "Kyoei Design — design and furniture manufacturer based in Kurashiki, east reach"
|
||||
slug: kyoei-design
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kurashiki (GJ 205)
|
||||
tags: [design_heritage, east_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kyoei Design
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Kurashiki (GJ 205)
|
||||
|
||||
Kyoei Design is a design and furniture manufacturer operating out of Kurashiki (GJ 205). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Kyoto Valley Estates"
|
||||
description: "Kyoto Valley Estates — regional specialty producer based in Kurashiki, east reach"
|
||||
slug: kyoto-valley-estates
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kurashiki (GJ 205)
|
||||
tags: [terroir, east_reach, tractus, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Kyoto Valley Estates
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Kurashiki (GJ 205)
|
||||
|
||||
Kyoto Valley Estates is a regional specialty producer operating out of Kurashiki (GJ 205). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Leerfeld Records"
|
||||
description: "Leerfeld Records — cultural content producer based in Confluent, west reach"
|
||||
slug: leerfeld-records
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Confluent (GJ 395)
|
||||
tags: [cultural, west_reach, mark, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Leerfeld Records
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Confluent (GJ 395)
|
||||
|
||||
Leerfeld Records is a cultural content producer operating out of Confluent (GJ 395). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Lowlands Consumer"
|
||||
description: "Lowlands Consumer — consumer goods manufacturer based in Dokkum, west reach"
|
||||
slug: lowlands-consumer
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Dokkum (GJ 506)
|
||||
tags: [commodity_branded, west_reach, mark, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Lowlands Consumer
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Dokkum (GJ 506)
|
||||
|
||||
Lowlands Consumer is a consumer goods manufacturer operating out of Dokkum (GJ 506). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Luanda Fabrication"
|
||||
description: "Luanda Fabrication — precision technology manufacturer based in Matamba, south reach"
|
||||
slug: luanda-fabrication
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Matamba (GJ 884)
|
||||
tags: [tech_premium, south_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Luanda Fabrication
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Matamba (GJ 884)
|
||||
|
||||
Luanda Fabrication is a precision technology manufacturer operating out of Matamba (GJ 884). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Lusaka Advisory"
|
||||
description: "Lusaka Advisory — premium service provider based in Zenzele, south reach"
|
||||
slug: lusaka-advisory
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Zenzele (GJ 1111)
|
||||
tags: [service_premium, south_reach, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Lusaka Advisory
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Zenzele (GJ 1111)
|
||||
|
||||
Lusaka Advisory is a premium service provider operating out of Zenzele (GJ 1111). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Lusitanian Glass"
|
||||
description: "Lusitanian Glass — heritage craft manufacturer based in Caparica, south reach"
|
||||
slug: lusitanian-glass
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Caparica (GJ 1002)
|
||||
tags: [heritage_craft, south_reach, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Lusitanian Glass
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Caparica (GJ 1002)
|
||||
|
||||
Lusitanian Glass is a heritage craft manufacturer operating out of Caparica (GJ 1002). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Maas Rijn Entertainment"
|
||||
description: "Maas Rijn Entertainment — cultural content producer based in Dokkum, west reach"
|
||||
slug: maas-rijn-entertainment
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Dokkum (GJ 506)
|
||||
tags: [cultural, west_reach, mark, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Maas Rijn Entertainment
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Dokkum (GJ 506)
|
||||
|
||||
Maas Rijn Entertainment is a cultural content producer operating out of Dokkum (GJ 506). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Maison Cinq"
|
||||
description: "Maison Cinq — design and furniture manufacturer based in Sirius, core"
|
||||
slug: maison-cinq
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Sirius (GJ 244A)
|
||||
tags: [design_heritage, core, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Maison Cinq
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Sirius (GJ 244A)
|
||||
|
||||
Maison Cinq is a design and furniture manufacturer operating out of Sirius (GJ 244A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Makuti Consumer"
|
||||
description: "Makuti Consumer — consumer goods manufacturer based in Mwangaza, south reach"
|
||||
slug: makuti-consumer
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Mwangaza (GJ 693)
|
||||
tags: [commodity_branded, south_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Makuti Consumer
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Mwangaza (GJ 693)
|
||||
|
||||
Makuti Consumer is a consumer goods manufacturer operating out of Mwangaza (GJ 693). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Matosinhos Fishing"
|
||||
description: "Matosinhos Fishing — consumer goods manufacturer based in Velha Guarda, south reach"
|
||||
slug: matosinhos-fishing
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Velha Guarda (GJ 4A)
|
||||
tags: [commodity_branded, south_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Matosinhos Fishing
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Velha Guarda (GJ 4A)
|
||||
|
||||
Matosinhos Fishing is a consumer goods manufacturer operating out of Velha Guarda (GJ 4A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Meridional Banking"
|
||||
description: "Meridional Banking — premium service provider based in Meridian, core"
|
||||
slug: meridional-banking
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Meridian (GJ 674)
|
||||
tags: [service_premium, core, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Meridional Banking
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Meridian (GJ 674)
|
||||
|
||||
Meridional Banking is a premium service provider operating out of Meridian (GJ 674). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Meridional Technical"
|
||||
description: "Meridional Technical — precision technology manufacturer based in Meridian, core"
|
||||
slug: meridional-technical
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Meridian (GJ 674)
|
||||
tags: [tech_premium, core, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Meridional Technical
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Meridian (GJ 674)
|
||||
|
||||
Meridional Technical is a precision technology manufacturer operating out of Meridian (GJ 674). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Mirai Entertainment"
|
||||
description: "Mirai Entertainment — cultural content producer based in Kurashiki, east reach"
|
||||
slug: mirai-entertainment
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kurashiki (GJ 205)
|
||||
tags: [cultural, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Mirai Entertainment
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Kurashiki (GJ 205)
|
||||
|
||||
Mirai Entertainment is a cultural content producer operating out of Kurashiki (GJ 205). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Moorfield Records"
|
||||
description: "Moorfield Records — cultural content producer based in Braemar, north reach"
|
||||
slug: moorfield-records
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Braemar (GJ 475)
|
||||
tags: [cultural, north_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Moorfield Records
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Braemar (GJ 475)
|
||||
|
||||
Moorfield Records is a cultural content producer operating out of Braemar (GJ 475). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Mwanga Media"
|
||||
description: "Mwanga Media — cultural content producer based in Mwangaza, south reach"
|
||||
slug: mwanga-media
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Mwangaza (GJ 693)
|
||||
tags: [cultural, south_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Mwanga Media
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Mwangaza (GJ 693)
|
||||
|
||||
Mwanga Media is a cultural content producer operating out of Mwangaza (GJ 693). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Namsan Collective"
|
||||
description: "Namsan Collective — cultural content producer based in Yeongwol, east reach"
|
||||
slug: namsan-collective
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Yeongwol (GJ 268)
|
||||
tags: [cultural, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Namsan Collective
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Yeongwol (GJ 268)
|
||||
|
||||
Namsan Collective is a cultural content producer operating out of Yeongwol (GJ 268). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Nexus Way Express"
|
||||
description: "Nexus Way Express — premium service provider based in Sirius, core"
|
||||
slug: nexus-way-express
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Sirius (GJ 244A)
|
||||
tags: [service_premium, core, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Nexus Way Express
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Sirius (GJ 244A)
|
||||
|
||||
Nexus Way Express is a premium service provider operating out of Sirius (GJ 244A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Nordhavn Financial"
|
||||
description: "Nordhavn Financial — premium service provider based in Nyrheim, west reach"
|
||||
slug: nordhavn-financial
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Nyrheim (GJ 3737)
|
||||
tags: [service_premium, west_reach, mark]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Nordhavn Financial
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Nyrheim (GJ 3737)
|
||||
|
||||
Nordhavn Financial is a premium service provider operating out of Nyrheim (GJ 3737). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Nordschatten Records"
|
||||
description: "Nordschatten Records — cultural content producer based in Nyrheim, west reach"
|
||||
slug: nordschatten-records
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Nyrheim (GJ 3737)
|
||||
tags: [cultural, west_reach, mark, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Nordschatten Records
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Nyrheim (GJ 3737)
|
||||
|
||||
Nordschatten Records is a cultural content producer operating out of Nyrheim (GJ 3737). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Norrland Woodcraft"
|
||||
description: "Norrland Woodcraft — heritage craft manufacturer based in Nyrheim, west reach"
|
||||
slug: norrland-woodcraft
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Nyrheim (GJ 3737)
|
||||
tags: [heritage_craft, west_reach, mark, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Norrland Woodcraft
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Nyrheim (GJ 3737)
|
||||
|
||||
Norrland Woodcraft is a heritage craft manufacturer operating out of Nyrheim (GJ 3737). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Ondori Interactive"
|
||||
description: "Ondori Interactive — cultural content producer based in Jeonnam, east reach"
|
||||
slug: ondori-interactive
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Jeonnam (GJ 3728B)
|
||||
tags: [cultural, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Ondori Interactive
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Jeonnam (GJ 3728B)
|
||||
|
||||
Ondori Interactive is a cultural content producer operating out of Jeonnam (GJ 3728B). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Open Corridor Stream"
|
||||
description: "Open Corridor Stream — media platform and catalogue service based in Groombridge, core"
|
||||
slug: open-corridor-stream
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Groombridge (GJ 380)
|
||||
tags: [platform_catalogue, core, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Open Corridor Stream
|
||||
|
||||
**Type:** Corporation — Media Platform And Catalogue Service
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Groombridge (GJ 380)
|
||||
|
||||
Open Corridor Stream is a media platform and catalogue service operating out of Groombridge (GJ 380). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Orkney Ceramics"
|
||||
description: "Orkney Ceramics — heritage craft manufacturer based in Cairn, north reach"
|
||||
slug: orkney-ceramics
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Cairn (GJ 845)
|
||||
tags: [heritage_craft, north_reach, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Orkney Ceramics
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Cairn (GJ 845)
|
||||
|
||||
Orkney Ceramics is a heritage craft manufacturer operating out of Cairn (GJ 845). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Pembrokeshire Smithy"
|
||||
description: "Pembrokeshire Smithy — heritage craft manufacturer based in Pemberton, north reach"
|
||||
slug: pembrokeshire-smithy
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Pemberton (GJ 194B)
|
||||
tags: [heritage_craft, north_reach, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Pembrokeshire Smithy
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Pemberton (GJ 194B)
|
||||
|
||||
Pembrokeshire Smithy is a heritage craft manufacturer operating out of Pemberton (GJ 194B). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Plainfield Agricultural"
|
||||
description: "Plainfield Agricultural — consumer goods manufacturer based in Fremantle, north reach"
|
||||
slug: plainfield-agricultural
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Fremantle (GJ 273)
|
||||
tags: [commodity_branded, north_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Plainfield Agricultural
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Fremantle (GJ 273)
|
||||
|
||||
Plainfield Agricultural is a consumer goods manufacturer operating out of Fremantle (GJ 273). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Porto Alegre Technical"
|
||||
description: "Porto Alegre Technical — precision technology manufacturer based in Nowa Huta, south reach"
|
||||
slug: porto-alegre-technical
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Nowa Huta (GJ 896A)
|
||||
tags: [tech_premium, south_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Porto Alegre Technical
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Nowa Huta (GJ 896A)
|
||||
|
||||
Porto Alegre Technical is a precision technology manufacturer operating out of Nowa Huta (GJ 896A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Quebrada Cultural"
|
||||
description: "Quebrada Cultural — cultural content producer based in Matamba, south reach"
|
||||
slug: quebrada-cultural
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Matamba (GJ 884)
|
||||
tags: [cultural, south_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Quebrada Cultural
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Matamba (GJ 884)
|
||||
|
||||
Quebrada Cultural is a cultural content producer operating out of Matamba (GJ 884). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Reach Archive Standard"
|
||||
description: "Reach Archive Standard — media platform and catalogue service based in Sirius, core"
|
||||
slug: reach-archive-standard
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Sirius (GJ 244A)
|
||||
tags: [platform_catalogue, core, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Reach Archive Standard
|
||||
|
||||
**Type:** Corporation — Media Platform And Catalogue Service
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Sirius (GJ 244A)
|
||||
|
||||
Reach Archive Standard is a media platform and catalogue service operating out of Sirius (GJ 244A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Reach Standard Media"
|
||||
description: "Reach Standard Media — cultural content producer based in Sirius, core"
|
||||
slug: reach-standard-media
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Sirius (GJ 244A)
|
||||
tags: [cultural, core, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Reach Standard Media
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Sirius (GJ 244A)
|
||||
|
||||
Reach Standard Media is a cultural content producer operating out of Sirius (GJ 244A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Reach Transport"
|
||||
description: "Reach Transport — consumer goods manufacturer based in Sirius, core"
|
||||
slug: reach-transport
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Sirius (GJ 244A)
|
||||
tags: [commodity_branded, core, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Reach Transport
|
||||
|
||||
**Type:** Corporation — Consumer Goods Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Sirius (GJ 244A)
|
||||
|
||||
Reach Transport is a consumer goods manufacturer operating out of Sirius (GJ 244A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Resonance Premium"
|
||||
description: "Resonance Premium — media platform and catalogue service based in Sirius, core"
|
||||
slug: resonance-premium
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Sirius (GJ 244A)
|
||||
tags: [platform_catalogue, core, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Resonance Premium
|
||||
|
||||
**Type:** Corporation — Media Platform And Catalogue Service
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — core operations
|
||||
**Headquarters:** Sirius (GJ 244A)
|
||||
|
||||
Resonance Premium is a media platform and catalogue service operating out of Sirius (GJ 244A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Rheingold Distillers"
|
||||
description: "Rheingold Distillers — regional specialty producer based in Rødvik, west reach"
|
||||
slug: rheingold-distillers
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Rødvik (GJ 581)
|
||||
tags: [terroir, west_reach, mark, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Rheingold Distillers
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Rødvik (GJ 581)
|
||||
|
||||
Rheingold Distillers is a regional specialty producer operating out of Rødvik (GJ 581). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Rheintal Systems"
|
||||
description: "Rheintal Systems — precision technology manufacturer based in Neustadt, west reach"
|
||||
slug: rheintal-systems
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Neustadt (GJ 526)
|
||||
tags: [tech_premium, west_reach, mark, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Rheintal Systems
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Neustadt (GJ 526)
|
||||
|
||||
Rheintal Systems is a precision technology manufacturer operating out of Neustadt (GJ 526). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Rijdbaar"
|
||||
description: "Rijdbaar — design and furniture manufacturer based in Confluent, west reach"
|
||||
slug: rijdbaar
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Confluent (GJ 395)
|
||||
tags: [design_heritage, west_reach, mark, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Rijdbaar
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Confluent (GJ 395)
|
||||
|
||||
Rijdbaar is a design and furniture manufacturer operating out of Confluent (GJ 395). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Saigon Consulting"
|
||||
description: "Saigon Consulting — premium service provider based in Binh Trang, east reach"
|
||||
slug: saigon-consulting
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Binh Trang (GJ 17)
|
||||
tags: [service_premium, east_reach, tractus]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Saigon Consulting
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Binh Trang (GJ 17)
|
||||
|
||||
Saigon Consulting is a premium service provider operating out of Binh Trang (GJ 17). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Schwarzwald Gin"
|
||||
description: "Schwarzwald Gin — regional specialty producer based in Dunkelholz, west reach"
|
||||
slug: schwarzwald-gin
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Dunkelholz (GJ 615)
|
||||
tags: [terroir, west_reach, mark, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Schwarzwald Gin
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Dunkelholz (GJ 615)
|
||||
|
||||
Schwarzwald Gin is a regional specialty producer operating out of Dunkelholz (GJ 615). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Sendai Forge"
|
||||
description: "Sendai Forge — heritage craft manufacturer based in Kurashiki, east reach"
|
||||
slug: sendai-forge
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Kurashiki (GJ 205)
|
||||
tags: [heritage_craft, east_reach, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Sendai Forge
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Kurashiki (GJ 205)
|
||||
|
||||
Sendai Forge is a heritage craft manufacturer operating out of Kurashiki (GJ 205). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Sertanejo Design"
|
||||
description: "Sertanejo Design — design and furniture manufacturer based in Roça Nova, south reach"
|
||||
slug: sertanejo-design
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Roça Nova (GJ 67)
|
||||
tags: [design_heritage, south_reach, tractus, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Sertanejo Design
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — south reach operations
|
||||
**Headquarters:** Roça Nova (GJ 67)
|
||||
|
||||
Sertanejo Design is a design and furniture manufacturer operating out of Roça Nova (GJ 67). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Shetland Wool"
|
||||
description: "Shetland Wool — heritage craft manufacturer based in Crown's Hollow, north reach"
|
||||
slug: shetland-wool
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Crown's Hollow (GJ 661A)
|
||||
tags: [heritage_craft, north_reach, tractus, artisan]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Shetland Wool
|
||||
|
||||
**Type:** Corporation — Heritage Craft Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Crown's Hollow (GJ 661A)
|
||||
|
||||
Shetland Wool is a heritage craft manufacturer operating out of Crown's Hollow (GJ 661A). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Spitsbergen Retreat"
|
||||
description: "Spitsbergen Retreat — premium service provider based in Halvøy, west reach"
|
||||
slug: spitsbergen-retreat
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Halvøy (GJ 624)
|
||||
tags: [service_premium, west_reach, mark]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Spitsbergen Retreat
|
||||
|
||||
**Type:** Corporation — Premium Service Provider
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Halvøy (GJ 624)
|
||||
|
||||
Spitsbergen Retreat is a premium service provider operating out of Halvøy (GJ 624). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Steinbach Furniture"
|
||||
description: "Steinbach Furniture — design and furniture manufacturer based in Steinfeld, west reach"
|
||||
slug: steinbach-furniture
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Steinfeld (GJ 454)
|
||||
tags: [design_heritage, west_reach, mark, consumer_goods]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Steinbach Furniture
|
||||
|
||||
**Type:** Corporation — Design And Furniture Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Steinfeld (GJ 454)
|
||||
|
||||
Steinbach Furniture is a design and furniture manufacturer operating out of Steinfeld (GJ 454). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Sunderland Precision"
|
||||
description: "Sunderland Precision — precision technology manufacturer based in Ashworth Junction, north reach"
|
||||
slug: sunderland-precision
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Ashworth Junction (GJ 873)
|
||||
tags: [tech_premium, north_reach, tractus, electronics]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Sunderland Precision
|
||||
|
||||
**Type:** Corporation — Precision Technology Manufacturer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — north reach operations
|
||||
**Headquarters:** Ashworth Junction (GJ 873)
|
||||
|
||||
Sunderland Precision is a precision technology manufacturer operating out of Ashworth Junction (GJ 873). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Sungshin Music"
|
||||
description: "Sungshin Music — cultural content producer based in Shimanami, east reach"
|
||||
slug: sungshin-music
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Shimanami (GJ 848)
|
||||
tags: [cultural, east_reach, tractus, entertainment]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Sungshin Music
|
||||
|
||||
**Type:** Corporation — Cultural Content Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — east reach operations
|
||||
**Headquarters:** Shimanami (GJ 848)
|
||||
|
||||
Sungshin Music is a cultural content producer operating out of Shimanami (GJ 848). Details to be expanded.
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "Svanevann Waters"
|
||||
description: "Svanevann Waters — regional specialty producer based in Nyrheim, west reach"
|
||||
slug: svanevann-waters
|
||||
category: corporation
|
||||
status: canonical
|
||||
created: 2026-04-19
|
||||
updated: 2026-04-19
|
||||
scope: regional
|
||||
faction_type: economic
|
||||
headquarters: Nyrheim (GJ 3737)
|
||||
tags: [terroir, west_reach, mark, scarcity_class_rare]
|
||||
decision_refs: [D-189]
|
||||
cross_refs: []
|
||||
---
|
||||
|
||||
# Svanevann Waters
|
||||
|
||||
**Type:** Corporation — Regional Specialty Producer
|
||||
**Status:** Canonical
|
||||
**Scope:** Regional — west reach operations
|
||||
**Headquarters:** Nyrheim (GJ 3737)
|
||||
|
||||
Svanevann Waters is a regional specialty producer operating out of Nyrheim (GJ 3737). Details to be expanded.
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user