From ee30d8185023bbd8d39775e5b092bb38e85062ac Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 19:51:19 +0200 Subject: [PATCH 01/14] Create python script to generate JSON --- scripts/generate_modal_stage_data.py | 215 ++++ website/data/modal-stage-data.json | 1699 ++++++++++++++++++++++++++ website/index.html | 1 - website/js/main.js | 231 ++++ website/js/modals-enhancer.js | 447 ------- 5 files changed, 2145 insertions(+), 448 deletions(-) create mode 100644 scripts/generate_modal_stage_data.py create mode 100644 website/data/modal-stage-data.json delete mode 100644 website/js/modals-enhancer.js diff --git a/scripts/generate_modal_stage_data.py b/scripts/generate_modal_stage_data.py new file mode 100644 index 0000000..05be579 --- /dev/null +++ b/scripts/generate_modal_stage_data.py @@ -0,0 +1,215 @@ +#!/usr/bin/env python3 + +"""Generate website modal stage data from Turtle subgraphs.""" + +from __future__ import annotations + +import json +import sys +from datetime import UTC, datetime +from pathlib import Path + +from rdflib import Graph, Namespace, URIRef +from rdflib.namespace import RDF, RDFS + +ROOT_DIR = Path(__file__).resolve().parent.parent +SUBGRAPHS_DIR = ROOT_DIR / "graph" / "subgraphs" +OUTPUT_JSON = ROOT_DIR / "website" / "data" / "modal-stage-data.json" + +MONOMYTH = Namespace("https://monomyth.metamuses.org/ontology#") + +MODAL_TTL_MAP = { + "kg-modal-matrix": "the-matrix.ttl", + "kg-modal-lion-king": "the-lion-king.ttl", + "kg-modal-call-of-wild": "the-call-of-the-wild.ttl", + "kg-modal-rostam": "rostam-haft-khan.ttl", + "kg-modal-waltermitty": "walter-mitty.ttl", + "kg-modal-batman": "batman.ttl", + "kg-modal-oedipus": "oedipus.ttl", + "kg-modal-sable-fable": "sable-fable.ttl", + "kg-modal-ladybird": "lady-bird.ttl", + "kg-modal-aeneid": "aeneid.ttl", + "kg-modal-zelda": "ocarina-of-time.ttl", + "kg-modal-orlando": "orlando-furioso.ttl", +} + +PRED_MONOMYTH_EXPRESSION = MONOMYTH.MonomythExpression +PRED_STAGE_REALIZATION = MONOMYTH.StageRealization +PRED_STAGE_REALIZATION_OF = MONOMYTH.stageRealizationOf +PRED_STAGE_REALIZATION_ORDER = MONOMYTH.stageRealizationOrder +PRED_REALIZATION_DESCRIPTION = MONOMYTH.realizationDescription +PRED_DIVERGENCE_RATIONALE = MONOMYTH.divergenceRationale + +PRED_HAS_NARRATIVE_DIVERGENCE = MONOMYTH.hasNarrativeDivergence +PRED_HAS_SEQUENTIAL_DIVERGENCE = MONOMYTH.hasSequentialDivergence +PRED_HAS_SEMIOTIC_DIVERGENCE = MONOMYTH.hasSemioticDivergence + +PRED_NARRATIVE_DIVERGENCE = MONOMYTH.NarrativeDivergence +PRED_SEQUENTIAL_DIVERGENCE = MONOMYTH.SequentialDivergence +PRED_SEMIOTIC_DIVERGENCE = MONOMYTH.SemioticDivergence + +DIVERGENCE_TYPES = { + PRED_NARRATIVE_DIVERGENCE: "narrative", + PRED_SEQUENTIAL_DIVERGENCE: "sequential", + PRED_SEMIOTIC_DIVERGENCE: "semiotic", +} + +STAGE_DIVERGENCE_PREDICATES = ( + ("narrative", PRED_HAS_NARRATIVE_DIVERGENCE), + ("sequential", PRED_HAS_SEQUENTIAL_DIVERGENCE), + ("semiotic", PRED_HAS_SEMIOTIC_DIVERGENCE), +) + + +def normalize_text(value: str | None) -> str | None: + """Collapse whitespace so multiline literals become compact sentences.""" + if value is None: + return None + return " ".join(value.split()) + + +def iri_tail(iri: str) -> str: + """Return a readable fallback from an IRI string.""" + parts = iri.rstrip("/").split("/") + return parts[-1] if parts else iri + + +def literal_value(graph: Graph, subject: URIRef, predicate: URIRef) -> str | None: + """Return the first literal object value for a subject/predicate pair.""" + for obj in graph.objects(subject, predicate): + return str(obj) + return None + + +def parse_order(graph: Graph, stage_iri: URIRef) -> int | None: + """Read a numeric stage order from a stage realization node.""" + for obj in graph.objects(stage_iri, PRED_STAGE_REALIZATION_ORDER): + try: + return int(obj) + except (TypeError, ValueError): + return None + return None + + +def collect_divergence_data(graph: Graph) -> dict[str, dict[str, str | None]]: + """Build divergence metadata lookup keyed by divergence IRI string.""" + divergences: dict[str, dict[str, str | None]] = {} + + for divergence_type_iri, divergence_key in DIVERGENCE_TYPES.items(): + for divergence_iri in graph.subjects(RDF.type, divergence_type_iri): + iri_str = str(divergence_iri) + label = literal_value(graph, divergence_iri, RDFS.label) or iri_tail(iri_str) + rationale = normalize_text(literal_value(graph, divergence_iri, PRED_DIVERGENCE_RATIONALE)) + divergences[iri_str] = { + "type": divergence_key, + "label": label, + "rationale": rationale, + } + + return divergences + + +def build_stage_payload( + graph: Graph, + stage_iri: URIRef, + divergence_lookup: dict[str, dict[str, str | None]], +) -> dict[str, object]: + """Build one stage payload used in the modal JSON output.""" + payload: dict[str, object] = { + "label": literal_value(graph, stage_iri, RDFS.label), + "description": normalize_text(literal_value(graph, stage_iri, PRED_REALIZATION_DESCRIPTION)), + } + + for divergence_key, divergence_predicate in STAGE_DIVERGENCE_PREDICATES: + for divergence_iri in graph.objects(stage_iri, divergence_predicate): + divergence_data = divergence_lookup.get(str(divergence_iri)) + if divergence_data is None: + continue + payload[divergence_key] = { + "label": divergence_data["label"], + "rationale": divergence_data["rationale"], + } + break + + return payload + + +def collect_expression_stages( + graph: Graph, + divergence_lookup: dict[str, dict[str, str | None]], +) -> dict[str, dict[int, dict[str, object]]]: + """Group stages by monomyth expression and stage order.""" + expression_stages: dict[str, dict[int, dict[str, object]]] = {} + + for stage_iri in graph.subjects(RDF.type, PRED_STAGE_REALIZATION): + stage_order = parse_order(graph, stage_iri) + if stage_order is None: + continue + + stage_payload = build_stage_payload(graph, stage_iri, divergence_lookup) + for expression_iri in graph.objects(stage_iri, PRED_STAGE_REALIZATION_OF): + expression_key = str(expression_iri) + expression_stages.setdefault(expression_key, {})[stage_order] = stage_payload + + return expression_stages + + +def build_modal_payload(ttl_filename: str) -> dict[str, object]: + """Parse a single subgraph and convert it into modal-friendly JSON data.""" + ttl_path = SUBGRAPHS_DIR / ttl_filename + if not ttl_path.exists(): + sys.exit(f"Error: missing subgraph file {ttl_path}") + + graph = Graph() + graph.parse(ttl_path, format="turtle") + + divergence_lookup = collect_divergence_data(graph) + expression_stages = collect_expression_stages(graph, divergence_lookup) + + journeys = [] + expression_iris = sorted(str(iri) for iri in graph.subjects(RDF.type, PRED_MONOMYTH_EXPRESSION)) + + for expression_iri in expression_iris: + stage_map = expression_stages.get(expression_iri, {}) + ordered_stages: dict[str, dict[str, object]] = {} + for stage_order in sorted(stage_map): + ordered_stages[str(stage_order)] = stage_map[stage_order] + + journeys.append( + { + "id": expression_iri, + "label": literal_value(graph, URIRef(expression_iri), RDFS.label) or iri_tail(expression_iri), + "stages": ordered_stages, + } + ) + + if not journeys: + sys.exit(f"Error: no monomyth expressions found in {ttl_path}") + + return { + "ttlFile": ttl_filename, + "journeys": journeys, + } + + +def main() -> None: + """Generate JSON for all configured modals.""" + modals: dict[str, dict[str, object]] = {} + + for modal_id, ttl_filename in MODAL_TTL_MAP.items(): + print(f"Parsing graph/subgraphs/{ttl_filename}") + modals[modal_id] = build_modal_payload(ttl_filename) + + output = { + "generatedAt": datetime.now(UTC).isoformat().replace("+00:00", "Z"), + "modals": modals, + } + + OUTPUT_JSON.parent.mkdir(parents=True, exist_ok=True) + OUTPUT_JSON.write_text(f"{json.dumps(output, indent=2)}\n", encoding="utf-8") + + print(f"\nWrote modal stage data to {OUTPUT_JSON.relative_to(ROOT_DIR)}") + + +if __name__ == "__main__": + main() diff --git a/website/data/modal-stage-data.json b/website/data/modal-stage-data.json new file mode 100644 index 0000000..86b1f02 --- /dev/null +++ b/website/data/modal-stage-data.json @@ -0,0 +1,1699 @@ +{ + "generatedAt": "2026-05-19T17:46:33.499835Z", + "modals": { + "kg-modal-matrix": { + "ttlFile": "the-matrix.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/the-matrix/monomyths/neo-journey", + "label": "Neo's Hero's Journey in The Matrix", + "stages": { + "1": { + "label": "Follow the white rabbit", + "description": "Neo's computer screen displays the message \"Wake up, Neo... The Matrix has you... Follow the white rabbit.\" He then follows a woman with a white rabbit tattoo to a club, where Trinity tells him she knows the answer to the question driving his life." + }, + "2": { + "label": "I can't do this", + "description": "Morpheus guides Neo by phone to escape via a building ledge. Neo looks down, says \"I can't do this,\" and retreats inside, choosing the familiar world. He is immediately captured by Agent Smith, interrogated, and implanted with a tracking bug." + }, + "3": { + "label": "Let me tell you why you're here", + "description": "Morpheus serves as the supernatural mentor: he has sought Neo, believes in him as the One, and offers him the pivotal choice. Trinity and the crew give Neo another chance at understanding his destiny, bringing him to Morpheus.", + "semiotic": { + "label": "Supernatural as Epistemic divergence", + "rationale": "The supernatural aid appears here not as a transcendent or magical intervention, but as privileged access to truth. Morpheus operates within the same ontological order as Neo, yet possesses knowledge that reveals the perceived world as illusory. The sense of the 'supernatural' arises from Neo's epistemic limitation rather than any actual breach of natural law. Guidance is thus enacted through disclosure and cognitive rupture, shifting the role from mystical benefactor to agent of ontological clarification within a simulated reality." + } + }, + "4": { + "label": "All I'm offering is the truth", + "description": "Morpheus presents two pills: blue for return to ignorance, red for the truth. Neo takes the red pill. Reality disintegrates, the mirror liquefies and crawls up his arm, and he wakes in a pod in the real world. There is no going back." + }, + "5": { + "label": "Welcome to the real world", + "description": "Neo awakens in an amniotic pod, hairless, atrophied, plugged into the machine infrastructure, surrounded by an infinite tower of sleeping humans. He is flushed through a tube into dark water and rescued by the Nebuchadnezzar crew. The old Thomas Anderson dies in the pod; Neo is reborn fragile and overwhelmed." + }, + "6": { + "label": "Fear, doubt, and disbelief", + "description": "Neo must rebuild himself from nothing after liberation. He downloads combat programs directly into his mind, absorbs kung fu at impossible speed, and tests his newly acquired skills against Morpheus in the sparring dojo. Yet the rooftop jump reveals a deeper trial: his residual self-image, anchored in obsolete beliefs about what is possible, still limits him." + }, + "7": { + "label": "The Oracle will see you now", + "description": "Neo visits the Oracle in her modest, maternal apartment, expecting definitive answers about his destiny. Instead, she offers cryptic guidance wrapped in domestic warmth\u2014baking cookies, reading body language. When Neo concludes himself that he is not the One, she neither confirms nor denies, planting seeds of self-knowledge that will germinate only through sacrifice and choice." + }, + "8": { + "label": "Ignorance is bliss", + "description": "Cypher embodies the temptation to abandon truth for comfort. Over a steak dinner negotiated with Agent Smith, he chooses to betray the crew in exchange for reinsertion into the Matrix, preferring pleasurable illusion to the bleak real world. His betrayal externalizes the doubt lurking within every freed mind: that ignorance might be preferable to painful knowledge.", + "narrative": { + "label": "Dispersed Temptress divergence", + "rationale": "The Wachowskis distribute the temptation function across multiple loci rather than concentrating it in a single character-hero encounter. The Woman in the Red Dress is a brief pedagogical moment; Cypher embodies the deeper existential temptation as Neo's shadow rather than his seducer; and Neo himself, refusing to identify as the One, enacts an inward temptation\u2014the lure of remaining ordinary rather than accepting a burden he does not yet believe he can carry. This dispersal reflects the film's philosophical framework: in The Matrix, temptation is systemic (the entire simulation is designed to seduce) rather than personal, making a single temptress figure structurally inadequate. The divergence is a creative adaptation of Campbell's stage to a narrative where the antagonist is an environment, not an individual." + }, + "semiotic": { + "label": "Woman as Ignorance divergence", + "rationale": "The Matrix subverts the traditional Woman as the Temptress archetype by embodying the temptation to remain in ignorance not in a seductive figure, but in the systemic choice of ignorance itself. The film's primary antagonist, Agent Smith, represents the oppressive system that seeks to maintain control through ignorance, while Cypher's betrayal exemplifies the allure of returning to comfortable illusion. This divergence reflects the film's thematic focus on systemic control and the internal struggle for enlightenment, rather than external seduction." + } + }, + "9": { + "label": "There is no spoon", + "description": "Agent Smith captures Morpheus and attempts to break him through interrogation. Neo defies the pragmatic counsel to abandon his mentor, re-entering the Matrix to mount a rescue. In saving the father figure rather than obeying him, Neo transcends discipleship, claiming autonomous authority not against Morpheus but through loyalty to him." + }, + "10": { + "label": "He's beginning to believe", + "description": "With Morpheus and Trinity safely extracted, Neo stands before the escape route but chooses intead to turn back to face Agent Smith. The battle becomes a graduated awakening: blow by blow, Neo's confidence hardens into something approaching certainty. \"He's beginning to believe\" will declare Morpheus, watching. Freeing himself from the grip of Smith, he finally throws him under the train, winning the confrontation but immediately realizing he's not ready for another one and hence must escape for now.", + "narrative": { + "label": "Imperfect Apotheosis divergence", + "rationale": "Neo's apotheosis is deliberately incomplete and immediately followed by a new trial, subverting the traditional narrative where the hero enjoys a moment of elevated power before facing new challenges. This choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." + } + }, + "11": { + "label": "Mr. Wizard, get me out of here!", + "description": "Smith is defeated in the subway but not annihilated, and Neo must now flee a system that has fully mobilized against him. Tank provides real-time guidance through the Matrix's corridors, directing Neo toward safety while Agents pursue. This flight suspends the hero's nascent apotheosis in a state of anxious incompleteness, heightening the stakes by demonstrating that partial awakening carries its own dangers. Neo's dependence on Tank reveals that even emergent power requires external support to translate into survival.", + "sequential": { + "label": "Escape after apotheosis divergence", + "rationale": "In The Matrix, Neo's apotheosis happens in two distinct phases. The first one, when \"he's beginning to believe\" and challenge Agent Smith, is not complete and it is immediately followed by a desperate escape from Agent Smith, rather than a period of triumphant mastery. This sequence subverts the traditional post-apotheosis narrative, where the hero typically enjoys a moment of elevated power before facing new challenges. The Wachowskis' choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." + } + }, + "12": { + "label": "The man I loved would be the One", + "description": "The Agents close in systematically, cutting off Neo's escape routes one by one until the city itself becomes a narrowing trap. Smith intercepts him in a hallway and fires at point-blank range, killing him. The hero's journey appears to terminate in unambiguous defeat. But in the real world, Trinity leans over Neo's body and confesses her love, revealing the Oracle's prophecy: the man she loved would be the One. Neo returns from death, resurrected by a conviction he could not yet supply for himself: ultimate awakening, the film suggests, requires being believed in before one can fully believe.", + "narrative": { + "label": "Validation replaces salvation divergence", + "rationale": "In The Matrix, the traditional Rescue from Without stage is subverted by having Neo's validation as the One come from Trinity's love and belief in him, rather than from an external savior figure. This shift emphasizes the theme of self-actualization and the power of human connection, rather than reliance on an external force for salvation. Neo's \"rescue\" is not a physical extraction from danger but an emotional and existential affirmation that enables him to fully embrace his identity as the One." + } + }, + "13": { + "label": "He is the One", + "description": "Neo rises from death and the simulation's code becomes legible to him, its architecture now transparent and malleable. Agents open fire but he halts their bullets in midair through will alone. Smith charges and Neo dispatches him effortlessly, then enters his digital body and destroys him from within. The remaining Agents flee. Neo has attained total mastery over the Matrix, but the real world intrudes: sentinels are tearing the ship apart, and he must reach the exit before the boon he has claimed becomes irrelevant to a body that no longer survives." + }, + "14": { + "label": "System failure", + "description": null, + "narrative": { + "label": "Refusal of the return divergence", + "rationale": "The Matrix omits the Refusal of the Return because Neo's arc is structured as an awakening narrative rather than a circular homecoming. Once Neo achieves the boon, there is no ordinary world to be reluctant about returning to: his mission is forward-facing liberation, not nostalgic return. The Wachowskis' choice reflects a modern, messianic hero model (closer to the Bodhisattva who re-enters the world to liberate others) rather than Campbell's Odyssean homecoming pattern. The absence is deliberate and thematically coherent rather than an oversight." + } + }, + "15": { + "label": "I can feel you now", + "description": "In the film's compressed finale, Neo re-enters the Matrix no longer as a fugitive but as a being who has transcended its constraints entirely and addresses the Machines directly with calm authority, acknowledging their fear of what free humans represent. The threshold between simulation and reality, which once marked the hero's fundamental vulnerability, is effectively dissolved as he's now free to move between both realms at will.", + "narrative": { + "label": "Master of the threshold divergence", + "rationale": "Campbell's model assumes the hero crosses back from the special world into the ordinary one. The Matrix inverts this: Neo re-enters the special world (the simulation) as its sovereign, dissolving the ontological hierarchy between worlds rather than crossing a boundary. This divergence transforms the return threshold from a spatial crossing into an epistemological claim: the hero's return is not a physical transit but a redefinition of what \"real\" means. It reflects the film's Baudrillardian foundation: if simulation and reality are ontologically entangled, the threshold itself is the illusion." + } + }, + "16": { + "label": "I came here to tell you how it's going to begin", + "description": "Neo has become illegible to the categories that once contained him: neither prisoner of the simulation nor mere survivor of the devastated Earth, he occupies both worlds with equal fluency and commands both with equal authority. His address to the Machines makes this legible through its sheer confidence, as he speaks not as someone who has escaped their system but as someone who has comprehended it so thoroughly that the power relation has permanently inverted. The resolution of the narrative's founding duality is complete, even if the film only gestures toward it in the closing moments rather than depicting it at length." + }, + "17": { + "label": "Where we go from there is a choice I leave to you", + "description": "The film ends on liberated possibility. Neo flies into the sky, free from the constraints of the code, from doubt, from gravity itself. His freedom is not domestic peace but the freedom of mission: knowing who he is and what he must do, acting from certainty rather than fear. The narrative closes not as a circle returning to its origin but as a trajectory launched outward, leaving the question of what comes next as a deliberate structural opening rather than an unresolved thread." + } + } + } + ] + }, + "kg-modal-lion-king": { + "ttlFile": "the-lion-king.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/the-lion-king/monomyths/simba-journey", + "label": "Simba's Hero's Journey in The Lion King", + "stages": { + "1": { + "label": "Everything the light touches", + "description": "Mufasa leads the young Simba to the summit of Pride Rock at dawn and reveals the kingdom spread before them, declaring that everything the light touches belongs to their domain and will one day pass to Simba as king. The call is not a rupture in the ordinary world but a formal investiture of destiny delivered by the reigning authority himself, framing the hero's journey as the assumption of an inherited obligation rather than the pursuit of an unknown summons.", + "semiotic": { + "label": "Investiture as call divergence", + "rationale": "Campbell's call to adventure is frequently marked by rupture: an intrusion, summons, or destabilizing event that tears the hero from the ordinary world toward an unknown domain. The Lion King reframes this sign-system as dynastic investiture rather than disruption. Mufasa's lesson on Pride Rock functions as a ceremonial transmission of sovereignty, where destiny is formally named within the existing social order rather than announced from outside it. The semiotic center of the call shifts from external interruption to institutional designation: the hero is not recruited away from home but positioned within a lineage, a territory, and a law of responsibility that already precedes him. The divergence preserves Campbell's structural function, initiating the journey through binding obligation, while relocating its meaning from adventurous departure to inherited vocation." + } + }, + "2": { + "label": "The great kings will always be there to guide you", + "description": "On the evening before the stampede, Mufasa tells Simba that the great kings of the past look down from the stars and will always be there to guide him. The lesson is intimate and tender, embedded in a father-son conversation about bravery rather than delivered as a ritual endowment of magical instruments. Its full significance lies dormant throughout the hero's exile, activating only when Rafiki leads Simba to the reflecting pool and the ghostly vision that completes the circuit between mortal teaching and ancestral intervention.", + "sequential": { + "label": "Aid before crisis divergence", + "rationale": "Mufasa's lesson about the great kings arrives embedded in the ordinary world before the crisis that will shatter it, rather than appearing after the hero has crossed the threshold and entered the special world. The aid is further split across two temporal moments separated by the entire arc of exile: the cosmological framework is planted here as a quiet paternal intimacy, but it lies dormant for years until Rafiki's shamanic mediation and Mufasa's ghostly apparition activate it during the atonement." + }, + "semiotic": { + "label": "Ancestral cosmology divergence", + "rationale": "Campbell's supernatural aid typically takes the form of a wizard, crone, ferryman, or divine messenger who equips the hero with specific talismans or wisdom before the threshold is crossed. The Lion King replaces this Western mythological inventory with an African cosmological framework in which the dead persist as ancestral presences embedded in the natural world itself, watching from the stars and accessible through shamanic mediation. The aid is not a discrete gift bestowed by a singular figure but a continuous spiritual infrastructure that the hero must learn to perceive and trust. The semiotic shift from individual magical helper to communal ancestral network reframes the supernatural as relational rather than transactional, and the aid as something the hero must grow into rather than simply receive." + } + }, + "3": { + "label": "What have you done?", + "description": "Scar orchestrates Mufasa's death in the wildebeest stampede and immediately turns to the traumatized cub with a calculated accusation: what has Simba done? The prince, who had been lured into the gorge as bait, internalizes the guilt completely and accepts that he is responsible for his father's death. The refusal of the call is not the hero's independent hesitation before the unknown but a manufactured psychic wound imposed by the Shadow, converting Simba's eagerness into shame and his birthright into a burden he believes he has forfeited.", + "narrative": { + "label": "Manufactured exile divergence", + "rationale": "Campbell's refusal typically originates in the hero's own psyche: fear, attachment, inadequacy, or simple inertia. The Lion King externalizes the mechanism entirely: Scar engineers both the trauma (Mufasa's murder) and the interpretive frame (Simba's guilt), manufacturing a refusal that the hero experiences as authentic self-judgment but that is in fact an act of narrative sabotage by the Shadow. This produces a refusal that is at once more absolute and more fragile than the canonical form: absolute because Simba's guilt is total and unquestioned for years, fragile because it rests on a factual lie that, once exposed, dissolves the refusal entirely. The divergence reflects the film's investment in deception as a structural engine, where the hero's journey is arrested not by his own limitations but by a false story imposed upon him." + } + }, + "4": { + "label": "Run away and never return", + "description": "Scar commands the grief-stricken cub to flee the Pride Lands and never return, then dispatches the hyenas to ensure the exile is permanent. Simba runs blindly through thornbush and scrubland until the grasslands give way to open desert. The crossing is not a heroic commitment to adventure but a panicked flight driven by manufactured guilt, and the threshold itself is marked not by a guardian's challenge but by the landscape's indifference: the Pride Lands simply end, and the emptiness beyond offers no welcome and no promise." + }, + "5": { + "label": "You're an outcast, that's great, so are we", + "description": "Simba collapses in the desert and is discovered near death by Timon and Pumbaa, who revive him and recognize in his exile a mirror of their own marginality. The prince who was to inherit a kingdom is swallowed whole by anonymity: his royal identity is irrelevant in the jungle, his past is actively suppressed, and the community that adopts him values him precisely for what he no longer claims to be. The symbolic death of the former self is achieved not through violence or containment but through the gentler annihilation of simply being forgotten." + }, + "6": { + "label": "Hakuna Matata", + "description": "The film compresses Simba's entire adolescence and early adulthood into a musical montage of carefree indulgence: eating grubs, sleeping in the open, swimming in waterfalls, growing from cub to full-maned lion without crisis or conflict. The road of trials is inverted into a road of pleasures, where the ordeal is not suffering but the absence of it, and the danger lies in the progressive erosion of purpose that comfort produces. Each year of untroubled contentment deepens Simba's distance from his identity and makes the eventual return more difficult, not less.", + "narrative": { + "label": "Idyll as ordeal divergence", + "rationale": "Campbell's road of trials strips the hero of illusions through suffering, failure, and encounter with forces greater than the self. The Lion King replaces this gauntlet with an extended paradise: years of ease, friendship, and philosophical contentment that never once test Simba's physical courage. The ordeal is hidden inside the comfort, operating as a slow anaesthetic that numbs the hero's sense of purpose and identity without his awareness. The film suggests that the most dangerous trial is not the one that breaks the hero but the one that never arrives, leaving the hero intact but hollow, capable but unmotivated, and progressively less able to recognize the difference between peace and avoidance." + } + }, + "7": { + "label": "Can you feel the love tonight", + "description": "Nala arrives in the jungle unexpectedly, and the reunion between the two childhood friends unfolds into romantic recognition over the course of a single evening. The encounter restores something Simba had lost access to, a witness to his real identity who knew him before exile redefined him. Nala embodies the nurturing totality Campbell describes not through divine abstraction but through the concrete insistence that Simba is still the lion she grew up with, and that the kingdom he abandoned still needs him.", + "semiotic": { + "label": "Goddess as relational recognition divergence", + "rationale": "Campbell's meeting with the goddess is often coded through a mythic or numinous feminine figure who mediates totality, unconditional affirmation, and a glimpse of ontological wholeness. The Lion King preserves that structural function but translates its sign system from divine apparition to relational recognition: Nala is not a supernatural goddess, but a historical witness who knows Simba before, during, and against the identity fracture produced by exile. Her significance is goddess-like in effect rather than in ontology. She restores to the hero an image of himself that neither guilt nor self-erasure can fully destroy, and she binds eros, memory, and ethical vocation into one encounter. The semiotic shift is from transcendental feminine symbol to intersubjective recognition, retaining Campbell's integrative meaning while grounding it in social relation, political responsibility, and the concrete world of the Pride Lands." + } + }, + "8": { + "label": "You're not the Simba I remember", + "description": "Nala confronts Simba with the devastation Scar has wrought on the Pride Lands and demands he return to reclaim the throne. The temptation the hero faces is not a seductive figure but the entire worldview he has internalized during exile: Hakuna Matata, the philosophy of no worries and no responsibility, which now functions as an ideology of avoidance dressed in the language of liberation. Simba's resistance to Nala's plea reveals how deeply the years of comfortable denial have rooted, making the temptation structural rather than personal and the seduction a matter of identity rather than desire.", + "narrative": { + "label": "Philosophy as seduction divergence", + "rationale": "The temptation that arrests Simba's journey is not embodied in a seductive figure but in a comprehensive worldview. Hakuna Matata functions as a complete ethical system that reframes irresponsibility as wisdom and disengagement as enlightenment, offering the hero not momentary pleasure but a permanent alternative identity. The seduction is therefore structural rather than episodic: Simba does not resist a single encounter but must reject an entire way of being that he has practiced for years and that his closest companions sincerely endorse. This makes the temptation both more insidious and more sympathetic than Campbell's archetype typically allows, because the philosophy is not malicious. It is simply insufficient for someone whose obligations extend beyond himself." + }, + "semiotic": { + "label": "Temptation as worldview divergence", + "rationale": "Campbell encodes the temptation stage through a gendered semiotic register: the feminine as the locus of desire, attachment, and worldly entanglement that threatens to bind the hero to the flesh rather than the spirit. The Lion King dissolves the gendered sign entirely and replaces it with a philosophical system, \"Hakuna Matata\", that operates as a complete counter-narrative to the hero's destiny. The temptation is semiotic in the deepest sense: it is not a person, an object, or even a moment, but a language for interpreting experience that renders responsibility invisible and contentment self-justifying. The shift from feminine figure to impersonal philosophy reflects both the film's investment in ideology as a narrative force and its departure from the gendered cosmology that Campbell's comparative mythology inherits." + } + }, + "9": { + "label": "I can't go back", + "description": "Simba tells Nala plainly that he cannot go back, and the refusal is not the reluctance of a hero who has tasted transcendence and prefers to linger in bliss, but the paralysis of one who believes himself complicit in the catastrophe he would need to repair. The weight holding him in place is guilt rather than contentment, and the paradise he clings to is not the special world's reward but a shelter from the ordinary world's judgment. His refusal is genuine and deeply felt, rooted in a lie he has carried since childhood.", + "sequential": { + "label": "Early refusal of return divergence", + "rationale": "The Refusal of the Return is canonically the twelfth stage, occurring after the hero has obtained the Ultimate Boon and must decide whether to bring it back. In The Lion King, the refusal surfaces at narrative position nine, before the Atonement with the Father and the Apotheosis, embedded within the Initiation act rather than opening the Return. This displacement reflects the film's particular architecture of guilt: Simba's reluctance to return does not stem from having achieved transcendence and preferring to remain in bliss, but from having never completed the Initiation at all. His refusal is a symptom of arrested development rather than post-transformative reluctance, and it must be overcome before the remaining Initiation stages can proceed. The displacement has a cascading effect, shifting the Atonement and Apotheosis each one position forward in the narrative sequence." + } + }, + "10": { + "label": "Remember who you are", + "description": "Rafiki tracks Simba into the wilderness after his refusal of Nala's plea and leads him to the edge of a still pool, where an invitation to look harder at his own reflection yields not his face but his father's. The vision does not stop there: the sky cracks open and Mufasa's ghostly form fills the clouds above him, calling down to his son across the boundary that death has placed between them. The dead king does not console, instead he names what the years of exile have cost: the slow dissolution of identity that comfort and avoidance have accomplished and the distance between the lion Simba has become and the one he actually is, closing with a charge that is simultaneously a command, a recognition, and an act of love, demanding that Simba recover the self he has abandoned." + }, + "11": { + "label": "I know what I have to do", + "description": "Simba tells Rafiki that he knows what he must do, but acknowledges that going back means facing his past. Rafiki strikes him over the head with his stick and asks what it matters, since it is in the past. The moment of divine knowledge is rendered as a sudden, visceral clarity rather than a sustained state of blissful rest: Simba does not transcend the categories of his existence so much as he finally accepts them, recognizing that the pain he has been fleeing is the very ground on which he must build. He turns toward the Pride Lands and begins to run." + }, + "12": { + "label": "We're going to fight your uncle for this?", + "description": "Simba races across the savanna toward the Pride Lands with Nala, Timon, and Pumbaa joining the charge. The journey inverts the canonical flight: the hero does not flee the special world carrying a prize, but rather hurtles toward the site of his unresolved trauma carrying nothing but recovered intention. The devastation he encounters on arrival confirms the urgency: the Pride Lands under Scar's reign have become a wasteland of stripped earth and bleached bone, the kingdom's decay a visible measure of how long the hero's absence has lasted.", + "narrative": { + "label": "Flight as advance divergence", + "rationale": "The hero advances toward the source of his unresolved trauma rather than fleeing from it, empty-handed and unpursued. The canonical figure escapes the special world bearing a stolen prize with the guardians of the inner realm at his heels; here the directional logic is reversed at every register. The peril lies at the destination rather than in what trails behind, and the propelling force is the gravity of confrontation rather than of escape. The traversal between worlds is preserved, but its tension is redistributed from the space being left to the space being entered." + }, + "sequential": { + "label": "Flight toward danger divergence", + "rationale": "The stage is pulled earlier than its canonical placement, arriving before the climactic prize is won rather than after. The displacement belongs to a broader compression where the prize itself is deferred toward the journey's end, forcing the surrounding stages to contract and rearrange. The traversal thus enters a region where the conventional order has been folded into a single integrated push toward confrontation and recovery, rather than preserved as a discrete movement following the achievement of the quest." + } + }, + "13": { + "label": "Simba, you have to help us", + "description": "The battle for Pride Rock becomes a collective effort. Timon and Pumbaa create a diversionary hula dance to scatter the hyena sentries. Nala leads the lionesses into open combat. Rafiki dispatches opponents with his ceremonial staff. The rescue is not an extraction of the hero from peril but the convergence of every community that shaped him, exile companions and natal pride alike, fighting together on his behalf. The hero who had once been told he was alone in his guilt discovers that he has never been without allies, and that the two worlds of his divided life are willing to unite behind his cause." + }, + "14": { + "label": "Tell them the truth", + "description": "Scar corners Simba at the edge of Pride Rock and forces him to confess before the pride that he killed Mufasa, savoring the repetition of his original manipulation. But when Simba dangles over the flames and Scar whispers the truth, that he himself killed Mufasa, the revelation shatters the psychic architecture that has held the hero captive since childhood. Simba surges back and forces the public confession that liberates him. The ultimate boon is not an object or a power but a truth: the hero's innocence, restored to him in the same instant that the kingdom's betrayal is made visible to all.", + "sequential": { + "label": "Boon during return divergence", + "rationale": "The Ultimate Boon is canonically the eleventh stage, closing the Initiation act. In The Lion King it arrives after the Magic Flight and the Rescue from Without have already begun the Return sequence. This displacement of three positions is the most significant sequential divergence in the film's monomyth realization. The Initiation's climactic achievement is deferred into the Return because the boon, Simba's innocence and the public unmasking of Scar, is locationally and socially bound: it can only be obtained at Pride Rock, before the assembled pride, in the presence of the villain whose confession produces it. The narrative thus braids the end of Initiation into the middle of Return, collapsing the two acts into a single dramatic sequence." + }, + "semiotic": { + "label": "Boon as public revelation divergence", + "rationale": "The prize takes the form of a truth that exists only in the moment of its public utterance, with no being apart from the audience and adversary at whose meeting it is spoken into existence. The canonical archetype imagines this acquisition as a portable artifact, a grail, an elixir, a fire, that the hero seizes within the special world and carries back to the community left behind. The shift is from material relic to performative disclosure, from a thing brought home to a thing brought into being, available only at the threshold where it is said." + } + }, + "15": { + "label": "It is time", + "description": "With Scar defeated and cast from Pride Rock, Rafiki approaches Simba and gestures toward the summit with three quiet words: it is time. Simba ascends the rain-slicked promontory alone, each step a visible integration of the exile's hard-won self-knowledge with the prince's inherited obligation. At the peak he roars into the storm, and the assembled pride roars in answer. The threshold is not a boundary between two worlds but a vertical axis between earth and sky, and crossing it requires the hero to stand where his father once stood, claiming the place not as an inheritor but as one who has earned it through suffering, loss, and return." + }, + "16": { + "label": "A king's time rises and falls like the sun", + "description": "The rain falls on the scorched Pride Lands and green begins to return, the landscape itself responding to the restoration of rightful sovereignty. Simba now holds both registers of his experience simultaneously: the carefree wisdom of the jungle years, which taught him that not everything requires gravity, and the weight of the crown, which demands that some things do. Mufasa's early teaching that a king's time rises and falls like the sun is no longer an abstraction but a lived truth. The hero who fled one world and was absorbed by another has returned as the equilibrium point between them, neither denying his exile nor being defined by it." + }, + "17": { + "label": "The Circle of Life", + "description": "The film closes by returning to its opening image: Rafiki lifts a newborn cub above the assembled kingdom at the summit of Pride Rock as the sun rises and the animals gather below in recognition. The circle of life has completed one full revolution. Simba stands where Mufasa once stood, no longer fearing the cycle of succession that once seemed to demand his father's erasure. The freedom the hero has attained is not freedom from mortality or obligation but freedom within them: the capacity to occupy his place in the cycle without clinging to it, knowing that his own time too will rise and fall, and that the pattern will hold." + } + } + } + ] + }, + "kg-modal-call-of-wild": { + "ttlFile": "the-call-of-the-wild.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/the-call-of-the-wild/monomyths/buck-journey", + "label": "Buck's Hero's Journey in The Call of the Wild", + "stages": { + "1": { + "label": "Stolen from sun and soft living", + "description": "Buck lives as the undisputed lord of Judge Miller's estate in the Santa Clara Valley: swimming, hunting, carrying the grandchildren on his back. One night Manuel, the gardener's helper, slips a rope around Buck's neck and delivers him to a stranger at the railroad station. Buck is crated, loaded onto a train, transferred to a truck, and shipped northward, his world collapsing into the darkness and confinement of a cage he does not understand and cannot escape.", + "semiotic": { + "label": "Abduction as summons divergence", + "rationale": "Buck's ordinary world is shattered not by a sign or a messenger but by a rope, a crate, and a train. No agent of destiny speaks to him; the universe rearranges itself around him through economic violence motivated by gold-rush demand for strong dogs. The semiotic register shifts from the numinous to the mercantile, from a summons freighted with vocation to a commercial transaction in which the hero is the commodity. The structural function is fully preserved, the familiar world is irrevocably disrupted, but the vocabulary through which disruption is encoded belongs entirely to the language of property and exchange rather than the language of fate." + } + }, + "2": { + "label": "A red-eyed devil", + "description": "Delivered to a man in a red sweater in a yard behind a saloon in Seattle, Buck explodes from his crate in a fury of teeth and muscle. He charges the man again and again, a red-eyed devil snarling and frothing, and is clubbed to the ground each time until he can no longer stand. He is not broken, but he has learned something fundamental: a man with a club is a lawgiver to be obeyed, though not necessarily conciliated.", + "narrative": { + "label": "Resistance not refusal divergence", + "rationale": "Buck fights the man in the red sweater not because he hesitates before a destined journey but because he has been kidnapped and beaten, and the only response his nature permits is violence. There is no psychological interiority to his resistance, no weighing of options, no recognition that a call has been issued, because a non-human protagonist cannot refuse a summons he does not conceptually apprehend. The resistance functions as a refusal only retrospectively, once the journey's shape becomes legible, and the lesson Buck extracts from defeat, obedience to superior force, is a survival adaptation rather than a decision to engage with destiny. Where the archetype expects a hero who knows what is being asked and turns away, London offers an animal who has no framework for understanding what is happening to him and fights on instinct alone." + } + }, + "3": { + "label": "The law of club and fang", + "description": "Fran\u00e7ois and Perrault buy Buck and harness him to the sled team. The experienced dogs Dave and Sol-leks teach him through proximity and imitation: how to pull in trace, how to dig a sleeping hole in the snow, how to break ice from between his toes. The lesson of the man in the red sweater deepens into a general law. Brute force governs this world, and survival belongs to those who learn its grammar quickly and adapt without sentimentality.", + "semiotic": { + "label": "Violence as instruction divergence", + "rationale": "Buck's preparation for the threshold takes the form of brutal pedagogy: club blows from the man in the red sweater and the imitative example of dogs who have already adapted. The protective, gift-bearing figure traditional to the archetype is replaced by an indifferent environment that teaches through consequences rather than through care. The semiotic register is coercive and Darwinian where the archetype expects the sacred and the benevolent, yet the structural function endures with precision: the hero receives exactly what is needed to survive the crossing. What shifts is the sign system, from talisman to trauma, from endowment to discipline, reflecting London's naturalist conviction that the world instructs through force, not generosity." + } + }, + "4": { + "label": "That first day on the Dyea beach", + "description": "Buck steps off the deck of the Narwhal onto the Dyea beach in Alaska and the known world ends. The snow under his feet is the first he has ever touched. Dogs are fighting savagely around him, and within minutes he watches Curly, a friendly Newfoundland he had befriended on the ship, knocked down and torn apart by the pack. The lesson is immediate and absolute: fall and you are finished, for this is the law of club and fang extended to its conclusion." + }, + "5": { + "label": "Where had the snow-surface gone?", + "description": "After his first day of pulling in harness, Buck searches desperately for shelter. The tent is closed to him; the snow offers nothing. He stumbles over a mound and discovers his teammates buried beneath the surface, warm in their snow-nests. He digs his own hole and sleeps. In the morning he wakes in total darkness, panics, and bursts upward through the snow into the grey dawn. For a moment he has no idea where or what he is. The dog who slept on the Judge's hearth has been swallowed by a world that buries its inhabitants each night and demands they claw their way back to the surface each morning." + }, + "6": { + "label": "The dominant primordial beast", + "description": "Buck learns to steal food without getting caught, to sleep warm in the deepest cold, to break trail through crusted snow. He grows cunning and efficient, every wasted movement shed. The rivalry with Spitz sharpens across weeks of escalating confrontation until they fight in the open under the aurora, and Buck kills him, claiming the lead position. He serves under Fran\u00e7ois and Perrault, then under a Scotch half-breed on the mail run, then under Hal, Charles, and Mercedes, whose ignorance starves the team and drives them into the spring ice. Each master strips another layer of the domestic animal away, exposing something older and harder underneath." + }, + "7": { + "label": "Love genuine and true", + "description": "Hal beats Buck to force him onto the rotten spring ice. Buck refuses to move. John Thornton steps in, cuts Buck's traces, and tells Hal to leave or be hit himself. Hal's party drives on and the ice gives way beneath them. Thornton nurses Buck back to health, and what grows between them is described as love, fervid and burning, that runs deeper than anything Buck has known: he will lie for hours at Thornton's feet gazing up at his face, and Thornton will seize Buck's head, rest his own against it, and shake him back and forth murmuring soft curses as endearments. Buck saves Thornton from drowning in a river rapid. He wins Thornton a thousand-dollar wager by breaking a half-ton sled free from the ice by sheer pulling force.", + "semiotic": { + "label": "Interspecies love as totality divergence", + "rationale": "The nurturing totality that reveals the deepest ground of existence to the hero takes the form of interspecies devotion between a dog and a rugged male frontiersman. The semiotic shift operates on three axes simultaneously: gendered, since the archetype's feminine divine figure becomes a masculine human companion; ontological, since the encounter crosses the species boundary rather than the boundary between mortal and divine; and in register, since rough physical affection and murmured curses as endearments replace the numinous and the sacred. Thornton's love is nonetheless the most complete acceptance Buck has ever known, preserving the structural function with remarkable precision while conducting it entirely through London's naturalist vocabulary of embodied loyalty and physical interdependence." + } + }, + "8": { + "label": "The call sounding in the depths of the forest", + "description": "While Thornton prospects for gold in a lost valley, Buck ranges farther and farther into the surrounding wilderness. He hunts, fishes, runs alongside a timber wolf for days, and each time the pull of the forest grows stronger. Yet each time he returns to Thornton's camp, because the love he bears this one man outweighs the instinct calling him outward. The pattern repeats across weeks and months: departure, deepening immersion in the wild, and then the gravitational pull of devotion dragging him back to the campfire. What holds the hero in place is not comfort or ignorance but the purest bond he possesses.", + "semiotic": { + "label": "Fidelity as seduction divergence", + "rationale": "The force holding Buck at the campfire is not desire or worldly comfort but the single most admirable quality he possesses: his love for Thornton. The semiotic register encodes temptation as interspecies loyalty rather than feminine allure or sensual entanglement, so that resisting the call and betraying the hero's deepest bond become, for the duration of Thornton's life, the same act." + } + }, + "9": { + "label": "The hairy man crouching by the fire", + "description": "As Buck sleeps by the campfire, visions surface with increasing vividness. He sees a short-legged, hairy man crouching beside a different fire in a different age, fearful of the darkness beyond the flame's reach. He dreams of running with this figure through primeval forests, of hunting in vast open spaces, of the terror and the exhilaration of a world before domestication. The visions are not willed; they arrive as ancestral memory asserting itself through the body's deep time, and they grow more insistent and more detailed as the weeks pass until the boundary between Buck's waking life and the evolutionary past thins almost to transparency.", + "semiotic": { + "label": "Evolutionary memory as father divergence", + "rationale": "The paternal authority that Buck must confront and absorb is not a singular figure but the entire evolutionary past of his species, accessed through involuntary visions during sleep rather than through a dramatic face-to-face reckoning. The semiotic register shifts from the personal and the patriarchal to the biological and the collective: the throne room becomes a campfire in deep time, judgment becomes the pressure of natural selection, and the hero's wilful submission to a father's power becomes an involuntary yielding to instinct encoded in the body itself. The encounter is diffuse and cumulative where the archetype demands concentrated crisis, its authority distributed across weeks of deepening visionary experience rather than compressed into a single transformative confrontation." + } + }, + "10": { + "label": "Patient as the wild itself", + "description": "Buck selects a great bull moose, wounded and separated from the herd, and hunts it alone across four days and four nights. He cuts the moose off from water, harasses it when it rests, drives away the younger bulls that try to rejoin it, and waits with a patience that is no longer a dog's patience but something far older. When the moose finally collapses, Buck kills it and feeds, then rests beside the carcass for a day and a night, utterly at home in the silence. Every faculty he possesses, the strength, the cunning, the endurance, the ancestral instinct, converges in this single sustained act, and what emerges from it is not the animal who entered the hunt but something more complete." + }, + "11": { + "label": "The blood-longing", + "description": "Buck returns from the moose hunt to find Thornton's camp destroyed. The Yeehats have killed Thornton, Hans, and Pete, and their dogs lie dead or dying by the wrecked campsite. Buck follows the scent trail to the Yeehat camp and attacks, tearing through the group with a fury that scatters those it does not kill. He returns to the ruined camp and stays beside Thornton's body through the night. What has been obtained is not an object, a power, or a piece of wisdom carried back from the special world, but total severance: the single bond that held the hero to the human world is gone, and with it every reason to remain anything other than what the journey has been making him.", + "narrative": { + "label": "Boon through severance divergence", + "rationale": "Thornton's death does not give Buck something new but removes the final obstacle to what he has already become. The supreme achievement of the journey is defined by subtraction rather than acquisition: the severing of the one attachment still powerful enough to arrest the transformation, not a grail or an elixir seized from the depths and carried home. The narrative economy is inverted accordingly. Rather than producing a portable treasure that the hero must transport back across the threshold, the entire arc of initiation produces a creature who no longer needs, or is able, to carry anything back. The boon and the loss are the same event, and the hero's reward is indistinguishable from the destruction of everything that once tethered him to the world he is leaving behind." + } + }, + "12": { + "label": "The last tie was broken", + "description": "A wolf pack emerges from the forest and Buck confronts them, fighting off the boldest until the pack recognizes his strength and accepts him. The last tie to the human world has been broken. There is no hesitation, no backward glance, no lingering at the threshold between worlds. Buck joins the pack and runs.", + "narrative": { + "label": "Permanent refusal divergence", + "rationale": "Buck achieves his destiny by refusing to return, and the refusal is never overcome because it is not an obstacle within the journey but the journey's conclusion. The novel's one-way trajectory, from civilization toward wildness without reversal, transforms what is conventionally a transient hesitation, soon dissolved by dramatic necessity or external intervention, into a permanent condition. The distinction between refusing the return and completing the journey collapses entirely. A circular architecture in which the hero must bring the boon home is structurally incompatible with a story whose central argument is that the hero's true home was always the place civilization taught him to forget, and that arriving there is not a detour from the path but the path's destination." + } + }, + "13": { + "label": "The trail runs only forward", + "description": null, + "narrative": { + "label": "Absent flight divergence", + "rationale": "Buck has seized nothing portable and flees from nothing. His transformation is not an artefact that can be stolen or pursued but an ontological change that the special world has produced in him, irreversible and non-transferable. No guardians give chase because the wild does not lose what it claims; it gains a member. A perilous escape carrying a hard-won prize presupposes a hero whose trajectory bends homeward, and Buck's trajectory bends only deeper into the territory he is becoming part of. The directionality that the stage requires is simply unavailable to this narrative." + } + }, + "14": { + "label": "No voice calls him back", + "description": null, + "narrative": { + "label": "Absent rescue divergence", + "rationale": "The sole human who might have reached across the threshold to retrieve Buck is dead, and no other figure from the domestic world has either the knowledge or the motivation to attempt it. The absence is not an omission but a thematic necessity rooted in London's naturalist framework: the forces acting on an organism are impersonal and irreversible, nature does not yield its converts back to civilization, and sentimental retrieval is simply not available as a narrative possibility. A community invested in the hero's return would require a world that misses him, and by this point the only world that registers Buck's presence is the one he has joined, not the one he has left." + } + }, + "15": { + "label": "The Ghost Dog", + "description": "Each year when the days grow long, Buck visits the valley where Thornton died. He stands motionless beside the stream for a time, muzzle raised, then howls once, long and mournful, before returning to the pack. The Yeehats speak of a Ghost Dog that haunts the valley and kills any hunter who camps there alone. The threshold is crossed, but in the wrong direction: the hero has not returned from the special world into the ordinary one but has passed permanently beyond the boundary that separates them, re-entering the ordinary world only as a phantom, a rumour, a figure of dread.", + "narrative": { + "label": "Inverted return divergence", + "rationale": "Buck crosses the threshold permanently in the wrong direction. His annual return to the valley where Thornton died is not a re-entry into the human world but a ritual visitation from outside it, witnessed only as absence, the empty valley, and aftermath, dead hunters who ventured too close. Rather than dissolving the boundary between worlds through hard-won mastery, the crossing reinforces it: the threshold now separates a ghost from the living rather than a traveller from home. The inversion is the novel's most direct structural claim against the circular journey. Buck's nature runs counter to the trajectory of human civilisation, and authentic freedom, London insists, lies in completing the crossing rather than reversing it." + } + }, + "16": { + "label": "Fear and mystery", + "description": "The Yeehats alter their hunting routes to avoid the haunted valley and weave the Ghost Dog into their legends: a spectral beast of enormous size that runs at the head of the wolf pack. Buck exists simultaneously as the sovereign of the wild pack and as a figure in human oral tradition, inhabiting both worlds not through choice or mastery but through the ineradicable trace his passage has left on each. He does not mediate between the two realms; he is simply, irreducibly present in both, one as flesh and one as story.", + "narrative": { + "label": "Mastery without consciousness divergence", + "rationale": "Buck inhabits both worlds simultaneously but without awareness or intention: he is sovereign of the wolf pack in one and a figure of dread woven into Yeehat oral tradition in the other. The two presences are entirely disconnected. Buck does not mediate between realms or move freely across the boundary; the human world constructs a myth around his absence while he lives indifferent to it. What looks like dual mastery is an accident of narrative perspective rather than something the hero achieves." + } + }, + "17": { + "label": "Running at the head of the pack", + "description": "Buck runs at the head of the wolf pack through the pale moonlight, splashing through broad flats of shallow water where the timber wolves drink. He sings a song of the younger world, a song of the pack. He is fully alive, fully present, released from the domesticated past and unburdened by any obligation to return to it. The freedom he possesses is not the freedom of a hero who has reconciled two worlds but the freedom of one who has chosen entirely, surrendered nothing he still wanted, and arrived at the place the entire journey was leading him." + } + } + } + ] + }, + "kg-modal-rostam": { + "ttlFile": "rostam-haft-khan.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/rostam-haft-khan/monomyths/rostam-journey", + "label": "Rostam's Hero's Journey (19-Step Chronology)", + "stages": { + "1": { + "label": "The Plea from Mazandaran", + "description": "After the death of King Kay Qobad, the greedy King Kay Kavus takes the throne. A demon singer sent by Ahriman lulls him with songs of Mazandaran's beauty, prompting Kavus to invade. The invasion ends in disaster when the White Demon rains stones on the army and strikes them blind with sorcery. Imprisoned in a pit, Kavus smuggles a letter to Zal, begging for Rostam to come and save the army and the crown." + }, + "2": { + "label": "Rostam's Immediate Acceptance", + "description": "The narrative contains no hesitation or refusal. Rostam, already a fully realized epic hero, responds immediately to the Shah's plea. His choice of the more dangerous 'Short Path' reinforces that the story prioritizes heroic duty and action over psychological conflict, making refusal structurally incompatible with the narrative." + }, + "3": { + "label": "Zal's Gifts and Rakhsh's Loyalty", + "description": "Zal provides Rostam with his heavy mace and leopard-skin armor (Babr-e Bayan) which is invulnerable to fire and water. Most importantly, Rostam is aided by his legendary steed, Rakhsh, a horse of incredible strength and intelligence who can kill lions and fight alongside his master.", + "narrative": { + "label": "The Intervention of Rakhsh", + "rationale": "Aid is provided not only by a mentor but by a sentient animal ally who possesses independent agency and saves the hero multiple times." + } + }, + "4": { + "label": "The Edge of Mazandaran", + "description": "Rostam leaves the Iranian court and enters the borderlands of Mazandaran. By choosing the 'Short Path' beset with baleful things, he moves away from the safe world into a land of sorcery. Rakhsh gallops so fast that the ground vanishes beneath them, covering a two-day journey in twelve hours." + }, + "5": { + "label": "Sleep in the Lion's Lair", + "description": "Exhausted, Rostam makes a couch among the reeds to sleep, unaware that he has laid down in the lair of a fierce lion. This moment of deep, unprotected slumber in the heart of enemy territory represents his total immersion in the danger of Mazandaran, where his human awareness is completely suspended.", + "semiotic": { + "label": "The Marshland Ordeal", + "rationale": "The 'whale' is not a physical interior but the semiotic state of deep sleep in a predator-filled marshland, marking the threshold of death." + } + }, + "6": { + "label": "The Lion, the Ram, and the Dragon's Attack", + "description": "Labor 1: While Rostam sleeps, a lion attacks. Rakhsh independently fights and kills the beast by stomping its head and biting its neck. Labor 2: Rostam collapses in the desert from thirst; after he prays, a fat wild ram appears, and he follows it to a hidden spring. Labor 3: An eighty-foot dragon attacks his camp thrice. Initially invisible, God eventually grants Rostam light to see the beast, allowing him to decapitate it while Rakhsh bites its scales.", + "semiotic": { + "label": "The Appearance of the Ram", + "rationale": "Khan 2 is a trial of faith; victory is delivered via a semiotic sign (the ram) rather than the hero's own strength." + } + }, + "7": { + "label": "Absence of a Feminine Archetype", + "description": "The narrative not only lacks a nurturing feminine figure but actively inverts the archetype. The only prominent feminine presence is a demonic sorceress who deceives and attacks Rostam. This replaces the 'Goddess' as a source of unity or wisdom with a figure of illusion and danger, reflecting the epic's moral polarity rather than symbolic integration." + }, + "8": { + "label": "The Sorceress's Deception", + "description": "Labor 4: Rostam finds a magical banquet with wine and a lyre. He plays and sings of his wanderings. A sorceress disguised as a beautiful damsel joins him. However, when Rostam offers her wine in the name of the Creator (Ormuzd), the holy name forces her to reveal her true, hideous form. Rostam lassos the demon-witch and cleaves her in half with his sword.", + "semiotic": { + "label": "The Invocation of God", + "rationale": "Temptation is broken through the name of the Creator, framing the stage as an ontological reveal of the demonic rather than a moral struggle." + } + }, + "9": { + "label": "Captivity and Conquest of Olad", + "description": "Labor 5: After Rostam lets Rakhsh graze in a field, the keeper beats Rostam's feet with a stick. Rostam wakes and tears the man's ears off. The champion Olad (Aulad) arrives with an army to avenge the keeper. Rostam routs the army single-handedly, lassos Olad, and binds him, promising him the throne of Mazandaran if he acts as a guide to find the White Demon's cave.", + "narrative": { + "label": "Olad as a Conquered Herald", + "rationale": "Rostam 'seizes' his guidance from the enemy world by conquering and binding Olad, forcing the Shadow to serve as his Herald." + }, + "sequential": { + "label": "Recurring Ordeals", + "rationale": "The trials recur after the Temptress stage, violating the linear progression assumed in the canonical monomyth." + } + }, + "10": { + "label": "The Defeat of Arzhang", + "description": "Labor 6: Olad leads Rostam to the camp of the demon general Arzhang. Rostam lets out a roar that shakes the mountains, gallops to Arzhang's tent, tears the demon out by his hair, and rips his head from his shoulders. He hurls the severed head at the demon army, causing 12,000 demons to flee in panic.", + "sequential": { + "label": "Recurring Ordeals", + "rationale": "The trials recur after the Temptress stage, violating the linear progression assumed in the canonical monomyth." + } + }, + "11": { + "label": "Releasing Kay Kavus from the Pit", + "description": "Rostam enters the pit and finds the blind King Kay Kavus. The King, now desperate and repentant, explains that the only cure for their blindness is the blood from the heart and liver of the White Demon. Rostam accepts this final command from his sovereign, setting the stage for the final confrontation.", + "narrative": { + "label": "The Blind King's Ignorance", + "rationale": "The hero does not submit to a powerful father but rescues a blind and foolish one, restoring the authority he has surpassed." + } + }, + "12": { + "label": "The Death of the White Demon", + "description": "Labor 7: Rostam enters the pitch-black cave of the White Demon at noon when the demons sleep. He awakens the mountain-sized giant and they wrestle with such force that blood and sweat run like rivers. Rostam prays to God for strength, lifts the demon, and slams him down, cutting out his liver and heart." + }, + "13": { + "label": "The Restoration of Sight", + "description": "Rostam returns to the blind Shah and his lords. He drops the blood of the White Demon's liver into their eyes. Instantly, the sorcery is broken, and the sight of the King and the entire Iranian army is restored, granting them the 'elixir' of vision and life." + }, + "14": { + "label": "Immediate Departure from Mazandaran", + "description": "Rostam shows no hesitation in returning; he views the demon realm of Mazanderan as a land of filth and sorcery. His duty to Iran and the King necessitates an immediate exit to restore the legitimate order at home, leaving no room for a desire to stay in the supernatural realm." + }, + "15": { + "label": "Defeat of the King of Mazandaran", + "description": "The King of Mazandaran refuses to yield and challenges Rostam. During their duel, the King uses magic to turn his body into an unbreakable stone. Rostam simply picks up the 'King-Stone' and carries it to camp, threatening to grind it to dust with his mace until the King is forced to revert to human form.", + "narrative": { + "label": "The Defeat of the Stone King", + "rationale": "The flight is interrupted by the King of Mazandaran's transformation into stone, requiring a demonstration of mastery over both worlds to resolve." + } + }, + "16": { + "label": "Rostam's Self-Rescue", + "description": "As the 'World-Champion', Rostam is the source of rescue for everyone else; he is so powerful that there is no external force capable of rescuing him. His journey out of Mazanderan is secured through his own military might and dominance over the demons." + }, + "17": { + "label": "The Victorious Return to Iran", + "description": "Rostam and King Kay Kavus return to the Iranian capital, Estakhr. The crossing of the threshold back into the 'Ordinary World' is a grand celebration; the populace fills the streets, throwing gold and wine over the heroes to welcome the restoration of the rightful Shah and the return of their champion." + }, + "18": { + "label": "Fulfillment of the Promise to Olad", + "description": "Rostam fulfills his promise to Olad, giving him the crown of Mazandaran. By doing so, he establishes order in the land of demons while returning to Iran as its savior, having mastered the supernatural perils of Mazandaran and the political duties of the Iranian court.", + "narrative": { + "label": "Ruling Mazandaran", + "rationale": "Mastery is expressed through the political appointment of a demon-ally (Olad) and the restoration of a human king." + } + }, + "19": { + "label": "The Celebration of Victory", + "description": "The Shah and Rostam return to the capital, Estakhr, to a hero's welcome of gold and wine. The land is at peace, and Rostam returns to Sistan, having restored the freedom of his nation and the sight of its King." + } + } + } + ] + }, + "kg-modal-waltermitty": { + "ttlFile": "walter-mitty.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/walter-mitty/monomyths/walter-journey", + "label": "Walter Mitty's Hero's Journey", + "stages": { + "1": { + "label": "Negative 25 is missing", + "description": "Walter Mitty works in the basement photo department of Life magazine as the negative assets manager, carefully cataloguing and processing the work of famous photojournalists while living a deeply repetitive life defined by routine, silence, and elaborate daydreams. He quietly admires Cheryl Melhoff, a coworker in Life Magazine, in online dating profile management, but lacks the confidence even to send her a proper wink through eHarmony because his profile appears empty and unremarkable. At the same time, Life is preparing its final print issue as the company transitions to digital under the supervision of Ted Hendricks, whose restructuring threatens Walter's department. When renowned photographer Sean O'Connell sends his final roll of negatives along with a leather wallet as a personal gift, his note identifies negative #25 as the \"quintessence of life\" and insists it should be the final cover image. Walter discovers the negative is missing. Ted immediately demands its production, transforming Walter's quiet technical responsibility into a crisis that threatens both his career and the symbolic closure of the magazine.", + "semiotic": { + "label": "Call as Professional Crisis divergence", + "rationale": "The call is expressed through a corporate crisis involving the transition from print to digital media." + } + }, + "2": { + "label": "Daydream retreat", + "description": "Faced with Ted's pressure and unable to explain the missing image, Walter retreats into the psychological refuge that has always protected him from confrontation. Throughout the office he repeatedly dissociates into vivid heroic fantasies: imagining himself leaping through exploding buildings, confronting Ted with impossible courage, and performing acts of public confidence impossible for his ordinary self. Rather than searching actively for a solution, he delays, avoids direct answers, and lets his imagination temporarily overwrite reality. This refusal is not spoken aloud but enacted through paralysis and escapism, revealing how deeply his fantasies function as protection against action.", + "narrative": { + "label": "Internalized Refusal divergence", + "rationale": "The refusal is psychological escapism rather than a literal rejection of the call." + } + }, + "3": { + "label": "Clues and encouragement", + "description": "Cheryl notices Walter's distress and encourages him to stop viewing Sean's photographs as isolated negatives and instead read them as clues. Together they examine the remaining images: a weathered thumb bearing a distinctive ring, a fishing vessel, fragments of landscape, and small environmental details that suggest movement across distant places. Cheryl's confidence in Walter's perceptiveness gives him emotional permission to act, while Sean's gift of the wallet implies trust and recognition from someone Walter deeply admires professionally. These clues, combined with Cheryl's quiet encouragement, transform the missing negative from a bureaucratic problem into an interpretable trail.", + "semiotic": { + "label": "Corporate Aid divergence", + "rationale": "A simple gift replaces traditional mythic talismans." + } + }, + "4": { + "label": "Flight to Greenland", + "description": "For the first time in years, Walter abandons hesitation and physically leaves New York. Following the photographic clues, he books a flight to Greenland and enters a world of uncertainty entirely unlike the controlled routines of the Life archive room. This departure marks a literal and symbolic crossing: he moves from observation to participation, from cataloguing other people's adventures to beginning his own." + }, + "5": { + "label": "The Helicopter Leap", + "description": "In Nuuk, Walter tracks down a helicopter pilot whose thumb matches the ring visible in Sean's photograph. He discovers the pilot is intoxicated and preparing to deliver supplies to a ship where Sean had recently been. Terrified and standing on the dock, Walter hesitates. In this suspended moment, he imagines Cheryl appearing and singing David Bowie's \"Space Oddity\", the fantasy transforming his fear into resolve. He boards the helicopter. Mid-flight, he must jump toward the ship below but misjudges the leap and crashes into the freezing North Atlantic. Struggling in the icy water and narrowly escaping a shark, he is pulled aboard by the crew. The plunge functions as both literal survival ordeal and symbolic destruction of his former passive self.", + "narrative": { + "label": "Atlantic Belly divergence", + "rationale": "The 'Whale' is the North Atlantic ocean, representing a literal and symbolic death of the old self." + } + }, + "6": { + "label": "Iceland trek", + "description": "Although Sean is no longer on the ship, Walter discovers a clementine cake wrapper that points toward Iceland. Pursuing this new clue, he travels to Sk\u00f3gar and continues across increasingly dangerous terrain. To move faster, he trades the Stretch Armstrong toy that his sister had bought him for his birthday, for a skateboard owned by a local teenager. He then longboards down an immense winding road through volcanic landscapes, balancing fear and exhilaration. As he races toward what he believes is Sean's location, he experiences something entirely new: confidence generated by action rather than fantasy. Yet despite reaching the region where Sean was seen, he remains just out of reach." + }, + "7": { + "label": "Absent Meeting with the Goddess", + "description": "Unlike traditional heroic narratives, Walter experiences no direct transformative union during this phase. Cheryl remains physically absent from the adventure, existing instead as an internalized source of courage and emotional orientation. Her influence shapes Walter's decisions, but the narrative postpones any actual relational resolution, replacing the classical encounter with a deferred emotional possibility.", + "narrative": { + "label": "Absent Goddess divergence", + "rationale": "The narrative omits a literal meeting with a maternal or divine goddess to prioritize Walter's grounded romantic connection and his search for an elusive mentor." + } + }, + "8": { + "label": "Volcanic retreat", + "description": "As Walter closes in on Sean's location in Iceland, a volcanic eruption destabilizes the region and interrupts his pursuit. Forced to evacuate and unable to continue, he must abandon the search and return to New York empty-handed. This interruption produces a premature collapse of the quest, not because Walter chooses retreat but because external reality imposes it, disrupting the heroic trajectory before resolution can be achieved.", + "sequential": { + "label": "Premature Return divergence (volcanic eruption)", + "rationale": "A physical return occurs halfway through the journey due to external failure, interrupting the canonical sequence." + } + }, + "9": { + "label": "Fired and defeated", + "description": "Back in New York, Walter is humiliated and dismissed by Ted for failing to recover the negative. Still trying to hold onto one meaningful gesture, he visits Cheryl's home to give the skateboard he had carried back from Iceland for her son, as he was interested in skate boarding. There he sees her ex-husband present in the house and assumes she has reconciled with him. Misreading the scene as confirmation that he has failed both professionally and personally, Walter withdraws emotionally. His despair becomes a temptation to return fully to passivity and abandon the transformation he had begun.", + "narrative": { + "label": "Temptation of Despair divergence", + "rationale": "The temptation is the hero's own insecurity and the urge to remain in a safe, defeated state." + } + }, + "10": { + "label": "Discarding the wallet", + "description": "Convinced that his journey has accomplished nothing, Walter visits his mother feeling defeated and directionless. In frustration and self-reproach, he throws Sean's wallet into the trash. This act symbolizes his rejection of the significance of his journey and his inability to recognize that the quest has already transformed him.", + "sequential": { + "label": "Early Refusal of Life divergence", + "rationale": "The hero refuses his new identity early because he perceives his first attempt as a failure." + } + }, + "11": { + "label": "Mother's clue", + "description": "While going through family belongings, Walter stands in front of the piano his father had once bought for his mother\u2014a heavy presence in the room, now a symbol of loss as the family prepares to sell it because he has been fired from Life magazine and can no longer contribute financially. The instrument feels like both a memory and a burden, marking the quiet collapse of stability at home. As he lingers there, Walter recalls one of Sean O'Connell's clue photographs showing a piano in an unexpected setting. The connection clicks into place. He asks his mother whether Sean had ever been there, and she confirms that he had indeed visited their home. In that moment, Walter realizes he had already been given this clue before\u2014but had overlooked it entirely, just as he often overlooks reality while lost in his own thoughts. The piano, both in the photograph and in front of him now, becomes the missing link he failed to interpret. Reassembling the sequence of clues, he understands that Sean's trail leads to the Himalayas, where he is photographing the elusive snow leopard. This quiet domestic revelation becomes the turning point that pulls Walter out of defeat and sets him back into motion, reigniting the pursuit with renewed clarity and purpose.", + "semiotic": { + "label": "Domestic Guide divergence", + "rationale": "The guide is the hero's mother being present to help him and remind him of the event that he has missed regarding the clues, due to being in his head and immaginations." + } + }, + "12": { + "label": "Himalayan trek", + "description": "Walter undertakes a second and more demanding journey, traveling through Afghanistan and trekking into the Himalayas. Unlike his earlier adventures, this passage is quieter and more deliberate. He no longer depends on fantasy for courage; he simply moves forward, demonstrating the practical confidence he has acquired through experience." + }, + "13": { + "label": "The Ghost Cat", + "description": "Walter finally locates Sean high in the mountains as he waits silently for the appearance of the rare snow leopard known as the \"ghost cat\". Their meeting lacks dramatic confrontation. Instead, it unfolds through stillness, patience, and mutual recognition. Sean treats Walter not as an anonymous employee in the photo department but as someone worthy of respect, marking a subtle but profound shift in Walter's self-understanding.", + "semiotic": { + "label": "Artist as Father divergence", + "rationale": "The Father is a secular artist; atonement is achieved through shared professional respect." + } + }, + "14": { + "label": "Leopard lesson", + "description": "When the snow leopard finally emerges, Sean chooses not to photograph it. He explains that some moments are too beautiful to interrupt, telling Walter that \"beautiful things don't ask for attention\". This statement reframes Walter's understanding of value. Meaning lies not in capturing or proving experience, but in inhabiting it fully. The lesson dissolves Walter's need for fantasy as compensation for absence from life." + }, + "15": { + "label": "Conceptual Boon", + "description": "Sean reveals that negative #25 had been inside the wallet he gave Walter all along. When he wrote \"look inside\" in his letter, he meant it quite literally: the photograph was hidden within the wallet itself, unnoticed because Walter never thought to fully examine it. More importantly, the encounter shifts the meaning of the entire journey. The true reward is not the photograph itself, but what Walter has become through the search. In meeting Sean, he reaches a deeper understanding of himself\u2014moving from a passive observer of life to someone who actively participates in it. He gains confidence, presence, and a sense of self-worth no longer dependent on external approval or imagined heroism. This internal change is the real outcome of the quest: the conceptual boon." + }, + "16": { + "label": "Airport security", + "description": "Returning from the Himalayas carrying a traditional instrument gifted by local villagers, Walter is detained by airport security in Los Angeles. Unable to easily explain his situation, he calls Todd Maher, the eHarmony representative who had earlier tried to help him complete his incomplete dating profile. Todd verifies Walter's identity and enthusiastically acknowledges the remarkable adventures Walter has now lived. The scene offers bureaucratic resistance transformed into recognition of genuine growth.", + "semiotic": { + "label": "Bureaucratic Flight divergence", + "rationale": "The Magic Flight is expressed through the modern struggle of airport bureaucracy." + } + }, + "17": { + "label": "Recovery of the Negative", + "description": "Back home, Walter's mother reveals that she retrieved the discarded wallet from the trash. Opening it carefully, Walter finally finds an envelope hidden inside containing negative #25. The object he had sought across continents had been there all along, accessible only after he had undergone the internal transformation necessary to understand its meaning.", + "sequential": { + "label": "Delayed Physical Attainment divergence", + "rationale": "The physical Boon is retrieved after the internal transformation is complete, reversing the typical acquisition sequence." + } + }, + "18": { + "label": "Return to Life", + "description": "Walter returns to the Life office and delivers negative #25 to the remaining staff. He directly confronts Ted Hendricks, no longer intimidated or evasive. By standing up for himself and for the dignity of the magazine's legacy, he reintegrates into his original world as a fundamentally changed person." + }, + "19": { + "label": "Quintessence of Life", + "description": "When the final issue is published, Walter and Cheryl, running into each other to get their last pay check, discover the cover displayed at a newsstand. The photograph is of Walter himself sitting outside the Life building, quietly absorbed in his work. Sean had recognized in Walter's unnoticed dedication the true \"quintessence of life\". The revelation validates Walter's journey by showing that the extraordinary had always existed within the ordinary." + }, + "20": { + "label": "Walking with Cheryl", + "description": "In the final moments, Walter walks beside Cheryl through New York in a calm and unremarkable scene made meaningful by his complete presence within it. He no longer drifts into fantasy because he no longer needs imagined heroism. His life has become real enough to inhabit fully, and his relationship with Cheryl now begins on authentic rather than imagined terms." + } + } + } + ] + }, + "kg-modal-batman": { + "ttlFile": "batman.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/batman-year-one/monomyths/bruce-wayne-journey", + "label": "Bruce Wayne's Hero's Journey in Batman: Year One", + "stages": { + "1": { + "label": "The Train to Gotham", + "description": "Bruce returns to Gotham after years abroad. His 'summons' is internal: the trauma of his parents' death and the decaying state of the city.", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "2": { + "label": "Disastrous East End Surveillance Mission", + "description": "During his training, Bruce hesitates, feeling unsure and aware that he must wait before acting. Despite this internal hesitation, his impatience drives him to attempt a plainclothes serveillance mission in the East End. The encounter is disastrous: he fights a pimp, is stabbed, shot by the police, and barely escapes. Bleeding in his study, his initial hesitation is violently validated. He admits he is 'not ready' because he lacks the proper method to strike fear into his enemies.", + "narrative": { + "label": "Premature Start as Refusal", + "rationale": "Traditionally, the Refusal of the Call is characterized by the hero's fear, excuses, or reluctance to leave the comfort of the Ordinary World. In this narrative, the archetype is subverted. Bruce Wayne is a 'Willing Hero' who does not hesitate out of fear, but rather rushes into the journey prematurely due to a lack of patience. His 'refusal' is not a rejection of the mission, but a forced hesitation following a brutal physical defeat. This reshapes the dramatic weight of the stage from a test of willpower into a test of methodology: the hero must fail his first attempt in order to realize that, despite his absolute commitment, something vital is missing from his approach." + } + }, + "3": { + "label": "The Bat", + "description": "As Bruce bleeds out in his study pleading to his father's memory for guidance, a massive bat crashes through the window. He interprets this violent natural event as a 'sign,' providing the psychological epiphany and the specific 'wisdom' needed to assume his vigilante identity.", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "4": { + "label": "The Dinner Party Ambush", + "description": "Batman definitively steps 'beyond the veil of the known' by crashing a dinner party for Gotham's corrupt elite. This act represents a form of 'self-annihilation,' where Bruce Wayne kills off his former status as a harmless socialite to plunge into the mystery of his crusade. By confronting the city's power brokers, he proves he has the 'competence and courage' to operate in a zone of magnified power where ordinary rules are suspended.", + "narrative": { + "label": "The Hero as Aggressor", + "rationale": "Traditionally, 'threshold guardians' are dangerous custodians who defend the boundary and wait for the hero. In a narrative reversal, Batman does not wait to be challenged. Possessing total commitment, he proactively hunts the guardians (Falcone and Loeb) in their 'inmost cave.' He doesn't seek to bypass these 'watching powers' but to dominate them, ensuring there is no turning back from his mission." + }, + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "5": { + "label": "The Tenement Siege", + "description": "Trapped in an abandoned tenement and targeted by a police firebombing, Batman undergoes a 'plunge into an unknown darkness.' As the building collapses and Commissioner Loeb presumes him dead, Bruce experiences the symbolic death of his former self. By surviving the inferno and summoning a swarm of bats to mask his exit, he allows a new, transformed identity\u2014the urban myth of the Batman\u2014to emerge from the rubble.", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "6": { + "label": "The Distributed Road of Trials", + "description": "Bruce undergoes a succession of ordeals\u2014the East End failure, the climb up the crime ladder, the Mayor's house ambush, and the tenement siege\u2014which serve to 'purify' his methods. Crucially, during these perilous conquests, he discovers the 'benign, protecting power' of Jim Gordon. Following the tenement siege, Bruce realizes that his survival was aided by the presence of a moral equal within the system, transforming Gordon from a target into the essential ally needed to survive the trials ahead.", + "sequential": { + "label": "Distributed Road of Trials", + "rationale": "The Road of Trials is realized as a distributed series of events, rather than a single linear stage following the Departure. This sequential overlap allows the trials to act as the catalyst for the hero's transformation while simultaneously serving as the initiatory tests of his new identity." + } + }, + "7": { + "label": "The Encounter with Selina Kyle", + "description": "Bruce encounters Selina Kyle on the rooftops. In a typical monomyth, she would represent the 'Goddess'\u2014the totality of what can be known. However, the fit is weak: Batman views her not as a mystical union or a source of bliss, but as a tactical anomaly. She 'ruins the moment' rather than bestowing mastery, proving that Bruce's heart is reserved for his mission, not for a person.", + "narrative": { + "label": "Goddess as Operational Interference", + "rationale": "Traditionally, the Goddess is the 'reply to all desire' and the goal of the quest. In Year One, this narrative function is inverted: the Goddess (Selina) is an interference. She does not offer unconditional love or mastery; she offers a messy, rival version of his own mission. The divergence lies in the hero's reaction: Batman does not seek to 'know' or 'merge' with this figure, but rather to manage her as a tactical anomaly that threatens the purity of his sign." + } + }, + "8": { + "label": "The Absent Temptation of the Symbol", + "description": null, + "narrative": { + "label": "Archetypal Displacement to the Co-Protagonist", + "rationale": "The narrative requires the tension of the Temptress stage to remain 'adult' and grounded, but Miller systematically keeps it away from Batman. The role is assigned to Gordon, whose crisis with Sarah Essen represents the 'taint of the flesh.' The 'fleshly' burden of temptation is displaced onto Jim Gordon through his affair with Sarah Essen, leaving Batman as an incorruptible sign. This displacement allows the story to satisfy the archetype while protecting the hero's status as a pure, transcendental agent of justice." + }, + "semiotic": { + "label": "The Symbol as an Immune Agent", + "rationale": "In Campbell's model, the hero must resist the 'odor of the flesh.' The stage of the Temptress is absent for Batman. While Selina Kyle possesses all the archetypal traits of a Temptress, Bruce is immune because he has split his identity: Batman is a semiotic device, not a man, and symbols cannot be tempted. By constituting himself as a non-negotiable sign (Batman) rather than a person, he makes the category of temptation 'malformed.' You cannot seduce a symbol that has no negotiable interiority." + } + }, + "9": { + "label": "The Absent Atonement of the Orphan", + "description": null, + "narrative": { + "label": "Sovereignty through Loss", + "rationale": "The monomyth assumes a father-figure exists to test the hero. In Year One, the total absence of a father-figure makes 'at-one-ment' structurally impossible. Bruce is a 'sovereign orphan' who answers to no one but his own trauma." + } + }, + "10": { + "label": "The Absent Apotheosis", + "description": null, + "narrative": { + "label": "Noir Materialism Divergence", + "rationale": "The monomythic Apotheosis requires a spiritual 'death of the ego.' In Miller's noir framework, the hero's ego (his trauma and his mission) is the source of his power. To lose the ego would be to lose the Batman. The narrative intentionally avoids transcendence, keeping the hero grounded in a material world of pain, corruption, and tactical reality where 'divine knowledge' has no place." + } + }, + "11": { + "label": "The Bridge Rescue", + "description": "The supreme goal of the quest is attained on a bridge. Batman saves the life of Gordon's infant son, James Jr., literally 'restoring life' to the future of Gotham. This act of selflessness secures the 'Ultimate Boon': a clandestine alliance with Jim Gordon. This partnership is the 'elixir' that brings a spark of illumination to a corrupt city, ensuring that the hero's mission can now truly begin with the support of the law.", + "semiotic": { + "label": "Alliance as the Ultimate Boon", + "rationale": "In classical myth, the Boon is often an object like the Holy Grail. In this grounded noir setting, the 'Grail' is semiotically shifted to a social contract: the alliance between Batman and Gordon. The 'power to restore fertility' is literalized as saving a child\u2014the city's next generation\u2014from the Roman's influence, representing a systemic victory over corruption rather than a magical one." + } + }, + "12": { + "label": "Absent Refusal of the Return", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "13": { + "label": "Absent Magic Flight", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "14": { + "label": "Absent Rescue from Without", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "15": { + "label": "Absent Crossing of the Return Threshold", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "16": { + "label": "Absent Master of Two Worlds", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "17": { + "label": "Absent Freedom to Live", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + } + } + }, + { + "id": "https://monomyth.metamuses.org/graph/batman-year-one/monomyths/jim-gordon-journey", + "label": "Jim Gordon's Hero's Journey in Batman: Year One", + "stages": { + "1": { + "label": "Arrival in Gotham", + "description": "Gordon arrives in Gotham, viewing the transfer as a punishment. He is immediately summoned into the 'special world' of systemic corruption, meeting Commissioner Loeb and witnessing Detective Flass brutalize a teenager." + }, + "2": { + "label": "Waiting to Report", + "description": "Gordon hesitates to act against the corruption. He rationalizes his inaction by telling himself it is 'better to wait' before reporting colleagues. Flass tells him to relax and adapt to the system, summarizing Gordon's passive survival strategy." + }, + "3": { + "label": "The Absent Supernatural Aid", + "description": null, + "narrative": { + "label": "Neo-Noir Isolation Divergence", + "rationale": "In classical myth, the hero is reassured by a protective universe (the helper). In the Neo-Noir paradigm, the universe is indifferent or actively malignant. The narrative strips away the 'Supernatural Aid' to emphasize the hero's absolute moral and physical isolation; the honest cop must survive without a safety net." + } + }, + "4": { + "label": "The Beating", + "description": "Gordon is ambushed and beaten by Flass and his masked men. This serves as the 'Belly of the Whale'\u2014a plunge into a life-and-death 'black moment' where Gordon is completely swallowed by the 'monster' of systemic police corruption. During this brutal ordeal, his former self (the passive, rule-abiding cop trying to survive quietly) undergoes a symbolic death and self-annihilation, setting the stage for his metamorphosis.", + "sequential": { + "label": "The Catalyst Inversion (Belly Before Threshold)", + "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." + } + }, + "5": { + "label": "Beating Flass", + "description": "After surviving the beating, Gordon refuses to retreat. Instead of going home, he ambushes Flass in the snow, beats him, and strips him of his weapon. By doing this, Gordon crosses the threshold from passive observer to active combatant. He leaves behind the familiar safety of playing by the rules and fully enters the brutal world of Gotham's reality.", + "sequential": { + "label": "The Catalyst Inversion (Belly Before Threshold)", + "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." + } + }, + "6": { + "label": "The Honest Cop Trials", + "description": "Gordon navigates a gauntlet of trials that test his integrity and physical courage: entering a hostage situation unarmed, clashing with the violent Branden, and navigating Loeb's orders to hunt down the vigilante Batman." + }, + "7": { + "label": "Meeting Sarah Essen", + "description": "Gordon meets Sarah Essen, who functions as his operational and intellectual equal. She is the first to suggest Bruce Wayne might be Batman. Their connection represents a nurturing, understanding force in a city that otherwise alienates him. Within the secular, gritty confines of Gotham, Sarah Essen functions as the Neo-Noir equivalent of the 'Queen Goddess of the World.' For Gordon, who is alienated by the corrupt department, she represents the 'reply to all desire' \u2014providing the intellectual parity, moral support, and emotional understanding he desperately lacks." + }, + "8": { + "label": "The Affair and Blackmail", + "description": "The connection with Essen transforms into an extramarital affair, fulfilling the archetype of the Temptress. It is a worldly attachment that threatens to arrest the journey, filling Gordon with guilt regarding his pregnant wife and giving Commissioner Loeb the leverage needed to blackmail him.", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "9": { + "label": "Confession and Atonement", + "description": "Commissioner Loeb acts as the 'corrupt Father' of the GCPD, judging and threatening Gordon. To survive the crisis and 'abandon his attachment to his own ego', Gordon confesses his affair to his wife Barbara. By destroying his own secret, he strips the 'Father' of his power and undergoes a moral rebirth.", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "10": { + "label": "The family man", + "description": "Finally free from his guilt, Gordon's son is born and for a brief moment we see him dwelling momentarily in the peaceful stage of new found fatherhood and family bliss." + }, + "11": { + "label": "The Bridge Alliance", + "description": "Gordon's quest culminates in a desperate chase to a bridge after his infant son is kidnapped by corrupt forces. During the struggle, his son falls but is saved by Batman. Gordon's 'Ultimate Boon' is twofold: the physical salvation of his family, and the profound realization that he is not fighting alone. By choosing to let Batman go, Gordon secures the 'elixir' of the narrative: a powerful, unspoken alliance with the Dark Knight. This partnership provides the hope and leverage necessary to finally cleanse Gotham's corrupt system." + }, + "12": { + "label": "Absent Refusal of the Return", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "13": { + "label": "Absent Magic Flight", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "14": { + "label": "Absent Rescue from Without", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "15": { + "label": "Absent Crossing of the Return Threshold", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "16": { + "label": "Absent Master of Two Worlds", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "17": { + "label": "Absent Freedom to Live", + "description": null, + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + } + } + } + ] + }, + "kg-modal-oedipus": { + "ttlFile": "oedipus.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/oedipus-myth/monomyths/oedipus-journey", + "label": "Oedipus's Hero's Journey", + "stages": { + "1": { + "label": "The Oracle's Prophecy", + "description": "The Call to Adventure manifests when a young Oedipus, troubled by a drunkard's claims in Corinth that he is not the true son of King Polybus and Queen Merope, travels to the Oracle at Delphi seeking the truth about his parentage. Instead of answering his questions, the Pythia delivers a terrifying prophecy: he is destined to slay his own father and lie with his own mother. This horrifying revelation shatters his secure world, setting the tragic journey in motion." + }, + "2": { + "label": "Apollo's Guidance", + "description": "Through the cryptic warnings of the Delphic Oracle, Apollo provides a unique form of supernatural aid. The god anchors Oedipus's destiny with the dual nature of prophecy: along with the initial curse, Apollo weaves a distant, latent promise that Oedipus will eventually find ultimate rest and holy sanctuary in a grove dedicated to the Eumenides. This fatal assurance turns his agonizing exile into a purposeful journey toward divine transfiguration.", + "sequential": { + "label": "Aid before Flee divergence", + "rationale": "In the canonical monomyth, Supernatural Aid typically occurs as the third stage, appearing after the hero's hesitation to provide the necessary tools or assurance for the journey. In the myth of Oedipus, this sequence is displaced: the 'Aid' of Apollo's prophecy is granted at the very outset, preceding the hero's Inverted Refusal (his flight from Corinth). This displacement is critical to the tragic structure, as the divine guidance does not resolve the hero's hesitation but instead serves as the direct catalyst for his attempt to outrun his fate." + } + }, + "3": { + "label": "Flee from Corinth", + "description": "Driven by intense fear and a moral desire to protect those he believes to be his parents, Oedipus flees Corinth immediately, vowing never to return. In attempting to proactively refuse the monstrous fate laid out by the Oracle, he directs his steps away from the safety of his foster home and heads toward Thebes. His desperate escape acts as an inverted refusal: the very act of fleeing is what delivers him directly into the path of the prophecy.", + "narrative": { + "label": "Proactive Departure divergence", + "rationale": "In the Oedipus myth, the refusal of the call is subverted through a proactive moral choice. Rather than a passive retreat born of cowardice, Oedipus's refusal is an act of high-minded defiance; he flees Corinth specifically to protect those he believes are his parents. This creates a profound 'Tragic Irony' where the hero's virtuous attempt to outrun his fate becomes the very engine of its fulfillment. By physically moving away from the perceived danger, he unknowingly makes his flight both a rejection of the call and the inevitable start of the journey." + } + }, + "4": { + "label": "The Triple Crossroads", + "description": "At a place where three roads meet in Phocis, Oedipus encounters a haughty traveler traveling in a carriage. When the traveler and his retinue arrogantly attempt to force him off the road, Oedipus strikes out in a sudden, blinding rage. In the ensuing clash, he kills the old man who is unknowingly his biological father, King Laius, and all but one of his servants. This violent transgression serves as his definitive crossing into the tragic world of his destiny, as the first part of the prophecy is fulfilled" + }, + "5": { + "label": "Riddle of the Sphinx", + "description": "Upon reaching the gates of Thebes, Oedipus confronts the Sphinx, a monstrous creature terrorizing the city with a deadly riddle. By answering her puzzle about the nature of man, he defeats the monster and liberates the city. In this transformative moment, he effectively 'dies' to his previous identity as a wandering traveler and is 'reborn' as the King of Thebes, inheriting both the throne and the hand of the widowed Queen Jocasta, hence fulfilling the second part of the prophecy." + }, + "6": { + "label": "Search for the Regicide", + "description": "Years later, a devastating plague descends upon Thebes, sent by the gods due to the unpunished murder of the former king. Oedipus embarks on a relentless quest to identify and cast out Laius's killer to save his subjects. This investigation becomes a grueling test of his personal resolve and integrity, where every witness questioned and every clue uncovered brings him closer to the destructive truth of his own identity." + }, + "7": { + "label": "Reveal it all to me!", + "description": "Seeking prophetic insight, Oedipus calls the blind seer Teiresias to the palace. Teiresias, who possesses Apollo's divine sight, is reluctant to speak out of a deep, tragic pity for the king. When his silence provokes Oedipus into furious accusations of treason and conspiracy with Creon, Teiresias finally snaps and reveals the devastating truth: Oedipus himself is the polluter and murderer of Laius.", + "narrative": { + "label": "Protection not Love divergence", + "rationale": "This stage diverges from the traditional archetype by alterating the nature of the goddess's unconditional love. The meeting acts as a distorted encounter with divine truth, where the seer tries to protect the hero from a fatal enlightenment. The seer's care and love are expressed through a desperate protective silence, intended to shield Oedipus from his own ruin. When forced to break this silence, instead of offering comforting validation, the prophet provides the initial, painful awakening that sets the hero's true internal transformation in motion. He is the first to reveal to the hero his true identity and to confront him with reality." + } + }, + "8": { + "label": "Don't concearn yourself with prophecies!", + "description": "As Oedipus's dread intensifies, Jocasta intervenes, begging him to cease his investigation. In good faith, she tempts him to remain in comfortable ignorance to save their household. She attempts to discredit the divine by recalling a prophecy given to her late husband Laius - that he would be killed by his own son - which she wrongly believes went unfulfilled when they abandoned their infant on Mount Cithaeron. Her desperate plea represents the ultimate temptation for Oedipus to abandon his pursuit of truth in favor of his crown and safety." + }, + "9": { + "label": "He is the regicide", + "description": "Upon hearing Jocasta describe the crossroads where Laius was killed and the appearance of the old king, Oedipus is struck by a terrifying realization. The physical facts match his own dark memory of the triple crossroads, leading him to accept that he is indeed the regicide who brought the plague upon Thebes. This moment acts as a preliminary atonement where the hero confronts the shadow of the man he killed, though he does not yet realize that Laius was his true biological father.", + "narrative": { + "label": "Atonement with the King divergence", + "rationale": "This represents a profound subversion of the traditional Atonement with the Father stage. Instead of a spiritual reconciliation or submission to parental authority, the 'atonement' is a terrifying reckoning with a violent past. The deep irony lies in the fact that Oedipus believes he is coming to terms with the murder of a total stranger to purge the city of its plague. In truth, this stranger is Laius, his biological father. Consequently, the hero undergoes an accidental confrontation with the ghost of his patricide before he even understands the blood bond between them, reversing the typical path toward healing into a descent toward destruction." + } + }, + "10": { + "label": "It all came true!", + "description": "The arrival of a messenger from Corinth announcing the death of King Polybus initially brings relief, but it quickly shifts to horror when the messenger reveals that Polybus was not Oedipus's real father. Oedipus summons the old servant - the lone survivor of the crossroads and the same shepherd who saved him as an infant \u2014 who breaks down and confesses everything. The truth collapses upon Oedipus: he is both the murderer of Laius and his biological son, who has unknowingly shared his bed with his own mother.", + "narrative": { + "label": "Tragic Enlightenment divergence", + "rationale": "Oedipus subverts the traditional Apotheosis, which normally elevates the hero to a state of blissful, divine transcendence. Instead, through the testimony of the old servant, he reaches a 'tragic enlightenment.' The conquest here is purely internal; he does not achieve divine rest but rather a profound, shattering knowledge of his true self and the irrevocable realization of his fated doom." + } + }, + "11": { + "label": "The Self-Blinding", + "description": "Upon bursting into the palace and discovering that Jocasta has hanged herself, Oedipus is overcome by a violent, agonizing despair. He tears the golden brooches from her robes and plunges them repeatedly into his own eyes, crying out that they should never again behold the horrors he has committed or look upon the children he should never have fathered. By physically destroying his sight, he isolates himself from the world he has corrupted, choosing to face the darkness of his actions in an internal reckoning that he was previously blind to.", + "narrative": { + "label": "Punitive Inner Vision divergence", + "rationale": "The ultimate boon in the myth of Oedpis is far from a restorative elixir for the community, as it consists in a severe, self-inflicted punishment. By blinding himself, the hero destroys his physical perception of the world to acquire a solitary 'inner sight.' Rather than bringing life or illumination to the world he leaves behind, this boon is entirely internal, solitary, and unshared." + } + }, + "12": { + "label": "Plea for Exile", + "description": "Having accepted the absolute reality of his crimes, the blinded Oedipus refuses to stay in the city he once ruled. He stands before Creon and the assembled citizens of Thebes, explicitly demanding his immediate expulsion,to possibly free his city from the plague, as predicted by Apollo.", + "narrative": { + "label": "Proactive Exile divergence", + "rationale": "The hero's departure acts as an inverted Refusal of the Return. Instead of a passive or reluctant attitude toward crossing the return threshold, Oedipus takes full initiative to leave. By begging Creon for exile, he proactively drives himself out of the world in which his internal transformation has happened and chooses to wander the wilderness. This choice is also driven by the urgent need to fulfill Apollo's prophecy, which predicted that, to save Thebes from the plague, the regicide would have had to be exiled or killed." + } + }, + "13": { + "label": "Exodus from Thebes", + "description": "Oedipus steps into the unknown, beginning a long, arduous journey as a blind outcast. In his wandering, he is pursued not by physical monsters, but by the overwhelming psychological weight of his past. For years, he roams through the wilderness, utilizing the solitude and hardship to reflect upon his tragic history, gradually transforming his suffering into spiritual wisdom." + }, + "14": { + "label": "The Guiding Daughter", + "description": "As Oedipus's body grows weak and frail from years of wandering, his loyal daughter Antigone steps forward to serve as his primary rescuer. She walks by his side, serving as his eyes and guiding him safely across the unforgiving terrains of Greece. Her unwavering devotion provides the essential support that keeps him alive, allowing the shattered king to accept his tragic fate and continue on his fated path toward the sacred grounds of Colonus." + }, + "15": { + "label": "Arrival at the Sacred Grove of Colonus", + "description": "Oedipus finally arrives at Colonus, entering a sacred grove dedicated to the Eumenides. He recognizes this ground as the ultimate sanctuary promised to him by Apollo years before. When the local elders of Athens display horror upon discovering his identity, King Theseus steps forward and offers him unconditional sanctuary and protection. By being accepted by the noble ruler despite his horrific reputation, Oedipus successfully crosses back into a structured human society that welcomes his transformed state." + }, + "16": { + "label": "Ismene's News from Thebes", + "description": "Ismene arrives in Colonus from Thebes, serving as a second figure of rescue. She is willing to perform the necessary sacrifices to appease the Eumenides on Oedipus's behalf, to help him achieve spiritual clarity and enter the new reality of Colonus freely. However, she also brings heavy news of a catastrophic civil war brewing back home between her brothers, Eteocles and Polyneices, and warns her father that Creon is heading to Colonus to seize him for political gain.", + "sequential": { + "label": "Rescue after Return Threshold divergence", + "rationale": "This stage represents a structural repetition and displacement of the 'Rescue from Without' archetype. While Antigone provided the initial rescue in its canonical position to sustain Oedipus during his exile, Ismene's arrival occurs retroactively after the hero has already crossed the return threshold of Colonus. Her appearance serves a dual purpose: she provides the specific ritual aid needed to navigate his new environment and introduces the 'news from Thebes' regarding the civil war. This information acts as the final narrative engine, setting into motion the conflict with Creon and Polyneices that ultimately facilitates Oedipus's transition from a mortal outcast to a divinized, sacred protector." + } + }, + "17": { + "label": "Trouble from Thebes", + "description": "Oedipus's fragile peace is shattered by the arrival of Creon, who uses trickery and force to kidnap both Antigone and Ismene in a desperate attempt to drag the blind hero back to the Theban border. Though King Theseus steps in and saves the daughters, the conflict deepens when Polyneices arrives. The son weeps and pleads for his father's forgiveness for his past inactions against his exile, hoping to secure Oedipus's blessing for the coming war. This intrusion prevents any serene equilibrium, highlighting his status as a man who is still pulled by the heavy gravity of his origins.", + "narrative": { + "label": "Denied Mastery", + "rationale": "In the Monomyth, Mastery implies a transpersonal state where the hero is at home in both worlds. Here, the 'Mastery' is negated: the world where the hero's transformation has happened, hence Thebes and its politics, aggressively seeks to weaponize the hero's spiritual status and his integration in the new 'ordinary' world, while the hero responds with fury rather than balance. This divergence shows that the hero remains a prisoner of his tragic history and of the Theban dynamics until the moment of death." + } + }, + "18": { + "label": "The Transfiguration at Colonus", + "description": "The hero reaches the end of his mortal journey as a sudden thunderclap echoes across the sky, and a divine voice calls out to him. Oedipus stands up and walks unaided toward a hidden, sacred point in the grove, where he simply vanishes into the earth. King Theseus is the sole witness to this mysterious passing. Through this divine death, Oedipus is finally freed from the weight of his past, transforming from a cursed exile into a holy, chthonic protector of the land that welcomed him.", + "narrative": { + "label": "Freedom in Death divergence", + "rationale": "This represents an 'Inverted Fit' of the final monomyth stage. While 'Freedom to Live' traditionally suggests the hero's ability to exist in the ordinary world without the fear of death, Oedipus achieves this freedom only through the act of passing away. His release from the burden of his past and the pollution of his crimes is synchronized with his physical disappearance. The irony lies in the fact that his 'freedom' is a transition from mortal suffering to a chthonic, immortal state, as he becomes free from life itself to serve as a sacred protector of the land." + } + } + } + } + ] + }, + "kg-modal-sable-fable": { + "ttlFile": "sable-fable.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/sable-fable/monomyths/justin-vernon-journey", + "label": "Justin Vernon's Autobiographical Journey", + "stages": { + "1": { + "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 1)", + "description": "The Call to Adventure manifests as a psychological rupture. Justin Vernon expresses a desperate desire for an anxious 'feeling' to be gone, repeating himself three times in a way that reflects 'the nature of unrelenting intrusive thoughts'. This state of 'anxiety and desperation' serves as the summons. When he looks in the mirror and sees his reflection resembling 'some competitor', he is receiving the call to finally confront his own layered trauma.", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "2": { + "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 2)", + "description": "The Refusal of the Call is explicitly voiced when Vernon admits, 'I am afraid of changing.' Faced with the 'enormity of the journey ahead'\u2014which requires him to 'check and rearrange' his mental state\u2014he hesitates ('How'm I supposed to do this now?'). The weight of what must be confronted is represented by the 'rings within rings within rings', symbolizing the astronomical, repeating layers of built-up trauma he must peel back to heal. He realizes the journey to happiness will require him to face the very things he has been trying to ignore.", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "3": { + "label": "S P E Y S I D E (Verse 1-3)", + "description": "Written during an isolating period in Key West, 'S P E Y S I D E' represents the deepest point of darkness. Vernon is swallowed by guilt over his 'violent spree' of self-sabotage, destroying relationships and shooting himself in the foot ('It serves to suffer, make a hole in my foot'). This is the symbolic death of his ego, reduced to 'soot', where he realizes he 'can't make good' on his own.", + "sequential": { + "label": "The Trauma Sequence Inversion", + "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." + }, + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "4": { + "label": "S P E Y S I D E (Verse 4)", + "description": "In verse 4 of 'S P E Y S I D E', the Supernatural Aid manifests not as a wizard or divine messenger, but as the grounding presence of the people he loves. While asking for forgiveness from this group of people he hurt, he hopes they can 'still make a man from me'. This belief that his loved ones can still see the beauty in him acts as the 'talisman' and psychological assurance he needs to survive the darkness and prepare for the threshold crossing.", + "sequential": { + "label": "The Trauma Sequence Inversion", + "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." + }, + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "5": { + "label": "AWARDS SEASONS", + "description": "'AWARDS SEASON' represents the Crossing of the First Threshold. The song narrates a phase of sluggish and staggering change, drawing parallels to the 'acceptance' of awards, where the award is actually personal transformation and subsequent healing. By recognizing that 'Nothing stays the same', Vernon commits to the adventure, crossing from the paralyzing guilt of his past into the unknown sphere of acceptance and recovery.", + "sequential": { + "label": "The Trauma Sequence Inversion", + "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." + } + }, + "6": { + "label": "SHORT STORY", + "description": "In 'Short Story', the Road of Trials is realized as an inward psychological ordeal of processing pain and accepting vulnerability. Vernon realizes that his past isolation\u2014symbolized by the lyric 'That January ain't the whole world'\u2014is not the entirety of his existence, successfully transmuting the melancholy of his past. As he steps into the bright sunlight, he discovers the presence of a 'helper' through the realization that he is 'never really, really on your own'. The annotations highlight that having someone 'recognize and validate your experience' acts as a 'healing balm'. Finally, the continuous ordeal of healing is accepted; the 'strain and thirst are sweet' because they represent the essential, cyclical work of emotional purification ('Time heals, and then it repeats').", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "7": { + "label": "Everything Is Peaceful Love", + "description": "In 'Everything Is Peaceful Love', the hero encounters the archetype of the Goddess, representing the attainment of true bliss and unity. The song encapsulates 'pure joy and elation', moving past his previous somber wallowing into a state painted with 'images of unity - peace and love'. Although he initially resists the vulnerability by claiming 'I'm not slipping', he eventually surrenders with a gentle heart, blinking in disbelief but admitting he is 'right at home'. The lyric mentioning a 'burning ring' perfectly symbolizes the archetypal mystical marriage, completing his transition into a peaceful harbor.", + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "8": { + "label": "Walk Home", + "description": "In 'Walk Home', the hero temporarily achieves the Apotheosis stage. Stripped of his ego-bound limitations, he is invited to 'shed your earthly burdens'. He is able to 'forget and share' his 'stress, anxiety and the constant motions of life', dwelling momentarily in a state of 'blissful rest'. He is so 'high on this person' that the feeling mirrors the 'happiness, shock, and excitement' of learning to walk.", + "sequential": { + "label": "The 'Pink Cloud' Sequence Inversion", + "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." + }, + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "9": { + "label": "Day One", + "description": "In 'Day One', the hero faces the Woman as the Temptress, but the seduction is entirely internal. Following the pure bliss of the Goddess stage, Vernon is confronted with the exhausting reality of maintaining his healing ('unlearning lies' and shedding the things that 'rip you up'). The 'temptation' that threatens to arrest his journey is the seductive pull of regression\u2014the familiar, isolating comfort of his past trauma and anxiety. It is the urge to self-sabotage and return to the 'Belly of the Whale' rather than continue the difficult, transcendent work of true recovery.", + "sequential": { + "label": "The 'Pink Cloud' Sequence Inversion", + "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." + }, + "semiotic": { + "label": "The Internal Temptress (Seduction of Regression)", + "rationale": "In classical myth, this stage is often represented by a literal female figure or physical vice that tempts the hero to abandon their quest. In this psychological framework, the 'Temptress' is the hero's own mind. The seduction is the allure of the familiar darkness and the comfort of old, destructive habits, which threaten to bind the hero's consciousness to their past trauma rather than allowing them to transcend it." + } + }, + "10": { + "label": "The Absent Atonement", + "description": null, + "narrative": { + "label": "Internalized Authority Divergence", + "rationale": "In classical mythology, the hero's ego-death is triggered by an encounter with a terrifying Father-figure. In modern psychological narratives, this external projection is stripped away. The hero's battle is entirely with the Shadow (their own reflection) and the Temptress (the urge to regress). Because the hero acts as their own ultimate judge and punisher (as seen in the guilt of 'S P E Y S I D E'), an external 'Atonement' stage is rendered narratively obsolete; reconciliation must be achieved through self-forgiveness rather than cosmic approval." + } + }, + "11": { + "label": "From (Verse 1-2)", + "description": "In 'From', Vernon attains the Ultimate Boon of his psychological journey: restored emotional capacity. Having survived his trials and self-sabotage, he declares, 'Nothing's really wrong so / From now on'. The 'elixir' he has gained is the ability to finally hold space for someone else, telling his partner, 'I got time, I can give you some' and 'Give me your worry'. This represents the power to restore illumination to his world, transforming him from a person consumed by his own trauma into a source of healing for another.", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "12": { + "label": "From (Bridge and Chorus)", + "description": "Alongside the Boon, 'From' simultaneously expresses a gentle Refusal of the Return. Having found a state where 'Nothing's really wrong', Vernon exhibits a reluctance to move forward into the mundane world or face the inevitable changes of the future. Lyrics like 'We can just keep it here for now' and 'Can I take another year?' demonstrate his desire to cling to this realm of blissful discovery and delay the passage of time.", + "narrative": { + "label": "The Gentle Refusal", + "rationale": "Typically, the Refusal of the Return is an active rebellion against returning to humanity. Here, it is a much gentler, understandable psychological reaction. After years of suffering, the hero simply wants to press pause ('We can just keep it here for now') to savor his hard-won peace before facing whatever comes next." + } + }, + "13": { + "label": "I'll be there (Verse 1-2)", + "description": "In the verses of 'I'll Be There', the hero navigates the Magic Flight. Rather than fleeing physical pursuers, Vernon is fleeing the threat of mental regression as he attempts to return to ordinary life. He actively tests his newly won transformation by coaching himself to endure: 'Don't you dare go down / Tape the polaroid to your dome / Keep the sad shit off the phone'. The command to 'get your fine ass on the road' represents the active, perilous push forward to maintain his healing.", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "14": { + "label": "I'll be there (Chorus)", + "description": "Because the hero exhibited a Refusal of the Return in the previous track, he requires a Rescue from Without to pull him fully back into human society. This is structurally realized through the song's chorus, sung by a guest vocalist (Danielle Haim) representing the partner. Her repeated assurances \u2014 'I'll be there / I won't move / Tell me more, or tell me nothing' \u2014 act as the external tether reaching across the threshold, drawing the exhausted traveler safely home.", + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "15": { + "label": "If only i could wait", + "description": "'If Only I Could Wait' perfectly embodies the Crossing of the Return Threshold. The hero is stepping out of his isolated, timeless sanctuary (the cabin) to re-enter the ordinary world by moving to California, but he is terrified of the impact. Vernon questions his ability to survive the transition, asking, 'Can I incur the weight? / Am I really this afraid now?'. The duet functions as 'a bilateral crying question' representing the agonizing effort to hold onto the 'boon' of their newfound love amidst the uncertainty, distance, and decay of the real world ('We'll decay in other ways now').", + "semiotic": { + "label": "The Geographical Threshold (Distance and Decay)", + "rationale": "In myth, the Return Threshold often involves crossing a physical boundary back into the mortal realm, where magic fades. In this autobiographical narrative, the threshold is both geographical (moving from Wisconsin to California) and relational. The 'magic' that threatens to fade is the blissful, effortless love of the Goddess/Apotheosis stage, which must now survive the mundane, corrosive elements of time, distance, and emotional 'decay'." + } + }, + "16": { + "label": "There's a Rhythm (Verse 1-2)", + "description": "In the first two verses of 'There's A Rhythmn', Vernon achieves the Master of the Two Worlds stage. The 'two worlds' are geographically and emotionally represented as his dark, isolated past in Wisconsin ('the snow') and his bright, connected future in California ('a land of palm and gold'). By asking 'Or are less and more the same?' and recognizing that 'There's a rhythmn to reclaim', he achieves a psychological equilibrium. He holds both realities simultaneously, finding harmony ('rhythmn') between his past trauma and his present healing.", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "17": { + "label": "There's a Rhythm (Verse 3)", + "description": "The album's lyrical climax in verse 3 perfectly embodies the Freedom to Live. Released from the paralyzing anxiety and 'shame' that defined the beginning of his journey, Vernon lives fully in the present moment. He declares, 'Ya know I've really no more shame / Now things really are arranged', proving he has finally conquered the fear of change that initiated his Refusal of the Call. His focus shifts outward to pure connection ('Cause you really are a babe'), acting as a conduit for love without attachment to the guilt of his past.", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + } + } + } + ] + }, + "kg-modal-ladybird": { + "ttlFile": "lady-bird.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/lady-bird/monomyths/christine-journey", + "label": "Christine's Heroine's Journey in Lady Bird", + "stages": { + "1": { + "label": "I hate California", + "description": "The protagonist manifests a visceral disdain for her Sacramento context, viewing it as a cultural desert. On a drive with her mother, she expresses her desire to move to the East Coast, where she believes 'culture is,' by applying to prestigious universities. This setting of an external goal marks the beginning of her quest for a life beyond her current socioeconomic and geographic boundaries.", + "narrative": { + "label": "Inward Call divergence", + "rationale": "In this stage, the 'call' does not originate from an external herald or messenger as typically described by Campbell. Instead, it is an 'inward call' born of the protagonist's own discontent and ambition. The adventure is self-initiated, shifting the heroic catalyst from destiny or external necessity to personal agency and the internal desire for social and cultural transformation." + } + }, + "2": { + "label": "My name is Lady Bird", + "description": "Instead of hesitating or clinging to her past, Christine aggressively rebrands herself as 'Lady Bird,' a name she proudly declares was given to her 'to me, by me.' In scenes such as her audition for the school musical and her introductions to new peers, she treats this self-naming as a non-negotiable decree. This act is an aggressive embrace of her own transformation, where she attempts to shed her ordinary-world identity entirely before she has even left her geographic home.", + "narrative": { + "label": "Active Departure from Identity divergence", + "rationale": "In the opening of the movie, Lady Bird inverts the traditional hero's hesitation. She does not refuse the journey due to fear or a desire for safety; she forces the journey into existence by demanding the world recognize her as the person she intends to become. Her refusal is not of the journey, but of her current self and socioeconomic status. Hence, she isn't afraid of the transformation; she is so desperate for it that she tries to inhabit its persona prematurely to bypass the discomfort of her current reality." + } + }, + "3": { + "label": "The Scholarships' Aid", + "description": "In a meeting in Sister Sarah Joan's office, Lady Bird confesses her desire to attend a 'city' school on the East Coast. While her mother dismisses these dreams as financially impossible, the nun offers a quiet form of empowerment by assuring Lady Bird that financial aid and scholarships are viable paths. This conversation provides the protagonist with the necessary hope of institutional support to continue her journey of self-realization.", + "semiotic": { + "label": "Bureaucratic Aid divergence", + "rationale": "In this modern coming-of-age narrative, the 'supernatural' is entirely secularized and replaced by the bureaucratic hope of financial aid. The divergence lies in the shift from a mystical gift to an institutional mechanism; scholarships act as the 'magic' required to transcend socioeconomic boundaries. By framing a loan application or a grant as the hero's supernatural assistance, the film highlights how social mobility serves as the modern equivalent of divine or magical intervention." + } + }, + "4": { + "label": "Applying to East Coast schools", + "description": "The threshold is crossed through the definitive act of submitting her applications. After a sequence highlighting the secret collaboration with her father, Lady Bird moves beyond mere dreaming to take concrete, logistical steps toward the East Coast. This scene represents her formal commitment to a future of her own making; by mailing the forms, she effectively leaves the safety of her mother's worldview and enters the uncertain world of her future and own potential." + }, + "5": { + "label": "I'll figure it out", + "description": "\"After the applications are sent, Lady Bird tries growing up by finding herself and her passions. She throws herself into the school musical, trying on a new personality to see if it fits. By joining theater and waiting for college letters, she is swallowed up by the \"what if\" of her future. It is a messy, quiet time where her childhood self starts fading away, leaving her in the dark until she can figure out who she is supposed to be next." + }, + "6": { + "label": "The Growing Pains", + "description": "Lady Bird faces a series of messy emotional tests that strip away her naive ideas about romance and status. Her first boyfriend Danny's secret of being gay, her father's job loss, the continous fights with her mother, and her unfulfilling sexual experience with Kyle all force her to confront a reality that doesn't care about her 'Lady Bird' persona. By betraying her best friend Julie to fit in with Jenna, she experiences the guilt of social climbing. These characters act as 'Threshold Guardians' who don't just stand in her way, but actively participate in her growth by forcing her to deal with the consequences of her choices and actions." + }, + "7": { + "label": "Dad's Help", + "description": "At night in her bedroom, Larry brings Lady Bird the financial aid paperwork he has been helping her with in secret. Despite his own struggle with clinical depression and the heavy weight of his unemployment, he chooses to set aside his own pain to focus entirely on her future. By validating her ambitions while her mother dismisses them, Larry offers her a profound sense of being 'seen' and loved without conditions, which she currenly cannot find in her mother.", + "semiotic": { + "label": "Goddess as Paternal Love divergence", + "rationale": "This divergence replaces the 'Goddess', traditionally a source of mystical love, with the very real, flawed, and quiet support of a father. The power of the scene isn't in a magical blessing, but in the fact that Larry is struggling himself, yet chooses to empower his daughter's future in secret. It shifts the 'encounter' from the supernatural to a grounded act of family solidarity, where a simple letter of financial aid becomes the ultimate proof that the hero is worthy of her own ambitions." + } + }, + "8": { + "label": "Whatever we give you is never enough!", + "description": "In a brutal confrontation after discovering the secret applications, the tension between mother and daughter peaks. When Lady Bird demands Marion to give her a number so she can eventually pay her back for the cost of raising her and never speak to her again, Marion retorts, 'I highly doubt you'll ever get a job good enough to do that.' Fueled by a mix of rage and the fear of her daughter's ungratefulness, Marion says things she likely doesn't believe. She projects her own lower-middle-class cynicism onto Lady Bird, unconsciously trying to convince her that she will never become the person she hopes to be, effectively trying to kill the hero's ambition before she can even leave.", + "narrative": { + "label": "Woman as Underestimator divergence", + "rationale": "This divergence replaces the 'Temptress', traditionally a distraction of the flesh, with an 'Underestimator' who uses psychological discouragement. Marion doesn't try tempting Lady Bird away from her journey with any trick or seduction ; she tries to hold her back with the weight of reality. Because she is angry at the secrecy and exhausted by their socioeconomic standing, she unwillingly tries to put the heroine down. The temptation here transforms into the dangerous pull to believe the mother's negative projection and accept a life of smallness, abandoning the journey to avoid the sting of maternal disapproval." + } + }, + "9": { + "label": "Added to Waitlist", + "description": "After some time waiting, Lady Bird receives a letter stating she is on the waitlist for a New York university, turning her dream into a tangible possibility. The domestic pressure also lifts slightly as her brother Miguel finds a job and she ultimately leaves Kyle's 'cool' crowd to go to prom with Julie. As the two friends dance together, Lady Bird experiences a state of peaceful clarity, finally shedding her social pretenses and reclaiming the friendships that actually matter." + }, + "10": { + "label": "I'm 18!", + "description": "Christine's long-sought goal is finally realized through a rapid succession of milestones. Upon turning eighteen, she immediately exercises her newfound agency by buying a lottery ticket and a magazine, followed quickly by passing her driving test, a concrete symbol of her ability to move through the world without her mother's supervision. With her high school graduation behind her and the official news of her acceptance into a New York university, she achieves the legal and physical freedom she has craved. These scenes mark the moment she is no longer just dreaming of a future; she is actively stepping into it, ready to leave Sacramento behind and finally begin the process of growing up on her own terms." + }, + "11": { + "label": "Moving to New York City", + "description": "The 'flight' begins with a tense car ride to the airport where Marion remains stubbornly silent, refusing to look at her daughter. After a tearful goodbye with her father, Lady Bird walks through security alone, leaving her mother behind in the car. The sequence captures the literal move across the country to New York, but the emotional weight comes from the unresolved conflict; while Lady Bird is flying toward her new life, the camera stays with Marion as she regrets her silence and desperately circles back to the terminal, too late to say goodbye. This literal journey signifies for Christine the final rupture from her childhood home." + }, + "12": { + "label": "I wish you liked me", + "description": "While unpacking in New York, Christine finds a stack of crumpled, discarded letters from her mother to her that Larry had secretly tucked into her suitcase. Reading Marion's struggling attempts to express her pride and love, Christine finally looks past the years of fights to see the deep, fearful care underneath. This provides a retroactive reconciliation, as she understands her mother's harshness was born of fear and love. This realization allows her to forgive the maternal authority she spent years resisting, effectively finding peace with the woman who shaped her.", + "sequential": { + "label": "The Atonement After the Flight divergence", + "rationale": "Unlike traditional structures where atonement happens at the journey's peak before the flight and the return, Christine requires physical distance, hence her moving accross the country, to achieve clarity. She must leave Sacramento to truly see it. In this narrative, the heroine needs geographical separation for emotional reconciliation with her mother, and subsequently her origins." + }, + "semiotic": { + "label": "Atonement with the Mother divergence", + "rationale": "In this modern inversion of roles, the Father, traditionally the ultimate authority figure the hero must reconcile with, is replaced by the Mother. Marion represents the gatekeeper and the source of judgment, while Larry acts as the nurturer. The atonement is therefore a psychological reconciliation with maternal authority, shifting the mythic focus from patriarchy to the complexities of mother-daughter dynamics." + } + }, + "13": { + "label": "My name is Christine", + "description": "At her first college party in New York, a stranger asks the heroine for her name. Instead of using her rebellious 'Lady Bird' title, she now simply responds: 'My name is Christine.' This marks the total shedding of her teenage persona. Having reached her goal and found internal peace, she no longer needs to perform a fake version of herself to prove her independence. She is finally ready to embrace and actively return to the identity she once tried so hard to escape from.", + "narrative": { + "label": "Active Return to Identity divergence", + "rationale": "While the classical hero might refuse to return to their ordinary world, Christine willingly 'returns' to her true self. This stage acts as an inversion of the 'departure from identity' sequence seen at the beginning of the film. Now that she has achieved distance from Sacramento, she is ironically more connected to her roots than ever. By choosing the name 'Christine' and recanting 'Lady Bird', she signals that she is ready to reconcile with her ordinary world self, accepting her history and heritage as part of her adult identity." + }, + "sequential": { + "label": "Refusal of the Return After the Atonement divergence", + "rationale": "For this stage, the atonement with her mother through the letters was a mandatory prerequisite. She could not accept her original name until she first understood the love behind the woman who gave it to her. Because she has reached emotional peace with her mother, she can now willingly return to her birth name, turning a refusal of the past into a mature embrace of her identity." + } + }, + "14": { + "label": "Sunday Mess in NYC", + "description": "After a night of partying, Christine wanders around the streets of NYC and ends up into a Presbyterian church on a Sunday morning. As she listens to the choir, she is visibly moved to tears; the music and the ritual provide a profound sensory link to her upbringing in Sacramento. Though she spent years despising the constraints of her Catholic school and the mundane nature of church-going, the familiarity of the service now acts as an anchor. This moment of grace provides her the emotional catalyst she needs to finally reach out to home." + }, + "15": { + "label": "Calling Home", + "description": "Right outside of the church, Christine picks up the phone and calls home, leaving a voice message for her parents. This is the moment she bridges the gap between her new world (NYC) and her old world (Sacramento), crossing the threshold back into a relationship with her Californian roots and with her family, on her own terms as an adult. This act signifies her mature return to her origins, acknowledging that her mother's presence and her hometown's landscape are inseparable parts of who she has become." + }, + "16": { + "label": "Did you feel emotional the first time you drove in Sacramento?", + "description": "In her voicemail, Christine shares with her mother the memory of driving through Sacramento for the first time, a moment she couldn't share with her when it happened because the two weren't speaking. By emotionally describing the new-found specific beauty of her hometown while standing on a New York sidewalk, she effectively brings one world into the other. She achieves an equilibrium and holds both realms simultaneously, valuing her roots precisely because she now has the distance to see them clearly in her new life stage." + }, + "17": { + "label": "Thank you", + "description": "The voicemail and the journey conclude with a simple, resonant 'Thank you', signaling Christine's release from the combative ego of her adolescent identity, which had been the core of her journey. She is no longer a hero in flight from her origins, but an adult existing fully in the present, recognizing her parents' sacrifices as the quiet, vital infrastructure of her own life. This gratitude is what allows her to live freely now, in a new reality but with a clear heart." + } + } + } + ] + }, + "kg-modal-aeneid": { + "ttlFile": "aeneid.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/aeneid/monomyths/aeneas-journey", + "label": "Aeneas's Hero's Journey in The Aeneid", + "stages": { + "1": { + "label": "The storm on the Libyan coast", + "description": "Juno persuades Aeolus to unleash the winds upon the fleet, and a black squall closes over the survivors of seven years of wandering. Ships are scattered, men and oars float on the waves, and the wreckage of what remained of Troy is dispersed across the unknown sea. Aeneas is washed onto an unfamiliar African shore with a handful of companions, ignorant of his location, ignorant of his queen, possessed of nothing but the household gods he salvaged from the burning city and the bare instruction that some western kingdom is owed to him. The Trojan identity, already eroded by years of homelessness, is here finally extinguished as a public reality, and the figure who emerges from the shore is reduced to a single function: that of the survivor charged with a beginning he cannot yet imagine.", + "sequential": { + "label": "In medias res opening divergence", + "rationale": "The poem begins inside the swallowing-darkness stage itself, at narrative position one, with all preparatory content delivered analeptically through Aeneas's recollection in the Carthaginian books. The dissolution-of-self is presented as a starting condition rather than a culminating one, displaced four positions earlier than its canonical fifth-place location, and the cascading consequence is that the stages which should precede it must surface afterward, transforming the Refusal of the Call, the Temptress, the Call itself, and the First Threshold into a sequence delivered in scrambled order through the first six books. The opening choice is the foundational structural gesture from which the rest of the Departure's reordering follows, the Homeric inheritance of the in-medias-res protocol producing a monomyth realization whose canonical sequence is recoverable only by reading against the narrative grain. What the canonical archetype treats as a five-stage progression toward the swallowing is here treated as a single dissolution given immediately, with the preparatory architecture reconstructed from the hero's own memory rather than narrated as it occurs." + } + }, + "2": { + "label": "A second Troy rising from the sand", + "description": "In Carthage Aeneas finds a city in the act of becoming what his own people had been: walls rising under disciplined hands, a queen of remarkable competence, laws being framed at this very moment for a polity not yet finished. He is welcomed at her hearth, honoured at her banquet, and eventually pulled into her bed and her project. The mission westward recedes from view as the founding work he had been promised in Italy appears to be available, under different patronage, in this very harbour. He puts on Tyrian purple, oversees the construction of towers that are not his to raise, and lets the months accumulate without remarking on their accumulation. The hesitation here is not articulated as refusal but enacted as substitution, the fated city traded for the convenient one and the divine charge silenced beneath the daily ceremonies of an adopted court." + }, + "3": { + "label": "The cave and the pyre", + "description": "During a hunting expedition a sudden storm drives the queen and the Trojan into the same cave, where, with Juno presiding and Earth and the nymphs as witnesses, their union is consummated under conditions Dido takes to be a wedding. From that day she ceases to disguise the relation, calls Aeneas her husband in public, and consigns the construction of her city to suspension. The seduction operates at every register at once: erotic, political, dynastic, domestic. Aeneas is offered not merely a lover but a queen, not merely a queen but a kingdom, not merely a kingdom but a finished destiny that requires no further travelling. When the divine command finally arrives and he prepares his ships in secret, Dido moves through the stages of fury, supplication, and curse, ending on the pyre with the sword he had left behind, and the smoke of her burning is the last sight Carthage offers the departing fleet.", + "sequential": { + "label": "Temptation precedes call divergence", + "rationale": "The temptation surfaces at narrative position three, before the Call has been articulated as binding mandate, displacing the Temptress five positions earlier than its canonical mid-Initiation placement. The structural consequence is decisive: the seduction operates not as an obstacle late in the journey but as an alternative founding offered before the true founding has been firmly accepted, and the hero's vulnerability to it is intensified by the fact that no unambiguous summons has yet recalled him from the option Carthage represents. The positioning explains the unusual force the Dido episode commands within the realization. It is the test that nearly succeeds, the stage that almost replaces the journey rather than merely interrupting it, and the trauma it leaves in the hero shapes every subsequent act precisely because it occurred before the call had been delivered with the authority that would have made resistance unambiguous. Where the canonical archetype tests a hero already committed, this realization tests a hero not yet committed, and the dramatic asymmetry is decisive for everything that follows." + } + }, + "4": { + "label": "Italiam non sponte sequor", + "description": "Mercury descends through the air with his caduceus and his winged sandals and finds Aeneas in Tyrian dress overseeing the works of a city that is not his. The messenger speaks plainly: the destined kingdom is Italy, the heir whose patrimony is being squandered is Iulus, the queen at whose side the hero stands has no claim on a man whose obligation runs to unborn generations and to a foundation Jupiter has already named. The command is unconditional and delivered in the imperative. Aeneas hears it in shock, and within the same book begins the preparations to sail. When confronted by Dido in the celebrated exchange that follows, his self-defence will be that he does not seek Italy of his own will, that the journey is required of him by powers he can neither refuse nor reinterpret. The summons that the entire opening had been gathering toward, half-named through Hector's ghost on Troy's last night, partially disclosed by the Penates, prefigured by Creusa, arrives here in unmistakable form.", + "narrative": { + "label": "Gathered and doubled call divergence", + "rationale": "The summons in this poem is distributed across multiple anticipations and only finalized late, the canonical archetype's discrete opening rupture replaced by a long process of accumulating mandate. Hector's ghost on Troy's last night charges Aeneas with carrying the household gods to a new city without naming the city; the Penates speak in dream of Hesperia without specifying its terms; Creusa's shade prophesies a western kingdom and a royal bride without binding the hero to any timetable; Helenus elaborates the geography in Book III without commanding obedience. Mercury's intervention in Carthage is therefore not the announcement of a new mission but the gathering of a long anticipatory chain into a binding directive. The poem's call functions partly as memory and partly as repetition, the journey having been summoned several times before the summons becomes unavoidable, and the hero having been told what awaits him long before he is told that he must unconditionally pursue it. The dramatic weight rests not on the novelty of the message but on the moment when its accumulated authority becomes inescapable, the reluctant founder finally cornered by a mandate that has been forming around him since the night his city fell." + }, + "sequential": { + "label": "Delayed call divergence", + "rationale": "Mercury's command arrives at narrative position four, behind the Belly of the Whale, the Refusal of the Call, and the Temptress, three positions later than the canonical opening placement. The displacement is partly artefact of the in medias res opening and partly a substantive choice about how the founding mission's authority is constituted. By the time the unambiguous command is delivered, the hero has already failed the test of substitute foundation in Carthage, already endured the dissolution at sea, already received the prefigurative summons through Hector, the Penates, and Creusa. The Call therefore arrives not as an opening rupture but as a closure applied to a long process of attempted alternatives, the moment when the accumulated previous summons become suddenly binding. The displacement carries its own thematic content: the founding is authorized late and against resistance rather than embraced early and pursued with single-minded commitment, and the founder's reluctance is constitutive of the mission rather than an obstacle to it." + } + }, + "5": { + "label": "Loosing the cables", + "description": "The Trojan ships are made ready under cover of preparation rather than under public proclamation, and at the appointed hour the cables are cut and the fleet slips from the Carthaginian harbour while the queen is still asleep. At dawn she sees the empty roadstead, hurls her final imprecation against the departing sails, and ascends the pyre. The crossing here is not a heroic step into a marked threshold but a quiet severing accomplished while the abandoned world is unconscious of the loss. Behind the ships the smoke of Dido's burning rises and is absorbed by the African horizon, the cost of the threshold paid in another life entirely. Ahead lies the open Mediterranean and the final passage toward the prophesied coast, the harbour not yet known but committed to without further hesitation." + }, + "6": { + "label": "Games and the helmsman lost", + "description": "The fleet returns to Sicily for the anniversary of Anchises's death, and Aeneas presides over funeral games of ship-races, foot-races, archery, and boxing in honour of the buried father, exercises in collective memory that strengthen the band of survivors even as Trojan women, despairing of the endless journey, are incited by Juno to set fire to the ships. Some are saved by Jupiter's rain, others lost; the weak and the unwilling are settled at Acesta and the company that continues is the company prepared to finish the crossing. On the final night the helmsman Palinurus is taken by Sleep and falls into the sea, the fleet's pilot drowned within sight of Italy, the cost of arrival paid in the body of the most experienced navigator. The ordeals of this stage are concentrated and incidental rather than serial and structural, the fleet having already exhausted most of its heroic-test material in the analeptic narration of Books II and III." + }, + "7": { + "label": "Facilis descensus Averno", + "description": "At Cumae the Sibyl receives Aeneas in the cavern of the hundred mouths, possessed by Apollo, and lays out the conditions of the descent: the golden bough that must be plucked from a hidden tree if the underworld is to be entered and survived, the unburied companion who must be found and given proper rites before the threshold can be crossed, the sacrifices to Hecate that prepare the night journey. She articulates the foundational principle of the catabasis in the line that gives the moment its weight, that the descent to Avernus is easy and the return is the labour. When the bough is found and the rites completed, she takes Aeneas through the entrance to the underworld and walks beside him through every register of the dead, naming the shades, intervening with Charon and Cerberus, mediating each encounter with the precise authority of one who knows the geography no living traveller can know unaided. Without her presence the journey would be impossible at every stage of its unfolding.", + "sequential": { + "label": "Aid after trials divergence", + "rationale": "The Sibyl's intervention arrives at narrative position seven, well after the First Threshold has been crossed and the Road of Trials undertaken, and her aid is preparation for a specific subsequent ordeal, the catabasis, rather than an opening endowment for the journey at large. The displacement of four positions later than the canonical third-place position reflects this realization's distinctive treatment of the supernatural register: the most concentrated divine mediation is reserved for the central revelation rather than for the journey's commencement, which is supported instead by Venus's recurring intercession and by the prophetic voices that gather toward the Call. The Sibyl's late arrival positions her not as the equipping mentor of the Departure but as the threshold figure of the Initiation's deepest passage, her aid concentrated at the moment where the underworld's discoveries will reorganize everything that has come before. The canonical archetype's opening endowment is here split into the diffuse divine care of the early books and the precise priestly mediation of the underworld." + } + }, + "8": { + "label": "The fields of mourning and beyond", + "description": "The descent winds through the regions of the dead in widening circuits, past the unburied at the Stygian shore, past the souls of children and the falsely condemned, into the fields of mourning where Dido's shade turns from him in silence and refuses to hear his explanation. Beyond these come the warriors, friends and enemies of Troy alike, and finally the gates of Tartarus glimpsed but not entered. The path opens at last into the luminous valley of Elysium, where Anchises stands in the green meadows surveying the souls awaiting their next embodiment. The reunion is not a confrontation. The father weeps with joy at the son's arrival, embraces a form that cannot be embraced, and welcomes Aeneas not as a delinquent who must justify his life but as the inheritor of the cosmological vision the dead are now in a position to share. Across the river of forgetfulness, surrounded by the souls of those not yet born, Anchises gathers his son into a teaching that the upper world has no standpoint from which to deliver.", + "sequential": { + "label": "Initiation block shift divergence", + "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." + }, + "semiotic": { + "label": "Atonement as revelation divergence", + "rationale": "Anchises in the Elysian fields preserves the structural function of the stage with full clarity, the inner authority faced and the hero's identity reconstituted by that facing, but he replaces the canonical judicial register with a disclosive one. The father does not threaten the son, does not demand justification of his exile, does not conduct anything resembling a reckoning. He weeps with joy at the arrival, embraces a form that cannot be embraced, and gathers the son into a cosmological teaching whose authority operates through illumination rather than through judgment. Where the canonical archetype encodes the encounter through a sign-system of confrontation, threatened obliteration, and survived verdict as the precondition for authorized continuation, this realization recodes the patriarchal sign as pedagogical rather than agonistic. The encounter operates through the authority of disclosed knowledge rather than through the threat of withheld approval, and the founder is authorized for the work ahead by being shown what the work contributes to rather than by surviving paternal verdict on what he has so far been." + } + }, + "9": { + "label": "The soul-fields and the doctrine of return", + "description": "Standing in the meadows beyond Lethe, Anchises explains the cosmic order to his son: a world-soul animating sky and earth and sea, an inner fire diffused through every body, the encumbrance of flesh that clouds the spirit's native clarity, the long purification by which souls are scoured of their accumulated stains and prepared again for embodied life. The teaching is delivered as philosophy rather than as vision, but it functions for the hero as a momentary release from the categories that have governed his existence: the wandering exile who must reach a coast becomes briefly the participant in a metaphysical structure that includes his coast, his city, and his death within a single vast economy of return. The ego-bound figure who arrived at the underworld's mouth is, in this passage, dissolved into a cosmological standpoint from which his own labour appears as one element in a pattern that does not depend on him for its intelligibility.", + "sequential": { + "label": "Initiation block shift divergence", + "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." + } + }, + "10": { + "label": "The parade of Roman souls", + "description": "Anchises leads his son to a vantage from which the procession of unborn souls can be reviewed, and names them one by one: the Alban kings descending from Iulus, Romulus the wolf-suckled founder, the Caesars, Augustus himself extending an empire that will reach beyond the Garamantes and the Indians, Numa with his laws, the Brutuses, the Gracchi, the Scipios, the long line of Roman virtue. The catalogue closes with Marcellus, the recently dead heir whose shade is acknowledged with a tenderness that breaks the imperial register. The boon Aeneas carries out of the underworld is neither object nor power but knowledge of the future for whose sake the present labour is undertaken: the certainty that his exile is the seed of an order that will measure itself against the orbits of the stars. He returns to the upper world transformed by knowing what his hardships are knowable as, and the journey from this point forward proceeds under that disclosure.", + "sequential": { + "label": "Initiation block shift divergence", + "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." + } + }, + "11": { + "label": "This is the land", + "description": "The fleet rounds the Italian coast and turns into the mouth of the Tiber, where the river runs yellow with sand and forest crowds the banks. The Trojans go ashore and prepare a meal on flat cakes of bread used as plates, and Iulus laughingly remarks that they are eating their tables. The harmless joke fulfils, in the same instant of its utterance, an oracle Aeneas had received and feared, that the journey would end where hunger drove the company to consume even the platters their food rested on. The recognition cascades immediately into the ceremonial gesture of arrival: Aeneas embraces the soil, calls upon the local divinities and the Earth itself, and acknowledges that the prophesied terminus has been reached. That night the river god Tiberinus rises in vision and confirms the arrival, instructing the founder upstream to seek the Arcadian alliance. The threshold has been crossed not into a familiar homeland but into the prophesied future the underworld disclosed, and the return is therefore a return to a place the hero has never been, recognized as home only because the gods have named it so.", + "sequential": { + "label": "Early return threshold divergence", + "rationale": "The fleet rounds the Italian coast and turns into the mouth of the Tiber at narrative position eleven, immediately after the Ultimate Boon and well before the three Return-act stages that should canonically precede this threshold. The displacement of four positions earlier than the fifteenth-place canonical location reflects this foundation narrative's distinctive shape: the hero arrives at his fated terminus not after a long Return through obstacles but as the immediate consequence of having received the disclosed future, and the bulk of the canonical Return content is then replayed inside the Latin war that occupies the second half. The Refusal, the Magic Flight, and the Rescue all surface within Books VII to XII rather than between the underworld and the threshold, the architecture braiding the late-Return stages into the long campaign rather than placing them sequentially before arrival. The canonical sequence of Return preliminaries is preserved in content but folded into the post-arrival war rather than presented as the path that leads to it." + } + }, + "12": { + "label": "The foreign bridegroom foretold", + "description": "At the Latin court an oracle has already declared that the princess Lavinia must not marry within her own people but is destined for a foreign son-in-law from whose line will descend a glory that will lift their name to the stars. The omen has been confirmed by the burning of her hair before the altar, a flame that consumed the diadem without injuring the girl, prophesying that she would shine in renown and bring war upon the people. When the Trojan embassy arrives Latinus recognizes in Aeneas the foreigner the prophecy named, and offers his daughter without negotiation. The bride herself never speaks. Her presence is registered through the gold of her hair lit by the omen-fire, through her mother's tears at the proposed match, through the catalogue of suitors she has refused. The encounter that fulfils the goddess function is therefore conducted around her rather than with her, the integrative power of the feminine carried by prophecy and dynastic fact rather than by the relational mediation a spoken meeting would provide.", + "narrative": { + "label": "Dispersed goddess divergence", + "rationale": "No single feminine encounter in this poem performs the full range of mediation the canonical archetype concentrates in one figure, and the goddess function is instead distributed across three. Venus carries the protective and intercessory dimension as recurring divine mother, intervening at the storm, on the Libyan shore in disguise, before Olympus in advocacy, at the wound in Book XII, but never offering the sustained encounter of unconditional recognition the stage requires. Creusa's ghost in Book II delivers the prophecy of the western kingdom and the royal bride and releases Aeneas from the bond of their marriage in a moment of luminous tenderness, but she is recounted analeptically rather than encountered in the poem's present, and her function is closed before the journey proper begins. Lavinia carries the formal slot, the prophesied bride at whose silent centre the dynastic future is gathered, but she does not speak and her significance is articulated entirely through omen and prophecy. The integrative work of the archetype is accomplished, but only by reading the three figures together as a single distributed presence whose components occupy different registers of mediation." + }, + "sequential": { + "label": "Deferred goddess divergence", + "rationale": "The Goddess encounter arrives at narrative position twelve, deferred all the way to the arrival in Latium and the recognition by Latinus of the foreign son-in-law his oracle had named. The displacement of five positions later than the canonical seventh-place location is the realization's largest forward shift of any single stage, and its consequence is to bind the goddess function inseparably to the dynastic outcome the founding mission is pursuing. The integrative feminine is not encountered as a stage of personal transformation early in the journey but as the prophesied bride who waits at the journey's political terminus, and the meeting therefore functions less as a moment of inward integration than as the recognition that the public destiny has converged on the body through which it must be transmitted to the next generation. The canonical placement of the Goddess between the Road of Trials and the Temptress is here vacated entirely, the integrative encounter shifted forward into the territory where its dynastic stakes can be made fully visible." + }, + "semiotic": { + "label": "Goddess as dynastic cipher divergence", + "rationale": "Lavinia carries the structural slot of the integrative encounter at the realization's twelfth position, but the sign-system has been thoroughly secularized. She is not a goddess but a mortal princess; her significance is articulated not through her own speech but through prophecy, omen, and the political calculations of her father's court; the burning of her hair before the altar is read as foretelling renown and war rather than as theophany. Where the canonical archetype encodes the integrative encounter through a numinous sign-system of divine or mythically charged feminine presence mediating totality and unconditional recognition, this realization performs the integrative function through dynastic placement, the bride functioning as the cipher through which Trojan and Italian lineages are joined into the foundational Roman stock. The shift from numinous figure to political cipher reflects this realization's broader project of grounding mythological structure in historical institution, the goddess function recoded as the genealogical instrument by which the founding labour transmits itself to the future the underworld disclosed." + } + }, + "13": { + "label": "The grief that stalls the campaign", + "description": "The body of Pallas is laid out on a bier of oak and strawberry-tree boughs and sent back to Pallanteum with an honour-guard of Trojan and Etruscan warriors. Aeneas stands beside the youth he had taken under his protection and weeps, lifting up the funeral garments Dido had once woven for him as gifts and folding them over the dead boy. The grief is not a brief dramatic pause but a gravitational drag on the entire campaign: the foundational work of settling the new kingdom is suspended in mourning, and the founder who had carried his prophesied future out of the underworld is briefly arrested by the human cost of acquiring it. The language attached to him in these books takes on a heaviness incompatible with forward motion. Only the structural necessity of the war forces the campaign to resume, and even then the resumption proceeds under the shadow of an obligation to Pallas's father that the founder cannot discharge by founding alone.", + "narrative": { + "label": "Refusal as cost of founding divergence", + "rationale": "The canonical reluctance arises from having tasted transcendence and preferring to remain in the special world rather than carry its boon back to the ordinary one. This poem locates the hesitation elsewhere entirely: in the founder's grief at the body of the young ally whose death has been required to advance the founding labour. Pallas's corpse, lifted onto the bier of oak boughs and sent back to Pallanteum with the funeral garments Dido had once woven, focuses the entire weight of the founding cost into a single image. The hero is not reluctant to leave the underworld's bliss, an experience whose transformative effect he in fact welcomes; he is arrested by the recognition that the prophesied future the underworld disclosed is being purchased at a price he had not understood when he accepted the disclosure. The Refusal here is not anti-transitional but conscience-bearing, the founder forced to acknowledge what the imperium already costs before it has even been established." + } + }, + "14": { + "label": "The shield and the Etruscan fleet", + "description": "Aeneas sails up the Tiber to Pallanteum, the Arcadian settlement on the future site of Rome, and is received by Evander with hospitality and instruction. Venus delivers to him at Pallanteum the shield her husband Vulcan has forged at her request, its surface engraved with the entire future of the city he is fated to seed: the wolf-suckled twins, the Sabine women, Horatius at the bridge, Catiline in Tartarus, the battle of Actium with Augustus on the prow. With Pallas at his side and the shield slung at his back, Aeneas leads the Etruscan fleet downstream toward the besieged Trojan camp, the river journey transformed into a passage between two registers of his founding labour, the disclosed past-future strapped to his arm and the urgent present awaiting at the camp's wall. The flight here is not from a special world's guardians but toward the embattled camp with the means of its rescue.", + "narrative": { + "label": "Flight as relief mission divergence", + "rationale": "The canonical figure escapes the special world bearing a stolen or won prize, often pursued by guardians who would reclaim it. The Tiber voyage with the Etruscan fleet inverts the directional logic at every register. The pursuit, if it can be called that, points the wrong way: the founder is not fleeing toward safety but advancing toward an embattled camp that requires his urgent return. The prize, the shield Vulcan has forged with the future of Rome on its surface, has been freely given by the divine mother rather than seized from any guardian. The companions on the voyage, Pallas at his side and the Etruscan allies in the ships behind, are recruits rather than pursuers, and the river itself functions as a passage of arrival rather than escape. What the canonical archetype reads as flight here reads as relief expedition, the hero traversing between two fronts of his founding labour with the disclosed pattern of his city's future strapped to his arm and his obligation to the besieged community pulling him forward into combat." + } + }, + "15": { + "label": "The mother and the dittany", + "description": "In the climactic phase of the war Aeneas is struck by an arrow whose source remains unknown, and the wound resists every effort of the surgeon Iapyx to extract the iron. The campaign falters at his absence from the line, and the Italian forces press forward into the Trojan defences. Venus, watching from above, gathers dittany from the slopes of Mount Ida and infuses it secretly into the water with which the wound is being washed. The arrow loosens of its own accord and falls into the surgeon's hand, the pain departs, and the founder returns to the field with his strength restored. The intervention is not announced to him; Iapyx recognizes the divine signature in the unaccountable cure and tells him to take up his arms. Without this concealed maternal action at the moment when his body had failed, the war would have ended in Trojan defeat and the founding labour would have been lost in its final phase." + }, + "16": { + "label": "The imperium bestowed", + "description": "Across the long Latin campaign the founder operates with authority in two registers simultaneously, the heir of fallen Troy and the father-in-waiting of an Italian dynasty, commanding Trojan and Etruscan and Arcadian forces under a single banner whose legitimacy rests on inherited destiny and on the new oracle Latinus has accepted. The treaty proposed before the climactic duel formalizes the dual sovereignty: if Aeneas wins, Trojans and Italians shall fuse, sharing rites and laws under his rule, neither absorbing the other but blended into a population whose name will become Roman. The shield Vulcan made for him, depicting events centuries beyond the founder's own life, is the visible token of this mastery, the founder carrying on his arm a record of the world that issues from his act, the labour at the threshold and the imperium beyond it held in single grasp. The integration is not yet enjoyed but it is established, the architecture of the dual inheritance set in place even as the final violence remains to be done." + }, + "17": { + "label": "The belt of Pallas and the buried blade", + "description": "The duel ends with Turnus disarmed, wounded in the thigh, and on his knees before the founder, conceding the victory and asking either to live or to be returned to his father in death. Aeneas hesitates. The plea is reasonable, the war is concluded, the prophesied marriage is secured, and for a moment the sword stays. Then his eye falls on the sword-belt of Pallas slung across the Rutulian's shoulder as a trophy, the gold studs and the worked figures of the slain bridegrooms recognizable in an instant, and the memory of the boy laid out on the bier of oak boughs returns with full force. The founder is described as kindled by furies and terrible in his anger, and he drives the sword into the chest of the kneeling man with a curse, the soul of Turnus fleeing groaning and indignant beneath the shades. There is no marriage, no city raised, no settled reign, no peace surveyed from a position of equilibrium. The closing gesture is of unmastered passion executing a justice that the founder's earlier conduct had already learned to suspect, and the silence after the killing settles over a battlefield that nothing in the act has finished resolving.", + "narrative": { + "label": "Freedom as rage divergence", + "rationale": "Aeneas has Turnus disarmed and kneeling, the war effectively concluded and the prophesied marriage secured, and the sword stays for a moment that the text marks as a hesitation. The decision that follows is explicitly attributed to fury kindled by the sight of Pallas's belt, and the closing line tracks the soul of the slain man fleeing groaning beneath the shades. The reversal of canonical signature is precise rather than approximate: where the archetypal closure releases the hero from fear of death and from attachment to outcome, this closure binds the founder to a debt of vengeance that overwrites every other consideration in the final instant. The poem knows what closure looks like, having delivered it with extraordinary fullness in Anchises's vision in Book VI, and the choice to end here, with this gesture, withholds the canonical resolution rather than failing to reach it. The reading that registers this withholding as inversion rather than as absence honours the deliberateness of the closural strategy, the founding act left visibly contaminated by the passion that completes it, and the question of what kind of imperium emerges from such an origin left as a structural opening rather than a resolved theme." + } + } + } + } + ] + }, + "kg-modal-zelda": { + "ttlFile": "ocarina-of-time.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/ocarina-of-time/monomyths/link-journey", + "label": "Link's Hero's Journey in Ocarina of Time", + "stages": { + "1": { + "label": "The boy without a fairy", + "description": "Link is the only child in Kokiri Forest without a guardian fairy, an absence that marks him as incomplete among his own people. The Great Deku Tree, dying from a curse placed by Ganondorf, sends the fairy Navi to summon Link to his side. The call arrives as both gift and burden: receiving Navi grants Link the belonging he has always lacked, but the summons leads directly into the Deku Tree's cursed interior and the revelation that dark forces threaten far beyond the forest." + }, + "2": { + "label": "The hero does not hesitate", + "description": null, + "narrative": { + "label": "Absent refusal divergence", + "rationale": "Link moves from call to action without psychological resistance. The Kokiri child who has yearned for a fairy receives one and immediately answers the summons. Mido's physical blockade at the forest path requires obtaining a sword and shield, but this functions as a mechanical gate rather than an expression of the hero's doubt or fear. The narrative's opening invests in spatial wonder rather than existential hesitation, reflecting a design where the child protagonist's eagerness is the point: in a world where Link has always been the outsider, the call is the first moment of belonging, and refusing it would contradict everything the character has silently endured." + } + }, + "3": { + "label": "The future depends upon thee", + "description": "The Great Deku Tree, having been cleansed of the parasitic curse by Link, knows the effort has come too late to save him. With his final words he entrusts Link with the Kokiri Emerald, the first of three Spiritual Stones, and charges him to seek Princess Zelda at Hyrule Castle. Navi remains as a permanent companion, a living gift of guidance that will persist long after the guardian who dispatched her has withered to a hollow stump." + }, + "4": { + "label": "Beyond the forest", + "description": "Link crosses the log bridge at the edge of Kokiri Forest, where Saria is waiting. She gives him her Fairy Ocarina as a parting gift and says goodbye, knowing he will not return as the same person. The Kokiri believe that any of their kind who leaves the forest will die. Link steps off the bridge into Hyrule Field and the world opens around him, vast and exposed, the sheltering canopy replaced by open sky." + }, + "5": { + "label": "A fairy and a green stone", + "description": "Link sneaks through the castle grounds and peers through a courtyard window to find Princess Zelda, who has been expecting him. She describes a prophetic dream: darkness engulfing Hyrule, and a figure from the forest bearing a fairy and a green stone appearing as a ray of light. Recognizing Link as that figure, she reveals Ganondorf's treachery and entrusts Link with the mission to collect the remaining Spiritual Stones before the Gerudo king can reach the Sacred Realm. Impa, Zelda's guardian, escorts Link safely out of the castle and teaches him Zelda's Lullaby, a melody that will open doors sealed by royal authority.", + "sequential": { + "label": "Goddess before trials divergence", + "rationale": "The encounter with the luminous feminine arrives before the trials rather than after them. Zelda appears in the castle courtyard almost immediately after Link enters Hyrule, making her the figure who defines and authorizes the quest rather than the one who greets the hero at its midpoint. By placing the prophetic princess at the journey's outset, the narrative establishes her as the quest-giver whose vision the hero must validate through subsequent action, transforming the encounter from a moment of earned transcendence into one of commission, and shifting its function from culmination to catalyst." + } + }, + "6": { + "label": "Stones and sages", + "description": "As a child, Link ventures into Dodongo's Cavern beneath Death Mountain and into the belly of Lord Jabu-Jabu in Zora's Domain, earning the Goron Ruby and Zora's Sapphire to complement the Kokiri Emerald. Each trial demands new skills and yields an alliance with a people whose champion will later become a sage. After the seven-year seal, Link awakens as an adult and the trials deepen: the Forest Temple reclaims Saria as the Sage of Forest, the Fire Temple frees Darunia, the Water Temple rescues Ruto, the Shadow Temple liberates Impa, and the Spirit Temple awakens Nabooru. The trials bifurcate across the temporal divide, with childhood tests of resourcefulness giving way to adult confrontations with corruption, loss, and the consequences of Ganondorf's seven-year reign.", + "narrative": { + "label": "Bifurcated trials divergence", + "rationale": "Link's trials divide across a temporal rupture that fundamentally alters their character and stakes. The child phase presents three dungeon quests to gather Spiritual Stones, each testing courage and resourcefulness within a familiar Hyrule. The seven-year seal then intervenes, and when trials resume, the hero is physically transformed, the kingdom corrupted, and each temple now demands the awakening of a sage whose power is needed to confront Ganondorf. The two phases share a structural function but differ in tone, difficulty, and narrative weight: preparation in the first, genuine confrontation with darkness in the second. This bifurcation creates a developmental arc within what is formally a single stage, turning it into a before-and-after portrait of the same hero measured against the same world at different scales of maturity and peril." + } + }, + "7": { + "label": "Seven lost years", + "description": "Link places the three Spiritual Stones on the altar of the Temple of Time and plays the Song of Time on the Ocarina. The Door of Time opens, revealing the Master Sword in its pedestal. He draws the blade and the Sacred Realm swallows him whole. His body is too young to bear the sword's power, so the chamber seals him in enchanted sleep for seven years. When he awakens in the Chamber of Sages, Rauru greets a young man who went to sleep as a child. The boy who pulled the sword is gone; the adult who opens his eyes has no memory of the passage, only its result. Hyrule outside has fallen to Ganondorf, who entered the Sacred Realm through the door Link unwittingly opened for him.", + "sequential": { + "label": "Engulfment amid trials divergence", + "rationale": "The symbolic death and rebirth arrives not at the close of the departure act but embedded within the trials themselves, splitting them into two distinct halves. Link pulls the Master Sword after completing the child-era dungeon sequence, and the seven-year seal that follows constitutes the engulfment at the heart of this archetype. By placing it midway through the trials rather than before them, the narrative creates a structural hinge: everything before the seal is preparation undertaken in innocence, everything after is confrontation undertaken with knowledge of what has been lost. The displacement turns a threshold between acts into a pivot within the central act itself." + } + }, + "8": { + "label": "A quest without temptation", + "description": null, + "narrative": { + "label": "Absent temptress divergence", + "rationale": "The quest offers no sustained moment of temptation, seduction, or invitation to abandon the journey for comfort or desire. Lon Lon Ranch and its pastoral tranquility present the closest structural candidate, yet Malon functions as a friend rather than a figure of dangerous attraction, and the ranch remains an optional interlude rather than a narrative test of resolve. The absence reflects both the protagonist's youth and the narrative's design: Link is a child thrust into responsibility without the psychological complexity that temptation requires, and even as an adult his single-mindedness is presented as a virtue rather than a limitation to be tested. The stage's function finds no purchase in a narrative where the ordinary world has been destroyed and no comfortable alternative remains to lure the hero away from his path." + } + }, + "9": { + "label": "You are not a Kokiri", + "description": "After completing the Forest Temple and returning to Kokiri Forest, Link finds a young sapling growing where the Great Deku Tree once stood. The Deku Tree Sprout greets him and reveals what the original guardian never told him: Link is not Kokiri but Hylian, brought to the forest as an infant by his wounded mother during a great war and entrusted to the Deku Tree's care before she died. The deepest truth about who he is arrives not as a test of worthiness but as a quiet disclosure, offered by the gentle successor to a dead guardian.", + "narrative": { + "label": "Revelation rather than confrontation divergence", + "rationale": "Link's encounter with the father archetype arrives as passive disclosure rather than active confrontation. The Deku Tree Sprout simply tells Link what has always been true: he is Hylian, not Kokiri, placed in the forest as an infant by his dying mother during a great war and entrusted to the guardian tree's care. There is no dramatic standoff, no test of worthiness imposed by a paternal authority, no crisis of submission or defiance. The deepest truth about the hero's identity is delivered gently by a sapling grown where a great tree once stood, lending the moment an elegiac quality that substitutes quiet grief for the awe and terror that typically mark this stage. The father figure itself has already died; what remains is not authority but memory, and the reckoning is less a confrontation with power than an acceptance of orphanhood." + } + }, + "10": { + "label": "The seventh sage", + "description": "With all five temple sages awakened, Sheik summons Link to the Temple of Time and reveals herself as Princess Zelda, the seventh and final sage. She confirms Link's identity as the Hero of Time and explains the full structure of the Triforce, which split upon Ganondorf's touch: Courage chose Link, Wisdom chose Zelda, and Power remained with Ganondorf. The hero's destiny, scattered across seven years of fragmented revelation, crystallizes into a single coherent picture. Link stands in the temple as the fully recognized bearer of the Triforce of Courage, his role no longer prophesied but declared." + }, + "11": { + "label": "The light arrows", + "description": "Zelda bestows the Light Arrows upon Link, the sacred weapon capable of piercing Ganondorf's dark power. The gift is immediate and urgent: moments after the transfer, Ganondorf encases Zelda in a crystal prison and takes her to his tower, transforming the boon's delivery into the precipitating act of the final confrontation. The six sages channel their combined power to create a rainbow bridge spanning the chasm to Ganondorf's fortress, opening the path that only the fully equipped hero can walk." + }, + "12": { + "label": "The hero presses on", + "description": null, + "narrative": { + "label": "Absent return refusal divergence", + "rationale": "Link transitions directly from defeating Ganon to the sages' sealing ritual without hesitation or reluctance to leave the special world behind. The narrative's momentum carries the hero forward through castle collapse and final confrontation without pause, and the decision to return is ultimately made for Link by Zelda rather than by him, removing the psychological space where reluctance could arise. The absence is structurally reinforced by the medium itself: after the climactic battle, control shifts to cutscene and the hero's agency is temporarily suspended precisely when the archetype would expect an internal reckoning with the prospect of return." + } + }, + "13": { + "label": "The tower comes down", + "description": "Ganondorf is defeated atop his tower but triggers its collapse with his final act of spite. Link and Zelda race downward through crumbling corridors, Zelda using her power to unseal iron barriers while the structure disintegrates around them. Flames, falling stone, and reanimated guardians block the descent. They emerge at the base moments before the tower crashes into rubble, only to hear something stir beneath the wreckage: Ganondorf, drawing on the Triforce of Power, transforms into the monstrous Ganon and rises from the ruins for a final confrontation." + }, + "14": { + "label": "Six sages as one", + "description": "Link drives the Master Sword into Ganon's skull and Zelda channels the power of the six awakened sages to bind him. Together they seal Ganondorf into the Sacred Realm, a prison sustained not by the hero's strength alone but by a collective sacred authority that no single warrior could supply. Ganondorf, raging against the seal, swears to break free and destroy their descendants, but the binding holds." + }, + "15": { + "label": "Lay the Master Sword to rest", + "description": "Zelda takes back the Ocarina of Time and plays the Song of Time to send Link back to his childhood, closing the circle that opened when he first drew the Master Sword. The adult world dissolves around him. Link returns to the Temple of Time as a child, the sword resting again in its pedestal, Navi departing through a window into light. He stands alone in the temple, carrying the memory of a future that has been unmade.", + "semiotic": { + "label": "Temporal return threshold divergence", + "rationale": "The return threshold is crossed through time rather than space. Zelda uses the Ocarina of Time to send Link backward seven years, dissolving the boundary between his adult heroic identity and his childhood self. Where the archetype envisions a hero physically re-entering the ordinary world carrying new wisdom, this narrative achieves the return by rewinding the world itself around the hero, making the threshold a temporal membrane rather than a spatial border. The semiotic shift has profound consequences: the hero does not bring wisdom back to a waiting community, because the community never experienced the crisis from which he saved them. The sign of return looks identical to the sign of departure, a child standing in a courtyard, but its meaning has been wholly transformed by what only the hero remembers." + } + }, + "16": { + "label": "Child and hero", + "description": "Link has traversed both the child era and the adult era, the ordinary Hyrule and the Sacred Realm, carrying within a small body the experiential knowledge of a completed hero's journey. Yet the mastery is entirely private. The adult timeline has been erased, the people he saved do not remember being saved, and the two worlds he bridged now exist only in his memory. He walks through Hyrule Castle Town as a child among children, unrecognized and unrecognizable.", + "narrative": { + "label": "Private mastery divergence", + "rationale": "The hero has genuinely traversed both temporal worlds and the Sacred Realm between them, yet the time-travel return erases the public dimension of that mastery. In the restored child timeline, no one witnessed Link's adult deeds, the sages were never awakened, and the kingdom never fell. Link possesses experiential knowledge of both eras but cannot demonstrate, share, or leverage it. This transforms the archetype from a state of demonstrated dual-world fluency into an entirely interior condition: the hero masters two worlds that no longer coexist, making the mastery real but invisible, a private achievement that the surrounding community has no framework to recognize or validate." + } + }, + "17": { + "label": "Through the courtyard window", + "description": "Link walks through the castle grounds and peers through the courtyard window to find Zelda again, exactly as he did at the journey's beginning, before any of it happened. She turns and sees a boy with a fairy and a green stone. Whether she recognizes him, whether the meeting will unfold differently this time, the narrative does not say. The ending mirrors the opening almost exactly, but the symmetry is deceptive: one of the two figures standing in that courtyard carries the weight of an entire erased future, and the other does not yet know there is anything to carry.", + "narrative": { + "label": "Bittersweet freedom divergence", + "rationale": "Zelda restores Link's childhood, but the gift carries an unresolved weight. The hero returns to a moment before the quest began, standing again before the princess, yet he carries within him the memory of a future now erased: friendships forged in temples, battles survived, a world saved that will never know it needed saving. The freedom is genuine in that Link has been released from the burden of the Hero of Time, but it is shadowed by a loneliness that the narrative acknowledges without resolving. Rather than the serene transcendence or liberated purposefulness that typically marks this stage, the ending offers a more melancholy reading: the hero's reward is the chance to live an ordinary life whose full meaning only he will ever understand." + } + } + } + } + ] + }, + "kg-modal-orlando": { + "ttlFile": "orlando-furioso.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/orlando-furioso/monomyths/ruggiero-journey", + "label": "Ruggiero's Hero's Journey in Orlando Furioso", + "stages": { + "1": { + "label": "Carried away from Albracca", + "description": "During the chaos of war around Albracca, Ruggiero loses control of the Hippogriff and is violently carried away through the sky into unknown territories. This forced displacement abruptly tears him out of the ordinary rhythm of martial conflict and introduces him into Ariosto's wider universe of enchantment, wandering, and destiny." + }, + "2": { + "label": "Enchanted Delays", + "description": "Rather than explicitly refusing his destiny, Ruggiero repeatedly becomes suspended inside enchanted systems designed to delay or dissolve his heroic development. His captivity within Alcina's island of pleasure and Atlante's illusory palace traps him in cycles of forgetfulness, sensual distraction, and temporal stagnation. These recurring detours function as a fragmented refusal in which the hero continually postpones the irreversible transformation awaiting him.", + "narrative": { + "label": "Dispersed Refusal divergence", + "rationale": "Instead of presenting a single moment of hesitation immediately following the call, Ariosto disperses the refusal across multiple enchanted episodes that collectively suspend the hero's destiny. Ruggiero does not consciously reject transformation; rather, he repeatedly forgets, postpones, or loses sight of it within systems of magical distraction. The divergence replaces Campbell's concentrated psychological hesitation with a cyclical structure of narrative delay that mirrors the poem's recursive and labyrinthine form." + } + }, + "3": { + "label": "Alcina's Seduction", + "description": "Within Alcina's enchanted island where the Hippogryph deposits him, Ruggiero abandons martial honor and heroic purpose to live in sensual luxury under the spell of the sorceress. The enchantress reduces the hero to a passive object of pleasure, isolating him from memory, duty, and destiny while concealing the monstrous reality beneath her seductive beauty. Here, erotic enchantment itself becomes the mechanism threatening to erase the hero's transformative path.", + "sequential": { + "label": "Temptress before Trials divergence", + "rationale": "In Campbell's canonical sequence, Woman as the Temptress appears late in the Initiation act, after the hero has already undergone trials and encountered the Goddess. In Orlando Furioso, however, the Alcina episode occurs almost immediately after the Call to Adventure, before Ruggiero has achieved any heroic stability or encountered Bradamante. Ariosto deliberately inverts the sequence so that the hero's first encounter with the feminine is seductive dissolution rather than spiritual fulfillment, portraying Ruggiero as a hero initially trapped in enchantment and dependent on external rescue rather than earned mastery." + } + }, + "4": { + "label": "Melissa's Ring", + "description": "Disguised as the magician Atlante, Melissa approaches Ruggiero inside Alcina's enchanted domain and delivers the magic ring capable of dispelling every illusion. Through this supernatural object, the hero suddenly perceives the horrifying truth behind the island's beauty and recovers the capacity for autonomous judgment. The ring functions as the quintessential Campbellian talisman: a magical aid that allows the hero to pierce deception and continue the journey toward his destined transformation.", + "sequential": { + "label": "Aid after Temptation divergence", + "rationale": "In Campbell's monomyth, Supernatural Aid appears before the hero's trials, preparing him for the journey ahead. In Orlando Furioso, however, Melissa's intervention arrives only after Ruggiero has already fallen into Alcina's enchantment and enacted a prolonged refusal of destiny. The aid therefore functions not as preparation but as rescue: the magic ring becomes a remedy for collapse rather than a tool for future trials, but it allows the hero to resume the journey to his transformation." + } + }, + "5": { + "label": "Departure from Logistilla", + "description": "After escaping Alcina's island, Ruggiero reaches the rational and disciplined realm of Logistilla, where he receives instruction regarding virtue, self-control, and destiny and also learns to control the Hippogryph. His departure from this protected environment marks the decisive threshold crossing into Ariosto's unstable world of wandering adventures, martial tests, and dynastic responsibility. The hero leaves behind passive enchantment and begins acting within the larger historical movement of the poem." + }, + "6": { + "label": "Atlante's Palace", + "description": "Inside Atlante's enchanted palace, knights endlessly pursue phantoms corresponding to their deepest desires while losing all stable orientation and identity. Ruggiero enters the palace having glimpsed an apparition of Bradamante within its corridors, and loses himself entirely in the labyrinth of his own longing. The hero becomes absorbed into this closed system of illusion where time, purpose, and heroic progress collapse into repetition. The palace functions as a symbolic dissolution of the self, temporarily swallowing the hero inside a magical labyrinth from which genuine transformation can occur only through escape and disillusionment.", + "narrative": { + "label": "Paternal Imprisonment divergence", + "rationale": "The Belly of the Whale is usually an impersonal abyss initiating the hero into symbolic death. In Orlando Furioso, however, Atlante's enchanted palace is a paternal prison built out of protective love rather than cosmic fate or malice. Ruggiero's symbolic death therefore becomes psychological rather than cosmic: he must free himself not from an external darkness but from the foster-father's protective control that has shaped and confined his identity since childhood." + } + }, + "7": { + "label": "Breaking from Atlante", + "description": "Ruggiero's relationship with Atlante is defined by the tension between loving protection and spiritual imprisonment. The magician repeatedly attempts to shield the hero from his prophesied death by enclosing him inside magical systems that prevent maturity, conversion, and marriage. The atonement occurs when Ruggiero ultimately escapes Atlante's authority, accepting the risks of destiny rather than remaining suspended within paternal control and illusion.", + "sequential": { + "label": "Atonement before Trials divergence", + "rationale": "Typically, the Atonement with the Father stage typically serves as the spiritual climax of the Initiation act, occurring after the hero has been tempered and purified by the Road of Trials. As for Ruggiero's journey, his confrontation with Atlante's paternal authority \u2014 and the subsequent dissolution of the magician's protective enchantments \u2014 occurs early in the narrative sequence. This break from the father figure acts as a prerequisite that enables the 'Wandering Adventures' to begin, rather than being the reward for completing them. Ariosto thus reorders the sequence so that the hero's liberation from paternal control is the starting point of his independent knightly development rather than its final initiation." + } + }, + "8": { + "label": "Wandering Adventures", + "description": "Astolfo frees Ruggiero from Atlante's castle and the hero's journey can start again. Across dozens of cantos, Ruggiero passes through an immense series of duels, rescues, voyages, magical confrontations, and knightly ordeals dispersed throughout Ariosto's fragmented narrative structure. Each episode tests a different aspect of his identity: martial courage, loyalty, erotic discipline, and spiritual direction. Rather than forming a linear sequence, these trials accumulate through interruption and narrative suspension, gradually constructing the hero's readiness for dynastic and religious transformation." + }, + "9": { + "label": "Bradamante's Destiny", + "description": "Along all the trials, the hero is occasionally reunited with his love interest. The recurring reunions between Ruggiero and Bradamante collectively constitute the hero's encounter with the feminine principle that gives direction and ultimate meaning to his journey. Bradamante is not a passive beloved awaiting rescue but a formidable warrior who has herself descended into Merlin's cave and received the prophetic vision of their future dynasty. Through her, Ruggiero perceives not only personal love but a transpersonal destiny, since the founding of the Este lineage depends entirely on his successful transformation.", + "semiotic": { + "label": "Warrior Goddess divergence", + "rationale": "Campbell's Meeting with the Goddess draws on the idea of the divine feminine as cosmic totality, where her love reveals unity beneath division. In 'Orlando Furioso', this role is reworked in Bradamante: a warrior knight who fights, wins duels, and pursues Ruggiero with equal determination. Her love is unconditional in Campbell's sense, as she never abandons their destined union, but it is expressed through martial agency rather than nurturing receptivity. Renaissance chivalric tradition thus replaces the sacred goddess with the female heroine, preserving the structure of the archetype while transforming its semiotic form." + } + }, + "10": { + "label": "Delayed Conversion", + "description": "Even after repeated prophecies and encounters directing him toward Christian conversion and dynastic destiny, Ruggiero continually postpones his definitive return from enchantment and ambiguity. His hesitation unfolds across numerous cantos through detours, interruptions, and deferred decisions that slow the transition from Saracen knight to Christian founder.", + "sequential": { + "label": "Refusal before Apotheosis divergence", + "rationale": "The Refusal of the Return normally follows the Apotheosis and Ultimate Boon, when the hero resists re-entering ordinary life after transcendence. In Ruggiero's case, however, this sequence is displaced: his prolonged delay occurs before both baptism and the attainment of the Boon. He refuses not the return from enlightenment, but the movement toward it, postponing the transformation that would lead to conversion and marriage. What he clings to is not transcendence but his existing Saracen identity, so the refusal becomes a resistance to ascent rather than descent." + } + }, + "11": { + "label": "Bradamante's Rescues", + "description": "Throughout the poem, Bradamante and her allies repeatedly intervene to recover Ruggiero from enchantment, hesitation, or narrative dispersion. Whether through Melissa's magical assistance or Bradamante's direct actions, the hero is continually redirected toward his providential role whenever he risks becoming trapped within illusion or passivity. The rescue therefore operates as a sustained corrective force distributed throughout the narrative.", + "narrative": { + "label": "Dispersed Rescue divergence", + "rationale": "This stage subverts the 'Rescue from Without' by transforming a singular narrative event into a dispersed, structural motif. While Campbell's model envisions a final, definitive intervention to pull the hero home, Ruggiero's rescue is fragmented across the entire epic, reflecting the 'entrelacement' structure of the poem. Each time the hero falls into enchantment or loses his path due to his own passivity, Bradamante or her surrogate Melissa must intervene. The 'Rescue' thus loses its character as a final threshold crossing and becomes a constant, corrective cycle of retrieval, highlighting a hero who is perpetually slipping away from his destiny and a heroine who functions as his necessary external conscience." + }, + "sequential": { + "label": "Rescue before Apotheosis divergence", + "rationale": "In the standard monomythic sequence, the 'Rescue from Without' occurs during the Return, serving to support a hero who has already achieved enlightenment or the ultimate boon but is too exhausted or unwilling to cross back into the ordinary world. Ariosto radically displaces this stage by making the rescue a recurring necessity long before Ruggiero's spiritual 'Apotheosis'. This reordering is central to the poem's thematic focus on human frailty and the power of love, as Ruggiero cannot reach his divine transformation on his own will but requires multiple 'rescues' from Bradamante and Melissa." + } + }, + "12": { + "label": "Baptism and Conversion", + "description": "Ruggiero's baptism marks the symbolic death of his previous identity and his elevation into a new spiritual condition. The hero abandons his former religious and political affiliation to enter the Christian order associated with Bradamante and Charlemagne's court. This transformation functions as a literal apotheosis in which personal conversion simultaneously becomes dynastic destiny, historical legitimation, and metaphysical rebirth.", + "semiotic": { + "label": "Religious Apotheosis divergence", + "rationale": "The Apotheosis stage generally operates through mythic revelation, cosmic consciousness, or metaphysical transcendence. Ariosto translates this transformative elevation into the specifically Christian language of baptism, conversion, and sacramental rebirth. The hero's spiritual ascent is therefore expressed not through universal mythology but through the religious and political semiotics of Renaissance Christendom." + } + }, + "13": { + "label": "Este Foundation", + "description": "The union in marriage between Ruggiero and Bradamante produces a boon that extends beyond the hero's private fulfillment and into the future history of an entire civilization. Their marriage establishes the mythical origin of the Este dynasty celebrated by Ariosto's poem, transforming the hero's personal journey into the foundation of political continuity, noble lineage, and collective cultural identity." + }, + "14": { + "label": "Flight from the Saracen camp", + "description": "After his baptism, Ruggiero must sever himself physically and legally from the Saracen world that defined his identity. His withdrawal from their camp is not a sudden magical escape, but a painful break from shared loyalty and military belonging. This departure is enabled by a providential structure: the Saracen leader truce-breaking releases Ruggiero from his oath of fealty. What appears as \"magic\" is instead the moral failure of his former leader, which dissolves his obligations and opens the path back to the Christian world." + }, + "15": { + "label": "Defection to Christendom", + "description": "Ruggiero's passage to the Christian side marks the full crossing of the return threshold: a public defection and entry into the order of Christian knights. This is not merely a change of allegiance but a translation of his Saracen martial identity into a new theological and cultural register, where he appears as both convert and supreme exemplar. The threshold itself is civilizational rather than physical, requiring him to carry his transformed self wholly into a new historical role shaped by Merlin's prophecy. By definitively abandoning his former side, he reintegrates the experiences of wandering, enchantment, and crisis into a stable identity recognized by Charlemagne's world, completing the passage from divided existence to unified purpose." + }, + "16": { + "label": "Knight of the Two Worlds", + "description": "Ruggiero ultimately embodies a reconciliation between worlds that are normally represented as irreconcilable enemies throughout the poem. As a Saracen knight who converts to Christianity and founds a Christian dynasty without erasing his origins, he becomes a literal bridge between civilizations, genealogies, and cultural identities. The hero masters both worlds by integrating them into a new dynastic synthesis rather than annihilating one in favor of the other." + }, + "17": { + "label": "Dynastic Peace", + "description": "Ruggiero achieves a provisional state of fulfillment through marriage, dynastic foundation, and integration into the Christian world. Yet Ariosto's celebratory closure remains partially shadowed by the later tradition surrounding the hero's premature death, introducing instability into the monomyth's final promise of peaceful transcendence. Freedom is therefore achieved historically and genealogically more than existentially or personally.", + "narrative": { + "label": "Freedom through Dynasty divergence", + "rationale": "Campbell's final stage usually culminates in the hero's personal liberation from fear and existential anxiety. In Orlando Furioso, this freedom is displaced from the individual hero onto the historical future generated by his marriage and descendants. The narrative's true stability belongs to the Este dynasty rather than to Ruggiero himself, whose later death continues to shadow the apparent closure of the poem." + } + } + } + } + ] + } + } +} diff --git a/website/index.html b/website/index.html index b939496..2fb4cf9 100644 --- a/website/index.html +++ b/website/index.html @@ -2824,7 +2824,6 @@

Behind the Journey

- diff --git a/website/js/main.js b/website/js/main.js index 02ae8b3..e39e7a6 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -476,3 +476,234 @@ if (bgCanvas) { }); } // end bgCanvas guard + +// ── Modal Stage Data Enhancer (JSON-backed) ──────────────────────────────── +const MODAL_STAGE_DATA_PATHS = [ + '/data/modal-stage-data.json', + './data/modal-stage-data.json', +]; + +const TYPE_LABELS = { + sequential: 'Sequential Divergence', + narrative: 'Narrative Divergence', + semiotic: 'Semiotic Divergence', +}; + +let modalStageDataCache = null; +let modalStageDataPromise = null; + +async function loadModalStageData() { + if (modalStageDataCache) return modalStageDataCache; + if (modalStageDataPromise) return modalStageDataPromise; + + modalStageDataPromise = (async () => { + let lastError = null; + for (const path of MODAL_STAGE_DATA_PATHS) { + try { + const response = await fetch(path); + if (!response.ok) throw new Error(`${response.status}`); + const data = await response.json(); + modalStageDataCache = data; + return data; + } catch (error) { + lastError = error; + } + } + throw lastError || new Error('Unable to fetch modal stage data'); + })().catch(error => { + console.warn('[modal-stage-data]', error); + return null; + }); + + return modalStageDataPromise; +} + +function getModalJourneys(data, modalId) { + if (!data || !data.modals || !data.modals[modalId]) return []; + const journeys = data.modals[modalId].journeys; + return Array.isArray(journeys) ? journeys : []; +} + +let divergenceTooltip = null; +let tooltipHideTimer = null; + +function createDivergenceTooltip() { + if (divergenceTooltip) return; + divergenceTooltip = document.createElement('div'); + divergenceTooltip.id = 'div-tooltip'; + divergenceTooltip.setAttribute('role', 'tooltip'); + divergenceTooltip.innerHTML = ` +
+
+
+ `; + document.body.appendChild(divergenceTooltip); +} + +function showDivergenceTooltip(icon, typeLabel, label, rationale) { + clearTimeout(tooltipHideTimer); + divergenceTooltip.querySelector('.div-tooltip-type').textContent = typeLabel; + divergenceTooltip.querySelector('.div-tooltip-label').textContent = label; + divergenceTooltip.querySelector('.div-tooltip-body').textContent = rationale || 'No rationale available.'; + + divergenceTooltip.style.opacity = '0'; + divergenceTooltip.style.display = 'block'; + + const rect = icon.getBoundingClientRect(); + const tooltipWidth = 420; + let left = rect.left + window.scrollX + rect.width / 2 - tooltipWidth / 2; + const top = rect.top + window.scrollY - 8; + + left = Math.max(8, Math.min(left, window.innerWidth - tooltipWidth - 8)); + divergenceTooltip.style.left = `${left}px`; + divergenceTooltip.style.top = `${top}px`; + divergenceTooltip.style.width = `${tooltipWidth}px`; + + requestAnimationFrame(() => { + divergenceTooltip.style.opacity = '1'; + divergenceTooltip.style.transform = 'translateY(-100%) translateY(-12px)'; + }); +} + +function hideDivergenceTooltip() { + tooltipHideTimer = setTimeout(() => { + if (!divergenceTooltip) return; + divergenceTooltip.style.opacity = '0'; + divergenceTooltip.style.transform = 'translateY(-100%) translateY(-8px)'; + setTimeout(() => { + divergenceTooltip.style.display = 'none'; + }, 250); + }, 120); +} + +function createDetailPanel(fitBar) { + const panel = document.createElement('div'); + panel.className = 'stage-detail-panel'; + panel.innerHTML = ` +
+ +
+
+
+
+ `; + fitBar.parentNode.insertBefore(panel, fitBar.nextSibling); + return panel; +} + +function openDetailPanel(panel, order, total, stageData) { + const kicker = panel.querySelector('.stage-detail-kicker'); + const title = panel.querySelector('.stage-detail-title'); + const body = panel.querySelector('.stage-detail-body'); + + kicker.textContent = `Stage ${order} of ${total}`; + title.textContent = stageData?.label || `Stage ${order}`; + body.textContent = stageData?.description || 'No description available for this stage.'; + + panel.classList.add('open'); +} + +function closeDetailPanel(panel, segments) { + panel.classList.remove('open'); + if (segments) segments.forEach(segment => segment.classList.remove('segment-active')); +} + +function isMobileViewport() { + return window.innerWidth <= 600; +} + +function wireModalStageData(modal) { + const fitBars = [...modal.querySelectorAll('.fit-bar.fit-bar-large')]; + if (!fitBars.length) return; + + // Trigger data fetch once so first interaction is typically warm. + loadModalStageData(); + + fitBars.forEach((fitBar, fitBarIndex) => { + const segments = [...fitBar.querySelectorAll('.segment')]; + const panel = createDetailPanel(fitBar); + let activeIndex = null; + + panel.querySelector('.stage-detail-close').addEventListener('click', () => { + closeDetailPanel(panel, segments); + activeIndex = null; + }); + + segments.forEach((segment, segmentIndex) => { + segment.style.cursor = 'pointer'; + const stageOrder = segmentIndex + 1; + + segment.addEventListener('click', async event => { + if (isMobileViewport()) return; + if (event.target.classList.contains('div-icon')) return; + + const data = await loadModalStageData(); + const journeys = getModalJourneys(data, modal.id); + const stageMap = (journeys[fitBarIndex] || journeys[0] || {}).stages || null; + const stageData = stageMap ? stageMap[String(stageOrder)] : null; + + if (activeIndex === segmentIndex && panel.classList.contains('open')) { + closeDetailPanel(panel, segments); + activeIndex = null; + return; + } + + segments.forEach(item => item.classList.remove('segment-active')); + segment.classList.add('segment-active'); + activeIndex = segmentIndex; + + openDetailPanel(panel, stageOrder, segments.length, stageData); + }); + }); + + fitBar.querySelectorAll('.div-icon').forEach(icon => { + if (isMobileViewport()) return; + + let divergenceType = null; + if (icon.classList.contains('sequential')) divergenceType = 'sequential'; + else if (icon.classList.contains('narrative')) divergenceType = 'narrative'; + else if (icon.classList.contains('semiotic')) divergenceType = 'semiotic'; + if (!divergenceType) return; + + const segment = icon.closest('.segment'); + const stageOrder = segments.indexOf(segment) + 1; + + icon.addEventListener('mouseenter', async () => { + const data = await loadModalStageData(); + const journeys = getModalJourneys(data, modal.id); + const stageMap = (journeys[fitBarIndex] || journeys[0] || {}).stages || null; + const stageData = stageMap ? stageMap[String(stageOrder)] : null; + const divergenceInfo = stageData ? stageData[divergenceType] : null; + showDivergenceTooltip( + icon, + TYPE_LABELS[divergenceType], + divergenceInfo ? divergenceInfo.label : TYPE_LABELS[divergenceType], + divergenceInfo ? divergenceInfo.rationale : null + ); + }); + icon.addEventListener('mouseleave', hideDivergenceTooltip); + }); + }); +} + +function initModalStageEnhancer() { + const modals = [...document.querySelectorAll('.kg-modal')]; + if (!modals.length) return; + + createDivergenceTooltip(); + + modals.forEach(modal => { + const observer = new MutationObserver(() => { + if (modal.getAttribute('aria-hidden') !== 'false') return; + wireModalStageData(modal); + observer.disconnect(); + }); + observer.observe(modal, { attributes: true }); + }); +} + +initModalStageEnhancer(); diff --git a/website/js/modals-enhancer.js b/website/js/modals-enhancer.js deleted file mode 100644 index c103c8c..0000000 --- a/website/js/modals-enhancer.js +++ /dev/null @@ -1,447 +0,0 @@ -// ── Divergence Tooltip & Stage Detail Panel System ───────────────────────── -// -// Per kg-modal with a TTL mapping: -// • Hovering a .div-icon → tooltip with divergence rationale -// • Clicking a .segment → expandable panel with stage realization description -// -// TTL files are expected at: -// - /subgraphs/ (production) -// - ../graph/subgraphs/ (local fallback) -// ────────────────────────────────────────────────────────────────────────── - -// ── Modal ID → TTL filename mapping ──────────────────────────────────────── -const MODAL_TTL_MAP = { - 'kg-modal-matrix': 'the-matrix.ttl', - 'kg-modal-lion-king': 'the-lion-king.ttl', - 'kg-modal-call-of-wild': 'the-call-of-the-wild.ttl', - 'kg-modal-rostam': 'rostam-haft-khan.ttl', - 'kg-modal-waltermitty': 'walter-mitty.ttl', - 'kg-modal-batman': 'batman.ttl', - 'kg-modal-oedipus': 'oedipus.ttl', - 'kg-modal-sable-fable': 'sable-fable.ttl', - 'kg-modal-ladybird': 'lady-bird.ttl', - 'kg-modal-aeneid': 'aeneid.ttl', - 'kg-modal-zelda': 'ocarina-of-time.ttl', - 'kg-modal-orlando': 'orlando-furioso.ttl', -}; - -const TTL_BASE_PATHS = ['/subgraphs/', '../graph/subgraphs/']; - -// Cache: modalId → parsed stageMap -const divergenceCache = {}; -const fetchPromises = {}; - -// ── TTL Parser ────────────────────────────────────────────────────────────── -function parseTTL(text) { - const stageMap = {}; - - // Step 1: divergence IRI → { type, label, rationale } - const divergenceInfo = {}; - const divTypes = ['SemioticDivergence', 'NarrativeDivergence', 'SequentialDivergence']; - const typeToKey = { - 'SemioticDivergence': 'semiotic', - 'NarrativeDivergence': 'narrative', - 'SequentialDivergence': 'sequential', - }; - - const blocks = text.split(/\n(?=<)/); - - for (const block of blocks) { - let divType = null; - for (const dt of divTypes) { - if (block.includes(`monomyth:${dt}`)) { divType = dt; break; } - } - if (!divType) continue; - - const iriMatch = block.match(/^<([^>]+)>/); - if (!iriMatch) continue; - const iri = iriMatch[1]; - - const labelMatch = block.match(/rdfs:label\s+"([^"]+)"/); - const rationaleMatch = block.match(/monomyth:divergenceRationale\s+"""([\s\S]*?)"""@en/); - - divergenceInfo[iri] = { - type: typeToKey[divType], - label: labelMatch ? labelMatch[1] : iri.split('/').pop(), - rationale: rationaleMatch ? rationaleMatch[1].replace(/\s+/g, ' ').trim() : null, - }; - } - - // Step 2: stage realizations → { label, description, divergences } - for (const block of blocks) { - if (!block.includes('monomyth:StageRealization')) continue; - - const orderMatch = block.match(/monomyth:stageRealizationOrder\s+(\d+)/); - if (!orderMatch) continue; - const order = parseInt(orderMatch[1], 10); - if (!stageMap[order]) stageMap[order] = {}; - - // Stage realization label - const labelMatch = block.match(/rdfs:label\s+"([^"]+)"@en/); - if (labelMatch) stageMap[order].label = labelMatch[1]; - - // Realization description - const descMatch = block.match(/monomyth:realizationDescription\s+"""([\s\S]*?)"""@en/); - if (descMatch) stageMap[order].description = descMatch[1].replace(/\s+/g, ' ').trim(); - - // Divergences - const divPredicates = [ - { pred: 'hasSequentialDivergence', key: 'sequential' }, - { pred: 'hasNarrativeDivergence', key: 'narrative' }, - { pred: 'hasSemioticDivergence', key: 'semiotic' }, - ]; - for (const { pred, key } of divPredicates) { - const re = new RegExp(`monomyth:${pred}\\s+<([^>]+)>`); - const match = block.match(re); - if (match) { - const info = divergenceInfo[match[1]]; - if (info) stageMap[order][key] = { label: info.label, rationale: info.rationale }; - } - } - } - - return stageMap; -} - -// ── Batman-specific parser ────────────────────────────────────────────────── -// Batman: Year One has two journeys sharing stageRealizationOrder 1-17. -// We hardcode the stage IRI slugs for each journey in the correct order, -// then build two clean stage maps from the parsed TTL data. - -const BATMAN_BASE = 'batman-year-one/stages/'; - -// Stage IRI slugs in order 1-17 for each journey -const BATMAN_BRUCE_SLUGS = [ - 'the-train-to-gotham', // 1 - 'i-am-not-ready', // 2 - 'the-bat-at-the-window', // 3 - 'the-dinner-party-ambush', // 4 - 'the-tenement-siege', // 5 - 'the-distributed-trials', // 6 - 'encounter-with-selina', // 7 - 'the-absent-temptation', // 8 - 'the-absent-atonement', // 9 - 'the-absent-apotheosis', // 10 - 'the-bridge-rescue', // 11 - 'refusal-of-the-return', // 12 - 'the-magic-flight', // 13 - 'rescue-from-without', // 14 - 'crossing-the-return-threshold', // 15 - 'master-of-two-worlds', // 16 - 'freedom-to-live', // 17 -]; - -const BATMAN_GORDON_SLUGS = [ - 'arrival-in-gotham', // 1 - 'waiting-to-report', // 2 - 'the-absent-aid', // 3 - 'the-beating', // 4 - 'beating-flass', // 5 - 'the-honest-cop-trials', // 6 - 'the-intellectual-equal', // 7 - 'the-extramarital-affair', // 8 - 'confession-to-barbara', // 9 - 'family-man', // 10 - 'the-bridge-alliance', // 11 - 'refusal-of-the-return', // 12 - 'the-magic-flight', // 13 - 'rescue-from-without', // 14 - 'crossing-the-return-threshold', // 15 - 'master-of-two-worlds', // 16 - 'freedom-to-live', // 17 -]; - -function parseBatmanTTL(text) { - const blocks = text.split(/\n(?=<)/); - - // Step 1: build divergence IRI → { label, rationale } - const divergenceInfo = {}; - const divTypes = ['SemioticDivergence', 'NarrativeDivergence', 'SequentialDivergence']; - const typeToKey = { SemioticDivergence: 'semiotic', NarrativeDivergence: 'narrative', SequentialDivergence: 'sequential' }; - - for (const block of blocks) { - let divType = null; - for (const dt of divTypes) { if (block.includes(`monomyth:${dt}`)) { divType = dt; break; } } - if (!divType) continue; - const iriMatch = block.match(/^<([^>]+)>/); - if (!iriMatch) continue; - const labelMatch = block.match(/rdfs:label\s+"([^"]+)"/); - const rationaleMatch = block.match(/monomyth:divergenceRationale\s+"""([\s\S]*?)"""@en/); - divergenceInfo[iriMatch[1]] = { - label: labelMatch ? labelMatch[1] : iriMatch[1].split('/').pop(), - rationale: rationaleMatch ? rationaleMatch[1].replace(/\s+/g, ' ').trim() : null, - }; - } - - // Step 2: build slug → stageData lookup from all StageRealization blocks - const slugData = {}; - for (const block of blocks) { - if (!block.includes('monomyth:StageRealization')) continue; - const iriMatch = block.match(/^<([^>]+)>/); - if (!iriMatch) continue; - const fullIri = iriMatch[1]; // e.g. batman-year-one/stages/the-train-to-gotham - const slug = fullIri.replace(BATMAN_BASE, ''); - const entry = {}; - - const labelMatch = block.match(/rdfs:label\s+"([^"]+)"@en/); - if (labelMatch) entry.label = labelMatch[1]; - - const descMatch = block.match(/monomyth:realizationDescription\s+"""([\s\S]*?)"""@en/); - if (descMatch) entry.description = descMatch[1].replace(/\s+/g, ' ').trim(); - - const divPredicates = [ - { pred: 'hasSequentialDivergence', key: 'sequential' }, - { pred: 'hasNarrativeDivergence', key: 'narrative' }, - { pred: 'hasSemioticDivergence', key: 'semiotic' }, - ]; - for (const { pred, key } of divPredicates) { - const m = block.match(new RegExp(`monomyth:${pred}\\s+<([^>]+)>`)); - if (m && divergenceInfo[m[1]]) { - entry[key] = { label: divergenceInfo[m[1]].label, rationale: divergenceInfo[m[1]].rationale }; - } - } - slugData[slug] = entry; - } - - // Step 3: assemble ordered stage maps from the hardcoded slug lists - function buildMap(slugList) { - const map = {}; - slugList.forEach((slug, idx) => { - map[idx + 1] = slugData[slug] || {}; - }); - return map; - } - - return [buildMap(BATMAN_BRUCE_SLUGS), buildMap(BATMAN_GORDON_SLUGS)]; -} - - -// ── Fetch & cache TTL ─────────────────────────────────────────────────────── -async function getDivergenceData(modalId) { - if (divergenceCache[modalId]) return divergenceCache[modalId]; - if (fetchPromises[modalId]) return fetchPromises[modalId]; - - const filename = MODAL_TTL_MAP[modalId]; - if (!filename) return null; - - const isBatman = modalId === 'kg-modal-batman'; - - fetchPromises[modalId] = (async () => { - let lastErr = null; - for (const basePath of TTL_BASE_PATHS) { - try { - const r = await fetch(`${basePath}${filename}`); - if (!r.ok) throw new Error(`${r.status}`); - return await r.text(); - } catch (err) { - lastErr = err; - } - } - throw lastErr || new Error('Unable to fetch TTL'); - })() - .then(text => { - const d = isBatman ? parseBatmanTTL(text) : parseTTL(text); - divergenceCache[modalId] = d; - return d; - }) - .catch(err => { console.warn('[modals-enhancer]', err); return null; }); - - return fetchPromises[modalId]; -} - -// ── Tooltip ───────────────────────────────────────────────────────────────── -let tooltip = null; -let hideTimer = null; - -function createTooltip() { - if (tooltip) return; - tooltip = document.createElement('div'); - tooltip.id = 'div-tooltip'; - tooltip.setAttribute('role', 'tooltip'); - tooltip.innerHTML = ` -
-
-
- `; - document.body.appendChild(tooltip); -} - -function showTooltip(icon, typeLabel, label, rationale) { - clearTimeout(hideTimer); - tooltip.querySelector('.div-tooltip-type').textContent = typeLabel; - tooltip.querySelector('.div-tooltip-label').textContent = label; - tooltip.querySelector('.div-tooltip-body').textContent = rationale || 'No rationale available.'; - - tooltip.style.opacity = '0'; - tooltip.style.display = 'block'; - - const rect = icon.getBoundingClientRect(); - const ttW = 420; - let left = rect.left + window.scrollX + rect.width / 2 - ttW / 2; - let top = rect.top + window.scrollY - 8; - - left = Math.max(8, Math.min(left, window.innerWidth - ttW - 8)); - tooltip.style.left = `${left}px`; - tooltip.style.top = `${top}px`; - tooltip.style.width = `${ttW}px`; - - requestAnimationFrame(() => { - tooltip.style.opacity = '1'; - tooltip.style.transform = 'translateY(-100%) translateY(-12px)'; - }); -} - -function hideTooltip() { - hideTimer = setTimeout(() => { - if (tooltip) { - tooltip.style.opacity = '0'; - tooltip.style.transform = 'translateY(-100%) translateY(-8px)'; - setTimeout(() => { tooltip.style.display = 'none'; }, 250); - } - }, 120); -} - -const TYPE_LABELS = { - sequential: 'Sequential Divergence', - narrative: 'Narrative Divergence', - semiotic: 'Semiotic Divergence', -}; - -// ── Stage Detail Panel ────────────────────────────────────────────────────── -function createDetailPanel(fitBar) { - const panel = document.createElement('div'); - panel.className = 'stage-detail-panel'; - panel.innerHTML = ` -
- -
-
-
-
- `; - // Insert immediately after the fit-bar - fitBar.parentNode.insertBefore(panel, fitBar.nextSibling); - return panel; -} - -function openPanel(panel, order, total, stageData) { - const kicker = panel.querySelector('.stage-detail-kicker'); - const title = panel.querySelector('.stage-detail-title'); - const body = panel.querySelector('.stage-detail-body'); - - kicker.textContent = `Stage ${order} of ${total}`; - title.textContent = stageData?.label || `Stage ${order}`; - body.textContent = stageData?.description || 'No description available for this stage.'; - - panel.classList.add('open'); -} - -function closePanel(panel, segments) { - panel.classList.remove('open'); - if (segments) segments.forEach(s => s.classList.remove('segment-active')); -} - -// ── Wire up a modal ───────────────────────────────────────────────────────── -function isMobile() { return window.innerWidth <= 600; } - -function wireModal(modal) { - const modalId = modal.id; - const isBatman = modalId === 'kg-modal-batman'; - - // Pre-fetch TTL - getDivergenceData(modalId); - - // For batman: wire each fit-bar to its own stage map index. - // For all others: wire the single fit-bar to the single stage map. - const fitBars = isBatman - ? [...modal.querySelectorAll('.fit-bar.fit-bar-large')] - : [modal.querySelector('.fit-bar.fit-bar-large')].filter(Boolean); - - if (!fitBars.length) return; - - fitBars.forEach((fitBarLarge, barIdx) => { - const segments = [...fitBarLarge.querySelectorAll('.segment')]; - const panel = createDetailPanel(fitBarLarge); - let activeIdx = null; - - // Close button - panel.querySelector('.stage-detail-close').addEventListener('click', () => { - closePanel(panel, segments); - activeIdx = null; - }); - - // ── Segment click → stage detail (desktop only) ────────────────────────── - segments.forEach((segment, idx) => { - segment.style.cursor = 'pointer'; - const stageOrder = idx + 1; - - segment.addEventListener('click', async (e) => { - if (isMobile()) return; // no interaction on mobile - if (e.target.classList.contains('div-icon')) return; - - const rawData = await getDivergenceData(modalId); - // For batman rawData is an array [bruceMap, gordonMap]; otherwise it's a plain map - const stageMap = isBatman ? (rawData ? rawData[barIdx] : null) : rawData; - - if (activeIdx === idx && panel.classList.contains('open')) { - closePanel(panel, segments); - activeIdx = null; - return; - } - - segments.forEach(s => s.classList.remove('segment-active')); - segment.classList.add('segment-active'); - activeIdx = idx; - - openPanel(panel, stageOrder, segments.length, stageMap ? stageMap[stageOrder] : null); - }); - }); - - // ── Divergence icon hover → tooltip (desktop only) ────────────────── - fitBarLarge.querySelectorAll('.div-icon').forEach(icon => { - if (isMobile()) return; // no hover tooltips on mobile - let divType = null; - if (icon.classList.contains('sequential')) divType = 'sequential'; - else if (icon.classList.contains('narrative')) divType = 'narrative'; - else if (icon.classList.contains('semiotic')) divType = 'semiotic'; - if (!divType) return; - - const segment = icon.closest('.segment'); - const stageOrder = segments.indexOf(segment) + 1; - - icon.addEventListener('mouseenter', async () => { - const rawData = await getDivergenceData(modalId); - const stageMap = isBatman ? (rawData ? rawData[barIdx] : null) : rawData; - const stageDivs = stageMap ? stageMap[stageOrder] : null; - const divInfo = stageDivs ? stageDivs[divType] : null; - showTooltip(icon, TYPE_LABELS[divType], - divInfo ? divInfo.label : TYPE_LABELS[divType], - divInfo ? divInfo.rationale : null - ); - }); - icon.addEventListener('mouseleave', hideTooltip); - }); - }); -} - -// ── Init ───────────────────────────────────────────────────────────────────── -function init() { - createTooltip(); - - document.querySelectorAll('.kg-modal').forEach(modal => { - if (!MODAL_TTL_MAP[modal.id]) return; - const observer = new MutationObserver(() => { - if (modal.getAttribute('aria-hidden') === 'false') { - wireModal(modal); - observer.disconnect(); - } - }); - observer.observe(modal, { attributes: true }); - }); -} - -document.addEventListener('DOMContentLoaded', init); From ec27fdbd4c70b03d0cb0d277d8cfb97a6f314984 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 19:52:44 +0200 Subject: [PATCH 02/14] Fix placeholder --- website/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/index.html b/website/index.html index 2fb4cf9..ef81844 100644 --- a/website/index.html +++ b/website/index.html @@ -2276,7 +2276,7 @@

The Legend of Zelda: Ocarina o

Stage Fit Profile

-

Placeholder stage notes for strong alignment with targeted moderate slots.

+

Stage realizations' fit in Link's journey

From 7912020573f147663bf8b38b72c49b0f192d66e1 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 20:27:04 +0200 Subject: [PATCH 03/14] Improve JS --- website/css/main.css | 127 +++++++++++++----------------------- website/js/main.js | 149 ++++++++++++++++--------------------------- 2 files changed, 99 insertions(+), 177 deletions(-) diff --git a/website/css/main.css b/website/css/main.css index 9da1497..ab853b2 100644 --- a/website/css/main.css +++ b/website/css/main.css @@ -1022,70 +1022,12 @@ body.modal-open { .fit-label.fit-label-large { font-size: 0.76rem; - margin-top: 4px; + margin-top: 8px; + margin-bottom: 16px; display: flex; justify-content: space-between; } - -/* ======================================================================== - DIVERGENCE TOOLTIP - ======================================================================== */ -#div-tooltip { - display: none; - position: absolute; - z-index: 9000; - width: 420px; - background: rgba(237, 230, 208, 0.97); - border: 1px solid var(--gold-dim); - padding: 10px 14px; - box-shadow: 0 8px 32px rgba(30, 21, 8, 0.18), 0 2px 8px rgba(30, 21, 8, 0.08); - pointer-events: none; - opacity: 0; - transform: translateY(-100%) translateY(-8px); - transition: opacity 0.22s ease, transform 0.22s ease; - backdrop-filter: blur(8px); -} - -#div-tooltip::after { - content: ''; - position: absolute; - bottom: -6px; - left: 50%; - transform: translateX(-50%) rotate(45deg); - width: 10px; - height: 10px; - background: rgba(237, 230, 208, 0.97); - border-right: 1px solid var(--gold-dim); - border-bottom: 1px solid var(--gold-dim); -} - -.div-tooltip-type { - font-family: var(--font-body); - font-size: 0.6rem; - font-weight: 600; - text-transform: uppercase; - letter-spacing: 0.18em; - color: var(--gold-dim); - margin-bottom: 6px; -} - -.div-tooltip-label { - font-family: var(--font-display); - font-size: 0.95rem; - font-weight: 500; - color: var(--ink); - line-height: 1.3; - margin-bottom: 6px; -} - -.div-tooltip-body { - font-family: var(--font-body); - font-size: 0.72rem; - color: var(--text-secondary); - line-height: 1.55; -} - /* ======================================================================== STAGE DETAIL PANEL ======================================================================== */ @@ -1098,7 +1040,7 @@ body.modal-open { } .stage-detail-panel.open { - max-height: 600px; + max-height: 1200px; opacity: 1; margin-top: 8px; } @@ -1164,6 +1106,45 @@ body.modal-open { line-height: 1.7; } +.stage-detail-divergences { + background: rgba(122, 92, 20, 0.04); + border: 1px solid rgba(122, 92, 20, 0.14); + border-top: none; + padding: 14px 20px 16px; + display: grid; + gap: 10px; +} + +.stage-divergence-item + .stage-divergence-item { + border-top: 1px solid rgba(122, 92, 20, 0.12); + padding-top: 10px; +} + +.stage-divergence-type { + font-family: var(--font-body); + font-size: 0.58rem; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.16em; + color: var(--gold-dim); + margin-bottom: 4px; +} + +.stage-divergence-title { + font-family: var(--font-display); + font-size: 0.9rem; + color: var(--ink); + line-height: 1.3; + margin-bottom: 4px; +} + +.stage-divergence-body { + font-family: var(--font-body); + font-size: 0.74rem; + color: var(--text-secondary); + line-height: 1.55; +} + /* Active segment highlight */ .fit-bar.fit-bar-large .segment.segment-active { outline: 2px solid var(--gold); @@ -1772,31 +1753,9 @@ code { padding: 2px 6px; } - /* ── Mobile: Stage Fit Profile — view-only, no interaction ── */ - - /* Disable clicks on every segment bar */ - .fit-bar.fit-bar-large .segment { - pointer-events: none !important; - cursor: default !important; - } - - /* Icons visible but non-interactive on mobile */ + /* Icons stay visible but taps should target the stage segment container */ .fit-bar.fit-bar-large .div-icon { pointer-events: none !important; - cursor: default !important; - } - - /* Prevent stage-detail panel from appearing */ - .stage-detail-panel, - .stage-detail-panel.open { - display: none !important; - max-height: 0 !important; - opacity: 0 !important; - } - - /* Suppress the divergence tooltip */ - #div-tooltip { - display: none !important; } } diff --git a/website/js/main.js b/website/js/main.js index e39e7a6..b39d625 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -483,11 +483,11 @@ const MODAL_STAGE_DATA_PATHS = [ './data/modal-stage-data.json', ]; -const TYPE_LABELS = { - sequential: 'Sequential Divergence', - narrative: 'Narrative Divergence', - semiotic: 'Semiotic Divergence', -}; +const DIVERGENCE_TYPES = [ + { key: 'sequential', label: 'Sequential Divergence' }, + { key: 'narrative', label: 'Narrative Divergence' }, + { key: 'semiotic', label: 'Semiotic Divergence' }, +]; let modalStageDataCache = null; let modalStageDataPromise = null; @@ -524,58 +524,6 @@ function getModalJourneys(data, modalId) { return Array.isArray(journeys) ? journeys : []; } -let divergenceTooltip = null; -let tooltipHideTimer = null; - -function createDivergenceTooltip() { - if (divergenceTooltip) return; - divergenceTooltip = document.createElement('div'); - divergenceTooltip.id = 'div-tooltip'; - divergenceTooltip.setAttribute('role', 'tooltip'); - divergenceTooltip.innerHTML = ` -
-
-
- `; - document.body.appendChild(divergenceTooltip); -} - -function showDivergenceTooltip(icon, typeLabel, label, rationale) { - clearTimeout(tooltipHideTimer); - divergenceTooltip.querySelector('.div-tooltip-type').textContent = typeLabel; - divergenceTooltip.querySelector('.div-tooltip-label').textContent = label; - divergenceTooltip.querySelector('.div-tooltip-body').textContent = rationale || 'No rationale available.'; - - divergenceTooltip.style.opacity = '0'; - divergenceTooltip.style.display = 'block'; - - const rect = icon.getBoundingClientRect(); - const tooltipWidth = 420; - let left = rect.left + window.scrollX + rect.width / 2 - tooltipWidth / 2; - const top = rect.top + window.scrollY - 8; - - left = Math.max(8, Math.min(left, window.innerWidth - tooltipWidth - 8)); - divergenceTooltip.style.left = `${left}px`; - divergenceTooltip.style.top = `${top}px`; - divergenceTooltip.style.width = `${tooltipWidth}px`; - - requestAnimationFrame(() => { - divergenceTooltip.style.opacity = '1'; - divergenceTooltip.style.transform = 'translateY(-100%) translateY(-12px)'; - }); -} - -function hideDivergenceTooltip() { - tooltipHideTimer = setTimeout(() => { - if (!divergenceTooltip) return; - divergenceTooltip.style.opacity = '0'; - divergenceTooltip.style.transform = 'translateY(-100%) translateY(-8px)'; - setTimeout(() => { - divergenceTooltip.style.display = 'none'; - }, 250); - }, 120); -} - function createDetailPanel(fitBar) { const panel = document.createElement('div'); panel.className = 'stage-detail-panel'; @@ -590,19 +538,55 @@ function createDetailPanel(fitBar) {
+ `; fitBar.parentNode.insertBefore(panel, fitBar.nextSibling); return panel; } +function renderStageDivergences(container, stageData) { + container.replaceChildren(); + + const divergenceItems = DIVERGENCE_TYPES.filter(({ key }) => Boolean(stageData?.[key])); + if (!divergenceItems.length) { + container.hidden = true; + return; + } + + divergenceItems.forEach(({ key, label }) => { + const divergenceData = stageData[key]; + const item = document.createElement('article'); + item.className = 'stage-divergence-item'; + + const type = document.createElement('div'); + type.className = 'stage-divergence-type'; + type.textContent = label; + + const title = document.createElement('div'); + title.className = 'stage-divergence-title'; + title.textContent = divergenceData?.label || label; + + const rationale = document.createElement('div'); + rationale.className = 'stage-divergence-body'; + rationale.textContent = divergenceData?.rationale || 'No rationale available.'; + + item.append(type, title, rationale); + container.appendChild(item); + }); + + container.hidden = false; +} + function openDetailPanel(panel, order, total, stageData) { const kicker = panel.querySelector('.stage-detail-kicker'); const title = panel.querySelector('.stage-detail-title'); const body = panel.querySelector('.stage-detail-body'); + const divergences = panel.querySelector('.stage-detail-divergences'); kicker.textContent = `Stage ${order} of ${total}`; title.textContent = stageData?.label || `Stage ${order}`; body.textContent = stageData?.description || 'No description available for this stage.'; + renderStageDivergences(divergences, stageData); panel.classList.add('open'); } @@ -612,8 +596,19 @@ function closeDetailPanel(panel, segments) { if (segments) segments.forEach(segment => segment.classList.remove('segment-active')); } -function isMobileViewport() { - return window.innerWidth <= 600; +function normalizeFitSection(section) { + if (!section || section.dataset.fitSectionNormalized === 'true') return; + + const heading = section.querySelector('h4'); + const fitLabel = section.querySelector('.fit-label.fit-label-large'); + if (heading && fitLabel) heading.insertAdjacentElement('afterend', fitLabel); + + const fitDescription = [...section.querySelectorAll('p')].find( + paragraph => /^\s*Stage realizations' fit\b/i.test(paragraph.textContent || '') + ); + if (fitDescription) fitDescription.remove(); + + section.dataset.fitSectionNormalized = 'true'; } function wireModalStageData(modal) { @@ -625,6 +620,7 @@ function wireModalStageData(modal) { fitBars.forEach((fitBar, fitBarIndex) => { const segments = [...fitBar.querySelectorAll('.segment')]; + normalizeFitSection(fitBar.closest('.kg-modal-section')); const panel = createDetailPanel(fitBar); let activeIndex = null; @@ -637,10 +633,7 @@ function wireModalStageData(modal) { segment.style.cursor = 'pointer'; const stageOrder = segmentIndex + 1; - segment.addEventListener('click', async event => { - if (isMobileViewport()) return; - if (event.target.classList.contains('div-icon')) return; - + segment.addEventListener('click', async () => { const data = await loadModalStageData(); const journeys = getModalJourneys(data, modal.id); const stageMap = (journeys[fitBarIndex] || journeys[0] || {}).stages || null; @@ -659,34 +652,6 @@ function wireModalStageData(modal) { openDetailPanel(panel, stageOrder, segments.length, stageData); }); }); - - fitBar.querySelectorAll('.div-icon').forEach(icon => { - if (isMobileViewport()) return; - - let divergenceType = null; - if (icon.classList.contains('sequential')) divergenceType = 'sequential'; - else if (icon.classList.contains('narrative')) divergenceType = 'narrative'; - else if (icon.classList.contains('semiotic')) divergenceType = 'semiotic'; - if (!divergenceType) return; - - const segment = icon.closest('.segment'); - const stageOrder = segments.indexOf(segment) + 1; - - icon.addEventListener('mouseenter', async () => { - const data = await loadModalStageData(); - const journeys = getModalJourneys(data, modal.id); - const stageMap = (journeys[fitBarIndex] || journeys[0] || {}).stages || null; - const stageData = stageMap ? stageMap[String(stageOrder)] : null; - const divergenceInfo = stageData ? stageData[divergenceType] : null; - showDivergenceTooltip( - icon, - TYPE_LABELS[divergenceType], - divergenceInfo ? divergenceInfo.label : TYPE_LABELS[divergenceType], - divergenceInfo ? divergenceInfo.rationale : null - ); - }); - icon.addEventListener('mouseleave', hideDivergenceTooltip); - }); }); } @@ -694,8 +659,6 @@ function initModalStageEnhancer() { const modals = [...document.querySelectorAll('.kg-modal')]; if (!modals.length) return; - createDivergenceTooltip(); - modals.forEach(modal => { const observer = new MutationObserver(() => { if (modal.getAttribute('aria-hidden') !== 'false') return; From 7083c5ed9bcbbc46b490c85935ff1ac5052773c0 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 20:31:16 +0200 Subject: [PATCH 04/14] Hide divergence box when no divergence is present --- website/css/main.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/css/main.css b/website/css/main.css index ab853b2..a440c86 100644 --- a/website/css/main.css +++ b/website/css/main.css @@ -1115,6 +1115,10 @@ body.modal-open { gap: 10px; } +.stage-detail-divergences[hidden] { + display: none; +} + .stage-divergence-item + .stage-divergence-item { border-top: 1px solid rgba(122, 92, 20, 0.12); padding-top: 10px; @@ -1755,6 +1759,7 @@ code { /* Icons stay visible but taps should target the stage segment container */ .fit-bar.fit-bar-large .div-icon { + font-size: 12px; pointer-events: none !important; } } From 412ea8efa1bc0eef0fa6c654196f952657172b29 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 20:37:46 +0200 Subject: [PATCH 05/14] Rename script and json --- ...l_stage_data.py => generate_modal_data.py} | 61 ++++++++++--------- ...{modal-stage-data.json => modal_data.json} | 2 +- website/js/main.js | 45 +++++++------- 3 files changed, 55 insertions(+), 53 deletions(-) rename scripts/{generate_modal_stage_data.py => generate_modal_data.py} (81%) rename website/data/{modal-stage-data.json => modal_data.json} (99%) diff --git a/scripts/generate_modal_stage_data.py b/scripts/generate_modal_data.py similarity index 81% rename from scripts/generate_modal_stage_data.py rename to scripts/generate_modal_data.py index 05be579..1383ae3 100644 --- a/scripts/generate_modal_stage_data.py +++ b/scripts/generate_modal_data.py @@ -1,8 +1,6 @@ #!/usr/bin/env python3 -"""Generate website modal stage data from Turtle subgraphs.""" - -from __future__ import annotations +"""Generate website modal data from Turtle subgraphs.""" import json import sys @@ -14,7 +12,7 @@ ROOT_DIR = Path(__file__).resolve().parent.parent SUBGRAPHS_DIR = ROOT_DIR / "graph" / "subgraphs" -OUTPUT_JSON = ROOT_DIR / "website" / "data" / "modal-stage-data.json" +OUTPUT_JSON = ROOT_DIR / "website" / "data" / "modal_data.json" MONOMYTH = Namespace("https://monomyth.metamuses.org/ontology#") @@ -98,8 +96,12 @@ def collect_divergence_data(graph: Graph) -> dict[str, dict[str, str | None]]: for divergence_type_iri, divergence_key in DIVERGENCE_TYPES.items(): for divergence_iri in graph.subjects(RDF.type, divergence_type_iri): iri_str = str(divergence_iri) - label = literal_value(graph, divergence_iri, RDFS.label) or iri_tail(iri_str) - rationale = normalize_text(literal_value(graph, divergence_iri, PRED_DIVERGENCE_RATIONALE)) + label = literal_value(graph, divergence_iri, RDFS.label) or iri_tail( + iri_str + ) + rationale = normalize_text( + literal_value(graph, divergence_iri, PRED_DIVERGENCE_RATIONALE) + ) divergences[iri_str] = { "type": divergence_key, "label": label, @@ -114,10 +116,12 @@ def build_stage_payload( stage_iri: URIRef, divergence_lookup: dict[str, dict[str, str | None]], ) -> dict[str, object]: - """Build one stage payload used in the modal JSON output.""" + """Build one stage payload used in the modal data JSON output.""" payload: dict[str, object] = { "label": literal_value(graph, stage_iri, RDFS.label), - "description": normalize_text(literal_value(graph, stage_iri, PRED_REALIZATION_DESCRIPTION)), + "description": normalize_text( + literal_value(graph, stage_iri, PRED_REALIZATION_DESCRIPTION) + ), } for divergence_key, divergence_predicate in STAGE_DIVERGENCE_PREDICATES: @@ -149,13 +153,15 @@ def collect_expression_stages( stage_payload = build_stage_payload(graph, stage_iri, divergence_lookup) for expression_iri in graph.objects(stage_iri, PRED_STAGE_REALIZATION_OF): expression_key = str(expression_iri) - expression_stages.setdefault(expression_key, {})[stage_order] = stage_payload + expression_stages.setdefault(expression_key, {})[ + stage_order + ] = stage_payload return expression_stages def build_modal_payload(ttl_filename: str) -> dict[str, object]: - """Parse a single subgraph and convert it into modal-friendly JSON data.""" + """Parse a single subgraph and convert it into modal-friendly data JSON.""" ttl_path = SUBGRAPHS_DIR / ttl_filename if not ttl_path.exists(): sys.exit(f"Error: missing subgraph file {ttl_path}") @@ -167,7 +173,9 @@ def build_modal_payload(ttl_filename: str) -> dict[str, object]: expression_stages = collect_expression_stages(graph, divergence_lookup) journeys = [] - expression_iris = sorted(str(iri) for iri in graph.subjects(RDF.type, PRED_MONOMYTH_EXPRESSION)) + expression_iris = sorted( + str(iri) for iri in graph.subjects(RDF.type, PRED_MONOMYTH_EXPRESSION) + ) for expression_iri in expression_iris: stage_map = expression_stages.get(expression_iri, {}) @@ -178,7 +186,8 @@ def build_modal_payload(ttl_filename: str) -> dict[str, object]: journeys.append( { "id": expression_iri, - "label": literal_value(graph, URIRef(expression_iri), RDFS.label) or iri_tail(expression_iri), + "label": literal_value(graph, URIRef(expression_iri), RDFS.label) + or iri_tail(expression_iri), "stages": ordered_stages, } ) @@ -192,24 +201,18 @@ def build_modal_payload(ttl_filename: str) -> dict[str, object]: } -def main() -> None: - """Generate JSON for all configured modals.""" - modals: dict[str, dict[str, object]] = {} - - for modal_id, ttl_filename in MODAL_TTL_MAP.items(): - print(f"Parsing graph/subgraphs/{ttl_filename}") - modals[modal_id] = build_modal_payload(ttl_filename) +modals: dict[str, dict[str, object]] = {} - output = { - "generatedAt": datetime.now(UTC).isoformat().replace("+00:00", "Z"), - "modals": modals, - } +for modal_id, modal_ttl_filename in MODAL_TTL_MAP.items(): + print(f"Parsing graph/subgraphs/{modal_ttl_filename}") + modals[modal_id] = build_modal_payload(modal_ttl_filename) - OUTPUT_JSON.parent.mkdir(parents=True, exist_ok=True) - OUTPUT_JSON.write_text(f"{json.dumps(output, indent=2)}\n", encoding="utf-8") - - print(f"\nWrote modal stage data to {OUTPUT_JSON.relative_to(ROOT_DIR)}") +output = { + "generatedAt": datetime.now(UTC).isoformat().replace("+00:00", "Z"), + "modals": modals, +} +OUTPUT_JSON.parent.mkdir(parents=True, exist_ok=True) +OUTPUT_JSON.write_text(f"{json.dumps(output, indent=2)}\n", encoding="utf-8") -if __name__ == "__main__": - main() +print(f"\nWrote modal data to {OUTPUT_JSON.relative_to(ROOT_DIR)}") diff --git a/website/data/modal-stage-data.json b/website/data/modal_data.json similarity index 99% rename from website/data/modal-stage-data.json rename to website/data/modal_data.json index 86b1f02..865a4f8 100644 --- a/website/data/modal-stage-data.json +++ b/website/data/modal_data.json @@ -1,5 +1,5 @@ { - "generatedAt": "2026-05-19T17:46:33.499835Z", + "generatedAt": "2026-05-19T18:36:08.955665Z", "modals": { "kg-modal-matrix": { "ttlFile": "the-matrix.ttl", diff --git a/website/js/main.js b/website/js/main.js index b39d625..c8b743f 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -477,10 +477,9 @@ if (bgCanvas) { } // end bgCanvas guard -// ── Modal Stage Data Enhancer (JSON-backed) ──────────────────────────────── -const MODAL_STAGE_DATA_PATHS = [ - '/data/modal-stage-data.json', - './data/modal-stage-data.json', +// ── Modal Data Enhancer (JSON-backed) ─────────────────────────────────────── +const MODAL_DATA_PATHS = [ + '/data/modal_data.json', ]; const DIVERGENCE_TYPES = [ @@ -489,33 +488,33 @@ const DIVERGENCE_TYPES = [ { key: 'semiotic', label: 'Semiotic Divergence' }, ]; -let modalStageDataCache = null; -let modalStageDataPromise = null; +let modalDataCache = null; +let modalDataPromise = null; -async function loadModalStageData() { - if (modalStageDataCache) return modalStageDataCache; - if (modalStageDataPromise) return modalStageDataPromise; +async function loadModalData() { + if (modalDataCache) return modalDataCache; + if (modalDataPromise) return modalDataPromise; - modalStageDataPromise = (async () => { + modalDataPromise = (async () => { let lastError = null; - for (const path of MODAL_STAGE_DATA_PATHS) { + for (const path of MODAL_DATA_PATHS) { try { const response = await fetch(path); if (!response.ok) throw new Error(`${response.status}`); const data = await response.json(); - modalStageDataCache = data; + modalDataCache = data; return data; } catch (error) { lastError = error; } } - throw lastError || new Error('Unable to fetch modal stage data'); + throw lastError || new Error('Unable to fetch modal data'); })().catch(error => { - console.warn('[modal-stage-data]', error); + console.warn('[modal-data]', error); return null; }); - return modalStageDataPromise; + return modalDataPromise; } function getModalJourneys(data, modalId) { @@ -596,7 +595,7 @@ function closeDetailPanel(panel, segments) { if (segments) segments.forEach(segment => segment.classList.remove('segment-active')); } -function normalizeFitSection(section) { +function normalizeModalFitSection(section) { if (!section || section.dataset.fitSectionNormalized === 'true') return; const heading = section.querySelector('h4'); @@ -611,16 +610,16 @@ function normalizeFitSection(section) { section.dataset.fitSectionNormalized = 'true'; } -function wireModalStageData(modal) { +function wireModalData(modal) { const fitBars = [...modal.querySelectorAll('.fit-bar.fit-bar-large')]; if (!fitBars.length) return; // Trigger data fetch once so first interaction is typically warm. - loadModalStageData(); + loadModalData(); fitBars.forEach((fitBar, fitBarIndex) => { const segments = [...fitBar.querySelectorAll('.segment')]; - normalizeFitSection(fitBar.closest('.kg-modal-section')); + normalizeModalFitSection(fitBar.closest('.kg-modal-section')); const panel = createDetailPanel(fitBar); let activeIndex = null; @@ -634,7 +633,7 @@ function wireModalStageData(modal) { const stageOrder = segmentIndex + 1; segment.addEventListener('click', async () => { - const data = await loadModalStageData(); + const data = await loadModalData(); const journeys = getModalJourneys(data, modal.id); const stageMap = (journeys[fitBarIndex] || journeys[0] || {}).stages || null; const stageData = stageMap ? stageMap[String(stageOrder)] : null; @@ -655,18 +654,18 @@ function wireModalStageData(modal) { }); } -function initModalStageEnhancer() { +function initModalDataEnhancer() { const modals = [...document.querySelectorAll('.kg-modal')]; if (!modals.length) return; modals.forEach(modal => { const observer = new MutationObserver(() => { if (modal.getAttribute('aria-hidden') !== 'false') return; - wireModalStageData(modal); + wireModalData(modal); observer.disconnect(); }); observer.observe(modal, { attributes: true }); }); } -initModalStageEnhancer(); +initModalDataEnhancer(); From dc26e360c1bb04c348e0d57a573307dad7c1058c Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 20:38:20 +0200 Subject: [PATCH 06/14] Better comment --- scripts/generate_modal_data.py | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/scripts/generate_modal_data.py b/scripts/generate_modal_data.py index 1383ae3..eba5585 100644 --- a/scripts/generate_modal_data.py +++ b/scripts/generate_modal_data.py @@ -1,6 +1,25 @@ #!/usr/bin/env python3 -"""Generate website modal data from Turtle subgraphs.""" +""" +Generate website modal data from Turtle subgraphs. + +The script loads each configured .ttl file from graph/subgraphs/ and extracts +the data needed by the website modal stage interaction: +- Stage realization labels and realizationDescription text +- Divergence labels and divergenceRationale text +- Journey grouping via monomyth:MonomythExpression + +For each modal, output is grouped into one or more journeys (for example +Batman's Bruce Wayne and Jim Gordon journeys), each keyed by stage order. + +The resulting JSON is written to website/data/modal_data.json and consumed +client-side by website/js/main.js, so modal behavior no longer depends on +runtime Turtle parsing in the browser. + +The operation is deterministic and idempotent: running the script multiple +times produces the same JSON output as long as the source Turtle files do not +change. +""" import json import sys From f3bfdfd5a2527fe400b79d6e47450068ea2edf65 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 20:38:42 +0200 Subject: [PATCH 07/14] Remove subgraphs symbolic link --- website/subgraphs | 1 - 1 file changed, 1 deletion(-) delete mode 120000 website/subgraphs diff --git a/website/subgraphs b/website/subgraphs deleted file mode 120000 index a06d2ea..0000000 --- a/website/subgraphs +++ /dev/null @@ -1 +0,0 @@ -../graph/subgraphs \ No newline at end of file From 793cbbcff1a3de95e7c5906fafa6f8f575b1d673 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 22:00:00 +0200 Subject: [PATCH 08/14] Show realized stage in the stage box --- scripts/generate_modal_data.py | 66 +++- website/css/main.css | 14 +- website/data/modal_data.json | 624 ++++++++++++++++++++++++++++----- website/js/main.js | 9 + 4 files changed, 623 insertions(+), 90 deletions(-) diff --git a/scripts/generate_modal_data.py b/scripts/generate_modal_data.py index eba5585..a3b724f 100644 --- a/scripts/generate_modal_data.py +++ b/scripts/generate_modal_data.py @@ -31,6 +31,7 @@ ROOT_DIR = Path(__file__).resolve().parent.parent SUBGRAPHS_DIR = ROOT_DIR / "graph" / "subgraphs" +ONTOLOGY_FILE = ROOT_DIR / "ontology" / "ontology.ttl" OUTPUT_JSON = ROOT_DIR / "website" / "data" / "modal_data.json" MONOMYTH = Namespace("https://monomyth.metamuses.org/ontology#") @@ -55,6 +56,7 @@ PRED_STAGE_REALIZATION_OF = MONOMYTH.stageRealizationOf PRED_STAGE_REALIZATION_ORDER = MONOMYTH.stageRealizationOrder PRED_REALIZATION_DESCRIPTION = MONOMYTH.realizationDescription +PRED_REALIZES_STAGE = MONOMYTH.realizesStage PRED_DIVERGENCE_RATIONALE = MONOMYTH.divergenceRationale PRED_HAS_NARRATIVE_DIVERGENCE = MONOMYTH.hasNarrativeDivergence @@ -108,6 +110,36 @@ def parse_order(graph: Graph, stage_iri: URIRef) -> int | None: return None +def stage_term_value(graph: Graph, stage_term_iri: URIRef) -> str: + """Return compact QName or fallback tail for a canonical stage URI.""" + if not isinstance(stage_term_iri, URIRef): + return str(stage_term_iri) + + normalized = graph.namespace_manager.normalizeUri(stage_term_iri) + + if normalized and ":" in normalized: + return normalized + + return iri_tail(str(stage_term_iri)) + + +def collect_ontology_stage_labels() -> dict[str, str]: + """Load ontology stage labels keyed by stage URI string.""" + if not ONTOLOGY_FILE.exists(): + sys.exit(f"Error: missing ontology file {ONTOLOGY_FILE}") + + ontology_graph = Graph() + ontology_graph.parse(ONTOLOGY_FILE, format="turtle") + + stage_labels: dict[str, str] = {} + for stage_iri in ontology_graph.subjects(RDF.type, MONOMYTH.Stage): + label = literal_value(ontology_graph, stage_iri, RDFS.label) + if label: + stage_labels[str(stage_iri)] = label + + return stage_labels + + def collect_divergence_data(graph: Graph) -> dict[str, dict[str, str | None]]: """Build divergence metadata lookup keyed by divergence IRI string.""" divergences: dict[str, dict[str, str | None]] = {} @@ -134,6 +166,7 @@ def build_stage_payload( graph: Graph, stage_iri: URIRef, divergence_lookup: dict[str, dict[str, str | None]], + ontology_stage_labels: dict[str, str], ) -> dict[str, object]: """Build one stage payload used in the modal data JSON output.""" payload: dict[str, object] = { @@ -143,6 +176,14 @@ def build_stage_payload( ), } + for realized_stage_iri in graph.objects(stage_iri, PRED_REALIZES_STAGE): + stage_uri = str(realized_stage_iri) + payload["realizesStage"] = stage_term_value(graph, realized_stage_iri) + payload["realizesStageLabel"] = ( + ontology_stage_labels.get(stage_uri) or iri_tail(stage_uri) + ) + break + for divergence_key, divergence_predicate in STAGE_DIVERGENCE_PREDICATES: for divergence_iri in graph.objects(stage_iri, divergence_predicate): divergence_data = divergence_lookup.get(str(divergence_iri)) @@ -160,6 +201,7 @@ def build_stage_payload( def collect_expression_stages( graph: Graph, divergence_lookup: dict[str, dict[str, str | None]], + ontology_stage_labels: dict[str, str], ) -> dict[str, dict[int, dict[str, object]]]: """Group stages by monomyth expression and stage order.""" expression_stages: dict[str, dict[int, dict[str, object]]] = {} @@ -169,7 +211,12 @@ def collect_expression_stages( if stage_order is None: continue - stage_payload = build_stage_payload(graph, stage_iri, divergence_lookup) + stage_payload = build_stage_payload( + graph, + stage_iri, + divergence_lookup, + ontology_stage_labels, + ) for expression_iri in graph.objects(stage_iri, PRED_STAGE_REALIZATION_OF): expression_key = str(expression_iri) expression_stages.setdefault(expression_key, {})[ @@ -179,7 +226,10 @@ def collect_expression_stages( return expression_stages -def build_modal_payload(ttl_filename: str) -> dict[str, object]: +def build_modal_payload( + ttl_filename: str, + ontology_stage_labels: dict[str, str], +) -> dict[str, object]: """Parse a single subgraph and convert it into modal-friendly data JSON.""" ttl_path = SUBGRAPHS_DIR / ttl_filename if not ttl_path.exists(): @@ -189,7 +239,11 @@ def build_modal_payload(ttl_filename: str) -> dict[str, object]: graph.parse(ttl_path, format="turtle") divergence_lookup = collect_divergence_data(graph) - expression_stages = collect_expression_stages(graph, divergence_lookup) + expression_stages = collect_expression_stages( + graph, + divergence_lookup, + ontology_stage_labels, + ) journeys = [] expression_iris = sorted( @@ -221,10 +275,14 @@ def build_modal_payload(ttl_filename: str) -> dict[str, object]: modals: dict[str, dict[str, object]] = {} +ONTOLOGY_STAGE_LABELS = collect_ontology_stage_labels() for modal_id, modal_ttl_filename in MODAL_TTL_MAP.items(): print(f"Parsing graph/subgraphs/{modal_ttl_filename}") - modals[modal_id] = build_modal_payload(modal_ttl_filename) + modals[modal_id] = build_modal_payload( + modal_ttl_filename, + ONTOLOGY_STAGE_LABELS, + ) output = { "generatedAt": datetime.now(UTC).isoformat().replace("+00:00", "Z"), diff --git a/website/css/main.css b/website/css/main.css index a440c86..0bd67b9 100644 --- a/website/css/main.css +++ b/website/css/main.css @@ -1096,7 +1096,19 @@ body.modal-open { font-style: italic; color: var(--ink); line-height: 1.3; - margin-bottom: 10px; + margin-bottom: 2px; +} + +.stage-detail-realizes-stage { + font-family: var(--font-body); + font-size: 0.68rem; + color: var(--text-muted); + letter-spacing: 0.03em; + margin-bottom: 8px; +} + +.stage-detail-realizes-stage[hidden] { + display: none; } .stage-detail-body { diff --git a/website/data/modal_data.json b/website/data/modal_data.json index 865a4f8..fe365af 100644 --- a/website/data/modal_data.json +++ b/website/data/modal_data.json @@ -1,5 +1,5 @@ { - "generatedAt": "2026-05-19T18:36:08.955665Z", + "generatedAt": "2026-05-19T18:46:05.375211Z", "modals": { "kg-modal-matrix": { "ttlFile": "the-matrix.ttl", @@ -10,15 +10,21 @@ "stages": { "1": { "label": "Follow the white rabbit", - "description": "Neo's computer screen displays the message \"Wake up, Neo... The Matrix has you... Follow the white rabbit.\" He then follows a woman with a white rabbit tattoo to a club, where Trinity tells him she knows the answer to the question driving his life." + "description": "Neo's computer screen displays the message \"Wake up, Neo... The Matrix has you... Follow the white rabbit.\" He then follows a woman with a white rabbit tattoo to a club, where Trinity tells him she knows the answer to the question driving his life.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" }, "2": { "label": "I can't do this", - "description": "Morpheus guides Neo by phone to escape via a building ledge. Neo looks down, says \"I can't do this,\" and retreats inside, choosing the familiar world. He is immediately captured by Agent Smith, interrogated, and implanted with a tracking bug." + "description": "Morpheus guides Neo by phone to escape via a building ledge. Neo looks down, says \"I can't do this,\" and retreats inside, choosing the familiar world. He is immediately captured by Agent Smith, interrogated, and implanted with a tracking bug.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" }, "3": { "label": "Let me tell you why you're here", "description": "Morpheus serves as the supernatural mentor: he has sought Neo, believes in him as the One, and offers him the pivotal choice. Trinity and the crew give Neo another chance at understanding his destiny, bringing him to Morpheus.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "semiotic": { "label": "Supernatural as Epistemic divergence", "rationale": "The supernatural aid appears here not as a transcendent or magical intervention, but as privileged access to truth. Morpheus operates within the same ontological order as Neo, yet possesses knowledge that reveals the perceived world as illusory. The sense of the 'supernatural' arises from Neo's epistemic limitation rather than any actual breach of natural law. Guidance is thus enacted through disclosure and cognitive rupture, shifting the role from mystical benefactor to agent of ontological clarification within a simulated reality." @@ -26,23 +32,33 @@ }, "4": { "label": "All I'm offering is the truth", - "description": "Morpheus presents two pills: blue for return to ignorance, red for the truth. Neo takes the red pill. Reality disintegrates, the mirror liquefies and crawls up his arm, and he wakes in a pod in the real world. There is no going back." + "description": "Morpheus presents two pills: blue for return to ignorance, red for the truth. Neo takes the red pill. Reality disintegrates, the mirror liquefies and crawls up his arm, and he wakes in a pod in the real world. There is no going back.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "Welcome to the real world", - "description": "Neo awakens in an amniotic pod, hairless, atrophied, plugged into the machine infrastructure, surrounded by an infinite tower of sleeping humans. He is flushed through a tube into dark water and rescued by the Nebuchadnezzar crew. The old Thomas Anderson dies in the pod; Neo is reborn fragile and overwhelmed." + "description": "Neo awakens in an amniotic pod, hairless, atrophied, plugged into the machine infrastructure, surrounded by an infinite tower of sleeping humans. He is flushed through a tube into dark water and rescued by the Nebuchadnezzar crew. The old Thomas Anderson dies in the pod; Neo is reborn fragile and overwhelmed.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" }, "6": { "label": "Fear, doubt, and disbelief", - "description": "Neo must rebuild himself from nothing after liberation. He downloads combat programs directly into his mind, absorbs kung fu at impossible speed, and tests his newly acquired skills against Morpheus in the sparring dojo. Yet the rooftop jump reveals a deeper trial: his residual self-image, anchored in obsolete beliefs about what is possible, still limits him." + "description": "Neo must rebuild himself from nothing after liberation. He downloads combat programs directly into his mind, absorbs kung fu at impossible speed, and tests his newly acquired skills against Morpheus in the sparring dojo. Yet the rooftop jump reveals a deeper trial: his residual self-image, anchored in obsolete beliefs about what is possible, still limits him.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "7": { "label": "The Oracle will see you now", - "description": "Neo visits the Oracle in her modest, maternal apartment, expecting definitive answers about his destiny. Instead, she offers cryptic guidance wrapped in domestic warmth\u2014baking cookies, reading body language. When Neo concludes himself that he is not the One, she neither confirms nor denies, planting seeds of self-knowledge that will germinate only through sacrifice and choice." + "description": "Neo visits the Oracle in her modest, maternal apartment, expecting definitive answers about his destiny. Instead, she offers cryptic guidance wrapped in domestic warmth\u2014baking cookies, reading body language. When Neo concludes himself that he is not the One, she neither confirms nor denies, planting seeds of self-knowledge that will germinate only through sacrifice and choice.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess" }, "8": { "label": "Ignorance is bliss", "description": "Cypher embodies the temptation to abandon truth for comfort. Over a steak dinner negotiated with Agent Smith, he chooses to betray the crew in exchange for reinsertion into the Matrix, preferring pleasurable illusion to the bleak real world. His betrayal externalizes the doubt lurking within every freed mind: that ignorance might be preferable to painful knowledge.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "narrative": { "label": "Dispersed Temptress divergence", "rationale": "The Wachowskis distribute the temptation function across multiple loci rather than concentrating it in a single character-hero encounter. The Woman in the Red Dress is a brief pedagogical moment; Cypher embodies the deeper existential temptation as Neo's shadow rather than his seducer; and Neo himself, refusing to identify as the One, enacts an inward temptation\u2014the lure of remaining ordinary rather than accepting a burden he does not yet believe he can carry. This dispersal reflects the film's philosophical framework: in The Matrix, temptation is systemic (the entire simulation is designed to seduce) rather than personal, making a single temptress figure structurally inadequate. The divergence is a creative adaptation of Campbell's stage to a narrative where the antagonist is an environment, not an individual." @@ -54,11 +70,15 @@ }, "9": { "label": "There is no spoon", - "description": "Agent Smith captures Morpheus and attempts to break him through interrogation. Neo defies the pragmatic counsel to abandon his mentor, re-entering the Matrix to mount a rescue. In saving the father figure rather than obeying him, Neo transcends discipleship, claiming autonomous authority not against Morpheus but through loyalty to him." + "description": "Agent Smith captures Morpheus and attempts to break him through interrogation. Neo defies the pragmatic counsel to abandon his mentor, re-entering the Matrix to mount a rescue. In saving the father figure rather than obeying him, Neo transcends discipleship, claiming autonomous authority not against Morpheus but through loyalty to him.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father" }, "10": { "label": "He's beginning to believe", "description": "With Morpheus and Trinity safely extracted, Neo stands before the escape route but chooses intead to turn back to face Agent Smith. The battle becomes a graduated awakening: blow by blow, Neo's confidence hardens into something approaching certainty. \"He's beginning to believe\" will declare Morpheus, watching. Freeing himself from the grip of Smith, he finally throws him under the train, winning the confrontation but immediately realizing he's not ready for another one and hence must escape for now.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", "narrative": { "label": "Imperfect Apotheosis divergence", "rationale": "Neo's apotheosis is deliberately incomplete and immediately followed by a new trial, subverting the traditional narrative where the hero enjoys a moment of elevated power before facing new challenges. This choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." @@ -67,6 +87,8 @@ "11": { "label": "Mr. Wizard, get me out of here!", "description": "Smith is defeated in the subway but not annihilated, and Neo must now flee a system that has fully mobilized against him. Tank provides real-time guidance through the Matrix's corridors, directing Neo toward safety while Agents pursue. This flight suspends the hero's nascent apotheosis in a state of anxious incompleteness, heightening the stakes by demonstrating that partial awakening carries its own dangers. Neo's dependence on Tank reveals that even emergent power requires external support to translate into survival.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "sequential": { "label": "Escape after apotheosis divergence", "rationale": "In The Matrix, Neo's apotheosis happens in two distinct phases. The first one, when \"he's beginning to believe\" and challenge Agent Smith, is not complete and it is immediately followed by a desperate escape from Agent Smith, rather than a period of triumphant mastery. This sequence subverts the traditional post-apotheosis narrative, where the hero typically enjoys a moment of elevated power before facing new challenges. The Wachowskis' choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." @@ -75,6 +97,8 @@ "12": { "label": "The man I loved would be the One", "description": "The Agents close in systematically, cutting off Neo's escape routes one by one until the city itself becomes a narrowing trap. Smith intercepts him in a hallway and fires at point-blank range, killing him. The hero's journey appears to terminate in unambiguous defeat. But in the real world, Trinity leans over Neo's body and confesses her love, revealing the Oracle's prophecy: the man she loved would be the One. Neo returns from death, resurrected by a conviction he could not yet supply for himself: ultimate awakening, the film suggests, requires being believed in before one can fully believe.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "narrative": { "label": "Validation replaces salvation divergence", "rationale": "In The Matrix, the traditional Rescue from Without stage is subverted by having Neo's validation as the One come from Trinity's love and belief in him, rather than from an external savior figure. This shift emphasizes the theme of self-actualization and the power of human connection, rather than reliance on an external force for salvation. Neo's \"rescue\" is not a physical extraction from danger but an emotional and existential affirmation that enables him to fully embrace his identity as the One." @@ -82,11 +106,15 @@ }, "13": { "label": "He is the One", - "description": "Neo rises from death and the simulation's code becomes legible to him, its architecture now transparent and malleable. Agents open fire but he halts their bullets in midair through will alone. Smith charges and Neo dispatches him effortlessly, then enters his digital body and destroys him from within. The remaining Agents flee. Neo has attained total mastery over the Matrix, but the real world intrudes: sentinels are tearing the ship apart, and he must reach the exit before the boon he has claimed becomes irrelevant to a body that no longer survives." + "description": "Neo rises from death and the simulation's code becomes legible to him, its architecture now transparent and malleable. Agents open fire but he halts their bullets in midair through will alone. Smith charges and Neo dispatches him effortlessly, then enters his digital body and destroys him from within. The remaining Agents flee. Neo has attained total mastery over the Matrix, but the real world intrudes: sentinels are tearing the ship apart, and he must reach the exit before the boon he has claimed becomes irrelevant to a body that no longer survives.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" }, "14": { "label": "System failure", "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Refusal of the return divergence", "rationale": "The Matrix omits the Refusal of the Return because Neo's arc is structured as an awakening narrative rather than a circular homecoming. Once Neo achieves the boon, there is no ordinary world to be reluctant about returning to: his mission is forward-facing liberation, not nostalgic return. The Wachowskis' choice reflects a modern, messianic hero model (closer to the Bodhisattva who re-enters the world to liberate others) rather than Campbell's Odyssean homecoming pattern. The absence is deliberate and thematically coherent rather than an oversight." @@ -95,6 +123,8 @@ "15": { "label": "I can feel you now", "description": "In the film's compressed finale, Neo re-enters the Matrix no longer as a fugitive but as a being who has transcended its constraints entirely and addresses the Machines directly with calm authority, acknowledging their fear of what free humans represent. The threshold between simulation and reality, which once marked the hero's fundamental vulnerability, is effectively dissolved as he's now free to move between both realms at will.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", "narrative": { "label": "Master of the threshold divergence", "rationale": "Campbell's model assumes the hero crosses back from the special world into the ordinary one. The Matrix inverts this: Neo re-enters the special world (the simulation) as its sovereign, dissolving the ontological hierarchy between worlds rather than crossing a boundary. This divergence transforms the return threshold from a spatial crossing into an epistemological claim: the hero's return is not a physical transit but a redefinition of what \"real\" means. It reflects the film's Baudrillardian foundation: if simulation and reality are ontologically entangled, the threshold itself is the illusion." @@ -102,11 +132,15 @@ }, "16": { "label": "I came here to tell you how it's going to begin", - "description": "Neo has become illegible to the categories that once contained him: neither prisoner of the simulation nor mere survivor of the devastated Earth, he occupies both worlds with equal fluency and commands both with equal authority. His address to the Machines makes this legible through its sheer confidence, as he speaks not as someone who has escaped their system but as someone who has comprehended it so thoroughly that the power relation has permanently inverted. The resolution of the narrative's founding duality is complete, even if the film only gestures toward it in the closing moments rather than depicting it at length." + "description": "Neo has become illegible to the categories that once contained him: neither prisoner of the simulation nor mere survivor of the devastated Earth, he occupies both worlds with equal fluency and commands both with equal authority. His address to the Machines makes this legible through its sheer confidence, as he speaks not as someone who has escaped their system but as someone who has comprehended it so thoroughly that the power relation has permanently inverted. The resolution of the narrative's founding duality is complete, even if the film only gestures toward it in the closing moments rather than depicting it at length.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" }, "17": { "label": "Where we go from there is a choice I leave to you", - "description": "The film ends on liberated possibility. Neo flies into the sky, free from the constraints of the code, from doubt, from gravity itself. His freedom is not domestic peace but the freedom of mission: knowing who he is and what he must do, acting from certainty rather than fear. The narrative closes not as a circle returning to its origin but as a trajectory launched outward, leaving the question of what comes next as a deliberate structural opening rather than an unresolved thread." + "description": "The film ends on liberated possibility. Neo flies into the sky, free from the constraints of the code, from doubt, from gravity itself. His freedom is not domestic peace but the freedom of mission: knowing who he is and what he must do, acting from certainty rather than fear. The narrative closes not as a circle returning to its origin but as a trajectory launched outward, leaving the question of what comes next as a deliberate structural opening rather than an unresolved thread.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } } @@ -122,6 +156,8 @@ "1": { "label": "Everything the light touches", "description": "Mufasa leads the young Simba to the summit of Pride Rock at dawn and reveals the kingdom spread before them, declaring that everything the light touches belongs to their domain and will one day pass to Simba as king. The call is not a rupture in the ordinary world but a formal investiture of destiny delivered by the reigning authority himself, framing the hero's journey as the assumption of an inherited obligation rather than the pursuit of an unknown summons.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", "semiotic": { "label": "Investiture as call divergence", "rationale": "Campbell's call to adventure is frequently marked by rupture: an intrusion, summons, or destabilizing event that tears the hero from the ordinary world toward an unknown domain. The Lion King reframes this sign-system as dynastic investiture rather than disruption. Mufasa's lesson on Pride Rock functions as a ceremonial transmission of sovereignty, where destiny is formally named within the existing social order rather than announced from outside it. The semiotic center of the call shifts from external interruption to institutional designation: the hero is not recruited away from home but positioned within a lineage, a territory, and a law of responsibility that already precedes him. The divergence preserves Campbell's structural function, initiating the journey through binding obligation, while relocating its meaning from adventurous departure to inherited vocation." @@ -130,6 +166,8 @@ "2": { "label": "The great kings will always be there to guide you", "description": "On the evening before the stampede, Mufasa tells Simba that the great kings of the past look down from the stars and will always be there to guide him. The lesson is intimate and tender, embedded in a father-son conversation about bravery rather than delivered as a ritual endowment of magical instruments. Its full significance lies dormant throughout the hero's exile, activating only when Rafiki leads Simba to the reflecting pool and the ghostly vision that completes the circuit between mortal teaching and ancestral intervention.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "sequential": { "label": "Aid before crisis divergence", "rationale": "Mufasa's lesson about the great kings arrives embedded in the ordinary world before the crisis that will shatter it, rather than appearing after the hero has crossed the threshold and entered the special world. The aid is further split across two temporal moments separated by the entire arc of exile: the cosmological framework is planted here as a quiet paternal intimacy, but it lies dormant for years until Rafiki's shamanic mediation and Mufasa's ghostly apparition activate it during the atonement." @@ -142,6 +180,8 @@ "3": { "label": "What have you done?", "description": "Scar orchestrates Mufasa's death in the wildebeest stampede and immediately turns to the traumatized cub with a calculated accusation: what has Simba done? The prince, who had been lured into the gorge as bait, internalizes the guilt completely and accepts that he is responsible for his father's death. The refusal of the call is not the hero's independent hesitation before the unknown but a manufactured psychic wound imposed by the Shadow, converting Simba's eagerness into shame and his birthright into a burden he believes he has forfeited.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Manufactured exile divergence", "rationale": "Campbell's refusal typically originates in the hero's own psyche: fear, attachment, inadequacy, or simple inertia. The Lion King externalizes the mechanism entirely: Scar engineers both the trauma (Mufasa's murder) and the interpretive frame (Simba's guilt), manufacturing a refusal that the hero experiences as authentic self-judgment but that is in fact an act of narrative sabotage by the Shadow. This produces a refusal that is at once more absolute and more fragile than the canonical form: absolute because Simba's guilt is total and unquestioned for years, fragile because it rests on a factual lie that, once exposed, dissolves the refusal entirely. The divergence reflects the film's investment in deception as a structural engine, where the hero's journey is arrested not by his own limitations but by a false story imposed upon him." @@ -149,15 +189,21 @@ }, "4": { "label": "Run away and never return", - "description": "Scar commands the grief-stricken cub to flee the Pride Lands and never return, then dispatches the hyenas to ensure the exile is permanent. Simba runs blindly through thornbush and scrubland until the grasslands give way to open desert. The crossing is not a heroic commitment to adventure but a panicked flight driven by manufactured guilt, and the threshold itself is marked not by a guardian's challenge but by the landscape's indifference: the Pride Lands simply end, and the emptiness beyond offers no welcome and no promise." + "description": "Scar commands the grief-stricken cub to flee the Pride Lands and never return, then dispatches the hyenas to ensure the exile is permanent. Simba runs blindly through thornbush and scrubland until the grasslands give way to open desert. The crossing is not a heroic commitment to adventure but a panicked flight driven by manufactured guilt, and the threshold itself is marked not by a guardian's challenge but by the landscape's indifference: the Pride Lands simply end, and the emptiness beyond offers no welcome and no promise.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "You're an outcast, that's great, so are we", - "description": "Simba collapses in the desert and is discovered near death by Timon and Pumbaa, who revive him and recognize in his exile a mirror of their own marginality. The prince who was to inherit a kingdom is swallowed whole by anonymity: his royal identity is irrelevant in the jungle, his past is actively suppressed, and the community that adopts him values him precisely for what he no longer claims to be. The symbolic death of the former self is achieved not through violence or containment but through the gentler annihilation of simply being forgotten." + "description": "Simba collapses in the desert and is discovered near death by Timon and Pumbaa, who revive him and recognize in his exile a mirror of their own marginality. The prince who was to inherit a kingdom is swallowed whole by anonymity: his royal identity is irrelevant in the jungle, his past is actively suppressed, and the community that adopts him values him precisely for what he no longer claims to be. The symbolic death of the former self is achieved not through violence or containment but through the gentler annihilation of simply being forgotten.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" }, "6": { "label": "Hakuna Matata", "description": "The film compresses Simba's entire adolescence and early adulthood into a musical montage of carefree indulgence: eating grubs, sleeping in the open, swimming in waterfalls, growing from cub to full-maned lion without crisis or conflict. The road of trials is inverted into a road of pleasures, where the ordeal is not suffering but the absence of it, and the danger lies in the progressive erosion of purpose that comfort produces. Each year of untroubled contentment deepens Simba's distance from his identity and makes the eventual return more difficult, not less.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", "narrative": { "label": "Idyll as ordeal divergence", "rationale": "Campbell's road of trials strips the hero of illusions through suffering, failure, and encounter with forces greater than the self. The Lion King replaces this gauntlet with an extended paradise: years of ease, friendship, and philosophical contentment that never once test Simba's physical courage. The ordeal is hidden inside the comfort, operating as a slow anaesthetic that numbs the hero's sense of purpose and identity without his awareness. The film suggests that the most dangerous trial is not the one that breaks the hero but the one that never arrives, leaving the hero intact but hollow, capable but unmotivated, and progressively less able to recognize the difference between peace and avoidance." @@ -166,6 +212,8 @@ "7": { "label": "Can you feel the love tonight", "description": "Nala arrives in the jungle unexpectedly, and the reunion between the two childhood friends unfolds into romantic recognition over the course of a single evening. The encounter restores something Simba had lost access to, a witness to his real identity who knew him before exile redefined him. Nala embodies the nurturing totality Campbell describes not through divine abstraction but through the concrete insistence that Simba is still the lion she grew up with, and that the kingdom he abandoned still needs him.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "semiotic": { "label": "Goddess as relational recognition divergence", "rationale": "Campbell's meeting with the goddess is often coded through a mythic or numinous feminine figure who mediates totality, unconditional affirmation, and a glimpse of ontological wholeness. The Lion King preserves that structural function but translates its sign system from divine apparition to relational recognition: Nala is not a supernatural goddess, but a historical witness who knows Simba before, during, and against the identity fracture produced by exile. Her significance is goddess-like in effect rather than in ontology. She restores to the hero an image of himself that neither guilt nor self-erasure can fully destroy, and she binds eros, memory, and ethical vocation into one encounter. The semiotic shift is from transcendental feminine symbol to intersubjective recognition, retaining Campbell's integrative meaning while grounding it in social relation, political responsibility, and the concrete world of the Pride Lands." @@ -174,6 +222,8 @@ "8": { "label": "You're not the Simba I remember", "description": "Nala confronts Simba with the devastation Scar has wrought on the Pride Lands and demands he return to reclaim the throne. The temptation the hero faces is not a seductive figure but the entire worldview he has internalized during exile: Hakuna Matata, the philosophy of no worries and no responsibility, which now functions as an ideology of avoidance dressed in the language of liberation. Simba's resistance to Nala's plea reveals how deeply the years of comfortable denial have rooted, making the temptation structural rather than personal and the seduction a matter of identity rather than desire.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "narrative": { "label": "Philosophy as seduction divergence", "rationale": "The temptation that arrests Simba's journey is not embodied in a seductive figure but in a comprehensive worldview. Hakuna Matata functions as a complete ethical system that reframes irresponsibility as wisdom and disengagement as enlightenment, offering the hero not momentary pleasure but a permanent alternative identity. The seduction is therefore structural rather than episodic: Simba does not resist a single encounter but must reject an entire way of being that he has practiced for years and that his closest companions sincerely endorse. This makes the temptation both more insidious and more sympathetic than Campbell's archetype typically allows, because the philosophy is not malicious. It is simply insufficient for someone whose obligations extend beyond himself." @@ -186,6 +236,8 @@ "9": { "label": "I can't go back", "description": "Simba tells Nala plainly that he cannot go back, and the refusal is not the reluctance of a hero who has tasted transcendence and prefers to linger in bliss, but the paralysis of one who believes himself complicit in the catastrophe he would need to repair. The weight holding him in place is guilt rather than contentment, and the paradise he clings to is not the special world's reward but a shelter from the ordinary world's judgment. His refusal is genuine and deeply felt, rooted in a lie he has carried since childhood.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "sequential": { "label": "Early refusal of return divergence", "rationale": "The Refusal of the Return is canonically the twelfth stage, occurring after the hero has obtained the Ultimate Boon and must decide whether to bring it back. In The Lion King, the refusal surfaces at narrative position nine, before the Atonement with the Father and the Apotheosis, embedded within the Initiation act rather than opening the Return. This displacement reflects the film's particular architecture of guilt: Simba's reluctance to return does not stem from having achieved transcendence and preferring to remain in bliss, but from having never completed the Initiation at all. His refusal is a symptom of arrested development rather than post-transformative reluctance, and it must be overcome before the remaining Initiation stages can proceed. The displacement has a cascading effect, shifting the Atonement and Apotheosis each one position forward in the narrative sequence." @@ -193,15 +245,21 @@ }, "10": { "label": "Remember who you are", - "description": "Rafiki tracks Simba into the wilderness after his refusal of Nala's plea and leads him to the edge of a still pool, where an invitation to look harder at his own reflection yields not his face but his father's. The vision does not stop there: the sky cracks open and Mufasa's ghostly form fills the clouds above him, calling down to his son across the boundary that death has placed between them. The dead king does not console, instead he names what the years of exile have cost: the slow dissolution of identity that comfort and avoidance have accomplished and the distance between the lion Simba has become and the one he actually is, closing with a charge that is simultaneously a command, a recognition, and an act of love, demanding that Simba recover the self he has abandoned." + "description": "Rafiki tracks Simba into the wilderness after his refusal of Nala's plea and leads him to the edge of a still pool, where an invitation to look harder at his own reflection yields not his face but his father's. The vision does not stop there: the sky cracks open and Mufasa's ghostly form fills the clouds above him, calling down to his son across the boundary that death has placed between them. The dead king does not console, instead he names what the years of exile have cost: the slow dissolution of identity that comfort and avoidance have accomplished and the distance between the lion Simba has become and the one he actually is, closing with a charge that is simultaneously a command, a recognition, and an act of love, demanding that Simba recover the self he has abandoned.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father" }, "11": { "label": "I know what I have to do", - "description": "Simba tells Rafiki that he knows what he must do, but acknowledges that going back means facing his past. Rafiki strikes him over the head with his stick and asks what it matters, since it is in the past. The moment of divine knowledge is rendered as a sudden, visceral clarity rather than a sustained state of blissful rest: Simba does not transcend the categories of his existence so much as he finally accepts them, recognizing that the pain he has been fleeing is the very ground on which he must build. He turns toward the Pride Lands and begins to run." + "description": "Simba tells Rafiki that he knows what he must do, but acknowledges that going back means facing his past. Rafiki strikes him over the head with his stick and asks what it matters, since it is in the past. The moment of divine knowledge is rendered as a sudden, visceral clarity rather than a sustained state of blissful rest: Simba does not transcend the categories of his existence so much as he finally accepts them, recognizing that the pain he has been fleeing is the very ground on which he must build. He turns toward the Pride Lands and begins to run.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" }, "12": { "label": "We're going to fight your uncle for this?", "description": "Simba races across the savanna toward the Pride Lands with Nala, Timon, and Pumbaa joining the charge. The journey inverts the canonical flight: the hero does not flee the special world carrying a prize, but rather hurtles toward the site of his unresolved trauma carrying nothing but recovered intention. The devastation he encounters on arrival confirms the urgency: the Pride Lands under Scar's reign have become a wasteland of stripped earth and bleached bone, the kingdom's decay a visible measure of how long the hero's absence has lasted.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "narrative": { "label": "Flight as advance divergence", "rationale": "The hero advances toward the source of his unresolved trauma rather than fleeing from it, empty-handed and unpursued. The canonical figure escapes the special world bearing a stolen prize with the guardians of the inner realm at his heels; here the directional logic is reversed at every register. The peril lies at the destination rather than in what trails behind, and the propelling force is the gravity of confrontation rather than of escape. The traversal between worlds is preserved, but its tension is redistributed from the space being left to the space being entered." @@ -213,11 +271,15 @@ }, "13": { "label": "Simba, you have to help us", - "description": "The battle for Pride Rock becomes a collective effort. Timon and Pumbaa create a diversionary hula dance to scatter the hyena sentries. Nala leads the lionesses into open combat. Rafiki dispatches opponents with his ceremonial staff. The rescue is not an extraction of the hero from peril but the convergence of every community that shaped him, exile companions and natal pride alike, fighting together on his behalf. The hero who had once been told he was alone in his guilt discovers that he has never been without allies, and that the two worlds of his divided life are willing to unite behind his cause." + "description": "The battle for Pride Rock becomes a collective effort. Timon and Pumbaa create a diversionary hula dance to scatter the hyena sentries. Nala leads the lionesses into open combat. Rafiki dispatches opponents with his ceremonial staff. The rescue is not an extraction of the hero from peril but the convergence of every community that shaped him, exile companions and natal pride alike, fighting together on his behalf. The hero who had once been told he was alone in his guilt discovers that he has never been without allies, and that the two worlds of his divided life are willing to unite behind his cause.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" }, "14": { "label": "Tell them the truth", "description": "Scar corners Simba at the edge of Pride Rock and forces him to confess before the pride that he killed Mufasa, savoring the repetition of his original manipulation. But when Simba dangles over the flames and Scar whispers the truth, that he himself killed Mufasa, the revelation shatters the psychic architecture that has held the hero captive since childhood. Simba surges back and forces the public confession that liberates him. The ultimate boon is not an object or a power but a truth: the hero's innocence, restored to him in the same instant that the kingdom's betrayal is made visible to all.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", "sequential": { "label": "Boon during return divergence", "rationale": "The Ultimate Boon is canonically the eleventh stage, closing the Initiation act. In The Lion King it arrives after the Magic Flight and the Rescue from Without have already begun the Return sequence. This displacement of three positions is the most significant sequential divergence in the film's monomyth realization. The Initiation's climactic achievement is deferred into the Return because the boon, Simba's innocence and the public unmasking of Scar, is locationally and socially bound: it can only be obtained at Pride Rock, before the assembled pride, in the presence of the villain whose confession produces it. The narrative thus braids the end of Initiation into the middle of Return, collapsing the two acts into a single dramatic sequence." @@ -229,15 +291,21 @@ }, "15": { "label": "It is time", - "description": "With Scar defeated and cast from Pride Rock, Rafiki approaches Simba and gestures toward the summit with three quiet words: it is time. Simba ascends the rain-slicked promontory alone, each step a visible integration of the exile's hard-won self-knowledge with the prince's inherited obligation. At the peak he roars into the storm, and the assembled pride roars in answer. The threshold is not a boundary between two worlds but a vertical axis between earth and sky, and crossing it requires the hero to stand where his father once stood, claiming the place not as an inheritor but as one who has earned it through suffering, loss, and return." + "description": "With Scar defeated and cast from Pride Rock, Rafiki approaches Simba and gestures toward the summit with three quiet words: it is time. Simba ascends the rain-slicked promontory alone, each step a visible integration of the exile's hard-won self-knowledge with the prince's inherited obligation. At the peak he roars into the storm, and the assembled pride roars in answer. The threshold is not a boundary between two worlds but a vertical axis between earth and sky, and crossing it requires the hero to stand where his father once stood, claiming the place not as an inheritor but as one who has earned it through suffering, loss, and return.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" }, "16": { "label": "A king's time rises and falls like the sun", - "description": "The rain falls on the scorched Pride Lands and green begins to return, the landscape itself responding to the restoration of rightful sovereignty. Simba now holds both registers of his experience simultaneously: the carefree wisdom of the jungle years, which taught him that not everything requires gravity, and the weight of the crown, which demands that some things do. Mufasa's early teaching that a king's time rises and falls like the sun is no longer an abstraction but a lived truth. The hero who fled one world and was absorbed by another has returned as the equilibrium point between them, neither denying his exile nor being defined by it." + "description": "The rain falls on the scorched Pride Lands and green begins to return, the landscape itself responding to the restoration of rightful sovereignty. Simba now holds both registers of his experience simultaneously: the carefree wisdom of the jungle years, which taught him that not everything requires gravity, and the weight of the crown, which demands that some things do. Mufasa's early teaching that a king's time rises and falls like the sun is no longer an abstraction but a lived truth. The hero who fled one world and was absorbed by another has returned as the equilibrium point between them, neither denying his exile nor being defined by it.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" }, "17": { "label": "The Circle of Life", - "description": "The film closes by returning to its opening image: Rafiki lifts a newborn cub above the assembled kingdom at the summit of Pride Rock as the sun rises and the animals gather below in recognition. The circle of life has completed one full revolution. Simba stands where Mufasa once stood, no longer fearing the cycle of succession that once seemed to demand his father's erasure. The freedom the hero has attained is not freedom from mortality or obligation but freedom within them: the capacity to occupy his place in the cycle without clinging to it, knowing that his own time too will rise and fall, and that the pattern will hold." + "description": "The film closes by returning to its opening image: Rafiki lifts a newborn cub above the assembled kingdom at the summit of Pride Rock as the sun rises and the animals gather below in recognition. The circle of life has completed one full revolution. Simba stands where Mufasa once stood, no longer fearing the cycle of succession that once seemed to demand his father's erasure. The freedom the hero has attained is not freedom from mortality or obligation but freedom within them: the capacity to occupy his place in the cycle without clinging to it, knowing that his own time too will rise and fall, and that the pattern will hold.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } } @@ -253,6 +321,8 @@ "1": { "label": "Stolen from sun and soft living", "description": "Buck lives as the undisputed lord of Judge Miller's estate in the Santa Clara Valley: swimming, hunting, carrying the grandchildren on his back. One night Manuel, the gardener's helper, slips a rope around Buck's neck and delivers him to a stranger at the railroad station. Buck is crated, loaded onto a train, transferred to a truck, and shipped northward, his world collapsing into the darkness and confinement of a cage he does not understand and cannot escape.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", "semiotic": { "label": "Abduction as summons divergence", "rationale": "Buck's ordinary world is shattered not by a sign or a messenger but by a rope, a crate, and a train. No agent of destiny speaks to him; the universe rearranges itself around him through economic violence motivated by gold-rush demand for strong dogs. The semiotic register shifts from the numinous to the mercantile, from a summons freighted with vocation to a commercial transaction in which the hero is the commodity. The structural function is fully preserved, the familiar world is irrevocably disrupted, but the vocabulary through which disruption is encoded belongs entirely to the language of property and exchange rather than the language of fate." @@ -261,6 +331,8 @@ "2": { "label": "A red-eyed devil", "description": "Delivered to a man in a red sweater in a yard behind a saloon in Seattle, Buck explodes from his crate in a fury of teeth and muscle. He charges the man again and again, a red-eyed devil snarling and frothing, and is clubbed to the ground each time until he can no longer stand. He is not broken, but he has learned something fundamental: a man with a club is a lawgiver to be obeyed, though not necessarily conciliated.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Resistance not refusal divergence", "rationale": "Buck fights the man in the red sweater not because he hesitates before a destined journey but because he has been kidnapped and beaten, and the only response his nature permits is violence. There is no psychological interiority to his resistance, no weighing of options, no recognition that a call has been issued, because a non-human protagonist cannot refuse a summons he does not conceptually apprehend. The resistance functions as a refusal only retrospectively, once the journey's shape becomes legible, and the lesson Buck extracts from defeat, obedience to superior force, is a survival adaptation rather than a decision to engage with destiny. Where the archetype expects a hero who knows what is being asked and turns away, London offers an animal who has no framework for understanding what is happening to him and fights on instinct alone." @@ -269,6 +341,8 @@ "3": { "label": "The law of club and fang", "description": "Fran\u00e7ois and Perrault buy Buck and harness him to the sled team. The experienced dogs Dave and Sol-leks teach him through proximity and imitation: how to pull in trace, how to dig a sleeping hole in the snow, how to break ice from between his toes. The lesson of the man in the red sweater deepens into a general law. Brute force governs this world, and survival belongs to those who learn its grammar quickly and adapt without sentimentality.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "semiotic": { "label": "Violence as instruction divergence", "rationale": "Buck's preparation for the threshold takes the form of brutal pedagogy: club blows from the man in the red sweater and the imitative example of dogs who have already adapted. The protective, gift-bearing figure traditional to the archetype is replaced by an indifferent environment that teaches through consequences rather than through care. The semiotic register is coercive and Darwinian where the archetype expects the sacred and the benevolent, yet the structural function endures with precision: the hero receives exactly what is needed to survive the crossing. What shifts is the sign system, from talisman to trauma, from endowment to discipline, reflecting London's naturalist conviction that the world instructs through force, not generosity." @@ -276,19 +350,27 @@ }, "4": { "label": "That first day on the Dyea beach", - "description": "Buck steps off the deck of the Narwhal onto the Dyea beach in Alaska and the known world ends. The snow under his feet is the first he has ever touched. Dogs are fighting savagely around him, and within minutes he watches Curly, a friendly Newfoundland he had befriended on the ship, knocked down and torn apart by the pack. The lesson is immediate and absolute: fall and you are finished, for this is the law of club and fang extended to its conclusion." + "description": "Buck steps off the deck of the Narwhal onto the Dyea beach in Alaska and the known world ends. The snow under his feet is the first he has ever touched. Dogs are fighting savagely around him, and within minutes he watches Curly, a friendly Newfoundland he had befriended on the ship, knocked down and torn apart by the pack. The lesson is immediate and absolute: fall and you are finished, for this is the law of club and fang extended to its conclusion.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "Where had the snow-surface gone?", - "description": "After his first day of pulling in harness, Buck searches desperately for shelter. The tent is closed to him; the snow offers nothing. He stumbles over a mound and discovers his teammates buried beneath the surface, warm in their snow-nests. He digs his own hole and sleeps. In the morning he wakes in total darkness, panics, and bursts upward through the snow into the grey dawn. For a moment he has no idea where or what he is. The dog who slept on the Judge's hearth has been swallowed by a world that buries its inhabitants each night and demands they claw their way back to the surface each morning." + "description": "After his first day of pulling in harness, Buck searches desperately for shelter. The tent is closed to him; the snow offers nothing. He stumbles over a mound and discovers his teammates buried beneath the surface, warm in their snow-nests. He digs his own hole and sleeps. In the morning he wakes in total darkness, panics, and bursts upward through the snow into the grey dawn. For a moment he has no idea where or what he is. The dog who slept on the Judge's hearth has been swallowed by a world that buries its inhabitants each night and demands they claw their way back to the surface each morning.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" }, "6": { "label": "The dominant primordial beast", - "description": "Buck learns to steal food without getting caught, to sleep warm in the deepest cold, to break trail through crusted snow. He grows cunning and efficient, every wasted movement shed. The rivalry with Spitz sharpens across weeks of escalating confrontation until they fight in the open under the aurora, and Buck kills him, claiming the lead position. He serves under Fran\u00e7ois and Perrault, then under a Scotch half-breed on the mail run, then under Hal, Charles, and Mercedes, whose ignorance starves the team and drives them into the spring ice. Each master strips another layer of the domestic animal away, exposing something older and harder underneath." + "description": "Buck learns to steal food without getting caught, to sleep warm in the deepest cold, to break trail through crusted snow. He grows cunning and efficient, every wasted movement shed. The rivalry with Spitz sharpens across weeks of escalating confrontation until they fight in the open under the aurora, and Buck kills him, claiming the lead position. He serves under Fran\u00e7ois and Perrault, then under a Scotch half-breed on the mail run, then under Hal, Charles, and Mercedes, whose ignorance starves the team and drives them into the spring ice. Each master strips another layer of the domestic animal away, exposing something older and harder underneath.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "7": { "label": "Love genuine and true", "description": "Hal beats Buck to force him onto the rotten spring ice. Buck refuses to move. John Thornton steps in, cuts Buck's traces, and tells Hal to leave or be hit himself. Hal's party drives on and the ice gives way beneath them. Thornton nurses Buck back to health, and what grows between them is described as love, fervid and burning, that runs deeper than anything Buck has known: he will lie for hours at Thornton's feet gazing up at his face, and Thornton will seize Buck's head, rest his own against it, and shake him back and forth murmuring soft curses as endearments. Buck saves Thornton from drowning in a river rapid. He wins Thornton a thousand-dollar wager by breaking a half-ton sled free from the ice by sheer pulling force.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "semiotic": { "label": "Interspecies love as totality divergence", "rationale": "The nurturing totality that reveals the deepest ground of existence to the hero takes the form of interspecies devotion between a dog and a rugged male frontiersman. The semiotic shift operates on three axes simultaneously: gendered, since the archetype's feminine divine figure becomes a masculine human companion; ontological, since the encounter crosses the species boundary rather than the boundary between mortal and divine; and in register, since rough physical affection and murmured curses as endearments replace the numinous and the sacred. Thornton's love is nonetheless the most complete acceptance Buck has ever known, preserving the structural function with remarkable precision while conducting it entirely through London's naturalist vocabulary of embodied loyalty and physical interdependence." @@ -297,6 +379,8 @@ "8": { "label": "The call sounding in the depths of the forest", "description": "While Thornton prospects for gold in a lost valley, Buck ranges farther and farther into the surrounding wilderness. He hunts, fishes, runs alongside a timber wolf for days, and each time the pull of the forest grows stronger. Yet each time he returns to Thornton's camp, because the love he bears this one man outweighs the instinct calling him outward. The pattern repeats across weeks and months: departure, deepening immersion in the wild, and then the gravitational pull of devotion dragging him back to the campfire. What holds the hero in place is not comfort or ignorance but the purest bond he possesses.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "semiotic": { "label": "Fidelity as seduction divergence", "rationale": "The force holding Buck at the campfire is not desire or worldly comfort but the single most admirable quality he possesses: his love for Thornton. The semiotic register encodes temptation as interspecies loyalty rather than feminine allure or sensual entanglement, so that resisting the call and betraying the hero's deepest bond become, for the duration of Thornton's life, the same act." @@ -305,6 +389,8 @@ "9": { "label": "The hairy man crouching by the fire", "description": "As Buck sleeps by the campfire, visions surface with increasing vividness. He sees a short-legged, hairy man crouching beside a different fire in a different age, fearful of the darkness beyond the flame's reach. He dreams of running with this figure through primeval forests, of hunting in vast open spaces, of the terror and the exhilaration of a world before domestication. The visions are not willed; they arrive as ancestral memory asserting itself through the body's deep time, and they grow more insistent and more detailed as the weeks pass until the boundary between Buck's waking life and the evolutionary past thins almost to transparency.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "semiotic": { "label": "Evolutionary memory as father divergence", "rationale": "The paternal authority that Buck must confront and absorb is not a singular figure but the entire evolutionary past of his species, accessed through involuntary visions during sleep rather than through a dramatic face-to-face reckoning. The semiotic register shifts from the personal and the patriarchal to the biological and the collective: the throne room becomes a campfire in deep time, judgment becomes the pressure of natural selection, and the hero's wilful submission to a father's power becomes an involuntary yielding to instinct encoded in the body itself. The encounter is diffuse and cumulative where the archetype demands concentrated crisis, its authority distributed across weeks of deepening visionary experience rather than compressed into a single transformative confrontation." @@ -312,11 +398,15 @@ }, "10": { "label": "Patient as the wild itself", - "description": "Buck selects a great bull moose, wounded and separated from the herd, and hunts it alone across four days and four nights. He cuts the moose off from water, harasses it when it rests, drives away the younger bulls that try to rejoin it, and waits with a patience that is no longer a dog's patience but something far older. When the moose finally collapses, Buck kills it and feeds, then rests beside the carcass for a day and a night, utterly at home in the silence. Every faculty he possesses, the strength, the cunning, the endurance, the ancestral instinct, converges in this single sustained act, and what emerges from it is not the animal who entered the hunt but something more complete." + "description": "Buck selects a great bull moose, wounded and separated from the herd, and hunts it alone across four days and four nights. He cuts the moose off from water, harasses it when it rests, drives away the younger bulls that try to rejoin it, and waits with a patience that is no longer a dog's patience but something far older. When the moose finally collapses, Buck kills it and feeds, then rests beside the carcass for a day and a night, utterly at home in the silence. Every faculty he possesses, the strength, the cunning, the endurance, the ancestral instinct, converges in this single sustained act, and what emerges from it is not the animal who entered the hunt but something more complete.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" }, "11": { "label": "The blood-longing", "description": "Buck returns from the moose hunt to find Thornton's camp destroyed. The Yeehats have killed Thornton, Hans, and Pete, and their dogs lie dead or dying by the wrecked campsite. Buck follows the scent trail to the Yeehat camp and attacks, tearing through the group with a fury that scatters those it does not kill. He returns to the ruined camp and stays beside Thornton's body through the night. What has been obtained is not an object, a power, or a piece of wisdom carried back from the special world, but total severance: the single bond that held the hero to the human world is gone, and with it every reason to remain anything other than what the journey has been making him.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", "narrative": { "label": "Boon through severance divergence", "rationale": "Thornton's death does not give Buck something new but removes the final obstacle to what he has already become. The supreme achievement of the journey is defined by subtraction rather than acquisition: the severing of the one attachment still powerful enough to arrest the transformation, not a grail or an elixir seized from the depths and carried home. The narrative economy is inverted accordingly. Rather than producing a portable treasure that the hero must transport back across the threshold, the entire arc of initiation produces a creature who no longer needs, or is able, to carry anything back. The boon and the loss are the same event, and the hero's reward is indistinguishable from the destruction of everything that once tethered him to the world he is leaving behind." @@ -325,6 +415,8 @@ "12": { "label": "The last tie was broken", "description": "A wolf pack emerges from the forest and Buck confronts them, fighting off the boldest until the pack recognizes his strength and accepts him. The last tie to the human world has been broken. There is no hesitation, no backward glance, no lingering at the threshold between worlds. Buck joins the pack and runs.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Permanent refusal divergence", "rationale": "Buck achieves his destiny by refusing to return, and the refusal is never overcome because it is not an obstacle within the journey but the journey's conclusion. The novel's one-way trajectory, from civilization toward wildness without reversal, transforms what is conventionally a transient hesitation, soon dissolved by dramatic necessity or external intervention, into a permanent condition. The distinction between refusing the return and completing the journey collapses entirely. A circular architecture in which the hero must bring the boon home is structurally incompatible with a story whose central argument is that the hero's true home was always the place civilization taught him to forget, and that arriving there is not a detour from the path but the path's destination." @@ -333,6 +425,8 @@ "13": { "label": "The trail runs only forward", "description": null, + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "narrative": { "label": "Absent flight divergence", "rationale": "Buck has seized nothing portable and flees from nothing. His transformation is not an artefact that can be stolen or pursued but an ontological change that the special world has produced in him, irreversible and non-transferable. No guardians give chase because the wild does not lose what it claims; it gains a member. A perilous escape carrying a hard-won prize presupposes a hero whose trajectory bends homeward, and Buck's trajectory bends only deeper into the territory he is becoming part of. The directionality that the stage requires is simply unavailable to this narrative." @@ -341,6 +435,8 @@ "14": { "label": "No voice calls him back", "description": null, + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "narrative": { "label": "Absent rescue divergence", "rationale": "The sole human who might have reached across the threshold to retrieve Buck is dead, and no other figure from the domestic world has either the knowledge or the motivation to attempt it. The absence is not an omission but a thematic necessity rooted in London's naturalist framework: the forces acting on an organism are impersonal and irreversible, nature does not yield its converts back to civilization, and sentimental retrieval is simply not available as a narrative possibility. A community invested in the hero's return would require a world that misses him, and by this point the only world that registers Buck's presence is the one he has joined, not the one he has left." @@ -349,6 +445,8 @@ "15": { "label": "The Ghost Dog", "description": "Each year when the days grow long, Buck visits the valley where Thornton died. He stands motionless beside the stream for a time, muzzle raised, then howls once, long and mournful, before returning to the pack. The Yeehats speak of a Ghost Dog that haunts the valley and kills any hunter who camps there alone. The threshold is crossed, but in the wrong direction: the hero has not returned from the special world into the ordinary one but has passed permanently beyond the boundary that separates them, re-entering the ordinary world only as a phantom, a rumour, a figure of dread.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", "narrative": { "label": "Inverted return divergence", "rationale": "Buck crosses the threshold permanently in the wrong direction. His annual return to the valley where Thornton died is not a re-entry into the human world but a ritual visitation from outside it, witnessed only as absence, the empty valley, and aftermath, dead hunters who ventured too close. Rather than dissolving the boundary between worlds through hard-won mastery, the crossing reinforces it: the threshold now separates a ghost from the living rather than a traveller from home. The inversion is the novel's most direct structural claim against the circular journey. Buck's nature runs counter to the trajectory of human civilisation, and authentic freedom, London insists, lies in completing the crossing rather than reversing it." @@ -357,6 +455,8 @@ "16": { "label": "Fear and mystery", "description": "The Yeehats alter their hunting routes to avoid the haunted valley and weave the Ghost Dog into their legends: a spectral beast of enormous size that runs at the head of the wolf pack. Buck exists simultaneously as the sovereign of the wild pack and as a figure in human oral tradition, inhabiting both worlds not through choice or mastery but through the ineradicable trace his passage has left on each. He does not mediate between the two realms; he is simply, irreducibly present in both, one as flesh and one as story.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", "narrative": { "label": "Mastery without consciousness divergence", "rationale": "Buck inhabits both worlds simultaneously but without awareness or intention: he is sovereign of the wolf pack in one and a figure of dread woven into Yeehat oral tradition in the other. The two presences are entirely disconnected. Buck does not mediate between realms or move freely across the boundary; the human world constructs a myth around his absence while he lives indifferent to it. What looks like dual mastery is an accident of narrative perspective rather than something the hero achieves." @@ -364,7 +464,9 @@ }, "17": { "label": "Running at the head of the pack", - "description": "Buck runs at the head of the wolf pack through the pale moonlight, splashing through broad flats of shallow water where the timber wolves drink. He sings a song of the younger world, a song of the pack. He is fully alive, fully present, released from the domesticated past and unburdened by any obligation to return to it. The freedom he possesses is not the freedom of a hero who has reconciled two worlds but the freedom of one who has chosen entirely, surrendered nothing he still wanted, and arrived at the place the entire journey was leading him." + "description": "Buck runs at the head of the wolf pack through the pale moonlight, splashing through broad flats of shallow water where the timber wolves drink. He sings a song of the younger world, a song of the pack. He is fully alive, fully present, released from the domesticated past and unburdened by any obligation to return to it. The freedom he possesses is not the freedom of a hero who has reconciled two worlds but the freedom of one who has chosen entirely, surrendered nothing he still wanted, and arrived at the place the entire journey was leading him.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } } @@ -379,15 +481,21 @@ "stages": { "1": { "label": "The Plea from Mazandaran", - "description": "After the death of King Kay Qobad, the greedy King Kay Kavus takes the throne. A demon singer sent by Ahriman lulls him with songs of Mazandaran's beauty, prompting Kavus to invade. The invasion ends in disaster when the White Demon rains stones on the army and strikes them blind with sorcery. Imprisoned in a pit, Kavus smuggles a letter to Zal, begging for Rostam to come and save the army and the crown." + "description": "After the death of King Kay Qobad, the greedy King Kay Kavus takes the throne. A demon singer sent by Ahriman lulls him with songs of Mazandaran's beauty, prompting Kavus to invade. The invasion ends in disaster when the White Demon rains stones on the army and strikes them blind with sorcery. Imprisoned in a pit, Kavus smuggles a letter to Zal, begging for Rostam to come and save the army and the crown.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" }, "2": { "label": "Rostam's Immediate Acceptance", - "description": "The narrative contains no hesitation or refusal. Rostam, already a fully realized epic hero, responds immediately to the Shah's plea. His choice of the more dangerous 'Short Path' reinforces that the story prioritizes heroic duty and action over psychological conflict, making refusal structurally incompatible with the narrative." + "description": "The narrative contains no hesitation or refusal. Rostam, already a fully realized epic hero, responds immediately to the Shah's plea. His choice of the more dangerous 'Short Path' reinforces that the story prioritizes heroic duty and action over psychological conflict, making refusal structurally incompatible with the narrative.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" }, "3": { "label": "Zal's Gifts and Rakhsh's Loyalty", "description": "Zal provides Rostam with his heavy mace and leopard-skin armor (Babr-e Bayan) which is invulnerable to fire and water. Most importantly, Rostam is aided by his legendary steed, Rakhsh, a horse of incredible strength and intelligence who can kill lions and fight alongside his master.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "narrative": { "label": "The Intervention of Rakhsh", "rationale": "Aid is provided not only by a mentor but by a sentient animal ally who possesses independent agency and saves the hero multiple times." @@ -395,11 +503,15 @@ }, "4": { "label": "The Edge of Mazandaran", - "description": "Rostam leaves the Iranian court and enters the borderlands of Mazandaran. By choosing the 'Short Path' beset with baleful things, he moves away from the safe world into a land of sorcery. Rakhsh gallops so fast that the ground vanishes beneath them, covering a two-day journey in twelve hours." + "description": "Rostam leaves the Iranian court and enters the borderlands of Mazandaran. By choosing the 'Short Path' beset with baleful things, he moves away from the safe world into a land of sorcery. Rakhsh gallops so fast that the ground vanishes beneath them, covering a two-day journey in twelve hours.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "Sleep in the Lion's Lair", "description": "Exhausted, Rostam makes a couch among the reeds to sleep, unaware that he has laid down in the lair of a fierce lion. This moment of deep, unprotected slumber in the heart of enemy territory represents his total immersion in the danger of Mazandaran, where his human awareness is completely suspended.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "semiotic": { "label": "The Marshland Ordeal", "rationale": "The 'whale' is not a physical interior but the semiotic state of deep sleep in a predator-filled marshland, marking the threshold of death." @@ -408,6 +520,8 @@ "6": { "label": "The Lion, the Ram, and the Dragon's Attack", "description": "Labor 1: While Rostam sleeps, a lion attacks. Rakhsh independently fights and kills the beast by stomping its head and biting its neck. Labor 2: Rostam collapses in the desert from thirst; after he prays, a fat wild ram appears, and he follows it to a hidden spring. Labor 3: An eighty-foot dragon attacks his camp thrice. Initially invisible, God eventually grants Rostam light to see the beast, allowing him to decapitate it while Rakhsh bites its scales.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", "semiotic": { "label": "The Appearance of the Ram", "rationale": "Khan 2 is a trial of faith; victory is delivered via a semiotic sign (the ram) rather than the hero's own strength." @@ -415,11 +529,15 @@ }, "7": { "label": "Absence of a Feminine Archetype", - "description": "The narrative not only lacks a nurturing feminine figure but actively inverts the archetype. The only prominent feminine presence is a demonic sorceress who deceives and attacks Rostam. This replaces the 'Goddess' as a source of unity or wisdom with a figure of illusion and danger, reflecting the epic's moral polarity rather than symbolic integration." + "description": "The narrative not only lacks a nurturing feminine figure but actively inverts the archetype. The only prominent feminine presence is a demonic sorceress who deceives and attacks Rostam. This replaces the 'Goddess' as a source of unity or wisdom with a figure of illusion and danger, reflecting the epic's moral polarity rather than symbolic integration.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess" }, "8": { "label": "The Sorceress's Deception", "description": "Labor 4: Rostam finds a magical banquet with wine and a lyre. He plays and sings of his wanderings. A sorceress disguised as a beautiful damsel joins him. However, when Rostam offers her wine in the name of the Creator (Ormuzd), the holy name forces her to reveal her true, hideous form. Rostam lassos the demon-witch and cleaves her in half with his sword.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "semiotic": { "label": "The Invocation of God", "rationale": "Temptation is broken through the name of the Creator, framing the stage as an ontological reveal of the demonic rather than a moral struggle." @@ -428,6 +546,8 @@ "9": { "label": "Captivity and Conquest of Olad", "description": "Labor 5: After Rostam lets Rakhsh graze in a field, the keeper beats Rostam's feet with a stick. Rostam wakes and tears the man's ears off. The champion Olad (Aulad) arrives with an army to avenge the keeper. Rostam routs the army single-handedly, lassos Olad, and binds him, promising him the throne of Mazandaran if he acts as a guide to find the White Demon's cave.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", "narrative": { "label": "Olad as a Conquered Herald", "rationale": "Rostam 'seizes' his guidance from the enemy world by conquering and binding Olad, forcing the Shadow to serve as his Herald." @@ -440,6 +560,8 @@ "10": { "label": "The Defeat of Arzhang", "description": "Labor 6: Olad leads Rostam to the camp of the demon general Arzhang. Rostam lets out a roar that shakes the mountains, gallops to Arzhang's tent, tears the demon out by his hair, and rips his head from his shoulders. He hurls the severed head at the demon army, causing 12,000 demons to flee in panic.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", "sequential": { "label": "Recurring Ordeals", "rationale": "The trials recur after the Temptress stage, violating the linear progression assumed in the canonical monomyth." @@ -448,6 +570,8 @@ "11": { "label": "Releasing Kay Kavus from the Pit", "description": "Rostam enters the pit and finds the blind King Kay Kavus. The King, now desperate and repentant, explains that the only cure for their blindness is the blood from the heart and liver of the White Demon. Rostam accepts this final command from his sovereign, setting the stage for the final confrontation.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "narrative": { "label": "The Blind King's Ignorance", "rationale": "The hero does not submit to a powerful father but rescues a blind and foolish one, restoring the authority he has surpassed." @@ -455,19 +579,27 @@ }, "12": { "label": "The Death of the White Demon", - "description": "Labor 7: Rostam enters the pitch-black cave of the White Demon at noon when the demons sleep. He awakens the mountain-sized giant and they wrestle with such force that blood and sweat run like rivers. Rostam prays to God for strength, lifts the demon, and slams him down, cutting out his liver and heart." + "description": "Labor 7: Rostam enters the pitch-black cave of the White Demon at noon when the demons sleep. He awakens the mountain-sized giant and they wrestle with such force that blood and sweat run like rivers. Rostam prays to God for strength, lifts the demon, and slams him down, cutting out his liver and heart.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" }, "13": { "label": "The Restoration of Sight", - "description": "Rostam returns to the blind Shah and his lords. He drops the blood of the White Demon's liver into their eyes. Instantly, the sorcery is broken, and the sight of the King and the entire Iranian army is restored, granting them the 'elixir' of vision and life." + "description": "Rostam returns to the blind Shah and his lords. He drops the blood of the White Demon's liver into their eyes. Instantly, the sorcery is broken, and the sight of the King and the entire Iranian army is restored, granting them the 'elixir' of vision and life.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" }, "14": { "label": "Immediate Departure from Mazandaran", - "description": "Rostam shows no hesitation in returning; he views the demon realm of Mazanderan as a land of filth and sorcery. His duty to Iran and the King necessitates an immediate exit to restore the legitimate order at home, leaving no room for a desire to stay in the supernatural realm." + "description": "Rostam shows no hesitation in returning; he views the demon realm of Mazanderan as a land of filth and sorcery. His duty to Iran and the King necessitates an immediate exit to restore the legitimate order at home, leaving no room for a desire to stay in the supernatural realm.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return" }, "15": { "label": "Defeat of the King of Mazandaran", "description": "The King of Mazandaran refuses to yield and challenges Rostam. During their duel, the King uses magic to turn his body into an unbreakable stone. Rostam simply picks up the 'King-Stone' and carries it to camp, threatening to grind it to dust with his mace until the King is forced to revert to human form.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "narrative": { "label": "The Defeat of the Stone King", "rationale": "The flight is interrupted by the King of Mazandaran's transformation into stone, requiring a demonstration of mastery over both worlds to resolve." @@ -475,15 +607,21 @@ }, "16": { "label": "Rostam's Self-Rescue", - "description": "As the 'World-Champion', Rostam is the source of rescue for everyone else; he is so powerful that there is no external force capable of rescuing him. His journey out of Mazanderan is secured through his own military might and dominance over the demons." + "description": "As the 'World-Champion', Rostam is the source of rescue for everyone else; he is so powerful that there is no external force capable of rescuing him. His journey out of Mazanderan is secured through his own military might and dominance over the demons.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" }, "17": { "label": "The Victorious Return to Iran", - "description": "Rostam and King Kay Kavus return to the Iranian capital, Estakhr. The crossing of the threshold back into the 'Ordinary World' is a grand celebration; the populace fills the streets, throwing gold and wine over the heroes to welcome the restoration of the rightful Shah and the return of their champion." + "description": "Rostam and King Kay Kavus return to the Iranian capital, Estakhr. The crossing of the threshold back into the 'Ordinary World' is a grand celebration; the populace fills the streets, throwing gold and wine over the heroes to welcome the restoration of the rightful Shah and the return of their champion.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" }, "18": { "label": "Fulfillment of the Promise to Olad", "description": "Rostam fulfills his promise to Olad, giving him the crown of Mazandaran. By doing so, he establishes order in the land of demons while returning to Iran as its savior, having mastered the supernatural perils of Mazandaran and the political duties of the Iranian court.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", "narrative": { "label": "Ruling Mazandaran", "rationale": "Mastery is expressed through the political appointment of a demon-ally (Olad) and the restoration of a human king." @@ -491,7 +629,9 @@ }, "19": { "label": "The Celebration of Victory", - "description": "The Shah and Rostam return to the capital, Estakhr, to a hero's welcome of gold and wine. The land is at peace, and Rostam returns to Sistan, having restored the freedom of his nation and the sight of its King." + "description": "The Shah and Rostam return to the capital, Estakhr, to a hero's welcome of gold and wine. The land is at peace, and Rostam returns to Sistan, having restored the freedom of his nation and the sight of its King.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } } @@ -507,6 +647,8 @@ "1": { "label": "Negative 25 is missing", "description": "Walter Mitty works in the basement photo department of Life magazine as the negative assets manager, carefully cataloguing and processing the work of famous photojournalists while living a deeply repetitive life defined by routine, silence, and elaborate daydreams. He quietly admires Cheryl Melhoff, a coworker in Life Magazine, in online dating profile management, but lacks the confidence even to send her a proper wink through eHarmony because his profile appears empty and unremarkable. At the same time, Life is preparing its final print issue as the company transitions to digital under the supervision of Ted Hendricks, whose restructuring threatens Walter's department. When renowned photographer Sean O'Connell sends his final roll of negatives along with a leather wallet as a personal gift, his note identifies negative #25 as the \"quintessence of life\" and insists it should be the final cover image. Walter discovers the negative is missing. Ted immediately demands its production, transforming Walter's quiet technical responsibility into a crisis that threatens both his career and the symbolic closure of the magazine.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", "semiotic": { "label": "Call as Professional Crisis divergence", "rationale": "The call is expressed through a corporate crisis involving the transition from print to digital media." @@ -515,6 +657,8 @@ "2": { "label": "Daydream retreat", "description": "Faced with Ted's pressure and unable to explain the missing image, Walter retreats into the psychological refuge that has always protected him from confrontation. Throughout the office he repeatedly dissociates into vivid heroic fantasies: imagining himself leaping through exploding buildings, confronting Ted with impossible courage, and performing acts of public confidence impossible for his ordinary self. Rather than searching actively for a solution, he delays, avoids direct answers, and lets his imagination temporarily overwrite reality. This refusal is not spoken aloud but enacted through paralysis and escapism, revealing how deeply his fantasies function as protection against action.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Internalized Refusal divergence", "rationale": "The refusal is psychological escapism rather than a literal rejection of the call." @@ -523,6 +667,8 @@ "3": { "label": "Clues and encouragement", "description": "Cheryl notices Walter's distress and encourages him to stop viewing Sean's photographs as isolated negatives and instead read them as clues. Together they examine the remaining images: a weathered thumb bearing a distinctive ring, a fishing vessel, fragments of landscape, and small environmental details that suggest movement across distant places. Cheryl's confidence in Walter's perceptiveness gives him emotional permission to act, while Sean's gift of the wallet implies trust and recognition from someone Walter deeply admires professionally. These clues, combined with Cheryl's quiet encouragement, transform the missing negative from a bureaucratic problem into an interpretable trail.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "semiotic": { "label": "Corporate Aid divergence", "rationale": "A simple gift replaces traditional mythic talismans." @@ -530,11 +676,15 @@ }, "4": { "label": "Flight to Greenland", - "description": "For the first time in years, Walter abandons hesitation and physically leaves New York. Following the photographic clues, he books a flight to Greenland and enters a world of uncertainty entirely unlike the controlled routines of the Life archive room. This departure marks a literal and symbolic crossing: he moves from observation to participation, from cataloguing other people's adventures to beginning his own." + "description": "For the first time in years, Walter abandons hesitation and physically leaves New York. Following the photographic clues, he books a flight to Greenland and enters a world of uncertainty entirely unlike the controlled routines of the Life archive room. This departure marks a literal and symbolic crossing: he moves from observation to participation, from cataloguing other people's adventures to beginning his own.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "The Helicopter Leap", "description": "In Nuuk, Walter tracks down a helicopter pilot whose thumb matches the ring visible in Sean's photograph. He discovers the pilot is intoxicated and preparing to deliver supplies to a ship where Sean had recently been. Terrified and standing on the dock, Walter hesitates. In this suspended moment, he imagines Cheryl appearing and singing David Bowie's \"Space Oddity\", the fantasy transforming his fear into resolve. He boards the helicopter. Mid-flight, he must jump toward the ship below but misjudges the leap and crashes into the freezing North Atlantic. Struggling in the icy water and narrowly escaping a shark, he is pulled aboard by the crew. The plunge functions as both literal survival ordeal and symbolic destruction of his former passive self.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "narrative": { "label": "Atlantic Belly divergence", "rationale": "The 'Whale' is the North Atlantic ocean, representing a literal and symbolic death of the old self." @@ -542,11 +692,15 @@ }, "6": { "label": "Iceland trek", - "description": "Although Sean is no longer on the ship, Walter discovers a clementine cake wrapper that points toward Iceland. Pursuing this new clue, he travels to Sk\u00f3gar and continues across increasingly dangerous terrain. To move faster, he trades the Stretch Armstrong toy that his sister had bought him for his birthday, for a skateboard owned by a local teenager. He then longboards down an immense winding road through volcanic landscapes, balancing fear and exhilaration. As he races toward what he believes is Sean's location, he experiences something entirely new: confidence generated by action rather than fantasy. Yet despite reaching the region where Sean was seen, he remains just out of reach." + "description": "Although Sean is no longer on the ship, Walter discovers a clementine cake wrapper that points toward Iceland. Pursuing this new clue, he travels to Sk\u00f3gar and continues across increasingly dangerous terrain. To move faster, he trades the Stretch Armstrong toy that his sister had bought him for his birthday, for a skateboard owned by a local teenager. He then longboards down an immense winding road through volcanic landscapes, balancing fear and exhilaration. As he races toward what he believes is Sean's location, he experiences something entirely new: confidence generated by action rather than fantasy. Yet despite reaching the region where Sean was seen, he remains just out of reach.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "7": { "label": "Absent Meeting with the Goddess", "description": "Unlike traditional heroic narratives, Walter experiences no direct transformative union during this phase. Cheryl remains physically absent from the adventure, existing instead as an internalized source of courage and emotional orientation. Her influence shapes Walter's decisions, but the narrative postpones any actual relational resolution, replacing the classical encounter with a deferred emotional possibility.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "narrative": { "label": "Absent Goddess divergence", "rationale": "The narrative omits a literal meeting with a maternal or divine goddess to prioritize Walter's grounded romantic connection and his search for an elusive mentor." @@ -555,6 +709,8 @@ "8": { "label": "Volcanic retreat", "description": "As Walter closes in on Sean's location in Iceland, a volcanic eruption destabilizes the region and interrupts his pursuit. Forced to evacuate and unable to continue, he must abandon the search and return to New York empty-handed. This interruption produces a premature collapse of the quest, not because Walter chooses retreat but because external reality imposes it, disrupting the heroic trajectory before resolution can be achieved.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "sequential": { "label": "Premature Return divergence (volcanic eruption)", "rationale": "A physical return occurs halfway through the journey due to external failure, interrupting the canonical sequence." @@ -563,6 +719,8 @@ "9": { "label": "Fired and defeated", "description": "Back in New York, Walter is humiliated and dismissed by Ted for failing to recover the negative. Still trying to hold onto one meaningful gesture, he visits Cheryl's home to give the skateboard he had carried back from Iceland for her son, as he was interested in skate boarding. There he sees her ex-husband present in the house and assumes she has reconciled with him. Misreading the scene as confirmation that he has failed both professionally and personally, Walter withdraws emotionally. His despair becomes a temptation to return fully to passivity and abandon the transformation he had begun.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "narrative": { "label": "Temptation of Despair divergence", "rationale": "The temptation is the hero's own insecurity and the urge to remain in a safe, defeated state." @@ -571,6 +729,8 @@ "10": { "label": "Discarding the wallet", "description": "Convinced that his journey has accomplished nothing, Walter visits his mother feeling defeated and directionless. In frustration and self-reproach, he throws Sean's wallet into the trash. This act symbolizes his rejection of the significance of his journey and his inability to recognize that the quest has already transformed him.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "sequential": { "label": "Early Refusal of Life divergence", "rationale": "The hero refuses his new identity early because he perceives his first attempt as a failure." @@ -579,6 +739,8 @@ "11": { "label": "Mother's clue", "description": "While going through family belongings, Walter stands in front of the piano his father had once bought for his mother\u2014a heavy presence in the room, now a symbol of loss as the family prepares to sell it because he has been fired from Life magazine and can no longer contribute financially. The instrument feels like both a memory and a burden, marking the quiet collapse of stability at home. As he lingers there, Walter recalls one of Sean O'Connell's clue photographs showing a piano in an unexpected setting. The connection clicks into place. He asks his mother whether Sean had ever been there, and she confirms that he had indeed visited their home. In that moment, Walter realizes he had already been given this clue before\u2014but had overlooked it entirely, just as he often overlooks reality while lost in his own thoughts. The piano, both in the photograph and in front of him now, becomes the missing link he failed to interpret. Reassembling the sequence of clues, he understands that Sean's trail leads to the Himalayas, where he is photographing the elusive snow leopard. This quiet domestic revelation becomes the turning point that pulls Walter out of defeat and sets him back into motion, reigniting the pursuit with renewed clarity and purpose.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "semiotic": { "label": "Domestic Guide divergence", "rationale": "The guide is the hero's mother being present to help him and remind him of the event that he has missed regarding the clues, due to being in his head and immaginations." @@ -586,11 +748,15 @@ }, "12": { "label": "Himalayan trek", - "description": "Walter undertakes a second and more demanding journey, traveling through Afghanistan and trekking into the Himalayas. Unlike his earlier adventures, this passage is quieter and more deliberate. He no longer depends on fantasy for courage; he simply moves forward, demonstrating the practical confidence he has acquired through experience." + "description": "Walter undertakes a second and more demanding journey, traveling through Afghanistan and trekking into the Himalayas. Unlike his earlier adventures, this passage is quieter and more deliberate. He no longer depends on fantasy for courage; he simply moves forward, demonstrating the practical confidence he has acquired through experience.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "13": { "label": "The Ghost Cat", "description": "Walter finally locates Sean high in the mountains as he waits silently for the appearance of the rare snow leopard known as the \"ghost cat\". Their meeting lacks dramatic confrontation. Instead, it unfolds through stillness, patience, and mutual recognition. Sean treats Walter not as an anonymous employee in the photo department but as someone worthy of respect, marking a subtle but profound shift in Walter's self-understanding.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "semiotic": { "label": "Artist as Father divergence", "rationale": "The Father is a secular artist; atonement is achieved through shared professional respect." @@ -598,15 +764,21 @@ }, "14": { "label": "Leopard lesson", - "description": "When the snow leopard finally emerges, Sean chooses not to photograph it. He explains that some moments are too beautiful to interrupt, telling Walter that \"beautiful things don't ask for attention\". This statement reframes Walter's understanding of value. Meaning lies not in capturing or proving experience, but in inhabiting it fully. The lesson dissolves Walter's need for fantasy as compensation for absence from life." + "description": "When the snow leopard finally emerges, Sean chooses not to photograph it. He explains that some moments are too beautiful to interrupt, telling Walter that \"beautiful things don't ask for attention\". This statement reframes Walter's understanding of value. Meaning lies not in capturing or proving experience, but in inhabiting it fully. The lesson dissolves Walter's need for fantasy as compensation for absence from life.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" }, "15": { "label": "Conceptual Boon", - "description": "Sean reveals that negative #25 had been inside the wallet he gave Walter all along. When he wrote \"look inside\" in his letter, he meant it quite literally: the photograph was hidden within the wallet itself, unnoticed because Walter never thought to fully examine it. More importantly, the encounter shifts the meaning of the entire journey. The true reward is not the photograph itself, but what Walter has become through the search. In meeting Sean, he reaches a deeper understanding of himself\u2014moving from a passive observer of life to someone who actively participates in it. He gains confidence, presence, and a sense of self-worth no longer dependent on external approval or imagined heroism. This internal change is the real outcome of the quest: the conceptual boon." + "description": "Sean reveals that negative #25 had been inside the wallet he gave Walter all along. When he wrote \"look inside\" in his letter, he meant it quite literally: the photograph was hidden within the wallet itself, unnoticed because Walter never thought to fully examine it. More importantly, the encounter shifts the meaning of the entire journey. The true reward is not the photograph itself, but what Walter has become through the search. In meeting Sean, he reaches a deeper understanding of himself\u2014moving from a passive observer of life to someone who actively participates in it. He gains confidence, presence, and a sense of self-worth no longer dependent on external approval or imagined heroism. This internal change is the real outcome of the quest: the conceptual boon.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" }, "16": { "label": "Airport security", "description": "Returning from the Himalayas carrying a traditional instrument gifted by local villagers, Walter is detained by airport security in Los Angeles. Unable to easily explain his situation, he calls Todd Maher, the eHarmony representative who had earlier tried to help him complete his incomplete dating profile. Todd verifies Walter's identity and enthusiastically acknowledges the remarkable adventures Walter has now lived. The scene offers bureaucratic resistance transformed into recognition of genuine growth.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "semiotic": { "label": "Bureaucratic Flight divergence", "rationale": "The Magic Flight is expressed through the modern struggle of airport bureaucracy." @@ -615,6 +787,8 @@ "17": { "label": "Recovery of the Negative", "description": "Back home, Walter's mother reveals that she retrieved the discarded wallet from the trash. Opening it carefully, Walter finally finds an envelope hidden inside containing negative #25. The object he had sought across continents had been there all along, accessible only after he had undergone the internal transformation necessary to understand its meaning.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "sequential": { "label": "Delayed Physical Attainment divergence", "rationale": "The physical Boon is retrieved after the internal transformation is complete, reversing the typical acquisition sequence." @@ -622,15 +796,21 @@ }, "18": { "label": "Return to Life", - "description": "Walter returns to the Life office and delivers negative #25 to the remaining staff. He directly confronts Ted Hendricks, no longer intimidated or evasive. By standing up for himself and for the dignity of the magazine's legacy, he reintegrates into his original world as a fundamentally changed person." + "description": "Walter returns to the Life office and delivers negative #25 to the remaining staff. He directly confronts Ted Hendricks, no longer intimidated or evasive. By standing up for himself and for the dignity of the magazine's legacy, he reintegrates into his original world as a fundamentally changed person.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" }, "19": { "label": "Quintessence of Life", - "description": "When the final issue is published, Walter and Cheryl, running into each other to get their last pay check, discover the cover displayed at a newsstand. The photograph is of Walter himself sitting outside the Life building, quietly absorbed in his work. Sean had recognized in Walter's unnoticed dedication the true \"quintessence of life\". The revelation validates Walter's journey by showing that the extraordinary had always existed within the ordinary." + "description": "When the final issue is published, Walter and Cheryl, running into each other to get their last pay check, discover the cover displayed at a newsstand. The photograph is of Walter himself sitting outside the Life building, quietly absorbed in his work. Sean had recognized in Walter's unnoticed dedication the true \"quintessence of life\". The revelation validates Walter's journey by showing that the extraordinary had always existed within the ordinary.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" }, "20": { "label": "Walking with Cheryl", - "description": "In the final moments, Walter walks beside Cheryl through New York in a calm and unremarkable scene made meaningful by his complete presence within it. He no longer drifts into fantasy because he no longer needs imagined heroism. His life has become real enough to inhabit fully, and his relationship with Cheryl now begins on authentic rather than imagined terms." + "description": "In the final moments, Walter walks beside Cheryl through New York in a calm and unremarkable scene made meaningful by his complete presence within it. He no longer drifts into fantasy because he no longer needs imagined heroism. His life has become real enough to inhabit fully, and his relationship with Cheryl now begins on authentic rather than imagined terms.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } } @@ -646,6 +826,8 @@ "1": { "label": "The Train to Gotham", "description": "Bruce returns to Gotham after years abroad. His 'summons' is internal: the trauma of his parents' death and the decaying state of the city.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", "semiotic": { "label": "Neo-Noir Secularization", "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." @@ -654,6 +836,8 @@ "2": { "label": "Disastrous East End Surveillance Mission", "description": "During his training, Bruce hesitates, feeling unsure and aware that he must wait before acting. Despite this internal hesitation, his impatience drives him to attempt a plainclothes serveillance mission in the East End. The encounter is disastrous: he fights a pimp, is stabbed, shot by the police, and barely escapes. Bleeding in his study, his initial hesitation is violently validated. He admits he is 'not ready' because he lacks the proper method to strike fear into his enemies.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Premature Start as Refusal", "rationale": "Traditionally, the Refusal of the Call is characterized by the hero's fear, excuses, or reluctance to leave the comfort of the Ordinary World. In this narrative, the archetype is subverted. Bruce Wayne is a 'Willing Hero' who does not hesitate out of fear, but rather rushes into the journey prematurely due to a lack of patience. His 'refusal' is not a rejection of the mission, but a forced hesitation following a brutal physical defeat. This reshapes the dramatic weight of the stage from a test of willpower into a test of methodology: the hero must fail his first attempt in order to realize that, despite his absolute commitment, something vital is missing from his approach." @@ -662,6 +846,8 @@ "3": { "label": "The Bat", "description": "As Bruce bleeds out in his study pleading to his father's memory for guidance, a massive bat crashes through the window. He interprets this violent natural event as a 'sign,' providing the psychological epiphany and the specific 'wisdom' needed to assume his vigilante identity.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "semiotic": { "label": "Neo-Noir Secularization", "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." @@ -670,6 +856,8 @@ "4": { "label": "The Dinner Party Ambush", "description": "Batman definitively steps 'beyond the veil of the known' by crashing a dinner party for Gotham's corrupt elite. This act represents a form of 'self-annihilation,' where Bruce Wayne kills off his former status as a harmless socialite to plunge into the mystery of his crusade. By confronting the city's power brokers, he proves he has the 'competence and courage' to operate in a zone of magnified power where ordinary rules are suspended.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold", "narrative": { "label": "The Hero as Aggressor", "rationale": "Traditionally, 'threshold guardians' are dangerous custodians who defend the boundary and wait for the hero. In a narrative reversal, Batman does not wait to be challenged. Possessing total commitment, he proactively hunts the guardians (Falcone and Loeb) in their 'inmost cave.' He doesn't seek to bypass these 'watching powers' but to dominate them, ensuring there is no turning back from his mission." @@ -682,6 +870,8 @@ "5": { "label": "The Tenement Siege", "description": "Trapped in an abandoned tenement and targeted by a police firebombing, Batman undergoes a 'plunge into an unknown darkness.' As the building collapses and Commissioner Loeb presumes him dead, Bruce experiences the symbolic death of his former self. By surviving the inferno and summoning a swarm of bats to mask his exit, he allows a new, transformed identity\u2014the urban myth of the Batman\u2014to emerge from the rubble.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "semiotic": { "label": "Neo-Noir Secularization", "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." @@ -690,6 +880,8 @@ "6": { "label": "The Distributed Road of Trials", "description": "Bruce undergoes a succession of ordeals\u2014the East End failure, the climb up the crime ladder, the Mayor's house ambush, and the tenement siege\u2014which serve to 'purify' his methods. Crucially, during these perilous conquests, he discovers the 'benign, protecting power' of Jim Gordon. Following the tenement siege, Bruce realizes that his survival was aided by the presence of a moral equal within the system, transforming Gordon from a target into the essential ally needed to survive the trials ahead.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", "sequential": { "label": "Distributed Road of Trials", "rationale": "The Road of Trials is realized as a distributed series of events, rather than a single linear stage following the Departure. This sequential overlap allows the trials to act as the catalyst for the hero's transformation while simultaneously serving as the initiatory tests of his new identity." @@ -698,6 +890,8 @@ "7": { "label": "The Encounter with Selina Kyle", "description": "Bruce encounters Selina Kyle on the rooftops. In a typical monomyth, she would represent the 'Goddess'\u2014the totality of what can be known. However, the fit is weak: Batman views her not as a mystical union or a source of bliss, but as a tactical anomaly. She 'ruins the moment' rather than bestowing mastery, proving that Bruce's heart is reserved for his mission, not for a person.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "narrative": { "label": "Goddess as Operational Interference", "rationale": "Traditionally, the Goddess is the 'reply to all desire' and the goal of the quest. In Year One, this narrative function is inverted: the Goddess (Selina) is an interference. She does not offer unconditional love or mastery; she offers a messy, rival version of his own mission. The divergence lies in the hero's reaction: Batman does not seek to 'know' or 'merge' with this figure, but rather to manage her as a tactical anomaly that threatens the purity of his sign." @@ -706,6 +900,8 @@ "8": { "label": "The Absent Temptation of the Symbol", "description": null, + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "narrative": { "label": "Archetypal Displacement to the Co-Protagonist", "rationale": "The narrative requires the tension of the Temptress stage to remain 'adult' and grounded, but Miller systematically keeps it away from Batman. The role is assigned to Gordon, whose crisis with Sarah Essen represents the 'taint of the flesh.' The 'fleshly' burden of temptation is displaced onto Jim Gordon through his affair with Sarah Essen, leaving Batman as an incorruptible sign. This displacement allows the story to satisfy the archetype while protecting the hero's status as a pure, transcendental agent of justice." @@ -718,6 +914,8 @@ "9": { "label": "The Absent Atonement of the Orphan", "description": null, + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "narrative": { "label": "Sovereignty through Loss", "rationale": "The monomyth assumes a father-figure exists to test the hero. In Year One, the total absence of a father-figure makes 'at-one-ment' structurally impossible. Bruce is a 'sovereign orphan' who answers to no one but his own trauma." @@ -726,6 +924,8 @@ "10": { "label": "The Absent Apotheosis", "description": null, + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", "narrative": { "label": "Noir Materialism Divergence", "rationale": "The monomythic Apotheosis requires a spiritual 'death of the ego.' In Miller's noir framework, the hero's ego (his trauma and his mission) is the source of his power. To lose the ego would be to lose the Batman. The narrative intentionally avoids transcendence, keeping the hero grounded in a material world of pain, corruption, and tactical reality where 'divine knowledge' has no place." @@ -734,6 +934,8 @@ "11": { "label": "The Bridge Rescue", "description": "The supreme goal of the quest is attained on a bridge. Batman saves the life of Gordon's infant son, James Jr., literally 'restoring life' to the future of Gotham. This act of selflessness secures the 'Ultimate Boon': a clandestine alliance with Jim Gordon. This partnership is the 'elixir' that brings a spark of illumination to a corrupt city, ensuring that the hero's mission can now truly begin with the support of the law.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", "semiotic": { "label": "Alliance as the Ultimate Boon", "rationale": "In classical myth, the Boon is often an object like the Holy Grail. In this grounded noir setting, the 'Grail' is semiotically shifted to a social contract: the alliance between Batman and Gordon. The 'power to restore fertility' is literalized as saving a child\u2014the city's next generation\u2014from the Roman's influence, representing a systemic victory over corruption rather than a magical one." @@ -742,6 +944,8 @@ "12": { "label": "Absent Refusal of the Return", "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -750,6 +954,8 @@ "13": { "label": "Absent Magic Flight", "description": null, + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -758,6 +964,8 @@ "14": { "label": "Absent Rescue from Without", "description": null, + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -766,6 +974,8 @@ "15": { "label": "Absent Crossing of the Return Threshold", "description": null, + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -774,6 +984,8 @@ "16": { "label": "Absent Master of Two Worlds", "description": null, + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -782,6 +994,8 @@ "17": { "label": "Absent Freedom to Live", "description": null, + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -795,15 +1009,21 @@ "stages": { "1": { "label": "Arrival in Gotham", - "description": "Gordon arrives in Gotham, viewing the transfer as a punishment. He is immediately summoned into the 'special world' of systemic corruption, meeting Commissioner Loeb and witnessing Detective Flass brutalize a teenager." + "description": "Gordon arrives in Gotham, viewing the transfer as a punishment. He is immediately summoned into the 'special world' of systemic corruption, meeting Commissioner Loeb and witnessing Detective Flass brutalize a teenager.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" }, "2": { "label": "Waiting to Report", - "description": "Gordon hesitates to act against the corruption. He rationalizes his inaction by telling himself it is 'better to wait' before reporting colleagues. Flass tells him to relax and adapt to the system, summarizing Gordon's passive survival strategy." + "description": "Gordon hesitates to act against the corruption. He rationalizes his inaction by telling himself it is 'better to wait' before reporting colleagues. Flass tells him to relax and adapt to the system, summarizing Gordon's passive survival strategy.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" }, "3": { "label": "The Absent Supernatural Aid", "description": null, + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "narrative": { "label": "Neo-Noir Isolation Divergence", "rationale": "In classical myth, the hero is reassured by a protective universe (the helper). In the Neo-Noir paradigm, the universe is indifferent or actively malignant. The narrative strips away the 'Supernatural Aid' to emphasize the hero's absolute moral and physical isolation; the honest cop must survive without a safety net." @@ -812,6 +1032,8 @@ "4": { "label": "The Beating", "description": "Gordon is ambushed and beaten by Flass and his masked men. This serves as the 'Belly of the Whale'\u2014a plunge into a life-and-death 'black moment' where Gordon is completely swallowed by the 'monster' of systemic police corruption. During this brutal ordeal, his former self (the passive, rule-abiding cop trying to survive quietly) undergoes a symbolic death and self-annihilation, setting the stage for his metamorphosis.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "sequential": { "label": "The Catalyst Inversion (Belly Before Threshold)", "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." @@ -820,6 +1042,8 @@ "5": { "label": "Beating Flass", "description": "After surviving the beating, Gordon refuses to retreat. Instead of going home, he ambushes Flass in the snow, beats him, and strips him of his weapon. By doing this, Gordon crosses the threshold from passive observer to active combatant. He leaves behind the familiar safety of playing by the rules and fully enters the brutal world of Gotham's reality.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold", "sequential": { "label": "The Catalyst Inversion (Belly Before Threshold)", "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." @@ -827,15 +1051,21 @@ }, "6": { "label": "The Honest Cop Trials", - "description": "Gordon navigates a gauntlet of trials that test his integrity and physical courage: entering a hostage situation unarmed, clashing with the violent Branden, and navigating Loeb's orders to hunt down the vigilante Batman." + "description": "Gordon navigates a gauntlet of trials that test his integrity and physical courage: entering a hostage situation unarmed, clashing with the violent Branden, and navigating Loeb's orders to hunt down the vigilante Batman.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "7": { "label": "Meeting Sarah Essen", - "description": "Gordon meets Sarah Essen, who functions as his operational and intellectual equal. She is the first to suggest Bruce Wayne might be Batman. Their connection represents a nurturing, understanding force in a city that otherwise alienates him. Within the secular, gritty confines of Gotham, Sarah Essen functions as the Neo-Noir equivalent of the 'Queen Goddess of the World.' For Gordon, who is alienated by the corrupt department, she represents the 'reply to all desire' \u2014providing the intellectual parity, moral support, and emotional understanding he desperately lacks." + "description": "Gordon meets Sarah Essen, who functions as his operational and intellectual equal. She is the first to suggest Bruce Wayne might be Batman. Their connection represents a nurturing, understanding force in a city that otherwise alienates him. Within the secular, gritty confines of Gotham, Sarah Essen functions as the Neo-Noir equivalent of the 'Queen Goddess of the World.' For Gordon, who is alienated by the corrupt department, she represents the 'reply to all desire' \u2014providing the intellectual parity, moral support, and emotional understanding he desperately lacks.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess" }, "8": { "label": "The Affair and Blackmail", "description": "The connection with Essen transforms into an extramarital affair, fulfilling the archetype of the Temptress. It is a worldly attachment that threatens to arrest the journey, filling Gordon with guilt regarding his pregnant wife and giving Commissioner Loeb the leverage needed to blackmail him.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "semiotic": { "label": "Neo-Noir Secularization", "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." @@ -844,6 +1074,8 @@ "9": { "label": "Confession and Atonement", "description": "Commissioner Loeb acts as the 'corrupt Father' of the GCPD, judging and threatening Gordon. To survive the crisis and 'abandon his attachment to his own ego', Gordon confesses his affair to his wife Barbara. By destroying his own secret, he strips the 'Father' of his power and undergoes a moral rebirth.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "semiotic": { "label": "Neo-Noir Secularization", "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." @@ -851,15 +1083,21 @@ }, "10": { "label": "The family man", - "description": "Finally free from his guilt, Gordon's son is born and for a brief moment we see him dwelling momentarily in the peaceful stage of new found fatherhood and family bliss." + "description": "Finally free from his guilt, Gordon's son is born and for a brief moment we see him dwelling momentarily in the peaceful stage of new found fatherhood and family bliss.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" }, "11": { "label": "The Bridge Alliance", - "description": "Gordon's quest culminates in a desperate chase to a bridge after his infant son is kidnapped by corrupt forces. During the struggle, his son falls but is saved by Batman. Gordon's 'Ultimate Boon' is twofold: the physical salvation of his family, and the profound realization that he is not fighting alone. By choosing to let Batman go, Gordon secures the 'elixir' of the narrative: a powerful, unspoken alliance with the Dark Knight. This partnership provides the hope and leverage necessary to finally cleanse Gotham's corrupt system." + "description": "Gordon's quest culminates in a desperate chase to a bridge after his infant son is kidnapped by corrupt forces. During the struggle, his son falls but is saved by Batman. Gordon's 'Ultimate Boon' is twofold: the physical salvation of his family, and the profound realization that he is not fighting alone. By choosing to let Batman go, Gordon secures the 'elixir' of the narrative: a powerful, unspoken alliance with the Dark Knight. This partnership provides the hope and leverage necessary to finally cleanse Gotham's corrupt system.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" }, "12": { "label": "Absent Refusal of the Return", "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -868,6 +1106,8 @@ "13": { "label": "Absent Magic Flight", "description": null, + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -876,6 +1116,8 @@ "14": { "label": "Absent Rescue from Without", "description": null, + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -884,6 +1126,8 @@ "15": { "label": "Absent Crossing of the Return Threshold", "description": null, + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -892,6 +1136,8 @@ "16": { "label": "Absent Master of Two Worlds", "description": null, + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -900,6 +1146,8 @@ "17": { "label": "Absent Freedom to Live", "description": null, + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", "narrative": { "label": "Origin Narrative Constraint", "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." @@ -918,11 +1166,15 @@ "stages": { "1": { "label": "The Oracle's Prophecy", - "description": "The Call to Adventure manifests when a young Oedipus, troubled by a drunkard's claims in Corinth that he is not the true son of King Polybus and Queen Merope, travels to the Oracle at Delphi seeking the truth about his parentage. Instead of answering his questions, the Pythia delivers a terrifying prophecy: he is destined to slay his own father and lie with his own mother. This horrifying revelation shatters his secure world, setting the tragic journey in motion." + "description": "The Call to Adventure manifests when a young Oedipus, troubled by a drunkard's claims in Corinth that he is not the true son of King Polybus and Queen Merope, travels to the Oracle at Delphi seeking the truth about his parentage. Instead of answering his questions, the Pythia delivers a terrifying prophecy: he is destined to slay his own father and lie with his own mother. This horrifying revelation shatters his secure world, setting the tragic journey in motion.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" }, "2": { "label": "Apollo's Guidance", "description": "Through the cryptic warnings of the Delphic Oracle, Apollo provides a unique form of supernatural aid. The god anchors Oedipus's destiny with the dual nature of prophecy: along with the initial curse, Apollo weaves a distant, latent promise that Oedipus will eventually find ultimate rest and holy sanctuary in a grove dedicated to the Eumenides. This fatal assurance turns his agonizing exile into a purposeful journey toward divine transfiguration.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "sequential": { "label": "Aid before Flee divergence", "rationale": "In the canonical monomyth, Supernatural Aid typically occurs as the third stage, appearing after the hero's hesitation to provide the necessary tools or assurance for the journey. In the myth of Oedipus, this sequence is displaced: the 'Aid' of Apollo's prophecy is granted at the very outset, preceding the hero's Inverted Refusal (his flight from Corinth). This displacement is critical to the tragic structure, as the divine guidance does not resolve the hero's hesitation but instead serves as the direct catalyst for his attempt to outrun his fate." @@ -931,6 +1183,8 @@ "3": { "label": "Flee from Corinth", "description": "Driven by intense fear and a moral desire to protect those he believes to be his parents, Oedipus flees Corinth immediately, vowing never to return. In attempting to proactively refuse the monstrous fate laid out by the Oracle, he directs his steps away from the safety of his foster home and heads toward Thebes. His desperate escape acts as an inverted refusal: the very act of fleeing is what delivers him directly into the path of the prophecy.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Proactive Departure divergence", "rationale": "In the Oedipus myth, the refusal of the call is subverted through a proactive moral choice. Rather than a passive retreat born of cowardice, Oedipus's refusal is an act of high-minded defiance; he flees Corinth specifically to protect those he believes are his parents. This creates a profound 'Tragic Irony' where the hero's virtuous attempt to outrun his fate becomes the very engine of its fulfillment. By physically moving away from the perceived danger, he unknowingly makes his flight both a rejection of the call and the inevitable start of the journey." @@ -938,19 +1192,27 @@ }, "4": { "label": "The Triple Crossroads", - "description": "At a place where three roads meet in Phocis, Oedipus encounters a haughty traveler traveling in a carriage. When the traveler and his retinue arrogantly attempt to force him off the road, Oedipus strikes out in a sudden, blinding rage. In the ensuing clash, he kills the old man who is unknowingly his biological father, King Laius, and all but one of his servants. This violent transgression serves as his definitive crossing into the tragic world of his destiny, as the first part of the prophecy is fulfilled" + "description": "At a place where three roads meet in Phocis, Oedipus encounters a haughty traveler traveling in a carriage. When the traveler and his retinue arrogantly attempt to force him off the road, Oedipus strikes out in a sudden, blinding rage. In the ensuing clash, he kills the old man who is unknowingly his biological father, King Laius, and all but one of his servants. This violent transgression serves as his definitive crossing into the tragic world of his destiny, as the first part of the prophecy is fulfilled", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "Riddle of the Sphinx", - "description": "Upon reaching the gates of Thebes, Oedipus confronts the Sphinx, a monstrous creature terrorizing the city with a deadly riddle. By answering her puzzle about the nature of man, he defeats the monster and liberates the city. In this transformative moment, he effectively 'dies' to his previous identity as a wandering traveler and is 'reborn' as the King of Thebes, inheriting both the throne and the hand of the widowed Queen Jocasta, hence fulfilling the second part of the prophecy." + "description": "Upon reaching the gates of Thebes, Oedipus confronts the Sphinx, a monstrous creature terrorizing the city with a deadly riddle. By answering her puzzle about the nature of man, he defeats the monster and liberates the city. In this transformative moment, he effectively 'dies' to his previous identity as a wandering traveler and is 'reborn' as the King of Thebes, inheriting both the throne and the hand of the widowed Queen Jocasta, hence fulfilling the second part of the prophecy.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" }, "6": { "label": "Search for the Regicide", - "description": "Years later, a devastating plague descends upon Thebes, sent by the gods due to the unpunished murder of the former king. Oedipus embarks on a relentless quest to identify and cast out Laius's killer to save his subjects. This investigation becomes a grueling test of his personal resolve and integrity, where every witness questioned and every clue uncovered brings him closer to the destructive truth of his own identity." + "description": "Years later, a devastating plague descends upon Thebes, sent by the gods due to the unpunished murder of the former king. Oedipus embarks on a relentless quest to identify and cast out Laius's killer to save his subjects. This investigation becomes a grueling test of his personal resolve and integrity, where every witness questioned and every clue uncovered brings him closer to the destructive truth of his own identity.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "7": { "label": "Reveal it all to me!", "description": "Seeking prophetic insight, Oedipus calls the blind seer Teiresias to the palace. Teiresias, who possesses Apollo's divine sight, is reluctant to speak out of a deep, tragic pity for the king. When his silence provokes Oedipus into furious accusations of treason and conspiracy with Creon, Teiresias finally snaps and reveals the devastating truth: Oedipus himself is the polluter and murderer of Laius.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "narrative": { "label": "Protection not Love divergence", "rationale": "This stage diverges from the traditional archetype by alterating the nature of the goddess's unconditional love. The meeting acts as a distorted encounter with divine truth, where the seer tries to protect the hero from a fatal enlightenment. The seer's care and love are expressed through a desperate protective silence, intended to shield Oedipus from his own ruin. When forced to break this silence, instead of offering comforting validation, the prophet provides the initial, painful awakening that sets the hero's true internal transformation in motion. He is the first to reveal to the hero his true identity and to confront him with reality." @@ -958,11 +1220,15 @@ }, "8": { "label": "Don't concearn yourself with prophecies!", - "description": "As Oedipus's dread intensifies, Jocasta intervenes, begging him to cease his investigation. In good faith, she tempts him to remain in comfortable ignorance to save their household. She attempts to discredit the divine by recalling a prophecy given to her late husband Laius - that he would be killed by his own son - which she wrongly believes went unfulfilled when they abandoned their infant on Mount Cithaeron. Her desperate plea represents the ultimate temptation for Oedipus to abandon his pursuit of truth in favor of his crown and safety." + "description": "As Oedipus's dread intensifies, Jocasta intervenes, begging him to cease his investigation. In good faith, she tempts him to remain in comfortable ignorance to save their household. She attempts to discredit the divine by recalling a prophecy given to her late husband Laius - that he would be killed by his own son - which she wrongly believes went unfulfilled when they abandoned their infant on Mount Cithaeron. Her desperate plea represents the ultimate temptation for Oedipus to abandon his pursuit of truth in favor of his crown and safety.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress" }, "9": { "label": "He is the regicide", "description": "Upon hearing Jocasta describe the crossroads where Laius was killed and the appearance of the old king, Oedipus is struck by a terrifying realization. The physical facts match his own dark memory of the triple crossroads, leading him to accept that he is indeed the regicide who brought the plague upon Thebes. This moment acts as a preliminary atonement where the hero confronts the shadow of the man he killed, though he does not yet realize that Laius was his true biological father.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "narrative": { "label": "Atonement with the King divergence", "rationale": "This represents a profound subversion of the traditional Atonement with the Father stage. Instead of a spiritual reconciliation or submission to parental authority, the 'atonement' is a terrifying reckoning with a violent past. The deep irony lies in the fact that Oedipus believes he is coming to terms with the murder of a total stranger to purge the city of its plague. In truth, this stranger is Laius, his biological father. Consequently, the hero undergoes an accidental confrontation with the ghost of his patricide before he even understands the blood bond between them, reversing the typical path toward healing into a descent toward destruction." @@ -971,6 +1237,8 @@ "10": { "label": "It all came true!", "description": "The arrival of a messenger from Corinth announcing the death of King Polybus initially brings relief, but it quickly shifts to horror when the messenger reveals that Polybus was not Oedipus's real father. Oedipus summons the old servant - the lone survivor of the crossroads and the same shepherd who saved him as an infant \u2014 who breaks down and confesses everything. The truth collapses upon Oedipus: he is both the murderer of Laius and his biological son, who has unknowingly shared his bed with his own mother.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", "narrative": { "label": "Tragic Enlightenment divergence", "rationale": "Oedipus subverts the traditional Apotheosis, which normally elevates the hero to a state of blissful, divine transcendence. Instead, through the testimony of the old servant, he reaches a 'tragic enlightenment.' The conquest here is purely internal; he does not achieve divine rest but rather a profound, shattering knowledge of his true self and the irrevocable realization of his fated doom." @@ -979,6 +1247,8 @@ "11": { "label": "The Self-Blinding", "description": "Upon bursting into the palace and discovering that Jocasta has hanged herself, Oedipus is overcome by a violent, agonizing despair. He tears the golden brooches from her robes and plunges them repeatedly into his own eyes, crying out that they should never again behold the horrors he has committed or look upon the children he should never have fathered. By physically destroying his sight, he isolates himself from the world he has corrupted, choosing to face the darkness of his actions in an internal reckoning that he was previously blind to.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", "narrative": { "label": "Punitive Inner Vision divergence", "rationale": "The ultimate boon in the myth of Oedpis is far from a restorative elixir for the community, as it consists in a severe, self-inflicted punishment. By blinding himself, the hero destroys his physical perception of the world to acquire a solitary 'inner sight.' Rather than bringing life or illumination to the world he leaves behind, this boon is entirely internal, solitary, and unshared." @@ -987,6 +1257,8 @@ "12": { "label": "Plea for Exile", "description": "Having accepted the absolute reality of his crimes, the blinded Oedipus refuses to stay in the city he once ruled. He stands before Creon and the assembled citizens of Thebes, explicitly demanding his immediate expulsion,to possibly free his city from the plague, as predicted by Apollo.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Proactive Exile divergence", "rationale": "The hero's departure acts as an inverted Refusal of the Return. Instead of a passive or reluctant attitude toward crossing the return threshold, Oedipus takes full initiative to leave. By begging Creon for exile, he proactively drives himself out of the world in which his internal transformation has happened and chooses to wander the wilderness. This choice is also driven by the urgent need to fulfill Apollo's prophecy, which predicted that, to save Thebes from the plague, the regicide would have had to be exiled or killed." @@ -994,19 +1266,27 @@ }, "13": { "label": "Exodus from Thebes", - "description": "Oedipus steps into the unknown, beginning a long, arduous journey as a blind outcast. In his wandering, he is pursued not by physical monsters, but by the overwhelming psychological weight of his past. For years, he roams through the wilderness, utilizing the solitude and hardship to reflect upon his tragic history, gradually transforming his suffering into spiritual wisdom." + "description": "Oedipus steps into the unknown, beginning a long, arduous journey as a blind outcast. In his wandering, he is pursued not by physical monsters, but by the overwhelming psychological weight of his past. For years, he roams through the wilderness, utilizing the solitude and hardship to reflect upon his tragic history, gradually transforming his suffering into spiritual wisdom.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" }, "14": { "label": "The Guiding Daughter", - "description": "As Oedipus's body grows weak and frail from years of wandering, his loyal daughter Antigone steps forward to serve as his primary rescuer. She walks by his side, serving as his eyes and guiding him safely across the unforgiving terrains of Greece. Her unwavering devotion provides the essential support that keeps him alive, allowing the shattered king to accept his tragic fate and continue on his fated path toward the sacred grounds of Colonus." + "description": "As Oedipus's body grows weak and frail from years of wandering, his loyal daughter Antigone steps forward to serve as his primary rescuer. She walks by his side, serving as his eyes and guiding him safely across the unforgiving terrains of Greece. Her unwavering devotion provides the essential support that keeps him alive, allowing the shattered king to accept his tragic fate and continue on his fated path toward the sacred grounds of Colonus.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" }, "15": { "label": "Arrival at the Sacred Grove of Colonus", - "description": "Oedipus finally arrives at Colonus, entering a sacred grove dedicated to the Eumenides. He recognizes this ground as the ultimate sanctuary promised to him by Apollo years before. When the local elders of Athens display horror upon discovering his identity, King Theseus steps forward and offers him unconditional sanctuary and protection. By being accepted by the noble ruler despite his horrific reputation, Oedipus successfully crosses back into a structured human society that welcomes his transformed state." + "description": "Oedipus finally arrives at Colonus, entering a sacred grove dedicated to the Eumenides. He recognizes this ground as the ultimate sanctuary promised to him by Apollo years before. When the local elders of Athens display horror upon discovering his identity, King Theseus steps forward and offers him unconditional sanctuary and protection. By being accepted by the noble ruler despite his horrific reputation, Oedipus successfully crosses back into a structured human society that welcomes his transformed state.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" }, "16": { "label": "Ismene's News from Thebes", "description": "Ismene arrives in Colonus from Thebes, serving as a second figure of rescue. She is willing to perform the necessary sacrifices to appease the Eumenides on Oedipus's behalf, to help him achieve spiritual clarity and enter the new reality of Colonus freely. However, she also brings heavy news of a catastrophic civil war brewing back home between her brothers, Eteocles and Polyneices, and warns her father that Creon is heading to Colonus to seize him for political gain.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "sequential": { "label": "Rescue after Return Threshold divergence", "rationale": "This stage represents a structural repetition and displacement of the 'Rescue from Without' archetype. While Antigone provided the initial rescue in its canonical position to sustain Oedipus during his exile, Ismene's arrival occurs retroactively after the hero has already crossed the return threshold of Colonus. Her appearance serves a dual purpose: she provides the specific ritual aid needed to navigate his new environment and introduces the 'news from Thebes' regarding the civil war. This information acts as the final narrative engine, setting into motion the conflict with Creon and Polyneices that ultimately facilitates Oedipus's transition from a mortal outcast to a divinized, sacred protector." @@ -1015,6 +1295,8 @@ "17": { "label": "Trouble from Thebes", "description": "Oedipus's fragile peace is shattered by the arrival of Creon, who uses trickery and force to kidnap both Antigone and Ismene in a desperate attempt to drag the blind hero back to the Theban border. Though King Theseus steps in and saves the daughters, the conflict deepens when Polyneices arrives. The son weeps and pleads for his father's forgiveness for his past inactions against his exile, hoping to secure Oedipus's blessing for the coming war. This intrusion prevents any serene equilibrium, highlighting his status as a man who is still pulled by the heavy gravity of his origins.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", "narrative": { "label": "Denied Mastery", "rationale": "In the Monomyth, Mastery implies a transpersonal state where the hero is at home in both worlds. Here, the 'Mastery' is negated: the world where the hero's transformation has happened, hence Thebes and its politics, aggressively seeks to weaponize the hero's spiritual status and his integration in the new 'ordinary' world, while the hero responds with fury rather than balance. This divergence shows that the hero remains a prisoner of his tragic history and of the Theban dynamics until the moment of death." @@ -1023,6 +1305,8 @@ "18": { "label": "The Transfiguration at Colonus", "description": "The hero reaches the end of his mortal journey as a sudden thunderclap echoes across the sky, and a divine voice calls out to him. Oedipus stands up and walks unaided toward a hidden, sacred point in the grove, where he simply vanishes into the earth. King Theseus is the sole witness to this mysterious passing. Through this divine death, Oedipus is finally freed from the weight of his past, transforming from a cursed exile into a holy, chthonic protector of the land that welcomed him.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", "narrative": { "label": "Freedom in Death divergence", "rationale": "This represents an 'Inverted Fit' of the final monomyth stage. While 'Freedom to Live' traditionally suggests the hero's ability to exist in the ordinary world without the fear of death, Oedipus achieves this freedom only through the act of passing away. His release from the burden of his past and the pollution of his crimes is synchronized with his physical disappearance. The irony lies in the fact that his 'freedom' is a transition from mortal suffering to a chthonic, immortal state, as he becomes free from life itself to serve as a sacred protector of the land." @@ -1042,6 +1326,8 @@ "1": { "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 1)", "description": "The Call to Adventure manifests as a psychological rupture. Justin Vernon expresses a desperate desire for an anxious 'feeling' to be gone, repeating himself three times in a way that reflects 'the nature of unrelenting intrusive thoughts'. This state of 'anxiety and desperation' serves as the summons. When he looks in the mirror and sees his reflection resembling 'some competitor', he is receiving the call to finally confront his own layered trauma.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", "semiotic": { "label": "Psychological Internalization", "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." @@ -1050,6 +1336,8 @@ "2": { "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 2)", "description": "The Refusal of the Call is explicitly voiced when Vernon admits, 'I am afraid of changing.' Faced with the 'enormity of the journey ahead'\u2014which requires him to 'check and rearrange' his mental state\u2014he hesitates ('How'm I supposed to do this now?'). The weight of what must be confronted is represented by the 'rings within rings within rings', symbolizing the astronomical, repeating layers of built-up trauma he must peel back to heal. He realizes the journey to happiness will require him to face the very things he has been trying to ignore.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "semiotic": { "label": "Psychological Internalization", "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." @@ -1058,6 +1346,8 @@ "3": { "label": "S P E Y S I D E (Verse 1-3)", "description": "Written during an isolating period in Key West, 'S P E Y S I D E' represents the deepest point of darkness. Vernon is swallowed by guilt over his 'violent spree' of self-sabotage, destroying relationships and shooting himself in the foot ('It serves to suffer, make a hole in my foot'). This is the symbolic death of his ego, reduced to 'soot', where he realizes he 'can't make good' on his own.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "sequential": { "label": "The Trauma Sequence Inversion", "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." @@ -1070,6 +1360,8 @@ "4": { "label": "S P E Y S I D E (Verse 4)", "description": "In verse 4 of 'S P E Y S I D E', the Supernatural Aid manifests not as a wizard or divine messenger, but as the grounding presence of the people he loves. While asking for forgiveness from this group of people he hurt, he hopes they can 'still make a man from me'. This belief that his loved ones can still see the beauty in him acts as the 'talisman' and psychological assurance he needs to survive the darkness and prepare for the threshold crossing.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "sequential": { "label": "The Trauma Sequence Inversion", "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." @@ -1082,6 +1374,8 @@ "5": { "label": "AWARDS SEASONS", "description": "'AWARDS SEASON' represents the Crossing of the First Threshold. The song narrates a phase of sluggish and staggering change, drawing parallels to the 'acceptance' of awards, where the award is actually personal transformation and subsequent healing. By recognizing that 'Nothing stays the same', Vernon commits to the adventure, crossing from the paralyzing guilt of his past into the unknown sphere of acceptance and recovery.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold", "sequential": { "label": "The Trauma Sequence Inversion", "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." @@ -1090,6 +1384,8 @@ "6": { "label": "SHORT STORY", "description": "In 'Short Story', the Road of Trials is realized as an inward psychological ordeal of processing pain and accepting vulnerability. Vernon realizes that his past isolation\u2014symbolized by the lyric 'That January ain't the whole world'\u2014is not the entirety of his existence, successfully transmuting the melancholy of his past. As he steps into the bright sunlight, he discovers the presence of a 'helper' through the realization that he is 'never really, really on your own'. The annotations highlight that having someone 'recognize and validate your experience' acts as a 'healing balm'. Finally, the continuous ordeal of healing is accepted; the 'strain and thirst are sweet' because they represent the essential, cyclical work of emotional purification ('Time heals, and then it repeats').", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", "semiotic": { "label": "Psychological Internalization", "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." @@ -1098,6 +1394,8 @@ "7": { "label": "Everything Is Peaceful Love", "description": "In 'Everything Is Peaceful Love', the hero encounters the archetype of the Goddess, representing the attainment of true bliss and unity. The song encapsulates 'pure joy and elation', moving past his previous somber wallowing into a state painted with 'images of unity - peace and love'. Although he initially resists the vulnerability by claiming 'I'm not slipping', he eventually surrenders with a gentle heart, blinking in disbelief but admitting he is 'right at home'. The lyric mentioning a 'burning ring' perfectly symbolizes the archetypal mystical marriage, completing his transition into a peaceful harbor.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "semiotic": { "label": "The Secular Anchor (Loved Ones as Mythic Forces)", "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." @@ -1106,6 +1404,8 @@ "8": { "label": "Walk Home", "description": "In 'Walk Home', the hero temporarily achieves the Apotheosis stage. Stripped of his ego-bound limitations, he is invited to 'shed your earthly burdens'. He is able to 'forget and share' his 'stress, anxiety and the constant motions of life', dwelling momentarily in a state of 'blissful rest'. He is so 'high on this person' that the feeling mirrors the 'happiness, shock, and excitement' of learning to walk.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", "sequential": { "label": "The 'Pink Cloud' Sequence Inversion", "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." @@ -1118,6 +1418,8 @@ "9": { "label": "Day One", "description": "In 'Day One', the hero faces the Woman as the Temptress, but the seduction is entirely internal. Following the pure bliss of the Goddess stage, Vernon is confronted with the exhausting reality of maintaining his healing ('unlearning lies' and shedding the things that 'rip you up'). The 'temptation' that threatens to arrest his journey is the seductive pull of regression\u2014the familiar, isolating comfort of his past trauma and anxiety. It is the urge to self-sabotage and return to the 'Belly of the Whale' rather than continue the difficult, transcendent work of true recovery.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "sequential": { "label": "The 'Pink Cloud' Sequence Inversion", "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." @@ -1130,6 +1432,8 @@ "10": { "label": "The Absent Atonement", "description": null, + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "narrative": { "label": "Internalized Authority Divergence", "rationale": "In classical mythology, the hero's ego-death is triggered by an encounter with a terrifying Father-figure. In modern psychological narratives, this external projection is stripped away. The hero's battle is entirely with the Shadow (their own reflection) and the Temptress (the urge to regress). Because the hero acts as their own ultimate judge and punisher (as seen in the guilt of 'S P E Y S I D E'), an external 'Atonement' stage is rendered narratively obsolete; reconciliation must be achieved through self-forgiveness rather than cosmic approval." @@ -1138,6 +1442,8 @@ "11": { "label": "From (Verse 1-2)", "description": "In 'From', Vernon attains the Ultimate Boon of his psychological journey: restored emotional capacity. Having survived his trials and self-sabotage, he declares, 'Nothing's really wrong so / From now on'. The 'elixir' he has gained is the ability to finally hold space for someone else, telling his partner, 'I got time, I can give you some' and 'Give me your worry'. This represents the power to restore illumination to his world, transforming him from a person consumed by his own trauma into a source of healing for another.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", "semiotic": { "label": "Psychological Internalization", "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." @@ -1146,6 +1452,8 @@ "12": { "label": "From (Bridge and Chorus)", "description": "Alongside the Boon, 'From' simultaneously expresses a gentle Refusal of the Return. Having found a state where 'Nothing's really wrong', Vernon exhibits a reluctance to move forward into the mundane world or face the inevitable changes of the future. Lyrics like 'We can just keep it here for now' and 'Can I take another year?' demonstrate his desire to cling to this realm of blissful discovery and delay the passage of time.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "The Gentle Refusal", "rationale": "Typically, the Refusal of the Return is an active rebellion against returning to humanity. Here, it is a much gentler, understandable psychological reaction. After years of suffering, the hero simply wants to press pause ('We can just keep it here for now') to savor his hard-won peace before facing whatever comes next." @@ -1154,6 +1462,8 @@ "13": { "label": "I'll be there (Verse 1-2)", "description": "In the verses of 'I'll Be There', the hero navigates the Magic Flight. Rather than fleeing physical pursuers, Vernon is fleeing the threat of mental regression as he attempts to return to ordinary life. He actively tests his newly won transformation by coaching himself to endure: 'Don't you dare go down / Tape the polaroid to your dome / Keep the sad shit off the phone'. The command to 'get your fine ass on the road' represents the active, perilous push forward to maintain his healing.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "semiotic": { "label": "Psychological Internalization", "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." @@ -1162,6 +1472,8 @@ "14": { "label": "I'll be there (Chorus)", "description": "Because the hero exhibited a Refusal of the Return in the previous track, he requires a Rescue from Without to pull him fully back into human society. This is structurally realized through the song's chorus, sung by a guest vocalist (Danielle Haim) representing the partner. Her repeated assurances \u2014 'I'll be there / I won't move / Tell me more, or tell me nothing' \u2014 act as the external tether reaching across the threshold, drawing the exhausted traveler safely home.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "semiotic": { "label": "The Secular Anchor (Loved Ones as Mythic Forces)", "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." @@ -1170,6 +1482,8 @@ "15": { "label": "If only i could wait", "description": "'If Only I Could Wait' perfectly embodies the Crossing of the Return Threshold. The hero is stepping out of his isolated, timeless sanctuary (the cabin) to re-enter the ordinary world by moving to California, but he is terrified of the impact. Vernon questions his ability to survive the transition, asking, 'Can I incur the weight? / Am I really this afraid now?'. The duet functions as 'a bilateral crying question' representing the agonizing effort to hold onto the 'boon' of their newfound love amidst the uncertainty, distance, and decay of the real world ('We'll decay in other ways now').", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", "semiotic": { "label": "The Geographical Threshold (Distance and Decay)", "rationale": "In myth, the Return Threshold often involves crossing a physical boundary back into the mortal realm, where magic fades. In this autobiographical narrative, the threshold is both geographical (moving from Wisconsin to California) and relational. The 'magic' that threatens to fade is the blissful, effortless love of the Goddess/Apotheosis stage, which must now survive the mundane, corrosive elements of time, distance, and emotional 'decay'." @@ -1178,6 +1492,8 @@ "16": { "label": "There's a Rhythm (Verse 1-2)", "description": "In the first two verses of 'There's A Rhythmn', Vernon achieves the Master of the Two Worlds stage. The 'two worlds' are geographically and emotionally represented as his dark, isolated past in Wisconsin ('the snow') and his bright, connected future in California ('a land of palm and gold'). By asking 'Or are less and more the same?' and recognizing that 'There's a rhythmn to reclaim', he achieves a psychological equilibrium. He holds both realities simultaneously, finding harmony ('rhythmn') between his past trauma and his present healing.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", "semiotic": { "label": "Psychological Internalization", "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." @@ -1186,6 +1502,8 @@ "17": { "label": "There's a Rhythm (Verse 3)", "description": "The album's lyrical climax in verse 3 perfectly embodies the Freedom to Live. Released from the paralyzing anxiety and 'shame' that defined the beginning of his journey, Vernon lives fully in the present moment. He declares, 'Ya know I've really no more shame / Now things really are arranged', proving he has finally conquered the fear of change that initiated his Refusal of the Call. His focus shifts outward to pure connection ('Cause you really are a babe'), acting as a conduit for love without attachment to the guilt of his past.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", "semiotic": { "label": "Psychological Internalization", "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." @@ -1205,6 +1523,8 @@ "1": { "label": "I hate California", "description": "The protagonist manifests a visceral disdain for her Sacramento context, viewing it as a cultural desert. On a drive with her mother, she expresses her desire to move to the East Coast, where she believes 'culture is,' by applying to prestigious universities. This setting of an external goal marks the beginning of her quest for a life beyond her current socioeconomic and geographic boundaries.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", "narrative": { "label": "Inward Call divergence", "rationale": "In this stage, the 'call' does not originate from an external herald or messenger as typically described by Campbell. Instead, it is an 'inward call' born of the protagonist's own discontent and ambition. The adventure is self-initiated, shifting the heroic catalyst from destiny or external necessity to personal agency and the internal desire for social and cultural transformation." @@ -1213,6 +1533,8 @@ "2": { "label": "My name is Lady Bird", "description": "Instead of hesitating or clinging to her past, Christine aggressively rebrands herself as 'Lady Bird,' a name she proudly declares was given to her 'to me, by me.' In scenes such as her audition for the school musical and her introductions to new peers, she treats this self-naming as a non-negotiable decree. This act is an aggressive embrace of her own transformation, where she attempts to shed her ordinary-world identity entirely before she has even left her geographic home.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Active Departure from Identity divergence", "rationale": "In the opening of the movie, Lady Bird inverts the traditional hero's hesitation. She does not refuse the journey due to fear or a desire for safety; she forces the journey into existence by demanding the world recognize her as the person she intends to become. Her refusal is not of the journey, but of her current self and socioeconomic status. Hence, she isn't afraid of the transformation; she is so desperate for it that she tries to inhabit its persona prematurely to bypass the discomfort of her current reality." @@ -1221,6 +1543,8 @@ "3": { "label": "The Scholarships' Aid", "description": "In a meeting in Sister Sarah Joan's office, Lady Bird confesses her desire to attend a 'city' school on the East Coast. While her mother dismisses these dreams as financially impossible, the nun offers a quiet form of empowerment by assuring Lady Bird that financial aid and scholarships are viable paths. This conversation provides the protagonist with the necessary hope of institutional support to continue her journey of self-realization.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "semiotic": { "label": "Bureaucratic Aid divergence", "rationale": "In this modern coming-of-age narrative, the 'supernatural' is entirely secularized and replaced by the bureaucratic hope of financial aid. The divergence lies in the shift from a mystical gift to an institutional mechanism; scholarships act as the 'magic' required to transcend socioeconomic boundaries. By framing a loan application or a grant as the hero's supernatural assistance, the film highlights how social mobility serves as the modern equivalent of divine or magical intervention." @@ -1228,19 +1552,27 @@ }, "4": { "label": "Applying to East Coast schools", - "description": "The threshold is crossed through the definitive act of submitting her applications. After a sequence highlighting the secret collaboration with her father, Lady Bird moves beyond mere dreaming to take concrete, logistical steps toward the East Coast. This scene represents her formal commitment to a future of her own making; by mailing the forms, she effectively leaves the safety of her mother's worldview and enters the uncertain world of her future and own potential." + "description": "The threshold is crossed through the definitive act of submitting her applications. After a sequence highlighting the secret collaboration with her father, Lady Bird moves beyond mere dreaming to take concrete, logistical steps toward the East Coast. This scene represents her formal commitment to a future of her own making; by mailing the forms, she effectively leaves the safety of her mother's worldview and enters the uncertain world of her future and own potential.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "I'll figure it out", - "description": "\"After the applications are sent, Lady Bird tries growing up by finding herself and her passions. She throws herself into the school musical, trying on a new personality to see if it fits. By joining theater and waiting for college letters, she is swallowed up by the \"what if\" of her future. It is a messy, quiet time where her childhood self starts fading away, leaving her in the dark until she can figure out who she is supposed to be next." + "description": "\"After the applications are sent, Lady Bird tries growing up by finding herself and her passions. She throws herself into the school musical, trying on a new personality to see if it fits. By joining theater and waiting for college letters, she is swallowed up by the \"what if\" of her future. It is a messy, quiet time where her childhood self starts fading away, leaving her in the dark until she can figure out who she is supposed to be next.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" }, "6": { "label": "The Growing Pains", - "description": "Lady Bird faces a series of messy emotional tests that strip away her naive ideas about romance and status. Her first boyfriend Danny's secret of being gay, her father's job loss, the continous fights with her mother, and her unfulfilling sexual experience with Kyle all force her to confront a reality that doesn't care about her 'Lady Bird' persona. By betraying her best friend Julie to fit in with Jenna, she experiences the guilt of social climbing. These characters act as 'Threshold Guardians' who don't just stand in her way, but actively participate in her growth by forcing her to deal with the consequences of her choices and actions." + "description": "Lady Bird faces a series of messy emotional tests that strip away her naive ideas about romance and status. Her first boyfriend Danny's secret of being gay, her father's job loss, the continous fights with her mother, and her unfulfilling sexual experience with Kyle all force her to confront a reality that doesn't care about her 'Lady Bird' persona. By betraying her best friend Julie to fit in with Jenna, she experiences the guilt of social climbing. These characters act as 'Threshold Guardians' who don't just stand in her way, but actively participate in her growth by forcing her to deal with the consequences of her choices and actions.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "7": { "label": "Dad's Help", "description": "At night in her bedroom, Larry brings Lady Bird the financial aid paperwork he has been helping her with in secret. Despite his own struggle with clinical depression and the heavy weight of his unemployment, he chooses to set aside his own pain to focus entirely on her future. By validating her ambitions while her mother dismisses them, Larry offers her a profound sense of being 'seen' and loved without conditions, which she currenly cannot find in her mother.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "semiotic": { "label": "Goddess as Paternal Love divergence", "rationale": "This divergence replaces the 'Goddess', traditionally a source of mystical love, with the very real, flawed, and quiet support of a father. The power of the scene isn't in a magical blessing, but in the fact that Larry is struggling himself, yet chooses to empower his daughter's future in secret. It shifts the 'encounter' from the supernatural to a grounded act of family solidarity, where a simple letter of financial aid becomes the ultimate proof that the hero is worthy of her own ambitions." @@ -1249,6 +1581,8 @@ "8": { "label": "Whatever we give you is never enough!", "description": "In a brutal confrontation after discovering the secret applications, the tension between mother and daughter peaks. When Lady Bird demands Marion to give her a number so she can eventually pay her back for the cost of raising her and never speak to her again, Marion retorts, 'I highly doubt you'll ever get a job good enough to do that.' Fueled by a mix of rage and the fear of her daughter's ungratefulness, Marion says things she likely doesn't believe. She projects her own lower-middle-class cynicism onto Lady Bird, unconsciously trying to convince her that she will never become the person she hopes to be, effectively trying to kill the hero's ambition before she can even leave.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "narrative": { "label": "Woman as Underestimator divergence", "rationale": "This divergence replaces the 'Temptress', traditionally a distraction of the flesh, with an 'Underestimator' who uses psychological discouragement. Marion doesn't try tempting Lady Bird away from her journey with any trick or seduction ; she tries to hold her back with the weight of reality. Because she is angry at the secrecy and exhausted by their socioeconomic standing, she unwillingly tries to put the heroine down. The temptation here transforms into the dangerous pull to believe the mother's negative projection and accept a life of smallness, abandoning the journey to avoid the sting of maternal disapproval." @@ -1256,19 +1590,27 @@ }, "9": { "label": "Added to Waitlist", - "description": "After some time waiting, Lady Bird receives a letter stating she is on the waitlist for a New York university, turning her dream into a tangible possibility. The domestic pressure also lifts slightly as her brother Miguel finds a job and she ultimately leaves Kyle's 'cool' crowd to go to prom with Julie. As the two friends dance together, Lady Bird experiences a state of peaceful clarity, finally shedding her social pretenses and reclaiming the friendships that actually matter." + "description": "After some time waiting, Lady Bird receives a letter stating she is on the waitlist for a New York university, turning her dream into a tangible possibility. The domestic pressure also lifts slightly as her brother Miguel finds a job and she ultimately leaves Kyle's 'cool' crowd to go to prom with Julie. As the two friends dance together, Lady Bird experiences a state of peaceful clarity, finally shedding her social pretenses and reclaiming the friendships that actually matter.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" }, "10": { "label": "I'm 18!", - "description": "Christine's long-sought goal is finally realized through a rapid succession of milestones. Upon turning eighteen, she immediately exercises her newfound agency by buying a lottery ticket and a magazine, followed quickly by passing her driving test, a concrete symbol of her ability to move through the world without her mother's supervision. With her high school graduation behind her and the official news of her acceptance into a New York university, she achieves the legal and physical freedom she has craved. These scenes mark the moment she is no longer just dreaming of a future; she is actively stepping into it, ready to leave Sacramento behind and finally begin the process of growing up on her own terms." + "description": "Christine's long-sought goal is finally realized through a rapid succession of milestones. Upon turning eighteen, she immediately exercises her newfound agency by buying a lottery ticket and a magazine, followed quickly by passing her driving test, a concrete symbol of her ability to move through the world without her mother's supervision. With her high school graduation behind her and the official news of her acceptance into a New York university, she achieves the legal and physical freedom she has craved. These scenes mark the moment she is no longer just dreaming of a future; she is actively stepping into it, ready to leave Sacramento behind and finally begin the process of growing up on her own terms.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" }, "11": { "label": "Moving to New York City", - "description": "The 'flight' begins with a tense car ride to the airport where Marion remains stubbornly silent, refusing to look at her daughter. After a tearful goodbye with her father, Lady Bird walks through security alone, leaving her mother behind in the car. The sequence captures the literal move across the country to New York, but the emotional weight comes from the unresolved conflict; while Lady Bird is flying toward her new life, the camera stays with Marion as she regrets her silence and desperately circles back to the terminal, too late to say goodbye. This literal journey signifies for Christine the final rupture from her childhood home." + "description": "The 'flight' begins with a tense car ride to the airport where Marion remains stubbornly silent, refusing to look at her daughter. After a tearful goodbye with her father, Lady Bird walks through security alone, leaving her mother behind in the car. The sequence captures the literal move across the country to New York, but the emotional weight comes from the unresolved conflict; while Lady Bird is flying toward her new life, the camera stays with Marion as she regrets her silence and desperately circles back to the terminal, too late to say goodbye. This literal journey signifies for Christine the final rupture from her childhood home.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" }, "12": { "label": "I wish you liked me", "description": "While unpacking in New York, Christine finds a stack of crumpled, discarded letters from her mother to her that Larry had secretly tucked into her suitcase. Reading Marion's struggling attempts to express her pride and love, Christine finally looks past the years of fights to see the deep, fearful care underneath. This provides a retroactive reconciliation, as she understands her mother's harshness was born of fear and love. This realization allows her to forgive the maternal authority she spent years resisting, effectively finding peace with the woman who shaped her.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "sequential": { "label": "The Atonement After the Flight divergence", "rationale": "Unlike traditional structures where atonement happens at the journey's peak before the flight and the return, Christine requires physical distance, hence her moving accross the country, to achieve clarity. She must leave Sacramento to truly see it. In this narrative, the heroine needs geographical separation for emotional reconciliation with her mother, and subsequently her origins." @@ -1281,6 +1623,8 @@ "13": { "label": "My name is Christine", "description": "At her first college party in New York, a stranger asks the heroine for her name. Instead of using her rebellious 'Lady Bird' title, she now simply responds: 'My name is Christine.' This marks the total shedding of her teenage persona. Having reached her goal and found internal peace, she no longer needs to perform a fake version of herself to prove her independence. She is finally ready to embrace and actively return to the identity she once tried so hard to escape from.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Active Return to Identity divergence", "rationale": "While the classical hero might refuse to return to their ordinary world, Christine willingly 'returns' to her true self. This stage acts as an inversion of the 'departure from identity' sequence seen at the beginning of the film. Now that she has achieved distance from Sacramento, she is ironically more connected to her roots than ever. By choosing the name 'Christine' and recanting 'Lady Bird', she signals that she is ready to reconcile with her ordinary world self, accepting her history and heritage as part of her adult identity." @@ -1292,19 +1636,27 @@ }, "14": { "label": "Sunday Mess in NYC", - "description": "After a night of partying, Christine wanders around the streets of NYC and ends up into a Presbyterian church on a Sunday morning. As she listens to the choir, she is visibly moved to tears; the music and the ritual provide a profound sensory link to her upbringing in Sacramento. Though she spent years despising the constraints of her Catholic school and the mundane nature of church-going, the familiarity of the service now acts as an anchor. This moment of grace provides her the emotional catalyst she needs to finally reach out to home." + "description": "After a night of partying, Christine wanders around the streets of NYC and ends up into a Presbyterian church on a Sunday morning. As she listens to the choir, she is visibly moved to tears; the music and the ritual provide a profound sensory link to her upbringing in Sacramento. Though she spent years despising the constraints of her Catholic school and the mundane nature of church-going, the familiarity of the service now acts as an anchor. This moment of grace provides her the emotional catalyst she needs to finally reach out to home.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" }, "15": { "label": "Calling Home", - "description": "Right outside of the church, Christine picks up the phone and calls home, leaving a voice message for her parents. This is the moment she bridges the gap between her new world (NYC) and her old world (Sacramento), crossing the threshold back into a relationship with her Californian roots and with her family, on her own terms as an adult. This act signifies her mature return to her origins, acknowledging that her mother's presence and her hometown's landscape are inseparable parts of who she has become." + "description": "Right outside of the church, Christine picks up the phone and calls home, leaving a voice message for her parents. This is the moment she bridges the gap between her new world (NYC) and her old world (Sacramento), crossing the threshold back into a relationship with her Californian roots and with her family, on her own terms as an adult. This act signifies her mature return to her origins, acknowledging that her mother's presence and her hometown's landscape are inseparable parts of who she has become.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" }, "16": { "label": "Did you feel emotional the first time you drove in Sacramento?", - "description": "In her voicemail, Christine shares with her mother the memory of driving through Sacramento for the first time, a moment she couldn't share with her when it happened because the two weren't speaking. By emotionally describing the new-found specific beauty of her hometown while standing on a New York sidewalk, she effectively brings one world into the other. She achieves an equilibrium and holds both realms simultaneously, valuing her roots precisely because she now has the distance to see them clearly in her new life stage." + "description": "In her voicemail, Christine shares with her mother the memory of driving through Sacramento for the first time, a moment she couldn't share with her when it happened because the two weren't speaking. By emotionally describing the new-found specific beauty of her hometown while standing on a New York sidewalk, she effectively brings one world into the other. She achieves an equilibrium and holds both realms simultaneously, valuing her roots precisely because she now has the distance to see them clearly in her new life stage.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" }, "17": { "label": "Thank you", - "description": "The voicemail and the journey conclude with a simple, resonant 'Thank you', signaling Christine's release from the combative ego of her adolescent identity, which had been the core of her journey. She is no longer a hero in flight from her origins, but an adult existing fully in the present, recognizing her parents' sacrifices as the quiet, vital infrastructure of her own life. This gratitude is what allows her to live freely now, in a new reality but with a clear heart." + "description": "The voicemail and the journey conclude with a simple, resonant 'Thank you', signaling Christine's release from the combative ego of her adolescent identity, which had been the core of her journey. She is no longer a hero in flight from her origins, but an adult existing fully in the present, recognizing her parents' sacrifices as the quiet, vital infrastructure of her own life. This gratitude is what allows her to live freely now, in a new reality but with a clear heart.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } } @@ -1320,6 +1672,8 @@ "1": { "label": "The storm on the Libyan coast", "description": "Juno persuades Aeolus to unleash the winds upon the fleet, and a black squall closes over the survivors of seven years of wandering. Ships are scattered, men and oars float on the waves, and the wreckage of what remained of Troy is dispersed across the unknown sea. Aeneas is washed onto an unfamiliar African shore with a handful of companions, ignorant of his location, ignorant of his queen, possessed of nothing but the household gods he salvaged from the burning city and the bare instruction that some western kingdom is owed to him. The Trojan identity, already eroded by years of homelessness, is here finally extinguished as a public reality, and the figure who emerges from the shore is reduced to a single function: that of the survivor charged with a beginning he cannot yet imagine.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "sequential": { "label": "In medias res opening divergence", "rationale": "The poem begins inside the swallowing-darkness stage itself, at narrative position one, with all preparatory content delivered analeptically through Aeneas's recollection in the Carthaginian books. The dissolution-of-self is presented as a starting condition rather than a culminating one, displaced four positions earlier than its canonical fifth-place location, and the cascading consequence is that the stages which should precede it must surface afterward, transforming the Refusal of the Call, the Temptress, the Call itself, and the First Threshold into a sequence delivered in scrambled order through the first six books. The opening choice is the foundational structural gesture from which the rest of the Departure's reordering follows, the Homeric inheritance of the in-medias-res protocol producing a monomyth realization whose canonical sequence is recoverable only by reading against the narrative grain. What the canonical archetype treats as a five-stage progression toward the swallowing is here treated as a single dissolution given immediately, with the preparatory architecture reconstructed from the hero's own memory rather than narrated as it occurs." @@ -1327,11 +1681,15 @@ }, "2": { "label": "A second Troy rising from the sand", - "description": "In Carthage Aeneas finds a city in the act of becoming what his own people had been: walls rising under disciplined hands, a queen of remarkable competence, laws being framed at this very moment for a polity not yet finished. He is welcomed at her hearth, honoured at her banquet, and eventually pulled into her bed and her project. The mission westward recedes from view as the founding work he had been promised in Italy appears to be available, under different patronage, in this very harbour. He puts on Tyrian purple, oversees the construction of towers that are not his to raise, and lets the months accumulate without remarking on their accumulation. The hesitation here is not articulated as refusal but enacted as substitution, the fated city traded for the convenient one and the divine charge silenced beneath the daily ceremonies of an adopted court." + "description": "In Carthage Aeneas finds a city in the act of becoming what his own people had been: walls rising under disciplined hands, a queen of remarkable competence, laws being framed at this very moment for a polity not yet finished. He is welcomed at her hearth, honoured at her banquet, and eventually pulled into her bed and her project. The mission westward recedes from view as the founding work he had been promised in Italy appears to be available, under different patronage, in this very harbour. He puts on Tyrian purple, oversees the construction of towers that are not his to raise, and lets the months accumulate without remarking on their accumulation. The hesitation here is not articulated as refusal but enacted as substitution, the fated city traded for the convenient one and the divine charge silenced beneath the daily ceremonies of an adopted court.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" }, "3": { "label": "The cave and the pyre", "description": "During a hunting expedition a sudden storm drives the queen and the Trojan into the same cave, where, with Juno presiding and Earth and the nymphs as witnesses, their union is consummated under conditions Dido takes to be a wedding. From that day she ceases to disguise the relation, calls Aeneas her husband in public, and consigns the construction of her city to suspension. The seduction operates at every register at once: erotic, political, dynastic, domestic. Aeneas is offered not merely a lover but a queen, not merely a queen but a kingdom, not merely a kingdom but a finished destiny that requires no further travelling. When the divine command finally arrives and he prepares his ships in secret, Dido moves through the stages of fury, supplication, and curse, ending on the pyre with the sword he had left behind, and the smoke of her burning is the last sight Carthage offers the departing fleet.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "sequential": { "label": "Temptation precedes call divergence", "rationale": "The temptation surfaces at narrative position three, before the Call has been articulated as binding mandate, displacing the Temptress five positions earlier than its canonical mid-Initiation placement. The structural consequence is decisive: the seduction operates not as an obstacle late in the journey but as an alternative founding offered before the true founding has been firmly accepted, and the hero's vulnerability to it is intensified by the fact that no unambiguous summons has yet recalled him from the option Carthage represents. The positioning explains the unusual force the Dido episode commands within the realization. It is the test that nearly succeeds, the stage that almost replaces the journey rather than merely interrupting it, and the trauma it leaves in the hero shapes every subsequent act precisely because it occurred before the call had been delivered with the authority that would have made resistance unambiguous. Where the canonical archetype tests a hero already committed, this realization tests a hero not yet committed, and the dramatic asymmetry is decisive for everything that follows." @@ -1340,6 +1698,8 @@ "4": { "label": "Italiam non sponte sequor", "description": "Mercury descends through the air with his caduceus and his winged sandals and finds Aeneas in Tyrian dress overseeing the works of a city that is not his. The messenger speaks plainly: the destined kingdom is Italy, the heir whose patrimony is being squandered is Iulus, the queen at whose side the hero stands has no claim on a man whose obligation runs to unborn generations and to a foundation Jupiter has already named. The command is unconditional and delivered in the imperative. Aeneas hears it in shock, and within the same book begins the preparations to sail. When confronted by Dido in the celebrated exchange that follows, his self-defence will be that he does not seek Italy of his own will, that the journey is required of him by powers he can neither refuse nor reinterpret. The summons that the entire opening had been gathering toward, half-named through Hector's ghost on Troy's last night, partially disclosed by the Penates, prefigured by Creusa, arrives here in unmistakable form.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", "narrative": { "label": "Gathered and doubled call divergence", "rationale": "The summons in this poem is distributed across multiple anticipations and only finalized late, the canonical archetype's discrete opening rupture replaced by a long process of accumulating mandate. Hector's ghost on Troy's last night charges Aeneas with carrying the household gods to a new city without naming the city; the Penates speak in dream of Hesperia without specifying its terms; Creusa's shade prophesies a western kingdom and a royal bride without binding the hero to any timetable; Helenus elaborates the geography in Book III without commanding obedience. Mercury's intervention in Carthage is therefore not the announcement of a new mission but the gathering of a long anticipatory chain into a binding directive. The poem's call functions partly as memory and partly as repetition, the journey having been summoned several times before the summons becomes unavoidable, and the hero having been told what awaits him long before he is told that he must unconditionally pursue it. The dramatic weight rests not on the novelty of the message but on the moment when its accumulated authority becomes inescapable, the reluctant founder finally cornered by a mandate that has been forming around him since the night his city fell." @@ -1351,15 +1711,21 @@ }, "5": { "label": "Loosing the cables", - "description": "The Trojan ships are made ready under cover of preparation rather than under public proclamation, and at the appointed hour the cables are cut and the fleet slips from the Carthaginian harbour while the queen is still asleep. At dawn she sees the empty roadstead, hurls her final imprecation against the departing sails, and ascends the pyre. The crossing here is not a heroic step into a marked threshold but a quiet severing accomplished while the abandoned world is unconscious of the loss. Behind the ships the smoke of Dido's burning rises and is absorbed by the African horizon, the cost of the threshold paid in another life entirely. Ahead lies the open Mediterranean and the final passage toward the prophesied coast, the harbour not yet known but committed to without further hesitation." + "description": "The Trojan ships are made ready under cover of preparation rather than under public proclamation, and at the appointed hour the cables are cut and the fleet slips from the Carthaginian harbour while the queen is still asleep. At dawn she sees the empty roadstead, hurls her final imprecation against the departing sails, and ascends the pyre. The crossing here is not a heroic step into a marked threshold but a quiet severing accomplished while the abandoned world is unconscious of the loss. Behind the ships the smoke of Dido's burning rises and is absorbed by the African horizon, the cost of the threshold paid in another life entirely. Ahead lies the open Mediterranean and the final passage toward the prophesied coast, the harbour not yet known but committed to without further hesitation.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "6": { "label": "Games and the helmsman lost", - "description": "The fleet returns to Sicily for the anniversary of Anchises's death, and Aeneas presides over funeral games of ship-races, foot-races, archery, and boxing in honour of the buried father, exercises in collective memory that strengthen the band of survivors even as Trojan women, despairing of the endless journey, are incited by Juno to set fire to the ships. Some are saved by Jupiter's rain, others lost; the weak and the unwilling are settled at Acesta and the company that continues is the company prepared to finish the crossing. On the final night the helmsman Palinurus is taken by Sleep and falls into the sea, the fleet's pilot drowned within sight of Italy, the cost of arrival paid in the body of the most experienced navigator. The ordeals of this stage are concentrated and incidental rather than serial and structural, the fleet having already exhausted most of its heroic-test material in the analeptic narration of Books II and III." + "description": "The fleet returns to Sicily for the anniversary of Anchises's death, and Aeneas presides over funeral games of ship-races, foot-races, archery, and boxing in honour of the buried father, exercises in collective memory that strengthen the band of survivors even as Trojan women, despairing of the endless journey, are incited by Juno to set fire to the ships. Some are saved by Jupiter's rain, others lost; the weak and the unwilling are settled at Acesta and the company that continues is the company prepared to finish the crossing. On the final night the helmsman Palinurus is taken by Sleep and falls into the sea, the fleet's pilot drowned within sight of Italy, the cost of arrival paid in the body of the most experienced navigator. The ordeals of this stage are concentrated and incidental rather than serial and structural, the fleet having already exhausted most of its heroic-test material in the analeptic narration of Books II and III.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "7": { "label": "Facilis descensus Averno", "description": "At Cumae the Sibyl receives Aeneas in the cavern of the hundred mouths, possessed by Apollo, and lays out the conditions of the descent: the golden bough that must be plucked from a hidden tree if the underworld is to be entered and survived, the unburied companion who must be found and given proper rites before the threshold can be crossed, the sacrifices to Hecate that prepare the night journey. She articulates the foundational principle of the catabasis in the line that gives the moment its weight, that the descent to Avernus is easy and the return is the labour. When the bough is found and the rites completed, she takes Aeneas through the entrance to the underworld and walks beside him through every register of the dead, naming the shades, intervening with Charon and Cerberus, mediating each encounter with the precise authority of one who knows the geography no living traveller can know unaided. Without her presence the journey would be impossible at every stage of its unfolding.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "sequential": { "label": "Aid after trials divergence", "rationale": "The Sibyl's intervention arrives at narrative position seven, well after the First Threshold has been crossed and the Road of Trials undertaken, and her aid is preparation for a specific subsequent ordeal, the catabasis, rather than an opening endowment for the journey at large. The displacement of four positions later than the canonical third-place position reflects this realization's distinctive treatment of the supernatural register: the most concentrated divine mediation is reserved for the central revelation rather than for the journey's commencement, which is supported instead by Venus's recurring intercession and by the prophetic voices that gather toward the Call. The Sibyl's late arrival positions her not as the equipping mentor of the Departure but as the threshold figure of the Initiation's deepest passage, her aid concentrated at the moment where the underworld's discoveries will reorganize everything that has come before. The canonical archetype's opening endowment is here split into the diffuse divine care of the early books and the precise priestly mediation of the underworld." @@ -1368,6 +1734,8 @@ "8": { "label": "The fields of mourning and beyond", "description": "The descent winds through the regions of the dead in widening circuits, past the unburied at the Stygian shore, past the souls of children and the falsely condemned, into the fields of mourning where Dido's shade turns from him in silence and refuses to hear his explanation. Beyond these come the warriors, friends and enemies of Troy alike, and finally the gates of Tartarus glimpsed but not entered. The path opens at last into the luminous valley of Elysium, where Anchises stands in the green meadows surveying the souls awaiting their next embodiment. The reunion is not a confrontation. The father weeps with joy at the son's arrival, embraces a form that cannot be embraced, and welcomes Aeneas not as a delinquent who must justify his life but as the inheritor of the cosmological vision the dead are now in a position to share. Across the river of forgetfulness, surrounded by the souls of those not yet born, Anchises gathers his son into a teaching that the upper world has no standpoint from which to deliver.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "sequential": { "label": "Initiation block shift divergence", "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." @@ -1380,6 +1748,8 @@ "9": { "label": "The soul-fields and the doctrine of return", "description": "Standing in the meadows beyond Lethe, Anchises explains the cosmic order to his son: a world-soul animating sky and earth and sea, an inner fire diffused through every body, the encumbrance of flesh that clouds the spirit's native clarity, the long purification by which souls are scoured of their accumulated stains and prepared again for embodied life. The teaching is delivered as philosophy rather than as vision, but it functions for the hero as a momentary release from the categories that have governed his existence: the wandering exile who must reach a coast becomes briefly the participant in a metaphysical structure that includes his coast, his city, and his death within a single vast economy of return. The ego-bound figure who arrived at the underworld's mouth is, in this passage, dissolved into a cosmological standpoint from which his own labour appears as one element in a pattern that does not depend on him for its intelligibility.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", "sequential": { "label": "Initiation block shift divergence", "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." @@ -1388,6 +1758,8 @@ "10": { "label": "The parade of Roman souls", "description": "Anchises leads his son to a vantage from which the procession of unborn souls can be reviewed, and names them one by one: the Alban kings descending from Iulus, Romulus the wolf-suckled founder, the Caesars, Augustus himself extending an empire that will reach beyond the Garamantes and the Indians, Numa with his laws, the Brutuses, the Gracchi, the Scipios, the long line of Roman virtue. The catalogue closes with Marcellus, the recently dead heir whose shade is acknowledged with a tenderness that breaks the imperial register. The boon Aeneas carries out of the underworld is neither object nor power but knowledge of the future for whose sake the present labour is undertaken: the certainty that his exile is the seed of an order that will measure itself against the orbits of the stars. He returns to the upper world transformed by knowing what his hardships are knowable as, and the journey from this point forward proceeds under that disclosure.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", "sequential": { "label": "Initiation block shift divergence", "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." @@ -1396,6 +1768,8 @@ "11": { "label": "This is the land", "description": "The fleet rounds the Italian coast and turns into the mouth of the Tiber, where the river runs yellow with sand and forest crowds the banks. The Trojans go ashore and prepare a meal on flat cakes of bread used as plates, and Iulus laughingly remarks that they are eating their tables. The harmless joke fulfils, in the same instant of its utterance, an oracle Aeneas had received and feared, that the journey would end where hunger drove the company to consume even the platters their food rested on. The recognition cascades immediately into the ceremonial gesture of arrival: Aeneas embraces the soil, calls upon the local divinities and the Earth itself, and acknowledges that the prophesied terminus has been reached. That night the river god Tiberinus rises in vision and confirms the arrival, instructing the founder upstream to seek the Arcadian alliance. The threshold has been crossed not into a familiar homeland but into the prophesied future the underworld disclosed, and the return is therefore a return to a place the hero has never been, recognized as home only because the gods have named it so.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", "sequential": { "label": "Early return threshold divergence", "rationale": "The fleet rounds the Italian coast and turns into the mouth of the Tiber at narrative position eleven, immediately after the Ultimate Boon and well before the three Return-act stages that should canonically precede this threshold. The displacement of four positions earlier than the fifteenth-place canonical location reflects this foundation narrative's distinctive shape: the hero arrives at his fated terminus not after a long Return through obstacles but as the immediate consequence of having received the disclosed future, and the bulk of the canonical Return content is then replayed inside the Latin war that occupies the second half. The Refusal, the Magic Flight, and the Rescue all surface within Books VII to XII rather than between the underworld and the threshold, the architecture braiding the late-Return stages into the long campaign rather than placing them sequentially before arrival. The canonical sequence of Return preliminaries is preserved in content but folded into the post-arrival war rather than presented as the path that leads to it." @@ -1404,6 +1778,8 @@ "12": { "label": "The foreign bridegroom foretold", "description": "At the Latin court an oracle has already declared that the princess Lavinia must not marry within her own people but is destined for a foreign son-in-law from whose line will descend a glory that will lift their name to the stars. The omen has been confirmed by the burning of her hair before the altar, a flame that consumed the diadem without injuring the girl, prophesying that she would shine in renown and bring war upon the people. When the Trojan embassy arrives Latinus recognizes in Aeneas the foreigner the prophecy named, and offers his daughter without negotiation. The bride herself never speaks. Her presence is registered through the gold of her hair lit by the omen-fire, through her mother's tears at the proposed match, through the catalogue of suitors she has refused. The encounter that fulfils the goddess function is therefore conducted around her rather than with her, the integrative power of the feminine carried by prophecy and dynastic fact rather than by the relational mediation a spoken meeting would provide.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "narrative": { "label": "Dispersed goddess divergence", "rationale": "No single feminine encounter in this poem performs the full range of mediation the canonical archetype concentrates in one figure, and the goddess function is instead distributed across three. Venus carries the protective and intercessory dimension as recurring divine mother, intervening at the storm, on the Libyan shore in disguise, before Olympus in advocacy, at the wound in Book XII, but never offering the sustained encounter of unconditional recognition the stage requires. Creusa's ghost in Book II delivers the prophecy of the western kingdom and the royal bride and releases Aeneas from the bond of their marriage in a moment of luminous tenderness, but she is recounted analeptically rather than encountered in the poem's present, and her function is closed before the journey proper begins. Lavinia carries the formal slot, the prophesied bride at whose silent centre the dynastic future is gathered, but she does not speak and her significance is articulated entirely through omen and prophecy. The integrative work of the archetype is accomplished, but only by reading the three figures together as a single distributed presence whose components occupy different registers of mediation." @@ -1420,6 +1796,8 @@ "13": { "label": "The grief that stalls the campaign", "description": "The body of Pallas is laid out on a bier of oak and strawberry-tree boughs and sent back to Pallanteum with an honour-guard of Trojan and Etruscan warriors. Aeneas stands beside the youth he had taken under his protection and weeps, lifting up the funeral garments Dido had once woven for him as gifts and folding them over the dead boy. The grief is not a brief dramatic pause but a gravitational drag on the entire campaign: the foundational work of settling the new kingdom is suspended in mourning, and the founder who had carried his prophesied future out of the underworld is briefly arrested by the human cost of acquiring it. The language attached to him in these books takes on a heaviness incompatible with forward motion. Only the structural necessity of the war forces the campaign to resume, and even then the resumption proceeds under the shadow of an obligation to Pallas's father that the founder cannot discharge by founding alone.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Refusal as cost of founding divergence", "rationale": "The canonical reluctance arises from having tasted transcendence and preferring to remain in the special world rather than carry its boon back to the ordinary one. This poem locates the hesitation elsewhere entirely: in the founder's grief at the body of the young ally whose death has been required to advance the founding labour. Pallas's corpse, lifted onto the bier of oak boughs and sent back to Pallanteum with the funeral garments Dido had once woven, focuses the entire weight of the founding cost into a single image. The hero is not reluctant to leave the underworld's bliss, an experience whose transformative effect he in fact welcomes; he is arrested by the recognition that the prophesied future the underworld disclosed is being purchased at a price he had not understood when he accepted the disclosure. The Refusal here is not anti-transitional but conscience-bearing, the founder forced to acknowledge what the imperium already costs before it has even been established." @@ -1428,6 +1806,8 @@ "14": { "label": "The shield and the Etruscan fleet", "description": "Aeneas sails up the Tiber to Pallanteum, the Arcadian settlement on the future site of Rome, and is received by Evander with hospitality and instruction. Venus delivers to him at Pallanteum the shield her husband Vulcan has forged at her request, its surface engraved with the entire future of the city he is fated to seed: the wolf-suckled twins, the Sabine women, Horatius at the bridge, Catiline in Tartarus, the battle of Actium with Augustus on the prow. With Pallas at his side and the shield slung at his back, Aeneas leads the Etruscan fleet downstream toward the besieged Trojan camp, the river journey transformed into a passage between two registers of his founding labour, the disclosed past-future strapped to his arm and the urgent present awaiting at the camp's wall. The flight here is not from a special world's guardians but toward the embattled camp with the means of its rescue.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", "narrative": { "label": "Flight as relief mission divergence", "rationale": "The canonical figure escapes the special world bearing a stolen or won prize, often pursued by guardians who would reclaim it. The Tiber voyage with the Etruscan fleet inverts the directional logic at every register. The pursuit, if it can be called that, points the wrong way: the founder is not fleeing toward safety but advancing toward an embattled camp that requires his urgent return. The prize, the shield Vulcan has forged with the future of Rome on its surface, has been freely given by the divine mother rather than seized from any guardian. The companions on the voyage, Pallas at his side and the Etruscan allies in the ships behind, are recruits rather than pursuers, and the river itself functions as a passage of arrival rather than escape. What the canonical archetype reads as flight here reads as relief expedition, the hero traversing between two fronts of his founding labour with the disclosed pattern of his city's future strapped to his arm and his obligation to the besieged community pulling him forward into combat." @@ -1435,15 +1815,21 @@ }, "15": { "label": "The mother and the dittany", - "description": "In the climactic phase of the war Aeneas is struck by an arrow whose source remains unknown, and the wound resists every effort of the surgeon Iapyx to extract the iron. The campaign falters at his absence from the line, and the Italian forces press forward into the Trojan defences. Venus, watching from above, gathers dittany from the slopes of Mount Ida and infuses it secretly into the water with which the wound is being washed. The arrow loosens of its own accord and falls into the surgeon's hand, the pain departs, and the founder returns to the field with his strength restored. The intervention is not announced to him; Iapyx recognizes the divine signature in the unaccountable cure and tells him to take up his arms. Without this concealed maternal action at the moment when his body had failed, the war would have ended in Trojan defeat and the founding labour would have been lost in its final phase." + "description": "In the climactic phase of the war Aeneas is struck by an arrow whose source remains unknown, and the wound resists every effort of the surgeon Iapyx to extract the iron. The campaign falters at his absence from the line, and the Italian forces press forward into the Trojan defences. Venus, watching from above, gathers dittany from the slopes of Mount Ida and infuses it secretly into the water with which the wound is being washed. The arrow loosens of its own accord and falls into the surgeon's hand, the pain departs, and the founder returns to the field with his strength restored. The intervention is not announced to him; Iapyx recognizes the divine signature in the unaccountable cure and tells him to take up his arms. Without this concealed maternal action at the moment when his body had failed, the war would have ended in Trojan defeat and the founding labour would have been lost in its final phase.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" }, "16": { "label": "The imperium bestowed", - "description": "Across the long Latin campaign the founder operates with authority in two registers simultaneously, the heir of fallen Troy and the father-in-waiting of an Italian dynasty, commanding Trojan and Etruscan and Arcadian forces under a single banner whose legitimacy rests on inherited destiny and on the new oracle Latinus has accepted. The treaty proposed before the climactic duel formalizes the dual sovereignty: if Aeneas wins, Trojans and Italians shall fuse, sharing rites and laws under his rule, neither absorbing the other but blended into a population whose name will become Roman. The shield Vulcan made for him, depicting events centuries beyond the founder's own life, is the visible token of this mastery, the founder carrying on his arm a record of the world that issues from his act, the labour at the threshold and the imperium beyond it held in single grasp. The integration is not yet enjoyed but it is established, the architecture of the dual inheritance set in place even as the final violence remains to be done." + "description": "Across the long Latin campaign the founder operates with authority in two registers simultaneously, the heir of fallen Troy and the father-in-waiting of an Italian dynasty, commanding Trojan and Etruscan and Arcadian forces under a single banner whose legitimacy rests on inherited destiny and on the new oracle Latinus has accepted. The treaty proposed before the climactic duel formalizes the dual sovereignty: if Aeneas wins, Trojans and Italians shall fuse, sharing rites and laws under his rule, neither absorbing the other but blended into a population whose name will become Roman. The shield Vulcan made for him, depicting events centuries beyond the founder's own life, is the visible token of this mastery, the founder carrying on his arm a record of the world that issues from his act, the labour at the threshold and the imperium beyond it held in single grasp. The integration is not yet enjoyed but it is established, the architecture of the dual inheritance set in place even as the final violence remains to be done.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" }, "17": { "label": "The belt of Pallas and the buried blade", "description": "The duel ends with Turnus disarmed, wounded in the thigh, and on his knees before the founder, conceding the victory and asking either to live or to be returned to his father in death. Aeneas hesitates. The plea is reasonable, the war is concluded, the prophesied marriage is secured, and for a moment the sword stays. Then his eye falls on the sword-belt of Pallas slung across the Rutulian's shoulder as a trophy, the gold studs and the worked figures of the slain bridegrooms recognizable in an instant, and the memory of the boy laid out on the bier of oak boughs returns with full force. The founder is described as kindled by furies and terrible in his anger, and he drives the sword into the chest of the kneeling man with a curse, the soul of Turnus fleeing groaning and indignant beneath the shades. There is no marriage, no city raised, no settled reign, no peace surveyed from a position of equilibrium. The closing gesture is of unmastered passion executing a justice that the founder's earlier conduct had already learned to suspect, and the silence after the killing settles over a battlefield that nothing in the act has finished resolving.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", "narrative": { "label": "Freedom as rage divergence", "rationale": "Aeneas has Turnus disarmed and kneeling, the war effectively concluded and the prophesied marriage secured, and the sword stays for a moment that the text marks as a hesitation. The decision that follows is explicitly attributed to fury kindled by the sight of Pallas's belt, and the closing line tracks the soul of the slain man fleeing groaning beneath the shades. The reversal of canonical signature is precise rather than approximate: where the archetypal closure releases the hero from fear of death and from attachment to outcome, this closure binds the founder to a debt of vengeance that overwrites every other consideration in the final instant. The poem knows what closure looks like, having delivered it with extraordinary fullness in Anchises's vision in Book VI, and the choice to end here, with this gesture, withholds the canonical resolution rather than failing to reach it. The reading that registers this withholding as inversion rather than as absence honours the deliberateness of the closural strategy, the founding act left visibly contaminated by the passion that completes it, and the question of what kind of imperium emerges from such an origin left as a structural opening rather than a resolved theme." @@ -1462,11 +1848,15 @@ "stages": { "1": { "label": "The boy without a fairy", - "description": "Link is the only child in Kokiri Forest without a guardian fairy, an absence that marks him as incomplete among his own people. The Great Deku Tree, dying from a curse placed by Ganondorf, sends the fairy Navi to summon Link to his side. The call arrives as both gift and burden: receiving Navi grants Link the belonging he has always lacked, but the summons leads directly into the Deku Tree's cursed interior and the revelation that dark forces threaten far beyond the forest." + "description": "Link is the only child in Kokiri Forest without a guardian fairy, an absence that marks him as incomplete among his own people. The Great Deku Tree, dying from a curse placed by Ganondorf, sends the fairy Navi to summon Link to his side. The call arrives as both gift and burden: receiving Navi grants Link the belonging he has always lacked, but the summons leads directly into the Deku Tree's cursed interior and the revelation that dark forces threaten far beyond the forest.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" }, "2": { "label": "The hero does not hesitate", "description": null, + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Absent refusal divergence", "rationale": "Link moves from call to action without psychological resistance. The Kokiri child who has yearned for a fairy receives one and immediately answers the summons. Mido's physical blockade at the forest path requires obtaining a sword and shield, but this functions as a mechanical gate rather than an expression of the hero's doubt or fear. The narrative's opening invests in spatial wonder rather than existential hesitation, reflecting a design where the child protagonist's eagerness is the point: in a world where Link has always been the outsider, the call is the first moment of belonging, and refusing it would contradict everything the character has silently endured." @@ -1474,15 +1864,21 @@ }, "3": { "label": "The future depends upon thee", - "description": "The Great Deku Tree, having been cleansed of the parasitic curse by Link, knows the effort has come too late to save him. With his final words he entrusts Link with the Kokiri Emerald, the first of three Spiritual Stones, and charges him to seek Princess Zelda at Hyrule Castle. Navi remains as a permanent companion, a living gift of guidance that will persist long after the guardian who dispatched her has withered to a hollow stump." + "description": "The Great Deku Tree, having been cleansed of the parasitic curse by Link, knows the effort has come too late to save him. With his final words he entrusts Link with the Kokiri Emerald, the first of three Spiritual Stones, and charges him to seek Princess Zelda at Hyrule Castle. Navi remains as a permanent companion, a living gift of guidance that will persist long after the guardian who dispatched her has withered to a hollow stump.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid" }, "4": { "label": "Beyond the forest", - "description": "Link crosses the log bridge at the edge of Kokiri Forest, where Saria is waiting. She gives him her Fairy Ocarina as a parting gift and says goodbye, knowing he will not return as the same person. The Kokiri believe that any of their kind who leaves the forest will die. Link steps off the bridge into Hyrule Field and the world opens around him, vast and exposed, the sheltering canopy replaced by open sky." + "description": "Link crosses the log bridge at the edge of Kokiri Forest, where Saria is waiting. She gives him her Fairy Ocarina as a parting gift and says goodbye, knowing he will not return as the same person. The Kokiri believe that any of their kind who leaves the forest will die. Link steps off the bridge into Hyrule Field and the world opens around him, vast and exposed, the sheltering canopy replaced by open sky.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "5": { "label": "A fairy and a green stone", "description": "Link sneaks through the castle grounds and peers through a courtyard window to find Princess Zelda, who has been expecting him. She describes a prophetic dream: darkness engulfing Hyrule, and a figure from the forest bearing a fairy and a green stone appearing as a ray of light. Recognizing Link as that figure, she reveals Ganondorf's treachery and entrusts Link with the mission to collect the remaining Spiritual Stones before the Gerudo king can reach the Sacred Realm. Impa, Zelda's guardian, escorts Link safely out of the castle and teaches him Zelda's Lullaby, a melody that will open doors sealed by royal authority.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "sequential": { "label": "Goddess before trials divergence", "rationale": "The encounter with the luminous feminine arrives before the trials rather than after them. Zelda appears in the castle courtyard almost immediately after Link enters Hyrule, making her the figure who defines and authorizes the quest rather than the one who greets the hero at its midpoint. By placing the prophetic princess at the journey's outset, the narrative establishes her as the quest-giver whose vision the hero must validate through subsequent action, transforming the encounter from a moment of earned transcendence into one of commission, and shifting its function from culmination to catalyst." @@ -1491,6 +1887,8 @@ "6": { "label": "Stones and sages", "description": "As a child, Link ventures into Dodongo's Cavern beneath Death Mountain and into the belly of Lord Jabu-Jabu in Zora's Domain, earning the Goron Ruby and Zora's Sapphire to complement the Kokiri Emerald. Each trial demands new skills and yields an alliance with a people whose champion will later become a sage. After the seven-year seal, Link awakens as an adult and the trials deepen: the Forest Temple reclaims Saria as the Sage of Forest, the Fire Temple frees Darunia, the Water Temple rescues Ruto, the Shadow Temple liberates Impa, and the Spirit Temple awakens Nabooru. The trials bifurcate across the temporal divide, with childhood tests of resourcefulness giving way to adult confrontations with corruption, loss, and the consequences of Ganondorf's seven-year reign.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", "narrative": { "label": "Bifurcated trials divergence", "rationale": "Link's trials divide across a temporal rupture that fundamentally alters their character and stakes. The child phase presents three dungeon quests to gather Spiritual Stones, each testing courage and resourcefulness within a familiar Hyrule. The seven-year seal then intervenes, and when trials resume, the hero is physically transformed, the kingdom corrupted, and each temple now demands the awakening of a sage whose power is needed to confront Ganondorf. The two phases share a structural function but differ in tone, difficulty, and narrative weight: preparation in the first, genuine confrontation with darkness in the second. This bifurcation creates a developmental arc within what is formally a single stage, turning it into a before-and-after portrait of the same hero measured against the same world at different scales of maturity and peril." @@ -1499,6 +1897,8 @@ "7": { "label": "Seven lost years", "description": "Link places the three Spiritual Stones on the altar of the Temple of Time and plays the Song of Time on the Ocarina. The Door of Time opens, revealing the Master Sword in its pedestal. He draws the blade and the Sacred Realm swallows him whole. His body is too young to bear the sword's power, so the chamber seals him in enchanted sleep for seven years. When he awakens in the Chamber of Sages, Rauru greets a young man who went to sleep as a child. The boy who pulled the sword is gone; the adult who opens his eyes has no memory of the passage, only its result. Hyrule outside has fallen to Ganondorf, who entered the Sacred Realm through the door Link unwittingly opened for him.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "sequential": { "label": "Engulfment amid trials divergence", "rationale": "The symbolic death and rebirth arrives not at the close of the departure act but embedded within the trials themselves, splitting them into two distinct halves. Link pulls the Master Sword after completing the child-era dungeon sequence, and the seven-year seal that follows constitutes the engulfment at the heart of this archetype. By placing it midway through the trials rather than before them, the narrative creates a structural hinge: everything before the seal is preparation undertaken in innocence, everything after is confrontation undertaken with knowledge of what has been lost. The displacement turns a threshold between acts into a pivot within the central act itself." @@ -1507,6 +1907,8 @@ "8": { "label": "A quest without temptation", "description": null, + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "narrative": { "label": "Absent temptress divergence", "rationale": "The quest offers no sustained moment of temptation, seduction, or invitation to abandon the journey for comfort or desire. Lon Lon Ranch and its pastoral tranquility present the closest structural candidate, yet Malon functions as a friend rather than a figure of dangerous attraction, and the ranch remains an optional interlude rather than a narrative test of resolve. The absence reflects both the protagonist's youth and the narrative's design: Link is a child thrust into responsibility without the psychological complexity that temptation requires, and even as an adult his single-mindedness is presented as a virtue rather than a limitation to be tested. The stage's function finds no purchase in a narrative where the ordinary world has been destroyed and no comfortable alternative remains to lure the hero away from his path." @@ -1515,6 +1917,8 @@ "9": { "label": "You are not a Kokiri", "description": "After completing the Forest Temple and returning to Kokiri Forest, Link finds a young sapling growing where the Great Deku Tree once stood. The Deku Tree Sprout greets him and reveals what the original guardian never told him: Link is not Kokiri but Hylian, brought to the forest as an infant by his wounded mother during a great war and entrusted to the Deku Tree's care before she died. The deepest truth about who he is arrives not as a test of worthiness but as a quiet disclosure, offered by the gentle successor to a dead guardian.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "narrative": { "label": "Revelation rather than confrontation divergence", "rationale": "Link's encounter with the father archetype arrives as passive disclosure rather than active confrontation. The Deku Tree Sprout simply tells Link what has always been true: he is Hylian, not Kokiri, placed in the forest as an infant by his dying mother during a great war and entrusted to the guardian tree's care. There is no dramatic standoff, no test of worthiness imposed by a paternal authority, no crisis of submission or defiance. The deepest truth about the hero's identity is delivered gently by a sapling grown where a great tree once stood, lending the moment an elegiac quality that substitutes quiet grief for the awe and terror that typically mark this stage. The father figure itself has already died; what remains is not authority but memory, and the reckoning is less a confrontation with power than an acceptance of orphanhood." @@ -1522,15 +1926,21 @@ }, "10": { "label": "The seventh sage", - "description": "With all five temple sages awakened, Sheik summons Link to the Temple of Time and reveals herself as Princess Zelda, the seventh and final sage. She confirms Link's identity as the Hero of Time and explains the full structure of the Triforce, which split upon Ganondorf's touch: Courage chose Link, Wisdom chose Zelda, and Power remained with Ganondorf. The hero's destiny, scattered across seven years of fragmented revelation, crystallizes into a single coherent picture. Link stands in the temple as the fully recognized bearer of the Triforce of Courage, his role no longer prophesied but declared." + "description": "With all five temple sages awakened, Sheik summons Link to the Temple of Time and reveals herself as Princess Zelda, the seventh and final sage. She confirms Link's identity as the Hero of Time and explains the full structure of the Triforce, which split upon Ganondorf's touch: Courage chose Link, Wisdom chose Zelda, and Power remained with Ganondorf. The hero's destiny, scattered across seven years of fragmented revelation, crystallizes into a single coherent picture. Link stands in the temple as the fully recognized bearer of the Triforce of Courage, his role no longer prophesied but declared.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" }, "11": { "label": "The light arrows", - "description": "Zelda bestows the Light Arrows upon Link, the sacred weapon capable of piercing Ganondorf's dark power. The gift is immediate and urgent: moments after the transfer, Ganondorf encases Zelda in a crystal prison and takes her to his tower, transforming the boon's delivery into the precipitating act of the final confrontation. The six sages channel their combined power to create a rainbow bridge spanning the chasm to Ganondorf's fortress, opening the path that only the fully equipped hero can walk." + "description": "Zelda bestows the Light Arrows upon Link, the sacred weapon capable of piercing Ganondorf's dark power. The gift is immediate and urgent: moments after the transfer, Ganondorf encases Zelda in a crystal prison and takes her to his tower, transforming the boon's delivery into the precipitating act of the final confrontation. The six sages channel their combined power to create a rainbow bridge spanning the chasm to Ganondorf's fortress, opening the path that only the fully equipped hero can walk.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" }, "12": { "label": "The hero presses on", "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "narrative": { "label": "Absent return refusal divergence", "rationale": "Link transitions directly from defeating Ganon to the sages' sealing ritual without hesitation or reluctance to leave the special world behind. The narrative's momentum carries the hero forward through castle collapse and final confrontation without pause, and the decision to return is ultimately made for Link by Zelda rather than by him, removing the psychological space where reluctance could arise. The absence is structurally reinforced by the medium itself: after the climactic battle, control shifts to cutscene and the hero's agency is temporarily suspended precisely when the archetype would expect an internal reckoning with the prospect of return." @@ -1538,15 +1948,21 @@ }, "13": { "label": "The tower comes down", - "description": "Ganondorf is defeated atop his tower but triggers its collapse with his final act of spite. Link and Zelda race downward through crumbling corridors, Zelda using her power to unseal iron barriers while the structure disintegrates around them. Flames, falling stone, and reanimated guardians block the descent. They emerge at the base moments before the tower crashes into rubble, only to hear something stir beneath the wreckage: Ganondorf, drawing on the Triforce of Power, transforms into the monstrous Ganon and rises from the ruins for a final confrontation." + "description": "Ganondorf is defeated atop his tower but triggers its collapse with his final act of spite. Link and Zelda race downward through crumbling corridors, Zelda using her power to unseal iron barriers while the structure disintegrates around them. Flames, falling stone, and reanimated guardians block the descent. They emerge at the base moments before the tower crashes into rubble, only to hear something stir beneath the wreckage: Ganondorf, drawing on the Triforce of Power, transforms into the monstrous Ganon and rises from the ruins for a final confrontation.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" }, "14": { "label": "Six sages as one", - "description": "Link drives the Master Sword into Ganon's skull and Zelda channels the power of the six awakened sages to bind him. Together they seal Ganondorf into the Sacred Realm, a prison sustained not by the hero's strength alone but by a collective sacred authority that no single warrior could supply. Ganondorf, raging against the seal, swears to break free and destroy their descendants, but the binding holds." + "description": "Link drives the Master Sword into Ganon's skull and Zelda channels the power of the six awakened sages to bind him. Together they seal Ganondorf into the Sacred Realm, a prison sustained not by the hero's strength alone but by a collective sacred authority that no single warrior could supply. Ganondorf, raging against the seal, swears to break free and destroy their descendants, but the binding holds.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" }, "15": { "label": "Lay the Master Sword to rest", "description": "Zelda takes back the Ocarina of Time and plays the Song of Time to send Link back to his childhood, closing the circle that opened when he first drew the Master Sword. The adult world dissolves around him. Link returns to the Temple of Time as a child, the sword resting again in its pedestal, Navi departing through a window into light. He stands alone in the temple, carrying the memory of a future that has been unmade.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", "semiotic": { "label": "Temporal return threshold divergence", "rationale": "The return threshold is crossed through time rather than space. Zelda uses the Ocarina of Time to send Link backward seven years, dissolving the boundary between his adult heroic identity and his childhood self. Where the archetype envisions a hero physically re-entering the ordinary world carrying new wisdom, this narrative achieves the return by rewinding the world itself around the hero, making the threshold a temporal membrane rather than a spatial border. The semiotic shift has profound consequences: the hero does not bring wisdom back to a waiting community, because the community never experienced the crisis from which he saved them. The sign of return looks identical to the sign of departure, a child standing in a courtyard, but its meaning has been wholly transformed by what only the hero remembers." @@ -1555,6 +1971,8 @@ "16": { "label": "Child and hero", "description": "Link has traversed both the child era and the adult era, the ordinary Hyrule and the Sacred Realm, carrying within a small body the experiential knowledge of a completed hero's journey. Yet the mastery is entirely private. The adult timeline has been erased, the people he saved do not remember being saved, and the two worlds he bridged now exist only in his memory. He walks through Hyrule Castle Town as a child among children, unrecognized and unrecognizable.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", "narrative": { "label": "Private mastery divergence", "rationale": "The hero has genuinely traversed both temporal worlds and the Sacred Realm between them, yet the time-travel return erases the public dimension of that mastery. In the restored child timeline, no one witnessed Link's adult deeds, the sages were never awakened, and the kingdom never fell. Link possesses experiential knowledge of both eras but cannot demonstrate, share, or leverage it. This transforms the archetype from a state of demonstrated dual-world fluency into an entirely interior condition: the hero masters two worlds that no longer coexist, making the mastery real but invisible, a private achievement that the surrounding community has no framework to recognize or validate." @@ -1563,6 +1981,8 @@ "17": { "label": "Through the courtyard window", "description": "Link walks through the castle grounds and peers through the courtyard window to find Zelda again, exactly as he did at the journey's beginning, before any of it happened. She turns and sees a boy with a fairy and a green stone. Whether she recognizes him, whether the meeting will unfold differently this time, the narrative does not say. The ending mirrors the opening almost exactly, but the symmetry is deceptive: one of the two figures standing in that courtyard carries the weight of an entire erased future, and the other does not yet know there is anything to carry.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", "narrative": { "label": "Bittersweet freedom divergence", "rationale": "Zelda restores Link's childhood, but the gift carries an unresolved weight. The hero returns to a moment before the quest began, standing again before the princess, yet he carries within him the memory of a future now erased: friendships forged in temples, battles survived, a world saved that will never know it needed saving. The freedom is genuine in that Link has been released from the burden of the Hero of Time, but it is shadowed by a loneliness that the narrative acknowledges without resolving. Rather than the serene transcendence or liberated purposefulness that typically marks this stage, the ending offers a more melancholy reading: the hero's reward is the chance to live an ordinary life whose full meaning only he will ever understand." @@ -1581,11 +2001,15 @@ "stages": { "1": { "label": "Carried away from Albracca", - "description": "During the chaos of war around Albracca, Ruggiero loses control of the Hippogriff and is violently carried away through the sky into unknown territories. This forced displacement abruptly tears him out of the ordinary rhythm of martial conflict and introduces him into Ariosto's wider universe of enchantment, wandering, and destiny." + "description": "During the chaos of war around Albracca, Ruggiero loses control of the Hippogriff and is violently carried away through the sky into unknown territories. This forced displacement abruptly tears him out of the ordinary rhythm of martial conflict and introduces him into Ariosto's wider universe of enchantment, wandering, and destiny.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" }, "2": { "label": "Enchanted Delays", "description": "Rather than explicitly refusing his destiny, Ruggiero repeatedly becomes suspended inside enchanted systems designed to delay or dissolve his heroic development. His captivity within Alcina's island of pleasure and Atlante's illusory palace traps him in cycles of forgetfulness, sensual distraction, and temporal stagnation. These recurring detours function as a fragmented refusal in which the hero continually postpones the irreversible transformation awaiting him.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", "narrative": { "label": "Dispersed Refusal divergence", "rationale": "Instead of presenting a single moment of hesitation immediately following the call, Ariosto disperses the refusal across multiple enchanted episodes that collectively suspend the hero's destiny. Ruggiero does not consciously reject transformation; rather, he repeatedly forgets, postpones, or loses sight of it within systems of magical distraction. The divergence replaces Campbell's concentrated psychological hesitation with a cyclical structure of narrative delay that mirrors the poem's recursive and labyrinthine form." @@ -1594,6 +2018,8 @@ "3": { "label": "Alcina's Seduction", "description": "Within Alcina's enchanted island where the Hippogryph deposits him, Ruggiero abandons martial honor and heroic purpose to live in sensual luxury under the spell of the sorceress. The enchantress reduces the hero to a passive object of pleasure, isolating him from memory, duty, and destiny while concealing the monstrous reality beneath her seductive beauty. Here, erotic enchantment itself becomes the mechanism threatening to erase the hero's transformative path.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", "sequential": { "label": "Temptress before Trials divergence", "rationale": "In Campbell's canonical sequence, Woman as the Temptress appears late in the Initiation act, after the hero has already undergone trials and encountered the Goddess. In Orlando Furioso, however, the Alcina episode occurs almost immediately after the Call to Adventure, before Ruggiero has achieved any heroic stability or encountered Bradamante. Ariosto deliberately inverts the sequence so that the hero's first encounter with the feminine is seductive dissolution rather than spiritual fulfillment, portraying Ruggiero as a hero initially trapped in enchantment and dependent on external rescue rather than earned mastery." @@ -1602,6 +2028,8 @@ "4": { "label": "Melissa's Ring", "description": "Disguised as the magician Atlante, Melissa approaches Ruggiero inside Alcina's enchanted domain and delivers the magic ring capable of dispelling every illusion. Through this supernatural object, the hero suddenly perceives the horrifying truth behind the island's beauty and recovers the capacity for autonomous judgment. The ring functions as the quintessential Campbellian talisman: a magical aid that allows the hero to pierce deception and continue the journey toward his destined transformation.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", "sequential": { "label": "Aid after Temptation divergence", "rationale": "In Campbell's monomyth, Supernatural Aid appears before the hero's trials, preparing him for the journey ahead. In Orlando Furioso, however, Melissa's intervention arrives only after Ruggiero has already fallen into Alcina's enchantment and enacted a prolonged refusal of destiny. The aid therefore functions not as preparation but as rescue: the magic ring becomes a remedy for collapse rather than a tool for future trials, but it allows the hero to resume the journey to his transformation." @@ -1609,11 +2037,15 @@ }, "5": { "label": "Departure from Logistilla", - "description": "After escaping Alcina's island, Ruggiero reaches the rational and disciplined realm of Logistilla, where he receives instruction regarding virtue, self-control, and destiny and also learns to control the Hippogryph. His departure from this protected environment marks the decisive threshold crossing into Ariosto's unstable world of wandering adventures, martial tests, and dynastic responsibility. The hero leaves behind passive enchantment and begins acting within the larger historical movement of the poem." + "description": "After escaping Alcina's island, Ruggiero reaches the rational and disciplined realm of Logistilla, where he receives instruction regarding virtue, self-control, and destiny and also learns to control the Hippogryph. His departure from this protected environment marks the decisive threshold crossing into Ariosto's unstable world of wandering adventures, martial tests, and dynastic responsibility. The hero leaves behind passive enchantment and begins acting within the larger historical movement of the poem.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" }, "6": { "label": "Atlante's Palace", "description": "Inside Atlante's enchanted palace, knights endlessly pursue phantoms corresponding to their deepest desires while losing all stable orientation and identity. Ruggiero enters the palace having glimpsed an apparition of Bradamante within its corridors, and loses himself entirely in the labyrinth of his own longing. The hero becomes absorbed into this closed system of illusion where time, purpose, and heroic progress collapse into repetition. The palace functions as a symbolic dissolution of the self, temporarily swallowing the hero inside a magical labyrinth from which genuine transformation can occur only through escape and disillusionment.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", "narrative": { "label": "Paternal Imprisonment divergence", "rationale": "The Belly of the Whale is usually an impersonal abyss initiating the hero into symbolic death. In Orlando Furioso, however, Atlante's enchanted palace is a paternal prison built out of protective love rather than cosmic fate or malice. Ruggiero's symbolic death therefore becomes psychological rather than cosmic: he must free himself not from an external darkness but from the foster-father's protective control that has shaped and confined his identity since childhood." @@ -1622,6 +2054,8 @@ "7": { "label": "Breaking from Atlante", "description": "Ruggiero's relationship with Atlante is defined by the tension between loving protection and spiritual imprisonment. The magician repeatedly attempts to shield the hero from his prophesied death by enclosing him inside magical systems that prevent maturity, conversion, and marriage. The atonement occurs when Ruggiero ultimately escapes Atlante's authority, accepting the risks of destiny rather than remaining suspended within paternal control and illusion.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", "sequential": { "label": "Atonement before Trials divergence", "rationale": "Typically, the Atonement with the Father stage typically serves as the spiritual climax of the Initiation act, occurring after the hero has been tempered and purified by the Road of Trials. As for Ruggiero's journey, his confrontation with Atlante's paternal authority \u2014 and the subsequent dissolution of the magician's protective enchantments \u2014 occurs early in the narrative sequence. This break from the father figure acts as a prerequisite that enables the 'Wandering Adventures' to begin, rather than being the reward for completing them. Ariosto thus reorders the sequence so that the hero's liberation from paternal control is the starting point of his independent knightly development rather than its final initiation." @@ -1629,11 +2063,15 @@ }, "8": { "label": "Wandering Adventures", - "description": "Astolfo frees Ruggiero from Atlante's castle and the hero's journey can start again. Across dozens of cantos, Ruggiero passes through an immense series of duels, rescues, voyages, magical confrontations, and knightly ordeals dispersed throughout Ariosto's fragmented narrative structure. Each episode tests a different aspect of his identity: martial courage, loyalty, erotic discipline, and spiritual direction. Rather than forming a linear sequence, these trials accumulate through interruption and narrative suspension, gradually constructing the hero's readiness for dynastic and religious transformation." + "description": "Astolfo frees Ruggiero from Atlante's castle and the hero's journey can start again. Across dozens of cantos, Ruggiero passes through an immense series of duels, rescues, voyages, magical confrontations, and knightly ordeals dispersed throughout Ariosto's fragmented narrative structure. Each episode tests a different aspect of his identity: martial courage, loyalty, erotic discipline, and spiritual direction. Rather than forming a linear sequence, these trials accumulate through interruption and narrative suspension, gradually constructing the hero's readiness for dynastic and religious transformation.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" }, "9": { "label": "Bradamante's Destiny", "description": "Along all the trials, the hero is occasionally reunited with his love interest. The recurring reunions between Ruggiero and Bradamante collectively constitute the hero's encounter with the feminine principle that gives direction and ultimate meaning to his journey. Bradamante is not a passive beloved awaiting rescue but a formidable warrior who has herself descended into Merlin's cave and received the prophetic vision of their future dynasty. Through her, Ruggiero perceives not only personal love but a transpersonal destiny, since the founding of the Este lineage depends entirely on his successful transformation.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", "semiotic": { "label": "Warrior Goddess divergence", "rationale": "Campbell's Meeting with the Goddess draws on the idea of the divine feminine as cosmic totality, where her love reveals unity beneath division. In 'Orlando Furioso', this role is reworked in Bradamante: a warrior knight who fights, wins duels, and pursues Ruggiero with equal determination. Her love is unconditional in Campbell's sense, as she never abandons their destined union, but it is expressed through martial agency rather than nurturing receptivity. Renaissance chivalric tradition thus replaces the sacred goddess with the female heroine, preserving the structure of the archetype while transforming its semiotic form." @@ -1642,6 +2080,8 @@ "10": { "label": "Delayed Conversion", "description": "Even after repeated prophecies and encounters directing him toward Christian conversion and dynastic destiny, Ruggiero continually postpones his definitive return from enchantment and ambiguity. His hesitation unfolds across numerous cantos through detours, interruptions, and deferred decisions that slow the transition from Saracen knight to Christian founder.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", "sequential": { "label": "Refusal before Apotheosis divergence", "rationale": "The Refusal of the Return normally follows the Apotheosis and Ultimate Boon, when the hero resists re-entering ordinary life after transcendence. In Ruggiero's case, however, this sequence is displaced: his prolonged delay occurs before both baptism and the attainment of the Boon. He refuses not the return from enlightenment, but the movement toward it, postponing the transformation that would lead to conversion and marriage. What he clings to is not transcendence but his existing Saracen identity, so the refusal becomes a resistance to ascent rather than descent." @@ -1650,6 +2090,8 @@ "11": { "label": "Bradamante's Rescues", "description": "Throughout the poem, Bradamante and her allies repeatedly intervene to recover Ruggiero from enchantment, hesitation, or narrative dispersion. Whether through Melissa's magical assistance or Bradamante's direct actions, the hero is continually redirected toward his providential role whenever he risks becoming trapped within illusion or passivity. The rescue therefore operates as a sustained corrective force distributed throughout the narrative.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", "narrative": { "label": "Dispersed Rescue divergence", "rationale": "This stage subverts the 'Rescue from Without' by transforming a singular narrative event into a dispersed, structural motif. While Campbell's model envisions a final, definitive intervention to pull the hero home, Ruggiero's rescue is fragmented across the entire epic, reflecting the 'entrelacement' structure of the poem. Each time the hero falls into enchantment or loses his path due to his own passivity, Bradamante or her surrogate Melissa must intervene. The 'Rescue' thus loses its character as a final threshold crossing and becomes a constant, corrective cycle of retrieval, highlighting a hero who is perpetually slipping away from his destiny and a heroine who functions as his necessary external conscience." @@ -1662,6 +2104,8 @@ "12": { "label": "Baptism and Conversion", "description": "Ruggiero's baptism marks the symbolic death of his previous identity and his elevation into a new spiritual condition. The hero abandons his former religious and political affiliation to enter the Christian order associated with Bradamante and Charlemagne's court. This transformation functions as a literal apotheosis in which personal conversion simultaneously becomes dynastic destiny, historical legitimation, and metaphysical rebirth.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", "semiotic": { "label": "Religious Apotheosis divergence", "rationale": "The Apotheosis stage generally operates through mythic revelation, cosmic consciousness, or metaphysical transcendence. Ariosto translates this transformative elevation into the specifically Christian language of baptism, conversion, and sacramental rebirth. The hero's spiritual ascent is therefore expressed not through universal mythology but through the religious and political semiotics of Renaissance Christendom." @@ -1669,23 +2113,33 @@ }, "13": { "label": "Este Foundation", - "description": "The union in marriage between Ruggiero and Bradamante produces a boon that extends beyond the hero's private fulfillment and into the future history of an entire civilization. Their marriage establishes the mythical origin of the Este dynasty celebrated by Ariosto's poem, transforming the hero's personal journey into the foundation of political continuity, noble lineage, and collective cultural identity." + "description": "The union in marriage between Ruggiero and Bradamante produces a boon that extends beyond the hero's private fulfillment and into the future history of an entire civilization. Their marriage establishes the mythical origin of the Este dynasty celebrated by Ariosto's poem, transforming the hero's personal journey into the foundation of political continuity, noble lineage, and collective cultural identity.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" }, "14": { "label": "Flight from the Saracen camp", - "description": "After his baptism, Ruggiero must sever himself physically and legally from the Saracen world that defined his identity. His withdrawal from their camp is not a sudden magical escape, but a painful break from shared loyalty and military belonging. This departure is enabled by a providential structure: the Saracen leader truce-breaking releases Ruggiero from his oath of fealty. What appears as \"magic\" is instead the moral failure of his former leader, which dissolves his obligations and opens the path back to the Christian world." + "description": "After his baptism, Ruggiero must sever himself physically and legally from the Saracen world that defined his identity. His withdrawal from their camp is not a sudden magical escape, but a painful break from shared loyalty and military belonging. This departure is enabled by a providential structure: the Saracen leader truce-breaking releases Ruggiero from his oath of fealty. What appears as \"magic\" is instead the moral failure of his former leader, which dissolves his obligations and opens the path back to the Christian world.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" }, "15": { "label": "Defection to Christendom", - "description": "Ruggiero's passage to the Christian side marks the full crossing of the return threshold: a public defection and entry into the order of Christian knights. This is not merely a change of allegiance but a translation of his Saracen martial identity into a new theological and cultural register, where he appears as both convert and supreme exemplar. The threshold itself is civilizational rather than physical, requiring him to carry his transformed self wholly into a new historical role shaped by Merlin's prophecy. By definitively abandoning his former side, he reintegrates the experiences of wandering, enchantment, and crisis into a stable identity recognized by Charlemagne's world, completing the passage from divided existence to unified purpose." + "description": "Ruggiero's passage to the Christian side marks the full crossing of the return threshold: a public defection and entry into the order of Christian knights. This is not merely a change of allegiance but a translation of his Saracen martial identity into a new theological and cultural register, where he appears as both convert and supreme exemplar. The threshold itself is civilizational rather than physical, requiring him to carry his transformed self wholly into a new historical role shaped by Merlin's prophecy. By definitively abandoning his former side, he reintegrates the experiences of wandering, enchantment, and crisis into a stable identity recognized by Charlemagne's world, completing the passage from divided existence to unified purpose.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" }, "16": { "label": "Knight of the Two Worlds", - "description": "Ruggiero ultimately embodies a reconciliation between worlds that are normally represented as irreconcilable enemies throughout the poem. As a Saracen knight who converts to Christianity and founds a Christian dynasty without erasing his origins, he becomes a literal bridge between civilizations, genealogies, and cultural identities. The hero masters both worlds by integrating them into a new dynastic synthesis rather than annihilating one in favor of the other." + "description": "Ruggiero ultimately embodies a reconciliation between worlds that are normally represented as irreconcilable enemies throughout the poem. As a Saracen knight who converts to Christianity and founds a Christian dynasty without erasing his origins, he becomes a literal bridge between civilizations, genealogies, and cultural identities. The hero masters both worlds by integrating them into a new dynastic synthesis rather than annihilating one in favor of the other.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" }, "17": { "label": "Dynastic Peace", "description": "Ruggiero achieves a provisional state of fulfillment through marriage, dynastic foundation, and integration into the Christian world. Yet Ariosto's celebratory closure remains partially shadowed by the later tradition surrounding the hero's premature death, introducing instability into the monomyth's final promise of peaceful transcendence. Freedom is therefore achieved historically and genealogically more than existentially or personally.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", "narrative": { "label": "Freedom through Dynasty divergence", "rationale": "Campbell's final stage usually culminates in the hero's personal liberation from fear and existential anxiety. In Orlando Furioso, this freedom is displaced from the individual hero onto the historical future generated by his marriage and descendants. The narrative's true stability belongs to the Este dynasty rather than to Ruggiero himself, whose later death continues to shadow the apparent closure of the poem." diff --git a/website/js/main.js b/website/js/main.js index c8b743f..d3b3acb 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -535,6 +535,7 @@ function createDetailPanel(fitBar) {
+
@@ -579,11 +580,19 @@ function renderStageDivergences(container, stageData) { function openDetailPanel(panel, order, total, stageData) { const kicker = panel.querySelector('.stage-detail-kicker'); const title = panel.querySelector('.stage-detail-title'); + const realizesStage = panel.querySelector('.stage-detail-realizes-stage'); const body = panel.querySelector('.stage-detail-body'); const divergences = panel.querySelector('.stage-detail-divergences'); kicker.textContent = `Stage ${order} of ${total}`; title.textContent = stageData?.label || `Stage ${order}`; + if (stageData?.realizesStageLabel) { + realizesStage.textContent = stageData.realizesStageLabel; + realizesStage.hidden = false; + } else { + realizesStage.textContent = ''; + realizesStage.hidden = true; + } body.textContent = stageData?.description || 'No description available for this stage.'; renderStageDivergences(divergences, stageData); From 88f9aeb3b6db9298adc384c78d52627e1d2a9b08 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 22:03:22 +0200 Subject: [PATCH 09/14] Forward-back arrow keys --- website/js/main.js | 92 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 73 insertions(+), 19 deletions(-) diff --git a/website/js/main.js b/website/js/main.js index d3b3acb..b7f3ed6 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -625,41 +625,95 @@ function wireModalData(modal) { // Trigger data fetch once so first interaction is typically warm. loadModalData(); + const stageControllers = []; fitBars.forEach((fitBar, fitBarIndex) => { const segments = [...fitBar.querySelectorAll('.segment')]; normalizeModalFitSection(fitBar.closest('.kg-modal-section')); const panel = createDetailPanel(fitBar); - let activeIndex = null; + const controller = { + activeIndex: null, + segments, + panel, + activateStage: null, + }; panel.querySelector('.stage-detail-close').addEventListener('click', () => { closeDetailPanel(panel, segments); - activeIndex = null; + controller.activeIndex = null; }); - segments.forEach((segment, segmentIndex) => { - segment.style.cursor = 'pointer'; + controller.activateStage = async (segmentIndex, toggleSame = false) => { + if (segmentIndex < 0 || segmentIndex >= segments.length) return; + const stageOrder = segmentIndex + 1; + if ( + toggleSame + && controller.activeIndex === segmentIndex + && panel.classList.contains('open') + ) { + closeDetailPanel(panel, segments); + controller.activeIndex = null; + return; + } - segment.addEventListener('click', async () => { - const data = await loadModalData(); - const journeys = getModalJourneys(data, modal.id); - const stageMap = (journeys[fitBarIndex] || journeys[0] || {}).stages || null; - const stageData = stageMap ? stageMap[String(stageOrder)] : null; - - if (activeIndex === segmentIndex && panel.classList.contains('open')) { - closeDetailPanel(panel, segments); - activeIndex = null; - return; - } + const data = await loadModalData(); + const journeys = getModalJourneys(data, modal.id); + const stageMap = (journeys[fitBarIndex] || journeys[0] || {}).stages || null; + const stageData = stageMap ? stageMap[String(stageOrder)] : null; - segments.forEach(item => item.classList.remove('segment-active')); - segment.classList.add('segment-active'); - activeIndex = segmentIndex; + segments.forEach(item => item.classList.remove('segment-active')); + segments[segmentIndex].classList.add('segment-active'); + controller.activeIndex = segmentIndex; + openDetailPanel(panel, stageOrder, segments.length, stageData); + }; - openDetailPanel(panel, stageOrder, segments.length, stageData); + segments.forEach((segment, segmentIndex) => { + segment.style.cursor = 'pointer'; + segment.addEventListener('click', async () => { + await controller.activateStage(segmentIndex, true); }); }); + + stageControllers.push(controller); + }); + + document.addEventListener('keydown', async event => { + if (modal.getAttribute('aria-hidden') !== 'false') return; + if (event.key !== 'ArrowLeft' && event.key !== 'ArrowRight') return; + + const targetTag = event.target?.tagName?.toLowerCase(); + if ( + targetTag === 'input' + || targetTag === 'textarea' + || targetTag === 'select' + || event.target?.isContentEditable + ) { + return; + } + + if (!stageControllers.length) return; + event.preventDefault(); + + const currentController = stageControllers.find( + item => item.activeIndex !== null && item.panel.classList.contains('open') + ) || stageControllers[0]; + + if (currentController.activeIndex === null) { + if (event.key === 'ArrowRight') { + await currentController.activateStage(0); + } else { + await currentController.activateStage(currentController.segments.length - 1); + } + return; + } + + const delta = event.key === 'ArrowRight' ? 1 : -1; + const nextIndex = Math.max( + 0, + Math.min(currentController.activeIndex + delta, currentController.segments.length - 1) + ); + await currentController.activateStage(nextIndex); }); } From 2efe802fed2935e1a26b523f39e1319b46b471a3 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 22:08:34 +0200 Subject: [PATCH 10/14] Preselect stage 1 --- website/js/main.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/js/main.js b/website/js/main.js index b7f3ed6..afed071 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -676,6 +676,10 @@ function wireModalData(modal) { }); stageControllers.push(controller); + + if (segments.length > 0) { + void controller.activateStage(0); + } }); document.addEventListener('keydown', async event => { From 48b9f28c94793ff2a63136cc0359d3eaef211df0 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 22:13:54 +0200 Subject: [PATCH 11/14] Show monomyth title instead of stage fit --- website/js/main.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/website/js/main.js b/website/js/main.js index afed071..5024238 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -629,12 +629,14 @@ function wireModalData(modal) { fitBars.forEach((fitBar, fitBarIndex) => { const segments = [...fitBar.querySelectorAll('.segment')]; - normalizeModalFitSection(fitBar.closest('.kg-modal-section')); + const section = fitBar.closest('.kg-modal-section'); + normalizeModalFitSection(section); const panel = createDetailPanel(fitBar); const controller = { activeIndex: null, segments, panel, + section, activateStage: null, }; @@ -682,6 +684,19 @@ function wireModalData(modal) { } }); + void (async () => { + const data = await loadModalData(); + const journeys = getModalJourneys(data, modal.id); + + stageControllers.forEach((controller, index) => { + const expressionLabel = journeys[index]?.label || journeys[0]?.label; + if (!expressionLabel) return; + + const heading = controller.section?.querySelector('h4'); + if (heading) heading.textContent = expressionLabel; + }); + })(); + document.addEventListener('keydown', async event => { if (modal.getAttribute('aria-hidden') !== 'false') return; if (event.key !== 'ArrowLeft' && event.key !== 'ArrowRight') return; From f6b7eae17b85b2fa4cb42762683a9c24565338d9 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 22:45:06 +0200 Subject: [PATCH 12/14] Arrows move the stage of the last used journey --- website/js/main.js | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/website/js/main.js b/website/js/main.js index 5024238..f2b2b50 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -626,6 +626,7 @@ function wireModalData(modal) { // Trigger data fetch once so first interaction is typically warm. loadModalData(); const stageControllers = []; + let lastActiveController = null; fitBars.forEach((fitBar, fitBarIndex) => { const segments = [...fitBar.querySelectorAll('.segment')]; @@ -645,7 +646,11 @@ function wireModalData(modal) { controller.activeIndex = null; }); - controller.activateStage = async (segmentIndex, toggleSame = false) => { + controller.activateStage = async ( + segmentIndex, + toggleSame = false, + setAsLastActive = true + ) => { if (segmentIndex < 0 || segmentIndex >= segments.length) return; const stageOrder = segmentIndex + 1; @@ -667,6 +672,7 @@ function wireModalData(modal) { segments.forEach(item => item.classList.remove('segment-active')); segments[segmentIndex].classList.add('segment-active'); controller.activeIndex = segmentIndex; + if (setAsLastActive) lastActiveController = controller; openDetailPanel(panel, stageOrder, segments.length, stageData); }; @@ -680,7 +686,7 @@ function wireModalData(modal) { stageControllers.push(controller); if (segments.length > 0) { - void controller.activateStage(0); + void controller.activateStage(0, false, false); } }); @@ -714,15 +720,27 @@ function wireModalData(modal) { if (!stageControllers.length) return; event.preventDefault(); - const currentController = stageControllers.find( - item => item.activeIndex !== null && item.panel.classList.contains('open') - ) || stageControllers[0]; + const currentController = ( + lastActiveController + && lastActiveController.activeIndex !== null + && lastActiveController.panel.classList.contains('open') + ) + ? lastActiveController + : ( + stageControllers.find( + item => item.activeIndex !== null && item.panel.classList.contains('open') + ) || stageControllers[0] + ); if (currentController.activeIndex === null) { if (event.key === 'ArrowRight') { - await currentController.activateStage(0); + await currentController.activateStage(0, false, true); } else { - await currentController.activateStage(currentController.segments.length - 1); + await currentController.activateStage( + currentController.segments.length - 1, + false, + true + ); } return; } @@ -732,7 +750,7 @@ function wireModalData(modal) { 0, Math.min(currentController.activeIndex + delta, currentController.segments.length - 1) ); - await currentController.activateStage(nextIndex); + await currentController.activateStage(nextIndex, false, true); }); } From 110029cb58fa000f66e73d9f274bf0fc00c2ec60 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Tue, 19 May 2026 22:49:07 +0200 Subject: [PATCH 13/14] Flatten json structure --- scripts/generate_modal_data.py | 12 +- website/data/modal_data.json | 4221 ++++++++++++++++---------------- website/js/main.js | 4 +- 3 files changed, 2115 insertions(+), 2122 deletions(-) diff --git a/scripts/generate_modal_data.py b/scripts/generate_modal_data.py index a3b724f..83f1d7e 100644 --- a/scripts/generate_modal_data.py +++ b/scripts/generate_modal_data.py @@ -23,7 +23,6 @@ import json import sys -from datetime import UTC, datetime from pathlib import Path from rdflib import Graph, Namespace, URIRef @@ -179,9 +178,9 @@ def build_stage_payload( for realized_stage_iri in graph.objects(stage_iri, PRED_REALIZES_STAGE): stage_uri = str(realized_stage_iri) payload["realizesStage"] = stage_term_value(graph, realized_stage_iri) - payload["realizesStageLabel"] = ( - ontology_stage_labels.get(stage_uri) or iri_tail(stage_uri) - ) + payload["realizesStageLabel"] = ontology_stage_labels.get( + stage_uri + ) or iri_tail(stage_uri) break for divergence_key, divergence_predicate in STAGE_DIVERGENCE_PREDICATES: @@ -284,10 +283,7 @@ def build_modal_payload( ONTOLOGY_STAGE_LABELS, ) -output = { - "generatedAt": datetime.now(UTC).isoformat().replace("+00:00", "Z"), - "modals": modals, -} +output = modals OUTPUT_JSON.parent.mkdir(parents=True, exist_ok=True) OUTPUT_JSON.write_text(f"{json.dumps(output, indent=2)}\n", encoding="utf-8") diff --git a/website/data/modal_data.json b/website/data/modal_data.json index fe365af..9a1c12c 100644 --- a/website/data/modal_data.json +++ b/website/data/modal_data.json @@ -1,2153 +1,2150 @@ { - "generatedAt": "2026-05-19T18:46:05.375211Z", - "modals": { - "kg-modal-matrix": { - "ttlFile": "the-matrix.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/the-matrix/monomyths/neo-journey", - "label": "Neo's Hero's Journey in The Matrix", - "stages": { - "1": { - "label": "Follow the white rabbit", - "description": "Neo's computer screen displays the message \"Wake up, Neo... The Matrix has you... Follow the white rabbit.\" He then follows a woman with a white rabbit tattoo to a club, where Trinity tells him she knows the answer to the question driving his life.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure" - }, - "2": { - "label": "I can't do this", - "description": "Morpheus guides Neo by phone to escape via a building ledge. Neo looks down, says \"I can't do this,\" and retreats inside, choosing the familiar world. He is immediately captured by Agent Smith, interrogated, and implanted with a tracking bug.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call" - }, - "3": { - "label": "Let me tell you why you're here", - "description": "Morpheus serves as the supernatural mentor: he has sought Neo, believes in him as the One, and offers him the pivotal choice. Trinity and the crew give Neo another chance at understanding his destiny, bringing him to Morpheus.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "semiotic": { - "label": "Supernatural as Epistemic divergence", - "rationale": "The supernatural aid appears here not as a transcendent or magical intervention, but as privileged access to truth. Morpheus operates within the same ontological order as Neo, yet possesses knowledge that reveals the perceived world as illusory. The sense of the 'supernatural' arises from Neo's epistemic limitation rather than any actual breach of natural law. Guidance is thus enacted through disclosure and cognitive rupture, shifting the role from mystical benefactor to agent of ontological clarification within a simulated reality." - } - }, - "4": { - "label": "All I'm offering is the truth", - "description": "Morpheus presents two pills: blue for return to ignorance, red for the truth. Neo takes the red pill. Reality disintegrates, the mirror liquefies and crawls up his arm, and he wakes in a pod in the real world. There is no going back.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "Welcome to the real world", - "description": "Neo awakens in an amniotic pod, hairless, atrophied, plugged into the machine infrastructure, surrounded by an infinite tower of sleeping humans. He is flushed through a tube into dark water and rescued by the Nebuchadnezzar crew. The old Thomas Anderson dies in the pod; Neo is reborn fragile and overwhelmed.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale" - }, - "6": { - "label": "Fear, doubt, and disbelief", - "description": "Neo must rebuild himself from nothing after liberation. He downloads combat programs directly into his mind, absorbs kung fu at impossible speed, and tests his newly acquired skills against Morpheus in the sparring dojo. Yet the rooftop jump reveals a deeper trial: his residual self-image, anchored in obsolete beliefs about what is possible, still limits him.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "7": { - "label": "The Oracle will see you now", - "description": "Neo visits the Oracle in her modest, maternal apartment, expecting definitive answers about his destiny. Instead, she offers cryptic guidance wrapped in domestic warmth\u2014baking cookies, reading body language. When Neo concludes himself that he is not the One, she neither confirms nor denies, planting seeds of self-knowledge that will germinate only through sacrifice and choice.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess" - }, - "8": { - "label": "Ignorance is bliss", - "description": "Cypher embodies the temptation to abandon truth for comfort. Over a steak dinner negotiated with Agent Smith, he chooses to betray the crew in exchange for reinsertion into the Matrix, preferring pleasurable illusion to the bleak real world. His betrayal externalizes the doubt lurking within every freed mind: that ignorance might be preferable to painful knowledge.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "narrative": { - "label": "Dispersed Temptress divergence", - "rationale": "The Wachowskis distribute the temptation function across multiple loci rather than concentrating it in a single character-hero encounter. The Woman in the Red Dress is a brief pedagogical moment; Cypher embodies the deeper existential temptation as Neo's shadow rather than his seducer; and Neo himself, refusing to identify as the One, enacts an inward temptation\u2014the lure of remaining ordinary rather than accepting a burden he does not yet believe he can carry. This dispersal reflects the film's philosophical framework: in The Matrix, temptation is systemic (the entire simulation is designed to seduce) rather than personal, making a single temptress figure structurally inadequate. The divergence is a creative adaptation of Campbell's stage to a narrative where the antagonist is an environment, not an individual." - }, - "semiotic": { - "label": "Woman as Ignorance divergence", - "rationale": "The Matrix subverts the traditional Woman as the Temptress archetype by embodying the temptation to remain in ignorance not in a seductive figure, but in the systemic choice of ignorance itself. The film's primary antagonist, Agent Smith, represents the oppressive system that seeks to maintain control through ignorance, while Cypher's betrayal exemplifies the allure of returning to comfortable illusion. This divergence reflects the film's thematic focus on systemic control and the internal struggle for enlightenment, rather than external seduction." - } - }, - "9": { - "label": "There is no spoon", - "description": "Agent Smith captures Morpheus and attempts to break him through interrogation. Neo defies the pragmatic counsel to abandon his mentor, re-entering the Matrix to mount a rescue. In saving the father figure rather than obeying him, Neo transcends discipleship, claiming autonomous authority not against Morpheus but through loyalty to him.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father" - }, - "10": { - "label": "He's beginning to believe", - "description": "With Morpheus and Trinity safely extracted, Neo stands before the escape route but chooses intead to turn back to face Agent Smith. The battle becomes a graduated awakening: blow by blow, Neo's confidence hardens into something approaching certainty. \"He's beginning to believe\" will declare Morpheus, watching. Freeing himself from the grip of Smith, he finally throws him under the train, winning the confrontation but immediately realizing he's not ready for another one and hence must escape for now.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis", - "narrative": { - "label": "Imperfect Apotheosis divergence", - "rationale": "Neo's apotheosis is deliberately incomplete and immediately followed by a new trial, subverting the traditional narrative where the hero enjoys a moment of elevated power before facing new challenges. This choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." - } - }, - "11": { - "label": "Mr. Wizard, get me out of here!", - "description": "Smith is defeated in the subway but not annihilated, and Neo must now flee a system that has fully mobilized against him. Tank provides real-time guidance through the Matrix's corridors, directing Neo toward safety while Agents pursue. This flight suspends the hero's nascent apotheosis in a state of anxious incompleteness, heightening the stakes by demonstrating that partial awakening carries its own dangers. Neo's dependence on Tank reveals that even emergent power requires external support to translate into survival.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "sequential": { - "label": "Escape after apotheosis divergence", - "rationale": "In The Matrix, Neo's apotheosis happens in two distinct phases. The first one, when \"he's beginning to believe\" and challenge Agent Smith, is not complete and it is immediately followed by a desperate escape from Agent Smith, rather than a period of triumphant mastery. This sequence subverts the traditional post-apotheosis narrative, where the hero typically enjoys a moment of elevated power before facing new challenges. The Wachowskis' choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." - } - }, - "12": { - "label": "The man I loved would be the One", - "description": "The Agents close in systematically, cutting off Neo's escape routes one by one until the city itself becomes a narrowing trap. Smith intercepts him in a hallway and fires at point-blank range, killing him. The hero's journey appears to terminate in unambiguous defeat. But in the real world, Trinity leans over Neo's body and confesses her love, revealing the Oracle's prophecy: the man she loved would be the One. Neo returns from death, resurrected by a conviction he could not yet supply for himself: ultimate awakening, the film suggests, requires being believed in before one can fully believe.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "narrative": { - "label": "Validation replaces salvation divergence", - "rationale": "In The Matrix, the traditional Rescue from Without stage is subverted by having Neo's validation as the One come from Trinity's love and belief in him, rather than from an external savior figure. This shift emphasizes the theme of self-actualization and the power of human connection, rather than reliance on an external force for salvation. Neo's \"rescue\" is not a physical extraction from danger but an emotional and existential affirmation that enables him to fully embrace his identity as the One." - } - }, - "13": { - "label": "He is the One", - "description": "Neo rises from death and the simulation's code becomes legible to him, its architecture now transparent and malleable. Agents open fire but he halts their bullets in midair through will alone. Smith charges and Neo dispatches him effortlessly, then enters his digital body and destroys him from within. The remaining Agents flee. Neo has attained total mastery over the Matrix, but the real world intrudes: sentinels are tearing the ship apart, and he must reach the exit before the boon he has claimed becomes irrelevant to a body that no longer survives.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon" - }, - "14": { - "label": "System failure", - "description": null, - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Refusal of the return divergence", - "rationale": "The Matrix omits the Refusal of the Return because Neo's arc is structured as an awakening narrative rather than a circular homecoming. Once Neo achieves the boon, there is no ordinary world to be reluctant about returning to: his mission is forward-facing liberation, not nostalgic return. The Wachowskis' choice reflects a modern, messianic hero model (closer to the Bodhisattva who re-enters the world to liberate others) rather than Campbell's Odyssean homecoming pattern. The absence is deliberate and thematically coherent rather than an oversight." - } - }, - "15": { - "label": "I can feel you now", - "description": "In the film's compressed finale, Neo re-enters the Matrix no longer as a fugitive but as a being who has transcended its constraints entirely and addresses the Machines directly with calm authority, acknowledging their fear of what free humans represent. The threshold between simulation and reality, which once marked the hero's fundamental vulnerability, is effectively dissolved as he's now free to move between both realms at will.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold", - "narrative": { - "label": "Master of the threshold divergence", - "rationale": "Campbell's model assumes the hero crosses back from the special world into the ordinary one. The Matrix inverts this: Neo re-enters the special world (the simulation) as its sovereign, dissolving the ontological hierarchy between worlds rather than crossing a boundary. This divergence transforms the return threshold from a spatial crossing into an epistemological claim: the hero's return is not a physical transit but a redefinition of what \"real\" means. It reflects the film's Baudrillardian foundation: if simulation and reality are ontologically entangled, the threshold itself is the illusion." - } - }, - "16": { - "label": "I came here to tell you how it's going to begin", - "description": "Neo has become illegible to the categories that once contained him: neither prisoner of the simulation nor mere survivor of the devastated Earth, he occupies both worlds with equal fluency and commands both with equal authority. His address to the Machines makes this legible through its sheer confidence, as he speaks not as someone who has escaped their system but as someone who has comprehended it so thoroughly that the power relation has permanently inverted. The resolution of the narrative's founding duality is complete, even if the film only gestures toward it in the closing moments rather than depicting it at length.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds" - }, - "17": { - "label": "Where we go from there is a choice I leave to you", - "description": "The film ends on liberated possibility. Neo flies into the sky, free from the constraints of the code, from doubt, from gravity itself. His freedom is not domestic peace but the freedom of mission: knowing who he is and what he must do, acting from certainty rather than fear. The narrative closes not as a circle returning to its origin but as a trajectory launched outward, leaving the question of what comes next as a deliberate structural opening rather than an unresolved thread.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live" + "kg-modal-matrix": { + "ttlFile": "the-matrix.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/the-matrix/monomyths/neo-journey", + "label": "Neo's Hero's Journey in The Matrix", + "stages": { + "1": { + "label": "Follow the white rabbit", + "description": "Neo's computer screen displays the message \"Wake up, Neo... The Matrix has you... Follow the white rabbit.\" He then follows a woman with a white rabbit tattoo to a club, where Trinity tells him she knows the answer to the question driving his life.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" + }, + "2": { + "label": "I can't do this", + "description": "Morpheus guides Neo by phone to escape via a building ledge. Neo looks down, says \"I can't do this,\" and retreats inside, choosing the familiar world. He is immediately captured by Agent Smith, interrogated, and implanted with a tracking bug.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" + }, + "3": { + "label": "Let me tell you why you're here", + "description": "Morpheus serves as the supernatural mentor: he has sought Neo, believes in him as the One, and offers him the pivotal choice. Trinity and the crew give Neo another chance at understanding his destiny, bringing him to Morpheus.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "semiotic": { + "label": "Supernatural as Epistemic divergence", + "rationale": "The supernatural aid appears here not as a transcendent or magical intervention, but as privileged access to truth. Morpheus operates within the same ontological order as Neo, yet possesses knowledge that reveals the perceived world as illusory. The sense of the 'supernatural' arises from Neo's epistemic limitation rather than any actual breach of natural law. Guidance is thus enacted through disclosure and cognitive rupture, shifting the role from mystical benefactor to agent of ontological clarification within a simulated reality." + } + }, + "4": { + "label": "All I'm offering is the truth", + "description": "Morpheus presents two pills: blue for return to ignorance, red for the truth. Neo takes the red pill. Reality disintegrates, the mirror liquefies and crawls up his arm, and he wakes in a pod in the real world. There is no going back.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "Welcome to the real world", + "description": "Neo awakens in an amniotic pod, hairless, atrophied, plugged into the machine infrastructure, surrounded by an infinite tower of sleeping humans. He is flushed through a tube into dark water and rescued by the Nebuchadnezzar crew. The old Thomas Anderson dies in the pod; Neo is reborn fragile and overwhelmed.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" + }, + "6": { + "label": "Fear, doubt, and disbelief", + "description": "Neo must rebuild himself from nothing after liberation. He downloads combat programs directly into his mind, absorbs kung fu at impossible speed, and tests his newly acquired skills against Morpheus in the sparring dojo. Yet the rooftop jump reveals a deeper trial: his residual self-image, anchored in obsolete beliefs about what is possible, still limits him.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "7": { + "label": "The Oracle will see you now", + "description": "Neo visits the Oracle in her modest, maternal apartment, expecting definitive answers about his destiny. Instead, she offers cryptic guidance wrapped in domestic warmth\u2014baking cookies, reading body language. When Neo concludes himself that he is not the One, she neither confirms nor denies, planting seeds of self-knowledge that will germinate only through sacrifice and choice.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess" + }, + "8": { + "label": "Ignorance is bliss", + "description": "Cypher embodies the temptation to abandon truth for comfort. Over a steak dinner negotiated with Agent Smith, he chooses to betray the crew in exchange for reinsertion into the Matrix, preferring pleasurable illusion to the bleak real world. His betrayal externalizes the doubt lurking within every freed mind: that ignorance might be preferable to painful knowledge.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "narrative": { + "label": "Dispersed Temptress divergence", + "rationale": "The Wachowskis distribute the temptation function across multiple loci rather than concentrating it in a single character-hero encounter. The Woman in the Red Dress is a brief pedagogical moment; Cypher embodies the deeper existential temptation as Neo's shadow rather than his seducer; and Neo himself, refusing to identify as the One, enacts an inward temptation\u2014the lure of remaining ordinary rather than accepting a burden he does not yet believe he can carry. This dispersal reflects the film's philosophical framework: in The Matrix, temptation is systemic (the entire simulation is designed to seduce) rather than personal, making a single temptress figure structurally inadequate. The divergence is a creative adaptation of Campbell's stage to a narrative where the antagonist is an environment, not an individual." + }, + "semiotic": { + "label": "Woman as Ignorance divergence", + "rationale": "The Matrix subverts the traditional Woman as the Temptress archetype by embodying the temptation to remain in ignorance not in a seductive figure, but in the systemic choice of ignorance itself. The film's primary antagonist, Agent Smith, represents the oppressive system that seeks to maintain control through ignorance, while Cypher's betrayal exemplifies the allure of returning to comfortable illusion. This divergence reflects the film's thematic focus on systemic control and the internal struggle for enlightenment, rather than external seduction." + } + }, + "9": { + "label": "There is no spoon", + "description": "Agent Smith captures Morpheus and attempts to break him through interrogation. Neo defies the pragmatic counsel to abandon his mentor, re-entering the Matrix to mount a rescue. In saving the father figure rather than obeying him, Neo transcends discipleship, claiming autonomous authority not against Morpheus but through loyalty to him.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father" + }, + "10": { + "label": "He's beginning to believe", + "description": "With Morpheus and Trinity safely extracted, Neo stands before the escape route but chooses intead to turn back to face Agent Smith. The battle becomes a graduated awakening: blow by blow, Neo's confidence hardens into something approaching certainty. \"He's beginning to believe\" will declare Morpheus, watching. Freeing himself from the grip of Smith, he finally throws him under the train, winning the confrontation but immediately realizing he's not ready for another one and hence must escape for now.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", + "narrative": { + "label": "Imperfect Apotheosis divergence", + "rationale": "Neo's apotheosis is deliberately incomplete and immediately followed by a new trial, subverting the traditional narrative where the hero enjoys a moment of elevated power before facing new challenges. This choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." + } + }, + "11": { + "label": "Mr. Wizard, get me out of here!", + "description": "Smith is defeated in the subway but not annihilated, and Neo must now flee a system that has fully mobilized against him. Tank provides real-time guidance through the Matrix's corridors, directing Neo toward safety while Agents pursue. This flight suspends the hero's nascent apotheosis in a state of anxious incompleteness, heightening the stakes by demonstrating that partial awakening carries its own dangers. Neo's dependence on Tank reveals that even emergent power requires external support to translate into survival.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "sequential": { + "label": "Escape after apotheosis divergence", + "rationale": "In The Matrix, Neo's apotheosis happens in two distinct phases. The first one, when \"he's beginning to believe\" and challenge Agent Smith, is not complete and it is immediately followed by a desperate escape from Agent Smith, rather than a period of triumphant mastery. This sequence subverts the traditional post-apotheosis narrative, where the hero typically enjoys a moment of elevated power before facing new challenges. The Wachowskis' choice emphasizes the precariousness of Neo's newfound abilities and the ongoing struggle against systemic oppression, reinforcing the film's themes of resistance and resilience." + } + }, + "12": { + "label": "The man I loved would be the One", + "description": "The Agents close in systematically, cutting off Neo's escape routes one by one until the city itself becomes a narrowing trap. Smith intercepts him in a hallway and fires at point-blank range, killing him. The hero's journey appears to terminate in unambiguous defeat. But in the real world, Trinity leans over Neo's body and confesses her love, revealing the Oracle's prophecy: the man she loved would be the One. Neo returns from death, resurrected by a conviction he could not yet supply for himself: ultimate awakening, the film suggests, requires being believed in before one can fully believe.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "narrative": { + "label": "Validation replaces salvation divergence", + "rationale": "In The Matrix, the traditional Rescue from Without stage is subverted by having Neo's validation as the One come from Trinity's love and belief in him, rather than from an external savior figure. This shift emphasizes the theme of self-actualization and the power of human connection, rather than reliance on an external force for salvation. Neo's \"rescue\" is not a physical extraction from danger but an emotional and existential affirmation that enables him to fully embrace his identity as the One." + } + }, + "13": { + "label": "He is the One", + "description": "Neo rises from death and the simulation's code becomes legible to him, its architecture now transparent and malleable. Agents open fire but he halts their bullets in midair through will alone. Smith charges and Neo dispatches him effortlessly, then enters his digital body and destroys him from within. The remaining Agents flee. Neo has attained total mastery over the Matrix, but the real world intrudes: sentinels are tearing the ship apart, and he must reach the exit before the boon he has claimed becomes irrelevant to a body that no longer survives.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" + }, + "14": { + "label": "System failure", + "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Refusal of the return divergence", + "rationale": "The Matrix omits the Refusal of the Return because Neo's arc is structured as an awakening narrative rather than a circular homecoming. Once Neo achieves the boon, there is no ordinary world to be reluctant about returning to: his mission is forward-facing liberation, not nostalgic return. The Wachowskis' choice reflects a modern, messianic hero model (closer to the Bodhisattva who re-enters the world to liberate others) rather than Campbell's Odyssean homecoming pattern. The absence is deliberate and thematically coherent rather than an oversight." + } + }, + "15": { + "label": "I can feel you now", + "description": "In the film's compressed finale, Neo re-enters the Matrix no longer as a fugitive but as a being who has transcended its constraints entirely and addresses the Machines directly with calm authority, acknowledging their fear of what free humans represent. The threshold between simulation and reality, which once marked the hero's fundamental vulnerability, is effectively dissolved as he's now free to move between both realms at will.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", + "narrative": { + "label": "Master of the threshold divergence", + "rationale": "Campbell's model assumes the hero crosses back from the special world into the ordinary one. The Matrix inverts this: Neo re-enters the special world (the simulation) as its sovereign, dissolving the ontological hierarchy between worlds rather than crossing a boundary. This divergence transforms the return threshold from a spatial crossing into an epistemological claim: the hero's return is not a physical transit but a redefinition of what \"real\" means. It reflects the film's Baudrillardian foundation: if simulation and reality are ontologically entangled, the threshold itself is the illusion." } + }, + "16": { + "label": "I came here to tell you how it's going to begin", + "description": "Neo has become illegible to the categories that once contained him: neither prisoner of the simulation nor mere survivor of the devastated Earth, he occupies both worlds with equal fluency and commands both with equal authority. His address to the Machines makes this legible through its sheer confidence, as he speaks not as someone who has escaped their system but as someone who has comprehended it so thoroughly that the power relation has permanently inverted. The resolution of the narrative's founding duality is complete, even if the film only gestures toward it in the closing moments rather than depicting it at length.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" + }, + "17": { + "label": "Where we go from there is a choice I leave to you", + "description": "The film ends on liberated possibility. Neo flies into the sky, free from the constraints of the code, from doubt, from gravity itself. His freedom is not domestic peace but the freedom of mission: knowing who he is and what he must do, acting from certainty rather than fear. The narrative closes not as a circle returning to its origin but as a trajectory launched outward, leaving the question of what comes next as a deliberate structural opening rather than an unresolved thread.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } - ] - }, - "kg-modal-lion-king": { - "ttlFile": "the-lion-king.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/the-lion-king/monomyths/simba-journey", - "label": "Simba's Hero's Journey in The Lion King", - "stages": { - "1": { - "label": "Everything the light touches", - "description": "Mufasa leads the young Simba to the summit of Pride Rock at dawn and reveals the kingdom spread before them, declaring that everything the light touches belongs to their domain and will one day pass to Simba as king. The call is not a rupture in the ordinary world but a formal investiture of destiny delivered by the reigning authority himself, framing the hero's journey as the assumption of an inherited obligation rather than the pursuit of an unknown summons.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure", - "semiotic": { - "label": "Investiture as call divergence", - "rationale": "Campbell's call to adventure is frequently marked by rupture: an intrusion, summons, or destabilizing event that tears the hero from the ordinary world toward an unknown domain. The Lion King reframes this sign-system as dynastic investiture rather than disruption. Mufasa's lesson on Pride Rock functions as a ceremonial transmission of sovereignty, where destiny is formally named within the existing social order rather than announced from outside it. The semiotic center of the call shifts from external interruption to institutional designation: the hero is not recruited away from home but positioned within a lineage, a territory, and a law of responsibility that already precedes him. The divergence preserves Campbell's structural function, initiating the journey through binding obligation, while relocating its meaning from adventurous departure to inherited vocation." - } - }, - "2": { - "label": "The great kings will always be there to guide you", - "description": "On the evening before the stampede, Mufasa tells Simba that the great kings of the past look down from the stars and will always be there to guide him. The lesson is intimate and tender, embedded in a father-son conversation about bravery rather than delivered as a ritual endowment of magical instruments. Its full significance lies dormant throughout the hero's exile, activating only when Rafiki leads Simba to the reflecting pool and the ghostly vision that completes the circuit between mortal teaching and ancestral intervention.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "sequential": { - "label": "Aid before crisis divergence", - "rationale": "Mufasa's lesson about the great kings arrives embedded in the ordinary world before the crisis that will shatter it, rather than appearing after the hero has crossed the threshold and entered the special world. The aid is further split across two temporal moments separated by the entire arc of exile: the cosmological framework is planted here as a quiet paternal intimacy, but it lies dormant for years until Rafiki's shamanic mediation and Mufasa's ghostly apparition activate it during the atonement." - }, - "semiotic": { - "label": "Ancestral cosmology divergence", - "rationale": "Campbell's supernatural aid typically takes the form of a wizard, crone, ferryman, or divine messenger who equips the hero with specific talismans or wisdom before the threshold is crossed. The Lion King replaces this Western mythological inventory with an African cosmological framework in which the dead persist as ancestral presences embedded in the natural world itself, watching from the stars and accessible through shamanic mediation. The aid is not a discrete gift bestowed by a singular figure but a continuous spiritual infrastructure that the hero must learn to perceive and trust. The semiotic shift from individual magical helper to communal ancestral network reframes the supernatural as relational rather than transactional, and the aid as something the hero must grow into rather than simply receive." - } - }, - "3": { - "label": "What have you done?", - "description": "Scar orchestrates Mufasa's death in the wildebeest stampede and immediately turns to the traumatized cub with a calculated accusation: what has Simba done? The prince, who had been lured into the gorge as bait, internalizes the guilt completely and accepts that he is responsible for his father's death. The refusal of the call is not the hero's independent hesitation before the unknown but a manufactured psychic wound imposed by the Shadow, converting Simba's eagerness into shame and his birthright into a burden he believes he has forfeited.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Manufactured exile divergence", - "rationale": "Campbell's refusal typically originates in the hero's own psyche: fear, attachment, inadequacy, or simple inertia. The Lion King externalizes the mechanism entirely: Scar engineers both the trauma (Mufasa's murder) and the interpretive frame (Simba's guilt), manufacturing a refusal that the hero experiences as authentic self-judgment but that is in fact an act of narrative sabotage by the Shadow. This produces a refusal that is at once more absolute and more fragile than the canonical form: absolute because Simba's guilt is total and unquestioned for years, fragile because it rests on a factual lie that, once exposed, dissolves the refusal entirely. The divergence reflects the film's investment in deception as a structural engine, where the hero's journey is arrested not by his own limitations but by a false story imposed upon him." - } - }, - "4": { - "label": "Run away and never return", - "description": "Scar commands the grief-stricken cub to flee the Pride Lands and never return, then dispatches the hyenas to ensure the exile is permanent. Simba runs blindly through thornbush and scrubland until the grasslands give way to open desert. The crossing is not a heroic commitment to adventure but a panicked flight driven by manufactured guilt, and the threshold itself is marked not by a guardian's challenge but by the landscape's indifference: the Pride Lands simply end, and the emptiness beyond offers no welcome and no promise.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "You're an outcast, that's great, so are we", - "description": "Simba collapses in the desert and is discovered near death by Timon and Pumbaa, who revive him and recognize in his exile a mirror of their own marginality. The prince who was to inherit a kingdom is swallowed whole by anonymity: his royal identity is irrelevant in the jungle, his past is actively suppressed, and the community that adopts him values him precisely for what he no longer claims to be. The symbolic death of the former self is achieved not through violence or containment but through the gentler annihilation of simply being forgotten.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale" - }, - "6": { - "label": "Hakuna Matata", - "description": "The film compresses Simba's entire adolescence and early adulthood into a musical montage of carefree indulgence: eating grubs, sleeping in the open, swimming in waterfalls, growing from cub to full-maned lion without crisis or conflict. The road of trials is inverted into a road of pleasures, where the ordeal is not suffering but the absence of it, and the danger lies in the progressive erosion of purpose that comfort produces. Each year of untroubled contentment deepens Simba's distance from his identity and makes the eventual return more difficult, not less.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials", - "narrative": { - "label": "Idyll as ordeal divergence", - "rationale": "Campbell's road of trials strips the hero of illusions through suffering, failure, and encounter with forces greater than the self. The Lion King replaces this gauntlet with an extended paradise: years of ease, friendship, and philosophical contentment that never once test Simba's physical courage. The ordeal is hidden inside the comfort, operating as a slow anaesthetic that numbs the hero's sense of purpose and identity without his awareness. The film suggests that the most dangerous trial is not the one that breaks the hero but the one that never arrives, leaving the hero intact but hollow, capable but unmotivated, and progressively less able to recognize the difference between peace and avoidance." - } - }, - "7": { - "label": "Can you feel the love tonight", - "description": "Nala arrives in the jungle unexpectedly, and the reunion between the two childhood friends unfolds into romantic recognition over the course of a single evening. The encounter restores something Simba had lost access to, a witness to his real identity who knew him before exile redefined him. Nala embodies the nurturing totality Campbell describes not through divine abstraction but through the concrete insistence that Simba is still the lion she grew up with, and that the kingdom he abandoned still needs him.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "semiotic": { - "label": "Goddess as relational recognition divergence", - "rationale": "Campbell's meeting with the goddess is often coded through a mythic or numinous feminine figure who mediates totality, unconditional affirmation, and a glimpse of ontological wholeness. The Lion King preserves that structural function but translates its sign system from divine apparition to relational recognition: Nala is not a supernatural goddess, but a historical witness who knows Simba before, during, and against the identity fracture produced by exile. Her significance is goddess-like in effect rather than in ontology. She restores to the hero an image of himself that neither guilt nor self-erasure can fully destroy, and she binds eros, memory, and ethical vocation into one encounter. The semiotic shift is from transcendental feminine symbol to intersubjective recognition, retaining Campbell's integrative meaning while grounding it in social relation, political responsibility, and the concrete world of the Pride Lands." - } - }, - "8": { - "label": "You're not the Simba I remember", - "description": "Nala confronts Simba with the devastation Scar has wrought on the Pride Lands and demands he return to reclaim the throne. The temptation the hero faces is not a seductive figure but the entire worldview he has internalized during exile: Hakuna Matata, the philosophy of no worries and no responsibility, which now functions as an ideology of avoidance dressed in the language of liberation. Simba's resistance to Nala's plea reveals how deeply the years of comfortable denial have rooted, making the temptation structural rather than personal and the seduction a matter of identity rather than desire.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "narrative": { - "label": "Philosophy as seduction divergence", - "rationale": "The temptation that arrests Simba's journey is not embodied in a seductive figure but in a comprehensive worldview. Hakuna Matata functions as a complete ethical system that reframes irresponsibility as wisdom and disengagement as enlightenment, offering the hero not momentary pleasure but a permanent alternative identity. The seduction is therefore structural rather than episodic: Simba does not resist a single encounter but must reject an entire way of being that he has practiced for years and that his closest companions sincerely endorse. This makes the temptation both more insidious and more sympathetic than Campbell's archetype typically allows, because the philosophy is not malicious. It is simply insufficient for someone whose obligations extend beyond himself." - }, - "semiotic": { - "label": "Temptation as worldview divergence", - "rationale": "Campbell encodes the temptation stage through a gendered semiotic register: the feminine as the locus of desire, attachment, and worldly entanglement that threatens to bind the hero to the flesh rather than the spirit. The Lion King dissolves the gendered sign entirely and replaces it with a philosophical system, \"Hakuna Matata\", that operates as a complete counter-narrative to the hero's destiny. The temptation is semiotic in the deepest sense: it is not a person, an object, or even a moment, but a language for interpreting experience that renders responsibility invisible and contentment self-justifying. The shift from feminine figure to impersonal philosophy reflects both the film's investment in ideology as a narrative force and its departure from the gendered cosmology that Campbell's comparative mythology inherits." - } - }, - "9": { - "label": "I can't go back", - "description": "Simba tells Nala plainly that he cannot go back, and the refusal is not the reluctance of a hero who has tasted transcendence and prefers to linger in bliss, but the paralysis of one who believes himself complicit in the catastrophe he would need to repair. The weight holding him in place is guilt rather than contentment, and the paradise he clings to is not the special world's reward but a shelter from the ordinary world's judgment. His refusal is genuine and deeply felt, rooted in a lie he has carried since childhood.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "sequential": { - "label": "Early refusal of return divergence", - "rationale": "The Refusal of the Return is canonically the twelfth stage, occurring after the hero has obtained the Ultimate Boon and must decide whether to bring it back. In The Lion King, the refusal surfaces at narrative position nine, before the Atonement with the Father and the Apotheosis, embedded within the Initiation act rather than opening the Return. This displacement reflects the film's particular architecture of guilt: Simba's reluctance to return does not stem from having achieved transcendence and preferring to remain in bliss, but from having never completed the Initiation at all. His refusal is a symptom of arrested development rather than post-transformative reluctance, and it must be overcome before the remaining Initiation stages can proceed. The displacement has a cascading effect, shifting the Atonement and Apotheosis each one position forward in the narrative sequence." - } - }, - "10": { - "label": "Remember who you are", - "description": "Rafiki tracks Simba into the wilderness after his refusal of Nala's plea and leads him to the edge of a still pool, where an invitation to look harder at his own reflection yields not his face but his father's. The vision does not stop there: the sky cracks open and Mufasa's ghostly form fills the clouds above him, calling down to his son across the boundary that death has placed between them. The dead king does not console, instead he names what the years of exile have cost: the slow dissolution of identity that comfort and avoidance have accomplished and the distance between the lion Simba has become and the one he actually is, closing with a charge that is simultaneously a command, a recognition, and an act of love, demanding that Simba recover the self he has abandoned.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father" - }, - "11": { - "label": "I know what I have to do", - "description": "Simba tells Rafiki that he knows what he must do, but acknowledges that going back means facing his past. Rafiki strikes him over the head with his stick and asks what it matters, since it is in the past. The moment of divine knowledge is rendered as a sudden, visceral clarity rather than a sustained state of blissful rest: Simba does not transcend the categories of his existence so much as he finally accepts them, recognizing that the pain he has been fleeing is the very ground on which he must build. He turns toward the Pride Lands and begins to run.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis" - }, - "12": { - "label": "We're going to fight your uncle for this?", - "description": "Simba races across the savanna toward the Pride Lands with Nala, Timon, and Pumbaa joining the charge. The journey inverts the canonical flight: the hero does not flee the special world carrying a prize, but rather hurtles toward the site of his unresolved trauma carrying nothing but recovered intention. The devastation he encounters on arrival confirms the urgency: the Pride Lands under Scar's reign have become a wasteland of stripped earth and bleached bone, the kingdom's decay a visible measure of how long the hero's absence has lasted.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "narrative": { - "label": "Flight as advance divergence", - "rationale": "The hero advances toward the source of his unresolved trauma rather than fleeing from it, empty-handed and unpursued. The canonical figure escapes the special world bearing a stolen prize with the guardians of the inner realm at his heels; here the directional logic is reversed at every register. The peril lies at the destination rather than in what trails behind, and the propelling force is the gravity of confrontation rather than of escape. The traversal between worlds is preserved, but its tension is redistributed from the space being left to the space being entered." - }, - "sequential": { - "label": "Flight toward danger divergence", - "rationale": "The stage is pulled earlier than its canonical placement, arriving before the climactic prize is won rather than after. The displacement belongs to a broader compression where the prize itself is deferred toward the journey's end, forcing the surrounding stages to contract and rearrange. The traversal thus enters a region where the conventional order has been folded into a single integrated push toward confrontation and recovery, rather than preserved as a discrete movement following the achievement of the quest." - } - }, - "13": { - "label": "Simba, you have to help us", - "description": "The battle for Pride Rock becomes a collective effort. Timon and Pumbaa create a diversionary hula dance to scatter the hyena sentries. Nala leads the lionesses into open combat. Rafiki dispatches opponents with his ceremonial staff. The rescue is not an extraction of the hero from peril but the convergence of every community that shaped him, exile companions and natal pride alike, fighting together on his behalf. The hero who had once been told he was alone in his guilt discovers that he has never been without allies, and that the two worlds of his divided life are willing to unite behind his cause.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without" - }, - "14": { - "label": "Tell them the truth", - "description": "Scar corners Simba at the edge of Pride Rock and forces him to confess before the pride that he killed Mufasa, savoring the repetition of his original manipulation. But when Simba dangles over the flames and Scar whispers the truth, that he himself killed Mufasa, the revelation shatters the psychic architecture that has held the hero captive since childhood. Simba surges back and forces the public confession that liberates him. The ultimate boon is not an object or a power but a truth: the hero's innocence, restored to him in the same instant that the kingdom's betrayal is made visible to all.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon", - "sequential": { - "label": "Boon during return divergence", - "rationale": "The Ultimate Boon is canonically the eleventh stage, closing the Initiation act. In The Lion King it arrives after the Magic Flight and the Rescue from Without have already begun the Return sequence. This displacement of three positions is the most significant sequential divergence in the film's monomyth realization. The Initiation's climactic achievement is deferred into the Return because the boon, Simba's innocence and the public unmasking of Scar, is locationally and socially bound: it can only be obtained at Pride Rock, before the assembled pride, in the presence of the villain whose confession produces it. The narrative thus braids the end of Initiation into the middle of Return, collapsing the two acts into a single dramatic sequence." - }, - "semiotic": { - "label": "Boon as public revelation divergence", - "rationale": "The prize takes the form of a truth that exists only in the moment of its public utterance, with no being apart from the audience and adversary at whose meeting it is spoken into existence. The canonical archetype imagines this acquisition as a portable artifact, a grail, an elixir, a fire, that the hero seizes within the special world and carries back to the community left behind. The shift is from material relic to performative disclosure, from a thing brought home to a thing brought into being, available only at the threshold where it is said." - } - }, - "15": { - "label": "It is time", - "description": "With Scar defeated and cast from Pride Rock, Rafiki approaches Simba and gestures toward the summit with three quiet words: it is time. Simba ascends the rain-slicked promontory alone, each step a visible integration of the exile's hard-won self-knowledge with the prince's inherited obligation. At the peak he roars into the storm, and the assembled pride roars in answer. The threshold is not a boundary between two worlds but a vertical axis between earth and sky, and crossing it requires the hero to stand where his father once stood, claiming the place not as an inheritor but as one who has earned it through suffering, loss, and return.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold" - }, - "16": { - "label": "A king's time rises and falls like the sun", - "description": "The rain falls on the scorched Pride Lands and green begins to return, the landscape itself responding to the restoration of rightful sovereignty. Simba now holds both registers of his experience simultaneously: the carefree wisdom of the jungle years, which taught him that not everything requires gravity, and the weight of the crown, which demands that some things do. Mufasa's early teaching that a king's time rises and falls like the sun is no longer an abstraction but a lived truth. The hero who fled one world and was absorbed by another has returned as the equilibrium point between them, neither denying his exile nor being defined by it.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds" - }, - "17": { - "label": "The Circle of Life", - "description": "The film closes by returning to its opening image: Rafiki lifts a newborn cub above the assembled kingdom at the summit of Pride Rock as the sun rises and the animals gather below in recognition. The circle of life has completed one full revolution. Simba stands where Mufasa once stood, no longer fearing the cycle of succession that once seemed to demand his father's erasure. The freedom the hero has attained is not freedom from mortality or obligation but freedom within them: the capacity to occupy his place in the cycle without clinging to it, knowing that his own time too will rise and fall, and that the pattern will hold.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live" + } + ] + }, + "kg-modal-lion-king": { + "ttlFile": "the-lion-king.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/the-lion-king/monomyths/simba-journey", + "label": "Simba's Hero's Journey in The Lion King", + "stages": { + "1": { + "label": "Everything the light touches", + "description": "Mufasa leads the young Simba to the summit of Pride Rock at dawn and reveals the kingdom spread before them, declaring that everything the light touches belongs to their domain and will one day pass to Simba as king. The call is not a rupture in the ordinary world but a formal investiture of destiny delivered by the reigning authority himself, framing the hero's journey as the assumption of an inherited obligation rather than the pursuit of an unknown summons.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", + "semiotic": { + "label": "Investiture as call divergence", + "rationale": "Campbell's call to adventure is frequently marked by rupture: an intrusion, summons, or destabilizing event that tears the hero from the ordinary world toward an unknown domain. The Lion King reframes this sign-system as dynastic investiture rather than disruption. Mufasa's lesson on Pride Rock functions as a ceremonial transmission of sovereignty, where destiny is formally named within the existing social order rather than announced from outside it. The semiotic center of the call shifts from external interruption to institutional designation: the hero is not recruited away from home but positioned within a lineage, a territory, and a law of responsibility that already precedes him. The divergence preserves Campbell's structural function, initiating the journey through binding obligation, while relocating its meaning from adventurous departure to inherited vocation." + } + }, + "2": { + "label": "The great kings will always be there to guide you", + "description": "On the evening before the stampede, Mufasa tells Simba that the great kings of the past look down from the stars and will always be there to guide him. The lesson is intimate and tender, embedded in a father-son conversation about bravery rather than delivered as a ritual endowment of magical instruments. Its full significance lies dormant throughout the hero's exile, activating only when Rafiki leads Simba to the reflecting pool and the ghostly vision that completes the circuit between mortal teaching and ancestral intervention.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "sequential": { + "label": "Aid before crisis divergence", + "rationale": "Mufasa's lesson about the great kings arrives embedded in the ordinary world before the crisis that will shatter it, rather than appearing after the hero has crossed the threshold and entered the special world. The aid is further split across two temporal moments separated by the entire arc of exile: the cosmological framework is planted here as a quiet paternal intimacy, but it lies dormant for years until Rafiki's shamanic mediation and Mufasa's ghostly apparition activate it during the atonement." + }, + "semiotic": { + "label": "Ancestral cosmology divergence", + "rationale": "Campbell's supernatural aid typically takes the form of a wizard, crone, ferryman, or divine messenger who equips the hero with specific talismans or wisdom before the threshold is crossed. The Lion King replaces this Western mythological inventory with an African cosmological framework in which the dead persist as ancestral presences embedded in the natural world itself, watching from the stars and accessible through shamanic mediation. The aid is not a discrete gift bestowed by a singular figure but a continuous spiritual infrastructure that the hero must learn to perceive and trust. The semiotic shift from individual magical helper to communal ancestral network reframes the supernatural as relational rather than transactional, and the aid as something the hero must grow into rather than simply receive." + } + }, + "3": { + "label": "What have you done?", + "description": "Scar orchestrates Mufasa's death in the wildebeest stampede and immediately turns to the traumatized cub with a calculated accusation: what has Simba done? The prince, who had been lured into the gorge as bait, internalizes the guilt completely and accepts that he is responsible for his father's death. The refusal of the call is not the hero's independent hesitation before the unknown but a manufactured psychic wound imposed by the Shadow, converting Simba's eagerness into shame and his birthright into a burden he believes he has forfeited.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Manufactured exile divergence", + "rationale": "Campbell's refusal typically originates in the hero's own psyche: fear, attachment, inadequacy, or simple inertia. The Lion King externalizes the mechanism entirely: Scar engineers both the trauma (Mufasa's murder) and the interpretive frame (Simba's guilt), manufacturing a refusal that the hero experiences as authentic self-judgment but that is in fact an act of narrative sabotage by the Shadow. This produces a refusal that is at once more absolute and more fragile than the canonical form: absolute because Simba's guilt is total and unquestioned for years, fragile because it rests on a factual lie that, once exposed, dissolves the refusal entirely. The divergence reflects the film's investment in deception as a structural engine, where the hero's journey is arrested not by his own limitations but by a false story imposed upon him." + } + }, + "4": { + "label": "Run away and never return", + "description": "Scar commands the grief-stricken cub to flee the Pride Lands and never return, then dispatches the hyenas to ensure the exile is permanent. Simba runs blindly through thornbush and scrubland until the grasslands give way to open desert. The crossing is not a heroic commitment to adventure but a panicked flight driven by manufactured guilt, and the threshold itself is marked not by a guardian's challenge but by the landscape's indifference: the Pride Lands simply end, and the emptiness beyond offers no welcome and no promise.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "You're an outcast, that's great, so are we", + "description": "Simba collapses in the desert and is discovered near death by Timon and Pumbaa, who revive him and recognize in his exile a mirror of their own marginality. The prince who was to inherit a kingdom is swallowed whole by anonymity: his royal identity is irrelevant in the jungle, his past is actively suppressed, and the community that adopts him values him precisely for what he no longer claims to be. The symbolic death of the former self is achieved not through violence or containment but through the gentler annihilation of simply being forgotten.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" + }, + "6": { + "label": "Hakuna Matata", + "description": "The film compresses Simba's entire adolescence and early adulthood into a musical montage of carefree indulgence: eating grubs, sleeping in the open, swimming in waterfalls, growing from cub to full-maned lion without crisis or conflict. The road of trials is inverted into a road of pleasures, where the ordeal is not suffering but the absence of it, and the danger lies in the progressive erosion of purpose that comfort produces. Each year of untroubled contentment deepens Simba's distance from his identity and makes the eventual return more difficult, not less.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", + "narrative": { + "label": "Idyll as ordeal divergence", + "rationale": "Campbell's road of trials strips the hero of illusions through suffering, failure, and encounter with forces greater than the self. The Lion King replaces this gauntlet with an extended paradise: years of ease, friendship, and philosophical contentment that never once test Simba's physical courage. The ordeal is hidden inside the comfort, operating as a slow anaesthetic that numbs the hero's sense of purpose and identity without his awareness. The film suggests that the most dangerous trial is not the one that breaks the hero but the one that never arrives, leaving the hero intact but hollow, capable but unmotivated, and progressively less able to recognize the difference between peace and avoidance." + } + }, + "7": { + "label": "Can you feel the love tonight", + "description": "Nala arrives in the jungle unexpectedly, and the reunion between the two childhood friends unfolds into romantic recognition over the course of a single evening. The encounter restores something Simba had lost access to, a witness to his real identity who knew him before exile redefined him. Nala embodies the nurturing totality Campbell describes not through divine abstraction but through the concrete insistence that Simba is still the lion she grew up with, and that the kingdom he abandoned still needs him.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "semiotic": { + "label": "Goddess as relational recognition divergence", + "rationale": "Campbell's meeting with the goddess is often coded through a mythic or numinous feminine figure who mediates totality, unconditional affirmation, and a glimpse of ontological wholeness. The Lion King preserves that structural function but translates its sign system from divine apparition to relational recognition: Nala is not a supernatural goddess, but a historical witness who knows Simba before, during, and against the identity fracture produced by exile. Her significance is goddess-like in effect rather than in ontology. She restores to the hero an image of himself that neither guilt nor self-erasure can fully destroy, and she binds eros, memory, and ethical vocation into one encounter. The semiotic shift is from transcendental feminine symbol to intersubjective recognition, retaining Campbell's integrative meaning while grounding it in social relation, political responsibility, and the concrete world of the Pride Lands." + } + }, + "8": { + "label": "You're not the Simba I remember", + "description": "Nala confronts Simba with the devastation Scar has wrought on the Pride Lands and demands he return to reclaim the throne. The temptation the hero faces is not a seductive figure but the entire worldview he has internalized during exile: Hakuna Matata, the philosophy of no worries and no responsibility, which now functions as an ideology of avoidance dressed in the language of liberation. Simba's resistance to Nala's plea reveals how deeply the years of comfortable denial have rooted, making the temptation structural rather than personal and the seduction a matter of identity rather than desire.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "narrative": { + "label": "Philosophy as seduction divergence", + "rationale": "The temptation that arrests Simba's journey is not embodied in a seductive figure but in a comprehensive worldview. Hakuna Matata functions as a complete ethical system that reframes irresponsibility as wisdom and disengagement as enlightenment, offering the hero not momentary pleasure but a permanent alternative identity. The seduction is therefore structural rather than episodic: Simba does not resist a single encounter but must reject an entire way of being that he has practiced for years and that his closest companions sincerely endorse. This makes the temptation both more insidious and more sympathetic than Campbell's archetype typically allows, because the philosophy is not malicious. It is simply insufficient for someone whose obligations extend beyond himself." + }, + "semiotic": { + "label": "Temptation as worldview divergence", + "rationale": "Campbell encodes the temptation stage through a gendered semiotic register: the feminine as the locus of desire, attachment, and worldly entanglement that threatens to bind the hero to the flesh rather than the spirit. The Lion King dissolves the gendered sign entirely and replaces it with a philosophical system, \"Hakuna Matata\", that operates as a complete counter-narrative to the hero's destiny. The temptation is semiotic in the deepest sense: it is not a person, an object, or even a moment, but a language for interpreting experience that renders responsibility invisible and contentment self-justifying. The shift from feminine figure to impersonal philosophy reflects both the film's investment in ideology as a narrative force and its departure from the gendered cosmology that Campbell's comparative mythology inherits." + } + }, + "9": { + "label": "I can't go back", + "description": "Simba tells Nala plainly that he cannot go back, and the refusal is not the reluctance of a hero who has tasted transcendence and prefers to linger in bliss, but the paralysis of one who believes himself complicit in the catastrophe he would need to repair. The weight holding him in place is guilt rather than contentment, and the paradise he clings to is not the special world's reward but a shelter from the ordinary world's judgment. His refusal is genuine and deeply felt, rooted in a lie he has carried since childhood.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "sequential": { + "label": "Early refusal of return divergence", + "rationale": "The Refusal of the Return is canonically the twelfth stage, occurring after the hero has obtained the Ultimate Boon and must decide whether to bring it back. In The Lion King, the refusal surfaces at narrative position nine, before the Atonement with the Father and the Apotheosis, embedded within the Initiation act rather than opening the Return. This displacement reflects the film's particular architecture of guilt: Simba's reluctance to return does not stem from having achieved transcendence and preferring to remain in bliss, but from having never completed the Initiation at all. His refusal is a symptom of arrested development rather than post-transformative reluctance, and it must be overcome before the remaining Initiation stages can proceed. The displacement has a cascading effect, shifting the Atonement and Apotheosis each one position forward in the narrative sequence." } + }, + "10": { + "label": "Remember who you are", + "description": "Rafiki tracks Simba into the wilderness after his refusal of Nala's plea and leads him to the edge of a still pool, where an invitation to look harder at his own reflection yields not his face but his father's. The vision does not stop there: the sky cracks open and Mufasa's ghostly form fills the clouds above him, calling down to his son across the boundary that death has placed between them. The dead king does not console, instead he names what the years of exile have cost: the slow dissolution of identity that comfort and avoidance have accomplished and the distance between the lion Simba has become and the one he actually is, closing with a charge that is simultaneously a command, a recognition, and an act of love, demanding that Simba recover the self he has abandoned.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father" + }, + "11": { + "label": "I know what I have to do", + "description": "Simba tells Rafiki that he knows what he must do, but acknowledges that going back means facing his past. Rafiki strikes him over the head with his stick and asks what it matters, since it is in the past. The moment of divine knowledge is rendered as a sudden, visceral clarity rather than a sustained state of blissful rest: Simba does not transcend the categories of his existence so much as he finally accepts them, recognizing that the pain he has been fleeing is the very ground on which he must build. He turns toward the Pride Lands and begins to run.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" + }, + "12": { + "label": "We're going to fight your uncle for this?", + "description": "Simba races across the savanna toward the Pride Lands with Nala, Timon, and Pumbaa joining the charge. The journey inverts the canonical flight: the hero does not flee the special world carrying a prize, but rather hurtles toward the site of his unresolved trauma carrying nothing but recovered intention. The devastation he encounters on arrival confirms the urgency: the Pride Lands under Scar's reign have become a wasteland of stripped earth and bleached bone, the kingdom's decay a visible measure of how long the hero's absence has lasted.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "narrative": { + "label": "Flight as advance divergence", + "rationale": "The hero advances toward the source of his unresolved trauma rather than fleeing from it, empty-handed and unpursued. The canonical figure escapes the special world bearing a stolen prize with the guardians of the inner realm at his heels; here the directional logic is reversed at every register. The peril lies at the destination rather than in what trails behind, and the propelling force is the gravity of confrontation rather than of escape. The traversal between worlds is preserved, but its tension is redistributed from the space being left to the space being entered." + }, + "sequential": { + "label": "Flight toward danger divergence", + "rationale": "The stage is pulled earlier than its canonical placement, arriving before the climactic prize is won rather than after. The displacement belongs to a broader compression where the prize itself is deferred toward the journey's end, forcing the surrounding stages to contract and rearrange. The traversal thus enters a region where the conventional order has been folded into a single integrated push toward confrontation and recovery, rather than preserved as a discrete movement following the achievement of the quest." + } + }, + "13": { + "label": "Simba, you have to help us", + "description": "The battle for Pride Rock becomes a collective effort. Timon and Pumbaa create a diversionary hula dance to scatter the hyena sentries. Nala leads the lionesses into open combat. Rafiki dispatches opponents with his ceremonial staff. The rescue is not an extraction of the hero from peril but the convergence of every community that shaped him, exile companions and natal pride alike, fighting together on his behalf. The hero who had once been told he was alone in his guilt discovers that he has never been without allies, and that the two worlds of his divided life are willing to unite behind his cause.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" + }, + "14": { + "label": "Tell them the truth", + "description": "Scar corners Simba at the edge of Pride Rock and forces him to confess before the pride that he killed Mufasa, savoring the repetition of his original manipulation. But when Simba dangles over the flames and Scar whispers the truth, that he himself killed Mufasa, the revelation shatters the psychic architecture that has held the hero captive since childhood. Simba surges back and forces the public confession that liberates him. The ultimate boon is not an object or a power but a truth: the hero's innocence, restored to him in the same instant that the kingdom's betrayal is made visible to all.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", + "sequential": { + "label": "Boon during return divergence", + "rationale": "The Ultimate Boon is canonically the eleventh stage, closing the Initiation act. In The Lion King it arrives after the Magic Flight and the Rescue from Without have already begun the Return sequence. This displacement of three positions is the most significant sequential divergence in the film's monomyth realization. The Initiation's climactic achievement is deferred into the Return because the boon, Simba's innocence and the public unmasking of Scar, is locationally and socially bound: it can only be obtained at Pride Rock, before the assembled pride, in the presence of the villain whose confession produces it. The narrative thus braids the end of Initiation into the middle of Return, collapsing the two acts into a single dramatic sequence." + }, + "semiotic": { + "label": "Boon as public revelation divergence", + "rationale": "The prize takes the form of a truth that exists only in the moment of its public utterance, with no being apart from the audience and adversary at whose meeting it is spoken into existence. The canonical archetype imagines this acquisition as a portable artifact, a grail, an elixir, a fire, that the hero seizes within the special world and carries back to the community left behind. The shift is from material relic to performative disclosure, from a thing brought home to a thing brought into being, available only at the threshold where it is said." + } + }, + "15": { + "label": "It is time", + "description": "With Scar defeated and cast from Pride Rock, Rafiki approaches Simba and gestures toward the summit with three quiet words: it is time. Simba ascends the rain-slicked promontory alone, each step a visible integration of the exile's hard-won self-knowledge with the prince's inherited obligation. At the peak he roars into the storm, and the assembled pride roars in answer. The threshold is not a boundary between two worlds but a vertical axis between earth and sky, and crossing it requires the hero to stand where his father once stood, claiming the place not as an inheritor but as one who has earned it through suffering, loss, and return.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" + }, + "16": { + "label": "A king's time rises and falls like the sun", + "description": "The rain falls on the scorched Pride Lands and green begins to return, the landscape itself responding to the restoration of rightful sovereignty. Simba now holds both registers of his experience simultaneously: the carefree wisdom of the jungle years, which taught him that not everything requires gravity, and the weight of the crown, which demands that some things do. Mufasa's early teaching that a king's time rises and falls like the sun is no longer an abstraction but a lived truth. The hero who fled one world and was absorbed by another has returned as the equilibrium point between them, neither denying his exile nor being defined by it.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" + }, + "17": { + "label": "The Circle of Life", + "description": "The film closes by returning to its opening image: Rafiki lifts a newborn cub above the assembled kingdom at the summit of Pride Rock as the sun rises and the animals gather below in recognition. The circle of life has completed one full revolution. Simba stands where Mufasa once stood, no longer fearing the cycle of succession that once seemed to demand his father's erasure. The freedom the hero has attained is not freedom from mortality or obligation but freedom within them: the capacity to occupy his place in the cycle without clinging to it, knowing that his own time too will rise and fall, and that the pattern will hold.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } - ] - }, - "kg-modal-call-of-wild": { - "ttlFile": "the-call-of-the-wild.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/the-call-of-the-wild/monomyths/buck-journey", - "label": "Buck's Hero's Journey in The Call of the Wild", - "stages": { - "1": { - "label": "Stolen from sun and soft living", - "description": "Buck lives as the undisputed lord of Judge Miller's estate in the Santa Clara Valley: swimming, hunting, carrying the grandchildren on his back. One night Manuel, the gardener's helper, slips a rope around Buck's neck and delivers him to a stranger at the railroad station. Buck is crated, loaded onto a train, transferred to a truck, and shipped northward, his world collapsing into the darkness and confinement of a cage he does not understand and cannot escape.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure", - "semiotic": { - "label": "Abduction as summons divergence", - "rationale": "Buck's ordinary world is shattered not by a sign or a messenger but by a rope, a crate, and a train. No agent of destiny speaks to him; the universe rearranges itself around him through economic violence motivated by gold-rush demand for strong dogs. The semiotic register shifts from the numinous to the mercantile, from a summons freighted with vocation to a commercial transaction in which the hero is the commodity. The structural function is fully preserved, the familiar world is irrevocably disrupted, but the vocabulary through which disruption is encoded belongs entirely to the language of property and exchange rather than the language of fate." - } - }, - "2": { - "label": "A red-eyed devil", - "description": "Delivered to a man in a red sweater in a yard behind a saloon in Seattle, Buck explodes from his crate in a fury of teeth and muscle. He charges the man again and again, a red-eyed devil snarling and frothing, and is clubbed to the ground each time until he can no longer stand. He is not broken, but he has learned something fundamental: a man with a club is a lawgiver to be obeyed, though not necessarily conciliated.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Resistance not refusal divergence", - "rationale": "Buck fights the man in the red sweater not because he hesitates before a destined journey but because he has been kidnapped and beaten, and the only response his nature permits is violence. There is no psychological interiority to his resistance, no weighing of options, no recognition that a call has been issued, because a non-human protagonist cannot refuse a summons he does not conceptually apprehend. The resistance functions as a refusal only retrospectively, once the journey's shape becomes legible, and the lesson Buck extracts from defeat, obedience to superior force, is a survival adaptation rather than a decision to engage with destiny. Where the archetype expects a hero who knows what is being asked and turns away, London offers an animal who has no framework for understanding what is happening to him and fights on instinct alone." - } - }, - "3": { - "label": "The law of club and fang", - "description": "Fran\u00e7ois and Perrault buy Buck and harness him to the sled team. The experienced dogs Dave and Sol-leks teach him through proximity and imitation: how to pull in trace, how to dig a sleeping hole in the snow, how to break ice from between his toes. The lesson of the man in the red sweater deepens into a general law. Brute force governs this world, and survival belongs to those who learn its grammar quickly and adapt without sentimentality.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "semiotic": { - "label": "Violence as instruction divergence", - "rationale": "Buck's preparation for the threshold takes the form of brutal pedagogy: club blows from the man in the red sweater and the imitative example of dogs who have already adapted. The protective, gift-bearing figure traditional to the archetype is replaced by an indifferent environment that teaches through consequences rather than through care. The semiotic register is coercive and Darwinian where the archetype expects the sacred and the benevolent, yet the structural function endures with precision: the hero receives exactly what is needed to survive the crossing. What shifts is the sign system, from talisman to trauma, from endowment to discipline, reflecting London's naturalist conviction that the world instructs through force, not generosity." - } - }, - "4": { - "label": "That first day on the Dyea beach", - "description": "Buck steps off the deck of the Narwhal onto the Dyea beach in Alaska and the known world ends. The snow under his feet is the first he has ever touched. Dogs are fighting savagely around him, and within minutes he watches Curly, a friendly Newfoundland he had befriended on the ship, knocked down and torn apart by the pack. The lesson is immediate and absolute: fall and you are finished, for this is the law of club and fang extended to its conclusion.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "Where had the snow-surface gone?", - "description": "After his first day of pulling in harness, Buck searches desperately for shelter. The tent is closed to him; the snow offers nothing. He stumbles over a mound and discovers his teammates buried beneath the surface, warm in their snow-nests. He digs his own hole and sleeps. In the morning he wakes in total darkness, panics, and bursts upward through the snow into the grey dawn. For a moment he has no idea where or what he is. The dog who slept on the Judge's hearth has been swallowed by a world that buries its inhabitants each night and demands they claw their way back to the surface each morning.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale" - }, - "6": { - "label": "The dominant primordial beast", - "description": "Buck learns to steal food without getting caught, to sleep warm in the deepest cold, to break trail through crusted snow. He grows cunning and efficient, every wasted movement shed. The rivalry with Spitz sharpens across weeks of escalating confrontation until they fight in the open under the aurora, and Buck kills him, claiming the lead position. He serves under Fran\u00e7ois and Perrault, then under a Scotch half-breed on the mail run, then under Hal, Charles, and Mercedes, whose ignorance starves the team and drives them into the spring ice. Each master strips another layer of the domestic animal away, exposing something older and harder underneath.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "7": { - "label": "Love genuine and true", - "description": "Hal beats Buck to force him onto the rotten spring ice. Buck refuses to move. John Thornton steps in, cuts Buck's traces, and tells Hal to leave or be hit himself. Hal's party drives on and the ice gives way beneath them. Thornton nurses Buck back to health, and what grows between them is described as love, fervid and burning, that runs deeper than anything Buck has known: he will lie for hours at Thornton's feet gazing up at his face, and Thornton will seize Buck's head, rest his own against it, and shake him back and forth murmuring soft curses as endearments. Buck saves Thornton from drowning in a river rapid. He wins Thornton a thousand-dollar wager by breaking a half-ton sled free from the ice by sheer pulling force.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "semiotic": { - "label": "Interspecies love as totality divergence", - "rationale": "The nurturing totality that reveals the deepest ground of existence to the hero takes the form of interspecies devotion between a dog and a rugged male frontiersman. The semiotic shift operates on three axes simultaneously: gendered, since the archetype's feminine divine figure becomes a masculine human companion; ontological, since the encounter crosses the species boundary rather than the boundary between mortal and divine; and in register, since rough physical affection and murmured curses as endearments replace the numinous and the sacred. Thornton's love is nonetheless the most complete acceptance Buck has ever known, preserving the structural function with remarkable precision while conducting it entirely through London's naturalist vocabulary of embodied loyalty and physical interdependence." - } - }, - "8": { - "label": "The call sounding in the depths of the forest", - "description": "While Thornton prospects for gold in a lost valley, Buck ranges farther and farther into the surrounding wilderness. He hunts, fishes, runs alongside a timber wolf for days, and each time the pull of the forest grows stronger. Yet each time he returns to Thornton's camp, because the love he bears this one man outweighs the instinct calling him outward. The pattern repeats across weeks and months: departure, deepening immersion in the wild, and then the gravitational pull of devotion dragging him back to the campfire. What holds the hero in place is not comfort or ignorance but the purest bond he possesses.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "semiotic": { - "label": "Fidelity as seduction divergence", - "rationale": "The force holding Buck at the campfire is not desire or worldly comfort but the single most admirable quality he possesses: his love for Thornton. The semiotic register encodes temptation as interspecies loyalty rather than feminine allure or sensual entanglement, so that resisting the call and betraying the hero's deepest bond become, for the duration of Thornton's life, the same act." - } - }, - "9": { - "label": "The hairy man crouching by the fire", - "description": "As Buck sleeps by the campfire, visions surface with increasing vividness. He sees a short-legged, hairy man crouching beside a different fire in a different age, fearful of the darkness beyond the flame's reach. He dreams of running with this figure through primeval forests, of hunting in vast open spaces, of the terror and the exhilaration of a world before domestication. The visions are not willed; they arrive as ancestral memory asserting itself through the body's deep time, and they grow more insistent and more detailed as the weeks pass until the boundary between Buck's waking life and the evolutionary past thins almost to transparency.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "semiotic": { - "label": "Evolutionary memory as father divergence", - "rationale": "The paternal authority that Buck must confront and absorb is not a singular figure but the entire evolutionary past of his species, accessed through involuntary visions during sleep rather than through a dramatic face-to-face reckoning. The semiotic register shifts from the personal and the patriarchal to the biological and the collective: the throne room becomes a campfire in deep time, judgment becomes the pressure of natural selection, and the hero's wilful submission to a father's power becomes an involuntary yielding to instinct encoded in the body itself. The encounter is diffuse and cumulative where the archetype demands concentrated crisis, its authority distributed across weeks of deepening visionary experience rather than compressed into a single transformative confrontation." - } - }, - "10": { - "label": "Patient as the wild itself", - "description": "Buck selects a great bull moose, wounded and separated from the herd, and hunts it alone across four days and four nights. He cuts the moose off from water, harasses it when it rests, drives away the younger bulls that try to rejoin it, and waits with a patience that is no longer a dog's patience but something far older. When the moose finally collapses, Buck kills it and feeds, then rests beside the carcass for a day and a night, utterly at home in the silence. Every faculty he possesses, the strength, the cunning, the endurance, the ancestral instinct, converges in this single sustained act, and what emerges from it is not the animal who entered the hunt but something more complete.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis" - }, - "11": { - "label": "The blood-longing", - "description": "Buck returns from the moose hunt to find Thornton's camp destroyed. The Yeehats have killed Thornton, Hans, and Pete, and their dogs lie dead or dying by the wrecked campsite. Buck follows the scent trail to the Yeehat camp and attacks, tearing through the group with a fury that scatters those it does not kill. He returns to the ruined camp and stays beside Thornton's body through the night. What has been obtained is not an object, a power, or a piece of wisdom carried back from the special world, but total severance: the single bond that held the hero to the human world is gone, and with it every reason to remain anything other than what the journey has been making him.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon", - "narrative": { - "label": "Boon through severance divergence", - "rationale": "Thornton's death does not give Buck something new but removes the final obstacle to what he has already become. The supreme achievement of the journey is defined by subtraction rather than acquisition: the severing of the one attachment still powerful enough to arrest the transformation, not a grail or an elixir seized from the depths and carried home. The narrative economy is inverted accordingly. Rather than producing a portable treasure that the hero must transport back across the threshold, the entire arc of initiation produces a creature who no longer needs, or is able, to carry anything back. The boon and the loss are the same event, and the hero's reward is indistinguishable from the destruction of everything that once tethered him to the world he is leaving behind." - } - }, - "12": { - "label": "The last tie was broken", - "description": "A wolf pack emerges from the forest and Buck confronts them, fighting off the boldest until the pack recognizes his strength and accepts him. The last tie to the human world has been broken. There is no hesitation, no backward glance, no lingering at the threshold between worlds. Buck joins the pack and runs.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Permanent refusal divergence", - "rationale": "Buck achieves his destiny by refusing to return, and the refusal is never overcome because it is not an obstacle within the journey but the journey's conclusion. The novel's one-way trajectory, from civilization toward wildness without reversal, transforms what is conventionally a transient hesitation, soon dissolved by dramatic necessity or external intervention, into a permanent condition. The distinction between refusing the return and completing the journey collapses entirely. A circular architecture in which the hero must bring the boon home is structurally incompatible with a story whose central argument is that the hero's true home was always the place civilization taught him to forget, and that arriving there is not a detour from the path but the path's destination." - } - }, - "13": { - "label": "The trail runs only forward", - "description": null, - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "narrative": { - "label": "Absent flight divergence", - "rationale": "Buck has seized nothing portable and flees from nothing. His transformation is not an artefact that can be stolen or pursued but an ontological change that the special world has produced in him, irreversible and non-transferable. No guardians give chase because the wild does not lose what it claims; it gains a member. A perilous escape carrying a hard-won prize presupposes a hero whose trajectory bends homeward, and Buck's trajectory bends only deeper into the territory he is becoming part of. The directionality that the stage requires is simply unavailable to this narrative." - } - }, - "14": { - "label": "No voice calls him back", - "description": null, - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "narrative": { - "label": "Absent rescue divergence", - "rationale": "The sole human who might have reached across the threshold to retrieve Buck is dead, and no other figure from the domestic world has either the knowledge or the motivation to attempt it. The absence is not an omission but a thematic necessity rooted in London's naturalist framework: the forces acting on an organism are impersonal and irreversible, nature does not yield its converts back to civilization, and sentimental retrieval is simply not available as a narrative possibility. A community invested in the hero's return would require a world that misses him, and by this point the only world that registers Buck's presence is the one he has joined, not the one he has left." - } - }, - "15": { - "label": "The Ghost Dog", - "description": "Each year when the days grow long, Buck visits the valley where Thornton died. He stands motionless beside the stream for a time, muzzle raised, then howls once, long and mournful, before returning to the pack. The Yeehats speak of a Ghost Dog that haunts the valley and kills any hunter who camps there alone. The threshold is crossed, but in the wrong direction: the hero has not returned from the special world into the ordinary one but has passed permanently beyond the boundary that separates them, re-entering the ordinary world only as a phantom, a rumour, a figure of dread.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold", - "narrative": { - "label": "Inverted return divergence", - "rationale": "Buck crosses the threshold permanently in the wrong direction. His annual return to the valley where Thornton died is not a re-entry into the human world but a ritual visitation from outside it, witnessed only as absence, the empty valley, and aftermath, dead hunters who ventured too close. Rather than dissolving the boundary between worlds through hard-won mastery, the crossing reinforces it: the threshold now separates a ghost from the living rather than a traveller from home. The inversion is the novel's most direct structural claim against the circular journey. Buck's nature runs counter to the trajectory of human civilisation, and authentic freedom, London insists, lies in completing the crossing rather than reversing it." - } - }, - "16": { - "label": "Fear and mystery", - "description": "The Yeehats alter their hunting routes to avoid the haunted valley and weave the Ghost Dog into their legends: a spectral beast of enormous size that runs at the head of the wolf pack. Buck exists simultaneously as the sovereign of the wild pack and as a figure in human oral tradition, inhabiting both worlds not through choice or mastery but through the ineradicable trace his passage has left on each. He does not mediate between the two realms; he is simply, irreducibly present in both, one as flesh and one as story.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds", - "narrative": { - "label": "Mastery without consciousness divergence", - "rationale": "Buck inhabits both worlds simultaneously but without awareness or intention: he is sovereign of the wolf pack in one and a figure of dread woven into Yeehat oral tradition in the other. The two presences are entirely disconnected. Buck does not mediate between realms or move freely across the boundary; the human world constructs a myth around his absence while he lives indifferent to it. What looks like dual mastery is an accident of narrative perspective rather than something the hero achieves." - } - }, - "17": { - "label": "Running at the head of the pack", - "description": "Buck runs at the head of the wolf pack through the pale moonlight, splashing through broad flats of shallow water where the timber wolves drink. He sings a song of the younger world, a song of the pack. He is fully alive, fully present, released from the domesticated past and unburdened by any obligation to return to it. The freedom he possesses is not the freedom of a hero who has reconciled two worlds but the freedom of one who has chosen entirely, surrendered nothing he still wanted, and arrived at the place the entire journey was leading him.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live" + } + ] + }, + "kg-modal-call-of-wild": { + "ttlFile": "the-call-of-the-wild.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/the-call-of-the-wild/monomyths/buck-journey", + "label": "Buck's Hero's Journey in The Call of the Wild", + "stages": { + "1": { + "label": "Stolen from sun and soft living", + "description": "Buck lives as the undisputed lord of Judge Miller's estate in the Santa Clara Valley: swimming, hunting, carrying the grandchildren on his back. One night Manuel, the gardener's helper, slips a rope around Buck's neck and delivers him to a stranger at the railroad station. Buck is crated, loaded onto a train, transferred to a truck, and shipped northward, his world collapsing into the darkness and confinement of a cage he does not understand and cannot escape.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", + "semiotic": { + "label": "Abduction as summons divergence", + "rationale": "Buck's ordinary world is shattered not by a sign or a messenger but by a rope, a crate, and a train. No agent of destiny speaks to him; the universe rearranges itself around him through economic violence motivated by gold-rush demand for strong dogs. The semiotic register shifts from the numinous to the mercantile, from a summons freighted with vocation to a commercial transaction in which the hero is the commodity. The structural function is fully preserved, the familiar world is irrevocably disrupted, but the vocabulary through which disruption is encoded belongs entirely to the language of property and exchange rather than the language of fate." + } + }, + "2": { + "label": "A red-eyed devil", + "description": "Delivered to a man in a red sweater in a yard behind a saloon in Seattle, Buck explodes from his crate in a fury of teeth and muscle. He charges the man again and again, a red-eyed devil snarling and frothing, and is clubbed to the ground each time until he can no longer stand. He is not broken, but he has learned something fundamental: a man with a club is a lawgiver to be obeyed, though not necessarily conciliated.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Resistance not refusal divergence", + "rationale": "Buck fights the man in the red sweater not because he hesitates before a destined journey but because he has been kidnapped and beaten, and the only response his nature permits is violence. There is no psychological interiority to his resistance, no weighing of options, no recognition that a call has been issued, because a non-human protagonist cannot refuse a summons he does not conceptually apprehend. The resistance functions as a refusal only retrospectively, once the journey's shape becomes legible, and the lesson Buck extracts from defeat, obedience to superior force, is a survival adaptation rather than a decision to engage with destiny. Where the archetype expects a hero who knows what is being asked and turns away, London offers an animal who has no framework for understanding what is happening to him and fights on instinct alone." + } + }, + "3": { + "label": "The law of club and fang", + "description": "Fran\u00e7ois and Perrault buy Buck and harness him to the sled team. The experienced dogs Dave and Sol-leks teach him through proximity and imitation: how to pull in trace, how to dig a sleeping hole in the snow, how to break ice from between his toes. The lesson of the man in the red sweater deepens into a general law. Brute force governs this world, and survival belongs to those who learn its grammar quickly and adapt without sentimentality.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "semiotic": { + "label": "Violence as instruction divergence", + "rationale": "Buck's preparation for the threshold takes the form of brutal pedagogy: club blows from the man in the red sweater and the imitative example of dogs who have already adapted. The protective, gift-bearing figure traditional to the archetype is replaced by an indifferent environment that teaches through consequences rather than through care. The semiotic register is coercive and Darwinian where the archetype expects the sacred and the benevolent, yet the structural function endures with precision: the hero receives exactly what is needed to survive the crossing. What shifts is the sign system, from talisman to trauma, from endowment to discipline, reflecting London's naturalist conviction that the world instructs through force, not generosity." + } + }, + "4": { + "label": "That first day on the Dyea beach", + "description": "Buck steps off the deck of the Narwhal onto the Dyea beach in Alaska and the known world ends. The snow under his feet is the first he has ever touched. Dogs are fighting savagely around him, and within minutes he watches Curly, a friendly Newfoundland he had befriended on the ship, knocked down and torn apart by the pack. The lesson is immediate and absolute: fall and you are finished, for this is the law of club and fang extended to its conclusion.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "Where had the snow-surface gone?", + "description": "After his first day of pulling in harness, Buck searches desperately for shelter. The tent is closed to him; the snow offers nothing. He stumbles over a mound and discovers his teammates buried beneath the surface, warm in their snow-nests. He digs his own hole and sleeps. In the morning he wakes in total darkness, panics, and bursts upward through the snow into the grey dawn. For a moment he has no idea where or what he is. The dog who slept on the Judge's hearth has been swallowed by a world that buries its inhabitants each night and demands they claw their way back to the surface each morning.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" + }, + "6": { + "label": "The dominant primordial beast", + "description": "Buck learns to steal food without getting caught, to sleep warm in the deepest cold, to break trail through crusted snow. He grows cunning and efficient, every wasted movement shed. The rivalry with Spitz sharpens across weeks of escalating confrontation until they fight in the open under the aurora, and Buck kills him, claiming the lead position. He serves under Fran\u00e7ois and Perrault, then under a Scotch half-breed on the mail run, then under Hal, Charles, and Mercedes, whose ignorance starves the team and drives them into the spring ice. Each master strips another layer of the domestic animal away, exposing something older and harder underneath.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "7": { + "label": "Love genuine and true", + "description": "Hal beats Buck to force him onto the rotten spring ice. Buck refuses to move. John Thornton steps in, cuts Buck's traces, and tells Hal to leave or be hit himself. Hal's party drives on and the ice gives way beneath them. Thornton nurses Buck back to health, and what grows between them is described as love, fervid and burning, that runs deeper than anything Buck has known: he will lie for hours at Thornton's feet gazing up at his face, and Thornton will seize Buck's head, rest his own against it, and shake him back and forth murmuring soft curses as endearments. Buck saves Thornton from drowning in a river rapid. He wins Thornton a thousand-dollar wager by breaking a half-ton sled free from the ice by sheer pulling force.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "semiotic": { + "label": "Interspecies love as totality divergence", + "rationale": "The nurturing totality that reveals the deepest ground of existence to the hero takes the form of interspecies devotion between a dog and a rugged male frontiersman. The semiotic shift operates on three axes simultaneously: gendered, since the archetype's feminine divine figure becomes a masculine human companion; ontological, since the encounter crosses the species boundary rather than the boundary between mortal and divine; and in register, since rough physical affection and murmured curses as endearments replace the numinous and the sacred. Thornton's love is nonetheless the most complete acceptance Buck has ever known, preserving the structural function with remarkable precision while conducting it entirely through London's naturalist vocabulary of embodied loyalty and physical interdependence." + } + }, + "8": { + "label": "The call sounding in the depths of the forest", + "description": "While Thornton prospects for gold in a lost valley, Buck ranges farther and farther into the surrounding wilderness. He hunts, fishes, runs alongside a timber wolf for days, and each time the pull of the forest grows stronger. Yet each time he returns to Thornton's camp, because the love he bears this one man outweighs the instinct calling him outward. The pattern repeats across weeks and months: departure, deepening immersion in the wild, and then the gravitational pull of devotion dragging him back to the campfire. What holds the hero in place is not comfort or ignorance but the purest bond he possesses.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "semiotic": { + "label": "Fidelity as seduction divergence", + "rationale": "The force holding Buck at the campfire is not desire or worldly comfort but the single most admirable quality he possesses: his love for Thornton. The semiotic register encodes temptation as interspecies loyalty rather than feminine allure or sensual entanglement, so that resisting the call and betraying the hero's deepest bond become, for the duration of Thornton's life, the same act." } + }, + "9": { + "label": "The hairy man crouching by the fire", + "description": "As Buck sleeps by the campfire, visions surface with increasing vividness. He sees a short-legged, hairy man crouching beside a different fire in a different age, fearful of the darkness beyond the flame's reach. He dreams of running with this figure through primeval forests, of hunting in vast open spaces, of the terror and the exhilaration of a world before domestication. The visions are not willed; they arrive as ancestral memory asserting itself through the body's deep time, and they grow more insistent and more detailed as the weeks pass until the boundary between Buck's waking life and the evolutionary past thins almost to transparency.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "semiotic": { + "label": "Evolutionary memory as father divergence", + "rationale": "The paternal authority that Buck must confront and absorb is not a singular figure but the entire evolutionary past of his species, accessed through involuntary visions during sleep rather than through a dramatic face-to-face reckoning. The semiotic register shifts from the personal and the patriarchal to the biological and the collective: the throne room becomes a campfire in deep time, judgment becomes the pressure of natural selection, and the hero's wilful submission to a father's power becomes an involuntary yielding to instinct encoded in the body itself. The encounter is diffuse and cumulative where the archetype demands concentrated crisis, its authority distributed across weeks of deepening visionary experience rather than compressed into a single transformative confrontation." + } + }, + "10": { + "label": "Patient as the wild itself", + "description": "Buck selects a great bull moose, wounded and separated from the herd, and hunts it alone across four days and four nights. He cuts the moose off from water, harasses it when it rests, drives away the younger bulls that try to rejoin it, and waits with a patience that is no longer a dog's patience but something far older. When the moose finally collapses, Buck kills it and feeds, then rests beside the carcass for a day and a night, utterly at home in the silence. Every faculty he possesses, the strength, the cunning, the endurance, the ancestral instinct, converges in this single sustained act, and what emerges from it is not the animal who entered the hunt but something more complete.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" + }, + "11": { + "label": "The blood-longing", + "description": "Buck returns from the moose hunt to find Thornton's camp destroyed. The Yeehats have killed Thornton, Hans, and Pete, and their dogs lie dead or dying by the wrecked campsite. Buck follows the scent trail to the Yeehat camp and attacks, tearing through the group with a fury that scatters those it does not kill. He returns to the ruined camp and stays beside Thornton's body through the night. What has been obtained is not an object, a power, or a piece of wisdom carried back from the special world, but total severance: the single bond that held the hero to the human world is gone, and with it every reason to remain anything other than what the journey has been making him.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", + "narrative": { + "label": "Boon through severance divergence", + "rationale": "Thornton's death does not give Buck something new but removes the final obstacle to what he has already become. The supreme achievement of the journey is defined by subtraction rather than acquisition: the severing of the one attachment still powerful enough to arrest the transformation, not a grail or an elixir seized from the depths and carried home. The narrative economy is inverted accordingly. Rather than producing a portable treasure that the hero must transport back across the threshold, the entire arc of initiation produces a creature who no longer needs, or is able, to carry anything back. The boon and the loss are the same event, and the hero's reward is indistinguishable from the destruction of everything that once tethered him to the world he is leaving behind." + } + }, + "12": { + "label": "The last tie was broken", + "description": "A wolf pack emerges from the forest and Buck confronts them, fighting off the boldest until the pack recognizes his strength and accepts him. The last tie to the human world has been broken. There is no hesitation, no backward glance, no lingering at the threshold between worlds. Buck joins the pack and runs.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Permanent refusal divergence", + "rationale": "Buck achieves his destiny by refusing to return, and the refusal is never overcome because it is not an obstacle within the journey but the journey's conclusion. The novel's one-way trajectory, from civilization toward wildness without reversal, transforms what is conventionally a transient hesitation, soon dissolved by dramatic necessity or external intervention, into a permanent condition. The distinction between refusing the return and completing the journey collapses entirely. A circular architecture in which the hero must bring the boon home is structurally incompatible with a story whose central argument is that the hero's true home was always the place civilization taught him to forget, and that arriving there is not a detour from the path but the path's destination." + } + }, + "13": { + "label": "The trail runs only forward", + "description": null, + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "narrative": { + "label": "Absent flight divergence", + "rationale": "Buck has seized nothing portable and flees from nothing. His transformation is not an artefact that can be stolen or pursued but an ontological change that the special world has produced in him, irreversible and non-transferable. No guardians give chase because the wild does not lose what it claims; it gains a member. A perilous escape carrying a hard-won prize presupposes a hero whose trajectory bends homeward, and Buck's trajectory bends only deeper into the territory he is becoming part of. The directionality that the stage requires is simply unavailable to this narrative." + } + }, + "14": { + "label": "No voice calls him back", + "description": null, + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "narrative": { + "label": "Absent rescue divergence", + "rationale": "The sole human who might have reached across the threshold to retrieve Buck is dead, and no other figure from the domestic world has either the knowledge or the motivation to attempt it. The absence is not an omission but a thematic necessity rooted in London's naturalist framework: the forces acting on an organism are impersonal and irreversible, nature does not yield its converts back to civilization, and sentimental retrieval is simply not available as a narrative possibility. A community invested in the hero's return would require a world that misses him, and by this point the only world that registers Buck's presence is the one he has joined, not the one he has left." + } + }, + "15": { + "label": "The Ghost Dog", + "description": "Each year when the days grow long, Buck visits the valley where Thornton died. He stands motionless beside the stream for a time, muzzle raised, then howls once, long and mournful, before returning to the pack. The Yeehats speak of a Ghost Dog that haunts the valley and kills any hunter who camps there alone. The threshold is crossed, but in the wrong direction: the hero has not returned from the special world into the ordinary one but has passed permanently beyond the boundary that separates them, re-entering the ordinary world only as a phantom, a rumour, a figure of dread.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", + "narrative": { + "label": "Inverted return divergence", + "rationale": "Buck crosses the threshold permanently in the wrong direction. His annual return to the valley where Thornton died is not a re-entry into the human world but a ritual visitation from outside it, witnessed only as absence, the empty valley, and aftermath, dead hunters who ventured too close. Rather than dissolving the boundary between worlds through hard-won mastery, the crossing reinforces it: the threshold now separates a ghost from the living rather than a traveller from home. The inversion is the novel's most direct structural claim against the circular journey. Buck's nature runs counter to the trajectory of human civilisation, and authentic freedom, London insists, lies in completing the crossing rather than reversing it." + } + }, + "16": { + "label": "Fear and mystery", + "description": "The Yeehats alter their hunting routes to avoid the haunted valley and weave the Ghost Dog into their legends: a spectral beast of enormous size that runs at the head of the wolf pack. Buck exists simultaneously as the sovereign of the wild pack and as a figure in human oral tradition, inhabiting both worlds not through choice or mastery but through the ineradicable trace his passage has left on each. He does not mediate between the two realms; he is simply, irreducibly present in both, one as flesh and one as story.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", + "narrative": { + "label": "Mastery without consciousness divergence", + "rationale": "Buck inhabits both worlds simultaneously but without awareness or intention: he is sovereign of the wolf pack in one and a figure of dread woven into Yeehat oral tradition in the other. The two presences are entirely disconnected. Buck does not mediate between realms or move freely across the boundary; the human world constructs a myth around his absence while he lives indifferent to it. What looks like dual mastery is an accident of narrative perspective rather than something the hero achieves." + } + }, + "17": { + "label": "Running at the head of the pack", + "description": "Buck runs at the head of the wolf pack through the pale moonlight, splashing through broad flats of shallow water where the timber wolves drink. He sings a song of the younger world, a song of the pack. He is fully alive, fully present, released from the domesticated past and unburdened by any obligation to return to it. The freedom he possesses is not the freedom of a hero who has reconciled two worlds but the freedom of one who has chosen entirely, surrendered nothing he still wanted, and arrived at the place the entire journey was leading him.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } - ] - }, - "kg-modal-rostam": { - "ttlFile": "rostam-haft-khan.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/rostam-haft-khan/monomyths/rostam-journey", - "label": "Rostam's Hero's Journey (19-Step Chronology)", - "stages": { - "1": { - "label": "The Plea from Mazandaran", - "description": "After the death of King Kay Qobad, the greedy King Kay Kavus takes the throne. A demon singer sent by Ahriman lulls him with songs of Mazandaran's beauty, prompting Kavus to invade. The invasion ends in disaster when the White Demon rains stones on the army and strikes them blind with sorcery. Imprisoned in a pit, Kavus smuggles a letter to Zal, begging for Rostam to come and save the army and the crown.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure" - }, - "2": { - "label": "Rostam's Immediate Acceptance", - "description": "The narrative contains no hesitation or refusal. Rostam, already a fully realized epic hero, responds immediately to the Shah's plea. His choice of the more dangerous 'Short Path' reinforces that the story prioritizes heroic duty and action over psychological conflict, making refusal structurally incompatible with the narrative.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call" - }, - "3": { - "label": "Zal's Gifts and Rakhsh's Loyalty", - "description": "Zal provides Rostam with his heavy mace and leopard-skin armor (Babr-e Bayan) which is invulnerable to fire and water. Most importantly, Rostam is aided by his legendary steed, Rakhsh, a horse of incredible strength and intelligence who can kill lions and fight alongside his master.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "narrative": { - "label": "The Intervention of Rakhsh", - "rationale": "Aid is provided not only by a mentor but by a sentient animal ally who possesses independent agency and saves the hero multiple times." - } - }, - "4": { - "label": "The Edge of Mazandaran", - "description": "Rostam leaves the Iranian court and enters the borderlands of Mazandaran. By choosing the 'Short Path' beset with baleful things, he moves away from the safe world into a land of sorcery. Rakhsh gallops so fast that the ground vanishes beneath them, covering a two-day journey in twelve hours.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "Sleep in the Lion's Lair", - "description": "Exhausted, Rostam makes a couch among the reeds to sleep, unaware that he has laid down in the lair of a fierce lion. This moment of deep, unprotected slumber in the heart of enemy territory represents his total immersion in the danger of Mazandaran, where his human awareness is completely suspended.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "semiotic": { - "label": "The Marshland Ordeal", - "rationale": "The 'whale' is not a physical interior but the semiotic state of deep sleep in a predator-filled marshland, marking the threshold of death." - } - }, - "6": { - "label": "The Lion, the Ram, and the Dragon's Attack", - "description": "Labor 1: While Rostam sleeps, a lion attacks. Rakhsh independently fights and kills the beast by stomping its head and biting its neck. Labor 2: Rostam collapses in the desert from thirst; after he prays, a fat wild ram appears, and he follows it to a hidden spring. Labor 3: An eighty-foot dragon attacks his camp thrice. Initially invisible, God eventually grants Rostam light to see the beast, allowing him to decapitate it while Rakhsh bites its scales.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials", - "semiotic": { - "label": "The Appearance of the Ram", - "rationale": "Khan 2 is a trial of faith; victory is delivered via a semiotic sign (the ram) rather than the hero's own strength." - } - }, - "7": { - "label": "Absence of a Feminine Archetype", - "description": "The narrative not only lacks a nurturing feminine figure but actively inverts the archetype. The only prominent feminine presence is a demonic sorceress who deceives and attacks Rostam. This replaces the 'Goddess' as a source of unity or wisdom with a figure of illusion and danger, reflecting the epic's moral polarity rather than symbolic integration.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess" - }, - "8": { - "label": "The Sorceress's Deception", - "description": "Labor 4: Rostam finds a magical banquet with wine and a lyre. He plays and sings of his wanderings. A sorceress disguised as a beautiful damsel joins him. However, when Rostam offers her wine in the name of the Creator (Ormuzd), the holy name forces her to reveal her true, hideous form. Rostam lassos the demon-witch and cleaves her in half with his sword.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "semiotic": { - "label": "The Invocation of God", - "rationale": "Temptation is broken through the name of the Creator, framing the stage as an ontological reveal of the demonic rather than a moral struggle." - } - }, - "9": { - "label": "Captivity and Conquest of Olad", - "description": "Labor 5: After Rostam lets Rakhsh graze in a field, the keeper beats Rostam's feet with a stick. Rostam wakes and tears the man's ears off. The champion Olad (Aulad) arrives with an army to avenge the keeper. Rostam routs the army single-handedly, lassos Olad, and binds him, promising him the throne of Mazandaran if he acts as a guide to find the White Demon's cave.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials", - "narrative": { - "label": "Olad as a Conquered Herald", - "rationale": "Rostam 'seizes' his guidance from the enemy world by conquering and binding Olad, forcing the Shadow to serve as his Herald." - }, - "sequential": { - "label": "Recurring Ordeals", - "rationale": "The trials recur after the Temptress stage, violating the linear progression assumed in the canonical monomyth." - } - }, - "10": { - "label": "The Defeat of Arzhang", - "description": "Labor 6: Olad leads Rostam to the camp of the demon general Arzhang. Rostam lets out a roar that shakes the mountains, gallops to Arzhang's tent, tears the demon out by his hair, and rips his head from his shoulders. He hurls the severed head at the demon army, causing 12,000 demons to flee in panic.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials", - "sequential": { - "label": "Recurring Ordeals", - "rationale": "The trials recur after the Temptress stage, violating the linear progression assumed in the canonical monomyth." - } - }, - "11": { - "label": "Releasing Kay Kavus from the Pit", - "description": "Rostam enters the pit and finds the blind King Kay Kavus. The King, now desperate and repentant, explains that the only cure for their blindness is the blood from the heart and liver of the White Demon. Rostam accepts this final command from his sovereign, setting the stage for the final confrontation.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "narrative": { - "label": "The Blind King's Ignorance", - "rationale": "The hero does not submit to a powerful father but rescues a blind and foolish one, restoring the authority he has surpassed." - } - }, - "12": { - "label": "The Death of the White Demon", - "description": "Labor 7: Rostam enters the pitch-black cave of the White Demon at noon when the demons sleep. He awakens the mountain-sized giant and they wrestle with such force that blood and sweat run like rivers. Rostam prays to God for strength, lifts the demon, and slams him down, cutting out his liver and heart.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis" - }, - "13": { - "label": "The Restoration of Sight", - "description": "Rostam returns to the blind Shah and his lords. He drops the blood of the White Demon's liver into their eyes. Instantly, the sorcery is broken, and the sight of the King and the entire Iranian army is restored, granting them the 'elixir' of vision and life.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon" - }, - "14": { - "label": "Immediate Departure from Mazandaran", - "description": "Rostam shows no hesitation in returning; he views the demon realm of Mazanderan as a land of filth and sorcery. His duty to Iran and the King necessitates an immediate exit to restore the legitimate order at home, leaving no room for a desire to stay in the supernatural realm.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return" - }, - "15": { - "label": "Defeat of the King of Mazandaran", - "description": "The King of Mazandaran refuses to yield and challenges Rostam. During their duel, the King uses magic to turn his body into an unbreakable stone. Rostam simply picks up the 'King-Stone' and carries it to camp, threatening to grind it to dust with his mace until the King is forced to revert to human form.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "narrative": { - "label": "The Defeat of the Stone King", - "rationale": "The flight is interrupted by the King of Mazandaran's transformation into stone, requiring a demonstration of mastery over both worlds to resolve." - } - }, - "16": { - "label": "Rostam's Self-Rescue", - "description": "As the 'World-Champion', Rostam is the source of rescue for everyone else; he is so powerful that there is no external force capable of rescuing him. His journey out of Mazanderan is secured through his own military might and dominance over the demons.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without" - }, - "17": { - "label": "The Victorious Return to Iran", - "description": "Rostam and King Kay Kavus return to the Iranian capital, Estakhr. The crossing of the threshold back into the 'Ordinary World' is a grand celebration; the populace fills the streets, throwing gold and wine over the heroes to welcome the restoration of the rightful Shah and the return of their champion.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold" - }, - "18": { - "label": "Fulfillment of the Promise to Olad", - "description": "Rostam fulfills his promise to Olad, giving him the crown of Mazandaran. By doing so, he establishes order in the land of demons while returning to Iran as its savior, having mastered the supernatural perils of Mazandaran and the political duties of the Iranian court.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds", - "narrative": { - "label": "Ruling Mazandaran", - "rationale": "Mastery is expressed through the political appointment of a demon-ally (Olad) and the restoration of a human king." - } - }, - "19": { - "label": "The Celebration of Victory", - "description": "The Shah and Rostam return to the capital, Estakhr, to a hero's welcome of gold and wine. The land is at peace, and Rostam returns to Sistan, having restored the freedom of his nation and the sight of its King.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live" + } + ] + }, + "kg-modal-rostam": { + "ttlFile": "rostam-haft-khan.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/rostam-haft-khan/monomyths/rostam-journey", + "label": "Rostam's Hero's Journey (19-Step Chronology)", + "stages": { + "1": { + "label": "The Plea from Mazandaran", + "description": "After the death of King Kay Qobad, the greedy King Kay Kavus takes the throne. A demon singer sent by Ahriman lulls him with songs of Mazandaran's beauty, prompting Kavus to invade. The invasion ends in disaster when the White Demon rains stones on the army and strikes them blind with sorcery. Imprisoned in a pit, Kavus smuggles a letter to Zal, begging for Rostam to come and save the army and the crown.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" + }, + "2": { + "label": "Rostam's Immediate Acceptance", + "description": "The narrative contains no hesitation or refusal. Rostam, already a fully realized epic hero, responds immediately to the Shah's plea. His choice of the more dangerous 'Short Path' reinforces that the story prioritizes heroic duty and action over psychological conflict, making refusal structurally incompatible with the narrative.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" + }, + "3": { + "label": "Zal's Gifts and Rakhsh's Loyalty", + "description": "Zal provides Rostam with his heavy mace and leopard-skin armor (Babr-e Bayan) which is invulnerable to fire and water. Most importantly, Rostam is aided by his legendary steed, Rakhsh, a horse of incredible strength and intelligence who can kill lions and fight alongside his master.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "narrative": { + "label": "The Intervention of Rakhsh", + "rationale": "Aid is provided not only by a mentor but by a sentient animal ally who possesses independent agency and saves the hero multiple times." + } + }, + "4": { + "label": "The Edge of Mazandaran", + "description": "Rostam leaves the Iranian court and enters the borderlands of Mazandaran. By choosing the 'Short Path' beset with baleful things, he moves away from the safe world into a land of sorcery. Rakhsh gallops so fast that the ground vanishes beneath them, covering a two-day journey in twelve hours.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "Sleep in the Lion's Lair", + "description": "Exhausted, Rostam makes a couch among the reeds to sleep, unaware that he has laid down in the lair of a fierce lion. This moment of deep, unprotected slumber in the heart of enemy territory represents his total immersion in the danger of Mazandaran, where his human awareness is completely suspended.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "semiotic": { + "label": "The Marshland Ordeal", + "rationale": "The 'whale' is not a physical interior but the semiotic state of deep sleep in a predator-filled marshland, marking the threshold of death." + } + }, + "6": { + "label": "The Lion, the Ram, and the Dragon's Attack", + "description": "Labor 1: While Rostam sleeps, a lion attacks. Rakhsh independently fights and kills the beast by stomping its head and biting its neck. Labor 2: Rostam collapses in the desert from thirst; after he prays, a fat wild ram appears, and he follows it to a hidden spring. Labor 3: An eighty-foot dragon attacks his camp thrice. Initially invisible, God eventually grants Rostam light to see the beast, allowing him to decapitate it while Rakhsh bites its scales.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", + "semiotic": { + "label": "The Appearance of the Ram", + "rationale": "Khan 2 is a trial of faith; victory is delivered via a semiotic sign (the ram) rather than the hero's own strength." + } + }, + "7": { + "label": "Absence of a Feminine Archetype", + "description": "The narrative not only lacks a nurturing feminine figure but actively inverts the archetype. The only prominent feminine presence is a demonic sorceress who deceives and attacks Rostam. This replaces the 'Goddess' as a source of unity or wisdom with a figure of illusion and danger, reflecting the epic's moral polarity rather than symbolic integration.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess" + }, + "8": { + "label": "The Sorceress's Deception", + "description": "Labor 4: Rostam finds a magical banquet with wine and a lyre. He plays and sings of his wanderings. A sorceress disguised as a beautiful damsel joins him. However, when Rostam offers her wine in the name of the Creator (Ormuzd), the holy name forces her to reveal her true, hideous form. Rostam lassos the demon-witch and cleaves her in half with his sword.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "semiotic": { + "label": "The Invocation of God", + "rationale": "Temptation is broken through the name of the Creator, framing the stage as an ontological reveal of the demonic rather than a moral struggle." + } + }, + "9": { + "label": "Captivity and Conquest of Olad", + "description": "Labor 5: After Rostam lets Rakhsh graze in a field, the keeper beats Rostam's feet with a stick. Rostam wakes and tears the man's ears off. The champion Olad (Aulad) arrives with an army to avenge the keeper. Rostam routs the army single-handedly, lassos Olad, and binds him, promising him the throne of Mazandaran if he acts as a guide to find the White Demon's cave.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", + "narrative": { + "label": "Olad as a Conquered Herald", + "rationale": "Rostam 'seizes' his guidance from the enemy world by conquering and binding Olad, forcing the Shadow to serve as his Herald." + }, + "sequential": { + "label": "Recurring Ordeals", + "rationale": "The trials recur after the Temptress stage, violating the linear progression assumed in the canonical monomyth." + } + }, + "10": { + "label": "The Defeat of Arzhang", + "description": "Labor 6: Olad leads Rostam to the camp of the demon general Arzhang. Rostam lets out a roar that shakes the mountains, gallops to Arzhang's tent, tears the demon out by his hair, and rips his head from his shoulders. He hurls the severed head at the demon army, causing 12,000 demons to flee in panic.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", + "sequential": { + "label": "Recurring Ordeals", + "rationale": "The trials recur after the Temptress stage, violating the linear progression assumed in the canonical monomyth." + } + }, + "11": { + "label": "Releasing Kay Kavus from the Pit", + "description": "Rostam enters the pit and finds the blind King Kay Kavus. The King, now desperate and repentant, explains that the only cure for their blindness is the blood from the heart and liver of the White Demon. Rostam accepts this final command from his sovereign, setting the stage for the final confrontation.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "narrative": { + "label": "The Blind King's Ignorance", + "rationale": "The hero does not submit to a powerful father but rescues a blind and foolish one, restoring the authority he has surpassed." + } + }, + "12": { + "label": "The Death of the White Demon", + "description": "Labor 7: Rostam enters the pitch-black cave of the White Demon at noon when the demons sleep. He awakens the mountain-sized giant and they wrestle with such force that blood and sweat run like rivers. Rostam prays to God for strength, lifts the demon, and slams him down, cutting out his liver and heart.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" + }, + "13": { + "label": "The Restoration of Sight", + "description": "Rostam returns to the blind Shah and his lords. He drops the blood of the White Demon's liver into their eyes. Instantly, the sorcery is broken, and the sight of the King and the entire Iranian army is restored, granting them the 'elixir' of vision and life.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" + }, + "14": { + "label": "Immediate Departure from Mazandaran", + "description": "Rostam shows no hesitation in returning; he views the demon realm of Mazanderan as a land of filth and sorcery. His duty to Iran and the King necessitates an immediate exit to restore the legitimate order at home, leaving no room for a desire to stay in the supernatural realm.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return" + }, + "15": { + "label": "Defeat of the King of Mazandaran", + "description": "The King of Mazandaran refuses to yield and challenges Rostam. During their duel, the King uses magic to turn his body into an unbreakable stone. Rostam simply picks up the 'King-Stone' and carries it to camp, threatening to grind it to dust with his mace until the King is forced to revert to human form.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "narrative": { + "label": "The Defeat of the Stone King", + "rationale": "The flight is interrupted by the King of Mazandaran's transformation into stone, requiring a demonstration of mastery over both worlds to resolve." } + }, + "16": { + "label": "Rostam's Self-Rescue", + "description": "As the 'World-Champion', Rostam is the source of rescue for everyone else; he is so powerful that there is no external force capable of rescuing him. His journey out of Mazanderan is secured through his own military might and dominance over the demons.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" + }, + "17": { + "label": "The Victorious Return to Iran", + "description": "Rostam and King Kay Kavus return to the Iranian capital, Estakhr. The crossing of the threshold back into the 'Ordinary World' is a grand celebration; the populace fills the streets, throwing gold and wine over the heroes to welcome the restoration of the rightful Shah and the return of their champion.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" + }, + "18": { + "label": "Fulfillment of the Promise to Olad", + "description": "Rostam fulfills his promise to Olad, giving him the crown of Mazandaran. By doing so, he establishes order in the land of demons while returning to Iran as its savior, having mastered the supernatural perils of Mazandaran and the political duties of the Iranian court.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", + "narrative": { + "label": "Ruling Mazandaran", + "rationale": "Mastery is expressed through the political appointment of a demon-ally (Olad) and the restoration of a human king." + } + }, + "19": { + "label": "The Celebration of Victory", + "description": "The Shah and Rostam return to the capital, Estakhr, to a hero's welcome of gold and wine. The land is at peace, and Rostam returns to Sistan, having restored the freedom of his nation and the sight of its King.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } - ] - }, - "kg-modal-waltermitty": { - "ttlFile": "walter-mitty.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/walter-mitty/monomyths/walter-journey", - "label": "Walter Mitty's Hero's Journey", - "stages": { - "1": { - "label": "Negative 25 is missing", - "description": "Walter Mitty works in the basement photo department of Life magazine as the negative assets manager, carefully cataloguing and processing the work of famous photojournalists while living a deeply repetitive life defined by routine, silence, and elaborate daydreams. He quietly admires Cheryl Melhoff, a coworker in Life Magazine, in online dating profile management, but lacks the confidence even to send her a proper wink through eHarmony because his profile appears empty and unremarkable. At the same time, Life is preparing its final print issue as the company transitions to digital under the supervision of Ted Hendricks, whose restructuring threatens Walter's department. When renowned photographer Sean O'Connell sends his final roll of negatives along with a leather wallet as a personal gift, his note identifies negative #25 as the \"quintessence of life\" and insists it should be the final cover image. Walter discovers the negative is missing. Ted immediately demands its production, transforming Walter's quiet technical responsibility into a crisis that threatens both his career and the symbolic closure of the magazine.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure", - "semiotic": { - "label": "Call as Professional Crisis divergence", - "rationale": "The call is expressed through a corporate crisis involving the transition from print to digital media." - } - }, - "2": { - "label": "Daydream retreat", - "description": "Faced with Ted's pressure and unable to explain the missing image, Walter retreats into the psychological refuge that has always protected him from confrontation. Throughout the office he repeatedly dissociates into vivid heroic fantasies: imagining himself leaping through exploding buildings, confronting Ted with impossible courage, and performing acts of public confidence impossible for his ordinary self. Rather than searching actively for a solution, he delays, avoids direct answers, and lets his imagination temporarily overwrite reality. This refusal is not spoken aloud but enacted through paralysis and escapism, revealing how deeply his fantasies function as protection against action.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Internalized Refusal divergence", - "rationale": "The refusal is psychological escapism rather than a literal rejection of the call." - } - }, - "3": { - "label": "Clues and encouragement", - "description": "Cheryl notices Walter's distress and encourages him to stop viewing Sean's photographs as isolated negatives and instead read them as clues. Together they examine the remaining images: a weathered thumb bearing a distinctive ring, a fishing vessel, fragments of landscape, and small environmental details that suggest movement across distant places. Cheryl's confidence in Walter's perceptiveness gives him emotional permission to act, while Sean's gift of the wallet implies trust and recognition from someone Walter deeply admires professionally. These clues, combined with Cheryl's quiet encouragement, transform the missing negative from a bureaucratic problem into an interpretable trail.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "semiotic": { - "label": "Corporate Aid divergence", - "rationale": "A simple gift replaces traditional mythic talismans." - } - }, - "4": { - "label": "Flight to Greenland", - "description": "For the first time in years, Walter abandons hesitation and physically leaves New York. Following the photographic clues, he books a flight to Greenland and enters a world of uncertainty entirely unlike the controlled routines of the Life archive room. This departure marks a literal and symbolic crossing: he moves from observation to participation, from cataloguing other people's adventures to beginning his own.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "The Helicopter Leap", - "description": "In Nuuk, Walter tracks down a helicopter pilot whose thumb matches the ring visible in Sean's photograph. He discovers the pilot is intoxicated and preparing to deliver supplies to a ship where Sean had recently been. Terrified and standing on the dock, Walter hesitates. In this suspended moment, he imagines Cheryl appearing and singing David Bowie's \"Space Oddity\", the fantasy transforming his fear into resolve. He boards the helicopter. Mid-flight, he must jump toward the ship below but misjudges the leap and crashes into the freezing North Atlantic. Struggling in the icy water and narrowly escaping a shark, he is pulled aboard by the crew. The plunge functions as both literal survival ordeal and symbolic destruction of his former passive self.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "narrative": { - "label": "Atlantic Belly divergence", - "rationale": "The 'Whale' is the North Atlantic ocean, representing a literal and symbolic death of the old self." - } - }, - "6": { - "label": "Iceland trek", - "description": "Although Sean is no longer on the ship, Walter discovers a clementine cake wrapper that points toward Iceland. Pursuing this new clue, he travels to Sk\u00f3gar and continues across increasingly dangerous terrain. To move faster, he trades the Stretch Armstrong toy that his sister had bought him for his birthday, for a skateboard owned by a local teenager. He then longboards down an immense winding road through volcanic landscapes, balancing fear and exhilaration. As he races toward what he believes is Sean's location, he experiences something entirely new: confidence generated by action rather than fantasy. Yet despite reaching the region where Sean was seen, he remains just out of reach.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "7": { - "label": "Absent Meeting with the Goddess", - "description": "Unlike traditional heroic narratives, Walter experiences no direct transformative union during this phase. Cheryl remains physically absent from the adventure, existing instead as an internalized source of courage and emotional orientation. Her influence shapes Walter's decisions, but the narrative postpones any actual relational resolution, replacing the classical encounter with a deferred emotional possibility.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "narrative": { - "label": "Absent Goddess divergence", - "rationale": "The narrative omits a literal meeting with a maternal or divine goddess to prioritize Walter's grounded romantic connection and his search for an elusive mentor." - } - }, - "8": { - "label": "Volcanic retreat", - "description": "As Walter closes in on Sean's location in Iceland, a volcanic eruption destabilizes the region and interrupts his pursuit. Forced to evacuate and unable to continue, he must abandon the search and return to New York empty-handed. This interruption produces a premature collapse of the quest, not because Walter chooses retreat but because external reality imposes it, disrupting the heroic trajectory before resolution can be achieved.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "sequential": { - "label": "Premature Return divergence (volcanic eruption)", - "rationale": "A physical return occurs halfway through the journey due to external failure, interrupting the canonical sequence." - } - }, - "9": { - "label": "Fired and defeated", - "description": "Back in New York, Walter is humiliated and dismissed by Ted for failing to recover the negative. Still trying to hold onto one meaningful gesture, he visits Cheryl's home to give the skateboard he had carried back from Iceland for her son, as he was interested in skate boarding. There he sees her ex-husband present in the house and assumes she has reconciled with him. Misreading the scene as confirmation that he has failed both professionally and personally, Walter withdraws emotionally. His despair becomes a temptation to return fully to passivity and abandon the transformation he had begun.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "narrative": { - "label": "Temptation of Despair divergence", - "rationale": "The temptation is the hero's own insecurity and the urge to remain in a safe, defeated state." - } - }, - "10": { - "label": "Discarding the wallet", - "description": "Convinced that his journey has accomplished nothing, Walter visits his mother feeling defeated and directionless. In frustration and self-reproach, he throws Sean's wallet into the trash. This act symbolizes his rejection of the significance of his journey and his inability to recognize that the quest has already transformed him.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "sequential": { - "label": "Early Refusal of Life divergence", - "rationale": "The hero refuses his new identity early because he perceives his first attempt as a failure." - } - }, - "11": { - "label": "Mother's clue", - "description": "While going through family belongings, Walter stands in front of the piano his father had once bought for his mother\u2014a heavy presence in the room, now a symbol of loss as the family prepares to sell it because he has been fired from Life magazine and can no longer contribute financially. The instrument feels like both a memory and a burden, marking the quiet collapse of stability at home. As he lingers there, Walter recalls one of Sean O'Connell's clue photographs showing a piano in an unexpected setting. The connection clicks into place. He asks his mother whether Sean had ever been there, and she confirms that he had indeed visited their home. In that moment, Walter realizes he had already been given this clue before\u2014but had overlooked it entirely, just as he often overlooks reality while lost in his own thoughts. The piano, both in the photograph and in front of him now, becomes the missing link he failed to interpret. Reassembling the sequence of clues, he understands that Sean's trail leads to the Himalayas, where he is photographing the elusive snow leopard. This quiet domestic revelation becomes the turning point that pulls Walter out of defeat and sets him back into motion, reigniting the pursuit with renewed clarity and purpose.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "semiotic": { - "label": "Domestic Guide divergence", - "rationale": "The guide is the hero's mother being present to help him and remind him of the event that he has missed regarding the clues, due to being in his head and immaginations." - } - }, - "12": { - "label": "Himalayan trek", - "description": "Walter undertakes a second and more demanding journey, traveling through Afghanistan and trekking into the Himalayas. Unlike his earlier adventures, this passage is quieter and more deliberate. He no longer depends on fantasy for courage; he simply moves forward, demonstrating the practical confidence he has acquired through experience.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "13": { - "label": "The Ghost Cat", - "description": "Walter finally locates Sean high in the mountains as he waits silently for the appearance of the rare snow leopard known as the \"ghost cat\". Their meeting lacks dramatic confrontation. Instead, it unfolds through stillness, patience, and mutual recognition. Sean treats Walter not as an anonymous employee in the photo department but as someone worthy of respect, marking a subtle but profound shift in Walter's self-understanding.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "semiotic": { - "label": "Artist as Father divergence", - "rationale": "The Father is a secular artist; atonement is achieved through shared professional respect." - } - }, - "14": { - "label": "Leopard lesson", - "description": "When the snow leopard finally emerges, Sean chooses not to photograph it. He explains that some moments are too beautiful to interrupt, telling Walter that \"beautiful things don't ask for attention\". This statement reframes Walter's understanding of value. Meaning lies not in capturing or proving experience, but in inhabiting it fully. The lesson dissolves Walter's need for fantasy as compensation for absence from life.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis" - }, - "15": { - "label": "Conceptual Boon", - "description": "Sean reveals that negative #25 had been inside the wallet he gave Walter all along. When he wrote \"look inside\" in his letter, he meant it quite literally: the photograph was hidden within the wallet itself, unnoticed because Walter never thought to fully examine it. More importantly, the encounter shifts the meaning of the entire journey. The true reward is not the photograph itself, but what Walter has become through the search. In meeting Sean, he reaches a deeper understanding of himself\u2014moving from a passive observer of life to someone who actively participates in it. He gains confidence, presence, and a sense of self-worth no longer dependent on external approval or imagined heroism. This internal change is the real outcome of the quest: the conceptual boon.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon" - }, - "16": { - "label": "Airport security", - "description": "Returning from the Himalayas carrying a traditional instrument gifted by local villagers, Walter is detained by airport security in Los Angeles. Unable to easily explain his situation, he calls Todd Maher, the eHarmony representative who had earlier tried to help him complete his incomplete dating profile. Todd verifies Walter's identity and enthusiastically acknowledges the remarkable adventures Walter has now lived. The scene offers bureaucratic resistance transformed into recognition of genuine growth.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "semiotic": { - "label": "Bureaucratic Flight divergence", - "rationale": "The Magic Flight is expressed through the modern struggle of airport bureaucracy." - } - }, - "17": { - "label": "Recovery of the Negative", - "description": "Back home, Walter's mother reveals that she retrieved the discarded wallet from the trash. Opening it carefully, Walter finally finds an envelope hidden inside containing negative #25. The object he had sought across continents had been there all along, accessible only after he had undergone the internal transformation necessary to understand its meaning.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "sequential": { - "label": "Delayed Physical Attainment divergence", - "rationale": "The physical Boon is retrieved after the internal transformation is complete, reversing the typical acquisition sequence." - } - }, - "18": { - "label": "Return to Life", - "description": "Walter returns to the Life office and delivers negative #25 to the remaining staff. He directly confronts Ted Hendricks, no longer intimidated or evasive. By standing up for himself and for the dignity of the magazine's legacy, he reintegrates into his original world as a fundamentally changed person.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold" - }, - "19": { - "label": "Quintessence of Life", - "description": "When the final issue is published, Walter and Cheryl, running into each other to get their last pay check, discover the cover displayed at a newsstand. The photograph is of Walter himself sitting outside the Life building, quietly absorbed in his work. Sean had recognized in Walter's unnoticed dedication the true \"quintessence of life\". The revelation validates Walter's journey by showing that the extraordinary had always existed within the ordinary.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds" - }, - "20": { - "label": "Walking with Cheryl", - "description": "In the final moments, Walter walks beside Cheryl through New York in a calm and unremarkable scene made meaningful by his complete presence within it. He no longer drifts into fantasy because he no longer needs imagined heroism. His life has become real enough to inhabit fully, and his relationship with Cheryl now begins on authentic rather than imagined terms.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live" + } + ] + }, + "kg-modal-waltermitty": { + "ttlFile": "walter-mitty.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/walter-mitty/monomyths/walter-journey", + "label": "Walter Mitty's Hero's Journey", + "stages": { + "1": { + "label": "Negative 25 is missing", + "description": "Walter Mitty works in the basement photo department of Life magazine as the negative assets manager, carefully cataloguing and processing the work of famous photojournalists while living a deeply repetitive life defined by routine, silence, and elaborate daydreams. He quietly admires Cheryl Melhoff, a coworker in Life Magazine, in online dating profile management, but lacks the confidence even to send her a proper wink through eHarmony because his profile appears empty and unremarkable. At the same time, Life is preparing its final print issue as the company transitions to digital under the supervision of Ted Hendricks, whose restructuring threatens Walter's department. When renowned photographer Sean O'Connell sends his final roll of negatives along with a leather wallet as a personal gift, his note identifies negative #25 as the \"quintessence of life\" and insists it should be the final cover image. Walter discovers the negative is missing. Ted immediately demands its production, transforming Walter's quiet technical responsibility into a crisis that threatens both his career and the symbolic closure of the magazine.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", + "semiotic": { + "label": "Call as Professional Crisis divergence", + "rationale": "The call is expressed through a corporate crisis involving the transition from print to digital media." + } + }, + "2": { + "label": "Daydream retreat", + "description": "Faced with Ted's pressure and unable to explain the missing image, Walter retreats into the psychological refuge that has always protected him from confrontation. Throughout the office he repeatedly dissociates into vivid heroic fantasies: imagining himself leaping through exploding buildings, confronting Ted with impossible courage, and performing acts of public confidence impossible for his ordinary self. Rather than searching actively for a solution, he delays, avoids direct answers, and lets his imagination temporarily overwrite reality. This refusal is not spoken aloud but enacted through paralysis and escapism, revealing how deeply his fantasies function as protection against action.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Internalized Refusal divergence", + "rationale": "The refusal is psychological escapism rather than a literal rejection of the call." + } + }, + "3": { + "label": "Clues and encouragement", + "description": "Cheryl notices Walter's distress and encourages him to stop viewing Sean's photographs as isolated negatives and instead read them as clues. Together they examine the remaining images: a weathered thumb bearing a distinctive ring, a fishing vessel, fragments of landscape, and small environmental details that suggest movement across distant places. Cheryl's confidence in Walter's perceptiveness gives him emotional permission to act, while Sean's gift of the wallet implies trust and recognition from someone Walter deeply admires professionally. These clues, combined with Cheryl's quiet encouragement, transform the missing negative from a bureaucratic problem into an interpretable trail.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "semiotic": { + "label": "Corporate Aid divergence", + "rationale": "A simple gift replaces traditional mythic talismans." } + }, + "4": { + "label": "Flight to Greenland", + "description": "For the first time in years, Walter abandons hesitation and physically leaves New York. Following the photographic clues, he books a flight to Greenland and enters a world of uncertainty entirely unlike the controlled routines of the Life archive room. This departure marks a literal and symbolic crossing: he moves from observation to participation, from cataloguing other people's adventures to beginning his own.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "The Helicopter Leap", + "description": "In Nuuk, Walter tracks down a helicopter pilot whose thumb matches the ring visible in Sean's photograph. He discovers the pilot is intoxicated and preparing to deliver supplies to a ship where Sean had recently been. Terrified and standing on the dock, Walter hesitates. In this suspended moment, he imagines Cheryl appearing and singing David Bowie's \"Space Oddity\", the fantasy transforming his fear into resolve. He boards the helicopter. Mid-flight, he must jump toward the ship below but misjudges the leap and crashes into the freezing North Atlantic. Struggling in the icy water and narrowly escaping a shark, he is pulled aboard by the crew. The plunge functions as both literal survival ordeal and symbolic destruction of his former passive self.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "narrative": { + "label": "Atlantic Belly divergence", + "rationale": "The 'Whale' is the North Atlantic ocean, representing a literal and symbolic death of the old self." + } + }, + "6": { + "label": "Iceland trek", + "description": "Although Sean is no longer on the ship, Walter discovers a clementine cake wrapper that points toward Iceland. Pursuing this new clue, he travels to Sk\u00f3gar and continues across increasingly dangerous terrain. To move faster, he trades the Stretch Armstrong toy that his sister had bought him for his birthday, for a skateboard owned by a local teenager. He then longboards down an immense winding road through volcanic landscapes, balancing fear and exhilaration. As he races toward what he believes is Sean's location, he experiences something entirely new: confidence generated by action rather than fantasy. Yet despite reaching the region where Sean was seen, he remains just out of reach.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "7": { + "label": "Absent Meeting with the Goddess", + "description": "Unlike traditional heroic narratives, Walter experiences no direct transformative union during this phase. Cheryl remains physically absent from the adventure, existing instead as an internalized source of courage and emotional orientation. Her influence shapes Walter's decisions, but the narrative postpones any actual relational resolution, replacing the classical encounter with a deferred emotional possibility.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "narrative": { + "label": "Absent Goddess divergence", + "rationale": "The narrative omits a literal meeting with a maternal or divine goddess to prioritize Walter's grounded romantic connection and his search for an elusive mentor." + } + }, + "8": { + "label": "Volcanic retreat", + "description": "As Walter closes in on Sean's location in Iceland, a volcanic eruption destabilizes the region and interrupts his pursuit. Forced to evacuate and unable to continue, he must abandon the search and return to New York empty-handed. This interruption produces a premature collapse of the quest, not because Walter chooses retreat but because external reality imposes it, disrupting the heroic trajectory before resolution can be achieved.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "sequential": { + "label": "Premature Return divergence (volcanic eruption)", + "rationale": "A physical return occurs halfway through the journey due to external failure, interrupting the canonical sequence." + } + }, + "9": { + "label": "Fired and defeated", + "description": "Back in New York, Walter is humiliated and dismissed by Ted for failing to recover the negative. Still trying to hold onto one meaningful gesture, he visits Cheryl's home to give the skateboard he had carried back from Iceland for her son, as he was interested in skate boarding. There he sees her ex-husband present in the house and assumes she has reconciled with him. Misreading the scene as confirmation that he has failed both professionally and personally, Walter withdraws emotionally. His despair becomes a temptation to return fully to passivity and abandon the transformation he had begun.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "narrative": { + "label": "Temptation of Despair divergence", + "rationale": "The temptation is the hero's own insecurity and the urge to remain in a safe, defeated state." + } + }, + "10": { + "label": "Discarding the wallet", + "description": "Convinced that his journey has accomplished nothing, Walter visits his mother feeling defeated and directionless. In frustration and self-reproach, he throws Sean's wallet into the trash. This act symbolizes his rejection of the significance of his journey and his inability to recognize that the quest has already transformed him.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "sequential": { + "label": "Early Refusal of Life divergence", + "rationale": "The hero refuses his new identity early because he perceives his first attempt as a failure." + } + }, + "11": { + "label": "Mother's clue", + "description": "While going through family belongings, Walter stands in front of the piano his father had once bought for his mother\u2014a heavy presence in the room, now a symbol of loss as the family prepares to sell it because he has been fired from Life magazine and can no longer contribute financially. The instrument feels like both a memory and a burden, marking the quiet collapse of stability at home. As he lingers there, Walter recalls one of Sean O'Connell's clue photographs showing a piano in an unexpected setting. The connection clicks into place. He asks his mother whether Sean had ever been there, and she confirms that he had indeed visited their home. In that moment, Walter realizes he had already been given this clue before\u2014but had overlooked it entirely, just as he often overlooks reality while lost in his own thoughts. The piano, both in the photograph and in front of him now, becomes the missing link he failed to interpret. Reassembling the sequence of clues, he understands that Sean's trail leads to the Himalayas, where he is photographing the elusive snow leopard. This quiet domestic revelation becomes the turning point that pulls Walter out of defeat and sets him back into motion, reigniting the pursuit with renewed clarity and purpose.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "semiotic": { + "label": "Domestic Guide divergence", + "rationale": "The guide is the hero's mother being present to help him and remind him of the event that he has missed regarding the clues, due to being in his head and immaginations." + } + }, + "12": { + "label": "Himalayan trek", + "description": "Walter undertakes a second and more demanding journey, traveling through Afghanistan and trekking into the Himalayas. Unlike his earlier adventures, this passage is quieter and more deliberate. He no longer depends on fantasy for courage; he simply moves forward, demonstrating the practical confidence he has acquired through experience.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "13": { + "label": "The Ghost Cat", + "description": "Walter finally locates Sean high in the mountains as he waits silently for the appearance of the rare snow leopard known as the \"ghost cat\". Their meeting lacks dramatic confrontation. Instead, it unfolds through stillness, patience, and mutual recognition. Sean treats Walter not as an anonymous employee in the photo department but as someone worthy of respect, marking a subtle but profound shift in Walter's self-understanding.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "semiotic": { + "label": "Artist as Father divergence", + "rationale": "The Father is a secular artist; atonement is achieved through shared professional respect." + } + }, + "14": { + "label": "Leopard lesson", + "description": "When the snow leopard finally emerges, Sean chooses not to photograph it. He explains that some moments are too beautiful to interrupt, telling Walter that \"beautiful things don't ask for attention\". This statement reframes Walter's understanding of value. Meaning lies not in capturing or proving experience, but in inhabiting it fully. The lesson dissolves Walter's need for fantasy as compensation for absence from life.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" + }, + "15": { + "label": "Conceptual Boon", + "description": "Sean reveals that negative #25 had been inside the wallet he gave Walter all along. When he wrote \"look inside\" in his letter, he meant it quite literally: the photograph was hidden within the wallet itself, unnoticed because Walter never thought to fully examine it. More importantly, the encounter shifts the meaning of the entire journey. The true reward is not the photograph itself, but what Walter has become through the search. In meeting Sean, he reaches a deeper understanding of himself\u2014moving from a passive observer of life to someone who actively participates in it. He gains confidence, presence, and a sense of self-worth no longer dependent on external approval or imagined heroism. This internal change is the real outcome of the quest: the conceptual boon.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" + }, + "16": { + "label": "Airport security", + "description": "Returning from the Himalayas carrying a traditional instrument gifted by local villagers, Walter is detained by airport security in Los Angeles. Unable to easily explain his situation, he calls Todd Maher, the eHarmony representative who had earlier tried to help him complete his incomplete dating profile. Todd verifies Walter's identity and enthusiastically acknowledges the remarkable adventures Walter has now lived. The scene offers bureaucratic resistance transformed into recognition of genuine growth.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "semiotic": { + "label": "Bureaucratic Flight divergence", + "rationale": "The Magic Flight is expressed through the modern struggle of airport bureaucracy." + } + }, + "17": { + "label": "Recovery of the Negative", + "description": "Back home, Walter's mother reveals that she retrieved the discarded wallet from the trash. Opening it carefully, Walter finally finds an envelope hidden inside containing negative #25. The object he had sought across continents had been there all along, accessible only after he had undergone the internal transformation necessary to understand its meaning.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "sequential": { + "label": "Delayed Physical Attainment divergence", + "rationale": "The physical Boon is retrieved after the internal transformation is complete, reversing the typical acquisition sequence." + } + }, + "18": { + "label": "Return to Life", + "description": "Walter returns to the Life office and delivers negative #25 to the remaining staff. He directly confronts Ted Hendricks, no longer intimidated or evasive. By standing up for himself and for the dignity of the magazine's legacy, he reintegrates into his original world as a fundamentally changed person.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" + }, + "19": { + "label": "Quintessence of Life", + "description": "When the final issue is published, Walter and Cheryl, running into each other to get their last pay check, discover the cover displayed at a newsstand. The photograph is of Walter himself sitting outside the Life building, quietly absorbed in his work. Sean had recognized in Walter's unnoticed dedication the true \"quintessence of life\". The revelation validates Walter's journey by showing that the extraordinary had always existed within the ordinary.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" + }, + "20": { + "label": "Walking with Cheryl", + "description": "In the final moments, Walter walks beside Cheryl through New York in a calm and unremarkable scene made meaningful by his complete presence within it. He no longer drifts into fantasy because he no longer needs imagined heroism. His life has become real enough to inhabit fully, and his relationship with Cheryl now begins on authentic rather than imagined terms.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } - ] - }, - "kg-modal-batman": { - "ttlFile": "batman.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/batman-year-one/monomyths/bruce-wayne-journey", - "label": "Bruce Wayne's Hero's Journey in Batman: Year One", - "stages": { - "1": { - "label": "The Train to Gotham", - "description": "Bruce returns to Gotham after years abroad. His 'summons' is internal: the trauma of his parents' death and the decaying state of the city.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure", - "semiotic": { - "label": "Neo-Noir Secularization", - "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." - } - }, - "2": { - "label": "Disastrous East End Surveillance Mission", - "description": "During his training, Bruce hesitates, feeling unsure and aware that he must wait before acting. Despite this internal hesitation, his impatience drives him to attempt a plainclothes serveillance mission in the East End. The encounter is disastrous: he fights a pimp, is stabbed, shot by the police, and barely escapes. Bleeding in his study, his initial hesitation is violently validated. He admits he is 'not ready' because he lacks the proper method to strike fear into his enemies.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Premature Start as Refusal", - "rationale": "Traditionally, the Refusal of the Call is characterized by the hero's fear, excuses, or reluctance to leave the comfort of the Ordinary World. In this narrative, the archetype is subverted. Bruce Wayne is a 'Willing Hero' who does not hesitate out of fear, but rather rushes into the journey prematurely due to a lack of patience. His 'refusal' is not a rejection of the mission, but a forced hesitation following a brutal physical defeat. This reshapes the dramatic weight of the stage from a test of willpower into a test of methodology: the hero must fail his first attempt in order to realize that, despite his absolute commitment, something vital is missing from his approach." - } - }, - "3": { - "label": "The Bat", - "description": "As Bruce bleeds out in his study pleading to his father's memory for guidance, a massive bat crashes through the window. He interprets this violent natural event as a 'sign,' providing the psychological epiphany and the specific 'wisdom' needed to assume his vigilante identity.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "semiotic": { - "label": "Neo-Noir Secularization", - "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." - } - }, - "4": { - "label": "The Dinner Party Ambush", - "description": "Batman definitively steps 'beyond the veil of the known' by crashing a dinner party for Gotham's corrupt elite. This act represents a form of 'self-annihilation,' where Bruce Wayne kills off his former status as a harmless socialite to plunge into the mystery of his crusade. By confronting the city's power brokers, he proves he has the 'competence and courage' to operate in a zone of magnified power where ordinary rules are suspended.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold", - "narrative": { - "label": "The Hero as Aggressor", - "rationale": "Traditionally, 'threshold guardians' are dangerous custodians who defend the boundary and wait for the hero. In a narrative reversal, Batman does not wait to be challenged. Possessing total commitment, he proactively hunts the guardians (Falcone and Loeb) in their 'inmost cave.' He doesn't seek to bypass these 'watching powers' but to dominate them, ensuring there is no turning back from his mission." - }, - "semiotic": { - "label": "Neo-Noir Secularization", - "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." - } - }, - "5": { - "label": "The Tenement Siege", - "description": "Trapped in an abandoned tenement and targeted by a police firebombing, Batman undergoes a 'plunge into an unknown darkness.' As the building collapses and Commissioner Loeb presumes him dead, Bruce experiences the symbolic death of his former self. By surviving the inferno and summoning a swarm of bats to mask his exit, he allows a new, transformed identity\u2014the urban myth of the Batman\u2014to emerge from the rubble.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "semiotic": { - "label": "Neo-Noir Secularization", - "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." - } - }, - "6": { - "label": "The Distributed Road of Trials", - "description": "Bruce undergoes a succession of ordeals\u2014the East End failure, the climb up the crime ladder, the Mayor's house ambush, and the tenement siege\u2014which serve to 'purify' his methods. Crucially, during these perilous conquests, he discovers the 'benign, protecting power' of Jim Gordon. Following the tenement siege, Bruce realizes that his survival was aided by the presence of a moral equal within the system, transforming Gordon from a target into the essential ally needed to survive the trials ahead.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials", - "sequential": { - "label": "Distributed Road of Trials", - "rationale": "The Road of Trials is realized as a distributed series of events, rather than a single linear stage following the Departure. This sequential overlap allows the trials to act as the catalyst for the hero's transformation while simultaneously serving as the initiatory tests of his new identity." - } - }, - "7": { - "label": "The Encounter with Selina Kyle", - "description": "Bruce encounters Selina Kyle on the rooftops. In a typical monomyth, she would represent the 'Goddess'\u2014the totality of what can be known. However, the fit is weak: Batman views her not as a mystical union or a source of bliss, but as a tactical anomaly. She 'ruins the moment' rather than bestowing mastery, proving that Bruce's heart is reserved for his mission, not for a person.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "narrative": { - "label": "Goddess as Operational Interference", - "rationale": "Traditionally, the Goddess is the 'reply to all desire' and the goal of the quest. In Year One, this narrative function is inverted: the Goddess (Selina) is an interference. She does not offer unconditional love or mastery; she offers a messy, rival version of his own mission. The divergence lies in the hero's reaction: Batman does not seek to 'know' or 'merge' with this figure, but rather to manage her as a tactical anomaly that threatens the purity of his sign." - } - }, - "8": { - "label": "The Absent Temptation of the Symbol", - "description": null, - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "narrative": { - "label": "Archetypal Displacement to the Co-Protagonist", - "rationale": "The narrative requires the tension of the Temptress stage to remain 'adult' and grounded, but Miller systematically keeps it away from Batman. The role is assigned to Gordon, whose crisis with Sarah Essen represents the 'taint of the flesh.' The 'fleshly' burden of temptation is displaced onto Jim Gordon through his affair with Sarah Essen, leaving Batman as an incorruptible sign. This displacement allows the story to satisfy the archetype while protecting the hero's status as a pure, transcendental agent of justice." - }, - "semiotic": { - "label": "The Symbol as an Immune Agent", - "rationale": "In Campbell's model, the hero must resist the 'odor of the flesh.' The stage of the Temptress is absent for Batman. While Selina Kyle possesses all the archetypal traits of a Temptress, Bruce is immune because he has split his identity: Batman is a semiotic device, not a man, and symbols cannot be tempted. By constituting himself as a non-negotiable sign (Batman) rather than a person, he makes the category of temptation 'malformed.' You cannot seduce a symbol that has no negotiable interiority." - } - }, - "9": { - "label": "The Absent Atonement of the Orphan", - "description": null, - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "narrative": { - "label": "Sovereignty through Loss", - "rationale": "The monomyth assumes a father-figure exists to test the hero. In Year One, the total absence of a father-figure makes 'at-one-ment' structurally impossible. Bruce is a 'sovereign orphan' who answers to no one but his own trauma." - } - }, - "10": { - "label": "The Absent Apotheosis", - "description": null, - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis", - "narrative": { - "label": "Noir Materialism Divergence", - "rationale": "The monomythic Apotheosis requires a spiritual 'death of the ego.' In Miller's noir framework, the hero's ego (his trauma and his mission) is the source of his power. To lose the ego would be to lose the Batman. The narrative intentionally avoids transcendence, keeping the hero grounded in a material world of pain, corruption, and tactical reality where 'divine knowledge' has no place." - } - }, - "11": { - "label": "The Bridge Rescue", - "description": "The supreme goal of the quest is attained on a bridge. Batman saves the life of Gordon's infant son, James Jr., literally 'restoring life' to the future of Gotham. This act of selflessness secures the 'Ultimate Boon': a clandestine alliance with Jim Gordon. This partnership is the 'elixir' that brings a spark of illumination to a corrupt city, ensuring that the hero's mission can now truly begin with the support of the law.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon", - "semiotic": { - "label": "Alliance as the Ultimate Boon", - "rationale": "In classical myth, the Boon is often an object like the Holy Grail. In this grounded noir setting, the 'Grail' is semiotically shifted to a social contract: the alliance between Batman and Gordon. The 'power to restore fertility' is literalized as saving a child\u2014the city's next generation\u2014from the Roman's influence, representing a systemic victory over corruption rather than a magical one." - } - }, - "12": { - "label": "Absent Refusal of the Return", - "description": null, - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "13": { - "label": "Absent Magic Flight", - "description": null, - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "14": { - "label": "Absent Rescue from Without", - "description": null, - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "15": { - "label": "Absent Crossing of the Return Threshold", - "description": null, - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "16": { - "label": "Absent Master of Two Worlds", - "description": null, - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "17": { - "label": "Absent Freedom to Live", - "description": null, - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } + } + ] + }, + "kg-modal-batman": { + "ttlFile": "batman.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/batman-year-one/monomyths/bruce-wayne-journey", + "label": "Bruce Wayne's Hero's Journey in Batman: Year One", + "stages": { + "1": { + "label": "The Train to Gotham", + "description": "Bruce returns to Gotham after years abroad. His 'summons' is internal: the trauma of his parents' death and the decaying state of the city.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "2": { + "label": "Disastrous East End Surveillance Mission", + "description": "During his training, Bruce hesitates, feeling unsure and aware that he must wait before acting. Despite this internal hesitation, his impatience drives him to attempt a plainclothes serveillance mission in the East End. The encounter is disastrous: he fights a pimp, is stabbed, shot by the police, and barely escapes. Bleeding in his study, his initial hesitation is violently validated. He admits he is 'not ready' because he lacks the proper method to strike fear into his enemies.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Premature Start as Refusal", + "rationale": "Traditionally, the Refusal of the Call is characterized by the hero's fear, excuses, or reluctance to leave the comfort of the Ordinary World. In this narrative, the archetype is subverted. Bruce Wayne is a 'Willing Hero' who does not hesitate out of fear, but rather rushes into the journey prematurely due to a lack of patience. His 'refusal' is not a rejection of the mission, but a forced hesitation following a brutal physical defeat. This reshapes the dramatic weight of the stage from a test of willpower into a test of methodology: the hero must fail his first attempt in order to realize that, despite his absolute commitment, something vital is missing from his approach." + } + }, + "3": { + "label": "The Bat", + "description": "As Bruce bleeds out in his study pleading to his father's memory for guidance, a massive bat crashes through the window. He interprets this violent natural event as a 'sign,' providing the psychological epiphany and the specific 'wisdom' needed to assume his vigilante identity.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "4": { + "label": "The Dinner Party Ambush", + "description": "Batman definitively steps 'beyond the veil of the known' by crashing a dinner party for Gotham's corrupt elite. This act represents a form of 'self-annihilation,' where Bruce Wayne kills off his former status as a harmless socialite to plunge into the mystery of his crusade. By confronting the city's power brokers, he proves he has the 'competence and courage' to operate in a zone of magnified power where ordinary rules are suspended.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold", + "narrative": { + "label": "The Hero as Aggressor", + "rationale": "Traditionally, 'threshold guardians' are dangerous custodians who defend the boundary and wait for the hero. In a narrative reversal, Batman does not wait to be challenged. Possessing total commitment, he proactively hunts the guardians (Falcone and Loeb) in their 'inmost cave.' He doesn't seek to bypass these 'watching powers' but to dominate them, ensuring there is no turning back from his mission." + }, + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "5": { + "label": "The Tenement Siege", + "description": "Trapped in an abandoned tenement and targeted by a police firebombing, Batman undergoes a 'plunge into an unknown darkness.' As the building collapses and Commissioner Loeb presumes him dead, Bruce experiences the symbolic death of his former self. By surviving the inferno and summoning a swarm of bats to mask his exit, he allows a new, transformed identity\u2014the urban myth of the Batman\u2014to emerge from the rubble.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "6": { + "label": "The Distributed Road of Trials", + "description": "Bruce undergoes a succession of ordeals\u2014the East End failure, the climb up the crime ladder, the Mayor's house ambush, and the tenement siege\u2014which serve to 'purify' his methods. Crucially, during these perilous conquests, he discovers the 'benign, protecting power' of Jim Gordon. Following the tenement siege, Bruce realizes that his survival was aided by the presence of a moral equal within the system, transforming Gordon from a target into the essential ally needed to survive the trials ahead.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", + "sequential": { + "label": "Distributed Road of Trials", + "rationale": "The Road of Trials is realized as a distributed series of events, rather than a single linear stage following the Departure. This sequential overlap allows the trials to act as the catalyst for the hero's transformation while simultaneously serving as the initiatory tests of his new identity." + } + }, + "7": { + "label": "The Encounter with Selina Kyle", + "description": "Bruce encounters Selina Kyle on the rooftops. In a typical monomyth, she would represent the 'Goddess'\u2014the totality of what can be known. However, the fit is weak: Batman views her not as a mystical union or a source of bliss, but as a tactical anomaly. She 'ruins the moment' rather than bestowing mastery, proving that Bruce's heart is reserved for his mission, not for a person.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "narrative": { + "label": "Goddess as Operational Interference", + "rationale": "Traditionally, the Goddess is the 'reply to all desire' and the goal of the quest. In Year One, this narrative function is inverted: the Goddess (Selina) is an interference. She does not offer unconditional love or mastery; she offers a messy, rival version of his own mission. The divergence lies in the hero's reaction: Batman does not seek to 'know' or 'merge' with this figure, but rather to manage her as a tactical anomaly that threatens the purity of his sign." + } + }, + "8": { + "label": "The Absent Temptation of the Symbol", + "description": null, + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "narrative": { + "label": "Archetypal Displacement to the Co-Protagonist", + "rationale": "The narrative requires the tension of the Temptress stage to remain 'adult' and grounded, but Miller systematically keeps it away from Batman. The role is assigned to Gordon, whose crisis with Sarah Essen represents the 'taint of the flesh.' The 'fleshly' burden of temptation is displaced onto Jim Gordon through his affair with Sarah Essen, leaving Batman as an incorruptible sign. This displacement allows the story to satisfy the archetype while protecting the hero's status as a pure, transcendental agent of justice." + }, + "semiotic": { + "label": "The Symbol as an Immune Agent", + "rationale": "In Campbell's model, the hero must resist the 'odor of the flesh.' The stage of the Temptress is absent for Batman. While Selina Kyle possesses all the archetypal traits of a Temptress, Bruce is immune because he has split his identity: Batman is a semiotic device, not a man, and symbols cannot be tempted. By constituting himself as a non-negotiable sign (Batman) rather than a person, he makes the category of temptation 'malformed.' You cannot seduce a symbol that has no negotiable interiority." + } + }, + "9": { + "label": "The Absent Atonement of the Orphan", + "description": null, + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "narrative": { + "label": "Sovereignty through Loss", + "rationale": "The monomyth assumes a father-figure exists to test the hero. In Year One, the total absence of a father-figure makes 'at-one-ment' structurally impossible. Bruce is a 'sovereign orphan' who answers to no one but his own trauma." + } + }, + "10": { + "label": "The Absent Apotheosis", + "description": null, + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", + "narrative": { + "label": "Noir Materialism Divergence", + "rationale": "The monomythic Apotheosis requires a spiritual 'death of the ego.' In Miller's noir framework, the hero's ego (his trauma and his mission) is the source of his power. To lose the ego would be to lose the Batman. The narrative intentionally avoids transcendence, keeping the hero grounded in a material world of pain, corruption, and tactical reality where 'divine knowledge' has no place." + } + }, + "11": { + "label": "The Bridge Rescue", + "description": "The supreme goal of the quest is attained on a bridge. Batman saves the life of Gordon's infant son, James Jr., literally 'restoring life' to the future of Gotham. This act of selflessness secures the 'Ultimate Boon': a clandestine alliance with Jim Gordon. This partnership is the 'elixir' that brings a spark of illumination to a corrupt city, ensuring that the hero's mission can now truly begin with the support of the law.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", + "semiotic": { + "label": "Alliance as the Ultimate Boon", + "rationale": "In classical myth, the Boon is often an object like the Holy Grail. In this grounded noir setting, the 'Grail' is semiotically shifted to a social contract: the alliance between Batman and Gordon. The 'power to restore fertility' is literalized as saving a child\u2014the city's next generation\u2014from the Roman's influence, representing a systemic victory over corruption rather than a magical one." + } + }, + "12": { + "label": "Absent Refusal of the Return", + "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "13": { + "label": "Absent Magic Flight", + "description": null, + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "14": { + "label": "Absent Rescue from Without", + "description": null, + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "15": { + "label": "Absent Crossing of the Return Threshold", + "description": null, + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "16": { + "label": "Absent Master of Two Worlds", + "description": null, + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "17": { + "label": "Absent Freedom to Live", + "description": null, + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." } } - }, - { - "id": "https://monomyth.metamuses.org/graph/batman-year-one/monomyths/jim-gordon-journey", - "label": "Jim Gordon's Hero's Journey in Batman: Year One", - "stages": { - "1": { - "label": "Arrival in Gotham", - "description": "Gordon arrives in Gotham, viewing the transfer as a punishment. He is immediately summoned into the 'special world' of systemic corruption, meeting Commissioner Loeb and witnessing Detective Flass brutalize a teenager.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure" - }, - "2": { - "label": "Waiting to Report", - "description": "Gordon hesitates to act against the corruption. He rationalizes his inaction by telling himself it is 'better to wait' before reporting colleagues. Flass tells him to relax and adapt to the system, summarizing Gordon's passive survival strategy.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call" - }, - "3": { - "label": "The Absent Supernatural Aid", - "description": null, - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "narrative": { - "label": "Neo-Noir Isolation Divergence", - "rationale": "In classical myth, the hero is reassured by a protective universe (the helper). In the Neo-Noir paradigm, the universe is indifferent or actively malignant. The narrative strips away the 'Supernatural Aid' to emphasize the hero's absolute moral and physical isolation; the honest cop must survive without a safety net." - } - }, - "4": { - "label": "The Beating", - "description": "Gordon is ambushed and beaten by Flass and his masked men. This serves as the 'Belly of the Whale'\u2014a plunge into a life-and-death 'black moment' where Gordon is completely swallowed by the 'monster' of systemic police corruption. During this brutal ordeal, his former self (the passive, rule-abiding cop trying to survive quietly) undergoes a symbolic death and self-annihilation, setting the stage for his metamorphosis.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "sequential": { - "label": "The Catalyst Inversion (Belly Before Threshold)", - "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." - } - }, - "5": { - "label": "Beating Flass", - "description": "After surviving the beating, Gordon refuses to retreat. Instead of going home, he ambushes Flass in the snow, beats him, and strips him of his weapon. By doing this, Gordon crosses the threshold from passive observer to active combatant. He leaves behind the familiar safety of playing by the rules and fully enters the brutal world of Gotham's reality.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold", - "sequential": { - "label": "The Catalyst Inversion (Belly Before Threshold)", - "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." - } - }, - "6": { - "label": "The Honest Cop Trials", - "description": "Gordon navigates a gauntlet of trials that test his integrity and physical courage: entering a hostage situation unarmed, clashing with the violent Branden, and navigating Loeb's orders to hunt down the vigilante Batman.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "7": { - "label": "Meeting Sarah Essen", - "description": "Gordon meets Sarah Essen, who functions as his operational and intellectual equal. She is the first to suggest Bruce Wayne might be Batman. Their connection represents a nurturing, understanding force in a city that otherwise alienates him. Within the secular, gritty confines of Gotham, Sarah Essen functions as the Neo-Noir equivalent of the 'Queen Goddess of the World.' For Gordon, who is alienated by the corrupt department, she represents the 'reply to all desire' \u2014providing the intellectual parity, moral support, and emotional understanding he desperately lacks.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess" - }, - "8": { - "label": "The Affair and Blackmail", - "description": "The connection with Essen transforms into an extramarital affair, fulfilling the archetype of the Temptress. It is a worldly attachment that threatens to arrest the journey, filling Gordon with guilt regarding his pregnant wife and giving Commissioner Loeb the leverage needed to blackmail him.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "semiotic": { - "label": "Neo-Noir Secularization", - "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." - } - }, - "9": { - "label": "Confession and Atonement", - "description": "Commissioner Loeb acts as the 'corrupt Father' of the GCPD, judging and threatening Gordon. To survive the crisis and 'abandon his attachment to his own ego', Gordon confesses his affair to his wife Barbara. By destroying his own secret, he strips the 'Father' of his power and undergoes a moral rebirth.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "semiotic": { - "label": "Neo-Noir Secularization", - "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." - } - }, - "10": { - "label": "The family man", - "description": "Finally free from his guilt, Gordon's son is born and for a brief moment we see him dwelling momentarily in the peaceful stage of new found fatherhood and family bliss.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis" - }, - "11": { - "label": "The Bridge Alliance", - "description": "Gordon's quest culminates in a desperate chase to a bridge after his infant son is kidnapped by corrupt forces. During the struggle, his son falls but is saved by Batman. Gordon's 'Ultimate Boon' is twofold: the physical salvation of his family, and the profound realization that he is not fighting alone. By choosing to let Batman go, Gordon secures the 'elixir' of the narrative: a powerful, unspoken alliance with the Dark Knight. This partnership provides the hope and leverage necessary to finally cleanse Gotham's corrupt system.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon" - }, - "12": { - "label": "Absent Refusal of the Return", - "description": null, - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "13": { - "label": "Absent Magic Flight", - "description": null, - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "14": { - "label": "Absent Rescue from Without", - "description": null, - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "15": { - "label": "Absent Crossing of the Return Threshold", - "description": null, - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "16": { - "label": "Absent Master of Two Worlds", - "description": null, - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } - }, - "17": { - "label": "Absent Freedom to Live", - "description": null, - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live", - "narrative": { - "label": "Origin Narrative Constraint", - "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." - } + } + }, + { + "id": "https://monomyth.metamuses.org/graph/batman-year-one/monomyths/jim-gordon-journey", + "label": "Jim Gordon's Hero's Journey in Batman: Year One", + "stages": { + "1": { + "label": "Arrival in Gotham", + "description": "Gordon arrives in Gotham, viewing the transfer as a punishment. He is immediately summoned into the 'special world' of systemic corruption, meeting Commissioner Loeb and witnessing Detective Flass brutalize a teenager.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" + }, + "2": { + "label": "Waiting to Report", + "description": "Gordon hesitates to act against the corruption. He rationalizes his inaction by telling himself it is 'better to wait' before reporting colleagues. Flass tells him to relax and adapt to the system, summarizing Gordon's passive survival strategy.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" + }, + "3": { + "label": "The Absent Supernatural Aid", + "description": null, + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "narrative": { + "label": "Neo-Noir Isolation Divergence", + "rationale": "In classical myth, the hero is reassured by a protective universe (the helper). In the Neo-Noir paradigm, the universe is indifferent or actively malignant. The narrative strips away the 'Supernatural Aid' to emphasize the hero's absolute moral and physical isolation; the honest cop must survive without a safety net." + } + }, + "4": { + "label": "The Beating", + "description": "Gordon is ambushed and beaten by Flass and his masked men. This serves as the 'Belly of the Whale'\u2014a plunge into a life-and-death 'black moment' where Gordon is completely swallowed by the 'monster' of systemic police corruption. During this brutal ordeal, his former self (the passive, rule-abiding cop trying to survive quietly) undergoes a symbolic death and self-annihilation, setting the stage for his metamorphosis.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "sequential": { + "label": "The Catalyst Inversion (Belly Before Threshold)", + "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." + } + }, + "5": { + "label": "Beating Flass", + "description": "After surviving the beating, Gordon refuses to retreat. Instead of going home, he ambushes Flass in the snow, beats him, and strips him of his weapon. By doing this, Gordon crosses the threshold from passive observer to active combatant. He leaves behind the familiar safety of playing by the rules and fully enters the brutal world of Gotham's reality.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold", + "sequential": { + "label": "The Catalyst Inversion (Belly Before Threshold)", + "rationale": "In Campbell's traditional framework, the hero crosses the threshold into the unknown and is subsequently swallowed into the Belly of the Whale. In Gordon's Neo-Noir journey, this sequence is inverted. He is first ambushed and 'swallowed' by the corrupt system (The Beating). This traumatic 'black moment' acts as the necessary catalyst for his metamorphosis, forcing him to proactively cross the threshold by hunting down his guardian (Flass) to solidify his rebirth as an active combatant." + } + }, + "6": { + "label": "The Honest Cop Trials", + "description": "Gordon navigates a gauntlet of trials that test his integrity and physical courage: entering a hostage situation unarmed, clashing with the violent Branden, and navigating Loeb's orders to hunt down the vigilante Batman.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "7": { + "label": "Meeting Sarah Essen", + "description": "Gordon meets Sarah Essen, who functions as his operational and intellectual equal. She is the first to suggest Bruce Wayne might be Batman. Their connection represents a nurturing, understanding force in a city that otherwise alienates him. Within the secular, gritty confines of Gotham, Sarah Essen functions as the Neo-Noir equivalent of the 'Queen Goddess of the World.' For Gordon, who is alienated by the corrupt department, she represents the 'reply to all desire' \u2014providing the intellectual parity, moral support, and emotional understanding he desperately lacks.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess" + }, + "8": { + "label": "The Affair and Blackmail", + "description": "The connection with Essen transforms into an extramarital affair, fulfilling the archetype of the Temptress. It is a worldly attachment that threatens to arrest the journey, filling Gordon with guilt regarding his pregnant wife and giving Commissioner Loeb the leverage needed to blackmail him.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "9": { + "label": "Confession and Atonement", + "description": "Commissioner Loeb acts as the 'corrupt Father' of the GCPD, judging and threatening Gordon. To survive the crisis and 'abandon his attachment to his own ego', Gordon confesses his affair to his wife Barbara. By destroying his own secret, he strips the 'Father' of his power and undergoes a moral rebirth.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "semiotic": { + "label": "Neo-Noir Secularization", + "rationale": "Across both Bruce Wayne's and Jim Gordon's journeys, Campbell's traditional mythic signifiers (magic, monsters, sirens, and cosmic gods) are radically translated into grounded, Neo-Noir realism. For Bruce, magical aids become totemic animals and monster bellies become industrial tenements. For Gordon, the 'Temptress' is not a magical siren but the mundane, destructive reality of an extramarital affair, and the 'Atonement with the Father' replaces a cosmic deity with a corrupt Police Commissioner. The structural functions of the myth remain perfectly intact, but the semiotic vocabulary is entirely secular, psychological, and systemic." + } + }, + "10": { + "label": "The family man", + "description": "Finally free from his guilt, Gordon's son is born and for a brief moment we see him dwelling momentarily in the peaceful stage of new found fatherhood and family bliss.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" + }, + "11": { + "label": "The Bridge Alliance", + "description": "Gordon's quest culminates in a desperate chase to a bridge after his infant son is kidnapped by corrupt forces. During the struggle, his son falls but is saved by Batman. Gordon's 'Ultimate Boon' is twofold: the physical salvation of his family, and the profound realization that he is not fighting alone. By choosing to let Batman go, Gordon secures the 'elixir' of the narrative: a powerful, unspoken alliance with the Dark Knight. This partnership provides the hope and leverage necessary to finally cleanse Gotham's corrupt system.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" + }, + "12": { + "label": "Absent Refusal of the Return", + "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "13": { + "label": "Absent Magic Flight", + "description": null, + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "14": { + "label": "Absent Rescue from Without", + "description": null, + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "15": { + "label": "Absent Crossing of the Return Threshold", + "description": null, + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "16": { + "label": "Absent Master of Two Worlds", + "description": null, + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." + } + }, + "17": { + "label": "Absent Freedom to Live", + "description": null, + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", + "narrative": { + "label": "Origin Narrative Constraint", + "rationale": "The Return act is logically impossible within the scope of an origin story. The narrative ends precisely at the moment the hero achieves his identity, serving as a prologue rather than a full monomythic cycle. There is no 'return' because the story is a beginning." } } } - ] - }, - "kg-modal-oedipus": { - "ttlFile": "oedipus.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/oedipus-myth/monomyths/oedipus-journey", - "label": "Oedipus's Hero's Journey", - "stages": { - "1": { - "label": "The Oracle's Prophecy", - "description": "The Call to Adventure manifests when a young Oedipus, troubled by a drunkard's claims in Corinth that he is not the true son of King Polybus and Queen Merope, travels to the Oracle at Delphi seeking the truth about his parentage. Instead of answering his questions, the Pythia delivers a terrifying prophecy: he is destined to slay his own father and lie with his own mother. This horrifying revelation shatters his secure world, setting the tragic journey in motion.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure" - }, - "2": { - "label": "Apollo's Guidance", - "description": "Through the cryptic warnings of the Delphic Oracle, Apollo provides a unique form of supernatural aid. The god anchors Oedipus's destiny with the dual nature of prophecy: along with the initial curse, Apollo weaves a distant, latent promise that Oedipus will eventually find ultimate rest and holy sanctuary in a grove dedicated to the Eumenides. This fatal assurance turns his agonizing exile into a purposeful journey toward divine transfiguration.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "sequential": { - "label": "Aid before Flee divergence", - "rationale": "In the canonical monomyth, Supernatural Aid typically occurs as the third stage, appearing after the hero's hesitation to provide the necessary tools or assurance for the journey. In the myth of Oedipus, this sequence is displaced: the 'Aid' of Apollo's prophecy is granted at the very outset, preceding the hero's Inverted Refusal (his flight from Corinth). This displacement is critical to the tragic structure, as the divine guidance does not resolve the hero's hesitation but instead serves as the direct catalyst for his attempt to outrun his fate." - } - }, - "3": { - "label": "Flee from Corinth", - "description": "Driven by intense fear and a moral desire to protect those he believes to be his parents, Oedipus flees Corinth immediately, vowing never to return. In attempting to proactively refuse the monstrous fate laid out by the Oracle, he directs his steps away from the safety of his foster home and heads toward Thebes. His desperate escape acts as an inverted refusal: the very act of fleeing is what delivers him directly into the path of the prophecy.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Proactive Departure divergence", - "rationale": "In the Oedipus myth, the refusal of the call is subverted through a proactive moral choice. Rather than a passive retreat born of cowardice, Oedipus's refusal is an act of high-minded defiance; he flees Corinth specifically to protect those he believes are his parents. This creates a profound 'Tragic Irony' where the hero's virtuous attempt to outrun his fate becomes the very engine of its fulfillment. By physically moving away from the perceived danger, he unknowingly makes his flight both a rejection of the call and the inevitable start of the journey." - } - }, - "4": { - "label": "The Triple Crossroads", - "description": "At a place where three roads meet in Phocis, Oedipus encounters a haughty traveler traveling in a carriage. When the traveler and his retinue arrogantly attempt to force him off the road, Oedipus strikes out in a sudden, blinding rage. In the ensuing clash, he kills the old man who is unknowingly his biological father, King Laius, and all but one of his servants. This violent transgression serves as his definitive crossing into the tragic world of his destiny, as the first part of the prophecy is fulfilled", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "Riddle of the Sphinx", - "description": "Upon reaching the gates of Thebes, Oedipus confronts the Sphinx, a monstrous creature terrorizing the city with a deadly riddle. By answering her puzzle about the nature of man, he defeats the monster and liberates the city. In this transformative moment, he effectively 'dies' to his previous identity as a wandering traveler and is 'reborn' as the King of Thebes, inheriting both the throne and the hand of the widowed Queen Jocasta, hence fulfilling the second part of the prophecy.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale" - }, - "6": { - "label": "Search for the Regicide", - "description": "Years later, a devastating plague descends upon Thebes, sent by the gods due to the unpunished murder of the former king. Oedipus embarks on a relentless quest to identify and cast out Laius's killer to save his subjects. This investigation becomes a grueling test of his personal resolve and integrity, where every witness questioned and every clue uncovered brings him closer to the destructive truth of his own identity.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "7": { - "label": "Reveal it all to me!", - "description": "Seeking prophetic insight, Oedipus calls the blind seer Teiresias to the palace. Teiresias, who possesses Apollo's divine sight, is reluctant to speak out of a deep, tragic pity for the king. When his silence provokes Oedipus into furious accusations of treason and conspiracy with Creon, Teiresias finally snaps and reveals the devastating truth: Oedipus himself is the polluter and murderer of Laius.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "narrative": { - "label": "Protection not Love divergence", - "rationale": "This stage diverges from the traditional archetype by alterating the nature of the goddess's unconditional love. The meeting acts as a distorted encounter with divine truth, where the seer tries to protect the hero from a fatal enlightenment. The seer's care and love are expressed through a desperate protective silence, intended to shield Oedipus from his own ruin. When forced to break this silence, instead of offering comforting validation, the prophet provides the initial, painful awakening that sets the hero's true internal transformation in motion. He is the first to reveal to the hero his true identity and to confront him with reality." - } - }, - "8": { - "label": "Don't concearn yourself with prophecies!", - "description": "As Oedipus's dread intensifies, Jocasta intervenes, begging him to cease his investigation. In good faith, she tempts him to remain in comfortable ignorance to save their household. She attempts to discredit the divine by recalling a prophecy given to her late husband Laius - that he would be killed by his own son - which she wrongly believes went unfulfilled when they abandoned their infant on Mount Cithaeron. Her desperate plea represents the ultimate temptation for Oedipus to abandon his pursuit of truth in favor of his crown and safety.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress" - }, - "9": { - "label": "He is the regicide", - "description": "Upon hearing Jocasta describe the crossroads where Laius was killed and the appearance of the old king, Oedipus is struck by a terrifying realization. The physical facts match his own dark memory of the triple crossroads, leading him to accept that he is indeed the regicide who brought the plague upon Thebes. This moment acts as a preliminary atonement where the hero confronts the shadow of the man he killed, though he does not yet realize that Laius was his true biological father.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "narrative": { - "label": "Atonement with the King divergence", - "rationale": "This represents a profound subversion of the traditional Atonement with the Father stage. Instead of a spiritual reconciliation or submission to parental authority, the 'atonement' is a terrifying reckoning with a violent past. The deep irony lies in the fact that Oedipus believes he is coming to terms with the murder of a total stranger to purge the city of its plague. In truth, this stranger is Laius, his biological father. Consequently, the hero undergoes an accidental confrontation with the ghost of his patricide before he even understands the blood bond between them, reversing the typical path toward healing into a descent toward destruction." - } - }, - "10": { - "label": "It all came true!", - "description": "The arrival of a messenger from Corinth announcing the death of King Polybus initially brings relief, but it quickly shifts to horror when the messenger reveals that Polybus was not Oedipus's real father. Oedipus summons the old servant - the lone survivor of the crossroads and the same shepherd who saved him as an infant \u2014 who breaks down and confesses everything. The truth collapses upon Oedipus: he is both the murderer of Laius and his biological son, who has unknowingly shared his bed with his own mother.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis", - "narrative": { - "label": "Tragic Enlightenment divergence", - "rationale": "Oedipus subverts the traditional Apotheosis, which normally elevates the hero to a state of blissful, divine transcendence. Instead, through the testimony of the old servant, he reaches a 'tragic enlightenment.' The conquest here is purely internal; he does not achieve divine rest but rather a profound, shattering knowledge of his true self and the irrevocable realization of his fated doom." - } - }, - "11": { - "label": "The Self-Blinding", - "description": "Upon bursting into the palace and discovering that Jocasta has hanged herself, Oedipus is overcome by a violent, agonizing despair. He tears the golden brooches from her robes and plunges them repeatedly into his own eyes, crying out that they should never again behold the horrors he has committed or look upon the children he should never have fathered. By physically destroying his sight, he isolates himself from the world he has corrupted, choosing to face the darkness of his actions in an internal reckoning that he was previously blind to.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon", - "narrative": { - "label": "Punitive Inner Vision divergence", - "rationale": "The ultimate boon in the myth of Oedpis is far from a restorative elixir for the community, as it consists in a severe, self-inflicted punishment. By blinding himself, the hero destroys his physical perception of the world to acquire a solitary 'inner sight.' Rather than bringing life or illumination to the world he leaves behind, this boon is entirely internal, solitary, and unshared." - } - }, - "12": { - "label": "Plea for Exile", - "description": "Having accepted the absolute reality of his crimes, the blinded Oedipus refuses to stay in the city he once ruled. He stands before Creon and the assembled citizens of Thebes, explicitly demanding his immediate expulsion,to possibly free his city from the plague, as predicted by Apollo.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Proactive Exile divergence", - "rationale": "The hero's departure acts as an inverted Refusal of the Return. Instead of a passive or reluctant attitude toward crossing the return threshold, Oedipus takes full initiative to leave. By begging Creon for exile, he proactively drives himself out of the world in which his internal transformation has happened and chooses to wander the wilderness. This choice is also driven by the urgent need to fulfill Apollo's prophecy, which predicted that, to save Thebes from the plague, the regicide would have had to be exiled or killed." - } - }, - "13": { - "label": "Exodus from Thebes", - "description": "Oedipus steps into the unknown, beginning a long, arduous journey as a blind outcast. In his wandering, he is pursued not by physical monsters, but by the overwhelming psychological weight of his past. For years, he roams through the wilderness, utilizing the solitude and hardship to reflect upon his tragic history, gradually transforming his suffering into spiritual wisdom.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight" - }, - "14": { - "label": "The Guiding Daughter", - "description": "As Oedipus's body grows weak and frail from years of wandering, his loyal daughter Antigone steps forward to serve as his primary rescuer. She walks by his side, serving as his eyes and guiding him safely across the unforgiving terrains of Greece. Her unwavering devotion provides the essential support that keeps him alive, allowing the shattered king to accept his tragic fate and continue on his fated path toward the sacred grounds of Colonus.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without" - }, - "15": { - "label": "Arrival at the Sacred Grove of Colonus", - "description": "Oedipus finally arrives at Colonus, entering a sacred grove dedicated to the Eumenides. He recognizes this ground as the ultimate sanctuary promised to him by Apollo years before. When the local elders of Athens display horror upon discovering his identity, King Theseus steps forward and offers him unconditional sanctuary and protection. By being accepted by the noble ruler despite his horrific reputation, Oedipus successfully crosses back into a structured human society that welcomes his transformed state.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold" - }, - "16": { - "label": "Ismene's News from Thebes", - "description": "Ismene arrives in Colonus from Thebes, serving as a second figure of rescue. She is willing to perform the necessary sacrifices to appease the Eumenides on Oedipus's behalf, to help him achieve spiritual clarity and enter the new reality of Colonus freely. However, she also brings heavy news of a catastrophic civil war brewing back home between her brothers, Eteocles and Polyneices, and warns her father that Creon is heading to Colonus to seize him for political gain.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "sequential": { - "label": "Rescue after Return Threshold divergence", - "rationale": "This stage represents a structural repetition and displacement of the 'Rescue from Without' archetype. While Antigone provided the initial rescue in its canonical position to sustain Oedipus during his exile, Ismene's arrival occurs retroactively after the hero has already crossed the return threshold of Colonus. Her appearance serves a dual purpose: she provides the specific ritual aid needed to navigate his new environment and introduces the 'news from Thebes' regarding the civil war. This information acts as the final narrative engine, setting into motion the conflict with Creon and Polyneices that ultimately facilitates Oedipus's transition from a mortal outcast to a divinized, sacred protector." - } - }, - "17": { - "label": "Trouble from Thebes", - "description": "Oedipus's fragile peace is shattered by the arrival of Creon, who uses trickery and force to kidnap both Antigone and Ismene in a desperate attempt to drag the blind hero back to the Theban border. Though King Theseus steps in and saves the daughters, the conflict deepens when Polyneices arrives. The son weeps and pleads for his father's forgiveness for his past inactions against his exile, hoping to secure Oedipus's blessing for the coming war. This intrusion prevents any serene equilibrium, highlighting his status as a man who is still pulled by the heavy gravity of his origins.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds", - "narrative": { - "label": "Denied Mastery", - "rationale": "In the Monomyth, Mastery implies a transpersonal state where the hero is at home in both worlds. Here, the 'Mastery' is negated: the world where the hero's transformation has happened, hence Thebes and its politics, aggressively seeks to weaponize the hero's spiritual status and his integration in the new 'ordinary' world, while the hero responds with fury rather than balance. This divergence shows that the hero remains a prisoner of his tragic history and of the Theban dynamics until the moment of death." - } - }, - "18": { - "label": "The Transfiguration at Colonus", - "description": "The hero reaches the end of his mortal journey as a sudden thunderclap echoes across the sky, and a divine voice calls out to him. Oedipus stands up and walks unaided toward a hidden, sacred point in the grove, where he simply vanishes into the earth. King Theseus is the sole witness to this mysterious passing. Through this divine death, Oedipus is finally freed from the weight of his past, transforming from a cursed exile into a holy, chthonic protector of the land that welcomed him.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live", - "narrative": { - "label": "Freedom in Death divergence", - "rationale": "This represents an 'Inverted Fit' of the final monomyth stage. While 'Freedom to Live' traditionally suggests the hero's ability to exist in the ordinary world without the fear of death, Oedipus achieves this freedom only through the act of passing away. His release from the burden of his past and the pollution of his crimes is synchronized with his physical disappearance. The irony lies in the fact that his 'freedom' is a transition from mortal suffering to a chthonic, immortal state, as he becomes free from life itself to serve as a sacred protector of the land." - } + } + ] + }, + "kg-modal-oedipus": { + "ttlFile": "oedipus.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/oedipus-myth/monomyths/oedipus-journey", + "label": "Oedipus's Hero's Journey", + "stages": { + "1": { + "label": "The Oracle's Prophecy", + "description": "The Call to Adventure manifests when a young Oedipus, troubled by a drunkard's claims in Corinth that he is not the true son of King Polybus and Queen Merope, travels to the Oracle at Delphi seeking the truth about his parentage. Instead of answering his questions, the Pythia delivers a terrifying prophecy: he is destined to slay his own father and lie with his own mother. This horrifying revelation shatters his secure world, setting the tragic journey in motion.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" + }, + "2": { + "label": "Apollo's Guidance", + "description": "Through the cryptic warnings of the Delphic Oracle, Apollo provides a unique form of supernatural aid. The god anchors Oedipus's destiny with the dual nature of prophecy: along with the initial curse, Apollo weaves a distant, latent promise that Oedipus will eventually find ultimate rest and holy sanctuary in a grove dedicated to the Eumenides. This fatal assurance turns his agonizing exile into a purposeful journey toward divine transfiguration.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "sequential": { + "label": "Aid before Flee divergence", + "rationale": "In the canonical monomyth, Supernatural Aid typically occurs as the third stage, appearing after the hero's hesitation to provide the necessary tools or assurance for the journey. In the myth of Oedipus, this sequence is displaced: the 'Aid' of Apollo's prophecy is granted at the very outset, preceding the hero's Inverted Refusal (his flight from Corinth). This displacement is critical to the tragic structure, as the divine guidance does not resolve the hero's hesitation but instead serves as the direct catalyst for his attempt to outrun his fate." + } + }, + "3": { + "label": "Flee from Corinth", + "description": "Driven by intense fear and a moral desire to protect those he believes to be his parents, Oedipus flees Corinth immediately, vowing never to return. In attempting to proactively refuse the monstrous fate laid out by the Oracle, he directs his steps away from the safety of his foster home and heads toward Thebes. His desperate escape acts as an inverted refusal: the very act of fleeing is what delivers him directly into the path of the prophecy.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Proactive Departure divergence", + "rationale": "In the Oedipus myth, the refusal of the call is subverted through a proactive moral choice. Rather than a passive retreat born of cowardice, Oedipus's refusal is an act of high-minded defiance; he flees Corinth specifically to protect those he believes are his parents. This creates a profound 'Tragic Irony' where the hero's virtuous attempt to outrun his fate becomes the very engine of its fulfillment. By physically moving away from the perceived danger, he unknowingly makes his flight both a rejection of the call and the inevitable start of the journey." + } + }, + "4": { + "label": "The Triple Crossroads", + "description": "At a place where three roads meet in Phocis, Oedipus encounters a haughty traveler traveling in a carriage. When the traveler and his retinue arrogantly attempt to force him off the road, Oedipus strikes out in a sudden, blinding rage. In the ensuing clash, he kills the old man who is unknowingly his biological father, King Laius, and all but one of his servants. This violent transgression serves as his definitive crossing into the tragic world of his destiny, as the first part of the prophecy is fulfilled", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "Riddle of the Sphinx", + "description": "Upon reaching the gates of Thebes, Oedipus confronts the Sphinx, a monstrous creature terrorizing the city with a deadly riddle. By answering her puzzle about the nature of man, he defeats the monster and liberates the city. In this transformative moment, he effectively 'dies' to his previous identity as a wandering traveler and is 'reborn' as the King of Thebes, inheriting both the throne and the hand of the widowed Queen Jocasta, hence fulfilling the second part of the prophecy.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" + }, + "6": { + "label": "Search for the Regicide", + "description": "Years later, a devastating plague descends upon Thebes, sent by the gods due to the unpunished murder of the former king. Oedipus embarks on a relentless quest to identify and cast out Laius's killer to save his subjects. This investigation becomes a grueling test of his personal resolve and integrity, where every witness questioned and every clue uncovered brings him closer to the destructive truth of his own identity.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "7": { + "label": "Reveal it all to me!", + "description": "Seeking prophetic insight, Oedipus calls the blind seer Teiresias to the palace. Teiresias, who possesses Apollo's divine sight, is reluctant to speak out of a deep, tragic pity for the king. When his silence provokes Oedipus into furious accusations of treason and conspiracy with Creon, Teiresias finally snaps and reveals the devastating truth: Oedipus himself is the polluter and murderer of Laius.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "narrative": { + "label": "Protection not Love divergence", + "rationale": "This stage diverges from the traditional archetype by alterating the nature of the goddess's unconditional love. The meeting acts as a distorted encounter with divine truth, where the seer tries to protect the hero from a fatal enlightenment. The seer's care and love are expressed through a desperate protective silence, intended to shield Oedipus from his own ruin. When forced to break this silence, instead of offering comforting validation, the prophet provides the initial, painful awakening that sets the hero's true internal transformation in motion. He is the first to reveal to the hero his true identity and to confront him with reality." + } + }, + "8": { + "label": "Don't concearn yourself with prophecies!", + "description": "As Oedipus's dread intensifies, Jocasta intervenes, begging him to cease his investigation. In good faith, she tempts him to remain in comfortable ignorance to save their household. She attempts to discredit the divine by recalling a prophecy given to her late husband Laius - that he would be killed by his own son - which she wrongly believes went unfulfilled when they abandoned their infant on Mount Cithaeron. Her desperate plea represents the ultimate temptation for Oedipus to abandon his pursuit of truth in favor of his crown and safety.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress" + }, + "9": { + "label": "He is the regicide", + "description": "Upon hearing Jocasta describe the crossroads where Laius was killed and the appearance of the old king, Oedipus is struck by a terrifying realization. The physical facts match his own dark memory of the triple crossroads, leading him to accept that he is indeed the regicide who brought the plague upon Thebes. This moment acts as a preliminary atonement where the hero confronts the shadow of the man he killed, though he does not yet realize that Laius was his true biological father.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "narrative": { + "label": "Atonement with the King divergence", + "rationale": "This represents a profound subversion of the traditional Atonement with the Father stage. Instead of a spiritual reconciliation or submission to parental authority, the 'atonement' is a terrifying reckoning with a violent past. The deep irony lies in the fact that Oedipus believes he is coming to terms with the murder of a total stranger to purge the city of its plague. In truth, this stranger is Laius, his biological father. Consequently, the hero undergoes an accidental confrontation with the ghost of his patricide before he even understands the blood bond between them, reversing the typical path toward healing into a descent toward destruction." + } + }, + "10": { + "label": "It all came true!", + "description": "The arrival of a messenger from Corinth announcing the death of King Polybus initially brings relief, but it quickly shifts to horror when the messenger reveals that Polybus was not Oedipus's real father. Oedipus summons the old servant - the lone survivor of the crossroads and the same shepherd who saved him as an infant \u2014 who breaks down and confesses everything. The truth collapses upon Oedipus: he is both the murderer of Laius and his biological son, who has unknowingly shared his bed with his own mother.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", + "narrative": { + "label": "Tragic Enlightenment divergence", + "rationale": "Oedipus subverts the traditional Apotheosis, which normally elevates the hero to a state of blissful, divine transcendence. Instead, through the testimony of the old servant, he reaches a 'tragic enlightenment.' The conquest here is purely internal; he does not achieve divine rest but rather a profound, shattering knowledge of his true self and the irrevocable realization of his fated doom." + } + }, + "11": { + "label": "The Self-Blinding", + "description": "Upon bursting into the palace and discovering that Jocasta has hanged herself, Oedipus is overcome by a violent, agonizing despair. He tears the golden brooches from her robes and plunges them repeatedly into his own eyes, crying out that they should never again behold the horrors he has committed or look upon the children he should never have fathered. By physically destroying his sight, he isolates himself from the world he has corrupted, choosing to face the darkness of his actions in an internal reckoning that he was previously blind to.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", + "narrative": { + "label": "Punitive Inner Vision divergence", + "rationale": "The ultimate boon in the myth of Oedpis is far from a restorative elixir for the community, as it consists in a severe, self-inflicted punishment. By blinding himself, the hero destroys his physical perception of the world to acquire a solitary 'inner sight.' Rather than bringing life or illumination to the world he leaves behind, this boon is entirely internal, solitary, and unshared." + } + }, + "12": { + "label": "Plea for Exile", + "description": "Having accepted the absolute reality of his crimes, the blinded Oedipus refuses to stay in the city he once ruled. He stands before Creon and the assembled citizens of Thebes, explicitly demanding his immediate expulsion,to possibly free his city from the plague, as predicted by Apollo.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Proactive Exile divergence", + "rationale": "The hero's departure acts as an inverted Refusal of the Return. Instead of a passive or reluctant attitude toward crossing the return threshold, Oedipus takes full initiative to leave. By begging Creon for exile, he proactively drives himself out of the world in which his internal transformation has happened and chooses to wander the wilderness. This choice is also driven by the urgent need to fulfill Apollo's prophecy, which predicted that, to save Thebes from the plague, the regicide would have had to be exiled or killed." + } + }, + "13": { + "label": "Exodus from Thebes", + "description": "Oedipus steps into the unknown, beginning a long, arduous journey as a blind outcast. In his wandering, he is pursued not by physical monsters, but by the overwhelming psychological weight of his past. For years, he roams through the wilderness, utilizing the solitude and hardship to reflect upon his tragic history, gradually transforming his suffering into spiritual wisdom.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" + }, + "14": { + "label": "The Guiding Daughter", + "description": "As Oedipus's body grows weak and frail from years of wandering, his loyal daughter Antigone steps forward to serve as his primary rescuer. She walks by his side, serving as his eyes and guiding him safely across the unforgiving terrains of Greece. Her unwavering devotion provides the essential support that keeps him alive, allowing the shattered king to accept his tragic fate and continue on his fated path toward the sacred grounds of Colonus.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" + }, + "15": { + "label": "Arrival at the Sacred Grove of Colonus", + "description": "Oedipus finally arrives at Colonus, entering a sacred grove dedicated to the Eumenides. He recognizes this ground as the ultimate sanctuary promised to him by Apollo years before. When the local elders of Athens display horror upon discovering his identity, King Theseus steps forward and offers him unconditional sanctuary and protection. By being accepted by the noble ruler despite his horrific reputation, Oedipus successfully crosses back into a structured human society that welcomes his transformed state.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" + }, + "16": { + "label": "Ismene's News from Thebes", + "description": "Ismene arrives in Colonus from Thebes, serving as a second figure of rescue. She is willing to perform the necessary sacrifices to appease the Eumenides on Oedipus's behalf, to help him achieve spiritual clarity and enter the new reality of Colonus freely. However, she also brings heavy news of a catastrophic civil war brewing back home between her brothers, Eteocles and Polyneices, and warns her father that Creon is heading to Colonus to seize him for political gain.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "sequential": { + "label": "Rescue after Return Threshold divergence", + "rationale": "This stage represents a structural repetition and displacement of the 'Rescue from Without' archetype. While Antigone provided the initial rescue in its canonical position to sustain Oedipus during his exile, Ismene's arrival occurs retroactively after the hero has already crossed the return threshold of Colonus. Her appearance serves a dual purpose: she provides the specific ritual aid needed to navigate his new environment and introduces the 'news from Thebes' regarding the civil war. This information acts as the final narrative engine, setting into motion the conflict with Creon and Polyneices that ultimately facilitates Oedipus's transition from a mortal outcast to a divinized, sacred protector." + } + }, + "17": { + "label": "Trouble from Thebes", + "description": "Oedipus's fragile peace is shattered by the arrival of Creon, who uses trickery and force to kidnap both Antigone and Ismene in a desperate attempt to drag the blind hero back to the Theban border. Though King Theseus steps in and saves the daughters, the conflict deepens when Polyneices arrives. The son weeps and pleads for his father's forgiveness for his past inactions against his exile, hoping to secure Oedipus's blessing for the coming war. This intrusion prevents any serene equilibrium, highlighting his status as a man who is still pulled by the heavy gravity of his origins.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", + "narrative": { + "label": "Denied Mastery", + "rationale": "In the Monomyth, Mastery implies a transpersonal state where the hero is at home in both worlds. Here, the 'Mastery' is negated: the world where the hero's transformation has happened, hence Thebes and its politics, aggressively seeks to weaponize the hero's spiritual status and his integration in the new 'ordinary' world, while the hero responds with fury rather than balance. This divergence shows that the hero remains a prisoner of his tragic history and of the Theban dynamics until the moment of death." + } + }, + "18": { + "label": "The Transfiguration at Colonus", + "description": "The hero reaches the end of his mortal journey as a sudden thunderclap echoes across the sky, and a divine voice calls out to him. Oedipus stands up and walks unaided toward a hidden, sacred point in the grove, where he simply vanishes into the earth. King Theseus is the sole witness to this mysterious passing. Through this divine death, Oedipus is finally freed from the weight of his past, transforming from a cursed exile into a holy, chthonic protector of the land that welcomed him.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", + "narrative": { + "label": "Freedom in Death divergence", + "rationale": "This represents an 'Inverted Fit' of the final monomyth stage. While 'Freedom to Live' traditionally suggests the hero's ability to exist in the ordinary world without the fear of death, Oedipus achieves this freedom only through the act of passing away. His release from the burden of his past and the pollution of his crimes is synchronized with his physical disappearance. The irony lies in the fact that his 'freedom' is a transition from mortal suffering to a chthonic, immortal state, as he becomes free from life itself to serve as a sacred protector of the land." } } } - ] - }, - "kg-modal-sable-fable": { - "ttlFile": "sable-fable.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/sable-fable/monomyths/justin-vernon-journey", - "label": "Justin Vernon's Autobiographical Journey", - "stages": { - "1": { - "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 1)", - "description": "The Call to Adventure manifests as a psychological rupture. Justin Vernon expresses a desperate desire for an anxious 'feeling' to be gone, repeating himself three times in a way that reflects 'the nature of unrelenting intrusive thoughts'. This state of 'anxiety and desperation' serves as the summons. When he looks in the mirror and sees his reflection resembling 'some competitor', he is receiving the call to finally confront his own layered trauma.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure", - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } - }, - "2": { - "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 2)", - "description": "The Refusal of the Call is explicitly voiced when Vernon admits, 'I am afraid of changing.' Faced with the 'enormity of the journey ahead'\u2014which requires him to 'check and rearrange' his mental state\u2014he hesitates ('How'm I supposed to do this now?'). The weight of what must be confronted is represented by the 'rings within rings within rings', symbolizing the astronomical, repeating layers of built-up trauma he must peel back to heal. He realizes the journey to happiness will require him to face the very things he has been trying to ignore.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } - }, - "3": { - "label": "S P E Y S I D E (Verse 1-3)", - "description": "Written during an isolating period in Key West, 'S P E Y S I D E' represents the deepest point of darkness. Vernon is swallowed by guilt over his 'violent spree' of self-sabotage, destroying relationships and shooting himself in the foot ('It serves to suffer, make a hole in my foot'). This is the symbolic death of his ego, reduced to 'soot', where he realizes he 'can't make good' on his own.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "sequential": { - "label": "The Trauma Sequence Inversion", - "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." - }, - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } - }, - "4": { - "label": "S P E Y S I D E (Verse 4)", - "description": "In verse 4 of 'S P E Y S I D E', the Supernatural Aid manifests not as a wizard or divine messenger, but as the grounding presence of the people he loves. While asking for forgiveness from this group of people he hurt, he hopes they can 'still make a man from me'. This belief that his loved ones can still see the beauty in him acts as the 'talisman' and psychological assurance he needs to survive the darkness and prepare for the threshold crossing.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "sequential": { - "label": "The Trauma Sequence Inversion", - "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." - }, - "semiotic": { - "label": "The Secular Anchor (Loved Ones as Mythic Forces)", - "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." - } - }, - "5": { - "label": "AWARDS SEASONS", - "description": "'AWARDS SEASON' represents the Crossing of the First Threshold. The song narrates a phase of sluggish and staggering change, drawing parallels to the 'acceptance' of awards, where the award is actually personal transformation and subsequent healing. By recognizing that 'Nothing stays the same', Vernon commits to the adventure, crossing from the paralyzing guilt of his past into the unknown sphere of acceptance and recovery.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold", - "sequential": { - "label": "The Trauma Sequence Inversion", - "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." - } - }, - "6": { - "label": "SHORT STORY", - "description": "In 'Short Story', the Road of Trials is realized as an inward psychological ordeal of processing pain and accepting vulnerability. Vernon realizes that his past isolation\u2014symbolized by the lyric 'That January ain't the whole world'\u2014is not the entirety of his existence, successfully transmuting the melancholy of his past. As he steps into the bright sunlight, he discovers the presence of a 'helper' through the realization that he is 'never really, really on your own'. The annotations highlight that having someone 'recognize and validate your experience' acts as a 'healing balm'. Finally, the continuous ordeal of healing is accepted; the 'strain and thirst are sweet' because they represent the essential, cyclical work of emotional purification ('Time heals, and then it repeats').", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials", - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } - }, - "7": { - "label": "Everything Is Peaceful Love", - "description": "In 'Everything Is Peaceful Love', the hero encounters the archetype of the Goddess, representing the attainment of true bliss and unity. The song encapsulates 'pure joy and elation', moving past his previous somber wallowing into a state painted with 'images of unity - peace and love'. Although he initially resists the vulnerability by claiming 'I'm not slipping', he eventually surrenders with a gentle heart, blinking in disbelief but admitting he is 'right at home'. The lyric mentioning a 'burning ring' perfectly symbolizes the archetypal mystical marriage, completing his transition into a peaceful harbor.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "semiotic": { - "label": "The Secular Anchor (Loved Ones as Mythic Forces)", - "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." - } - }, - "8": { - "label": "Walk Home", - "description": "In 'Walk Home', the hero temporarily achieves the Apotheosis stage. Stripped of his ego-bound limitations, he is invited to 'shed your earthly burdens'. He is able to 'forget and share' his 'stress, anxiety and the constant motions of life', dwelling momentarily in a state of 'blissful rest'. He is so 'high on this person' that the feeling mirrors the 'happiness, shock, and excitement' of learning to walk.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis", - "sequential": { - "label": "The 'Pink Cloud' Sequence Inversion", - "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." - }, - "semiotic": { - "label": "The Secular Anchor (Loved Ones as Mythic Forces)", - "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." - } - }, - "9": { - "label": "Day One", - "description": "In 'Day One', the hero faces the Woman as the Temptress, but the seduction is entirely internal. Following the pure bliss of the Goddess stage, Vernon is confronted with the exhausting reality of maintaining his healing ('unlearning lies' and shedding the things that 'rip you up'). The 'temptation' that threatens to arrest his journey is the seductive pull of regression\u2014the familiar, isolating comfort of his past trauma and anxiety. It is the urge to self-sabotage and return to the 'Belly of the Whale' rather than continue the difficult, transcendent work of true recovery.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "sequential": { - "label": "The 'Pink Cloud' Sequence Inversion", - "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." - }, - "semiotic": { - "label": "The Internal Temptress (Seduction of Regression)", - "rationale": "In classical myth, this stage is often represented by a literal female figure or physical vice that tempts the hero to abandon their quest. In this psychological framework, the 'Temptress' is the hero's own mind. The seduction is the allure of the familiar darkness and the comfort of old, destructive habits, which threaten to bind the hero's consciousness to their past trauma rather than allowing them to transcend it." - } - }, - "10": { - "label": "The Absent Atonement", - "description": null, - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "narrative": { - "label": "Internalized Authority Divergence", - "rationale": "In classical mythology, the hero's ego-death is triggered by an encounter with a terrifying Father-figure. In modern psychological narratives, this external projection is stripped away. The hero's battle is entirely with the Shadow (their own reflection) and the Temptress (the urge to regress). Because the hero acts as their own ultimate judge and punisher (as seen in the guilt of 'S P E Y S I D E'), an external 'Atonement' stage is rendered narratively obsolete; reconciliation must be achieved through self-forgiveness rather than cosmic approval." - } - }, - "11": { - "label": "From (Verse 1-2)", - "description": "In 'From', Vernon attains the Ultimate Boon of his psychological journey: restored emotional capacity. Having survived his trials and self-sabotage, he declares, 'Nothing's really wrong so / From now on'. The 'elixir' he has gained is the ability to finally hold space for someone else, telling his partner, 'I got time, I can give you some' and 'Give me your worry'. This represents the power to restore illumination to his world, transforming him from a person consumed by his own trauma into a source of healing for another.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon", - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } - }, - "12": { - "label": "From (Bridge and Chorus)", - "description": "Alongside the Boon, 'From' simultaneously expresses a gentle Refusal of the Return. Having found a state where 'Nothing's really wrong', Vernon exhibits a reluctance to move forward into the mundane world or face the inevitable changes of the future. Lyrics like 'We can just keep it here for now' and 'Can I take another year?' demonstrate his desire to cling to this realm of blissful discovery and delay the passage of time.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "The Gentle Refusal", - "rationale": "Typically, the Refusal of the Return is an active rebellion against returning to humanity. Here, it is a much gentler, understandable psychological reaction. After years of suffering, the hero simply wants to press pause ('We can just keep it here for now') to savor his hard-won peace before facing whatever comes next." - } - }, - "13": { - "label": "I'll be there (Verse 1-2)", - "description": "In the verses of 'I'll Be There', the hero navigates the Magic Flight. Rather than fleeing physical pursuers, Vernon is fleeing the threat of mental regression as he attempts to return to ordinary life. He actively tests his newly won transformation by coaching himself to endure: 'Don't you dare go down / Tape the polaroid to your dome / Keep the sad shit off the phone'. The command to 'get your fine ass on the road' represents the active, perilous push forward to maintain his healing.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } - }, - "14": { - "label": "I'll be there (Chorus)", - "description": "Because the hero exhibited a Refusal of the Return in the previous track, he requires a Rescue from Without to pull him fully back into human society. This is structurally realized through the song's chorus, sung by a guest vocalist (Danielle Haim) representing the partner. Her repeated assurances \u2014 'I'll be there / I won't move / Tell me more, or tell me nothing' \u2014 act as the external tether reaching across the threshold, drawing the exhausted traveler safely home.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "semiotic": { - "label": "The Secular Anchor (Loved Ones as Mythic Forces)", - "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." - } - }, - "15": { - "label": "If only i could wait", - "description": "'If Only I Could Wait' perfectly embodies the Crossing of the Return Threshold. The hero is stepping out of his isolated, timeless sanctuary (the cabin) to re-enter the ordinary world by moving to California, but he is terrified of the impact. Vernon questions his ability to survive the transition, asking, 'Can I incur the weight? / Am I really this afraid now?'. The duet functions as 'a bilateral crying question' representing the agonizing effort to hold onto the 'boon' of their newfound love amidst the uncertainty, distance, and decay of the real world ('We'll decay in other ways now').", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold", - "semiotic": { - "label": "The Geographical Threshold (Distance and Decay)", - "rationale": "In myth, the Return Threshold often involves crossing a physical boundary back into the mortal realm, where magic fades. In this autobiographical narrative, the threshold is both geographical (moving from Wisconsin to California) and relational. The 'magic' that threatens to fade is the blissful, effortless love of the Goddess/Apotheosis stage, which must now survive the mundane, corrosive elements of time, distance, and emotional 'decay'." - } - }, - "16": { - "label": "There's a Rhythm (Verse 1-2)", - "description": "In the first two verses of 'There's A Rhythmn', Vernon achieves the Master of the Two Worlds stage. The 'two worlds' are geographically and emotionally represented as his dark, isolated past in Wisconsin ('the snow') and his bright, connected future in California ('a land of palm and gold'). By asking 'Or are less and more the same?' and recognizing that 'There's a rhythmn to reclaim', he achieves a psychological equilibrium. He holds both realities simultaneously, finding harmony ('rhythmn') between his past trauma and his present healing.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds", - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } - }, - "17": { - "label": "There's a Rhythm (Verse 3)", - "description": "The album's lyrical climax in verse 3 perfectly embodies the Freedom to Live. Released from the paralyzing anxiety and 'shame' that defined the beginning of his journey, Vernon lives fully in the present moment. He declares, 'Ya know I've really no more shame / Now things really are arranged', proving he has finally conquered the fear of change that initiated his Refusal of the Call. His focus shifts outward to pure connection ('Cause you really are a babe'), acting as a conduit for love without attachment to the guilt of his past.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live", - "semiotic": { - "label": "Psychological Internalization", - "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." - } + } + ] + }, + "kg-modal-sable-fable": { + "ttlFile": "sable-fable.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/sable-fable/monomyths/justin-vernon-journey", + "label": "Justin Vernon's Autobiographical Journey", + "stages": { + "1": { + "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 1)", + "description": "The Call to Adventure manifests as a psychological rupture. Justin Vernon expresses a desperate desire for an anxious 'feeling' to be gone, repeating himself three times in a way that reflects 'the nature of unrelenting intrusive thoughts'. This state of 'anxiety and desperation' serves as the summons. When he looks in the mirror and sees his reflection resembling 'some competitor', he is receiving the call to finally confront his own layered trauma.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "2": { + "label": "THINGS BEHIND THINGS BEHIND THINGS (Verse 2)", + "description": "The Refusal of the Call is explicitly voiced when Vernon admits, 'I am afraid of changing.' Faced with the 'enormity of the journey ahead'\u2014which requires him to 'check and rearrange' his mental state\u2014he hesitates ('How'm I supposed to do this now?'). The weight of what must be confronted is represented by the 'rings within rings within rings', symbolizing the astronomical, repeating layers of built-up trauma he must peel back to heal. He realizes the journey to happiness will require him to face the very things he has been trying to ignore.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "3": { + "label": "S P E Y S I D E (Verse 1-3)", + "description": "Written during an isolating period in Key West, 'S P E Y S I D E' represents the deepest point of darkness. Vernon is swallowed by guilt over his 'violent spree' of self-sabotage, destroying relationships and shooting himself in the foot ('It serves to suffer, make a hole in my foot'). This is the symbolic death of his ego, reduced to 'soot', where he realizes he 'can't make good' on his own.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "sequential": { + "label": "The Trauma Sequence Inversion", + "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." + }, + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "4": { + "label": "S P E Y S I D E (Verse 4)", + "description": "In verse 4 of 'S P E Y S I D E', the Supernatural Aid manifests not as a wizard or divine messenger, but as the grounding presence of the people he loves. While asking for forgiveness from this group of people he hurt, he hopes they can 'still make a man from me'. This belief that his loved ones can still see the beauty in him acts as the 'talisman' and psychological assurance he needs to survive the darkness and prepare for the threshold crossing.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "sequential": { + "label": "The Trauma Sequence Inversion", + "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." + }, + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "5": { + "label": "AWARDS SEASONS", + "description": "'AWARDS SEASON' represents the Crossing of the First Threshold. The song narrates a phase of sluggish and staggering change, drawing parallels to the 'acceptance' of awards, where the award is actually personal transformation and subsequent healing. By recognizing that 'Nothing stays the same', Vernon commits to the adventure, crossing from the paralyzing guilt of his past into the unknown sphere of acceptance and recovery.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold", + "sequential": { + "label": "The Trauma Sequence Inversion", + "rationale": "In Campbell's canonical framework, the hero receives Supernatural Aid, Crosses the Threshold, and then is swallowed into the Belly of the Whale. In this autobiographical album about mental health, the sequence is inverted. The hero is already trapped in the 'Belly' of his own anxiety and guilt (S P E Y S I D E). The Supernatural Aid (the forgiveness of loved ones) must arrive while he is in the abyss. This aid gives him the strength to finally Cross the Threshold (AWARDS SEASON) out of his darkness and into the active phase of healing." + } + }, + "6": { + "label": "SHORT STORY", + "description": "In 'Short Story', the Road of Trials is realized as an inward psychological ordeal of processing pain and accepting vulnerability. Vernon realizes that his past isolation\u2014symbolized by the lyric 'That January ain't the whole world'\u2014is not the entirety of his existence, successfully transmuting the melancholy of his past. As he steps into the bright sunlight, he discovers the presence of a 'helper' through the realization that he is 'never really, really on your own'. The annotations highlight that having someone 'recognize and validate your experience' acts as a 'healing balm'. Finally, the continuous ordeal of healing is accepted; the 'strain and thirst are sweet' because they represent the essential, cyclical work of emotional purification ('Time heals, and then it repeats').", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "7": { + "label": "Everything Is Peaceful Love", + "description": "In 'Everything Is Peaceful Love', the hero encounters the archetype of the Goddess, representing the attainment of true bliss and unity. The song encapsulates 'pure joy and elation', moving past his previous somber wallowing into a state painted with 'images of unity - peace and love'. Although he initially resists the vulnerability by claiming 'I'm not slipping', he eventually surrenders with a gentle heart, blinking in disbelief but admitting he is 'right at home'. The lyric mentioning a 'burning ring' perfectly symbolizes the archetypal mystical marriage, completing his transition into a peaceful harbor.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "8": { + "label": "Walk Home", + "description": "In 'Walk Home', the hero temporarily achieves the Apotheosis stage. Stripped of his ego-bound limitations, he is invited to 'shed your earthly burdens'. He is able to 'forget and share' his 'stress, anxiety and the constant motions of life', dwelling momentarily in a state of 'blissful rest'. He is so 'high on this person' that the feeling mirrors the 'happiness, shock, and excitement' of learning to walk.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", + "sequential": { + "label": "The 'Pink Cloud' Sequence Inversion", + "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." + }, + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "9": { + "label": "Day One", + "description": "In 'Day One', the hero faces the Woman as the Temptress, but the seduction is entirely internal. Following the pure bliss of the Goddess stage, Vernon is confronted with the exhausting reality of maintaining his healing ('unlearning lies' and shedding the things that 'rip you up'). The 'temptation' that threatens to arrest his journey is the seductive pull of regression\u2014the familiar, isolating comfort of his past trauma and anxiety. It is the urge to self-sabotage and return to the 'Belly of the Whale' rather than continue the difficult, transcendent work of true recovery.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "sequential": { + "label": "The 'Pink Cloud' Sequence Inversion", + "rationale": "In Campbell's canonical ordering, Apotheosis follows the Atonement with the Father and the Temptress. In this autobiographical narrative of mental health recovery, the sequence is inverted to reflect the 'Pink Cloud' phenomenon. The hero experiences a premature Apotheosis immediately following the Meeting with the Goddess, soaring into a state of blissful rest before he has actually done the hard work of unlearning his trauma. This premature peak makes the subsequent crash into the Temptress stage ('Day One') inevitable and structurally devastating." + }, + "semiotic": { + "label": "The Internal Temptress (Seduction of Regression)", + "rationale": "In classical myth, this stage is often represented by a literal female figure or physical vice that tempts the hero to abandon their quest. In this psychological framework, the 'Temptress' is the hero's own mind. The seduction is the allure of the familiar darkness and the comfort of old, destructive habits, which threaten to bind the hero's consciousness to their past trauma rather than allowing them to transcend it." + } + }, + "10": { + "label": "The Absent Atonement", + "description": null, + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "narrative": { + "label": "Internalized Authority Divergence", + "rationale": "In classical mythology, the hero's ego-death is triggered by an encounter with a terrifying Father-figure. In modern psychological narratives, this external projection is stripped away. The hero's battle is entirely with the Shadow (their own reflection) and the Temptress (the urge to regress). Because the hero acts as their own ultimate judge and punisher (as seen in the guilt of 'S P E Y S I D E'), an external 'Atonement' stage is rendered narratively obsolete; reconciliation must be achieved through self-forgiveness rather than cosmic approval." + } + }, + "11": { + "label": "From (Verse 1-2)", + "description": "In 'From', Vernon attains the Ultimate Boon of his psychological journey: restored emotional capacity. Having survived his trials and self-sabotage, he declares, 'Nothing's really wrong so / From now on'. The 'elixir' he has gained is the ability to finally hold space for someone else, telling his partner, 'I got time, I can give you some' and 'Give me your worry'. This represents the power to restore illumination to his world, transforming him from a person consumed by his own trauma into a source of healing for another.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "12": { + "label": "From (Bridge and Chorus)", + "description": "Alongside the Boon, 'From' simultaneously expresses a gentle Refusal of the Return. Having found a state where 'Nothing's really wrong', Vernon exhibits a reluctance to move forward into the mundane world or face the inevitable changes of the future. Lyrics like 'We can just keep it here for now' and 'Can I take another year?' demonstrate his desire to cling to this realm of blissful discovery and delay the passage of time.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "The Gentle Refusal", + "rationale": "Typically, the Refusal of the Return is an active rebellion against returning to humanity. Here, it is a much gentler, understandable psychological reaction. After years of suffering, the hero simply wants to press pause ('We can just keep it here for now') to savor his hard-won peace before facing whatever comes next." + } + }, + "13": { + "label": "I'll be there (Verse 1-2)", + "description": "In the verses of 'I'll Be There', the hero navigates the Magic Flight. Rather than fleeing physical pursuers, Vernon is fleeing the threat of mental regression as he attempts to return to ordinary life. He actively tests his newly won transformation by coaching himself to endure: 'Don't you dare go down / Tape the polaroid to your dome / Keep the sad shit off the phone'. The command to 'get your fine ass on the road' represents the active, perilous push forward to maintain his healing.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "14": { + "label": "I'll be there (Chorus)", + "description": "Because the hero exhibited a Refusal of the Return in the previous track, he requires a Rescue from Without to pull him fully back into human society. This is structurally realized through the song's chorus, sung by a guest vocalist (Danielle Haim) representing the partner. Her repeated assurances \u2014 'I'll be there / I won't move / Tell me more, or tell me nothing' \u2014 act as the external tether reaching across the threshold, drawing the exhausted traveler safely home.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "semiotic": { + "label": "The Secular Anchor (Loved Ones as Mythic Forces)", + "rationale": "In classical mythology, the hero is aided, elevated, or rescued by supernatural entities, wizards, or cosmic deities. In this autobiographical framework, these divine signifiers are secularized into the grounding reality of human connection. The profound, earthly safety of a romantic partner (and the forgiveness of friends) replaces magical intervention. The structural function remains intact\u2014providing the exact 'bliss', 'aid', or 'rescue' the hero needs\u2014but the vocabulary is entirely shifted to the intimate reality of healthy relationships." + } + }, + "15": { + "label": "If only i could wait", + "description": "'If Only I Could Wait' perfectly embodies the Crossing of the Return Threshold. The hero is stepping out of his isolated, timeless sanctuary (the cabin) to re-enter the ordinary world by moving to California, but he is terrified of the impact. Vernon questions his ability to survive the transition, asking, 'Can I incur the weight? / Am I really this afraid now?'. The duet functions as 'a bilateral crying question' representing the agonizing effort to hold onto the 'boon' of their newfound love amidst the uncertainty, distance, and decay of the real world ('We'll decay in other ways now').", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", + "semiotic": { + "label": "The Geographical Threshold (Distance and Decay)", + "rationale": "In myth, the Return Threshold often involves crossing a physical boundary back into the mortal realm, where magic fades. In this autobiographical narrative, the threshold is both geographical (moving from Wisconsin to California) and relational. The 'magic' that threatens to fade is the blissful, effortless love of the Goddess/Apotheosis stage, which must now survive the mundane, corrosive elements of time, distance, and emotional 'decay'." + } + }, + "16": { + "label": "There's a Rhythm (Verse 1-2)", + "description": "In the first two verses of 'There's A Rhythmn', Vernon achieves the Master of the Two Worlds stage. The 'two worlds' are geographically and emotionally represented as his dark, isolated past in Wisconsin ('the snow') and his bright, connected future in California ('a land of palm and gold'). By asking 'Or are less and more the same?' and recognizing that 'There's a rhythmn to reclaim', he achieves a psychological equilibrium. He holds both realities simultaneously, finding harmony ('rhythmn') between his past trauma and his present healing.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." + } + }, + "17": { + "label": "There's a Rhythm (Verse 3)", + "description": "The album's lyrical climax in verse 3 perfectly embodies the Freedom to Live. Released from the paralyzing anxiety and 'shame' that defined the beginning of his journey, Vernon lives fully in the present moment. He declares, 'Ya know I've really no more shame / Now things really are arranged', proving he has finally conquered the fear of change that initiated his Refusal of the Call. His focus shifts outward to pure connection ('Cause you really are a babe'), acting as a conduit for love without attachment to the guilt of his past.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", + "semiotic": { + "label": "Psychological Internalization", + "rationale": "Across the album, traditional mythic elements involving physical threats, magical realms, or external monsters are completely internalized. The 'unknown' is the hero's own mental health. The Herald, the Whale, and the Magic Flight are recontextualized as battles against anxiety, intrusive thoughts, and the urge to regress. The ultimate rewards\u2014the Boon, Master of Two Worlds, and Freedom to Live\u2014are semiotically shifted from cosmic conquests to the achievement of emotional empathy, mental equilibrium, and living free from the shame of past trauma." } } } - ] - }, - "kg-modal-ladybird": { - "ttlFile": "lady-bird.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/lady-bird/monomyths/christine-journey", - "label": "Christine's Heroine's Journey in Lady Bird", - "stages": { - "1": { - "label": "I hate California", - "description": "The protagonist manifests a visceral disdain for her Sacramento context, viewing it as a cultural desert. On a drive with her mother, she expresses her desire to move to the East Coast, where she believes 'culture is,' by applying to prestigious universities. This setting of an external goal marks the beginning of her quest for a life beyond her current socioeconomic and geographic boundaries.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure", - "narrative": { - "label": "Inward Call divergence", - "rationale": "In this stage, the 'call' does not originate from an external herald or messenger as typically described by Campbell. Instead, it is an 'inward call' born of the protagonist's own discontent and ambition. The adventure is self-initiated, shifting the heroic catalyst from destiny or external necessity to personal agency and the internal desire for social and cultural transformation." - } - }, - "2": { - "label": "My name is Lady Bird", - "description": "Instead of hesitating or clinging to her past, Christine aggressively rebrands herself as 'Lady Bird,' a name she proudly declares was given to her 'to me, by me.' In scenes such as her audition for the school musical and her introductions to new peers, she treats this self-naming as a non-negotiable decree. This act is an aggressive embrace of her own transformation, where she attempts to shed her ordinary-world identity entirely before she has even left her geographic home.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Active Departure from Identity divergence", - "rationale": "In the opening of the movie, Lady Bird inverts the traditional hero's hesitation. She does not refuse the journey due to fear or a desire for safety; she forces the journey into existence by demanding the world recognize her as the person she intends to become. Her refusal is not of the journey, but of her current self and socioeconomic status. Hence, she isn't afraid of the transformation; she is so desperate for it that she tries to inhabit its persona prematurely to bypass the discomfort of her current reality." - } - }, - "3": { - "label": "The Scholarships' Aid", - "description": "In a meeting in Sister Sarah Joan's office, Lady Bird confesses her desire to attend a 'city' school on the East Coast. While her mother dismisses these dreams as financially impossible, the nun offers a quiet form of empowerment by assuring Lady Bird that financial aid and scholarships are viable paths. This conversation provides the protagonist with the necessary hope of institutional support to continue her journey of self-realization.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "semiotic": { - "label": "Bureaucratic Aid divergence", - "rationale": "In this modern coming-of-age narrative, the 'supernatural' is entirely secularized and replaced by the bureaucratic hope of financial aid. The divergence lies in the shift from a mystical gift to an institutional mechanism; scholarships act as the 'magic' required to transcend socioeconomic boundaries. By framing a loan application or a grant as the hero's supernatural assistance, the film highlights how social mobility serves as the modern equivalent of divine or magical intervention." - } - }, - "4": { - "label": "Applying to East Coast schools", - "description": "The threshold is crossed through the definitive act of submitting her applications. After a sequence highlighting the secret collaboration with her father, Lady Bird moves beyond mere dreaming to take concrete, logistical steps toward the East Coast. This scene represents her formal commitment to a future of her own making; by mailing the forms, she effectively leaves the safety of her mother's worldview and enters the uncertain world of her future and own potential.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "I'll figure it out", - "description": "\"After the applications are sent, Lady Bird tries growing up by finding herself and her passions. She throws herself into the school musical, trying on a new personality to see if it fits. By joining theater and waiting for college letters, she is swallowed up by the \"what if\" of her future. It is a messy, quiet time where her childhood self starts fading away, leaving her in the dark until she can figure out who she is supposed to be next.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale" - }, - "6": { - "label": "The Growing Pains", - "description": "Lady Bird faces a series of messy emotional tests that strip away her naive ideas about romance and status. Her first boyfriend Danny's secret of being gay, her father's job loss, the continous fights with her mother, and her unfulfilling sexual experience with Kyle all force her to confront a reality that doesn't care about her 'Lady Bird' persona. By betraying her best friend Julie to fit in with Jenna, she experiences the guilt of social climbing. These characters act as 'Threshold Guardians' who don't just stand in her way, but actively participate in her growth by forcing her to deal with the consequences of her choices and actions.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "7": { - "label": "Dad's Help", - "description": "At night in her bedroom, Larry brings Lady Bird the financial aid paperwork he has been helping her with in secret. Despite his own struggle with clinical depression and the heavy weight of his unemployment, he chooses to set aside his own pain to focus entirely on her future. By validating her ambitions while her mother dismisses them, Larry offers her a profound sense of being 'seen' and loved without conditions, which she currenly cannot find in her mother.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "semiotic": { - "label": "Goddess as Paternal Love divergence", - "rationale": "This divergence replaces the 'Goddess', traditionally a source of mystical love, with the very real, flawed, and quiet support of a father. The power of the scene isn't in a magical blessing, but in the fact that Larry is struggling himself, yet chooses to empower his daughter's future in secret. It shifts the 'encounter' from the supernatural to a grounded act of family solidarity, where a simple letter of financial aid becomes the ultimate proof that the hero is worthy of her own ambitions." - } - }, - "8": { - "label": "Whatever we give you is never enough!", - "description": "In a brutal confrontation after discovering the secret applications, the tension between mother and daughter peaks. When Lady Bird demands Marion to give her a number so she can eventually pay her back for the cost of raising her and never speak to her again, Marion retorts, 'I highly doubt you'll ever get a job good enough to do that.' Fueled by a mix of rage and the fear of her daughter's ungratefulness, Marion says things she likely doesn't believe. She projects her own lower-middle-class cynicism onto Lady Bird, unconsciously trying to convince her that she will never become the person she hopes to be, effectively trying to kill the hero's ambition before she can even leave.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "narrative": { - "label": "Woman as Underestimator divergence", - "rationale": "This divergence replaces the 'Temptress', traditionally a distraction of the flesh, with an 'Underestimator' who uses psychological discouragement. Marion doesn't try tempting Lady Bird away from her journey with any trick or seduction ; she tries to hold her back with the weight of reality. Because she is angry at the secrecy and exhausted by their socioeconomic standing, she unwillingly tries to put the heroine down. The temptation here transforms into the dangerous pull to believe the mother's negative projection and accept a life of smallness, abandoning the journey to avoid the sting of maternal disapproval." - } - }, - "9": { - "label": "Added to Waitlist", - "description": "After some time waiting, Lady Bird receives a letter stating she is on the waitlist for a New York university, turning her dream into a tangible possibility. The domestic pressure also lifts slightly as her brother Miguel finds a job and she ultimately leaves Kyle's 'cool' crowd to go to prom with Julie. As the two friends dance together, Lady Bird experiences a state of peaceful clarity, finally shedding her social pretenses and reclaiming the friendships that actually matter.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis" - }, - "10": { - "label": "I'm 18!", - "description": "Christine's long-sought goal is finally realized through a rapid succession of milestones. Upon turning eighteen, she immediately exercises her newfound agency by buying a lottery ticket and a magazine, followed quickly by passing her driving test, a concrete symbol of her ability to move through the world without her mother's supervision. With her high school graduation behind her and the official news of her acceptance into a New York university, she achieves the legal and physical freedom she has craved. These scenes mark the moment she is no longer just dreaming of a future; she is actively stepping into it, ready to leave Sacramento behind and finally begin the process of growing up on her own terms.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon" - }, - "11": { - "label": "Moving to New York City", - "description": "The 'flight' begins with a tense car ride to the airport where Marion remains stubbornly silent, refusing to look at her daughter. After a tearful goodbye with her father, Lady Bird walks through security alone, leaving her mother behind in the car. The sequence captures the literal move across the country to New York, but the emotional weight comes from the unresolved conflict; while Lady Bird is flying toward her new life, the camera stays with Marion as she regrets her silence and desperately circles back to the terminal, too late to say goodbye. This literal journey signifies for Christine the final rupture from her childhood home.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight" - }, - "12": { - "label": "I wish you liked me", - "description": "While unpacking in New York, Christine finds a stack of crumpled, discarded letters from her mother to her that Larry had secretly tucked into her suitcase. Reading Marion's struggling attempts to express her pride and love, Christine finally looks past the years of fights to see the deep, fearful care underneath. This provides a retroactive reconciliation, as she understands her mother's harshness was born of fear and love. This realization allows her to forgive the maternal authority she spent years resisting, effectively finding peace with the woman who shaped her.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "sequential": { - "label": "The Atonement After the Flight divergence", - "rationale": "Unlike traditional structures where atonement happens at the journey's peak before the flight and the return, Christine requires physical distance, hence her moving accross the country, to achieve clarity. She must leave Sacramento to truly see it. In this narrative, the heroine needs geographical separation for emotional reconciliation with her mother, and subsequently her origins." - }, - "semiotic": { - "label": "Atonement with the Mother divergence", - "rationale": "In this modern inversion of roles, the Father, traditionally the ultimate authority figure the hero must reconcile with, is replaced by the Mother. Marion represents the gatekeeper and the source of judgment, while Larry acts as the nurturer. The atonement is therefore a psychological reconciliation with maternal authority, shifting the mythic focus from patriarchy to the complexities of mother-daughter dynamics." - } - }, - "13": { - "label": "My name is Christine", - "description": "At her first college party in New York, a stranger asks the heroine for her name. Instead of using her rebellious 'Lady Bird' title, she now simply responds: 'My name is Christine.' This marks the total shedding of her teenage persona. Having reached her goal and found internal peace, she no longer needs to perform a fake version of herself to prove her independence. She is finally ready to embrace and actively return to the identity she once tried so hard to escape from.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Active Return to Identity divergence", - "rationale": "While the classical hero might refuse to return to their ordinary world, Christine willingly 'returns' to her true self. This stage acts as an inversion of the 'departure from identity' sequence seen at the beginning of the film. Now that she has achieved distance from Sacramento, she is ironically more connected to her roots than ever. By choosing the name 'Christine' and recanting 'Lady Bird', she signals that she is ready to reconcile with her ordinary world self, accepting her history and heritage as part of her adult identity." - }, - "sequential": { - "label": "Refusal of the Return After the Atonement divergence", - "rationale": "For this stage, the atonement with her mother through the letters was a mandatory prerequisite. She could not accept her original name until she first understood the love behind the woman who gave it to her. Because she has reached emotional peace with her mother, she can now willingly return to her birth name, turning a refusal of the past into a mature embrace of her identity." - } - }, - "14": { - "label": "Sunday Mess in NYC", - "description": "After a night of partying, Christine wanders around the streets of NYC and ends up into a Presbyterian church on a Sunday morning. As she listens to the choir, she is visibly moved to tears; the music and the ritual provide a profound sensory link to her upbringing in Sacramento. Though she spent years despising the constraints of her Catholic school and the mundane nature of church-going, the familiarity of the service now acts as an anchor. This moment of grace provides her the emotional catalyst she needs to finally reach out to home.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without" - }, - "15": { - "label": "Calling Home", - "description": "Right outside of the church, Christine picks up the phone and calls home, leaving a voice message for her parents. This is the moment she bridges the gap between her new world (NYC) and her old world (Sacramento), crossing the threshold back into a relationship with her Californian roots and with her family, on her own terms as an adult. This act signifies her mature return to her origins, acknowledging that her mother's presence and her hometown's landscape are inseparable parts of who she has become.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold" - }, - "16": { - "label": "Did you feel emotional the first time you drove in Sacramento?", - "description": "In her voicemail, Christine shares with her mother the memory of driving through Sacramento for the first time, a moment she couldn't share with her when it happened because the two weren't speaking. By emotionally describing the new-found specific beauty of her hometown while standing on a New York sidewalk, she effectively brings one world into the other. She achieves an equilibrium and holds both realms simultaneously, valuing her roots precisely because she now has the distance to see them clearly in her new life stage.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds" - }, - "17": { - "label": "Thank you", - "description": "The voicemail and the journey conclude with a simple, resonant 'Thank you', signaling Christine's release from the combative ego of her adolescent identity, which had been the core of her journey. She is no longer a hero in flight from her origins, but an adult existing fully in the present, recognizing her parents' sacrifices as the quiet, vital infrastructure of her own life. This gratitude is what allows her to live freely now, in a new reality but with a clear heart.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live" + } + ] + }, + "kg-modal-ladybird": { + "ttlFile": "lady-bird.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/lady-bird/monomyths/christine-journey", + "label": "Christine's Heroine's Journey in Lady Bird", + "stages": { + "1": { + "label": "I hate California", + "description": "The protagonist manifests a visceral disdain for her Sacramento context, viewing it as a cultural desert. On a drive with her mother, she expresses her desire to move to the East Coast, where she believes 'culture is,' by applying to prestigious universities. This setting of an external goal marks the beginning of her quest for a life beyond her current socioeconomic and geographic boundaries.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", + "narrative": { + "label": "Inward Call divergence", + "rationale": "In this stage, the 'call' does not originate from an external herald or messenger as typically described by Campbell. Instead, it is an 'inward call' born of the protagonist's own discontent and ambition. The adventure is self-initiated, shifting the heroic catalyst from destiny or external necessity to personal agency and the internal desire for social and cultural transformation." + } + }, + "2": { + "label": "My name is Lady Bird", + "description": "Instead of hesitating or clinging to her past, Christine aggressively rebrands herself as 'Lady Bird,' a name she proudly declares was given to her 'to me, by me.' In scenes such as her audition for the school musical and her introductions to new peers, she treats this self-naming as a non-negotiable decree. This act is an aggressive embrace of her own transformation, where she attempts to shed her ordinary-world identity entirely before she has even left her geographic home.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Active Departure from Identity divergence", + "rationale": "In the opening of the movie, Lady Bird inverts the traditional hero's hesitation. She does not refuse the journey due to fear or a desire for safety; she forces the journey into existence by demanding the world recognize her as the person she intends to become. Her refusal is not of the journey, but of her current self and socioeconomic status. Hence, she isn't afraid of the transformation; she is so desperate for it that she tries to inhabit its persona prematurely to bypass the discomfort of her current reality." + } + }, + "3": { + "label": "The Scholarships' Aid", + "description": "In a meeting in Sister Sarah Joan's office, Lady Bird confesses her desire to attend a 'city' school on the East Coast. While her mother dismisses these dreams as financially impossible, the nun offers a quiet form of empowerment by assuring Lady Bird that financial aid and scholarships are viable paths. This conversation provides the protagonist with the necessary hope of institutional support to continue her journey of self-realization.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "semiotic": { + "label": "Bureaucratic Aid divergence", + "rationale": "In this modern coming-of-age narrative, the 'supernatural' is entirely secularized and replaced by the bureaucratic hope of financial aid. The divergence lies in the shift from a mystical gift to an institutional mechanism; scholarships act as the 'magic' required to transcend socioeconomic boundaries. By framing a loan application or a grant as the hero's supernatural assistance, the film highlights how social mobility serves as the modern equivalent of divine or magical intervention." + } + }, + "4": { + "label": "Applying to East Coast schools", + "description": "The threshold is crossed through the definitive act of submitting her applications. After a sequence highlighting the secret collaboration with her father, Lady Bird moves beyond mere dreaming to take concrete, logistical steps toward the East Coast. This scene represents her formal commitment to a future of her own making; by mailing the forms, she effectively leaves the safety of her mother's worldview and enters the uncertain world of her future and own potential.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "I'll figure it out", + "description": "\"After the applications are sent, Lady Bird tries growing up by finding herself and her passions. She throws herself into the school musical, trying on a new personality to see if it fits. By joining theater and waiting for college letters, she is swallowed up by the \"what if\" of her future. It is a messy, quiet time where her childhood self starts fading away, leaving her in the dark until she can figure out who she is supposed to be next.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale" + }, + "6": { + "label": "The Growing Pains", + "description": "Lady Bird faces a series of messy emotional tests that strip away her naive ideas about romance and status. Her first boyfriend Danny's secret of being gay, her father's job loss, the continous fights with her mother, and her unfulfilling sexual experience with Kyle all force her to confront a reality that doesn't care about her 'Lady Bird' persona. By betraying her best friend Julie to fit in with Jenna, she experiences the guilt of social climbing. These characters act as 'Threshold Guardians' who don't just stand in her way, but actively participate in her growth by forcing her to deal with the consequences of her choices and actions.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "7": { + "label": "Dad's Help", + "description": "At night in her bedroom, Larry brings Lady Bird the financial aid paperwork he has been helping her with in secret. Despite his own struggle with clinical depression and the heavy weight of his unemployment, he chooses to set aside his own pain to focus entirely on her future. By validating her ambitions while her mother dismisses them, Larry offers her a profound sense of being 'seen' and loved without conditions, which she currenly cannot find in her mother.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "semiotic": { + "label": "Goddess as Paternal Love divergence", + "rationale": "This divergence replaces the 'Goddess', traditionally a source of mystical love, with the very real, flawed, and quiet support of a father. The power of the scene isn't in a magical blessing, but in the fact that Larry is struggling himself, yet chooses to empower his daughter's future in secret. It shifts the 'encounter' from the supernatural to a grounded act of family solidarity, where a simple letter of financial aid becomes the ultimate proof that the hero is worthy of her own ambitions." } + }, + "8": { + "label": "Whatever we give you is never enough!", + "description": "In a brutal confrontation after discovering the secret applications, the tension between mother and daughter peaks. When Lady Bird demands Marion to give her a number so she can eventually pay her back for the cost of raising her and never speak to her again, Marion retorts, 'I highly doubt you'll ever get a job good enough to do that.' Fueled by a mix of rage and the fear of her daughter's ungratefulness, Marion says things she likely doesn't believe. She projects her own lower-middle-class cynicism onto Lady Bird, unconsciously trying to convince her that she will never become the person she hopes to be, effectively trying to kill the hero's ambition before she can even leave.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "narrative": { + "label": "Woman as Underestimator divergence", + "rationale": "This divergence replaces the 'Temptress', traditionally a distraction of the flesh, with an 'Underestimator' who uses psychological discouragement. Marion doesn't try tempting Lady Bird away from her journey with any trick or seduction ; she tries to hold her back with the weight of reality. Because she is angry at the secrecy and exhausted by their socioeconomic standing, she unwillingly tries to put the heroine down. The temptation here transforms into the dangerous pull to believe the mother's negative projection and accept a life of smallness, abandoning the journey to avoid the sting of maternal disapproval." + } + }, + "9": { + "label": "Added to Waitlist", + "description": "After some time waiting, Lady Bird receives a letter stating she is on the waitlist for a New York university, turning her dream into a tangible possibility. The domestic pressure also lifts slightly as her brother Miguel finds a job and she ultimately leaves Kyle's 'cool' crowd to go to prom with Julie. As the two friends dance together, Lady Bird experiences a state of peaceful clarity, finally shedding her social pretenses and reclaiming the friendships that actually matter.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" + }, + "10": { + "label": "I'm 18!", + "description": "Christine's long-sought goal is finally realized through a rapid succession of milestones. Upon turning eighteen, she immediately exercises her newfound agency by buying a lottery ticket and a magazine, followed quickly by passing her driving test, a concrete symbol of her ability to move through the world without her mother's supervision. With her high school graduation behind her and the official news of her acceptance into a New York university, she achieves the legal and physical freedom she has craved. These scenes mark the moment she is no longer just dreaming of a future; she is actively stepping into it, ready to leave Sacramento behind and finally begin the process of growing up on her own terms.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" + }, + "11": { + "label": "Moving to New York City", + "description": "The 'flight' begins with a tense car ride to the airport where Marion remains stubbornly silent, refusing to look at her daughter. After a tearful goodbye with her father, Lady Bird walks through security alone, leaving her mother behind in the car. The sequence captures the literal move across the country to New York, but the emotional weight comes from the unresolved conflict; while Lady Bird is flying toward her new life, the camera stays with Marion as she regrets her silence and desperately circles back to the terminal, too late to say goodbye. This literal journey signifies for Christine the final rupture from her childhood home.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" + }, + "12": { + "label": "I wish you liked me", + "description": "While unpacking in New York, Christine finds a stack of crumpled, discarded letters from her mother to her that Larry had secretly tucked into her suitcase. Reading Marion's struggling attempts to express her pride and love, Christine finally looks past the years of fights to see the deep, fearful care underneath. This provides a retroactive reconciliation, as she understands her mother's harshness was born of fear and love. This realization allows her to forgive the maternal authority she spent years resisting, effectively finding peace with the woman who shaped her.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "sequential": { + "label": "The Atonement After the Flight divergence", + "rationale": "Unlike traditional structures where atonement happens at the journey's peak before the flight and the return, Christine requires physical distance, hence her moving accross the country, to achieve clarity. She must leave Sacramento to truly see it. In this narrative, the heroine needs geographical separation for emotional reconciliation with her mother, and subsequently her origins." + }, + "semiotic": { + "label": "Atonement with the Mother divergence", + "rationale": "In this modern inversion of roles, the Father, traditionally the ultimate authority figure the hero must reconcile with, is replaced by the Mother. Marion represents the gatekeeper and the source of judgment, while Larry acts as the nurturer. The atonement is therefore a psychological reconciliation with maternal authority, shifting the mythic focus from patriarchy to the complexities of mother-daughter dynamics." + } + }, + "13": { + "label": "My name is Christine", + "description": "At her first college party in New York, a stranger asks the heroine for her name. Instead of using her rebellious 'Lady Bird' title, she now simply responds: 'My name is Christine.' This marks the total shedding of her teenage persona. Having reached her goal and found internal peace, she no longer needs to perform a fake version of herself to prove her independence. She is finally ready to embrace and actively return to the identity she once tried so hard to escape from.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Active Return to Identity divergence", + "rationale": "While the classical hero might refuse to return to their ordinary world, Christine willingly 'returns' to her true self. This stage acts as an inversion of the 'departure from identity' sequence seen at the beginning of the film. Now that she has achieved distance from Sacramento, she is ironically more connected to her roots than ever. By choosing the name 'Christine' and recanting 'Lady Bird', she signals that she is ready to reconcile with her ordinary world self, accepting her history and heritage as part of her adult identity." + }, + "sequential": { + "label": "Refusal of the Return After the Atonement divergence", + "rationale": "For this stage, the atonement with her mother through the letters was a mandatory prerequisite. She could not accept her original name until she first understood the love behind the woman who gave it to her. Because she has reached emotional peace with her mother, she can now willingly return to her birth name, turning a refusal of the past into a mature embrace of her identity." + } + }, + "14": { + "label": "Sunday Mess in NYC", + "description": "After a night of partying, Christine wanders around the streets of NYC and ends up into a Presbyterian church on a Sunday morning. As she listens to the choir, she is visibly moved to tears; the music and the ritual provide a profound sensory link to her upbringing in Sacramento. Though she spent years despising the constraints of her Catholic school and the mundane nature of church-going, the familiarity of the service now acts as an anchor. This moment of grace provides her the emotional catalyst she needs to finally reach out to home.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" + }, + "15": { + "label": "Calling Home", + "description": "Right outside of the church, Christine picks up the phone and calls home, leaving a voice message for her parents. This is the moment she bridges the gap between her new world (NYC) and her old world (Sacramento), crossing the threshold back into a relationship with her Californian roots and with her family, on her own terms as an adult. This act signifies her mature return to her origins, acknowledging that her mother's presence and her hometown's landscape are inseparable parts of who she has become.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" + }, + "16": { + "label": "Did you feel emotional the first time you drove in Sacramento?", + "description": "In her voicemail, Christine shares with her mother the memory of driving through Sacramento for the first time, a moment she couldn't share with her when it happened because the two weren't speaking. By emotionally describing the new-found specific beauty of her hometown while standing on a New York sidewalk, she effectively brings one world into the other. She achieves an equilibrium and holds both realms simultaneously, valuing her roots precisely because she now has the distance to see them clearly in her new life stage.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" + }, + "17": { + "label": "Thank you", + "description": "The voicemail and the journey conclude with a simple, resonant 'Thank you', signaling Christine's release from the combative ego of her adolescent identity, which had been the core of her journey. She is no longer a hero in flight from her origins, but an adult existing fully in the present, recognizing her parents' sacrifices as the quiet, vital infrastructure of her own life. This gratitude is what allows her to live freely now, in a new reality but with a clear heart.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live" } } - ] - }, - "kg-modal-aeneid": { - "ttlFile": "aeneid.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/aeneid/monomyths/aeneas-journey", - "label": "Aeneas's Hero's Journey in The Aeneid", - "stages": { - "1": { - "label": "The storm on the Libyan coast", - "description": "Juno persuades Aeolus to unleash the winds upon the fleet, and a black squall closes over the survivors of seven years of wandering. Ships are scattered, men and oars float on the waves, and the wreckage of what remained of Troy is dispersed across the unknown sea. Aeneas is washed onto an unfamiliar African shore with a handful of companions, ignorant of his location, ignorant of his queen, possessed of nothing but the household gods he salvaged from the burning city and the bare instruction that some western kingdom is owed to him. The Trojan identity, already eroded by years of homelessness, is here finally extinguished as a public reality, and the figure who emerges from the shore is reduced to a single function: that of the survivor charged with a beginning he cannot yet imagine.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "sequential": { - "label": "In medias res opening divergence", - "rationale": "The poem begins inside the swallowing-darkness stage itself, at narrative position one, with all preparatory content delivered analeptically through Aeneas's recollection in the Carthaginian books. The dissolution-of-self is presented as a starting condition rather than a culminating one, displaced four positions earlier than its canonical fifth-place location, and the cascading consequence is that the stages which should precede it must surface afterward, transforming the Refusal of the Call, the Temptress, the Call itself, and the First Threshold into a sequence delivered in scrambled order through the first six books. The opening choice is the foundational structural gesture from which the rest of the Departure's reordering follows, the Homeric inheritance of the in-medias-res protocol producing a monomyth realization whose canonical sequence is recoverable only by reading against the narrative grain. What the canonical archetype treats as a five-stage progression toward the swallowing is here treated as a single dissolution given immediately, with the preparatory architecture reconstructed from the hero's own memory rather than narrated as it occurs." - } - }, - "2": { - "label": "A second Troy rising from the sand", - "description": "In Carthage Aeneas finds a city in the act of becoming what his own people had been: walls rising under disciplined hands, a queen of remarkable competence, laws being framed at this very moment for a polity not yet finished. He is welcomed at her hearth, honoured at her banquet, and eventually pulled into her bed and her project. The mission westward recedes from view as the founding work he had been promised in Italy appears to be available, under different patronage, in this very harbour. He puts on Tyrian purple, oversees the construction of towers that are not his to raise, and lets the months accumulate without remarking on their accumulation. The hesitation here is not articulated as refusal but enacted as substitution, the fated city traded for the convenient one and the divine charge silenced beneath the daily ceremonies of an adopted court.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call" - }, - "3": { - "label": "The cave and the pyre", - "description": "During a hunting expedition a sudden storm drives the queen and the Trojan into the same cave, where, with Juno presiding and Earth and the nymphs as witnesses, their union is consummated under conditions Dido takes to be a wedding. From that day she ceases to disguise the relation, calls Aeneas her husband in public, and consigns the construction of her city to suspension. The seduction operates at every register at once: erotic, political, dynastic, domestic. Aeneas is offered not merely a lover but a queen, not merely a queen but a kingdom, not merely a kingdom but a finished destiny that requires no further travelling. When the divine command finally arrives and he prepares his ships in secret, Dido moves through the stages of fury, supplication, and curse, ending on the pyre with the sword he had left behind, and the smoke of her burning is the last sight Carthage offers the departing fleet.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "sequential": { - "label": "Temptation precedes call divergence", - "rationale": "The temptation surfaces at narrative position three, before the Call has been articulated as binding mandate, displacing the Temptress five positions earlier than its canonical mid-Initiation placement. The structural consequence is decisive: the seduction operates not as an obstacle late in the journey but as an alternative founding offered before the true founding has been firmly accepted, and the hero's vulnerability to it is intensified by the fact that no unambiguous summons has yet recalled him from the option Carthage represents. The positioning explains the unusual force the Dido episode commands within the realization. It is the test that nearly succeeds, the stage that almost replaces the journey rather than merely interrupting it, and the trauma it leaves in the hero shapes every subsequent act precisely because it occurred before the call had been delivered with the authority that would have made resistance unambiguous. Where the canonical archetype tests a hero already committed, this realization tests a hero not yet committed, and the dramatic asymmetry is decisive for everything that follows." - } - }, - "4": { - "label": "Italiam non sponte sequor", - "description": "Mercury descends through the air with his caduceus and his winged sandals and finds Aeneas in Tyrian dress overseeing the works of a city that is not his. The messenger speaks plainly: the destined kingdom is Italy, the heir whose patrimony is being squandered is Iulus, the queen at whose side the hero stands has no claim on a man whose obligation runs to unborn generations and to a foundation Jupiter has already named. The command is unconditional and delivered in the imperative. Aeneas hears it in shock, and within the same book begins the preparations to sail. When confronted by Dido in the celebrated exchange that follows, his self-defence will be that he does not seek Italy of his own will, that the journey is required of him by powers he can neither refuse nor reinterpret. The summons that the entire opening had been gathering toward, half-named through Hector's ghost on Troy's last night, partially disclosed by the Penates, prefigured by Creusa, arrives here in unmistakable form.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure", - "narrative": { - "label": "Gathered and doubled call divergence", - "rationale": "The summons in this poem is distributed across multiple anticipations and only finalized late, the canonical archetype's discrete opening rupture replaced by a long process of accumulating mandate. Hector's ghost on Troy's last night charges Aeneas with carrying the household gods to a new city without naming the city; the Penates speak in dream of Hesperia without specifying its terms; Creusa's shade prophesies a western kingdom and a royal bride without binding the hero to any timetable; Helenus elaborates the geography in Book III without commanding obedience. Mercury's intervention in Carthage is therefore not the announcement of a new mission but the gathering of a long anticipatory chain into a binding directive. The poem's call functions partly as memory and partly as repetition, the journey having been summoned several times before the summons becomes unavoidable, and the hero having been told what awaits him long before he is told that he must unconditionally pursue it. The dramatic weight rests not on the novelty of the message but on the moment when its accumulated authority becomes inescapable, the reluctant founder finally cornered by a mandate that has been forming around him since the night his city fell." - }, - "sequential": { - "label": "Delayed call divergence", - "rationale": "Mercury's command arrives at narrative position four, behind the Belly of the Whale, the Refusal of the Call, and the Temptress, three positions later than the canonical opening placement. The displacement is partly artefact of the in medias res opening and partly a substantive choice about how the founding mission's authority is constituted. By the time the unambiguous command is delivered, the hero has already failed the test of substitute foundation in Carthage, already endured the dissolution at sea, already received the prefigurative summons through Hector, the Penates, and Creusa. The Call therefore arrives not as an opening rupture but as a closure applied to a long process of attempted alternatives, the moment when the accumulated previous summons become suddenly binding. The displacement carries its own thematic content: the founding is authorized late and against resistance rather than embraced early and pursued with single-minded commitment, and the founder's reluctance is constitutive of the mission rather than an obstacle to it." - } - }, - "5": { - "label": "Loosing the cables", - "description": "The Trojan ships are made ready under cover of preparation rather than under public proclamation, and at the appointed hour the cables are cut and the fleet slips from the Carthaginian harbour while the queen is still asleep. At dawn she sees the empty roadstead, hurls her final imprecation against the departing sails, and ascends the pyre. The crossing here is not a heroic step into a marked threshold but a quiet severing accomplished while the abandoned world is unconscious of the loss. Behind the ships the smoke of Dido's burning rises and is absorbed by the African horizon, the cost of the threshold paid in another life entirely. Ahead lies the open Mediterranean and the final passage toward the prophesied coast, the harbour not yet known but committed to without further hesitation.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "6": { - "label": "Games and the helmsman lost", - "description": "The fleet returns to Sicily for the anniversary of Anchises's death, and Aeneas presides over funeral games of ship-races, foot-races, archery, and boxing in honour of the buried father, exercises in collective memory that strengthen the band of survivors even as Trojan women, despairing of the endless journey, are incited by Juno to set fire to the ships. Some are saved by Jupiter's rain, others lost; the weak and the unwilling are settled at Acesta and the company that continues is the company prepared to finish the crossing. On the final night the helmsman Palinurus is taken by Sleep and falls into the sea, the fleet's pilot drowned within sight of Italy, the cost of arrival paid in the body of the most experienced navigator. The ordeals of this stage are concentrated and incidental rather than serial and structural, the fleet having already exhausted most of its heroic-test material in the analeptic narration of Books II and III.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "7": { - "label": "Facilis descensus Averno", - "description": "At Cumae the Sibyl receives Aeneas in the cavern of the hundred mouths, possessed by Apollo, and lays out the conditions of the descent: the golden bough that must be plucked from a hidden tree if the underworld is to be entered and survived, the unburied companion who must be found and given proper rites before the threshold can be crossed, the sacrifices to Hecate that prepare the night journey. She articulates the foundational principle of the catabasis in the line that gives the moment its weight, that the descent to Avernus is easy and the return is the labour. When the bough is found and the rites completed, she takes Aeneas through the entrance to the underworld and walks beside him through every register of the dead, naming the shades, intervening with Charon and Cerberus, mediating each encounter with the precise authority of one who knows the geography no living traveller can know unaided. Without her presence the journey would be impossible at every stage of its unfolding.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "sequential": { - "label": "Aid after trials divergence", - "rationale": "The Sibyl's intervention arrives at narrative position seven, well after the First Threshold has been crossed and the Road of Trials undertaken, and her aid is preparation for a specific subsequent ordeal, the catabasis, rather than an opening endowment for the journey at large. The displacement of four positions later than the canonical third-place position reflects this realization's distinctive treatment of the supernatural register: the most concentrated divine mediation is reserved for the central revelation rather than for the journey's commencement, which is supported instead by Venus's recurring intercession and by the prophetic voices that gather toward the Call. The Sibyl's late arrival positions her not as the equipping mentor of the Departure but as the threshold figure of the Initiation's deepest passage, her aid concentrated at the moment where the underworld's discoveries will reorganize everything that has come before. The canonical archetype's opening endowment is here split into the diffuse divine care of the early books and the precise priestly mediation of the underworld." - } - }, - "8": { - "label": "The fields of mourning and beyond", - "description": "The descent winds through the regions of the dead in widening circuits, past the unburied at the Stygian shore, past the souls of children and the falsely condemned, into the fields of mourning where Dido's shade turns from him in silence and refuses to hear his explanation. Beyond these come the warriors, friends and enemies of Troy alike, and finally the gates of Tartarus glimpsed but not entered. The path opens at last into the luminous valley of Elysium, where Anchises stands in the green meadows surveying the souls awaiting their next embodiment. The reunion is not a confrontation. The father weeps with joy at the son's arrival, embraces a form that cannot be embraced, and welcomes Aeneas not as a delinquent who must justify his life but as the inheritor of the cosmological vision the dead are now in a position to share. Across the river of forgetfulness, surrounded by the souls of those not yet born, Anchises gathers his son into a teaching that the upper world has no standpoint from which to deliver.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "sequential": { - "label": "Initiation block shift divergence", - "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." - }, - "semiotic": { - "label": "Atonement as revelation divergence", - "rationale": "Anchises in the Elysian fields preserves the structural function of the stage with full clarity, the inner authority faced and the hero's identity reconstituted by that facing, but he replaces the canonical judicial register with a disclosive one. The father does not threaten the son, does not demand justification of his exile, does not conduct anything resembling a reckoning. He weeps with joy at the arrival, embraces a form that cannot be embraced, and gathers the son into a cosmological teaching whose authority operates through illumination rather than through judgment. Where the canonical archetype encodes the encounter through a sign-system of confrontation, threatened obliteration, and survived verdict as the precondition for authorized continuation, this realization recodes the patriarchal sign as pedagogical rather than agonistic. The encounter operates through the authority of disclosed knowledge rather than through the threat of withheld approval, and the founder is authorized for the work ahead by being shown what the work contributes to rather than by surviving paternal verdict on what he has so far been." - } - }, - "9": { - "label": "The soul-fields and the doctrine of return", - "description": "Standing in the meadows beyond Lethe, Anchises explains the cosmic order to his son: a world-soul animating sky and earth and sea, an inner fire diffused through every body, the encumbrance of flesh that clouds the spirit's native clarity, the long purification by which souls are scoured of their accumulated stains and prepared again for embodied life. The teaching is delivered as philosophy rather than as vision, but it functions for the hero as a momentary release from the categories that have governed his existence: the wandering exile who must reach a coast becomes briefly the participant in a metaphysical structure that includes his coast, his city, and his death within a single vast economy of return. The ego-bound figure who arrived at the underworld's mouth is, in this passage, dissolved into a cosmological standpoint from which his own labour appears as one element in a pattern that does not depend on him for its intelligibility.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis", - "sequential": { - "label": "Initiation block shift divergence", - "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." - } - }, - "10": { - "label": "The parade of Roman souls", - "description": "Anchises leads his son to a vantage from which the procession of unborn souls can be reviewed, and names them one by one: the Alban kings descending from Iulus, Romulus the wolf-suckled founder, the Caesars, Augustus himself extending an empire that will reach beyond the Garamantes and the Indians, Numa with his laws, the Brutuses, the Gracchi, the Scipios, the long line of Roman virtue. The catalogue closes with Marcellus, the recently dead heir whose shade is acknowledged with a tenderness that breaks the imperial register. The boon Aeneas carries out of the underworld is neither object nor power but knowledge of the future for whose sake the present labour is undertaken: the certainty that his exile is the seed of an order that will measure itself against the orbits of the stars. He returns to the upper world transformed by knowing what his hardships are knowable as, and the journey from this point forward proceeds under that disclosure.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon", - "sequential": { - "label": "Initiation block shift divergence", - "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." - } - }, - "11": { - "label": "This is the land", - "description": "The fleet rounds the Italian coast and turns into the mouth of the Tiber, where the river runs yellow with sand and forest crowds the banks. The Trojans go ashore and prepare a meal on flat cakes of bread used as plates, and Iulus laughingly remarks that they are eating their tables. The harmless joke fulfils, in the same instant of its utterance, an oracle Aeneas had received and feared, that the journey would end where hunger drove the company to consume even the platters their food rested on. The recognition cascades immediately into the ceremonial gesture of arrival: Aeneas embraces the soil, calls upon the local divinities and the Earth itself, and acknowledges that the prophesied terminus has been reached. That night the river god Tiberinus rises in vision and confirms the arrival, instructing the founder upstream to seek the Arcadian alliance. The threshold has been crossed not into a familiar homeland but into the prophesied future the underworld disclosed, and the return is therefore a return to a place the hero has never been, recognized as home only because the gods have named it so.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold", - "sequential": { - "label": "Early return threshold divergence", - "rationale": "The fleet rounds the Italian coast and turns into the mouth of the Tiber at narrative position eleven, immediately after the Ultimate Boon and well before the three Return-act stages that should canonically precede this threshold. The displacement of four positions earlier than the fifteenth-place canonical location reflects this foundation narrative's distinctive shape: the hero arrives at his fated terminus not after a long Return through obstacles but as the immediate consequence of having received the disclosed future, and the bulk of the canonical Return content is then replayed inside the Latin war that occupies the second half. The Refusal, the Magic Flight, and the Rescue all surface within Books VII to XII rather than between the underworld and the threshold, the architecture braiding the late-Return stages into the long campaign rather than placing them sequentially before arrival. The canonical sequence of Return preliminaries is preserved in content but folded into the post-arrival war rather than presented as the path that leads to it." - } - }, - "12": { - "label": "The foreign bridegroom foretold", - "description": "At the Latin court an oracle has already declared that the princess Lavinia must not marry within her own people but is destined for a foreign son-in-law from whose line will descend a glory that will lift their name to the stars. The omen has been confirmed by the burning of her hair before the altar, a flame that consumed the diadem without injuring the girl, prophesying that she would shine in renown and bring war upon the people. When the Trojan embassy arrives Latinus recognizes in Aeneas the foreigner the prophecy named, and offers his daughter without negotiation. The bride herself never speaks. Her presence is registered through the gold of her hair lit by the omen-fire, through her mother's tears at the proposed match, through the catalogue of suitors she has refused. The encounter that fulfils the goddess function is therefore conducted around her rather than with her, the integrative power of the feminine carried by prophecy and dynastic fact rather than by the relational mediation a spoken meeting would provide.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "narrative": { - "label": "Dispersed goddess divergence", - "rationale": "No single feminine encounter in this poem performs the full range of mediation the canonical archetype concentrates in one figure, and the goddess function is instead distributed across three. Venus carries the protective and intercessory dimension as recurring divine mother, intervening at the storm, on the Libyan shore in disguise, before Olympus in advocacy, at the wound in Book XII, but never offering the sustained encounter of unconditional recognition the stage requires. Creusa's ghost in Book II delivers the prophecy of the western kingdom and the royal bride and releases Aeneas from the bond of their marriage in a moment of luminous tenderness, but she is recounted analeptically rather than encountered in the poem's present, and her function is closed before the journey proper begins. Lavinia carries the formal slot, the prophesied bride at whose silent centre the dynastic future is gathered, but she does not speak and her significance is articulated entirely through omen and prophecy. The integrative work of the archetype is accomplished, but only by reading the three figures together as a single distributed presence whose components occupy different registers of mediation." - }, - "sequential": { - "label": "Deferred goddess divergence", - "rationale": "The Goddess encounter arrives at narrative position twelve, deferred all the way to the arrival in Latium and the recognition by Latinus of the foreign son-in-law his oracle had named. The displacement of five positions later than the canonical seventh-place location is the realization's largest forward shift of any single stage, and its consequence is to bind the goddess function inseparably to the dynastic outcome the founding mission is pursuing. The integrative feminine is not encountered as a stage of personal transformation early in the journey but as the prophesied bride who waits at the journey's political terminus, and the meeting therefore functions less as a moment of inward integration than as the recognition that the public destiny has converged on the body through which it must be transmitted to the next generation. The canonical placement of the Goddess between the Road of Trials and the Temptress is here vacated entirely, the integrative encounter shifted forward into the territory where its dynastic stakes can be made fully visible." - }, - "semiotic": { - "label": "Goddess as dynastic cipher divergence", - "rationale": "Lavinia carries the structural slot of the integrative encounter at the realization's twelfth position, but the sign-system has been thoroughly secularized. She is not a goddess but a mortal princess; her significance is articulated not through her own speech but through prophecy, omen, and the political calculations of her father's court; the burning of her hair before the altar is read as foretelling renown and war rather than as theophany. Where the canonical archetype encodes the integrative encounter through a numinous sign-system of divine or mythically charged feminine presence mediating totality and unconditional recognition, this realization performs the integrative function through dynastic placement, the bride functioning as the cipher through which Trojan and Italian lineages are joined into the foundational Roman stock. The shift from numinous figure to political cipher reflects this realization's broader project of grounding mythological structure in historical institution, the goddess function recoded as the genealogical instrument by which the founding labour transmits itself to the future the underworld disclosed." - } - }, - "13": { - "label": "The grief that stalls the campaign", - "description": "The body of Pallas is laid out on a bier of oak and strawberry-tree boughs and sent back to Pallanteum with an honour-guard of Trojan and Etruscan warriors. Aeneas stands beside the youth he had taken under his protection and weeps, lifting up the funeral garments Dido had once woven for him as gifts and folding them over the dead boy. The grief is not a brief dramatic pause but a gravitational drag on the entire campaign: the foundational work of settling the new kingdom is suspended in mourning, and the founder who had carried his prophesied future out of the underworld is briefly arrested by the human cost of acquiring it. The language attached to him in these books takes on a heaviness incompatible with forward motion. Only the structural necessity of the war forces the campaign to resume, and even then the resumption proceeds under the shadow of an obligation to Pallas's father that the founder cannot discharge by founding alone.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Refusal as cost of founding divergence", - "rationale": "The canonical reluctance arises from having tasted transcendence and preferring to remain in the special world rather than carry its boon back to the ordinary one. This poem locates the hesitation elsewhere entirely: in the founder's grief at the body of the young ally whose death has been required to advance the founding labour. Pallas's corpse, lifted onto the bier of oak boughs and sent back to Pallanteum with the funeral garments Dido had once woven, focuses the entire weight of the founding cost into a single image. The hero is not reluctant to leave the underworld's bliss, an experience whose transformative effect he in fact welcomes; he is arrested by the recognition that the prophesied future the underworld disclosed is being purchased at a price he had not understood when he accepted the disclosure. The Refusal here is not anti-transitional but conscience-bearing, the founder forced to acknowledge what the imperium already costs before it has even been established." - } - }, - "14": { - "label": "The shield and the Etruscan fleet", - "description": "Aeneas sails up the Tiber to Pallanteum, the Arcadian settlement on the future site of Rome, and is received by Evander with hospitality and instruction. Venus delivers to him at Pallanteum the shield her husband Vulcan has forged at her request, its surface engraved with the entire future of the city he is fated to seed: the wolf-suckled twins, the Sabine women, Horatius at the bridge, Catiline in Tartarus, the battle of Actium with Augustus on the prow. With Pallas at his side and the shield slung at his back, Aeneas leads the Etruscan fleet downstream toward the besieged Trojan camp, the river journey transformed into a passage between two registers of his founding labour, the disclosed past-future strapped to his arm and the urgent present awaiting at the camp's wall. The flight here is not from a special world's guardians but toward the embattled camp with the means of its rescue.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight", - "narrative": { - "label": "Flight as relief mission divergence", - "rationale": "The canonical figure escapes the special world bearing a stolen or won prize, often pursued by guardians who would reclaim it. The Tiber voyage with the Etruscan fleet inverts the directional logic at every register. The pursuit, if it can be called that, points the wrong way: the founder is not fleeing toward safety but advancing toward an embattled camp that requires his urgent return. The prize, the shield Vulcan has forged with the future of Rome on its surface, has been freely given by the divine mother rather than seized from any guardian. The companions on the voyage, Pallas at his side and the Etruscan allies in the ships behind, are recruits rather than pursuers, and the river itself functions as a passage of arrival rather than escape. What the canonical archetype reads as flight here reads as relief expedition, the hero traversing between two fronts of his founding labour with the disclosed pattern of his city's future strapped to his arm and his obligation to the besieged community pulling him forward into combat." - } - }, - "15": { - "label": "The mother and the dittany", - "description": "In the climactic phase of the war Aeneas is struck by an arrow whose source remains unknown, and the wound resists every effort of the surgeon Iapyx to extract the iron. The campaign falters at his absence from the line, and the Italian forces press forward into the Trojan defences. Venus, watching from above, gathers dittany from the slopes of Mount Ida and infuses it secretly into the water with which the wound is being washed. The arrow loosens of its own accord and falls into the surgeon's hand, the pain departs, and the founder returns to the field with his strength restored. The intervention is not announced to him; Iapyx recognizes the divine signature in the unaccountable cure and tells him to take up his arms. Without this concealed maternal action at the moment when his body had failed, the war would have ended in Trojan defeat and the founding labour would have been lost in its final phase.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without" - }, - "16": { - "label": "The imperium bestowed", - "description": "Across the long Latin campaign the founder operates with authority in two registers simultaneously, the heir of fallen Troy and the father-in-waiting of an Italian dynasty, commanding Trojan and Etruscan and Arcadian forces under a single banner whose legitimacy rests on inherited destiny and on the new oracle Latinus has accepted. The treaty proposed before the climactic duel formalizes the dual sovereignty: if Aeneas wins, Trojans and Italians shall fuse, sharing rites and laws under his rule, neither absorbing the other but blended into a population whose name will become Roman. The shield Vulcan made for him, depicting events centuries beyond the founder's own life, is the visible token of this mastery, the founder carrying on his arm a record of the world that issues from his act, the labour at the threshold and the imperium beyond it held in single grasp. The integration is not yet enjoyed but it is established, the architecture of the dual inheritance set in place even as the final violence remains to be done.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds" - }, - "17": { - "label": "The belt of Pallas and the buried blade", - "description": "The duel ends with Turnus disarmed, wounded in the thigh, and on his knees before the founder, conceding the victory and asking either to live or to be returned to his father in death. Aeneas hesitates. The plea is reasonable, the war is concluded, the prophesied marriage is secured, and for a moment the sword stays. Then his eye falls on the sword-belt of Pallas slung across the Rutulian's shoulder as a trophy, the gold studs and the worked figures of the slain bridegrooms recognizable in an instant, and the memory of the boy laid out on the bier of oak boughs returns with full force. The founder is described as kindled by furies and terrible in his anger, and he drives the sword into the chest of the kneeling man with a curse, the soul of Turnus fleeing groaning and indignant beneath the shades. There is no marriage, no city raised, no settled reign, no peace surveyed from a position of equilibrium. The closing gesture is of unmastered passion executing a justice that the founder's earlier conduct had already learned to suspect, and the silence after the killing settles over a battlefield that nothing in the act has finished resolving.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live", - "narrative": { - "label": "Freedom as rage divergence", - "rationale": "Aeneas has Turnus disarmed and kneeling, the war effectively concluded and the prophesied marriage secured, and the sword stays for a moment that the text marks as a hesitation. The decision that follows is explicitly attributed to fury kindled by the sight of Pallas's belt, and the closing line tracks the soul of the slain man fleeing groaning beneath the shades. The reversal of canonical signature is precise rather than approximate: where the archetypal closure releases the hero from fear of death and from attachment to outcome, this closure binds the founder to a debt of vengeance that overwrites every other consideration in the final instant. The poem knows what closure looks like, having delivered it with extraordinary fullness in Anchises's vision in Book VI, and the choice to end here, with this gesture, withholds the canonical resolution rather than failing to reach it. The reading that registers this withholding as inversion rather than as absence honours the deliberateness of the closural strategy, the founding act left visibly contaminated by the passion that completes it, and the question of what kind of imperium emerges from such an origin left as a structural opening rather than a resolved theme." - } + } + ] + }, + "kg-modal-aeneid": { + "ttlFile": "aeneid.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/aeneid/monomyths/aeneas-journey", + "label": "Aeneas's Hero's Journey in The Aeneid", + "stages": { + "1": { + "label": "The storm on the Libyan coast", + "description": "Juno persuades Aeolus to unleash the winds upon the fleet, and a black squall closes over the survivors of seven years of wandering. Ships are scattered, men and oars float on the waves, and the wreckage of what remained of Troy is dispersed across the unknown sea. Aeneas is washed onto an unfamiliar African shore with a handful of companions, ignorant of his location, ignorant of his queen, possessed of nothing but the household gods he salvaged from the burning city and the bare instruction that some western kingdom is owed to him. The Trojan identity, already eroded by years of homelessness, is here finally extinguished as a public reality, and the figure who emerges from the shore is reduced to a single function: that of the survivor charged with a beginning he cannot yet imagine.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "sequential": { + "label": "In medias res opening divergence", + "rationale": "The poem begins inside the swallowing-darkness stage itself, at narrative position one, with all preparatory content delivered analeptically through Aeneas's recollection in the Carthaginian books. The dissolution-of-self is presented as a starting condition rather than a culminating one, displaced four positions earlier than its canonical fifth-place location, and the cascading consequence is that the stages which should precede it must surface afterward, transforming the Refusal of the Call, the Temptress, the Call itself, and the First Threshold into a sequence delivered in scrambled order through the first six books. The opening choice is the foundational structural gesture from which the rest of the Departure's reordering follows, the Homeric inheritance of the in-medias-res protocol producing a monomyth realization whose canonical sequence is recoverable only by reading against the narrative grain. What the canonical archetype treats as a five-stage progression toward the swallowing is here treated as a single dissolution given immediately, with the preparatory architecture reconstructed from the hero's own memory rather than narrated as it occurs." + } + }, + "2": { + "label": "A second Troy rising from the sand", + "description": "In Carthage Aeneas finds a city in the act of becoming what his own people had been: walls rising under disciplined hands, a queen of remarkable competence, laws being framed at this very moment for a polity not yet finished. He is welcomed at her hearth, honoured at her banquet, and eventually pulled into her bed and her project. The mission westward recedes from view as the founding work he had been promised in Italy appears to be available, under different patronage, in this very harbour. He puts on Tyrian purple, oversees the construction of towers that are not his to raise, and lets the months accumulate without remarking on their accumulation. The hesitation here is not articulated as refusal but enacted as substitution, the fated city traded for the convenient one and the divine charge silenced beneath the daily ceremonies of an adopted court.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call" + }, + "3": { + "label": "The cave and the pyre", + "description": "During a hunting expedition a sudden storm drives the queen and the Trojan into the same cave, where, with Juno presiding and Earth and the nymphs as witnesses, their union is consummated under conditions Dido takes to be a wedding. From that day she ceases to disguise the relation, calls Aeneas her husband in public, and consigns the construction of her city to suspension. The seduction operates at every register at once: erotic, political, dynastic, domestic. Aeneas is offered not merely a lover but a queen, not merely a queen but a kingdom, not merely a kingdom but a finished destiny that requires no further travelling. When the divine command finally arrives and he prepares his ships in secret, Dido moves through the stages of fury, supplication, and curse, ending on the pyre with the sword he had left behind, and the smoke of her burning is the last sight Carthage offers the departing fleet.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "sequential": { + "label": "Temptation precedes call divergence", + "rationale": "The temptation surfaces at narrative position three, before the Call has been articulated as binding mandate, displacing the Temptress five positions earlier than its canonical mid-Initiation placement. The structural consequence is decisive: the seduction operates not as an obstacle late in the journey but as an alternative founding offered before the true founding has been firmly accepted, and the hero's vulnerability to it is intensified by the fact that no unambiguous summons has yet recalled him from the option Carthage represents. The positioning explains the unusual force the Dido episode commands within the realization. It is the test that nearly succeeds, the stage that almost replaces the journey rather than merely interrupting it, and the trauma it leaves in the hero shapes every subsequent act precisely because it occurred before the call had been delivered with the authority that would have made resistance unambiguous. Where the canonical archetype tests a hero already committed, this realization tests a hero not yet committed, and the dramatic asymmetry is decisive for everything that follows." + } + }, + "4": { + "label": "Italiam non sponte sequor", + "description": "Mercury descends through the air with his caduceus and his winged sandals and finds Aeneas in Tyrian dress overseeing the works of a city that is not his. The messenger speaks plainly: the destined kingdom is Italy, the heir whose patrimony is being squandered is Iulus, the queen at whose side the hero stands has no claim on a man whose obligation runs to unborn generations and to a foundation Jupiter has already named. The command is unconditional and delivered in the imperative. Aeneas hears it in shock, and within the same book begins the preparations to sail. When confronted by Dido in the celebrated exchange that follows, his self-defence will be that he does not seek Italy of his own will, that the journey is required of him by powers he can neither refuse nor reinterpret. The summons that the entire opening had been gathering toward, half-named through Hector's ghost on Troy's last night, partially disclosed by the Penates, prefigured by Creusa, arrives here in unmistakable form.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure", + "narrative": { + "label": "Gathered and doubled call divergence", + "rationale": "The summons in this poem is distributed across multiple anticipations and only finalized late, the canonical archetype's discrete opening rupture replaced by a long process of accumulating mandate. Hector's ghost on Troy's last night charges Aeneas with carrying the household gods to a new city without naming the city; the Penates speak in dream of Hesperia without specifying its terms; Creusa's shade prophesies a western kingdom and a royal bride without binding the hero to any timetable; Helenus elaborates the geography in Book III without commanding obedience. Mercury's intervention in Carthage is therefore not the announcement of a new mission but the gathering of a long anticipatory chain into a binding directive. The poem's call functions partly as memory and partly as repetition, the journey having been summoned several times before the summons becomes unavoidable, and the hero having been told what awaits him long before he is told that he must unconditionally pursue it. The dramatic weight rests not on the novelty of the message but on the moment when its accumulated authority becomes inescapable, the reluctant founder finally cornered by a mandate that has been forming around him since the night his city fell." + }, + "sequential": { + "label": "Delayed call divergence", + "rationale": "Mercury's command arrives at narrative position four, behind the Belly of the Whale, the Refusal of the Call, and the Temptress, three positions later than the canonical opening placement. The displacement is partly artefact of the in medias res opening and partly a substantive choice about how the founding mission's authority is constituted. By the time the unambiguous command is delivered, the hero has already failed the test of substitute foundation in Carthage, already endured the dissolution at sea, already received the prefigurative summons through Hector, the Penates, and Creusa. The Call therefore arrives not as an opening rupture but as a closure applied to a long process of attempted alternatives, the moment when the accumulated previous summons become suddenly binding. The displacement carries its own thematic content: the founding is authorized late and against resistance rather than embraced early and pursued with single-minded commitment, and the founder's reluctance is constitutive of the mission rather than an obstacle to it." + } + }, + "5": { + "label": "Loosing the cables", + "description": "The Trojan ships are made ready under cover of preparation rather than under public proclamation, and at the appointed hour the cables are cut and the fleet slips from the Carthaginian harbour while the queen is still asleep. At dawn she sees the empty roadstead, hurls her final imprecation against the departing sails, and ascends the pyre. The crossing here is not a heroic step into a marked threshold but a quiet severing accomplished while the abandoned world is unconscious of the loss. Behind the ships the smoke of Dido's burning rises and is absorbed by the African horizon, the cost of the threshold paid in another life entirely. Ahead lies the open Mediterranean and the final passage toward the prophesied coast, the harbour not yet known but committed to without further hesitation.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "6": { + "label": "Games and the helmsman lost", + "description": "The fleet returns to Sicily for the anniversary of Anchises's death, and Aeneas presides over funeral games of ship-races, foot-races, archery, and boxing in honour of the buried father, exercises in collective memory that strengthen the band of survivors even as Trojan women, despairing of the endless journey, are incited by Juno to set fire to the ships. Some are saved by Jupiter's rain, others lost; the weak and the unwilling are settled at Acesta and the company that continues is the company prepared to finish the crossing. On the final night the helmsman Palinurus is taken by Sleep and falls into the sea, the fleet's pilot drowned within sight of Italy, the cost of arrival paid in the body of the most experienced navigator. The ordeals of this stage are concentrated and incidental rather than serial and structural, the fleet having already exhausted most of its heroic-test material in the analeptic narration of Books II and III.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "7": { + "label": "Facilis descensus Averno", + "description": "At Cumae the Sibyl receives Aeneas in the cavern of the hundred mouths, possessed by Apollo, and lays out the conditions of the descent: the golden bough that must be plucked from a hidden tree if the underworld is to be entered and survived, the unburied companion who must be found and given proper rites before the threshold can be crossed, the sacrifices to Hecate that prepare the night journey. She articulates the foundational principle of the catabasis in the line that gives the moment its weight, that the descent to Avernus is easy and the return is the labour. When the bough is found and the rites completed, she takes Aeneas through the entrance to the underworld and walks beside him through every register of the dead, naming the shades, intervening with Charon and Cerberus, mediating each encounter with the precise authority of one who knows the geography no living traveller can know unaided. Without her presence the journey would be impossible at every stage of its unfolding.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "sequential": { + "label": "Aid after trials divergence", + "rationale": "The Sibyl's intervention arrives at narrative position seven, well after the First Threshold has been crossed and the Road of Trials undertaken, and her aid is preparation for a specific subsequent ordeal, the catabasis, rather than an opening endowment for the journey at large. The displacement of four positions later than the canonical third-place position reflects this realization's distinctive treatment of the supernatural register: the most concentrated divine mediation is reserved for the central revelation rather than for the journey's commencement, which is supported instead by Venus's recurring intercession and by the prophetic voices that gather toward the Call. The Sibyl's late arrival positions her not as the equipping mentor of the Departure but as the threshold figure of the Initiation's deepest passage, her aid concentrated at the moment where the underworld's discoveries will reorganize everything that has come before. The canonical archetype's opening endowment is here split into the diffuse divine care of the early books and the precise priestly mediation of the underworld." + } + }, + "8": { + "label": "The fields of mourning and beyond", + "description": "The descent winds through the regions of the dead in widening circuits, past the unburied at the Stygian shore, past the souls of children and the falsely condemned, into the fields of mourning where Dido's shade turns from him in silence and refuses to hear his explanation. Beyond these come the warriors, friends and enemies of Troy alike, and finally the gates of Tartarus glimpsed but not entered. The path opens at last into the luminous valley of Elysium, where Anchises stands in the green meadows surveying the souls awaiting their next embodiment. The reunion is not a confrontation. The father weeps with joy at the son's arrival, embraces a form that cannot be embraced, and welcomes Aeneas not as a delinquent who must justify his life but as the inheritor of the cosmological vision the dead are now in a position to share. Across the river of forgetfulness, surrounded by the souls of those not yet born, Anchises gathers his son into a teaching that the upper world has no standpoint from which to deliver.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "sequential": { + "label": "Initiation block shift divergence", + "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." + }, + "semiotic": { + "label": "Atonement as revelation divergence", + "rationale": "Anchises in the Elysian fields preserves the structural function of the stage with full clarity, the inner authority faced and the hero's identity reconstituted by that facing, but he replaces the canonical judicial register with a disclosive one. The father does not threaten the son, does not demand justification of his exile, does not conduct anything resembling a reckoning. He weeps with joy at the arrival, embraces a form that cannot be embraced, and gathers the son into a cosmological teaching whose authority operates through illumination rather than through judgment. Where the canonical archetype encodes the encounter through a sign-system of confrontation, threatened obliteration, and survived verdict as the precondition for authorized continuation, this realization recodes the patriarchal sign as pedagogical rather than agonistic. The encounter operates through the authority of disclosed knowledge rather than through the threat of withheld approval, and the founder is authorized for the work ahead by being shown what the work contributes to rather than by surviving paternal verdict on what he has so far been." + } + }, + "9": { + "label": "The soul-fields and the doctrine of return", + "description": "Standing in the meadows beyond Lethe, Anchises explains the cosmic order to his son: a world-soul animating sky and earth and sea, an inner fire diffused through every body, the encumbrance of flesh that clouds the spirit's native clarity, the long purification by which souls are scoured of their accumulated stains and prepared again for embodied life. The teaching is delivered as philosophy rather than as vision, but it functions for the hero as a momentary release from the categories that have governed his existence: the wandering exile who must reach a coast becomes briefly the participant in a metaphysical structure that includes his coast, his city, and his death within a single vast economy of return. The ego-bound figure who arrived at the underworld's mouth is, in this passage, dissolved into a cosmological standpoint from which his own labour appears as one element in a pattern that does not depend on him for its intelligibility.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", + "sequential": { + "label": "Initiation block shift divergence", + "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." + } + }, + "10": { + "label": "The parade of Roman souls", + "description": "Anchises leads his son to a vantage from which the procession of unborn souls can be reviewed, and names them one by one: the Alban kings descending from Iulus, Romulus the wolf-suckled founder, the Caesars, Augustus himself extending an empire that will reach beyond the Garamantes and the Indians, Numa with his laws, the Brutuses, the Gracchi, the Scipios, the long line of Roman virtue. The catalogue closes with Marcellus, the recently dead heir whose shade is acknowledged with a tenderness that breaks the imperial register. The boon Aeneas carries out of the underworld is neither object nor power but knowledge of the future for whose sake the present labour is undertaken: the certainty that his exile is the seed of an order that will measure itself against the orbits of the stars. He returns to the upper world transformed by knowing what his hardships are knowable as, and the journey from this point forward proceeds under that disclosure.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon", + "sequential": { + "label": "Initiation block shift divergence", + "rationale": "The Atonement, Apotheosis, and Ultimate Boon arrive each one position earlier than their canonical placement, displaced as a unified block by the Goddess's deferral to the Latin court. The shift is consequential rather than incidental. By collapsing the three culminating stages of the Initiation into the continuous sequence of the underworld journey, the poem treats the catabasis as an integrated transformation rather than as three discrete moments separated by other stage content, and the absence of intervening material between the father's embrace, the cosmological teaching, and the parade of unborn souls produces the dense revelatory climax for which Book VI has long been read as the poem's structural centre. The displacement is therefore better understood as compression than as disruption, the canonical discrete progression here folded into a single architectural movement whose components are distinguishable conceptually but inseparable narratively." + } + }, + "11": { + "label": "This is the land", + "description": "The fleet rounds the Italian coast and turns into the mouth of the Tiber, where the river runs yellow with sand and forest crowds the banks. The Trojans go ashore and prepare a meal on flat cakes of bread used as plates, and Iulus laughingly remarks that they are eating their tables. The harmless joke fulfils, in the same instant of its utterance, an oracle Aeneas had received and feared, that the journey would end where hunger drove the company to consume even the platters their food rested on. The recognition cascades immediately into the ceremonial gesture of arrival: Aeneas embraces the soil, calls upon the local divinities and the Earth itself, and acknowledges that the prophesied terminus has been reached. That night the river god Tiberinus rises in vision and confirms the arrival, instructing the founder upstream to seek the Arcadian alliance. The threshold has been crossed not into a familiar homeland but into the prophesied future the underworld disclosed, and the return is therefore a return to a place the hero has never been, recognized as home only because the gods have named it so.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", + "sequential": { + "label": "Early return threshold divergence", + "rationale": "The fleet rounds the Italian coast and turns into the mouth of the Tiber at narrative position eleven, immediately after the Ultimate Boon and well before the three Return-act stages that should canonically precede this threshold. The displacement of four positions earlier than the fifteenth-place canonical location reflects this foundation narrative's distinctive shape: the hero arrives at his fated terminus not after a long Return through obstacles but as the immediate consequence of having received the disclosed future, and the bulk of the canonical Return content is then replayed inside the Latin war that occupies the second half. The Refusal, the Magic Flight, and the Rescue all surface within Books VII to XII rather than between the underworld and the threshold, the architecture braiding the late-Return stages into the long campaign rather than placing them sequentially before arrival. The canonical sequence of Return preliminaries is preserved in content but folded into the post-arrival war rather than presented as the path that leads to it." + } + }, + "12": { + "label": "The foreign bridegroom foretold", + "description": "At the Latin court an oracle has already declared that the princess Lavinia must not marry within her own people but is destined for a foreign son-in-law from whose line will descend a glory that will lift their name to the stars. The omen has been confirmed by the burning of her hair before the altar, a flame that consumed the diadem without injuring the girl, prophesying that she would shine in renown and bring war upon the people. When the Trojan embassy arrives Latinus recognizes in Aeneas the foreigner the prophecy named, and offers his daughter without negotiation. The bride herself never speaks. Her presence is registered through the gold of her hair lit by the omen-fire, through her mother's tears at the proposed match, through the catalogue of suitors she has refused. The encounter that fulfils the goddess function is therefore conducted around her rather than with her, the integrative power of the feminine carried by prophecy and dynastic fact rather than by the relational mediation a spoken meeting would provide.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "narrative": { + "label": "Dispersed goddess divergence", + "rationale": "No single feminine encounter in this poem performs the full range of mediation the canonical archetype concentrates in one figure, and the goddess function is instead distributed across three. Venus carries the protective and intercessory dimension as recurring divine mother, intervening at the storm, on the Libyan shore in disguise, before Olympus in advocacy, at the wound in Book XII, but never offering the sustained encounter of unconditional recognition the stage requires. Creusa's ghost in Book II delivers the prophecy of the western kingdom and the royal bride and releases Aeneas from the bond of their marriage in a moment of luminous tenderness, but she is recounted analeptically rather than encountered in the poem's present, and her function is closed before the journey proper begins. Lavinia carries the formal slot, the prophesied bride at whose silent centre the dynastic future is gathered, but she does not speak and her significance is articulated entirely through omen and prophecy. The integrative work of the archetype is accomplished, but only by reading the three figures together as a single distributed presence whose components occupy different registers of mediation." + }, + "sequential": { + "label": "Deferred goddess divergence", + "rationale": "The Goddess encounter arrives at narrative position twelve, deferred all the way to the arrival in Latium and the recognition by Latinus of the foreign son-in-law his oracle had named. The displacement of five positions later than the canonical seventh-place location is the realization's largest forward shift of any single stage, and its consequence is to bind the goddess function inseparably to the dynastic outcome the founding mission is pursuing. The integrative feminine is not encountered as a stage of personal transformation early in the journey but as the prophesied bride who waits at the journey's political terminus, and the meeting therefore functions less as a moment of inward integration than as the recognition that the public destiny has converged on the body through which it must be transmitted to the next generation. The canonical placement of the Goddess between the Road of Trials and the Temptress is here vacated entirely, the integrative encounter shifted forward into the territory where its dynastic stakes can be made fully visible." + }, + "semiotic": { + "label": "Goddess as dynastic cipher divergence", + "rationale": "Lavinia carries the structural slot of the integrative encounter at the realization's twelfth position, but the sign-system has been thoroughly secularized. She is not a goddess but a mortal princess; her significance is articulated not through her own speech but through prophecy, omen, and the political calculations of her father's court; the burning of her hair before the altar is read as foretelling renown and war rather than as theophany. Where the canonical archetype encodes the integrative encounter through a numinous sign-system of divine or mythically charged feminine presence mediating totality and unconditional recognition, this realization performs the integrative function through dynastic placement, the bride functioning as the cipher through which Trojan and Italian lineages are joined into the foundational Roman stock. The shift from numinous figure to political cipher reflects this realization's broader project of grounding mythological structure in historical institution, the goddess function recoded as the genealogical instrument by which the founding labour transmits itself to the future the underworld disclosed." + } + }, + "13": { + "label": "The grief that stalls the campaign", + "description": "The body of Pallas is laid out on a bier of oak and strawberry-tree boughs and sent back to Pallanteum with an honour-guard of Trojan and Etruscan warriors. Aeneas stands beside the youth he had taken under his protection and weeps, lifting up the funeral garments Dido had once woven for him as gifts and folding them over the dead boy. The grief is not a brief dramatic pause but a gravitational drag on the entire campaign: the foundational work of settling the new kingdom is suspended in mourning, and the founder who had carried his prophesied future out of the underworld is briefly arrested by the human cost of acquiring it. The language attached to him in these books takes on a heaviness incompatible with forward motion. Only the structural necessity of the war forces the campaign to resume, and even then the resumption proceeds under the shadow of an obligation to Pallas's father that the founder cannot discharge by founding alone.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Refusal as cost of founding divergence", + "rationale": "The canonical reluctance arises from having tasted transcendence and preferring to remain in the special world rather than carry its boon back to the ordinary one. This poem locates the hesitation elsewhere entirely: in the founder's grief at the body of the young ally whose death has been required to advance the founding labour. Pallas's corpse, lifted onto the bier of oak boughs and sent back to Pallanteum with the funeral garments Dido had once woven, focuses the entire weight of the founding cost into a single image. The hero is not reluctant to leave the underworld's bliss, an experience whose transformative effect he in fact welcomes; he is arrested by the recognition that the prophesied future the underworld disclosed is being purchased at a price he had not understood when he accepted the disclosure. The Refusal here is not anti-transitional but conscience-bearing, the founder forced to acknowledge what the imperium already costs before it has even been established." + } + }, + "14": { + "label": "The shield and the Etruscan fleet", + "description": "Aeneas sails up the Tiber to Pallanteum, the Arcadian settlement on the future site of Rome, and is received by Evander with hospitality and instruction. Venus delivers to him at Pallanteum the shield her husband Vulcan has forged at her request, its surface engraved with the entire future of the city he is fated to seed: the wolf-suckled twins, the Sabine women, Horatius at the bridge, Catiline in Tartarus, the battle of Actium with Augustus on the prow. With Pallas at his side and the shield slung at his back, Aeneas leads the Etruscan fleet downstream toward the besieged Trojan camp, the river journey transformed into a passage between two registers of his founding labour, the disclosed past-future strapped to his arm and the urgent present awaiting at the camp's wall. The flight here is not from a special world's guardians but toward the embattled camp with the means of its rescue.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight", + "narrative": { + "label": "Flight as relief mission divergence", + "rationale": "The canonical figure escapes the special world bearing a stolen or won prize, often pursued by guardians who would reclaim it. The Tiber voyage with the Etruscan fleet inverts the directional logic at every register. The pursuit, if it can be called that, points the wrong way: the founder is not fleeing toward safety but advancing toward an embattled camp that requires his urgent return. The prize, the shield Vulcan has forged with the future of Rome on its surface, has been freely given by the divine mother rather than seized from any guardian. The companions on the voyage, Pallas at his side and the Etruscan allies in the ships behind, are recruits rather than pursuers, and the river itself functions as a passage of arrival rather than escape. What the canonical archetype reads as flight here reads as relief expedition, the hero traversing between two fronts of his founding labour with the disclosed pattern of his city's future strapped to his arm and his obligation to the besieged community pulling him forward into combat." + } + }, + "15": { + "label": "The mother and the dittany", + "description": "In the climactic phase of the war Aeneas is struck by an arrow whose source remains unknown, and the wound resists every effort of the surgeon Iapyx to extract the iron. The campaign falters at his absence from the line, and the Italian forces press forward into the Trojan defences. Venus, watching from above, gathers dittany from the slopes of Mount Ida and infuses it secretly into the water with which the wound is being washed. The arrow loosens of its own accord and falls into the surgeon's hand, the pain departs, and the founder returns to the field with his strength restored. The intervention is not announced to him; Iapyx recognizes the divine signature in the unaccountable cure and tells him to take up his arms. Without this concealed maternal action at the moment when his body had failed, the war would have ended in Trojan defeat and the founding labour would have been lost in its final phase.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" + }, + "16": { + "label": "The imperium bestowed", + "description": "Across the long Latin campaign the founder operates with authority in two registers simultaneously, the heir of fallen Troy and the father-in-waiting of an Italian dynasty, commanding Trojan and Etruscan and Arcadian forces under a single banner whose legitimacy rests on inherited destiny and on the new oracle Latinus has accepted. The treaty proposed before the climactic duel formalizes the dual sovereignty: if Aeneas wins, Trojans and Italians shall fuse, sharing rites and laws under his rule, neither absorbing the other but blended into a population whose name will become Roman. The shield Vulcan made for him, depicting events centuries beyond the founder's own life, is the visible token of this mastery, the founder carrying on his arm a record of the world that issues from his act, the labour at the threshold and the imperium beyond it held in single grasp. The integration is not yet enjoyed but it is established, the architecture of the dual inheritance set in place even as the final violence remains to be done.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" + }, + "17": { + "label": "The belt of Pallas and the buried blade", + "description": "The duel ends with Turnus disarmed, wounded in the thigh, and on his knees before the founder, conceding the victory and asking either to live or to be returned to his father in death. Aeneas hesitates. The plea is reasonable, the war is concluded, the prophesied marriage is secured, and for a moment the sword stays. Then his eye falls on the sword-belt of Pallas slung across the Rutulian's shoulder as a trophy, the gold studs and the worked figures of the slain bridegrooms recognizable in an instant, and the memory of the boy laid out on the bier of oak boughs returns with full force. The founder is described as kindled by furies and terrible in his anger, and he drives the sword into the chest of the kneeling man with a curse, the soul of Turnus fleeing groaning and indignant beneath the shades. There is no marriage, no city raised, no settled reign, no peace surveyed from a position of equilibrium. The closing gesture is of unmastered passion executing a justice that the founder's earlier conduct had already learned to suspect, and the silence after the killing settles over a battlefield that nothing in the act has finished resolving.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", + "narrative": { + "label": "Freedom as rage divergence", + "rationale": "Aeneas has Turnus disarmed and kneeling, the war effectively concluded and the prophesied marriage secured, and the sword stays for a moment that the text marks as a hesitation. The decision that follows is explicitly attributed to fury kindled by the sight of Pallas's belt, and the closing line tracks the soul of the slain man fleeing groaning beneath the shades. The reversal of canonical signature is precise rather than approximate: where the archetypal closure releases the hero from fear of death and from attachment to outcome, this closure binds the founder to a debt of vengeance that overwrites every other consideration in the final instant. The poem knows what closure looks like, having delivered it with extraordinary fullness in Anchises's vision in Book VI, and the choice to end here, with this gesture, withholds the canonical resolution rather than failing to reach it. The reading that registers this withholding as inversion rather than as absence honours the deliberateness of the closural strategy, the founding act left visibly contaminated by the passion that completes it, and the question of what kind of imperium emerges from such an origin left as a structural opening rather than a resolved theme." } } } - ] - }, - "kg-modal-zelda": { - "ttlFile": "ocarina-of-time.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/ocarina-of-time/monomyths/link-journey", - "label": "Link's Hero's Journey in Ocarina of Time", - "stages": { - "1": { - "label": "The boy without a fairy", - "description": "Link is the only child in Kokiri Forest without a guardian fairy, an absence that marks him as incomplete among his own people. The Great Deku Tree, dying from a curse placed by Ganondorf, sends the fairy Navi to summon Link to his side. The call arrives as both gift and burden: receiving Navi grants Link the belonging he has always lacked, but the summons leads directly into the Deku Tree's cursed interior and the revelation that dark forces threaten far beyond the forest.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure" - }, - "2": { - "label": "The hero does not hesitate", - "description": null, - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Absent refusal divergence", - "rationale": "Link moves from call to action without psychological resistance. The Kokiri child who has yearned for a fairy receives one and immediately answers the summons. Mido's physical blockade at the forest path requires obtaining a sword and shield, but this functions as a mechanical gate rather than an expression of the hero's doubt or fear. The narrative's opening invests in spatial wonder rather than existential hesitation, reflecting a design where the child protagonist's eagerness is the point: in a world where Link has always been the outsider, the call is the first moment of belonging, and refusing it would contradict everything the character has silently endured." - } - }, - "3": { - "label": "The future depends upon thee", - "description": "The Great Deku Tree, having been cleansed of the parasitic curse by Link, knows the effort has come too late to save him. With his final words he entrusts Link with the Kokiri Emerald, the first of three Spiritual Stones, and charges him to seek Princess Zelda at Hyrule Castle. Navi remains as a permanent companion, a living gift of guidance that will persist long after the guardian who dispatched her has withered to a hollow stump.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid" - }, - "4": { - "label": "Beyond the forest", - "description": "Link crosses the log bridge at the edge of Kokiri Forest, where Saria is waiting. She gives him her Fairy Ocarina as a parting gift and says goodbye, knowing he will not return as the same person. The Kokiri believe that any of their kind who leaves the forest will die. Link steps off the bridge into Hyrule Field and the world opens around him, vast and exposed, the sheltering canopy replaced by open sky.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "5": { - "label": "A fairy and a green stone", - "description": "Link sneaks through the castle grounds and peers through a courtyard window to find Princess Zelda, who has been expecting him. She describes a prophetic dream: darkness engulfing Hyrule, and a figure from the forest bearing a fairy and a green stone appearing as a ray of light. Recognizing Link as that figure, she reveals Ganondorf's treachery and entrusts Link with the mission to collect the remaining Spiritual Stones before the Gerudo king can reach the Sacred Realm. Impa, Zelda's guardian, escorts Link safely out of the castle and teaches him Zelda's Lullaby, a melody that will open doors sealed by royal authority.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "sequential": { - "label": "Goddess before trials divergence", - "rationale": "The encounter with the luminous feminine arrives before the trials rather than after them. Zelda appears in the castle courtyard almost immediately after Link enters Hyrule, making her the figure who defines and authorizes the quest rather than the one who greets the hero at its midpoint. By placing the prophetic princess at the journey's outset, the narrative establishes her as the quest-giver whose vision the hero must validate through subsequent action, transforming the encounter from a moment of earned transcendence into one of commission, and shifting its function from culmination to catalyst." - } - }, - "6": { - "label": "Stones and sages", - "description": "As a child, Link ventures into Dodongo's Cavern beneath Death Mountain and into the belly of Lord Jabu-Jabu in Zora's Domain, earning the Goron Ruby and Zora's Sapphire to complement the Kokiri Emerald. Each trial demands new skills and yields an alliance with a people whose champion will later become a sage. After the seven-year seal, Link awakens as an adult and the trials deepen: the Forest Temple reclaims Saria as the Sage of Forest, the Fire Temple frees Darunia, the Water Temple rescues Ruto, the Shadow Temple liberates Impa, and the Spirit Temple awakens Nabooru. The trials bifurcate across the temporal divide, with childhood tests of resourcefulness giving way to adult confrontations with corruption, loss, and the consequences of Ganondorf's seven-year reign.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials", - "narrative": { - "label": "Bifurcated trials divergence", - "rationale": "Link's trials divide across a temporal rupture that fundamentally alters their character and stakes. The child phase presents three dungeon quests to gather Spiritual Stones, each testing courage and resourcefulness within a familiar Hyrule. The seven-year seal then intervenes, and when trials resume, the hero is physically transformed, the kingdom corrupted, and each temple now demands the awakening of a sage whose power is needed to confront Ganondorf. The two phases share a structural function but differ in tone, difficulty, and narrative weight: preparation in the first, genuine confrontation with darkness in the second. This bifurcation creates a developmental arc within what is formally a single stage, turning it into a before-and-after portrait of the same hero measured against the same world at different scales of maturity and peril." - } - }, - "7": { - "label": "Seven lost years", - "description": "Link places the three Spiritual Stones on the altar of the Temple of Time and plays the Song of Time on the Ocarina. The Door of Time opens, revealing the Master Sword in its pedestal. He draws the blade and the Sacred Realm swallows him whole. His body is too young to bear the sword's power, so the chamber seals him in enchanted sleep for seven years. When he awakens in the Chamber of Sages, Rauru greets a young man who went to sleep as a child. The boy who pulled the sword is gone; the adult who opens his eyes has no memory of the passage, only its result. Hyrule outside has fallen to Ganondorf, who entered the Sacred Realm through the door Link unwittingly opened for him.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "sequential": { - "label": "Engulfment amid trials divergence", - "rationale": "The symbolic death and rebirth arrives not at the close of the departure act but embedded within the trials themselves, splitting them into two distinct halves. Link pulls the Master Sword after completing the child-era dungeon sequence, and the seven-year seal that follows constitutes the engulfment at the heart of this archetype. By placing it midway through the trials rather than before them, the narrative creates a structural hinge: everything before the seal is preparation undertaken in innocence, everything after is confrontation undertaken with knowledge of what has been lost. The displacement turns a threshold between acts into a pivot within the central act itself." - } - }, - "8": { - "label": "A quest without temptation", - "description": null, - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "narrative": { - "label": "Absent temptress divergence", - "rationale": "The quest offers no sustained moment of temptation, seduction, or invitation to abandon the journey for comfort or desire. Lon Lon Ranch and its pastoral tranquility present the closest structural candidate, yet Malon functions as a friend rather than a figure of dangerous attraction, and the ranch remains an optional interlude rather than a narrative test of resolve. The absence reflects both the protagonist's youth and the narrative's design: Link is a child thrust into responsibility without the psychological complexity that temptation requires, and even as an adult his single-mindedness is presented as a virtue rather than a limitation to be tested. The stage's function finds no purchase in a narrative where the ordinary world has been destroyed and no comfortable alternative remains to lure the hero away from his path." - } - }, - "9": { - "label": "You are not a Kokiri", - "description": "After completing the Forest Temple and returning to Kokiri Forest, Link finds a young sapling growing where the Great Deku Tree once stood. The Deku Tree Sprout greets him and reveals what the original guardian never told him: Link is not Kokiri but Hylian, brought to the forest as an infant by his wounded mother during a great war and entrusted to the Deku Tree's care before she died. The deepest truth about who he is arrives not as a test of worthiness but as a quiet disclosure, offered by the gentle successor to a dead guardian.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "narrative": { - "label": "Revelation rather than confrontation divergence", - "rationale": "Link's encounter with the father archetype arrives as passive disclosure rather than active confrontation. The Deku Tree Sprout simply tells Link what has always been true: he is Hylian, not Kokiri, placed in the forest as an infant by his dying mother during a great war and entrusted to the guardian tree's care. There is no dramatic standoff, no test of worthiness imposed by a paternal authority, no crisis of submission or defiance. The deepest truth about the hero's identity is delivered gently by a sapling grown where a great tree once stood, lending the moment an elegiac quality that substitutes quiet grief for the awe and terror that typically mark this stage. The father figure itself has already died; what remains is not authority but memory, and the reckoning is less a confrontation with power than an acceptance of orphanhood." - } - }, - "10": { - "label": "The seventh sage", - "description": "With all five temple sages awakened, Sheik summons Link to the Temple of Time and reveals herself as Princess Zelda, the seventh and final sage. She confirms Link's identity as the Hero of Time and explains the full structure of the Triforce, which split upon Ganondorf's touch: Courage chose Link, Wisdom chose Zelda, and Power remained with Ganondorf. The hero's destiny, scattered across seven years of fragmented revelation, crystallizes into a single coherent picture. Link stands in the temple as the fully recognized bearer of the Triforce of Courage, his role no longer prophesied but declared.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis" - }, - "11": { - "label": "The light arrows", - "description": "Zelda bestows the Light Arrows upon Link, the sacred weapon capable of piercing Ganondorf's dark power. The gift is immediate and urgent: moments after the transfer, Ganondorf encases Zelda in a crystal prison and takes her to his tower, transforming the boon's delivery into the precipitating act of the final confrontation. The six sages channel their combined power to create a rainbow bridge spanning the chasm to Ganondorf's fortress, opening the path that only the fully equipped hero can walk.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon" - }, - "12": { - "label": "The hero presses on", - "description": null, - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "narrative": { - "label": "Absent return refusal divergence", - "rationale": "Link transitions directly from defeating Ganon to the sages' sealing ritual without hesitation or reluctance to leave the special world behind. The narrative's momentum carries the hero forward through castle collapse and final confrontation without pause, and the decision to return is ultimately made for Link by Zelda rather than by him, removing the psychological space where reluctance could arise. The absence is structurally reinforced by the medium itself: after the climactic battle, control shifts to cutscene and the hero's agency is temporarily suspended precisely when the archetype would expect an internal reckoning with the prospect of return." - } - }, - "13": { - "label": "The tower comes down", - "description": "Ganondorf is defeated atop his tower but triggers its collapse with his final act of spite. Link and Zelda race downward through crumbling corridors, Zelda using her power to unseal iron barriers while the structure disintegrates around them. Flames, falling stone, and reanimated guardians block the descent. They emerge at the base moments before the tower crashes into rubble, only to hear something stir beneath the wreckage: Ganondorf, drawing on the Triforce of Power, transforms into the monstrous Ganon and rises from the ruins for a final confrontation.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight" - }, - "14": { - "label": "Six sages as one", - "description": "Link drives the Master Sword into Ganon's skull and Zelda channels the power of the six awakened sages to bind him. Together they seal Ganondorf into the Sacred Realm, a prison sustained not by the hero's strength alone but by a collective sacred authority that no single warrior could supply. Ganondorf, raging against the seal, swears to break free and destroy their descendants, but the binding holds.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without" - }, - "15": { - "label": "Lay the Master Sword to rest", - "description": "Zelda takes back the Ocarina of Time and plays the Song of Time to send Link back to his childhood, closing the circle that opened when he first drew the Master Sword. The adult world dissolves around him. Link returns to the Temple of Time as a child, the sword resting again in its pedestal, Navi departing through a window into light. He stands alone in the temple, carrying the memory of a future that has been unmade.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold", - "semiotic": { - "label": "Temporal return threshold divergence", - "rationale": "The return threshold is crossed through time rather than space. Zelda uses the Ocarina of Time to send Link backward seven years, dissolving the boundary between his adult heroic identity and his childhood self. Where the archetype envisions a hero physically re-entering the ordinary world carrying new wisdom, this narrative achieves the return by rewinding the world itself around the hero, making the threshold a temporal membrane rather than a spatial border. The semiotic shift has profound consequences: the hero does not bring wisdom back to a waiting community, because the community never experienced the crisis from which he saved them. The sign of return looks identical to the sign of departure, a child standing in a courtyard, but its meaning has been wholly transformed by what only the hero remembers." - } - }, - "16": { - "label": "Child and hero", - "description": "Link has traversed both the child era and the adult era, the ordinary Hyrule and the Sacred Realm, carrying within a small body the experiential knowledge of a completed hero's journey. Yet the mastery is entirely private. The adult timeline has been erased, the people he saved do not remember being saved, and the two worlds he bridged now exist only in his memory. He walks through Hyrule Castle Town as a child among children, unrecognized and unrecognizable.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds", - "narrative": { - "label": "Private mastery divergence", - "rationale": "The hero has genuinely traversed both temporal worlds and the Sacred Realm between them, yet the time-travel return erases the public dimension of that mastery. In the restored child timeline, no one witnessed Link's adult deeds, the sages were never awakened, and the kingdom never fell. Link possesses experiential knowledge of both eras but cannot demonstrate, share, or leverage it. This transforms the archetype from a state of demonstrated dual-world fluency into an entirely interior condition: the hero masters two worlds that no longer coexist, making the mastery real but invisible, a private achievement that the surrounding community has no framework to recognize or validate." - } - }, - "17": { - "label": "Through the courtyard window", - "description": "Link walks through the castle grounds and peers through the courtyard window to find Zelda again, exactly as he did at the journey's beginning, before any of it happened. She turns and sees a boy with a fairy and a green stone. Whether she recognizes him, whether the meeting will unfold differently this time, the narrative does not say. The ending mirrors the opening almost exactly, but the symmetry is deceptive: one of the two figures standing in that courtyard carries the weight of an entire erased future, and the other does not yet know there is anything to carry.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live", - "narrative": { - "label": "Bittersweet freedom divergence", - "rationale": "Zelda restores Link's childhood, but the gift carries an unresolved weight. The hero returns to a moment before the quest began, standing again before the princess, yet he carries within him the memory of a future now erased: friendships forged in temples, battles survived, a world saved that will never know it needed saving. The freedom is genuine in that Link has been released from the burden of the Hero of Time, but it is shadowed by a loneliness that the narrative acknowledges without resolving. Rather than the serene transcendence or liberated purposefulness that typically marks this stage, the ending offers a more melancholy reading: the hero's reward is the chance to live an ordinary life whose full meaning only he will ever understand." - } + } + ] + }, + "kg-modal-zelda": { + "ttlFile": "ocarina-of-time.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/ocarina-of-time/monomyths/link-journey", + "label": "Link's Hero's Journey in Ocarina of Time", + "stages": { + "1": { + "label": "The boy without a fairy", + "description": "Link is the only child in Kokiri Forest without a guardian fairy, an absence that marks him as incomplete among his own people. The Great Deku Tree, dying from a curse placed by Ganondorf, sends the fairy Navi to summon Link to his side. The call arrives as both gift and burden: receiving Navi grants Link the belonging he has always lacked, but the summons leads directly into the Deku Tree's cursed interior and the revelation that dark forces threaten far beyond the forest.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" + }, + "2": { + "label": "The hero does not hesitate", + "description": null, + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Absent refusal divergence", + "rationale": "Link moves from call to action without psychological resistance. The Kokiri child who has yearned for a fairy receives one and immediately answers the summons. Mido's physical blockade at the forest path requires obtaining a sword and shield, but this functions as a mechanical gate rather than an expression of the hero's doubt or fear. The narrative's opening invests in spatial wonder rather than existential hesitation, reflecting a design where the child protagonist's eagerness is the point: in a world where Link has always been the outsider, the call is the first moment of belonging, and refusing it would contradict everything the character has silently endured." + } + }, + "3": { + "label": "The future depends upon thee", + "description": "The Great Deku Tree, having been cleansed of the parasitic curse by Link, knows the effort has come too late to save him. With his final words he entrusts Link with the Kokiri Emerald, the first of three Spiritual Stones, and charges him to seek Princess Zelda at Hyrule Castle. Navi remains as a permanent companion, a living gift of guidance that will persist long after the guardian who dispatched her has withered to a hollow stump.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid" + }, + "4": { + "label": "Beyond the forest", + "description": "Link crosses the log bridge at the edge of Kokiri Forest, where Saria is waiting. She gives him her Fairy Ocarina as a parting gift and says goodbye, knowing he will not return as the same person. The Kokiri believe that any of their kind who leaves the forest will die. Link steps off the bridge into Hyrule Field and the world opens around him, vast and exposed, the sheltering canopy replaced by open sky.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "5": { + "label": "A fairy and a green stone", + "description": "Link sneaks through the castle grounds and peers through a courtyard window to find Princess Zelda, who has been expecting him. She describes a prophetic dream: darkness engulfing Hyrule, and a figure from the forest bearing a fairy and a green stone appearing as a ray of light. Recognizing Link as that figure, she reveals Ganondorf's treachery and entrusts Link with the mission to collect the remaining Spiritual Stones before the Gerudo king can reach the Sacred Realm. Impa, Zelda's guardian, escorts Link safely out of the castle and teaches him Zelda's Lullaby, a melody that will open doors sealed by royal authority.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "sequential": { + "label": "Goddess before trials divergence", + "rationale": "The encounter with the luminous feminine arrives before the trials rather than after them. Zelda appears in the castle courtyard almost immediately after Link enters Hyrule, making her the figure who defines and authorizes the quest rather than the one who greets the hero at its midpoint. By placing the prophetic princess at the journey's outset, the narrative establishes her as the quest-giver whose vision the hero must validate through subsequent action, transforming the encounter from a moment of earned transcendence into one of commission, and shifting its function from culmination to catalyst." + } + }, + "6": { + "label": "Stones and sages", + "description": "As a child, Link ventures into Dodongo's Cavern beneath Death Mountain and into the belly of Lord Jabu-Jabu in Zora's Domain, earning the Goron Ruby and Zora's Sapphire to complement the Kokiri Emerald. Each trial demands new skills and yields an alliance with a people whose champion will later become a sage. After the seven-year seal, Link awakens as an adult and the trials deepen: the Forest Temple reclaims Saria as the Sage of Forest, the Fire Temple frees Darunia, the Water Temple rescues Ruto, the Shadow Temple liberates Impa, and the Spirit Temple awakens Nabooru. The trials bifurcate across the temporal divide, with childhood tests of resourcefulness giving way to adult confrontations with corruption, loss, and the consequences of Ganondorf's seven-year reign.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials", + "narrative": { + "label": "Bifurcated trials divergence", + "rationale": "Link's trials divide across a temporal rupture that fundamentally alters their character and stakes. The child phase presents three dungeon quests to gather Spiritual Stones, each testing courage and resourcefulness within a familiar Hyrule. The seven-year seal then intervenes, and when trials resume, the hero is physically transformed, the kingdom corrupted, and each temple now demands the awakening of a sage whose power is needed to confront Ganondorf. The two phases share a structural function but differ in tone, difficulty, and narrative weight: preparation in the first, genuine confrontation with darkness in the second. This bifurcation creates a developmental arc within what is formally a single stage, turning it into a before-and-after portrait of the same hero measured against the same world at different scales of maturity and peril." + } + }, + "7": { + "label": "Seven lost years", + "description": "Link places the three Spiritual Stones on the altar of the Temple of Time and plays the Song of Time on the Ocarina. The Door of Time opens, revealing the Master Sword in its pedestal. He draws the blade and the Sacred Realm swallows him whole. His body is too young to bear the sword's power, so the chamber seals him in enchanted sleep for seven years. When he awakens in the Chamber of Sages, Rauru greets a young man who went to sleep as a child. The boy who pulled the sword is gone; the adult who opens his eyes has no memory of the passage, only its result. Hyrule outside has fallen to Ganondorf, who entered the Sacred Realm through the door Link unwittingly opened for him.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "sequential": { + "label": "Engulfment amid trials divergence", + "rationale": "The symbolic death and rebirth arrives not at the close of the departure act but embedded within the trials themselves, splitting them into two distinct halves. Link pulls the Master Sword after completing the child-era dungeon sequence, and the seven-year seal that follows constitutes the engulfment at the heart of this archetype. By placing it midway through the trials rather than before them, the narrative creates a structural hinge: everything before the seal is preparation undertaken in innocence, everything after is confrontation undertaken with knowledge of what has been lost. The displacement turns a threshold between acts into a pivot within the central act itself." + } + }, + "8": { + "label": "A quest without temptation", + "description": null, + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "narrative": { + "label": "Absent temptress divergence", + "rationale": "The quest offers no sustained moment of temptation, seduction, or invitation to abandon the journey for comfort or desire. Lon Lon Ranch and its pastoral tranquility present the closest structural candidate, yet Malon functions as a friend rather than a figure of dangerous attraction, and the ranch remains an optional interlude rather than a narrative test of resolve. The absence reflects both the protagonist's youth and the narrative's design: Link is a child thrust into responsibility without the psychological complexity that temptation requires, and even as an adult his single-mindedness is presented as a virtue rather than a limitation to be tested. The stage's function finds no purchase in a narrative where the ordinary world has been destroyed and no comfortable alternative remains to lure the hero away from his path." + } + }, + "9": { + "label": "You are not a Kokiri", + "description": "After completing the Forest Temple and returning to Kokiri Forest, Link finds a young sapling growing where the Great Deku Tree once stood. The Deku Tree Sprout greets him and reveals what the original guardian never told him: Link is not Kokiri but Hylian, brought to the forest as an infant by his wounded mother during a great war and entrusted to the Deku Tree's care before she died. The deepest truth about who he is arrives not as a test of worthiness but as a quiet disclosure, offered by the gentle successor to a dead guardian.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "narrative": { + "label": "Revelation rather than confrontation divergence", + "rationale": "Link's encounter with the father archetype arrives as passive disclosure rather than active confrontation. The Deku Tree Sprout simply tells Link what has always been true: he is Hylian, not Kokiri, placed in the forest as an infant by his dying mother during a great war and entrusted to the guardian tree's care. There is no dramatic standoff, no test of worthiness imposed by a paternal authority, no crisis of submission or defiance. The deepest truth about the hero's identity is delivered gently by a sapling grown where a great tree once stood, lending the moment an elegiac quality that substitutes quiet grief for the awe and terror that typically mark this stage. The father figure itself has already died; what remains is not authority but memory, and the reckoning is less a confrontation with power than an acceptance of orphanhood." + } + }, + "10": { + "label": "The seventh sage", + "description": "With all five temple sages awakened, Sheik summons Link to the Temple of Time and reveals herself as Princess Zelda, the seventh and final sage. She confirms Link's identity as the Hero of Time and explains the full structure of the Triforce, which split upon Ganondorf's touch: Courage chose Link, Wisdom chose Zelda, and Power remained with Ganondorf. The hero's destiny, scattered across seven years of fragmented revelation, crystallizes into a single coherent picture. Link stands in the temple as the fully recognized bearer of the Triforce of Courage, his role no longer prophesied but declared.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis" + }, + "11": { + "label": "The light arrows", + "description": "Zelda bestows the Light Arrows upon Link, the sacred weapon capable of piercing Ganondorf's dark power. The gift is immediate and urgent: moments after the transfer, Ganondorf encases Zelda in a crystal prison and takes her to his tower, transforming the boon's delivery into the precipitating act of the final confrontation. The six sages channel their combined power to create a rainbow bridge spanning the chasm to Ganondorf's fortress, opening the path that only the fully equipped hero can walk.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" + }, + "12": { + "label": "The hero presses on", + "description": null, + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "narrative": { + "label": "Absent return refusal divergence", + "rationale": "Link transitions directly from defeating Ganon to the sages' sealing ritual without hesitation or reluctance to leave the special world behind. The narrative's momentum carries the hero forward through castle collapse and final confrontation without pause, and the decision to return is ultimately made for Link by Zelda rather than by him, removing the psychological space where reluctance could arise. The absence is structurally reinforced by the medium itself: after the climactic battle, control shifts to cutscene and the hero's agency is temporarily suspended precisely when the archetype would expect an internal reckoning with the prospect of return." + } + }, + "13": { + "label": "The tower comes down", + "description": "Ganondorf is defeated atop his tower but triggers its collapse with his final act of spite. Link and Zelda race downward through crumbling corridors, Zelda using her power to unseal iron barriers while the structure disintegrates around them. Flames, falling stone, and reanimated guardians block the descent. They emerge at the base moments before the tower crashes into rubble, only to hear something stir beneath the wreckage: Ganondorf, drawing on the Triforce of Power, transforms into the monstrous Ganon and rises from the ruins for a final confrontation.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" + }, + "14": { + "label": "Six sages as one", + "description": "Link drives the Master Sword into Ganon's skull and Zelda channels the power of the six awakened sages to bind him. Together they seal Ganondorf into the Sacred Realm, a prison sustained not by the hero's strength alone but by a collective sacred authority that no single warrior could supply. Ganondorf, raging against the seal, swears to break free and destroy their descendants, but the binding holds.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without" + }, + "15": { + "label": "Lay the Master Sword to rest", + "description": "Zelda takes back the Ocarina of Time and plays the Song of Time to send Link back to his childhood, closing the circle that opened when he first drew the Master Sword. The adult world dissolves around him. Link returns to the Temple of Time as a child, the sword resting again in its pedestal, Navi departing through a window into light. He stands alone in the temple, carrying the memory of a future that has been unmade.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold", + "semiotic": { + "label": "Temporal return threshold divergence", + "rationale": "The return threshold is crossed through time rather than space. Zelda uses the Ocarina of Time to send Link backward seven years, dissolving the boundary between his adult heroic identity and his childhood self. Where the archetype envisions a hero physically re-entering the ordinary world carrying new wisdom, this narrative achieves the return by rewinding the world itself around the hero, making the threshold a temporal membrane rather than a spatial border. The semiotic shift has profound consequences: the hero does not bring wisdom back to a waiting community, because the community never experienced the crisis from which he saved them. The sign of return looks identical to the sign of departure, a child standing in a courtyard, but its meaning has been wholly transformed by what only the hero remembers." + } + }, + "16": { + "label": "Child and hero", + "description": "Link has traversed both the child era and the adult era, the ordinary Hyrule and the Sacred Realm, carrying within a small body the experiential knowledge of a completed hero's journey. Yet the mastery is entirely private. The adult timeline has been erased, the people he saved do not remember being saved, and the two worlds he bridged now exist only in his memory. He walks through Hyrule Castle Town as a child among children, unrecognized and unrecognizable.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds", + "narrative": { + "label": "Private mastery divergence", + "rationale": "The hero has genuinely traversed both temporal worlds and the Sacred Realm between them, yet the time-travel return erases the public dimension of that mastery. In the restored child timeline, no one witnessed Link's adult deeds, the sages were never awakened, and the kingdom never fell. Link possesses experiential knowledge of both eras but cannot demonstrate, share, or leverage it. This transforms the archetype from a state of demonstrated dual-world fluency into an entirely interior condition: the hero masters two worlds that no longer coexist, making the mastery real but invisible, a private achievement that the surrounding community has no framework to recognize or validate." + } + }, + "17": { + "label": "Through the courtyard window", + "description": "Link walks through the castle grounds and peers through the courtyard window to find Zelda again, exactly as he did at the journey's beginning, before any of it happened. She turns and sees a boy with a fairy and a green stone. Whether she recognizes him, whether the meeting will unfold differently this time, the narrative does not say. The ending mirrors the opening almost exactly, but the symmetry is deceptive: one of the two figures standing in that courtyard carries the weight of an entire erased future, and the other does not yet know there is anything to carry.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", + "narrative": { + "label": "Bittersweet freedom divergence", + "rationale": "Zelda restores Link's childhood, but the gift carries an unresolved weight. The hero returns to a moment before the quest began, standing again before the princess, yet he carries within him the memory of a future now erased: friendships forged in temples, battles survived, a world saved that will never know it needed saving. The freedom is genuine in that Link has been released from the burden of the Hero of Time, but it is shadowed by a loneliness that the narrative acknowledges without resolving. Rather than the serene transcendence or liberated purposefulness that typically marks this stage, the ending offers a more melancholy reading: the hero's reward is the chance to live an ordinary life whose full meaning only he will ever understand." } } } - ] - }, - "kg-modal-orlando": { - "ttlFile": "orlando-furioso.ttl", - "journeys": [ - { - "id": "https://monomyth.metamuses.org/graph/orlando-furioso/monomyths/ruggiero-journey", - "label": "Ruggiero's Hero's Journey in Orlando Furioso", - "stages": { - "1": { - "label": "Carried away from Albracca", - "description": "During the chaos of war around Albracca, Ruggiero loses control of the Hippogriff and is violently carried away through the sky into unknown territories. This forced displacement abruptly tears him out of the ordinary rhythm of martial conflict and introduces him into Ariosto's wider universe of enchantment, wandering, and destiny.", - "realizesStage": "monomyth:TheCallToAdventure", - "realizesStageLabel": "The Call to Adventure" - }, - "2": { - "label": "Enchanted Delays", - "description": "Rather than explicitly refusing his destiny, Ruggiero repeatedly becomes suspended inside enchanted systems designed to delay or dissolve his heroic development. His captivity within Alcina's island of pleasure and Atlante's illusory palace traps him in cycles of forgetfulness, sensual distraction, and temporal stagnation. These recurring detours function as a fragmented refusal in which the hero continually postpones the irreversible transformation awaiting him.", - "realizesStage": "monomyth:RefusalOfTheCall", - "realizesStageLabel": "Refusal of the Call", - "narrative": { - "label": "Dispersed Refusal divergence", - "rationale": "Instead of presenting a single moment of hesitation immediately following the call, Ariosto disperses the refusal across multiple enchanted episodes that collectively suspend the hero's destiny. Ruggiero does not consciously reject transformation; rather, he repeatedly forgets, postpones, or loses sight of it within systems of magical distraction. The divergence replaces Campbell's concentrated psychological hesitation with a cyclical structure of narrative delay that mirrors the poem's recursive and labyrinthine form." - } - }, - "3": { - "label": "Alcina's Seduction", - "description": "Within Alcina's enchanted island where the Hippogryph deposits him, Ruggiero abandons martial honor and heroic purpose to live in sensual luxury under the spell of the sorceress. The enchantress reduces the hero to a passive object of pleasure, isolating him from memory, duty, and destiny while concealing the monstrous reality beneath her seductive beauty. Here, erotic enchantment itself becomes the mechanism threatening to erase the hero's transformative path.", - "realizesStage": "monomyth:WomanAsTheTemptress", - "realizesStageLabel": "Woman as the Temptress", - "sequential": { - "label": "Temptress before Trials divergence", - "rationale": "In Campbell's canonical sequence, Woman as the Temptress appears late in the Initiation act, after the hero has already undergone trials and encountered the Goddess. In Orlando Furioso, however, the Alcina episode occurs almost immediately after the Call to Adventure, before Ruggiero has achieved any heroic stability or encountered Bradamante. Ariosto deliberately inverts the sequence so that the hero's first encounter with the feminine is seductive dissolution rather than spiritual fulfillment, portraying Ruggiero as a hero initially trapped in enchantment and dependent on external rescue rather than earned mastery." - } - }, - "4": { - "label": "Melissa's Ring", - "description": "Disguised as the magician Atlante, Melissa approaches Ruggiero inside Alcina's enchanted domain and delivers the magic ring capable of dispelling every illusion. Through this supernatural object, the hero suddenly perceives the horrifying truth behind the island's beauty and recovers the capacity for autonomous judgment. The ring functions as the quintessential Campbellian talisman: a magical aid that allows the hero to pierce deception and continue the journey toward his destined transformation.", - "realizesStage": "monomyth:SupernaturalAid", - "realizesStageLabel": "Supernatural Aid", - "sequential": { - "label": "Aid after Temptation divergence", - "rationale": "In Campbell's monomyth, Supernatural Aid appears before the hero's trials, preparing him for the journey ahead. In Orlando Furioso, however, Melissa's intervention arrives only after Ruggiero has already fallen into Alcina's enchantment and enacted a prolonged refusal of destiny. The aid therefore functions not as preparation but as rescue: the magic ring becomes a remedy for collapse rather than a tool for future trials, but it allows the hero to resume the journey to his transformation." - } - }, - "5": { - "label": "Departure from Logistilla", - "description": "After escaping Alcina's island, Ruggiero reaches the rational and disciplined realm of Logistilla, where he receives instruction regarding virtue, self-control, and destiny and also learns to control the Hippogryph. His departure from this protected environment marks the decisive threshold crossing into Ariosto's unstable world of wandering adventures, martial tests, and dynastic responsibility. The hero leaves behind passive enchantment and begins acting within the larger historical movement of the poem.", - "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", - "realizesStageLabel": "The Crossing of the First Threshold" - }, - "6": { - "label": "Atlante's Palace", - "description": "Inside Atlante's enchanted palace, knights endlessly pursue phantoms corresponding to their deepest desires while losing all stable orientation and identity. Ruggiero enters the palace having glimpsed an apparition of Bradamante within its corridors, and loses himself entirely in the labyrinth of his own longing. The hero becomes absorbed into this closed system of illusion where time, purpose, and heroic progress collapse into repetition. The palace functions as a symbolic dissolution of the self, temporarily swallowing the hero inside a magical labyrinth from which genuine transformation can occur only through escape and disillusionment.", - "realizesStage": "monomyth:TheBellyOfTheWhale", - "realizesStageLabel": "The Belly of the Whale", - "narrative": { - "label": "Paternal Imprisonment divergence", - "rationale": "The Belly of the Whale is usually an impersonal abyss initiating the hero into symbolic death. In Orlando Furioso, however, Atlante's enchanted palace is a paternal prison built out of protective love rather than cosmic fate or malice. Ruggiero's symbolic death therefore becomes psychological rather than cosmic: he must free himself not from an external darkness but from the foster-father's protective control that has shaped and confined his identity since childhood." - } - }, - "7": { - "label": "Breaking from Atlante", - "description": "Ruggiero's relationship with Atlante is defined by the tension between loving protection and spiritual imprisonment. The magician repeatedly attempts to shield the hero from his prophesied death by enclosing him inside magical systems that prevent maturity, conversion, and marriage. The atonement occurs when Ruggiero ultimately escapes Atlante's authority, accepting the risks of destiny rather than remaining suspended within paternal control and illusion.", - "realizesStage": "monomyth:AtonementWithTheFather", - "realizesStageLabel": "Atonement with the Father", - "sequential": { - "label": "Atonement before Trials divergence", - "rationale": "Typically, the Atonement with the Father stage typically serves as the spiritual climax of the Initiation act, occurring after the hero has been tempered and purified by the Road of Trials. As for Ruggiero's journey, his confrontation with Atlante's paternal authority \u2014 and the subsequent dissolution of the magician's protective enchantments \u2014 occurs early in the narrative sequence. This break from the father figure acts as a prerequisite that enables the 'Wandering Adventures' to begin, rather than being the reward for completing them. Ariosto thus reorders the sequence so that the hero's liberation from paternal control is the starting point of his independent knightly development rather than its final initiation." - } - }, - "8": { - "label": "Wandering Adventures", - "description": "Astolfo frees Ruggiero from Atlante's castle and the hero's journey can start again. Across dozens of cantos, Ruggiero passes through an immense series of duels, rescues, voyages, magical confrontations, and knightly ordeals dispersed throughout Ariosto's fragmented narrative structure. Each episode tests a different aspect of his identity: martial courage, loyalty, erotic discipline, and spiritual direction. Rather than forming a linear sequence, these trials accumulate through interruption and narrative suspension, gradually constructing the hero's readiness for dynastic and religious transformation.", - "realizesStage": "monomyth:TheRoadOfTrials", - "realizesStageLabel": "The Road of Trials" - }, - "9": { - "label": "Bradamante's Destiny", - "description": "Along all the trials, the hero is occasionally reunited with his love interest. The recurring reunions between Ruggiero and Bradamante collectively constitute the hero's encounter with the feminine principle that gives direction and ultimate meaning to his journey. Bradamante is not a passive beloved awaiting rescue but a formidable warrior who has herself descended into Merlin's cave and received the prophetic vision of their future dynasty. Through her, Ruggiero perceives not only personal love but a transpersonal destiny, since the founding of the Este lineage depends entirely on his successful transformation.", - "realizesStage": "monomyth:TheMeetingWithTheGoddess", - "realizesStageLabel": "The Meeting with the Goddess", - "semiotic": { - "label": "Warrior Goddess divergence", - "rationale": "Campbell's Meeting with the Goddess draws on the idea of the divine feminine as cosmic totality, where her love reveals unity beneath division. In 'Orlando Furioso', this role is reworked in Bradamante: a warrior knight who fights, wins duels, and pursues Ruggiero with equal determination. Her love is unconditional in Campbell's sense, as she never abandons their destined union, but it is expressed through martial agency rather than nurturing receptivity. Renaissance chivalric tradition thus replaces the sacred goddess with the female heroine, preserving the structure of the archetype while transforming its semiotic form." - } - }, - "10": { - "label": "Delayed Conversion", - "description": "Even after repeated prophecies and encounters directing him toward Christian conversion and dynastic destiny, Ruggiero continually postpones his definitive return from enchantment and ambiguity. His hesitation unfolds across numerous cantos through detours, interruptions, and deferred decisions that slow the transition from Saracen knight to Christian founder.", - "realizesStage": "monomyth:RefusalOfTheReturn", - "realizesStageLabel": "Refusal of the Return", - "sequential": { - "label": "Refusal before Apotheosis divergence", - "rationale": "The Refusal of the Return normally follows the Apotheosis and Ultimate Boon, when the hero resists re-entering ordinary life after transcendence. In Ruggiero's case, however, this sequence is displaced: his prolonged delay occurs before both baptism and the attainment of the Boon. He refuses not the return from enlightenment, but the movement toward it, postponing the transformation that would lead to conversion and marriage. What he clings to is not transcendence but his existing Saracen identity, so the refusal becomes a resistance to ascent rather than descent." - } - }, - "11": { - "label": "Bradamante's Rescues", - "description": "Throughout the poem, Bradamante and her allies repeatedly intervene to recover Ruggiero from enchantment, hesitation, or narrative dispersion. Whether through Melissa's magical assistance or Bradamante's direct actions, the hero is continually redirected toward his providential role whenever he risks becoming trapped within illusion or passivity. The rescue therefore operates as a sustained corrective force distributed throughout the narrative.", - "realizesStage": "monomyth:RescueFromWithout", - "realizesStageLabel": "Rescue from Without", - "narrative": { - "label": "Dispersed Rescue divergence", - "rationale": "This stage subverts the 'Rescue from Without' by transforming a singular narrative event into a dispersed, structural motif. While Campbell's model envisions a final, definitive intervention to pull the hero home, Ruggiero's rescue is fragmented across the entire epic, reflecting the 'entrelacement' structure of the poem. Each time the hero falls into enchantment or loses his path due to his own passivity, Bradamante or her surrogate Melissa must intervene. The 'Rescue' thus loses its character as a final threshold crossing and becomes a constant, corrective cycle of retrieval, highlighting a hero who is perpetually slipping away from his destiny and a heroine who functions as his necessary external conscience." - }, - "sequential": { - "label": "Rescue before Apotheosis divergence", - "rationale": "In the standard monomythic sequence, the 'Rescue from Without' occurs during the Return, serving to support a hero who has already achieved enlightenment or the ultimate boon but is too exhausted or unwilling to cross back into the ordinary world. Ariosto radically displaces this stage by making the rescue a recurring necessity long before Ruggiero's spiritual 'Apotheosis'. This reordering is central to the poem's thematic focus on human frailty and the power of love, as Ruggiero cannot reach his divine transformation on his own will but requires multiple 'rescues' from Bradamante and Melissa." - } - }, - "12": { - "label": "Baptism and Conversion", - "description": "Ruggiero's baptism marks the symbolic death of his previous identity and his elevation into a new spiritual condition. The hero abandons his former religious and political affiliation to enter the Christian order associated with Bradamante and Charlemagne's court. This transformation functions as a literal apotheosis in which personal conversion simultaneously becomes dynastic destiny, historical legitimation, and metaphysical rebirth.", - "realizesStage": "monomyth:Apotheosis", - "realizesStageLabel": "Apotheosis", - "semiotic": { - "label": "Religious Apotheosis divergence", - "rationale": "The Apotheosis stage generally operates through mythic revelation, cosmic consciousness, or metaphysical transcendence. Ariosto translates this transformative elevation into the specifically Christian language of baptism, conversion, and sacramental rebirth. The hero's spiritual ascent is therefore expressed not through universal mythology but through the religious and political semiotics of Renaissance Christendom." - } - }, - "13": { - "label": "Este Foundation", - "description": "The union in marriage between Ruggiero and Bradamante produces a boon that extends beyond the hero's private fulfillment and into the future history of an entire civilization. Their marriage establishes the mythical origin of the Este dynasty celebrated by Ariosto's poem, transforming the hero's personal journey into the foundation of political continuity, noble lineage, and collective cultural identity.", - "realizesStage": "monomyth:TheUltimateBoon", - "realizesStageLabel": "The Ultimate Boon" - }, - "14": { - "label": "Flight from the Saracen camp", - "description": "After his baptism, Ruggiero must sever himself physically and legally from the Saracen world that defined his identity. His withdrawal from their camp is not a sudden magical escape, but a painful break from shared loyalty and military belonging. This departure is enabled by a providential structure: the Saracen leader truce-breaking releases Ruggiero from his oath of fealty. What appears as \"magic\" is instead the moral failure of his former leader, which dissolves his obligations and opens the path back to the Christian world.", - "realizesStage": "monomyth:TheMagicFlight", - "realizesStageLabel": "The Magic Flight" - }, - "15": { - "label": "Defection to Christendom", - "description": "Ruggiero's passage to the Christian side marks the full crossing of the return threshold: a public defection and entry into the order of Christian knights. This is not merely a change of allegiance but a translation of his Saracen martial identity into a new theological and cultural register, where he appears as both convert and supreme exemplar. The threshold itself is civilizational rather than physical, requiring him to carry his transformed self wholly into a new historical role shaped by Merlin's prophecy. By definitively abandoning his former side, he reintegrates the experiences of wandering, enchantment, and crisis into a stable identity recognized by Charlemagne's world, completing the passage from divided existence to unified purpose.", - "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", - "realizesStageLabel": "The Crossing of the Return Threshold" - }, - "16": { - "label": "Knight of the Two Worlds", - "description": "Ruggiero ultimately embodies a reconciliation between worlds that are normally represented as irreconcilable enemies throughout the poem. As a Saracen knight who converts to Christianity and founds a Christian dynasty without erasing his origins, he becomes a literal bridge between civilizations, genealogies, and cultural identities. The hero masters both worlds by integrating them into a new dynastic synthesis rather than annihilating one in favor of the other.", - "realizesStage": "monomyth:MasterOfTheTwoWorlds", - "realizesStageLabel": "Master of the Two Worlds" - }, - "17": { - "label": "Dynastic Peace", - "description": "Ruggiero achieves a provisional state of fulfillment through marriage, dynastic foundation, and integration into the Christian world. Yet Ariosto's celebratory closure remains partially shadowed by the later tradition surrounding the hero's premature death, introducing instability into the monomyth's final promise of peaceful transcendence. Freedom is therefore achieved historically and genealogically more than existentially or personally.", - "realizesStage": "monomyth:FreedomToLive", - "realizesStageLabel": "Freedom to Live", - "narrative": { - "label": "Freedom through Dynasty divergence", - "rationale": "Campbell's final stage usually culminates in the hero's personal liberation from fear and existential anxiety. In Orlando Furioso, this freedom is displaced from the individual hero onto the historical future generated by his marriage and descendants. The narrative's true stability belongs to the Este dynasty rather than to Ruggiero himself, whose later death continues to shadow the apparent closure of the poem." - } + } + ] + }, + "kg-modal-orlando": { + "ttlFile": "orlando-furioso.ttl", + "journeys": [ + { + "id": "https://monomyth.metamuses.org/graph/orlando-furioso/monomyths/ruggiero-journey", + "label": "Ruggiero's Hero's Journey in Orlando Furioso", + "stages": { + "1": { + "label": "Carried away from Albracca", + "description": "During the chaos of war around Albracca, Ruggiero loses control of the Hippogriff and is violently carried away through the sky into unknown territories. This forced displacement abruptly tears him out of the ordinary rhythm of martial conflict and introduces him into Ariosto's wider universe of enchantment, wandering, and destiny.", + "realizesStage": "monomyth:TheCallToAdventure", + "realizesStageLabel": "The Call to Adventure" + }, + "2": { + "label": "Enchanted Delays", + "description": "Rather than explicitly refusing his destiny, Ruggiero repeatedly becomes suspended inside enchanted systems designed to delay or dissolve his heroic development. His captivity within Alcina's island of pleasure and Atlante's illusory palace traps him in cycles of forgetfulness, sensual distraction, and temporal stagnation. These recurring detours function as a fragmented refusal in which the hero continually postpones the irreversible transformation awaiting him.", + "realizesStage": "monomyth:RefusalOfTheCall", + "realizesStageLabel": "Refusal of the Call", + "narrative": { + "label": "Dispersed Refusal divergence", + "rationale": "Instead of presenting a single moment of hesitation immediately following the call, Ariosto disperses the refusal across multiple enchanted episodes that collectively suspend the hero's destiny. Ruggiero does not consciously reject transformation; rather, he repeatedly forgets, postpones, or loses sight of it within systems of magical distraction. The divergence replaces Campbell's concentrated psychological hesitation with a cyclical structure of narrative delay that mirrors the poem's recursive and labyrinthine form." + } + }, + "3": { + "label": "Alcina's Seduction", + "description": "Within Alcina's enchanted island where the Hippogryph deposits him, Ruggiero abandons martial honor and heroic purpose to live in sensual luxury under the spell of the sorceress. The enchantress reduces the hero to a passive object of pleasure, isolating him from memory, duty, and destiny while concealing the monstrous reality beneath her seductive beauty. Here, erotic enchantment itself becomes the mechanism threatening to erase the hero's transformative path.", + "realizesStage": "monomyth:WomanAsTheTemptress", + "realizesStageLabel": "Woman as the Temptress", + "sequential": { + "label": "Temptress before Trials divergence", + "rationale": "In Campbell's canonical sequence, Woman as the Temptress appears late in the Initiation act, after the hero has already undergone trials and encountered the Goddess. In Orlando Furioso, however, the Alcina episode occurs almost immediately after the Call to Adventure, before Ruggiero has achieved any heroic stability or encountered Bradamante. Ariosto deliberately inverts the sequence so that the hero's first encounter with the feminine is seductive dissolution rather than spiritual fulfillment, portraying Ruggiero as a hero initially trapped in enchantment and dependent on external rescue rather than earned mastery." + } + }, + "4": { + "label": "Melissa's Ring", + "description": "Disguised as the magician Atlante, Melissa approaches Ruggiero inside Alcina's enchanted domain and delivers the magic ring capable of dispelling every illusion. Through this supernatural object, the hero suddenly perceives the horrifying truth behind the island's beauty and recovers the capacity for autonomous judgment. The ring functions as the quintessential Campbellian talisman: a magical aid that allows the hero to pierce deception and continue the journey toward his destined transformation.", + "realizesStage": "monomyth:SupernaturalAid", + "realizesStageLabel": "Supernatural Aid", + "sequential": { + "label": "Aid after Temptation divergence", + "rationale": "In Campbell's monomyth, Supernatural Aid appears before the hero's trials, preparing him for the journey ahead. In Orlando Furioso, however, Melissa's intervention arrives only after Ruggiero has already fallen into Alcina's enchantment and enacted a prolonged refusal of destiny. The aid therefore functions not as preparation but as rescue: the magic ring becomes a remedy for collapse rather than a tool for future trials, but it allows the hero to resume the journey to his transformation." + } + }, + "5": { + "label": "Departure from Logistilla", + "description": "After escaping Alcina's island, Ruggiero reaches the rational and disciplined realm of Logistilla, where he receives instruction regarding virtue, self-control, and destiny and also learns to control the Hippogryph. His departure from this protected environment marks the decisive threshold crossing into Ariosto's unstable world of wandering adventures, martial tests, and dynastic responsibility. The hero leaves behind passive enchantment and begins acting within the larger historical movement of the poem.", + "realizesStage": "monomyth:TheCrossingOfTheFirstThreshold", + "realizesStageLabel": "The Crossing of the First Threshold" + }, + "6": { + "label": "Atlante's Palace", + "description": "Inside Atlante's enchanted palace, knights endlessly pursue phantoms corresponding to their deepest desires while losing all stable orientation and identity. Ruggiero enters the palace having glimpsed an apparition of Bradamante within its corridors, and loses himself entirely in the labyrinth of his own longing. The hero becomes absorbed into this closed system of illusion where time, purpose, and heroic progress collapse into repetition. The palace functions as a symbolic dissolution of the self, temporarily swallowing the hero inside a magical labyrinth from which genuine transformation can occur only through escape and disillusionment.", + "realizesStage": "monomyth:TheBellyOfTheWhale", + "realizesStageLabel": "The Belly of the Whale", + "narrative": { + "label": "Paternal Imprisonment divergence", + "rationale": "The Belly of the Whale is usually an impersonal abyss initiating the hero into symbolic death. In Orlando Furioso, however, Atlante's enchanted palace is a paternal prison built out of protective love rather than cosmic fate or malice. Ruggiero's symbolic death therefore becomes psychological rather than cosmic: he must free himself not from an external darkness but from the foster-father's protective control that has shaped and confined his identity since childhood." + } + }, + "7": { + "label": "Breaking from Atlante", + "description": "Ruggiero's relationship with Atlante is defined by the tension between loving protection and spiritual imprisonment. The magician repeatedly attempts to shield the hero from his prophesied death by enclosing him inside magical systems that prevent maturity, conversion, and marriage. The atonement occurs when Ruggiero ultimately escapes Atlante's authority, accepting the risks of destiny rather than remaining suspended within paternal control and illusion.", + "realizesStage": "monomyth:AtonementWithTheFather", + "realizesStageLabel": "Atonement with the Father", + "sequential": { + "label": "Atonement before Trials divergence", + "rationale": "Typically, the Atonement with the Father stage typically serves as the spiritual climax of the Initiation act, occurring after the hero has been tempered and purified by the Road of Trials. As for Ruggiero's journey, his confrontation with Atlante's paternal authority \u2014 and the subsequent dissolution of the magician's protective enchantments \u2014 occurs early in the narrative sequence. This break from the father figure acts as a prerequisite that enables the 'Wandering Adventures' to begin, rather than being the reward for completing them. Ariosto thus reorders the sequence so that the hero's liberation from paternal control is the starting point of his independent knightly development rather than its final initiation." + } + }, + "8": { + "label": "Wandering Adventures", + "description": "Astolfo frees Ruggiero from Atlante's castle and the hero's journey can start again. Across dozens of cantos, Ruggiero passes through an immense series of duels, rescues, voyages, magical confrontations, and knightly ordeals dispersed throughout Ariosto's fragmented narrative structure. Each episode tests a different aspect of his identity: martial courage, loyalty, erotic discipline, and spiritual direction. Rather than forming a linear sequence, these trials accumulate through interruption and narrative suspension, gradually constructing the hero's readiness for dynastic and religious transformation.", + "realizesStage": "monomyth:TheRoadOfTrials", + "realizesStageLabel": "The Road of Trials" + }, + "9": { + "label": "Bradamante's Destiny", + "description": "Along all the trials, the hero is occasionally reunited with his love interest. The recurring reunions between Ruggiero and Bradamante collectively constitute the hero's encounter with the feminine principle that gives direction and ultimate meaning to his journey. Bradamante is not a passive beloved awaiting rescue but a formidable warrior who has herself descended into Merlin's cave and received the prophetic vision of their future dynasty. Through her, Ruggiero perceives not only personal love but a transpersonal destiny, since the founding of the Este lineage depends entirely on his successful transformation.", + "realizesStage": "monomyth:TheMeetingWithTheGoddess", + "realizesStageLabel": "The Meeting with the Goddess", + "semiotic": { + "label": "Warrior Goddess divergence", + "rationale": "Campbell's Meeting with the Goddess draws on the idea of the divine feminine as cosmic totality, where her love reveals unity beneath division. In 'Orlando Furioso', this role is reworked in Bradamante: a warrior knight who fights, wins duels, and pursues Ruggiero with equal determination. Her love is unconditional in Campbell's sense, as she never abandons their destined union, but it is expressed through martial agency rather than nurturing receptivity. Renaissance chivalric tradition thus replaces the sacred goddess with the female heroine, preserving the structure of the archetype while transforming its semiotic form." + } + }, + "10": { + "label": "Delayed Conversion", + "description": "Even after repeated prophecies and encounters directing him toward Christian conversion and dynastic destiny, Ruggiero continually postpones his definitive return from enchantment and ambiguity. His hesitation unfolds across numerous cantos through detours, interruptions, and deferred decisions that slow the transition from Saracen knight to Christian founder.", + "realizesStage": "monomyth:RefusalOfTheReturn", + "realizesStageLabel": "Refusal of the Return", + "sequential": { + "label": "Refusal before Apotheosis divergence", + "rationale": "The Refusal of the Return normally follows the Apotheosis and Ultimate Boon, when the hero resists re-entering ordinary life after transcendence. In Ruggiero's case, however, this sequence is displaced: his prolonged delay occurs before both baptism and the attainment of the Boon. He refuses not the return from enlightenment, but the movement toward it, postponing the transformation that would lead to conversion and marriage. What he clings to is not transcendence but his existing Saracen identity, so the refusal becomes a resistance to ascent rather than descent." + } + }, + "11": { + "label": "Bradamante's Rescues", + "description": "Throughout the poem, Bradamante and her allies repeatedly intervene to recover Ruggiero from enchantment, hesitation, or narrative dispersion. Whether through Melissa's magical assistance or Bradamante's direct actions, the hero is continually redirected toward his providential role whenever he risks becoming trapped within illusion or passivity. The rescue therefore operates as a sustained corrective force distributed throughout the narrative.", + "realizesStage": "monomyth:RescueFromWithout", + "realizesStageLabel": "Rescue from Without", + "narrative": { + "label": "Dispersed Rescue divergence", + "rationale": "This stage subverts the 'Rescue from Without' by transforming a singular narrative event into a dispersed, structural motif. While Campbell's model envisions a final, definitive intervention to pull the hero home, Ruggiero's rescue is fragmented across the entire epic, reflecting the 'entrelacement' structure of the poem. Each time the hero falls into enchantment or loses his path due to his own passivity, Bradamante or her surrogate Melissa must intervene. The 'Rescue' thus loses its character as a final threshold crossing and becomes a constant, corrective cycle of retrieval, highlighting a hero who is perpetually slipping away from his destiny and a heroine who functions as his necessary external conscience." + }, + "sequential": { + "label": "Rescue before Apotheosis divergence", + "rationale": "In the standard monomythic sequence, the 'Rescue from Without' occurs during the Return, serving to support a hero who has already achieved enlightenment or the ultimate boon but is too exhausted or unwilling to cross back into the ordinary world. Ariosto radically displaces this stage by making the rescue a recurring necessity long before Ruggiero's spiritual 'Apotheosis'. This reordering is central to the poem's thematic focus on human frailty and the power of love, as Ruggiero cannot reach his divine transformation on his own will but requires multiple 'rescues' from Bradamante and Melissa." + } + }, + "12": { + "label": "Baptism and Conversion", + "description": "Ruggiero's baptism marks the symbolic death of his previous identity and his elevation into a new spiritual condition. The hero abandons his former religious and political affiliation to enter the Christian order associated with Bradamante and Charlemagne's court. This transformation functions as a literal apotheosis in which personal conversion simultaneously becomes dynastic destiny, historical legitimation, and metaphysical rebirth.", + "realizesStage": "monomyth:Apotheosis", + "realizesStageLabel": "Apotheosis", + "semiotic": { + "label": "Religious Apotheosis divergence", + "rationale": "The Apotheosis stage generally operates through mythic revelation, cosmic consciousness, or metaphysical transcendence. Ariosto translates this transformative elevation into the specifically Christian language of baptism, conversion, and sacramental rebirth. The hero's spiritual ascent is therefore expressed not through universal mythology but through the religious and political semiotics of Renaissance Christendom." + } + }, + "13": { + "label": "Este Foundation", + "description": "The union in marriage between Ruggiero and Bradamante produces a boon that extends beyond the hero's private fulfillment and into the future history of an entire civilization. Their marriage establishes the mythical origin of the Este dynasty celebrated by Ariosto's poem, transforming the hero's personal journey into the foundation of political continuity, noble lineage, and collective cultural identity.", + "realizesStage": "monomyth:TheUltimateBoon", + "realizesStageLabel": "The Ultimate Boon" + }, + "14": { + "label": "Flight from the Saracen camp", + "description": "After his baptism, Ruggiero must sever himself physically and legally from the Saracen world that defined his identity. His withdrawal from their camp is not a sudden magical escape, but a painful break from shared loyalty and military belonging. This departure is enabled by a providential structure: the Saracen leader truce-breaking releases Ruggiero from his oath of fealty. What appears as \"magic\" is instead the moral failure of his former leader, which dissolves his obligations and opens the path back to the Christian world.", + "realizesStage": "monomyth:TheMagicFlight", + "realizesStageLabel": "The Magic Flight" + }, + "15": { + "label": "Defection to Christendom", + "description": "Ruggiero's passage to the Christian side marks the full crossing of the return threshold: a public defection and entry into the order of Christian knights. This is not merely a change of allegiance but a translation of his Saracen martial identity into a new theological and cultural register, where he appears as both convert and supreme exemplar. The threshold itself is civilizational rather than physical, requiring him to carry his transformed self wholly into a new historical role shaped by Merlin's prophecy. By definitively abandoning his former side, he reintegrates the experiences of wandering, enchantment, and crisis into a stable identity recognized by Charlemagne's world, completing the passage from divided existence to unified purpose.", + "realizesStage": "monomyth:TheCrossingOfTheReturnThreshold", + "realizesStageLabel": "The Crossing of the Return Threshold" + }, + "16": { + "label": "Knight of the Two Worlds", + "description": "Ruggiero ultimately embodies a reconciliation between worlds that are normally represented as irreconcilable enemies throughout the poem. As a Saracen knight who converts to Christianity and founds a Christian dynasty without erasing his origins, he becomes a literal bridge between civilizations, genealogies, and cultural identities. The hero masters both worlds by integrating them into a new dynastic synthesis rather than annihilating one in favor of the other.", + "realizesStage": "monomyth:MasterOfTheTwoWorlds", + "realizesStageLabel": "Master of the Two Worlds" + }, + "17": { + "label": "Dynastic Peace", + "description": "Ruggiero achieves a provisional state of fulfillment through marriage, dynastic foundation, and integration into the Christian world. Yet Ariosto's celebratory closure remains partially shadowed by the later tradition surrounding the hero's premature death, introducing instability into the monomyth's final promise of peaceful transcendence. Freedom is therefore achieved historically and genealogically more than existentially or personally.", + "realizesStage": "monomyth:FreedomToLive", + "realizesStageLabel": "Freedom to Live", + "narrative": { + "label": "Freedom through Dynasty divergence", + "rationale": "Campbell's final stage usually culminates in the hero's personal liberation from fear and existential anxiety. In Orlando Furioso, this freedom is displaced from the individual hero onto the historical future generated by his marriage and descendants. The narrative's true stability belongs to the Este dynasty rather than to Ruggiero himself, whose later death continues to shadow the apparent closure of the poem." } } } - ] - } + } + ] } } diff --git a/website/js/main.js b/website/js/main.js index f2b2b50..578419b 100644 --- a/website/js/main.js +++ b/website/js/main.js @@ -518,8 +518,8 @@ async function loadModalData() { } function getModalJourneys(data, modalId) { - if (!data || !data.modals || !data.modals[modalId]) return []; - const journeys = data.modals[modalId].journeys; + if (!data || !data[modalId]) return []; + const journeys = data[modalId].journeys; return Array.isArray(journeys) ? journeys : []; } From d9626c0e49aff8d2ffc8b94ea1e9f8b208b3b58a Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Wed, 20 May 2026 23:10:10 +0200 Subject: [PATCH 14/14] Add box with ontology documentation link --- website/css/main.css | 12 ++++++++++-- website/index.html | 5 +++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/website/css/main.css b/website/css/main.css index 0bd67b9..e029ce6 100644 --- a/website/css/main.css +++ b/website/css/main.css @@ -558,7 +558,11 @@ body::before { } .ontology-iri-box { - margin-bottom: 120px; + margin-bottom: 20px; +} + +.ontology-iri-box + .ontology-iri-box { + margin-bottom: 90px; } .ontology-classes-label { @@ -1710,7 +1714,11 @@ code { } .ontology-iri-box { - margin-bottom: 50px; + margin-bottom: 16px; + } + + .ontology-iri-box + .ontology-iri-box { + margin-bottom: 64px; } .kg-grid { diff --git a/website/index.html b/website/index.html index ef81844..c2f3121 100644 --- a/website/index.html +++ b/website/index.html @@ -249,6 +249,11 @@

A Vocabulary for Myth

https://monomyth.metamuses.org/ontology#
+
+
Monomyth Ontology documentation
+ https://monomyth.metamuses.org/docs +
Core Classes