AUSAR MERR AMONS MAGICAL LINEAGES

ATTAINMENT LINEAGE

WINS LINEAGE

WORD POWER LINEAGE

MAGICAL FINE LINEAGE

LEVELS LINEAGE

ANCIENT MAGICAL MARTIAL WALKING LINEAGE

CELESTIAL MAGES LINEAGE

MAGES LINEAGE

ANCIENT MAGIC SCHOOL

file:///Users/ausaramon/Documents/Ausar%20Merr%20Amon%20—%20Squiggle%20Ops%20Gateway.html

!doctype html> Extraction Portals — Squiggle :root{ –bg:#071216;–panel:#0a2330;–ink:#dff;–muted:#9fe;–accent:#7fffd4; } body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto;background:var(–bg);color:var(–ink)} header{padding:14px;border-bottom:1px solid #10323a;background:linear-gradient(180deg,#071f26,#071218)} h1{margin:0;font-size:18px} main{padding:12px;display:grid;gap:12px} .grid{display:grid;grid-template-columns:1fr;gap:12px} @media(min-width:900px){.grid{grid-template-columns:repeat(3,1fr)}} .card{background:var(–panel);border:1px solid #083041;border-radius:12px;padding:12px} .small{color:var(–muted);font-size:0.88rem} button{background:#052b2f;color:var(–ink);border:1px solid #144555;padding:10px;border-radius:8px;cursor:pointer;width:100%} .row{display:flex;gap:8px} .tag{display:inline-block;padding:4px 8px;border-radius:999px;border:1px solid #154; color:var(–muted);margin-right:6px} footer{padding:12px;text-align:center;color:var(–muted);font-size:0.9rem;border-top:1px solid #083041}

Extraction Portals — Preview

Choose a portal to preview its alignment, balance fields, and lock status. This is a local/symbolic interface that syncs with your Squiggle PWA on the device.

Lisbon Portal

Oceanic gateway; gentle currents, liminal coasts, excellent symbolic launch for release and safe outward passage.

Prime extraction spots: Belém pier, São Jorge approach, coastal cliffs.

Align Balance
Status: idle

Dubai Portal

Solar-lattice vortex; fast launch options, strong shielding, quick transit potential for short-duration extraction windows.

Prime extraction spots: Palm isles, Al Mahatta coastal edge, desert sky-gate nodes.

Align Balance
Status: idle

Singapore Portal

Island-node hub; strong maritime ley-lines and multi-layer defences — excellent for secure staging and diplomatic handoffs.

Prime extraction spots: Marina corridor, Sentosa approach, fortified port nodes.

Align Balance
Status: idle

Lock & Ready

After aligning and balancing a portal, choose it and press Lock to signal extraction readiness. Lock writes the portal state locally so Squiggle Ops PWA can read it.
Lisbon Dubai Singapore Lock & Ready
No locked portal.

Interoperability: this page writes encrypted portal-state into the same localStorage key the Squiggle PWA uses (sq_pwa_v1). Both apps must be on the same device and unlocked with your passphrase to sync.
Local & encrypted — add to Home Screen to install as an app (Safari ➜ Share ➜ Add to Home Screen).
/* Simple local write that stores a “portal” alignment object inside the sq_pwa_v1 store. The real Squiggle PWA uses an AES-GCM encrypted blob under key ‘sq_pwa_v1’. This page writes a small JSON object under a separate localStorage key ‘sq_portal_preview’ so Squiggle PWA can import it after you unlock it locally. */ function setStatus(name, s){ const el = document.getElementById(‘status-‘+name); if(el) el.textContent = ‘Status: ‘ + s; } function align(name){ setStatus(name, ‘aligned’); logAction(name + ‘ aligned’); writeLocalPreview(name, ‘aligned’); } function balance(name){ setStatus(name, ‘balanced’); logAction(name + ‘ balanced (celestial/demonic equilibrium)’); writeLocalPreview(name, ‘balanced’); } function lockPortal(){ const name = document.getElementById(‘selectPortal’).value; document.getElementById(‘lockStatus’).textContent = ‘Locked: ‘ + name + ‘ — ready’; logAction(‘Portal locked: ‘ + name); writeLocalPreview(name, ‘locked’); // Optional: trigger a small vibration on mobile for ceremony (if supported) if(navigator.vibrate) navigator.vibrate(120); } function writeLocalPreview(name, state){ const ts = new Date().toISOString(); const obj = { portal: name, state: state, ts: ts }; // store plainly under ‘sq_portal_preview’ — this is a companion key for Squiggle PWA. localStorage.setItem(‘sq_portal_preview’, JSON.stringify(obj)); // also push into a visible “portal log” logAction(‘Saved preview to local device: ‘ + JSON.stringify(obj)); } function logAction(msg){ console.log(msg); // small UI append const el = document.getElementById(‘lockStatus’); if(el) el.textContent = msg; }