diff --git a/Chrono/Build/Program.cs b/Chrono/Build/Program.cs index 6946b46..e20e8b4 100644 --- a/Chrono/Build/Program.cs +++ b/Chrono/Build/Program.cs @@ -17,7 +17,7 @@ if (!Directory.Exists(docsDir)) return 1; } -var mdFiles = Directory.GetFiles(docsDir, "*.md"); +var mdFiles = Directory.GetFiles(docsDir, "*.md", SearchOption.AllDirectories); var cards = new List(); foreach (var file in mdFiles) @@ -35,7 +35,7 @@ foreach (var file in mdFiles) var name = Path.GetFileNameWithoutExtension(file); var category = yaml.GetValueOrDefault("category"); - if (category == null) continue; + if (category == null || category == "Deck") continue; var imageFile = StripWikiLink(yaml.GetValueOrDefault("imageLink")); if (imageFile != null && !imageFile.EndsWith(".png")) @@ -67,13 +67,20 @@ foreach (var file in mdFiles) // Copy PNGs to wwwroot/cards var cardsDir = Path.Combine(webWwwRoot, "cards"); Directory.CreateDirectory(cardsDir); + +var pngFiles = Directory.GetFiles(docsDir, "*.png", SearchOption.AllDirectories); +var pngMap = pngFiles + .GroupBy(Path.GetFileName) + .ToDictionary(g => g.Key!, g => g.First(), StringComparer.OrdinalIgnoreCase); + foreach (var card in cards) { if (card.ImageFile == null) continue; - var src = Path.Combine(docsDir, card.ImageFile); - var dst = Path.Combine(cardsDir, card.ImageFile); - if (File.Exists(src)) + if (pngMap.TryGetValue(card.ImageFile, out var src)) + { + var dst = Path.Combine(cardsDir, card.ImageFile); File.Copy(src, dst, true); + } } // Generate C# source file @@ -120,7 +127,7 @@ Console.WriteLine($"Generated {cards.Count} cards in {generatedFile}"); // ── Decks ── var decksDir = Path.Combine(docsDir, "Decks"); -var deckFiles = Directory.Exists(decksDir) ? Directory.GetFiles(decksDir, "*.md") : []; +var deckFiles = Directory.Exists(decksDir) ? Directory.GetFiles(decksDir, "*.md", SearchOption.AllDirectories) : []; var decks = new List(); foreach (var file in deckFiles) diff --git a/Chrono/Web/Generated/Cards.g.cs b/Chrono/Web/Generated/Cards.g.cs index 1c18071..6592103 100644 --- a/Chrono/Web/Generated/Cards.g.cs +++ b/Chrono/Web/Generated/Cards.g.cs @@ -9,20 +9,243 @@ public static class CardDatabase [ new() { - Name = "A'kon, Starry Diviner", - Category = "Agent", + Name = "Lifeblood", + Category = "Faction", + Archetypes = [ + ], + }, + new() + { + Name = "Phasetide", + Category = "Faction", + Archetypes = [ + ], + }, + new() + { + Name = "Silence", + Category = "Faction", + Archetypes = [ + ], + }, + new() + { + Name = "Singularity", + Category = "Faction", + Archetypes = [ + ], + }, + new() + { + Name = "Splintergleam", + Category = "Faction", + Archetypes = [ + ], + }, + new() + { + Name = "Sungrace", + Category = "Faction", + Archetypes = [ + ], + }, + new() + { + Name = "Draw", + Category = "Keyword", + Description = "Place the card from the top of your deck into your hand.", + Archetypes = [ + ], + }, + new() + { + Name = "Flourish", + Category = "Keyword", + Description = "Grant this Agent +1/+1.", + Archetypes = [ + ], + }, + new() + { + Name = "Overpower", + Category = "Keyword", + Description = "Excess damage beyond the Durability of this Agent's blocker is dealt directly to the enemy core.", + Archetypes = [ + ], + }, + new() + { + Name = "Phase", + Category = "Keyword", + Description = "A Phased Agent is treated as removed from play for the round, though it still occupies its board-space. At the start of the next round this unit Phases in and is in the exact same state as it Phased out. Phasing back in does not trigger Enter effects.", + Archetypes = [ + ], + }, + new() + { + Name = "Phased", + Category = "Keyword", + Description = "Triggered when this Agent has been affected by Phase.", + Archetypes = [ + ], + }, + new() + { + Name = "Rewind", + Category = "Keyword", + Description = "Return this Agent to its owner's hand.", + Archetypes = [ + ], + }, + new() + { + Name = "Rewound", + Category = "Keyword", + Description = "Triggered when this Agent has been affected by Rewind.", + Archetypes = [ + ], + }, + new() + { + Name = "Shift", + Category = "Keyword", + Description = "Timeline is changed to the indicated Timeline.", + Archetypes = [ + ], + }, + new() + { + Name = "Sprout", + Category = "Keyword", + Description = "Summon a 1/1 spore. If your board is full, give your weakest spore +1/+1.", + Archetypes = [ + ], + }, + new() + { + Name = "Transient", + Category = "Keyword", + Description = "This card in hand is Discarded at Round End.", + Archetypes = [ + ], + }, + new() + { + Name = "Agents", + Category = "Redirect", + Archetypes = [ + ], + }, + new() + { + Name = "Chain", + Category = "Rule", + Description = "Effects are stacked until they are able to be resolved. This enables Immediate and Fast reactions to be added onto the stack for reactive gameplay.", + Archetypes = [ + ], + }, + new() + { + Name = "Core", + Category = "Rule", + Archetypes = [ + ], + }, + new() + { + Name = "Cores", + Category = "Redirect", + Archetypes = [ + ], + }, + new() + { + Name = "Discarded", + Category = "Rule", + Description = "Remove this card from your hand.", + Archetypes = [ + ], + }, + new() + { + Name = "Round End", + Category = "Rule", + Description = "The end state of the round. Triggered when both players end there turns without action.", + Archetypes = [ + ], + }, + new() + { + Name = "Core Set", + Category = "Set", + Archetypes = [ + ], + }, + new() + { + Name = "Fast", + Category = "Speed", + Description = "This spell can be reacted to.", + Archetypes = [ + ], + }, + new() + { + Name = "Immediate", + Category = "Speed", + Description = "This spell cannot be reacted to.", + Archetypes = [ + ], + }, + new() + { + Name = "Slow", + Category = "Speed", + Description = "This spell cannot be used as a reaction to something on the Chain.", + Archetypes = [ + ], + }, + new() + { + Name = "Pocket Scout", + Category = "Token", Cost = 1, - Attack = 2, - Health = 2, - Description = "Enter or Last Gasp: Create a Return to Stillness in hand.", - Faction = "Silence", + Attack = 1, + Health = 1, + Description = "Token.", + Faction = "Singularity", Set = "Core Set", Archetypes = [ ], - ImmortalizeTo = [ + ImageFile = "Pocket Scout.png", + }, + new() + { + Name = "Seedling", + Category = "Token", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Token.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ ], - ImmortalizeFrom = "Somber Astronomer", - ImageFile = "A'kon, Starry Diviner.png", + ImageFile = "Seedling.png", + }, + new() + { + Name = "Wolf", + Category = "Token", + Cost = 2, + Attack = 2, + Health = 1, + Description = "Confront.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + ], + ImageFile = "Wolf.png", }, new() { @@ -46,193 +269,303 @@ public static class CardDatabase }, new() { - Name = "Affront to Nature", - Category = "Spell", - Cost = 9, - Description = "Allies Flourish 3 times. Enemies Decay 3 times.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Affront to Nature.png", - }, - new() - { - Name = "Agents", - Category = "Redirect", - Archetypes = [ - ], - }, - new() - { - Name = "Aggressive Recycling", - Category = "Spell", - Cost = 2, - Description = "Discard 2 to play. Draw 2. Sacrifice 3: Instead, Discard 3 to play. Draw 3.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Aggressive Recycling.png", - }, - new() - { - Name = "Alina Who Cuts the Strings", - Category = "Agent", - Cost = 4, - Attack = 3, - Health = 2, - Description = "Play: (C) Mute an Agent. Activate: (C) Destroy a Mute|Muted Agent.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Destiny Ripper", - ImageFile = "Alina Who Cuts the Strings.png", - }, - new() - { - Name = "Alina, the Overflowing Cup", - Category = "Agent", - Cost = 4, - Attack = 3, - Health = 5, - Description = "Enter or Round Start: Create a 0 cost Transient Blessed Soup in hand.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Bearer of the Broth", - ImageFile = "Alina, the Overflowing Cup.png", - }, - new() - { - Name = "Appeal to the Scrolls", - Category = "Spell", - Cost = 5, - Description = "If you have 1 or less Agents, I cost 2 less. Draw 2 Actions.", - Faction = "Silence", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Appeal to the Scrolls.png", - }, - new() - { - Name = "Armageddonaut", - Category = "Agent", - Cost = 5, - Attack = 6, - Health = 6, - Description = "Cleave. Enter or when I destroy an Agent: Create a Circle of Strife in hand.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Hungry Engine", - ImageFile = "Armageddonaut.png", - }, - new() - { - Name = "Army of the Sun", - Category = "Spell", - Cost = 13, - Description = "Summon the Strongest Agent in your deck now and at each Round Start.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Army of the Sun.png", - }, - new() - { - Name = "Arra, Saurian Broodmother", + Name = "Burrowing Beetles", Category = "Agent", Cost = 1, Attack = 1, - Health = 2, - Description = "Activate: The next ally that enters play this round Flourish|Flourishes. The first time each round another ally Flourish|Flourishes, I Flourish.", + Health = 1, + Description = "Evasive.", Faction = "Lifeblood", Set = "Core Set", Archetypes = [ "Flourish", ], ImmortalizeTo = [ + "The Cycle Embodied", ], - ImmortalizeFrom = "Egg Tender", - ImageFile = "Arra, Saurian Broodmother.png", + ImmortalizeWhen = "I've seen allies Flourish 4+ times.", + ImageFile = "Burrowing Beetles.png", }, new() { - Name = "Awakened Security System", + Name = "Egg Tender", + Category = "Agent", + Cost = 1, + Attack = 0, + Health = 1, + Description = "Activate: The next ally that enters play this round Flourish|Flourishes.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + "Arra, Saurian Broodmother", + ], + ImmortalizeWhen = "I've seen allies Flourish 4+ times.", + ImageFile = "Egg Tender.png", + }, + new() + { + Name = "Fervent Mycologist", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Evasive.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Sprout", + ], + ImmortalizeTo = [ + "Jenny, Sower of Spores", + ], + ImmortalizeWhen = "I've Struck the enemy Core.", + ImageFile = "Fervent Mycologist.png", + }, + new() + { + Name = "Gardener Apprentice", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Enter: Sprout 1.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Sprout", + ], + ImmortalizeTo = [ + "Horticulturalist Oswald", + ], + ImmortalizeWhen = "I've seen you Sprout 4+ times.", + ImageFile = "Gardener Apprentice.png", + }, + new() + { + Name = "Glade Grazers", + Category = "Agent", + Cost = 2, + Attack = 0, + Health = 1, + Description = "When another ally enters play, I Flourish.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + "Battleharts", + ], + ImmortalizeWhen = "I have 6+ Strength.", + ImageFile = "Glade Grazers.png", + }, + new() + { + Name = "Glasswinged Monarch", + Category = "Agent", + Cost = 6, + Attack = 4, + Health = 4, + Description = "Evasive. Enter or Core Strike: Shift to Abundant Growth.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Omeganeura", + ], + ImmortalizeWhen = "I've seen you Shift twice.", + ImageFile = "Glasswinged Monarch.png", + }, + new() + { + Name = "Harbinger of Power", + Category = "Agent", + Cost = 5, + Attack = 5, + Health = 5, + Description = "Enter: Shift to Deadly Fauna.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Evolution Incarnate", + ], + ImmortalizeWhen = "I've seen the enemy Core take damage through Overpower.", + ImageFile = "Harbinger of Power.png", + }, + new() + { + Name = "Hungry Tyrannosaur", + Category = "Agent", + Cost = 8, + Attack = 8, + Health = 7, + Description = "Confront. Overpower. Enter: Create a Throwdown in hand.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Wreck-o Rex", + ], + ImmortalizeWhen = "I've destroyed an Agent.", + ImageFile = "Hungry Tyrannosaur.png", + }, + new() + { + Name = "Panicked Refugee", + Category = "Agent", + Cost = 3, + Attack = 2, + Health = 2, + Description = "Enter: Summon a Wolf.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Bronk the Calm", + ], + ImmortalizeWhen = "Round End: I do not see an allied Wolf in play. When I Immortalize, Shift to Abundant Growth.", + ImageFile = "Panicked Refugee.png", + }, + new() + { + Name = "Pterosaur Rider", + Category = "Agent", + Cost = 4, + Attack = 3, + Health = 3, + Description = "Evasive.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Gritmancer Grant", + ], + ImmortalizeWhen = "I've Struck the enemy Core.", + ImageFile = "Pterosaur Rider.png", + }, + new() + { + Name = "Sap Sapper", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 4, + Description = "Enter: Sprout 2, then grant those Seedlings \\\"Last Gasp: Deal 1 to all Agents.\\\".", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Sprout", + ], + ImmortalizeTo = [ + "The Botanist", + ], + ImmortalizeWhen = "I've seen 3+ Agents destroyed.", + ImageFile = "Sap Sapper.png", + }, + new() + { + Name = "Sapling Dryad", Category = "Agent", Cost = 2, Attack = 1, - Health = 3, - Description = "Activate: Reduce an Agent's Strength by my Strength this round.", - Faction = "Singularity", + Health = 2, + Description = "I have +1/+0 for each time you've Sprout|Sprouted this game.", + Faction = "Lifeblood", Set = "Core Set", Archetypes = [ + "Sprout", ], ImmortalizeTo = [ - "Wom, Sweet Wom", + "The Great Oakmother", ], - ImmortalizeWhen = "I see 3+ Agents with 0 Strength in play.", - ImageFile = "Awakened Security System.png", + ImmortalizeWhen = "I've seen you Sprout 4+ times.", + ImageFile = "Sapling Dryad.png", }, new() { - Name = "B.O.O.F.", + Name = "Sleepy Druid", + Category = "Agent", + Cost = 3, + Attack = 2, + Health = 2, + Description = "Activate: (C) An Agent Flourish|Flourishes.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + "Xae, Dreamstrider", + ], + ImmortalizeWhen = "I've seen allies Flourish 4+ times.", + ImageFile = "Sleepy Druid.png", + }, + new() + { + Name = "Spark of Bounty", + Category = "Agent", + Cost = 5, + Attack = 4, + Health = 4, + Description = "Enter: Shift to Abundant Growth.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "The Beating Heart", + ], + ImmortalizeWhen = "Round End: You have 15+ Strength in play.", + ImageFile = "Spark of Bounty.png", + }, + new() + { + Name = "Territorial Pack", Category = "Agent", Cost = 2, - Attack = 3, + Attack = 1, Health = 2, - Description = "Enter: Draw a 1 cost Agent from your deck. Round End: If I do not see a 1 cost ally in play, Draw a 1 cost Agent from your deck.", - Faction = "Singularity", + Description = "Enter: Summon a Wolf.", + Faction = "Lifeblood", Set = "Core Set", Archetypes = [ - "Draw", ], ImmortalizeTo = [ + "Boof, Lonely and Proud", ], - ImmortalizeFrom = "Enhanced Retriever", - ImageFile = "B.O.O.F..png", + ImmortalizeWhen = "Round End: I do not see an allied Wolf in Play.", + ImageFile = "Territorial Pack.png", }, new() { - Name = "Backhand", - Category = "Spell", - Cost = 2, - Description = "Destroy an Agent with 2 or less Strength or Durability.", - Faction = "Phasetide", + Name = "Zealot of the Hunt", + Category = "Agent", + Cost = 6, + Attack = 7, + Health = 5, + Description = "Enter or when I.", + Faction = "Lifeblood", Set = "Core Set", - Speed = "Fast", Archetypes = [ ], - ImageFile = "Backhand.png", - }, - new() - { - Name = "Balanced Blade", - Category = "Spell", - Cost = 3, - Description = "The next time an ally Strikes an enemy this round, first grant it Strength equal to its target's Durability.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ + ImmortalizeTo = [ + "Khaelar", ], - ImageFile = "Balanced Blade.png", + ImmortalizeWhen = "Give the strongest enemy Exposed and set its stats to 1/1 this round. Immortalize: I've destroyed an Agent.", + ImageFile = "Zealot of the Hunt.png", }, new() { @@ -254,37 +587,6 @@ public static class CardDatabase ImageFile = "Bareknuckle Inquisitor.png", }, new() - { - Name = "Bathe in Flames", - Category = "Spell", - Cost = 2, - Description = "Deal 2 to an ally to deal 2 to an Agent. Shift to Volcanic Rivers.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Bathe in Flames.png", - }, - new() - { - Name = "Battleharts", - Category = "Agent", - Cost = 2, - Attack = 0, - Health = 1, - Description = "Overpower. When another ally enters play, I Flourish.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Glade Grazers", - ImageFile = "Battleharts.png", - }, - new() { Name = "Bearer of the Broth", Category = "Agent", @@ -304,195 +606,268 @@ public static class CardDatabase }, new() { - Name = "Bill, First Point of Contact", + Name = "Curious Acolyte", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 3, + Description = "When I am Phased or Rewound, Draw 1.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + "Zel, the First Diver", + ], + ImmortalizeWhen = "I am Phased or Rewound.", + ImageFile = "Curious Acolyte.png", + }, + new() + { + Name = "Divergence Assasin", + Category = "Agent", + Cost = 6, + Attack = 6, + Health = 3, + Description = "Blitz. I cost 1 less for each time you've Phased or Rewound an Agent this game. Strike: Rewind me.]]", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + "Masa, Time-Lost", + ], + ImmortalizeWhen = "You've Phased or Rewound Agents 6+ times this game.", + }, + new() + { + Name = "Fervent Follower", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Round End: I Flourish. When I see a Shift to a Timeline other than The One True Timeline, deal 1 to me.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Flourish", + "Shift", + ], + ImmortalizeTo = [ + "Pontifex Dhabu", + ], + ImmortalizeWhen = "I have 6+ Strength.", + ImageFile = "Fervent Follower.png", + }, + new() + { + Name = "Heretic Whistleblower", + Category = "Agent", + Cost = 3, + Attack = 2, + Health = 4, + Description = "When I see a Shift, reveal the top card of your deck. If it is an Action, Draw 1.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Shift", + "Draw", + ], + ImmortalizeTo = [ + "Harker, Metal Reporter", + ], + ImmortalizeWhen = "I've seen 3+ Shifts.", + ImageFile = "Heretic Whistleblower.png", + }, + new() + { + Name = "Holder of the Instruments", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 1, + Description = "Enter: Shift to The One True Timeline.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + "Symphony of the Path", + ], + ImmortalizeWhen = "I am Phased or Rewound.", + ImageFile = "Holder of the Instruments.png", + }, + new() + { + Name = "Holy Cleaner", + Category = "Agent", + Cost = 3, + Attack = 2, + Health = 3, + Description = "Play: Activate Rewind an Agent with equal or less Durability than me.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + "Violent Inquisitioner", + ], + ImmortalizeWhen = "You've Rewound 3+ times this game.", + ImageFile = "Holy Cleaner.png", + }, + new() + { + Name = "Karmic Debtor", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 1, + Description = "Play: [icon]Phase an Agent. It cannot Phase in while I am in play.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + "Consequence Admin Cain", + ], + ImmortalizeWhen = "I've seen 3+ Agents Phased or Rewound.", + ImageFile = "Karmic Debtor.png", + }, + new() + { + Name = "Nonlethal Special Forces", Category = "Agent", Cost = 4, Attack = 3, - Health = 4, - Description = "Enter, Deplete, or Round Start: Create a Transient Scouter Round in hand.", - Faction = "Singularity", + Health = 3, + Description = "Blitz. Each round, Disarm the first enemy that would destroy an ally in combat.", + Faction = "Phasetide", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ + "The 'Stache", ], - ImmortalizeFrom = "Enthusiastic Bot-Poke", - ImageFile = "Bill, First Point of Contact.png", + ImmortalizeWhen = "You've set the Strength of 4+ enemies to 0 this game.", + ImageFile = "Nonlethal Special Forces.png", }, new() { - Name = "Blazing Shifter", + Name = "Seeker of Truth", Category = "Agent", - Cost = 4, + Cost = 2, Attack = 2, - Health = 2, - Description = "Enter: Shift to Volcanic Rivers. I have +1/+1 for each Timeline in the Timeline Stack.", - Faction = "Splintergleam", + Health = 6, + Description = "Enter: Deal 4 to me.", + Faction = "Phasetide", Set = "Core Set", Archetypes = [ "Shift", ], ImmortalizeTo = [ - "The Unstoppable Flow", + "Priestess Minia", ], - ImmortalizeWhen = "I have 7+ Strength.", - ImageFile = "Blazing Shifter.png", + ImmortalizeWhen = "I see The One True Timeline.", + ImageFile = "Seeker of Truth.png", }, new() { - Name = "Blessed Soup", - Category = "Spell", - Cost = 2, - Description = "Heal an Agent or Core 2. Draw 1.", + Name = "Shattersmith", + Category = "Agent", + Cost = 3, + Attack = 5, + Health = 5, + Description = "I have -1/-1 for each Timeline in the Timeline Stack other than The One True Timeline. Last Gasp: Shift to The One True Timeline.", Faction = "Phasetide", Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Blessed Soup.png", - }, - new() - { - Name = "Bloodbolt", - Category = "Spell", - Cost = 3, - Description = "Deal 2 to an Agent or Core. Breakdown 15: Instead, deal 3.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Bloodbolt.png", - }, - new() - { - Name = "Bloodline Tracker", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Activate: Sacrifice 1: (C) Deal 1 to the enemy Core.", - Faction = "Splintergleam", - Set = "Core Set", Archetypes = [ + "Shift", ], ImmortalizeTo = [ - "Master of Ceremonies", + "Rift Mender Aris", ], - ImmortalizeWhen = "I've dealt 6+ damage.", - ImageFile = "Bloodline Tracker.png", + ImmortalizeWhen = "I see The One True Timeline.", + ImageFile = "Shattersmith.png", }, new() { - Name = "Bloodlust", - Category = "Spell", - Cost = 2, - Description = "An ally Strikes a damaged Agent. Create a Transient Fueled by Pain in hand.", - Faction = "Splintergleam", + Name = "Slow Convert", + Category = "Agent", + Cost = 6, + Attack = 2, + Health = 1, + Description = "I cost 1 less for each copy of The One True Timeline in the Timeline Stack. Enter: Create a The Firm Hand in hand.", + Faction = "Phasetide", Set = "Core Set", - Speed = "Fast", Archetypes = [ + "Shift", ], - ImageFile = "Bloodlust.png", + ImmortalizeTo = [ + "Dedicated Missionary", + ], + ImmortalizeWhen = "I see The One True Timeline.", + ImageFile = "Slow Convert.png", }, new() { - Name = "Bloom", - Category = "Spell", - Cost = 2, - Description = "Give an ally +0/+2 this round. Sprout 1.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Bloom.png", - }, - new() - { - Name = "Boatswain Corvus", + Name = "Stern Arbiter", Category = "Agent", Cost = 7, - Attack = 6, - Health = 10, - Description = "Overpower. Round Start: Deal 1 to the enemy Core twice. When you deal non-combat damage to the enemy Core, grant the weakest enemy Exposed. Core Strike: Deal 3 to all enemies and t...", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Gilded Behemoth", - ImageFile = "Boatswain Corvus.png", - }, - new() - { - Name = "Boof, Ever Loyal", - Category = "Agent", - Cost = 1, - Attack = 3, + Attack = 5, Health = 5, - Description = "Enter: Deal 4 to me. Last Gasp: Return the last Action that was put into your Graveyard this round to hand.", + Description = "Play: Return an Action from your Graveyard to your hand. It costs 3 less and has \\\"If I would be put into a Graveyard, instead Erase me.\\\".", Faction = "Phasetide", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ + "Grand Judge Dhael", ], - ImmortalizeFrom = "Temple Guard Hound", - ImageFile = "Boof, Ever Loyal.png", + ImmortalizeWhen = "I've seen you play 3+ cards wi...", + ImageFile = "Stern Arbiter.png", }, new() { - Name = "Boof, Lonely and Proud", - Category = "Agent", - Cost = 2, - Attack = 3, - Health = 3, - Description = "Confront.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Territorial Pack", - ImageFile = "Boof, Lonely and Proud.png", - }, - new() - { - Name = "Boof, the Champion", - Category = "Agent", - Cost = 2, - Attack = 4, - Health = 4, - Description = "Overpower.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Pit Dog", - ImageFile = "Boof, the Champion.png", - }, - new() - { - Name = "Boof, the Listener", + Name = "Temple Analyst", Category = "Agent", Cost = 2, Attack = 2, - Health = 1, - Description = "Enter and Last Gasp: Draw a random 1, 2, or 3 cost Action from your deck.", - Faction = "Silence", + Health = 3, + Description = "Blitz. The first time each round I Strike while attacking: Swap me with the Agent to my right, then Rewind it. Reduce its cost by 1 this round.", + Faction = "Phasetide", Set = "Core Set", Archetypes = [ - "Draw", + "Rewound", ], ImmortalizeTo = [ + "Khaela the Savior", ], - ImmortalizeFrom = "Librarian's Assistant", - ImageFile = "Boof, the Listener.png", + ImmortalizeWhen = "I've seen 3+ Agents Phased or Rewound.", + ImageFile = "Temple Analyst.png", + }, + new() + { + Name = "Temple Guard Hound", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 5, + Description = "Enter: Deal 4 to me.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Boof, Ever Loyal", + ], + ImmortalizeWhen = "I see The One True Timeline.", + ImageFile = "Temple Guard Hound.png", }, new() { @@ -515,529 +890,6 @@ public static class CardDatabase ImageFile = "Braindead Bouncer.png", }, new() - { - Name = "Brant the Bloody", - Category = "Agent", - Cost = 1, - Attack = 2, - Health = 3, - Description = "Confront. Agents I Strike Bleed 1. When an enemy Bleeds, I Flourish.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Persistent Squire", - ImageFile = "Brant the Bloody.png", - }, - new() - { - Name = "BREAK AND SHATTER!", - Category = "Spell", - Cost = 6, - Description = "Surge. Give each ally +1/+1 for each point of Durability it is missing and Overpower this round.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "BREAK AND SHATTER!.png", - }, - new() - { - Name = "Bright-Eyed Supplicant", - Category = "Agent", - Cost = 3, - Attack = 2, - Health = 4, - Description = "Confront.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Overseer of Trials", - ], - ImmortalizeWhen = "I've survived damage twice.", - ImageFile = "Bright-Eyed Supplicant.png", - }, - new() - { - Name = "Brilliant Martyr", - Category = "Agent", - Cost = 1, - Attack = 2, - Health = 1, - Description = "Last Gasp: Shift to Star Siphon.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Quaid, the Willing", - ], - ImmortalizeWhen = "I see your Energy Reserve Overflow.", - ImageFile = "Brilliant Martyr.png", - }, - new() - { - Name = "Bronk the Calm", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 4, - Description = "Enter: Summon a Wolf and Shift to Abundant Growth.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Panicked Refugee", - ImageFile = "Bronk the Calm.png", - }, - new() - { - Name = "Bronk the Guide", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 3, - Description = "Enter: Shift to Erudite Beacon. Activate: Shift to Erudite Beacon.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Enlightened Refugee", - ImageFile = "Bronk the Guide.png", - }, - new() - { - Name = "Brutal Reveler", - Category = "Agent", - Cost = 7, - Attack = 6, - Health = 5, - Description = "Overpower. The first time each round anything takes damage, create a Transient Bloodbolt in hand.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Tyar, Benevolent Ruler", - ], - ImmortalizeWhen = "Breakdown 10.", - ImageFile = "Brutal Reveler.png", - }, - new() - { - Name = "Built to Burn", - Category = "Spell", - Cost = 5, - Description = "Summon a Temporary exact copy of an ally.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Built to Burn.png", - }, - new() - { - Name = "Bullseye Bounty Hunter", - Category = "Agent", - Cost = 4, - Attack = 4, - Health = 3, - Description = "Blitz. Cleave. Play: Grant two enemies Exposed.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Sareh, Rebel Strategist", - ], - ImmortalizeWhen = "I've destroyed two enemies.", - ImageFile = "Bullseye Bounty Hunter.png", - }, - new() - { - Name = "Burrowing Beetles", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Evasive.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - "The Cycle Embodied", - ], - ImmortalizeWhen = "I've seen allies Flourish 4+ times.", - ImageFile = "Burrowing Beetles.png", - }, - new() - { - Name = "Bury the Evidence", - Category = "Spell", - Cost = 3, - Description = "An enemy Decays twice, or an ally Decays twice to Draw 2.", - Faction = "Silence", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Bury the Evidence.png", - }, - new() - { - Name = "By the Numbers", - Category = "Spell", - Cost = 2, - Description = "Reveal the top card of both decks. Create a copy of the card with the higher cost in hand, then shuffle both cards into their respective decks. In a tie, create a copy of both card...", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "By the Numbers.png", - }, - new() - { - Name = "Canine Adjutant", - Category = "Agent", - Cost = 2, - Attack = 2, - Health = 1, - Description = "Evasive. Core Strike: Erase the enemy Graveyard.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Specialist Boof", - ], - ImmortalizeWhen = "I've Struck the enemy Core.", - ImageFile = "Canine Adjutant.png", - }, - new() - { - Name = "Cascading Serenity", - Category = "Spell", - Cost = 3, - Description = "Destroy an Agent with cost 2 or less. Create a Return to Stillness in hand.", - Faction = "Silence", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Cascading Serenity.png", - }, - new() - { - Name = "Chain", - Category = "Rule", - Description = "Effects are stacked until they are able to be resolved. This enables Immediate and Fast reactions to be added onto the stack for reactive gameplay.", - Archetypes = [ - ], - }, - new() - { - Name = "Channel Vigor", - Category = "Spell", - Cost = 2, - Description = "Deal 1 to an ally to give another ally +3/+1 this round.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Channel Vigor.png", - }, - new() - { - Name = "Chaos Conductor Boltz", - Category = "Agent", - Cost = 5, - Attack = 6, - Health = 4, - Description = "Blitz. When you play an Action, gain 1 Reserve Energy. Round Start: Create a Transient Sunshock in hand for each Reserve Energy you have.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Jury of the Second Law", - ImageFile = "Chaos Conductor Boltz.png", - }, - new() - { - Name = "Chaos Control", - Category = "Spell", - Cost = 3, - Description = "Give an ally +0/+3 to give an enemy -3/-0 this round.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Chaos Control.png", - }, - new() - { - Name = "Chronal Quarantine", - Category = "Spell", - Cost = 7, - Description = "Phase enemies. Phase allies. If The One True Timeline is active, allies Phase in.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Chronal Quarantine.png", - }, - new() - { - Name = "Chronal Scan", - Category = "Spell", - Cost = 3, - Description = "Discard 1 to play. Create a Transient copy in hand of an ally now and at next Round Start.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Chronal Scan.png", - }, - new() - { - Name = "Chronicle of the One", - Category = "Spell", - Cost = 1, - Description = "Create a Transient Out of Line, The Firm Hand, or Prayer of Rescue in hand.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Chronicle of the One.png", - }, - new() - { - Name = "Chronosynthesis", - Category = "Spell", - Cost = 8, - Description = "Sprout 1 for every time you have Sprout|Sprouted this game.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Chronosynthesis.png", - }, - new() - { - Name = "Circle of Strife", - Category = "Spell", - Cost = 2, - Description = "Deal 1 to an Agent. Create a Transient Bloodlust in hand.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Circle of Strife.png", - }, - new() - { - Name = "Clarion, Deepest Breath", - Category = "Agent", - Cost = 6, - Attack = 6, - Health = 6, - Description = "When you play an Action, (C) Shift to Volcanic Rivers. Your Actions and Timelines you Shift to have Siphon.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Magmatic Tether", - ImageFile = "Clarion, Deepest Breath.png", - }, - new() - { - Name = "Conscientious Overwrite", - Category = "Spell", - Cost = 2, - Description = "Deal 2 to an Agent. Create a Scouter Round in hand.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Conscientious Overwrite.png", - }, - new() - { - Name = "Consequence Admin Cain", - Category = "Agent", - Cost = 4, - Attack = 2, - Health = 1, - Description = "Play: [icon]Phase an Agent. Agents cannot Phase in while I am in play.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Karmic Debtor", - ImageFile = "Consequence Admin Cain.png", - }, - new() - { - Name = "Containment Breach", - Category = "Agent", - Cost = 5, - Attack = 2, - Health = 6, - Description = "Round Start: Deal 1 to each Agent and Core for each Reserve Energy you have.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Penitent Star", - ], - ImmortalizeWhen = "I've seen 3+ Agents destroyed.", - ImageFile = "Containment Breach.png", - }, - new() - { - Name = "Convergent Pack", - Category = "Spell", - Cost = 4, - Description = "Shift to Abundant Growth. For every two Timelines in the Timeline Stack, summon an attacking Wolf Confronting the weakest unconfronted enemy.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Convergent Pack.png", - }, - new() - { - Name = "Core Set", - Category = "Set", - Archetypes = [ - ], - }, - new() - { - Name = "Core", - Category = "Rule", - Archetypes = [ - ], - }, - new() - { - Name = "Cores", - Category = "Redirect", - Archetypes = [ - ], - }, - new() - { - Name = "Curb the Anomalies", - Category = "Spell", - Cost = 6, - Description = "I cost 1 less if you see The One True Timeline. Mute all Agents this round. Shift to The One True Timeline.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Curb the Anomalies.png", - }, - new() - { - Name = "Curious Acolyte", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 3, - Description = "When I am Phased or Rewound, Draw 1.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - "Zel, the First Diver", - ], - ImmortalizeWhen = "I am Phased or Rewound.", - ImageFile = "Curious Acolyte.png", - }, - new() - { - Name = "Da'Kad, Heretic Crusher", - Category = "Agent", - Cost = 5, - Attack = 4, - Health = 9, - Description = "Confront. Siphon. Enter: Deal 4 to me. When an ally or your Core heals, Deal 1 to the enemy Core.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Heal", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Bareknuckle Inquisitor", - ImageFile = "Da'Kad, Heretic Crusher.png", - }, - new() - { - Name = "Daville, the Star Song", - Category = "Agent", - Cost = 5, - Attack = 5, - Health = 5, - Description = "Activate: Refresh an ally. That ally cannot Refresh again this round. When an ally Deplete|Depletes, if I see Voiceless Sky, give it +3/+3 this round.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Death Jockey", - ImageFile = "Daville, the Star Song.png", - }, - new() - { - Name = "Deadly Fauna", - Category = "Timeline", - Description = "All Agents have Overpower.", - Faction = "Lifeblood", - Archetypes = [ - ], - }, - new() { Name = "Death Jockey", Category = "Agent", @@ -1056,79 +908,6 @@ public static class CardDatabase ImageFile = "Death Jockey.png", }, new() - { - Name = "Debris Collector", - Category = "Agent", - Cost = 4, - Attack = 1, - Health = 1, - Description = "I have +1/+1 for every Energy Crystal you have.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Living Comet", - ], - ImmortalizeWhen = "I have 10+ Strength.", - ImageFile = "Debris Collector.png", - }, - new() - { - Name = "Dedicated Missionary", - Category = "Agent", - Cost = 6, - Attack = 3, - Health = 2, - Description = "Evasive. I cost 1 less for each copy of The One True Timeline in the Timeline Stack. Enter: Create a The Firm Hand in hand.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Slow Convert", - ImageFile = "Dedicated Missionary.png", - }, - new() - { - Name = "Denizen of Flames", - Category = "Agent", - Cost = 1, - Attack = 2, - Health = 1, - Description = "Enter: Shift to Volcanic Rivers.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Magnus Lavaborn", - ], - ImmortalizeWhen = "I see you Shift to Volcanic Rivers while Volcanic Rivers is the current Timeline.", - ImageFile = "Denizen of Flames.png", - }, - new() - { - Name = "Desperate Primordial", - Category = "Agent", - Cost = 2, - Attack = 4, - Health = 2, - Description = "Overpower. Temporary.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Vera, Original Proof", - ], - ImmortalizeWhen = "I've seen the enemy Core take damage twice.", - ImageFile = "Desperate Primordial.png", - }, - new() { Name = "Destiny Ripper", Category = "Agent", @@ -1147,70 +926,6 @@ public static class CardDatabase ImageFile = "Destiny Ripper.png", }, new() - { - Name = "Devoted Bloodletter", - Category = "Agent", - Cost = 5, - Attack = 4, - Health = 5, - Description = "The first time each round I deal or take damage, Draw 1 and Shift to Torment.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - "Shift", - "Draw", - ], - ImmortalizeTo = [ - "Opener of the Way", - ], - ImmortalizeWhen = "I've Drawn 3+ cards.", - ImageFile = "Devoted Bloodletter.png", - }, - new() - { - Name = "Devourer Spawn", - Category = "Agent", - Cost = 10, - Attack = 10, - Health = 10, - Description = "For each Timeline in the Timeline Stack, I gain a random positive keyword.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Time Devourer Soval", - ], - ImmortalizeWhen = "I've gained 7+ keywords.", - ImageFile = "Devourer Spawn.png", - }, - new() - { - Name = "Dhali, Bearer of Memories", - Category = "Agent", - Cost = 6, - Attack = 4, - Health = 5, - Description = "Round End: Create in hand a random Action that started in your deck. When you play an Action you've already played this game, copy it.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Overburdened Scribe", - ImageFile = "Dhali, Bearer of Memories.png", - }, - new() - { - Name = "Discarded", - Category = "Rule", - Description = "Remove this card from your hand.", - Archetypes = [ - ], - }, - new() { Name = "Disciplined Student", Category = "Agent", @@ -1231,84 +946,263 @@ public static class CardDatabase }, new() { - Name = "Divergence Assasin", + Name = "Forest Recluse", Category = "Agent", - Cost = 6, - Attack = 6, - Health = 3, - Description = "Blitz. I cost 1 less for each time you've Phased or Rewound an Agent this game. Strike: Rewind me.]]", - Faction = "Phasetide", + Cost = 3, + Attack = 3, + Health = 2, + Description = "Play: (C) Deplete an enemy.", + Faction = "Silence", Set = "Core Set", Archetypes = [ - "Rewound", ], ImmortalizeTo = [ - "Masa, Time-Lost", + "Witch of the Woods", ], - ImmortalizeWhen = "You've Phased or Rewound Agents 6+ times this game.", + ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", + ImageFile = "Forest Recluse.png", }, new() { - Name = "Doctor Mirthram Remora", + Name = "Fuzzy Archivist", Category = "Agent", Cost = 4, - Attack = 3, - Health = 4, - Description = "Enter and Overflow: Heal allies and your Core 1. Round End: Deal damage to enemies and the enemy Core equal to each time you've healed your Core this round.", - Faction = "Sungrace", + Attack = 1, + Health = 3, + Description = "Evasive. Activate: Grant an Action in hand Transient, then create an exact copy of it in hand.", + Faction = "Silence", Set = "Core Set", Archetypes = [ - "Heal", ], ImmortalizeTo = [ + "Greyl, the Problem", ], - ImmortalizeFrom = "Starfueled Medics", - ImageFile = "Doctor Mirthram Remora.png", + ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", + ImageFile = "Fuzzy Archivist.png", }, new() { - Name = "Draw", - Category = "Keyword", - Description = "Place the card from the top of your deck into your hand.", + Name = "Librarian's Assistant", + Category = "Agent", + Cost = 2, + Attack = 2, + Health = 1, + Description = "Enter: Draw a random 1, 2, or 3 cost Action from your deck.", + Faction = "Silence", + Set = "Core Set", Archetypes = [ + "Draw", ], + ImmortalizeTo = [ + "Boof, the Listener", + ], + ImmortalizeWhen = "I've seen you play 3+ Actions.", + ImageFile = "Librarian's Assistant.png", }, new() { - Name = "Dyson, the Aspirant", + Name = "Nameless Spirit", Category = "Agent", Cost = 2, Attack = 3, + Health = 2, + Description = "Temporary. Siphon.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Shift", + "Heal", + ], + ImmortalizeTo = [ + "Khaela, the Vanished", + ], + ImmortalizeWhen = "When I would be destroyed while I see Voiceless Sky, instead, Heal me to full and I Immortalize.", + ImageFile = "Nameless Spirit.png", + }, + new() + { + Name = "Overburdened Scribe", + Category = "Agent", + Cost = 6, + Attack = 3, + Health = 4, + Description = "Round End: Create in hand a random Action that started in your deck.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Dhali, Bearer of Memories", + ], + ImmortalizeWhen = "You've cast the same Action 3+ times this game.", + ImageFile = "Overburdened Scribe.png", + }, + new() + { + Name = "Redactionist", + Category = "Agent", + Cost = 4, + Attack = 4, + Health = 1, + Description = "Play: (C) Revive an Agent. Grant it Temporary and \\\"When I would be destroyed, instead Erase me.\\\".", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Talia, Purger of Memory", + ], + ImmortalizeWhen = "I've seen 3+ Agents destroyed.", + ImageFile = "Redactionist.png", + }, + new() + { + Name = "Rotting Rocker", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 1, + Description = "Activate: (C) Deal 2 to a random enemy.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Ylka, the Headliner", + ], + ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", + ImageFile = "Rotting Rocker.png", + }, + new() + { + Name = "Sensory Deprivation Pod", + Category = "Agent", + Cost = 5, + Attack = 2, Health = 3, - Description = "Confront. Enter: Shift to Star Siphon.", - Faction = "Sungrace", + Description = "When I Phase in, deal damage equal to my Strength to the weakest enemy. Activate: (C) I Flourish, then Phase.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Flourish", + "Rewound", + ], + ImmortalizeTo = [ + "Somnus, the Dreaming", + ], + ImmortalizeWhen = "I've seen 3+ Agents destroyed.", + ImageFile = "Sensory Deprivation Pod.png", + }, + new() + { + Name = "Solemn Attendant", + Category = "Agent", + Cost = 6, + Attack = 3, + Health = 3, + Description = "Play: Revive an Immortalized Ally.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Indara, the Candle", + ], + ImmortalizeWhen = "I've seen 3+ Agents destroyed.", + ImageFile = "Solemn Attendant.png", + }, + new() + { + Name = "Somber Astronomer", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Enter: Create a Return to Stillness in hand.", + Faction = "Silence", Set = "Core Set", Archetypes = [ "Shift", ], ImmortalizeTo = [ + "A'kon, Starry Diviner", ], - ImmortalizeFrom = "Kinetic Absorber", - ImageFile = "Dyson, the Aspirant.png", + ImmortalizeWhen = "I've seen you Shift 2+ times.", + ImageFile = "Somber Astronomer.png", }, new() { - Name = "E-Law, Boot Shepherd", + Name = "Telepathic Conduit", Category = "Agent", - Cost = 1, - Attack = 3, + Cost = 2, + Attack = 1, Health = 2, - Description = "Play: Discard 1 to Draw 1. Round Start: Draw 1.", + Description = "Activate: I Decay, grant me \\\"If you or an ally would deal non-combat damage, increase it by 1.\\\".", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Decay", + ], + ImmortalizeTo = [ + "The Strand", + ], + ImmortalizeWhen = "You've dealt 15+ non-combat damage this game.", + ImageFile = "Telepathic Conduit.png", + }, + new() + { + Name = "Telepathic Scavenger", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 3, + Description = "Each time an Agent Deplete|Depletes, I Flourish.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + "The Uncontained", + ], + ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", + ImageFile = "Telepathic Scavenger.png", + }, + new() + { + Name = "The Forgotten Tale", + Category = "Agent", + Cost = 6, + Attack = 3, + Health = 7, + Description = "Activate: (C) Destroy another ally with less Durability than me, then Revive it.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Shae'Fan, Remembered", + ], + ImmortalizeWhen = "I've seen 3+ Agents destroyed.", + ImageFile = "The Forgotten Tale.png", + }, + new() + { + Name = "Awakened Security System", + Category = "Agent", + Cost = 2, + Attack = 1, + Health = 3, + Description = "Activate: Reduce an Agent's Strength by my Strength this round.", Faction = "Singularity", Set = "Core Set", Archetypes = [ - "Draw", - "Discarded", ], ImmortalizeTo = [ + "Wom, Sweet Wom", ], - ImmortalizeFrom = "Efficient Scrapbot", - ImageFile = "E-Law, Boot Shepherd.png", + ImmortalizeWhen = "I see 3+ Agents with 0 Strength in play.", + ImageFile = "Awakened Security System.png", }, new() { @@ -1331,25 +1225,6 @@ public static class CardDatabase ImageFile = "Efficient Scrapbot.png", }, new() - { - Name = "Egg Tender", - Category = "Agent", - Cost = 1, - Attack = 0, - Health = 1, - Description = "Activate: The next ally that enters play this round Flourish|Flourishes.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - "Arra, Saurian Broodmother", - ], - ImmortalizeWhen = "I've seen allies Flourish 4+ times.", - ImageFile = "Egg Tender.png", - }, - new() { Name = "Enhanced Retriever", Category = "Agent", @@ -1389,23 +1264,6 @@ public static class CardDatabase ImageFile = "Enlightened Refugee.png", }, new() - { - Name = "Enlightened Survivor", - Category = "Agent", - Cost = 3, - Attack = 4, - Health = 5, - Description = "Rejuvenate.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Stalwart Champion", - ImageFile = "Enlightened Survivor.png", - }, - new() { Name = "Enthusiastic Bot-Poke", Category = "Agent", @@ -1424,149 +1282,6 @@ public static class CardDatabase ImageFile = "Enthusiastic Bot-Poke.png", }, new() - { - Name = "Entropy's End", - Category = "Spell", - Cost = 7, - Description = "Revive an Agent.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Entropy's End.png", - }, - new() - { - Name = "Erudite Beacon", - Category = "Timeline", - Description = "When you Shift here, draw 1. Round Start: Players draw 1.", - Faction = "Singularity", - Archetypes = [ - ], - }, - new() - { - Name = "Eruption Incarnate", - Category = "Agent", - Cost = 2, - Attack = 5, - Health = 5, - Description = "Overpower.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Hidden Locus", - ImageFile = "Eruption Incarnate.png", - }, - new() - { - Name = "Evolution Incarnate", - Category = "Agent", - Cost = 5, - Attack = 6, - Health = 6, - Description = "Confront. Enter or Round End: Shift to Deadly Fauna.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Harbinger of Power", - ImageFile = "Evolution Incarnate.png", - }, - new() - { - Name = "Fast", - Category = "Keyword", - Description = "This spell can be reacted to.", - Archetypes = [ - ], - }, - new() - { - Name = "Fervent Follower", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Round End: I Flourish. When I see a Shift to a Timeline other than The One True Timeline, deal 1 to me.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Flourish", - "Shift", - ], - ImmortalizeTo = [ - "Pontifex Dhabu", - ], - ImmortalizeWhen = "I have 6+ Strength.", - ImageFile = "Fervent Follower.png", - }, - new() - { - Name = "Fervent Mycologist", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Evasive.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Sprout", - ], - ImmortalizeTo = [ - "Jenny, Sower of Spores", - ], - ImmortalizeWhen = "I've Struck the enemy Core.", - ImageFile = "Fervent Mycologist.png", - }, - new() - { - Name = "Flourish", - Category = "Keyword", - Description = "Grant this Agent +1/+1.", - Archetypes = [ - ], - }, - new() - { - Name = "Focused Adaptation", - Category = "Spell", - Cost = 4, - Description = "Give an ally \\\"The next time I would be destroyed, instead heal me to full and heal your Core the same amount\\\" this round.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Focused Adaptation.png", - }, - new() - { - Name = "Forest Recluse", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 2, - Description = "Play: (C) Deplete an enemy.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Witch of the Woods", - ], - ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", - ImageFile = "Forest Recluse.png", - }, - new() { Name = "Fractal Phantasm", Category = "Agent", @@ -1587,16 +1302,303 @@ public static class CardDatabase }, new() { - Name = "Frontline Fellowship", - Category = "Spell", + Name = "Nascent Clone", + Category = "Agent", Cost = 4, - Description = "Disarm the strongest ally to Disarm the two strongest enemies.", + Attack = 1, + Health = 3, + Description = "Play: (C) Transform me into an exact copy of a non-Immortalized Agent, but I retain the following text:.", Faction = "Singularity", Set = "Core Set", - Speed = "Immediate", Archetypes = [ ], - ImageFile = "Frontline Fellowship.png", + ImmortalizeTo = [ + "Herald of the One", + ], + ImmortalizeWhen = "Round End: I see Paradox.", + ImageFile = "Nascent Clone.png", + }, + new() + { + Name = "Origination Engine", + Category = "Agent", + Cost = 8, + Attack = 6, + Health = 6, + Description = "Enter: Reset all Agents to their base text and stats, empty the Timeline Stack, Erase all Graveyards.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Overmind's Guilt", + ], + ImmortalizeWhen = "Your hand is empty.", + ImageFile = "Origination Engine.png", + }, + new() + { + Name = "Recycler", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 4, + Description = "Play: Discard 1 to heal your Core equal to that card's cost (Max 5).", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Heal", + "Discarded", + ], + ImmortalizeTo = [ + "Terraformer", + ], + ImmortalizeWhen = "You've Discarded 3+ times this game.", + ImageFile = "Recycler.png", + }, + new() + { + Name = "Rogue Amalgam", + Category = "Agent", + Cost = 7, + Attack = 3, + Health = 5, + Description = "Play: Discard up to 3. When you Discard: Draw 1 and reduce its cost by 1.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Draw", + "Discarded", + ], + ImmortalizeTo = [ + "Mr. E", + ], + ImmortalizeWhen = "I've seen you Draw 6+ cards.", + ImageFile = "Rogue Amalgam.png", + }, + new() + { + Name = "Roiling Amalgam", + Category = "Agent", + Cost = 5, + Attack = 3, + Health = 5, + Description = "Play: Discard 1. When you Discard, grant me a random positive keyword.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Discarded", + ], + ImmortalizeTo = [ + "Ziv, the Adaptable", + ], + ImmortalizeWhen = "You've Discarded 3+ times this game.", + ImageFile = "Roiling Amalgam.png", + }, + new() + { + Name = "Scattered Helpers", + Category = "Agent", + Cost = 2, + Attack = 0, + Health = 4, + Description = "Allies have \\\"Last Gasp: Allies with the same name as me Flourish.\\\".", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + "Nanobot Hive", + ], + ImmortalizeWhen = "I see 3+ allies with the same name as other allies.", + ImageFile = "Scattered Helpers.png", + }, + new() + { + Name = "Scuttling Spares", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 1, + Description = "When I am Discarded: Create a copy of me in hand.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Discarded", + ], + ImmortalizeTo = [ + "Zorp, Unrecyclable", + ], + ImmortalizeWhen = "I see 2+ Scuttling Spares in your Graveyard. I can Immortalize out of play.", + ImageFile = "Scuttling Spares.png", + }, + new() + { + Name = "Traffic Conductor", + Category = "Agent", + Cost = 2, + Attack = 2, + Health = 2, + Description = "Enter: Disarm the Strongest enemy.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Raiz, Pacifist's Conclusion", + ], + ImmortalizeWhen = "I see 3+ Agents with 0 Strength in play.", + ImageFile = "Traffic Conductor.png", + }, + new() + { + Name = "Blazing Shifter", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 2, + Description = "Enter: Shift to Volcanic Rivers. I have +1/+1 for each Timeline in the Timeline Stack.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "The Unstoppable Flow", + ], + ImmortalizeWhen = "I have 7+ Strength.", + ImageFile = "Blazing Shifter.png", + }, + new() + { + Name = "Bloodline Tracker", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Activate: Sacrifice 1: (C) Deal 1 to the enemy Core.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Master of Ceremonies", + ], + ImmortalizeWhen = "I've dealt 6+ damage.", + ImageFile = "Bloodline Tracker.png", + }, + new() + { + Name = "Bright-Eyed Supplicant", + Category = "Agent", + Cost = 3, + Attack = 2, + Health = 4, + Description = "Confront.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Overseer of Trials", + ], + ImmortalizeWhen = "I've survived damage twice.", + ImageFile = "Bright-Eyed Supplicant.png", + }, + new() + { + Name = "Brutal Reveler", + Category = "Agent", + Cost = 7, + Attack = 6, + Health = 5, + Description = "Overpower. The first time each round anything takes damage, create a Transient Bloodbolt in hand.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Tyar, Benevolent Ruler", + ], + ImmortalizeWhen = "Breakdown 10.", + ImageFile = "Brutal Reveler.png", + }, + new() + { + Name = "Bullseye Bounty Hunter", + Category = "Agent", + Cost = 4, + Attack = 4, + Health = 3, + Description = "Blitz. Cleave. Play: Grant two enemies Exposed.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Sareh, Rebel Strategist", + ], + ImmortalizeWhen = "I've destroyed two enemies.", + ImageFile = "Bullseye Bounty Hunter.png", + }, + new() + { + Name = "Denizen of Flames", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 1, + Description = "Enter: Shift to Volcanic Rivers.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Magnus Lavaborn", + ], + ImmortalizeWhen = "I see you Shift to Volcanic Rivers while Volcanic Rivers is the current Timeline.", + ImageFile = "Denizen of Flames.png", + }, + new() + { + Name = "Desperate Primordial", + Category = "Agent", + Cost = 2, + Attack = 4, + Health = 2, + Description = "Overpower. Temporary.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Vera, Original Proof", + ], + ImmortalizeWhen = "I've seen the enemy Core take damage twice.", + ImageFile = "Desperate Primordial.png", + }, + new() + { + Name = "Devoted Bloodletter", + Category = "Agent", + Cost = 5, + Attack = 4, + Health = 5, + Description = "The first time each round I deal or take damage, Draw 1 and Shift to Torment.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Shift", + "Draw", + ], + ImmortalizeTo = [ + "Opener of the Way", + ], + ImmortalizeWhen = "I've Drawn 3+ cards.", + ImageFile = "Devoted Bloodletter.png", }, new() { @@ -1617,73 +1619,6 @@ public static class CardDatabase ImageFile = "Frontline Juggernaut.png", }, new() - { - Name = "Fueled by Pain", - Category = "Spell", - Cost = 2, - Description = "A damaged ally Strikes an Agent. Create a Transient Circle of Strife in hand.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Fueled by Pain.png", - }, - new() - { - Name = "Fuzzy Archivist", - Category = "Agent", - Cost = 4, - Attack = 1, - Health = 3, - Description = "Evasive. Activate: Grant an Action in hand Transient, then create an exact copy of it in hand.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Greyl, the Problem", - ], - ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", - ImageFile = "Fuzzy Archivist.png", - }, - new() - { - Name = "Gardener Apprentice", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Enter: Sprout 1.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Sprout", - ], - ImmortalizeTo = [ - "Horticulturalist Oswald", - ], - ImmortalizeWhen = "I've seen you Sprout 4+ times.", - ImageFile = "Gardener Apprentice.png", - }, - new() - { - Name = "Gentle Frank", - Category = "Agent", - Cost = 8, - Attack = 9, - Health = 15, - Description = "Delay. Confront. If your opponent would Confront an Agent, they must Confront me if able. Allies and your Core take 1 less damage from all sources.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Lightsteel Colossus", - ImageFile = "Gentle Frank.png", - }, - new() { Name = "Gilded Behemoth", Category = "Agent", @@ -1702,44 +1637,6 @@ public static class CardDatabase ImageFile = "Gilded Behemoth.png", }, new() - { - Name = "Glade Grazers", - Category = "Agent", - Cost = 2, - Attack = 0, - Health = 1, - Description = "When another ally enters play, I Flourish.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - "Battleharts", - ], - ImmortalizeWhen = "I have 6+ Strength.", - ImageFile = "Glade Grazers.png", - }, - new() - { - Name = "Glasswinged Monarch", - Category = "Agent", - Cost = 6, - Attack = 4, - Health = 4, - Description = "Evasive. Enter or Core Strike: Shift to Abundant Growth.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Omeganeura", - ], - ImmortalizeWhen = "I've seen you Shift twice.", - ImageFile = "Glasswinged Monarch.png", - }, - new() { Name = "Glittering Gladiator", Category = "Agent", @@ -1759,97 +1656,221 @@ public static class CardDatabase }, new() { - Name = "Gnosis", - Category = "Spell", - Cost = 2, - Description = "Draw 2. You may return any of those cards to the bottom of your deck. Sacrifice 2 for each card kept.", - Faction = "Silence", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Gnosis.png", - }, - new() - { - Name = "Go for the Heart", - Category = "Spell", + Name = "Hungry Engine", + Category = "Agent", Cost = 5, - Description = "Deal 3 to the enemy Core. Breakdown 10: Instead, deal 4. Breakdown 1: Instead, deal 5.", + Attack = 5, + Health = 5, + Description = "Enter: Create a Circle of Strife in hand.", Faction = "Splintergleam", Set = "Core Set", - Speed = "Slow", Archetypes = [ ], - ImageFile = "Go for the Heart.png", + ImmortalizeTo = [ + "Armageddonaut", + ], + ImmortalizeWhen = "I've survived damage.", + ImageFile = "Hungry Engine.png", }, new() { - Name = "Grand Admiral Khaela", + Name = "Painforger", Category = "Agent", - Cost = 7, - Attack = 6, - Health = 7, - Description = "Blitz. Play or Attack: [icon] Erase all enemies with a cost of 2 or less in play. When I'm attacking, allies have Cleave.", + Cost = 2, + Attack = 1, + Health = 3, + Description = "Play: (C) Deal 1 to me and another Agent. Sacrifice 2: Instead, deal 2.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Khaela the Hungry", + ], + ImmortalizeWhen = "Breakdown 10.", + ImageFile = "Painforger.png", + }, + new() + { + Name = "Persistent Squire", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 2, + Description = "Confront. Agents I Strike Bleed 1.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Brant the Bloody", + ], + ImmortalizeWhen = "I see an Agent destroyed by Bleed.", + ImageFile = "Persistent Squire.png", + }, + new() + { + Name = "Pit Dog", + Category = "Agent", + Cost = 2, + Attack = 2, + Health = 4, + Description = "Overpower.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Boof, the Champion", + ], + ImmortalizeWhen = "I've damaged the enemy Core.", + ImageFile = "Pit Dog.png", + }, + new() + { + Name = "Red Reaper", + Category = "Agent", + Cost = 5, + Attack = 3, + Health = 5, + Description = "Rejuvenate. Enter: All Agents Bleed 1.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Odol, the Red Death", + ], + ImmortalizeWhen = "I see an Agent destroyed by Bleed.", + ImageFile = "Red Reaper.png", + }, + new() + { + Name = "Stalwart Champion", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 4, + Description = "Rejuvenate.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "Enlightened Survivor", + ], + ImmortalizeWhen = "Breakdown 15.", + ImageFile = "Stalwart Champion.png", + }, + new() + { + Name = "Toothy Pugilist", + Category = "Agent", + Cost = 4, + Attack = 3, + Health = 6, + Description = "Confront. Agents I Strike Bleed 1.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + "The Ripper", + ], + ImmortalizeWhen = "I see an Agent destroyed by Bleed.", + ImageFile = "Toothy Pugilist.png", + }, + new() + { + Name = "Brilliant Martyr", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 1, + Description = "Last Gasp: Shift to Star Siphon.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Quaid, the Willing", + ], + ImmortalizeWhen = "I see your Energy Reserve Overflow.", + ImageFile = "Brilliant Martyr.png", + }, + new() + { + Name = "Canine Adjutant", + Category = "Agent", + Cost = 2, + Attack = 2, + Health = 1, + Description = "Evasive. Core Strike: Erase the enemy Graveyard.", Faction = "Sungrace", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ + "Specialist Boof", ], - ImmortalizeFrom = "Gunnery Captain", - ImageFile = "Grand Admiral Khaela.png", + ImmortalizeWhen = "I've Struck the enemy Core.", + ImageFile = "Canine Adjutant.png", }, new() { - Name = "Grand Judge Dhael", + Name = "Containment Breach", Category = "Agent", - Cost = 7, - Attack = 5, - Health = 5, - Description = "Activate: Return an Action from your Graveyard to your hand. It costs 3 less and has \\\"If I would be put into a Graveyard, instead Erase me.\\", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Stern Arbiter", - ImageFile = "Grand Judge Dhael.png", - }, - new() - { - Name = "Greyl, the Problem", - Category = "Agent", - Cost = 4, + Cost = 5, Attack = 2, - Health = 4, - Description = "Evasive. Activate: Grant all Actions in hand Transient, then create exact copies of them in hand.", - Faction = "Silence", + Health = 6, + Description = "Round Start: Deal 1 to each Agent and Core for each Reserve Energy you have.", + Faction = "Sungrace", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ + "Penitent Star", ], - ImmortalizeFrom = "Fuzzy Archivist", - ImageFile = "Greyl, the Problem.png", + ImmortalizeWhen = "I've seen 3+ Agents destroyed.", + ImageFile = "Containment Breach.png", }, new() { - Name = "Gritmancer Grant", + Name = "Debris Collector", Category = "Agent", Cost = 4, - Attack = 4, - Health = 4, - Description = "Evasive. Fervor.", - Faction = "Lifeblood", + Attack = 1, + Health = 1, + Description = "I have +1/+1 for every Energy Crystal you have.", + Faction = "Sungrace", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ + "Living Comet", ], - ImmortalizeFrom = "Pterosaur Rider", - ImageFile = "Gritmancer Grant.png", + ImmortalizeWhen = "I have 10+ Strength.", + ImageFile = "Debris Collector.png", + }, + new() + { + Name = "Devourer Spawn", + Category = "Agent", + Cost = 10, + Attack = 10, + Health = 10, + Description = "For each Timeline in the Timeline Stack, I gain a random positive keyword.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + "Time Devourer Soval", + ], + ImmortalizeWhen = "I've gained 7+ keywords.", + ImageFile = "Devourer Spawn.png", }, new() { @@ -1870,93 +1891,6 @@ public static class CardDatabase ImageFile = "Gunnery Captain.png", }, new() - { - Name = "Harbinger of Power", - Category = "Agent", - Cost = 5, - Attack = 5, - Health = 5, - Description = "Enter: Shift to Deadly Fauna.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Evolution Incarnate", - ], - ImmortalizeWhen = "I've seen the enemy Core take damage through Overpower.", - ImageFile = "Harbinger of Power.png", - }, - new() - { - Name = "Harker, Metal Reporter", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 5, - Description = "When I see a Shift, create a \\\"By the Numbers\\\" in hand, or if you have one in hand, reduce its cost by 1.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Heretic Whistleblower", - ImageFile = "Harker, Metal Reporter.png", - }, - new() - { - Name = "Headbanging", - Category = "Spell", - Cost = 1, - Description = "Discard 1 to play. Deal 2 to an Agent or Core.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Headbanging.png", - }, - new() - { - Name = "Herald of the One", - Category = "Agent", - Cost = 4, - Attack = 1, - Health = 4, - Description = "Play: (C) Transform me into an exact copy of an Agent.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Nascent Clone", - ImageFile = "Herald of the One.png", - }, - new() - { - Name = "Heretic Whistleblower", - Category = "Agent", - Cost = 3, - Attack = 2, - Health = 4, - Description = "When I see a Shift, reveal the top card of your deck. If it is an Action, Draw 1.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - "Draw", - ], - ImmortalizeTo = [ - "Harker, Metal Reporter", - ], - ImmortalizeWhen = "I've seen 3+ Shifts.", - ImageFile = "Heretic Whistleblower.png", - }, - new() { Name = "Hidden Locus", Category = "Agent", @@ -1975,180 +1909,6 @@ public static class CardDatabase ImageFile = "Hidden Locus.png", }, new() - { - Name = "Holder of the Instruments", - Category = "Agent", - Cost = 1, - Attack = 2, - Health = 1, - Description = "Enter: Shift to The One True Timeline.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - "Symphony of the Path", - ], - ImmortalizeWhen = "I am Phased or Rewound.", - ImageFile = "Holder of the Instruments.png", - }, - new() - { - Name = "Holy Cleaner", - Category = "Agent", - Cost = 3, - Attack = 2, - Health = 3, - Description = "Play: Activate Rewind an Agent with equal or less Durability than me.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - "Violent Inquisitioner", - ], - ImmortalizeWhen = "You've Rewound 3+ times this game.", - ImageFile = "Holy Cleaner.png", - }, - new() - { - Name = "Horticulturalist Oswald", - Category = "Agent", - Cost = 1, - Attack = 2, - Health = 2, - Description = "Enter: Sprout 1. Activate: Give a Seedling Overpower.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Sprout", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Gardener Apprentice", - ImmortalizeWhen = "", - }, - new() - { - Name = "Hungry Engine", - Category = "Agent", - Cost = 5, - Attack = 5, - Health = 5, - Description = "Enter: Create a Circle of Strife in hand.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Armageddonaut", - ], - ImmortalizeWhen = "I've survived damage.", - ImageFile = "Hungry Engine.png", - }, - new() - { - Name = "Hungry Tyrannosaur", - Category = "Agent", - Cost = 8, - Attack = 8, - Health = 7, - Description = "Confront. Overpower. Enter: Create a Throwdown in hand.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Wreck-o Rex", - ], - ImmortalizeWhen = "I've destroyed an Agent.", - ImageFile = "Hungry Tyrannosaur.png", - }, - new() - { - Name = "Hush Now", - Category = "Spell", - Cost = 6, - Description = "Destroy an Agent.", - Faction = "Silence", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Hush Now.png", - }, - new() - { - Name = "Immediate", - Category = "Keyword", - Description = "This spell cannot be reacted to.", - Archetypes = [ - ], - }, - new() - { - Name = "Indara, the Candle", - Category = "Agent", - Cost = 6, - Attack = 4, - Health = 4, - Description = "Activate: [icon] Revive an Immortalized Ally.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Solemn Attendant", - ImageFile = "Indara, the Candle.png", - }, - new() - { - Name = "Invigorating Balm", - Category = "Spell", - Cost = 1, - Description = "Heal an ally 1. Give it +1/+1 this round.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Invigorating Balm.png", - }, - new() - { - Name = "Ironblood Elixir", - Category = "Spell", - Cost = 3, - Description = "Grant an ally +1/+2 and Fervor.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Ironblood Elixir.png", - }, - new() - { - Name = "Jenny, Sower of Spores", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Evasive. Strike: Sprout 1.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Sprout", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Fervent Mycologist", - ImageFile = "Jenny, Sower of Spores.png", - }, - new() { Name = "Jury of the Second Law", Category = "Agent", @@ -2167,94 +1927,6 @@ public static class CardDatabase ImageFile = "Jury of the Second Law.png", }, new() - { - Name = "Karmic Debtor", - Category = "Agent", - Cost = 4, - Attack = 2, - Health = 1, - Description = "Play: [icon]Phase an Agent. It cannot Phase in while I am in play.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - "Consequence Admin Cain", - ], - ImmortalizeWhen = "I've seen 3+ Agents Phased or Rewound.", - ImageFile = "Karmic Debtor.png", - }, - new() - { - Name = "Khaela the Hungry", - Category = "Agent", - Cost = 2, - Attack = 1, - Health = 5, - Description = "Play or Activate: (C) Deal 1 to me and another Agent. Sacrifice 2: Instead deal 2.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Painforger", - ImageFile = "Khaela the Hungry.png", - }, - new() - { - Name = "Khaela the Savior", - Category = "Agent", - Cost = 2, - Attack = 3, - Health = 4, - Description = "Blitz. Each time I Strike while attacking: Swap me with the Agent to my right, the Rewind it. Set its cost to 0 this round.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Temple Analyst", - ImageFile = "Khaela the Savior.png", - }, - new() - { - Name = "Khaela, the Vanished", - Category = "Agent", - Cost = 2, - Attack = 3, - Health = 2, - Description = "Blitz. Siphon.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Nameless Spirit", - ImageFile = "Khaela, the Vanished.png", - }, - new() - { - Name = "Khaelar", - Category = "Agent", - Cost = 6, - Attack = 8, - Health = 6, - Description = "Enter or when I destroy an Agent: Give the strongest enemy Exposed and set its stats to 1/1 this round.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Zealot of the Hunt", - ImageFile = "Khaelar.png", - }, - new() { Name = "Kinetic Absorber", Category = "Agent", @@ -2274,80 +1946,6 @@ public static class CardDatabase ImageFile = "Kinetic Absorber.png", }, new() - { - Name = "Kintsu-Kai", - Category = "Spell", - Cost = 2, - Description = "Any amount of allies Bleed 1. Grant Bleed to a single enemy that many times.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Kintsu-Kai.png", - }, - new() - { - Name = "Kurian, the Breaker", - Category = "Agent", - Cost = 6, - Attack = 10, - Health = 5, - Description = "Overpower. Allied Breakdown sees both Cores.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Frontline Juggernaut", - ImageFile = "Kurian, the Breaker.png", - }, - new() - { - Name = "Kyln, the Dynasty", - Category = "Agent", - Cost = 8, - Attack = 3, - Health = 3, - Description = "Evasive. Overpower. Enter: Flourish copies of me everywhere, then create a copy of me in hand and reduce the cost of allied created cards everywhere by 1 at Round End (Minimum 1).", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Planet Seeder", - ImageFile = "Kyln, the Dynasty.png", - }, - new() - { - Name = "Librarian's Assistant", - Category = "Agent", - Cost = 2, - Attack = 2, - Health = 1, - Description = "Enter: Draw a random 1, 2, or 3 cost Action from your deck.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Draw", - ], - ImmortalizeTo = [ - "Boof, the Listener", - ], - ImmortalizeWhen = "I've seen you play 3+ Actions.", - ImageFile = "Librarian's Assistant.png", - }, - new() - { - Name = "Lifeblood", - Category = "Faction", - Archetypes = [ - ], - }, - new() { Name = "Lightsteel Colossus", Category = "Agent", @@ -2403,23 +2001,6 @@ public static class CardDatabase ImageFile = "Limit Breaker.png", }, new() - { - Name = "Living Comet", - Category = "Agent", - Cost = 4, - Attack = 1, - Health = 1, - Description = "Overpower. I have +1/+1 for every Energy Crystal you have.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Debris Collector", - ImageFile = "Living Comet.png", - }, - new() { Name = "Lumbering Starseeker", Category = "Agent", @@ -2438,36 +2019,6 @@ public static class CardDatabase ImageFile = "Lumbering Starseeker.png", }, new() - { - Name = "Luminous Vengeance", - Category = "Agent", - Cost = 5, - Attack = 7, - Health = 6, - Description = "Delay. Overpower. Confront.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Lumbering Starseeker", - ImageFile = "Luminous Vengeance.png", - }, - new() - { - Name = "Magmatic Teachings", - Category = "Spell", - Cost = 3, - Description = "An Immortalized ally strikes an enemy. If that enemy is destroyed, Immortalize your weakest non-Immoralized ally.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Magmatic Teachings.png", - }, - new() { Name = "Magmatic Tether", Category = "Agent", @@ -2487,545 +2038,6 @@ public static class CardDatabase ImageFile = "Magmatic Tether.png", }, new() - { - Name = "Magnus Lavaborn", - Category = "Agent", - Cost = 1, - Attack = 3, - Health = 1, - Description = "Enter: Shift to Volcanic Rivers twice. Strike: Deal 1 to the enemy Core.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Denizen of Flames", - ImageFile = "Magnus Lavaborn.png", - }, - new() - { - Name = "Malark, the Silver Wave", - Category = "Agent", - Cost = 3, - Attack = 4, - Health = 1, - Description = "Blitz. Last Gasp: Grant the weakest ally Blitz, +4/+1 and this Last Gasp.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Swashbuckling Diehard", - ImageFile = "Malark, the Silver Wave.png", - }, - new() - { - Name = "Malum, the Fist", - Category = "Agent", - Cost = 2, - Attack = 0, - Health = 1, - Description = "Round Start: I Flourish once for each Reserve Energy you have. Overflow: Grant me a random positive keyword.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Limit Breaker", - ImageFile = "Malum, the Fist.png", - }, - new() - { - Name = "Masa, Time-Lost", - Category = "Agent", - Cost = 6, - Attack = 7, - Health = 4, - Description = "Blitz. I cost 1 less for each time you've Phased or Rewound an Agent this game. When you Phase or Rewind an Agent, first deal 1 to the enemy Core. Strike: Rewind me.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Divergence Assasin", - ImageFile = "Masa, Time-Lost.png", - }, - new() - { - Name = "Master of Ceremonies", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Activate: Sacrifice 2: (C) Deal 2 to the enemy Core.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Bloodline Tracker", - ImageFile = "Master of Ceremonies.png", - }, - new() - { - Name = "Mechanist Daedelus", - Category = "Agent", - Cost = 5, - Attack = 5, - Health = 6, - Description = "Reduce damage you or allies would deal to your Core by 2. When you reduce damage this way, deal 2 to the enemy Core.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Lightsteel Engineer", - ImageFile = "Mechanist Daedelus.png", - }, - new() - { - Name = "Mind Over Matter", - Category = "Spell", - Cost = 3, - Description = "If Voiceless Sky is active, I am Immediate Speed. Deplete an Agent. Refresh an Agent.", - Faction = "Silence", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Mind Over Matter.png", - }, - new() - { - Name = "Mr. E", - Category = "Agent", - Cost = 7, - Attack = 4, - Health = 6, - Description = "Play: Discard up to 3. When you Discard: Draw 1 and reduce its cost by 2.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Draw", - "Discarded", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Rogue Amalgam", - ImageFile = "Mr. E.png", - }, - new() - { - Name = "Muffle", - Category = "Spell", - Cost = 4, - Description = "Mute an Agent this round or Deplete an ally to Mute two Agents this round.", - Faction = "Silence", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Muffle.png", - }, - new() - { - Name = "Mulch", - Category = "Spell", - Cost = 2, - Description = "Destroy an ally to Sprout equal to its Strength.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Mulch.png", - }, - new() - { - Name = "Nameless Spirit", - Category = "Agent", - Cost = 2, - Attack = 3, - Health = 2, - Description = "Temporary. Siphon.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Shift", - "Heal", - ], - ImmortalizeTo = [ - "Khaela, the Vanished", - ], - ImmortalizeWhen = "When I would be destroyed while I see Voiceless Sky, instead, Heal me to full and I Immortalize.", - ImageFile = "Nameless Spirit.png", - }, - new() - { - Name = "Nanobot Hive", - Category = "Agent", - Cost = 2, - Attack = 4, - Health = 4, - Description = "Allies have \\\"Last Gasp: Allies with the same name as me Flourish.\\\" Last Gasp: Allies with the same name as other allies Flourish.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Scattered Helpers", - ImageFile = "Nanobot Hive.png", - }, - new() - { - Name = "Nascent Clone", - Category = "Agent", - Cost = 4, - Attack = 1, - Health = 3, - Description = "Play: (C) Transform me into an exact copy of a non-Immortalized Agent, but I retain the following text:.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Herald of the One", - ], - ImmortalizeWhen = "Round End: I see Paradox.", - ImageFile = "Nascent Clone.png", - }, - new() - { - Name = "Nonlethal Special Forces", - Category = "Agent", - Cost = 4, - Attack = 3, - Health = 3, - Description = "Blitz. Each round, Disarm the first enemy that would destroy an ally in combat.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "The 'Stache", - ], - ImmortalizeWhen = "You've set the Strength of 4+ enemies to 0 this game.", - ImageFile = "Nonlethal Special Forces.png", - }, - new() - { - Name = "Not so Fast", - Category = "Spell", - Cost = 3, - Description = "Revive the strongest ally that was destroyed this round.", - Faction = "Silence", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Not so Fast.png", - }, - new() - { - Name = "Novathermal Mining", - Category = "Spell", - Cost = 5, - Description = "Gain an empty Energy Crystal. Sacrifice 3: Gain 4 Reserve Energy.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Novathermal Mining.png", - }, - new() - { - Name = "Odol, the Red Death", - Category = "Agent", - Cost = 5, - Attack = 3, - Health = 5, - Description = "Rejuvenate. Enter: All Agents Bleed 1. When an ally survives damage, it Flourish|Flourishes and is granted Rejuvenate.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Red Reaper", - ImageFile = "Odol, the Red Death.png", - }, - new() - { - Name = "Omeganeura", - Category = "Agent", - Cost = 6, - Attack = 4, - Health = 4, - Description = "Evasive. Enter or Core Strike: Shift to Abundant Growth. Allies have +1/+1.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Glasswinged Monarch", - ImageFile = "Omeganeura.png", - }, - new() - { - Name = "Opener of the Way", - Category = "Agent", - Cost = 5, - Attack = 5, - Health = 6, - Description = "The first time each round an ally deals or takes damage, Draw 1 and Shift to Torment.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - "Shift", - "Draw", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Devoted Bloodletter", - ImageFile = "Opener of the Way.png", - }, - new() - { - Name = "Origination Engine", - Category = "Agent", - Cost = 8, - Attack = 6, - Health = 6, - Description = "Enter: Reset all Agents to their base text and stats, empty the Timeline Stack, Erase all Graveyards.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Overmind's Guilt", - ], - ImmortalizeWhen = "Your hand is empty.", - ImageFile = "Origination Engine.png", - }, - new() - { - Name = "Out of Line", - Category = "Spell", - Cost = 6, - Description = "Two Agents Phase. If they have the same name, instead destroy them.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Out of Line.png", - }, - new() - { - Name = "Overburdened Scribe", - Category = "Agent", - Cost = 6, - Attack = 3, - Health = 4, - Description = "Round End: Create in hand a random Action that started in your deck.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Dhali, Bearer of Memories", - ], - ImmortalizeWhen = "You've cast the same Action 3+ times this game.", - ImageFile = "Overburdened Scribe.png", - }, - new() - { - Name = "Overclock", - Category = "Spell", - Cost = 4, - Description = "Discard 1 to play. Double an ally's Strength and Durability and grant it Temporary.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Overclock.png", - }, - new() - { - Name = "Overmind's Guilt", - Category = "Agent", - Cost = 8, - Attack = 8, - Health = 8, - Description = "Evasive. Enter or Round Start: Reset all Agents to their base text, empty the Timeline Stack, Erase all Graveyards.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Origination Engine", - ImageFile = "Overmind's Guilt.png", - }, - new() - { - Name = "Overpower", - Category = "Keyword", - Description = "Excess damage beyond the Durability of this Agent's blocker is dealt directly to the enemy core.", - Archetypes = [ - ], - }, - new() - { - Name = "Overseer of Trials", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 5, - Description = "Confront. Other allies have Fervor. Fervor grants an extra +1/+1.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Bright-Eyed Supplicant", - ImageFile = "Overseer of Trials.png", - }, - new() - { - Name = "Painforger", - Category = "Agent", - Cost = 2, - Attack = 1, - Health = 3, - Description = "Play: (C) Deal 1 to me and another Agent. Sacrifice 2: Instead, deal 2.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Khaela the Hungry", - ], - ImmortalizeWhen = "Breakdown 10.", - ImageFile = "Painforger.png", - }, - new() - { - Name = "Panicked Refugee", - Category = "Agent", - Cost = 3, - Attack = 2, - Health = 2, - Description = "Enter: Summon a Wolf.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Bronk the Calm", - ], - ImmortalizeWhen = "Round End: I do not see an allied Wolf in play. When I Immortalize, Shift to Abundant Growth.", - ImageFile = "Panicked Refugee.png", - }, - new() - { - Name = "Paradox Analysis", - Category = "Spell", - Cost = 5, - Description = "Draw 2. Paradox: Instead, Draw 3.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Paradox Analysis.png", - }, - new() - { - Name = "Paradox Cacophony", - Category = "Spell", - Cost = 2, - Description = "Shift to Torment. Paradox: Trigger Bleed.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Paradox Cacophony.png", - }, - new() - { - Name = "Paradox Capacitor", - Category = "Spell", - Cost = 4, - Description = "Gain 1 empty Energy Crystal. Paradox: Instead, gain 2 empty Energy Crystals.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Paradox Capacitor.png", - }, - new() - { - Name = "Paradox Flow", - Category = "Spell", - Cost = 3, - Description = "Shift to The One True Timeline. Fully Heal all allies. Paradox: Give all enemies Exposed this round.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Paradox Flow.png", - }, - new() - { - Name = "Paradox Plague", - Category = "Spell", - Cost = 5, - Description = "An Agent Decays once for every Timeline in the Timeline Stack. Paradox: Instead, enemies Decay once for every Timeline in the Timeline Stack.", - Faction = "Silence", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Paradox Plague.png", - }, - new() - { - Name = "Paradox Stimulator", - Category = "Spell", - Cost = 1, - Description = "Sprout 1. Paradox: Instead, Sprout 3.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Paradox Stimulator.png", - }, - new() { Name = "Peaceful Synthesizer", Category = "Agent", @@ -3044,82 +2056,6 @@ public static class CardDatabase ImageFile = "Peaceful Synthesizer.png", }, new() - { - Name = "Penitent Star", - Category = "Agent", - Cost = 5, - Attack = 4, - Health = 8, - Description = "Evasive.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Containment Breach", - ImageFile = "Penitent Star.png", - }, - new() - { - Name = "Persistent Squire", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 2, - Description = "Confront. Agents I Strike Bleed 1.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Brant the Bloody", - ], - ImmortalizeWhen = "I see an Agent destroyed by Bleed.", - ImageFile = "Persistent Squire.png", - }, - new() - { - Name = "Phase", - Category = "Keyword", - Description = "A Phased Agent is treated as removed from play for the round, though it still occupies its board-space. At the start of the next round this unit Phases in and is in the exact same state as it Phased out. Phasing back in does not trigger Enter effects.", - Archetypes = [ - ], - }, - new() - { - Name = "Phased", - Category = "Keyword", - Description = "Triggered when this Agent has been affected by Phase.", - Archetypes = [ - ], - }, - new() - { - Name = "Phasetide", - Category = "Faction", - Archetypes = [ - ], - }, - new() - { - Name = "Pit Dog", - Category = "Agent", - Cost = 2, - Attack = 2, - Health = 4, - Description = "Overpower.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Boof, the Champion", - ], - ImmortalizeWhen = "I've damaged the enemy Core.", - ImageFile = "Pit Dog.png", - }, - new() { Name = "Planet Seeder", Category = "Agent", @@ -3139,959 +2075,6 @@ public static class CardDatabase ImageFile = "Planet Seeder.png", }, new() - { - Name = "Pocket Dimension", - Category = "Spell", - Cost = 3, - Description = "Discard up to 3 to play. Summon that many Pocket Scouts. When I am discarded create a Scouter Round in hand.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Pocket Dimension.png", - }, - new() - { - Name = "Pocket Scout", - Category = "Token", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Token.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - ], - ImageFile = "Pocket Scout.png", - }, - new() - { - Name = "Pontifex Dhabu", - Category = "Agent", - Cost = 1, - Attack = 2, - Health = 2, - Description = "Round End: I Flourish. When I see a Shift to a Timeline other than The One True Timeline, deal 1 to the enemy Core.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Flourish", - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Fervent Follower", - ImageFile = "Pontifex Dhabu.png", - }, - new() - { - Name = "Prayer of Rescue", - Category = "Spell", - Cost = 1, - Description = "Rewind an ally.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Prayer of Rescue.png", - }, - new() - { - Name = "Pressure Spike", - Category = "Spell", - Cost = 2, - Description = "Deal 1 to an Agent. Increase it by 1 for each ally it has.", - Faction = "Silence", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Pressure Spike.png", - }, - new() - { - Name = "Priestess Minia", - Category = "Agent", - Cost = 2, - Attack = 3, - Health = 7, - Description = "Confront. Enter: Deal 4 to me.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Seeker of Truth", - ImageFile = "Priestess Minia.png", - }, - new() - { - Name = "Pterosaur Rider", - Category = "Agent", - Cost = 4, - Attack = 3, - Health = 3, - Description = "Evasive.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Gritmancer Grant", - ], - ImmortalizeWhen = "I've Struck the enemy Core.", - ImageFile = "Pterosaur Rider.png", - }, - new() - { - Name = "Quaid, the Willing", - Category = "Agent", - Cost = 1, - Attack = 3, - Health = 2, - Description = "Last Gasp: Shift to Star Siphon. Strike: Gain 1 Reserve Energy.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Brilliant Martyr", - ImageFile = "Quaid, the Willing.png", - }, - new() - { - Name = "Quicksilver Khaela", - Category = "Agent", - Cost = 2, - Attack = 2, - Health = 1, - Description = "Temporary. Strike: Create a Transient copy of me in hand. Last Gasp: The next time you Shift, revive me and grant copies of me *everywhere* +1/+0.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Fractal Phantasm", - ImageFile = "Quicksilver Khaela.png", - }, - new() - { - Name = "Quiet Repose", - Category = "Spell", - Cost = 8, - Description = "Destroy all Agents. You may not play Agents for the rest of the round.", - Faction = "Silence", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Quiet Repose.png", - }, - new() - { - Name = "Radiant Channeling", - Category = "Spell", - Cost = 5, - Description = "Deal 0 to an Agent. Increase it by 2 and refill 1 Reserve Energy for each Reserve Energy spent to play this. Shift to Star Siphon.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Radiant Channeling.png", - }, - new() - { - Name = "Raiz, Pacifist's Conclusion", - Category = "Agent", - Cost = 2, - Attack = 3, - Health = 3, - Description = "Enter: Disarm the Strongest enemy. Round End: If you have an unspent Attack Token, Create a We Have Cookies in hand.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Traffic Conductor", - ImageFile = "Raiz, Pacifist's Conclusion.png", - }, - new() - { - Name = "Rapid Iteration", - Category = "Spell", - Cost = 2, - Description = "Discard 1 to play. Deal 4 to an Agent.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Rapid Iteration.png", - }, - new() - { - Name = "Rebuild", - Category = "Spell", - Cost = 1, - Description = "Deal 1 to an Agent or Core. If an Agent survives this damage, it Flourish|Flourishes.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Rebuild.png", - }, - new() - { - Name = "Recycler", - Category = "Agent", - Cost = 4, - Attack = 2, - Health = 4, - Description = "Play: Discard 1 to heal your Core equal to that card's cost (Max 5).", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Heal", - "Discarded", - ], - ImmortalizeTo = [ - "Terraformer", - ], - ImmortalizeWhen = "You've Discarded 3+ times this game.", - ImageFile = "Recycler.png", - }, - new() - { - Name = "Red Reaper", - Category = "Agent", - Cost = 5, - Attack = 3, - Health = 5, - Description = "Rejuvenate. Enter: All Agents Bleed 1.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Odol, the Red Death", - ], - ImmortalizeWhen = "I see an Agent destroyed by Bleed.", - ImageFile = "Red Reaper.png", - }, - new() - { - Name = "Redactionist", - Category = "Agent", - Cost = 4, - Attack = 4, - Health = 1, - Description = "Play: (C) Revive an Agent. Grant it Temporary and \\\"When I would be destroyed, instead Erase me.\\\".", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Talia, Purger of Memory", - ], - ImmortalizeWhen = "I've seen 3+ Agents destroyed.", - ImageFile = "Redactionist.png", - }, - new() - { - Name = "Rescind Authorization", - Category = "Spell", - Cost = 4, - Description = "Rewind an Agent. Sacrifice 4: Instead, Rewind an ally and an enemy.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Rescind Authorization.png", - }, - new() - { - Name = "Return to Stillness", - Category = "Spell", - Cost = 1, - Description = "An Agent Deplete|Depletes. Shift to Voiceless Sky.", - Faction = "Silence", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Return to Stillness.png", - }, - new() - { - Name = "Rewind", - Category = "Keyword", - Description = "Return this Agent to its owner's hand.", - Archetypes = [ - ], - }, - new() - { - Name = "Rewound", - Category = "Keyword", - Description = "Triggered when this Agent has been affected by Rewind.", - Archetypes = [ - ], - }, - new() - { - Name = "Rift Mender Aris", - Category = "Agent", - Cost = 3, - Attack = 6, - Health = 6, - Description = "I have -1/-1 for each Timeline in the Timeline Stack other than The One True Timeline. Last Gasp: Shift to The One True Timeline.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Shattersmith", - ImageFile = "Rift Mender Aris.png", - }, - new() - { - Name = "Rippling Resplendence", - Category = "Spell", - Cost = 5, - Description = "Grant allies Fervor. Deal 1 to all Agents. Breakdown 15: Deal 1 to all Agents.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Rippling Resplendence.png", - }, - new() - { - Name = "Rogue Amalgam", - Category = "Agent", - Cost = 7, - Attack = 3, - Health = 5, - Description = "Play: Discard up to 3. When you Discard: Draw 1 and reduce its cost by 1.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Draw", - "Discarded", - ], - ImmortalizeTo = [ - "Mr. E", - ], - ImmortalizeWhen = "I've seen you Draw 6+ cards.", - ImageFile = "Rogue Amalgam.png", - }, - new() - { - Name = "Roiling Amalgam", - Category = "Agent", - Cost = 5, - Attack = 3, - Health = 5, - Description = "Play: Discard 1. When you Discard, grant me a random positive keyword.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Discarded", - ], - ImmortalizeTo = [ - "Ziv, the Adaptable", - ], - ImmortalizeWhen = "You've Discarded 3+ times this game.", - ImageFile = "Roiling Amalgam.png", - }, - new() - { - Name = "Rotting Rocker", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 1, - Description = "Activate: (C) Deal 2 to a random enemy.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Ylka, the Headliner", - ], - ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", - ImageFile = "Rotting Rocker.png", - }, - new() - { - Name = "Round End", - Category = "Rule", - Description = "The end state of the round. Triggered when both players end there turns without action.", - Archetypes = [ - ], - }, - new() - { - Name = "Rumpus", - Category = "Spell", - Cost = 3, - Description = "Create a 1 cost Transient Throwdown in hand for each ally.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Rumpus.png", - }, - new() - { - Name = "Sali, Top Gunner", - Category = "Agent", - Cost = 2, - Attack = 2, - Health = 3, - Description = "Enter: Create a 1 cost Transient Sunshock in your hand. When you play a Sunshock, create a Transient exact copy in hand that costs 2 more.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Sunbringer Artillerist", - ImageFile = "Sali, Top Gunner.png", - }, - new() - { - Name = "Sanguine Resurgence", - Category = "Spell", - Cost = 5, - Description = "Your Bleed effects gain Siphon this round. Two Agents Bleed 3.", - Faction = "Splintergleam", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Sanguine Resurgence.png", - }, - new() - { - Name = "Sap Sapper", - Category = "Agent", - Cost = 4, - Attack = 2, - Health = 4, - Description = "Enter: Sprout 2, then grant those Seedlings \\\"Last Gasp: Deal 1 to all Agents.\\\".", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Sprout", - ], - ImmortalizeTo = [ - "The Botanist", - ], - ImmortalizeWhen = "I've seen 3+ Agents destroyed.", - ImageFile = "Sap Sapper.png", - }, - new() - { - Name = "Sapling Dryad", - Category = "Agent", - Cost = 2, - Attack = 1, - Health = 2, - Description = "I have +1/+0 for each time you've Sprout|Sprouted this game.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Sprout", - ], - ImmortalizeTo = [ - "The Great Oakmother", - ], - ImmortalizeWhen = "I've seen you Sprout 4+ times.", - ImageFile = "Sapling Dryad.png", - }, - new() - { - Name = "Sareh, Rebel Strategist", - Category = "Agent", - Cost = 4, - Attack = 5, - Health = 4, - Description = "Blitz. Cleave. Play: Grant two enemies Exposed. Round Start: Grant the strongest enemy Exposed.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Bullseye Bounty Hunter", - ImageFile = "Sareh, Rebel Strategist.png", - }, - new() - { - Name = "Scattered Helpers", - Category = "Agent", - Cost = 2, - Attack = 0, - Health = 4, - Description = "Allies have \\\"Last Gasp: Allies with the same name as me Flourish.\\\".", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - "Nanobot Hive", - ], - ImmortalizeWhen = "I see 3+ allies with the same name as other allies.", - ImageFile = "Scattered Helpers.png", - }, - new() - { - Name = "Scent the Prey", - Category = "Spell", - Cost = 3, - Description = "Choose an ally. Give all enemies with less Strength Exposed this round. Shift to either Abundant Growth or Deadly Fauna.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Scent the Prey.png", - }, - new() - { - Name = "Scoot Sparkles", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 3, - Description = "Overpower. When I survive damage, grant me +2/+0.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Glittering Gladiator", - }, - new() - { - Name = "Scouter Round", - Category = "Spell", - Cost = 1, - Description = "Play or Discard: Summon a Pocket Scout.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Scouter Round.png", - }, - new() - { - Name = "Scuttling Spares", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 1, - Description = "When I am Discarded: Create a copy of me in hand.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Discarded", - ], - ImmortalizeTo = [ - "Zorp, Unrecyclable", - ], - ImmortalizeWhen = "I see 2+ Scuttling Spares in your Graveyard. I can Immortalize out of play.", - ImageFile = "Scuttling Spares.png", - }, - new() - { - Name = "Seedling", - Category = "Token", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Token.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - ], - ImageFile = "Seedling.png", - }, - new() - { - Name = "Seeker of Truth", - Category = "Agent", - Cost = 2, - Attack = 2, - Health = 6, - Description = "Enter: Deal 4 to me.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Priestess Minia", - ], - ImmortalizeWhen = "I see The One True Timeline.", - ImageFile = "Seeker of Truth.png", - }, - new() - { - Name = "Sensory Deprivation Pod", - Category = "Agent", - Cost = 5, - Attack = 2, - Health = 3, - Description = "When I Phase in, deal damage equal to my Strength to the weakest enemy. Activate: (C) I Flourish, then Phase.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Flourish", - "Rewound", - ], - ImmortalizeTo = [ - "Somnus, the Dreaming", - ], - ImmortalizeWhen = "I've seen 3+ Agents destroyed.", - ImageFile = "Sensory Deprivation Pod.png", - }, - new() - { - Name = "Set in Stone", - Category = "Spell", - Cost = 4, - Description = "I cost 1 less if you see The One True Timeline. An Agent Phase|Phases. Draw 1.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Set in Stone.png", - }, - new() - { - Name = "Shae'Fan, Remembered", - Category = "Agent", - Cost = 6, - Attack = 4, - Health = 7, - Description = "Activate: (C) Destroy another ally with less Durability than me, then Revive it and summon an exact copy of it.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "The Forgotten Tale", - ImageFile = "Shae'Fan, Remembered.png", - }, - new() - { - Name = "Shattersmith", - Category = "Agent", - Cost = 3, - Attack = 5, - Health = 5, - Description = "I have -1/-1 for each Timeline in the Timeline Stack other than The One True Timeline. Last Gasp: Shift to The One True Timeline.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Rift Mender Aris", - ], - ImmortalizeWhen = "I see The One True Timeline.", - ImageFile = "Shattersmith.png", - }, - new() - { - Name = "Shift", - Category = "Keyword", - Description = "Timeline is changed to the indicated Timeline.", - Archetypes = [ - ], - }, - new() - { - Name = "Silence", - Category = "Faction", - Archetypes = [ - ], - }, - new() - { - Name = "Singularity", - Category = "Faction", - Archetypes = [ - ], - }, - new() - { - Name = "Sleepy Druid", - Category = "Agent", - Cost = 3, - Attack = 2, - Health = 2, - Description = "Activate: (C) An Agent Flourish|Flourishes.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - "Xae, Dreamstrider", - ], - ImmortalizeWhen = "I've seen allies Flourish 4+ times.", - ImageFile = "Sleepy Druid.png", - }, - new() - { - Name = "Slow Convert", - Category = "Agent", - Cost = 6, - Attack = 2, - Health = 1, - Description = "I cost 1 less for each copy of The One True Timeline in the Timeline Stack. Enter: Create a The Firm Hand in hand.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Dedicated Missionary", - ], - ImmortalizeWhen = "I see The One True Timeline.", - ImageFile = "Slow Convert.png", - }, - new() - { - Name = "Slow", - Category = "Spell", - Description = "This spell cannot be used as a reaction to something on the Chain.", - Archetypes = [ - ], - }, - new() - { - Name = "Snap Back", - Category = "Spell", - Cost = 2, - Description = "Return an Action from your Graveyard to your hand and grant it \\\"If I would be put into a Graveyard, instead Erase me\\\", or an Agent Phase|Phases in.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Snap Back.png", - }, - new() - { - Name = "Solemn Attendant", - Category = "Agent", - Cost = 6, - Attack = 3, - Health = 3, - Description = "Play: Revive an Immortalized Ally.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Indara, the Candle", - ], - ImmortalizeWhen = "I've seen 3+ Agents destroyed.", - ImageFile = "Solemn Attendant.png", - }, - new() - { - Name = "Somber Astronomer", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 1, - Description = "Enter: Create a Return to Stillness in hand.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "A'kon, Starry Diviner", - ], - ImmortalizeWhen = "I've seen you Shift 2+ times.", - ImageFile = "Somber Astronomer.png", - }, - new() - { - Name = "Somnus, the Dreaming", - Category = "Agent", - Cost = 5, - Attack = 3, - Health = 4, - Description = "When I Phase in, deal damage equal to my Strength to the weakest enemy and the enemy Core. Activate: (C) I Flourish, Phase.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Flourish", - "Rewound", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Sensory Deprivation Pod", - ImageFile = "Somnus, the Dreaming.png", - }, - new() - { - Name = "Soothing Glow", - Category = "Spell", - Cost = 2, - Description = "An ally Flourish|Flourishes. Heal your Core 2.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Soothing Glow.png", - }, - new() - { - Name = "Spark of Bounty", - Category = "Agent", - Cost = 5, - Attack = 4, - Health = 4, - Description = "Enter: Shift to Abundant Growth.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "The Beating Heart", - ], - ImmortalizeWhen = "Round End: You have 15+ Strength in play.", - ImageFile = "Spark of Bounty.png", - }, - new() - { - Name = "Specialist Boof", - Category = "Agent", - Cost = 2, - Attack = 3, - Health = 2, - Description = "Evasive. Core Strike: Erase the enemy Graveyard, or if the enemy Graveyard is empty, I Strike the weakest enemy.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Canine Adjutant", - ImageFile = "Specialist Boof.png", - }, - new() - { - Name = "Spirit's Lament", - Category = "Spell", - Cost = 11, - Description = "Revive an ally. Grant it the combined stats and positive keywords of all other Agents in Graveyards.", - Faction = "Silence", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Spirit's Lament.png", - }, - new() - { - Name = "Splintergleam", - Category = "Faction", - Archetypes = [ - ], - }, - new() - { - Name = "Spread the Sickness", - Category = "Spell", - Cost = 5, - Description = "When an Agent is destroyed this round, Agents Decay. Agents Decay.", - Faction = "Silence", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Spread the Sickness.png", - }, - new() - { - Name = "Sprout", - Category = "Keyword", - Description = "Summon a 1/1 spore. If your board is full, give your weakest spore +1/+1.", - Archetypes = [ - ], - }, - new() - { - Name = "Stability Control", - Category = "Spell", - Cost = 6, - Description = "An Agent loses Temporary, a card in your hand loses Transient, and an Agent gains Temporary. Paradox: I cost 3.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Stability Control.png", - }, - new() - { - Name = "Stalwart Champion", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 4, - Description = "Rejuvenate.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Enlightened Survivor", - ], - ImmortalizeWhen = "Breakdown 15.", - ImageFile = "Stalwart Champion.png", - }, - new() - { - Name = "Star Siphon", - Category = "Timeline", - Description = "Round End: Refill all Energy Reserves.", - Faction = "Sungrace", - Archetypes = [ - ], - }, - new() { Name = "Starfueled Medics", Category = "Agent", @@ -4111,37 +2094,6 @@ public static class CardDatabase ImageFile = "Starfueled Medics.png", }, new() - { - Name = "Stern Arbiter", - Category = "Agent", - Cost = 7, - Attack = 5, - Health = 5, - Description = "Play: Return an Action from your Graveyard to your hand. It costs 3 less and has \\\"If I would be put into a Graveyard, instead Erase me.\\\".", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Grand Judge Dhael", - ], - ImmortalizeWhen = "I've seen you play 3+ cards wi...", - ImageFile = "Stern Arbiter.png", - }, - new() - { - Name = "Strength of the Grove", - Category = "Spell", - Cost = 4, - Description = "Sprout 1. Give an ally +1/+1 this round for each other ally.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Strength of the Grove.png", - }, - new() { Name = "Sunbringer Artillerist", Category = "Agent", @@ -4179,56 +2131,6 @@ public static class CardDatabase ImageFile = "Suncursed Conduit.png", }, new() - { - Name = "Sungarden Protector", - Category = "Agent", - Cost = 1, - Attack = 3, - Health = 3, - Description = "No effect text available.", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Peaceful Synthesizer", - ImageFile = "Sungarden Protector.png", - }, - new() - { - Name = "Sungrace", - Category = "Faction", - Archetypes = [ - ], - }, - new() - { - Name = "Sunshock", - Category = "Spell", - Cost = 2, - Description = "Deal 2 to an Agent or Core.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Sunshock.png", - }, - new() - { - Name = "Supernova", - Category = "Spell", - Cost = 5, - Description = "Deal 0 to an Agent. Increase it by 2 and refill 2 Energy Crystals for each time you've Overflowed this game.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Supernova.png", - }, - new() { Name = "Swashbuckling Diehard", Category = "Agent", @@ -4249,182 +2151,180 @@ public static class CardDatabase }, new() { - Name = "Symbiosis", - Category = "Spell", - Cost = 6, - Description = "Grant two Agents each other's stats and keywords.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Symbiosis.png", - }, - new() - { - Name = "Symphony of the Path", + Name = "Arra, Saurian Broodmother", Category = "Agent", Cost = 1, - Attack = 2, - Health = 2, - Description = "Enter: Shift to The One True Timeline. When I am Phased or Rewound my strongest ally Flourishes.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Rewound", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Holder of the Instruments", - ImageFile = "Symphony of the Path.png", - }, - new() - { - Name = "Talia, Purger of Memory", - Category = "Agent", - Cost = 4, - Attack = 5, - Health = 2, - Description = "Activate: (C) Revive an Agent. Grant it Temporary and \\\"When I would be destroyed, instead Erase me.\\", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Redactionist", - ImageFile = "Talia, Purger of Memory.png", - }, - new() - { - Name = "Telepathic Conduit", - Category = "Agent", - Cost = 2, Attack = 1, Health = 2, - Description = "Activate: I Decay, grant me \\\"If you or an ally would deal non-combat damage, increase it by 1.\\\".", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Decay", - ], - ImmortalizeTo = [ - "The Strand", - ], - ImmortalizeWhen = "You've dealt 15+ non-combat damage this game.", - ImageFile = "Telepathic Conduit.png", - }, - new() - { - Name = "Telepathic Scavenger", - Category = "Agent", - Cost = 4, - Attack = 2, - Health = 3, - Description = "Each time an Agent Deplete|Depletes, I Flourish.", - Faction = "Silence", + Description = "Activate: The next ally that enters play this round Flourish|Flourishes. The first time each round another ally Flourish|Flourishes, I Flourish.", + Faction = "Lifeblood", Set = "Core Set", Archetypes = [ "Flourish", ], ImmortalizeTo = [ - "The Uncontained", ], - ImmortalizeWhen = "I've seen Agents Deplete 4+ times.", - ImageFile = "Telepathic Scavenger.png", + ImmortalizeFrom = "Egg Tender", + ImageFile = "Arra, Saurian Broodmother.png", }, new() { - Name = "Temple Analyst", + Name = "Battleharts", Category = "Agent", Cost = 2, - Attack = 2, - Health = 3, - Description = "Blitz. The first time each round I Strike while attacking: Swap me with the Agent to my right, then Rewind it. Reduce its cost by 1 this round.", - Faction = "Phasetide", + Attack = 0, + Health = 1, + Description = "Overpower. When another ally enters play, I Flourish.", + Faction = "Lifeblood", Set = "Core Set", Archetypes = [ - "Rewound", + "Flourish", ], ImmortalizeTo = [ - "Khaela the Savior", ], - ImmortalizeWhen = "I've seen 3+ Agents Phased or Rewound.", - ImageFile = "Temple Analyst.png", + ImmortalizeFrom = "Glade Grazers", + ImageFile = "Battleharts.png", }, new() { - Name = "Temple Guard Hound", + Name = "Boof, Lonely and Proud", Category = "Agent", - Cost = 1, - Attack = 2, - Health = 5, - Description = "Enter: Deal 4 to me.", - Faction = "Phasetide", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - "Boof, Ever Loyal", - ], - ImmortalizeWhen = "I see The One True Timeline.", - ImageFile = "Temple Guard Hound.png", - }, - new() - { - Name = "Terraformer", - Category = "Agent", - Cost = 4, + Cost = 2, Attack = 3, - Health = 5, - Description = "Play: Discard 1 to heal your Core equal to that card's cost (Max 5) then Shift to Erudite Beacon.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - "Shift", - "Heal", - "Discarded", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Recycler", - ImageFile = "Terraformer.png", - }, - new() - { - Name = "Territorial Pack", - Category = "Agent", - Cost = 2, - Attack = 1, - Health = 2, - Description = "Enter: Summon a Wolf.", + Health = 3, + Description = "Confront.", Faction = "Lifeblood", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ - "Boof, Lonely and Proud", ], - ImmortalizeWhen = "Round End: I do not see an allied Wolf in Play.", - ImageFile = "Territorial Pack.png", + ImmortalizeFrom = "Territorial Pack", + ImageFile = "Boof, Lonely and Proud.png", }, new() { - Name = "The 'Stache", + Name = "Bronk the Calm", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 4, + Description = "Enter: Summon a Wolf and Shift to Abundant Growth.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Panicked Refugee", + ImageFile = "Bronk the Calm.png", + }, + new() + { + Name = "Evolution Incarnate", + Category = "Agent", + Cost = 5, + Attack = 6, + Health = 6, + Description = "Confront. Enter or Round End: Shift to Deadly Fauna.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Harbinger of Power", + ImageFile = "Evolution Incarnate.png", + }, + new() + { + Name = "Gritmancer Grant", Category = "Agent", Cost = 4, Attack = 4, Health = 4, - Description = "Blitz. Each round, Disarm the first enemy that would destroy an ally in combat.", - Faction = "Phasetide", + Description = "Evasive. Fervor.", + Faction = "Lifeblood", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ ], - ImmortalizeFrom = "Nonlethal Special Forces", - ImageFile = "The 'Stache.png", + ImmortalizeFrom = "Pterosaur Rider", + ImageFile = "Gritmancer Grant.png", + }, + new() + { + Name = "Horticulturalist Oswald", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 2, + Description = "Enter: Sprout 1. Activate: Give a Seedling Overpower.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Sprout", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Gardener Apprentice", + ImmortalizeWhen = "", + }, + new() + { + Name = "Jenny, Sower of Spores", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Evasive. Strike: Sprout 1.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Sprout", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Fervent Mycologist", + ImageFile = "Jenny, Sower of Spores.png", + }, + new() + { + Name = "Khaelar", + Category = "Agent", + Cost = 6, + Attack = 8, + Health = 6, + Description = "Enter or when I destroy an Agent: Give the strongest enemy Exposed and set its stats to 1/1 this round.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Zealot of the Hunt", + ImageFile = "Khaelar.png", + }, + new() + { + Name = "Omeganeura", + Category = "Agent", + Cost = 6, + Attack = 4, + Health = 4, + Description = "Evasive. Enter or Core Strike: Shift to Abundant Growth. Allies have +1/+1.", + Faction = "Lifeblood", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Glasswinged Monarch", + ImageFile = "Omeganeura.png", }, new() { @@ -4484,37 +2384,6 @@ public static class CardDatabase ImageFile = "The Cycle Embodied.png", }, new() - { - Name = "The Firm Hand", - Category = "Spell", - Cost = 2, - Description = "Shift to The One True Timeline. Draw 1.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "The Firm Hand.png", - }, - new() - { - Name = "The Forgotten Tale", - Category = "Agent", - Cost = 6, - Attack = 3, - Health = 7, - Description = "Activate: (C) Destroy another ally with less Durability than me, then Revive it.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Shae'Fan, Remembered", - ], - ImmortalizeWhen = "I've seen 3+ Agents destroyed.", - ImageFile = "The Forgotten Tale.png", - }, - new() { Name = "The Great Oakmother", Category = "Agent", @@ -4533,169 +2402,6 @@ public static class CardDatabase ImageFile = "The Great Oakmother.png", }, new() - { - Name = "The One True Timeline", - Category = "Timeline", - Description = "Round Start: Heal all Agents and Cores 1.", - Faction = "Phasetide", - Archetypes = [ - ], - }, - new() - { - Name = "The Ripper", - Category = "Agent", - Cost = 4, - Attack = 4, - Health = 7, - Description = "Confront. Overpower. Agents and Cores I Strike Bleed 1.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Toothy Pugilist", - }, - new() - { - Name = "The Strand", - Category = "Agent", - Cost = 2, - Attack = 1, - Health = 4, - Description = "Activate: I Decay, grant me \\\"If you or an ally would deal non-combat damage, increase it by 1.\\", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Decay", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Telepathic Conduit", - ImageFile = "The Strand.png", - }, - new() - { - Name = "The Uncontained", - Category = "Agent", - Cost = 4, - Attack = 2, - Health = 3, - Description = "Overpower. Each time an Agent Deplete|Depletes, I Flourish.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Flourish", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Telepathic Scavenger", - ImageFile = "The Uncontained.png", - }, - new() - { - Name = "The Unstoppable Flow", - Category = "Agent", - Cost = 4, - Attack = 2, - Health = 2, - Description = "Overpower. Enter: Shift to Volcanic Rivers. I have +1/+1 for each Timeline in the Timeline Stack.", - Faction = "Splintergleam", - Set = "Core Set", - Archetypes = [ - "Shift", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Blazing Shifter", - ImageFile = "The Unstoppable Flow.png", - }, - new() - { - Name = "Throw into the Sun", - Category = "Spell", - Cost = 6, - Description = "Erase any card in play.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Throw into the Sun.png", - }, - new() - { - Name = "Throwdown", - Category = "Spell", - Cost = 2, - Description = "An ally and an enemy Strike each other.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Throwdown.png", - }, - new() - { - Name = "Tidal Wave", - Category = "Spell", - Cost = 5, - Description = "Surge. If you have more Core Durability than your opponent, allies Flourish twice.", - Faction = "Phasetide", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Tidal Wave.png", - }, - new() - { - Name = "Time Devourer Soval", - Category = "Agent", - Cost = 10, - Attack = 12, - Health = 12, - Description = "For each Timeline in the Timeline Stack, I gain a random positive keyword. The first time each round I would be destroyed, instead heal me to my maximum durability and destroy the...", - Faction = "Sungrace", - Set = "Core Set", - Archetypes = [ - "Shift", - "Heal", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Devourer Spawn", - ImageFile = "Time Devourer Soval.png", - }, - new() - { - Name = "Timestop", - Category = "Spell", - Cost = 4, - Description = "Clear the Chain.", - Faction = "Singularity", - Set = "Core Set", - Speed = "Fast", - Archetypes = [ - ], - ImageFile = "Timestop.png", - }, - new() - { - Name = "Timewarped Discombobulator", - Category = "Spell", - Cost = 5, - Description = "Deal 1 to an Agent. Summon a random 1 Cost Agent. While I'm in hand, increase both by 1 when you Shift. (Max 10)", - Faction = "Singularity", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Timewarped Discombobulator.png", - }, - new() { Name = "Tino, Majestic Stumbler", Category = "Agent", @@ -4716,148 +2422,287 @@ public static class CardDatabase }, new() { - Name = "Toothy Pugilist", + Name = "Wreck-o Rex", Category = "Agent", - Cost = 4, - Attack = 3, - Health = 6, - Description = "Confront. Agents I Strike Bleed 1.", - Faction = "Splintergleam", + Cost = 8, + Attack = 9, + Health = 9, + Description = "Confront. Overpower. Cleave. Enter: Create a Throwdown in hand.", + Faction = "Lifeblood", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ - "The Ripper", ], - ImmortalizeWhen = "I see an Agent destroyed by Bleed.", - ImageFile = "Toothy Pugilist.png", + ImmortalizeFrom = "Hungry Tyrannosaur", + ImageFile = "Wreck-o Rex.png", }, new() { - Name = "Torment", - Category = "Timeline", - Description = "All Agents and Cores have Bleed 1.", - Faction = "Splintergleam", - Archetypes = [ - ], - }, - new() - { - Name = "Traffic Conductor", - Category = "Agent", - Cost = 2, - Attack = 2, - Health = 2, - Description = "Enter: Disarm the Strongest enemy.", - Faction = "Singularity", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - "Raiz, Pacifist's Conclusion", - ], - ImmortalizeWhen = "I see 3+ Agents with 0 Strength in play.", - ImageFile = "Traffic Conductor.png", - }, - new() - { - Name = "Transient", - Category = "Keyword", - Description = "This card in hand is Discarded at Round End.", - Archetypes = [ - ], - }, - new() - { - Name = "True Believer", + Name = "Xae, Dreamstrider", Category = "Agent", Cost = 3, - Attack = 2, - Health = 1, - Description = "Enter: Create in hand a random Action that started in your deck. Activate: I Decay. Create in hand a random Action that started in your deck.", - Faction = "Silence", + Attack = 3, + Health = 3, + Description = "Activate: (C) An Agent Flourish|Flourishes or Decays.", + Faction = "Lifeblood", Set = "Core Set", Archetypes = [ + "Flourish", "Decay", ], ImmortalizeTo = [ ], - ImmortalizeFrom = "Disciplined Student", - ImageFile = "True Believer.png", + ImmortalizeFrom = "Sleepy Druid", + ImageFile = "Xae, Dreamstrider.png", }, new() { - Name = "Tyar, Benevolent Ruler", + Name = "Alina, the Overflowing Cup", Category = "Agent", - Cost = 7, - Attack = 7, - Health = 6, - Description = "Overpower. The first time each round anything takes damage, create a Transient Bloodbolt in hand. Round Start: Create a Transient Bloodbolt in hand.", - Faction = "Splintergleam", + Cost = 4, + Attack = 3, + Health = 5, + Description = "Enter or Round Start: Create a 0 cost Transient Blessed Soup in hand.", + Faction = "Phasetide", Set = "Core Set", Archetypes = [ ], ImmortalizeTo = [ ], - ImmortalizeFrom = "Brutal Reveler", - ImageFile = "Tyar, Benevolent Ruler.png", + ImmortalizeFrom = "Bearer of the Broth", + ImageFile = "Alina, the Overflowing Cup.png", }, new() { - Name = "Uninhibited Expansion", - Category = "Spell", - Cost = 5, - Description = "Sprout 6.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Uninhibited Expansion.png", - }, - new() - { - Name = "Unlocked Potential", - Category = "Spell", - Cost = 8, - Description = "Grant an ally +9/+4.", - Faction = "Sungrace", - Set = "Core Set", - Speed = "Immediate", - Archetypes = [ - ], - ImageFile = "Unlocked Potential.png", - }, - new() - { - Name = "Unstoppable Growth", - Category = "Spell", - Cost = 4, - Description = "An Agent destroys its allies and gains their Strength and Durability.", - Faction = "Lifeblood", - Set = "Core Set", - Speed = "Slow", - Archetypes = [ - ], - ImageFile = "Unstoppable Growth.png", - }, - new() - { - Name = "Vera, Original Proof", + Name = "Boof, Ever Loyal", Category = "Agent", - Cost = 2, + Cost = 1, + Attack = 3, + Health = 5, + Description = "Enter: Deal 4 to me. Last Gasp: Return the last Action that was put into your Graveyard this round to hand.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Temple Guard Hound", + ImageFile = "Boof, Ever Loyal.png", + }, + new() + { + Name = "Consequence Admin Cain", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 1, + Description = "Play: [icon]Phase an Agent. Agents cannot Phase in while I am in play.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Karmic Debtor", + ImageFile = "Consequence Admin Cain.png", + }, + new() + { + Name = "Da'Kad, Heretic Crusher", + Category = "Agent", + Cost = 5, Attack = 4, - Health = 3, - Description = "Overpower. Last Gasp: Shift to Volcanic Rivers.", - Faction = "Splintergleam", + Health = 9, + Description = "Confront. Siphon. Enter: Deal 4 to me. When an ally or your Core heals, Deal 1 to the enemy Core.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Heal", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Bareknuckle Inquisitor", + ImageFile = "Da'Kad, Heretic Crusher.png", + }, + new() + { + Name = "Dedicated Missionary", + Category = "Agent", + Cost = 6, + Attack = 3, + Health = 2, + Description = "Evasive. I cost 1 less for each copy of The One True Timeline in the Timeline Stack. Enter: Create a The Firm Hand in hand.", + Faction = "Phasetide", Set = "Core Set", Archetypes = [ "Shift", ], ImmortalizeTo = [ ], - ImmortalizeFrom = "Desperate Primordial", - ImageFile = "Vera, Original Proof.png", + ImmortalizeFrom = "Slow Convert", + ImageFile = "Dedicated Missionary.png", + }, + new() + { + Name = "Grand Judge Dhael", + Category = "Agent", + Cost = 7, + Attack = 5, + Health = 5, + Description = "Activate: Return an Action from your Graveyard to your hand. It costs 3 less and has \\\"If I would be put into a Graveyard, instead Erase me.\\", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Stern Arbiter", + ImageFile = "Grand Judge Dhael.png", + }, + new() + { + Name = "Harker, Metal Reporter", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 5, + Description = "When I see a Shift, create a \\\"By the Numbers\\\" in hand, or if you have one in hand, reduce its cost by 1.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Heretic Whistleblower", + ImageFile = "Harker, Metal Reporter.png", + }, + new() + { + Name = "Khaela the Savior", + Category = "Agent", + Cost = 2, + Attack = 3, + Health = 4, + Description = "Blitz. Each time I Strike while attacking: Swap me with the Agent to my right, the Rewind it. Set its cost to 0 this round.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Temple Analyst", + ImageFile = "Khaela the Savior.png", + }, + new() + { + Name = "Masa, Time-Lost", + Category = "Agent", + Cost = 6, + Attack = 7, + Health = 4, + Description = "Blitz. I cost 1 less for each time you've Phased or Rewound an Agent this game. When you Phase or Rewind an Agent, first deal 1 to the enemy Core. Strike: Rewind me.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Divergence Assasin", + ImageFile = "Masa, Time-Lost.png", + }, + new() + { + Name = "Pontifex Dhabu", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 2, + Description = "Round End: I Flourish. When I see a Shift to a Timeline other than The One True Timeline, deal 1 to the enemy Core.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Flourish", + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Fervent Follower", + ImageFile = "Pontifex Dhabu.png", + }, + new() + { + Name = "Priestess Minia", + Category = "Agent", + Cost = 2, + Attack = 3, + Health = 7, + Description = "Confront. Enter: Deal 4 to me.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Seeker of Truth", + ImageFile = "Priestess Minia.png", + }, + new() + { + Name = "Rift Mender Aris", + Category = "Agent", + Cost = 3, + Attack = 6, + Health = 6, + Description = "I have -1/-1 for each Timeline in the Timeline Stack other than The One True Timeline. Last Gasp: Shift to The One True Timeline.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Shattersmith", + ImageFile = "Rift Mender Aris.png", + }, + new() + { + Name = "Symphony of the Path", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 2, + Description = "Enter: Shift to The One True Timeline. When I am Phased or Rewound my strongest ally Flourishes.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + "Rewound", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Holder of the Instruments", + ImageFile = "Symphony of the Path.png", + }, + new() + { + Name = "The 'Stache", + Category = "Agent", + Cost = 4, + Attack = 4, + Health = 4, + Description = "Blitz. Each round, Disarm the first enemy that would destroy an ally in combat.", + Faction = "Phasetide", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Nonlethal Special Forces", + ImageFile = "The 'Stache.png", }, new() { @@ -4897,21 +2742,1212 @@ public static class CardDatabase }, new() { - Name = "Voiceless Sky", - Category = "Timeline", - Description = "If a player has exactly one Agent, it has +3/+3.", - Faction = "Silence", + Name = "Zel, the First Diver", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 3, + Description = "When I am Phased or Rewound, first Draw 1 and Flourish. When I am Rewound or Destroyed, I keep all permanent buffs.", + Faction = "Phasetide", + Set = "Core Set", Archetypes = [ + "Rewound", ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Curious Acolyte", + ImageFile = "Zel, the First Diver.png", }, new() { - Name = "Volcanic Rivers", - Category = "Timeline", - Description = "When you Shift here, deal 1 to both Cores.", - Faction = "Splintergleam", + Name = "A'kon, Starry Diviner", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 2, + Description = "Enter or Last Gasp: Create a Return to Stillness in hand.", + Faction = "Silence", + Set = "Core Set", Archetypes = [ ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Somber Astronomer", + ImageFile = "A'kon, Starry Diviner.png", + }, + new() + { + Name = "Alina Who Cuts the Strings", + Category = "Agent", + Cost = 4, + Attack = 3, + Health = 2, + Description = "Play: (C) Mute an Agent. Activate: (C) Destroy a Mute|Muted Agent.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Destiny Ripper", + ImageFile = "Alina Who Cuts the Strings.png", + }, + new() + { + Name = "Boof, the Listener", + Category = "Agent", + Cost = 2, + Attack = 2, + Health = 1, + Description = "Enter and Last Gasp: Draw a random 1, 2, or 3 cost Action from your deck.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Draw", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Librarian's Assistant", + ImageFile = "Boof, the Listener.png", + }, + new() + { + Name = "Daville, the Star Song", + Category = "Agent", + Cost = 5, + Attack = 5, + Health = 5, + Description = "Activate: Refresh an ally. That ally cannot Refresh again this round. When an ally Deplete|Depletes, if I see Voiceless Sky, give it +3/+3 this round.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Death Jockey", + ImageFile = "Daville, the Star Song.png", + }, + new() + { + Name = "Dhali, Bearer of Memories", + Category = "Agent", + Cost = 6, + Attack = 4, + Health = 5, + Description = "Round End: Create in hand a random Action that started in your deck. When you play an Action you've already played this game, copy it.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Overburdened Scribe", + ImageFile = "Dhali, Bearer of Memories.png", + }, + new() + { + Name = "Greyl, the Problem", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 4, + Description = "Evasive. Activate: Grant all Actions in hand Transient, then create exact copies of them in hand.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Fuzzy Archivist", + ImageFile = "Greyl, the Problem.png", + }, + new() + { + Name = "Indara, the Candle", + Category = "Agent", + Cost = 6, + Attack = 4, + Health = 4, + Description = "Activate: [icon] Revive an Immortalized Ally.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Solemn Attendant", + ImageFile = "Indara, the Candle.png", + }, + new() + { + Name = "Khaela, the Vanished", + Category = "Agent", + Cost = 2, + Attack = 3, + Health = 2, + Description = "Blitz. Siphon.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Nameless Spirit", + ImageFile = "Khaela, the Vanished.png", + }, + new() + { + Name = "Shae'Fan, Remembered", + Category = "Agent", + Cost = 6, + Attack = 4, + Health = 7, + Description = "Activate: (C) Destroy another ally with less Durability than me, then Revive it and summon an exact copy of it.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "The Forgotten Tale", + ImageFile = "Shae'Fan, Remembered.png", + }, + new() + { + Name = "Somnus, the Dreaming", + Category = "Agent", + Cost = 5, + Attack = 3, + Health = 4, + Description = "When I Phase in, deal damage equal to my Strength to the weakest enemy and the enemy Core. Activate: (C) I Flourish, Phase.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Flourish", + "Rewound", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Sensory Deprivation Pod", + ImageFile = "Somnus, the Dreaming.png", + }, + new() + { + Name = "Talia, Purger of Memory", + Category = "Agent", + Cost = 4, + Attack = 5, + Health = 2, + Description = "Activate: (C) Revive an Agent. Grant it Temporary and \\\"When I would be destroyed, instead Erase me.\\", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Redactionist", + ImageFile = "Talia, Purger of Memory.png", + }, + new() + { + Name = "The Strand", + Category = "Agent", + Cost = 2, + Attack = 1, + Health = 4, + Description = "Activate: I Decay, grant me \\\"If you or an ally would deal non-combat damage, increase it by 1.\\", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Decay", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Telepathic Conduit", + ImageFile = "The Strand.png", + }, + new() + { + Name = "The Uncontained", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 3, + Description = "Overpower. Each time an Agent Deplete|Depletes, I Flourish.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Telepathic Scavenger", + ImageFile = "The Uncontained.png", + }, + new() + { + Name = "True Believer", + Category = "Agent", + Cost = 3, + Attack = 2, + Health = 1, + Description = "Enter: Create in hand a random Action that started in your deck. Activate: I Decay. Create in hand a random Action that started in your deck.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Decay", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Disciplined Student", + ImageFile = "True Believer.png", + }, + new() + { + Name = "Wilfred, Lobotomizer", + Category = "Agent", + Cost = 1, + Attack = 4, + Health = 3, + Description = "Round End: Decay. When I Decay, all enemies Decay.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + "Decay", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Braindead Bouncer", + ImageFile = "Wilfred, Lobotomizer.png", + }, + new() + { + Name = "Witch of the Woods", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 2, + Description = "Play: (C) Deplete an Enemy. Round Start: Create a Return to Stillness in hand.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Forest Recluse", + ImageFile = "Witch of the Woods.png", + }, + new() + { + Name = "Ylka, the Headliner", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 1, + Description = "Activate: Rock out. When allies Deplete, (C) Deal 2 to a random enemy. If it's dead or gone, deal 1 to the enemy Core instead.", + Faction = "Silence", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Rotting Rocker", + ImageFile = "Ylka, the Headliner.png", + }, + new() + { + Name = "B.O.O.F.", + Category = "Agent", + Cost = 2, + Attack = 3, + Health = 2, + Description = "Enter: Draw a 1 cost Agent from your deck. Round End: If I do not see a 1 cost ally in play, Draw a 1 cost Agent from your deck.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Draw", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Enhanced Retriever", + ImageFile = "B.O.O.F..png", + }, + new() + { + Name = "Bill, First Point of Contact", + Category = "Agent", + Cost = 4, + Attack = 3, + Health = 4, + Description = "Enter, Deplete, or Round Start: Create a Transient Scouter Round in hand.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Enthusiastic Bot-Poke", + ImageFile = "Bill, First Point of Contact.png", + }, + new() + { + Name = "Bronk the Guide", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 3, + Description = "Enter: Shift to Erudite Beacon. Activate: Shift to Erudite Beacon.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Enlightened Refugee", + ImageFile = "Bronk the Guide.png", + }, + new() + { + Name = "E-Law, Boot Shepherd", + Category = "Agent", + Cost = 1, + Attack = 3, + Health = 2, + Description = "Play: Discard 1 to Draw 1. Round Start: Draw 1.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Draw", + "Discarded", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Efficient Scrapbot", + ImageFile = "E-Law, Boot Shepherd.png", + }, + new() + { + Name = "Herald of the One", + Category = "Agent", + Cost = 4, + Attack = 1, + Health = 4, + Description = "Play: (C) Transform me into an exact copy of an Agent.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Nascent Clone", + ImageFile = "Herald of the One.png", + }, + new() + { + Name = "Mr. E", + Category = "Agent", + Cost = 7, + Attack = 4, + Health = 6, + Description = "Play: Discard up to 3. When you Discard: Draw 1 and reduce its cost by 2.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Draw", + "Discarded", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Rogue Amalgam", + ImageFile = "Mr. E.png", + }, + new() + { + Name = "Nanobot Hive", + Category = "Agent", + Cost = 2, + Attack = 4, + Health = 4, + Description = "Allies have \\\"Last Gasp: Allies with the same name as me Flourish.\\\" Last Gasp: Allies with the same name as other allies Flourish.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Scattered Helpers", + ImageFile = "Nanobot Hive.png", + }, + new() + { + Name = "Overmind's Guilt", + Category = "Agent", + Cost = 8, + Attack = 8, + Health = 8, + Description = "Evasive. Enter or Round Start: Reset all Agents to their base text, empty the Timeline Stack, Erase all Graveyards.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Origination Engine", + ImageFile = "Overmind's Guilt.png", + }, + new() + { + Name = "Quicksilver Khaela", + Category = "Agent", + Cost = 2, + Attack = 2, + Health = 1, + Description = "Temporary. Strike: Create a Transient copy of me in hand. Last Gasp: The next time you Shift, revive me and grant copies of me *everywhere* +1/+0.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Fractal Phantasm", + ImageFile = "Quicksilver Khaela.png", + }, + new() + { + Name = "Raiz, Pacifist's Conclusion", + Category = "Agent", + Cost = 2, + Attack = 3, + Health = 3, + Description = "Enter: Disarm the Strongest enemy. Round End: If you have an unspent Attack Token, Create a We Have Cookies in hand.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Traffic Conductor", + ImageFile = "Raiz, Pacifist's Conclusion.png", + }, + new() + { + Name = "Terraformer", + Category = "Agent", + Cost = 4, + Attack = 3, + Health = 5, + Description = "Play: Discard 1 to heal your Core equal to that card's cost (Max 5) then Shift to Erudite Beacon.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Shift", + "Heal", + "Discarded", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Recycler", + ImageFile = "Terraformer.png", + }, + new() + { + Name = "Wom, Sweet Wom", + Category = "Agent", + Cost = 2, + Attack = 1, + Health = 4, + Description = "Activate: Reduce an Agent's Strength by my Strength this round. When I see an enemy Agent reduced to 0 Strength, grant allies +1/+0.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Awakened Security System", + ImageFile = "Wom, Sweet Wom.png", + }, + new() + { + Name = "Ziv, the Adaptable", + Category = "Agent", + Cost = 5, + Attack = 3, + Health = 5, + Description = "Play: Discard 1. When you Discard, I Flourish and grant me a random positive keyword.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + "Flourish", + "Discarded", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Roiling Amalgam", + ImageFile = "Ziv, the Adaptable.png", + }, + new() + { + Name = "Zorp, Unrecyclable", + Category = "Agent", + Cost = 3, + Attack = 6, + Health = 1, + Description = "Overpower. Enter: Create a copy of me in hand.", + Faction = "Singularity", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Scuttling Spares", + ImageFile = "Zorp, Unrecyclable.png", + }, + new() + { + Name = "Armageddonaut", + Category = "Agent", + Cost = 5, + Attack = 6, + Health = 6, + Description = "Cleave. Enter or when I destroy an Agent: Create a Circle of Strife in hand.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Hungry Engine", + ImageFile = "Armageddonaut.png", + }, + new() + { + Name = "Boatswain Corvus", + Category = "Agent", + Cost = 7, + Attack = 6, + Health = 10, + Description = "Overpower. Round Start: Deal 1 to the enemy Core twice. When you deal non-combat damage to the enemy Core, grant the weakest enemy Exposed. Core Strike: Deal 3 to all enemies and t...", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Gilded Behemoth", + ImageFile = "Boatswain Corvus.png", + }, + new() + { + Name = "Boof, the Champion", + Category = "Agent", + Cost = 2, + Attack = 4, + Health = 4, + Description = "Overpower.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Pit Dog", + ImageFile = "Boof, the Champion.png", + }, + new() + { + Name = "Brant the Bloody", + Category = "Agent", + Cost = 1, + Attack = 2, + Health = 3, + Description = "Confront. Agents I Strike Bleed 1. When an enemy Bleeds, I Flourish.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Persistent Squire", + ImageFile = "Brant the Bloody.png", + }, + new() + { + Name = "Enlightened Survivor", + Category = "Agent", + Cost = 3, + Attack = 4, + Health = 5, + Description = "Rejuvenate.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Stalwart Champion", + ImageFile = "Enlightened Survivor.png", + }, + new() + { + Name = "Khaela the Hungry", + Category = "Agent", + Cost = 2, + Attack = 1, + Health = 5, + Description = "Play or Activate: (C) Deal 1 to me and another Agent. Sacrifice 2: Instead deal 2.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Painforger", + ImageFile = "Khaela the Hungry.png", + }, + new() + { + Name = "Kurian, the Breaker", + Category = "Agent", + Cost = 6, + Attack = 10, + Health = 5, + Description = "Overpower. Allied Breakdown sees both Cores.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Frontline Juggernaut", + ImageFile = "Kurian, the Breaker.png", + }, + new() + { + Name = "Magnus Lavaborn", + Category = "Agent", + Cost = 1, + Attack = 3, + Health = 1, + Description = "Enter: Shift to Volcanic Rivers twice. Strike: Deal 1 to the enemy Core.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Denizen of Flames", + ImageFile = "Magnus Lavaborn.png", + }, + new() + { + Name = "Master of Ceremonies", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 1, + Description = "Activate: Sacrifice 2: (C) Deal 2 to the enemy Core.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Bloodline Tracker", + ImageFile = "Master of Ceremonies.png", + }, + new() + { + Name = "Odol, the Red Death", + Category = "Agent", + Cost = 5, + Attack = 3, + Health = 5, + Description = "Rejuvenate. Enter: All Agents Bleed 1. When an ally survives damage, it Flourish|Flourishes and is granted Rejuvenate.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Red Reaper", + ImageFile = "Odol, the Red Death.png", + }, + new() + { + Name = "Opener of the Way", + Category = "Agent", + Cost = 5, + Attack = 5, + Health = 6, + Description = "The first time each round an ally deals or takes damage, Draw 1 and Shift to Torment.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Shift", + "Draw", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Devoted Bloodletter", + ImageFile = "Opener of the Way.png", + }, + new() + { + Name = "Overseer of Trials", + Category = "Agent", + Cost = 3, + Attack = 3, + Health = 5, + Description = "Confront. Other allies have Fervor. Fervor grants an extra +1/+1.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Bright-Eyed Supplicant", + ImageFile = "Overseer of Trials.png", + }, + new() + { + Name = "Sareh, Rebel Strategist", + Category = "Agent", + Cost = 4, + Attack = 5, + Health = 4, + Description = "Blitz. Cleave. Play: Grant two enemies Exposed. Round Start: Grant the strongest enemy Exposed.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Bullseye Bounty Hunter", + ImageFile = "Sareh, Rebel Strategist.png", + }, + new() + { + Name = "Scoot Sparkles", + Category = "Agent", + Cost = 1, + Attack = 1, + Health = 3, + Description = "Overpower. When I survive damage, grant me +2/+0.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Glittering Gladiator", + }, + new() + { + Name = "The Ripper", + Category = "Agent", + Cost = 4, + Attack = 4, + Health = 7, + Description = "Confront. Overpower. Agents and Cores I Strike Bleed 1.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Toothy Pugilist", + }, + new() + { + Name = "The Unstoppable Flow", + Category = "Agent", + Cost = 4, + Attack = 2, + Health = 2, + Description = "Overpower. Enter: Shift to Volcanic Rivers. I have +1/+1 for each Timeline in the Timeline Stack.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Blazing Shifter", + ImageFile = "The Unstoppable Flow.png", + }, + new() + { + Name = "Tyar, Benevolent Ruler", + Category = "Agent", + Cost = 7, + Attack = 7, + Health = 6, + Description = "Overpower. The first time each round anything takes damage, create a Transient Bloodbolt in hand. Round Start: Create a Transient Bloodbolt in hand.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Brutal Reveler", + ImageFile = "Tyar, Benevolent Ruler.png", + }, + new() + { + Name = "Vera, Original Proof", + Category = "Agent", + Cost = 2, + Attack = 4, + Health = 3, + Description = "Overpower. Last Gasp: Shift to Volcanic Rivers.", + Faction = "Splintergleam", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Desperate Primordial", + ImageFile = "Vera, Original Proof.png", + }, + new() + { + Name = "Chaos Conductor Boltz", + Category = "Agent", + Cost = 5, + Attack = 6, + Health = 4, + Description = "Blitz. When you play an Action, gain 1 Reserve Energy. Round Start: Create a Transient Sunshock in hand for each Reserve Energy you have.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Jury of the Second Law", + ImageFile = "Chaos Conductor Boltz.png", + }, + new() + { + Name = "Clarion, Deepest Breath", + Category = "Agent", + Cost = 6, + Attack = 6, + Health = 6, + Description = "When you play an Action, (C) Shift to Volcanic Rivers. Your Actions and Timelines you Shift to have Siphon.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Magmatic Tether", + ImageFile = "Clarion, Deepest Breath.png", + }, + new() + { + Name = "Doctor Mirthram Remora", + Category = "Agent", + Cost = 4, + Attack = 3, + Health = 4, + Description = "Enter and Overflow: Heal allies and your Core 1. Round End: Deal damage to enemies and the enemy Core equal to each time you've healed your Core this round.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Heal", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Starfueled Medics", + ImageFile = "Doctor Mirthram Remora.png", + }, + new() + { + Name = "Dyson, the Aspirant", + Category = "Agent", + Cost = 2, + Attack = 3, + Health = 3, + Description = "Confront. Enter: Shift to Star Siphon.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Kinetic Absorber", + ImageFile = "Dyson, the Aspirant.png", + }, + new() + { + Name = "Eruption Incarnate", + Category = "Agent", + Cost = 2, + Attack = 5, + Health = 5, + Description = "Overpower.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Hidden Locus", + ImageFile = "Eruption Incarnate.png", + }, + new() + { + Name = "Gentle Frank", + Category = "Agent", + Cost = 8, + Attack = 9, + Health = 15, + Description = "Delay. Confront. If your opponent would Confront an Agent, they must Confront me if able. Allies and your Core take 1 less damage from all sources.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Lightsteel Colossus", + ImageFile = "Gentle Frank.png", + }, + new() + { + Name = "Grand Admiral Khaela", + Category = "Agent", + Cost = 7, + Attack = 6, + Health = 7, + Description = "Blitz. Play or Attack: [icon] Erase all enemies with a cost of 2 or less in play. When I'm attacking, allies have Cleave.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Gunnery Captain", + ImageFile = "Grand Admiral Khaela.png", + }, + new() + { + Name = "Kyln, the Dynasty", + Category = "Agent", + Cost = 8, + Attack = 3, + Health = 3, + Description = "Evasive. Overpower. Enter: Flourish copies of me everywhere, then create a copy of me in hand and reduce the cost of allied created cards everywhere by 1 at Round End (Minimum 1).", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Planet Seeder", + ImageFile = "Kyln, the Dynasty.png", + }, + new() + { + Name = "Living Comet", + Category = "Agent", + Cost = 4, + Attack = 1, + Health = 1, + Description = "Overpower. I have +1/+1 for every Energy Crystal you have.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Debris Collector", + ImageFile = "Living Comet.png", + }, + new() + { + Name = "Luminous Vengeance", + Category = "Agent", + Cost = 5, + Attack = 7, + Health = 6, + Description = "Delay. Overpower. Confront.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Lumbering Starseeker", + ImageFile = "Luminous Vengeance.png", + }, + new() + { + Name = "Malark, the Silver Wave", + Category = "Agent", + Cost = 3, + Attack = 4, + Health = 1, + Description = "Blitz. Last Gasp: Grant the weakest ally Blitz, +4/+1 and this Last Gasp.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Swashbuckling Diehard", + ImageFile = "Malark, the Silver Wave.png", + }, + new() + { + Name = "Malum, the Fist", + Category = "Agent", + Cost = 2, + Attack = 0, + Health = 1, + Description = "Round Start: I Flourish once for each Reserve Energy you have. Overflow: Grant me a random positive keyword.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Flourish", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Limit Breaker", + ImageFile = "Malum, the Fist.png", + }, + new() + { + Name = "Mechanist Daedelus", + Category = "Agent", + Cost = 5, + Attack = 5, + Health = 6, + Description = "Reduce damage you or allies would deal to your Core by 2. When you reduce damage this way, deal 2 to the enemy Core.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Lightsteel Engineer", + ImageFile = "Mechanist Daedelus.png", + }, + new() + { + Name = "Penitent Star", + Category = "Agent", + Cost = 5, + Attack = 4, + Health = 8, + Description = "Evasive.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Containment Breach", + ImageFile = "Penitent Star.png", + }, + new() + { + Name = "Quaid, the Willing", + Category = "Agent", + Cost = 1, + Attack = 3, + Health = 2, + Description = "Last Gasp: Shift to Star Siphon. Strike: Gain 1 Reserve Energy.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Shift", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Brilliant Martyr", + ImageFile = "Quaid, the Willing.png", + }, + new() + { + Name = "Sali, Top Gunner", + Category = "Agent", + Cost = 2, + Attack = 2, + Health = 3, + Description = "Enter: Create a 1 cost Transient Sunshock in your hand. When you play a Sunshock, create a Transient exact copy in hand that costs 2 more.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Sunbringer Artillerist", + ImageFile = "Sali, Top Gunner.png", + }, + new() + { + Name = "Specialist Boof", + Category = "Agent", + Cost = 2, + Attack = 3, + Health = 2, + Description = "Evasive. Core Strike: Erase the enemy Graveyard, or if the enemy Graveyard is empty, I Strike the weakest enemy.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Canine Adjutant", + ImageFile = "Specialist Boof.png", + }, + new() + { + Name = "Sungarden Protector", + Category = "Agent", + Cost = 1, + Attack = 3, + Health = 3, + Description = "No effect text available.", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Peaceful Synthesizer", + ImageFile = "Sungarden Protector.png", + }, + new() + { + Name = "Time Devourer Soval", + Category = "Agent", + Cost = 10, + Attack = 12, + Health = 12, + Description = "For each Timeline in the Timeline Stack, I gain a random positive keyword. The first time each round I would be destroyed, instead heal me to my maximum durability and destroy the...", + Faction = "Sungrace", + Set = "Core Set", + Archetypes = [ + "Shift", + "Heal", + ], + ImmortalizeTo = [ + ], + ImmortalizeFrom = "Devourer Spawn", + ImageFile = "Time Devourer Soval.png", }, new() { @@ -4932,6 +3968,760 @@ public static class CardDatabase ImageFile = "Vor’kon, Eternal Source.png", }, new() + { + Name = "Affront to Nature", + Category = "Spell", + Cost = 9, + Description = "Allies Flourish 3 times. Enemies Decay 3 times.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Affront to Nature.png", + }, + new() + { + Name = "Bloom", + Category = "Spell", + Cost = 2, + Description = "Give an ally +0/+2 this round. Sprout 1.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Bloom.png", + }, + new() + { + Name = "Chronosynthesis", + Category = "Spell", + Cost = 8, + Description = "Sprout 1 for every time you have Sprout|Sprouted this game.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Chronosynthesis.png", + }, + new() + { + Name = "Convergent Pack", + Category = "Spell", + Cost = 4, + Description = "Shift to Abundant Growth. For every two Timelines in the Timeline Stack, summon an attacking Wolf Confronting the weakest unconfronted enemy.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Convergent Pack.png", + }, + new() + { + Name = "Focused Adaptation", + Category = "Spell", + Cost = 4, + Description = "Give an ally \\\"The next time I would be destroyed, instead heal me to full and heal your Core the same amount\\\" this round.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Focused Adaptation.png", + }, + new() + { + Name = "Mulch", + Category = "Spell", + Cost = 2, + Description = "Destroy an ally to Sprout equal to its Strength.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Mulch.png", + }, + new() + { + Name = "Paradox Stimulator", + Category = "Spell", + Cost = 1, + Description = "Sprout 1. Paradox: Instead, Sprout 3.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Paradox Stimulator.png", + }, + new() + { + Name = "Rumpus", + Category = "Spell", + Cost = 3, + Description = "Create a 1 cost Transient Throwdown in hand for each ally.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Rumpus.png", + }, + new() + { + Name = "Scent the Prey", + Category = "Spell", + Cost = 3, + Description = "Choose an ally. Give all enemies with less Strength Exposed this round. Shift to either Abundant Growth or Deadly Fauna.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Scent the Prey.png", + }, + new() + { + Name = "Strength of the Grove", + Category = "Spell", + Cost = 4, + Description = "Sprout 1. Give an ally +1/+1 this round for each other ally.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Strength of the Grove.png", + }, + new() + { + Name = "Symbiosis", + Category = "Spell", + Cost = 6, + Description = "Grant two Agents each other's stats and keywords.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Symbiosis.png", + }, + new() + { + Name = "Throwdown", + Category = "Spell", + Cost = 2, + Description = "An ally and an enemy Strike each other.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Throwdown.png", + }, + new() + { + Name = "Uninhibited Expansion", + Category = "Spell", + Cost = 5, + Description = "Sprout 6.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Uninhibited Expansion.png", + }, + new() + { + Name = "Unstoppable Growth", + Category = "Spell", + Cost = 4, + Description = "An Agent destroys its allies and gains their Strength and Durability.", + Faction = "Lifeblood", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Unstoppable Growth.png", + }, + new() + { + Name = "Backhand", + Category = "Spell", + Cost = 2, + Description = "Destroy an Agent with 2 or less Strength or Durability.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Backhand.png", + }, + new() + { + Name = "Balanced Blade", + Category = "Spell", + Cost = 3, + Description = "The next time an ally Strikes an enemy this round, first grant it Strength equal to its target's Durability.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Balanced Blade.png", + }, + new() + { + Name = "Blessed Soup", + Category = "Spell", + Cost = 2, + Description = "Heal an Agent or Core 2. Draw 1.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Blessed Soup.png", + }, + new() + { + Name = "By the Numbers", + Category = "Spell", + Cost = 2, + Description = "Reveal the top card of both decks. Create a copy of the card with the higher cost in hand, then shuffle both cards into their respective decks. In a tie, create a copy of both card...", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "By the Numbers.png", + }, + new() + { + Name = "Chronal Quarantine", + Category = "Spell", + Cost = 7, + Description = "Phase enemies. Phase allies. If The One True Timeline is active, allies Phase in.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Chronal Quarantine.png", + }, + new() + { + Name = "Chronicle of the One", + Category = "Spell", + Cost = 1, + Description = "Create a Transient Out of Line, The Firm Hand, or Prayer of Rescue in hand.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Chronicle of the One.png", + }, + new() + { + Name = "Curb the Anomalies", + Category = "Spell", + Cost = 6, + Description = "I cost 1 less if you see The One True Timeline. Mute all Agents this round. Shift to The One True Timeline.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Curb the Anomalies.png", + }, + new() + { + Name = "Invigorating Balm", + Category = "Spell", + Cost = 1, + Description = "Heal an ally 1. Give it +1/+1 this round.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Invigorating Balm.png", + }, + new() + { + Name = "Out of Line", + Category = "Spell", + Cost = 6, + Description = "Two Agents Phase. If they have the same name, instead destroy them.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Out of Line.png", + }, + new() + { + Name = "Paradox Flow", + Category = "Spell", + Cost = 3, + Description = "Shift to The One True Timeline. Fully Heal all allies. Paradox: Give all enemies Exposed this round.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Paradox Flow.png", + }, + new() + { + Name = "Prayer of Rescue", + Category = "Spell", + Cost = 1, + Description = "Rewind an ally.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Prayer of Rescue.png", + }, + new() + { + Name = "Rescind Authorization", + Category = "Spell", + Cost = 4, + Description = "Rewind an Agent. Sacrifice 4: Instead, Rewind an ally and an enemy.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Rescind Authorization.png", + }, + new() + { + Name = "Set in Stone", + Category = "Spell", + Cost = 4, + Description = "I cost 1 less if you see The One True Timeline. An Agent Phase|Phases. Draw 1.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Set in Stone.png", + }, + new() + { + Name = "Snap Back", + Category = "Spell", + Cost = 2, + Description = "Return an Action from your Graveyard to your hand and grant it \\\"If I would be put into a Graveyard, instead Erase me\\\", or an Agent Phase|Phases in.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Snap Back.png", + }, + new() + { + Name = "The Firm Hand", + Category = "Spell", + Cost = 2, + Description = "Shift to The One True Timeline. Draw 1.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "The Firm Hand.png", + }, + new() + { + Name = "Tidal Wave", + Category = "Spell", + Cost = 5, + Description = "Surge. If you have more Core Durability than your opponent, allies Flourish twice.", + Faction = "Phasetide", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Tidal Wave.png", + }, + new() + { + Name = "Appeal to the Scrolls", + Category = "Spell", + Cost = 5, + Description = "If you have 1 or less Agents, I cost 2 less. Draw 2 Actions.", + Faction = "Silence", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Appeal to the Scrolls.png", + }, + new() + { + Name = "Bury the Evidence", + Category = "Spell", + Cost = 3, + Description = "An enemy Decays twice, or an ally Decays twice to Draw 2.", + Faction = "Silence", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Bury the Evidence.png", + }, + new() + { + Name = "Cascading Serenity", + Category = "Spell", + Cost = 3, + Description = "Destroy an Agent with cost 2 or less. Create a Return to Stillness in hand.", + Faction = "Silence", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Cascading Serenity.png", + }, + new() + { + Name = "Gnosis", + Category = "Spell", + Cost = 2, + Description = "Draw 2. You may return any of those cards to the bottom of your deck. Sacrifice 2 for each card kept.", + Faction = "Silence", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Gnosis.png", + }, + new() + { + Name = "Hush Now", + Category = "Spell", + Cost = 6, + Description = "Destroy an Agent.", + Faction = "Silence", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Hush Now.png", + }, + new() + { + Name = "Mind Over Matter", + Category = "Spell", + Cost = 3, + Description = "If Voiceless Sky is active, I am Immediate Speed. Deplete an Agent. Refresh an Agent.", + Faction = "Silence", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Mind Over Matter.png", + }, + new() + { + Name = "Muffle", + Category = "Spell", + Cost = 4, + Description = "Mute an Agent this round or Deplete an ally to Mute two Agents this round.", + Faction = "Silence", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Muffle.png", + }, + new() + { + Name = "Not so Fast", + Category = "Spell", + Cost = 3, + Description = "Revive the strongest ally that was destroyed this round.", + Faction = "Silence", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Not so Fast.png", + }, + new() + { + Name = "Paradox Plague", + Category = "Spell", + Cost = 5, + Description = "An Agent Decays once for every Timeline in the Timeline Stack. Paradox: Instead, enemies Decay once for every Timeline in the Timeline Stack.", + Faction = "Silence", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Paradox Plague.png", + }, + new() + { + Name = "Pressure Spike", + Category = "Spell", + Cost = 2, + Description = "Deal 1 to an Agent. Increase it by 1 for each ally it has.", + Faction = "Silence", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Pressure Spike.png", + }, + new() + { + Name = "Quiet Repose", + Category = "Spell", + Cost = 8, + Description = "Destroy all Agents. You may not play Agents for the rest of the round.", + Faction = "Silence", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Quiet Repose.png", + }, + new() + { + Name = "Return to Stillness", + Category = "Spell", + Cost = 1, + Description = "An Agent Deplete|Depletes. Shift to Voiceless Sky.", + Faction = "Silence", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Return to Stillness.png", + }, + new() + { + Name = "Spirit's Lament", + Category = "Spell", + Cost = 11, + Description = "Revive an ally. Grant it the combined stats and positive keywords of all other Agents in Graveyards.", + Faction = "Silence", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Spirit's Lament.png", + }, + new() + { + Name = "Spread the Sickness", + Category = "Spell", + Cost = 5, + Description = "When an Agent is destroyed this round, Agents Decay. Agents Decay.", + Faction = "Silence", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Spread the Sickness.png", + }, + new() + { + Name = "Aggressive Recycling", + Category = "Spell", + Cost = 2, + Description = "Discard 2 to play. Draw 2. Sacrifice 3: Instead, Discard 3 to play. Draw 3.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Aggressive Recycling.png", + }, + new() + { + Name = "Built to Burn", + Category = "Spell", + Cost = 5, + Description = "Summon a Temporary exact copy of an ally.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Built to Burn.png", + }, + new() + { + Name = "Chronal Scan", + Category = "Spell", + Cost = 3, + Description = "Discard 1 to play. Create a Transient copy in hand of an ally now and at next Round Start.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Chronal Scan.png", + }, + new() + { + Name = "Conscientious Overwrite", + Category = "Spell", + Cost = 2, + Description = "Deal 2 to an Agent. Create a Scouter Round in hand.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Conscientious Overwrite.png", + }, + new() + { + Name = "Frontline Fellowship", + Category = "Spell", + Cost = 4, + Description = "Disarm the strongest ally to Disarm the two strongest enemies.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Frontline Fellowship.png", + }, + new() + { + Name = "Headbanging", + Category = "Spell", + Cost = 1, + Description = "Discard 1 to play. Deal 2 to an Agent or Core.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Headbanging.png", + }, + new() + { + Name = "Overclock", + Category = "Spell", + Cost = 4, + Description = "Discard 1 to play. Double an ally's Strength and Durability and grant it Temporary.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Overclock.png", + }, + new() + { + Name = "Paradox Analysis", + Category = "Spell", + Cost = 5, + Description = "Draw 2. Paradox: Instead, Draw 3.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Paradox Analysis.png", + }, + new() + { + Name = "Pocket Dimension", + Category = "Spell", + Cost = 3, + Description = "Discard up to 3 to play. Summon that many Pocket Scouts. When I am discarded create a Scouter Round in hand.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Pocket Dimension.png", + }, + new() + { + Name = "Rapid Iteration", + Category = "Spell", + Cost = 2, + Description = "Discard 1 to play. Deal 4 to an Agent.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Rapid Iteration.png", + }, + new() + { + Name = "Scouter Round", + Category = "Spell", + Cost = 1, + Description = "Play or Discard: Summon a Pocket Scout.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Scouter Round.png", + }, + new() + { + Name = "Stability Control", + Category = "Spell", + Cost = 6, + Description = "An Agent loses Temporary, a card in your hand loses Transient, and an Agent gains Temporary. Paradox: I cost 3.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Stability Control.png", + }, + new() + { + Name = "Timestop", + Category = "Spell", + Cost = 4, + Description = "Clear the Chain.", + Faction = "Singularity", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Timestop.png", + }, + new() + { + Name = "Timewarped Discombobulator", + Category = "Spell", + Cost = 5, + Description = "Deal 1 to an Agent. Summon a random 1 Cost Agent. While I'm in hand, increase both by 1 when you Shift. (Max 10)", + Faction = "Singularity", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Timewarped Discombobulator.png", + }, + new() { Name = "Wake-Up Prod", Category = "Spell", @@ -4972,194 +4762,404 @@ public static class CardDatabase }, new() { - Name = "Wilfred, Lobotomizer", - Category = "Agent", - Cost = 1, - Attack = 4, - Health = 3, - Description = "Round End: Decay. When I Decay, all enemies Decay.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - "Decay", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Braindead Bouncer", - ImageFile = "Wilfred, Lobotomizer.png", - }, - new() - { - Name = "Witch of the Woods", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 2, - Description = "Play: (C) Deplete an Enemy. Round Start: Create a Return to Stillness in hand.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Forest Recluse", - ImageFile = "Witch of the Woods.png", - }, - new() - { - Name = "Wolf", - Category = "Token", + Name = "Bathe in Flames", + Category = "Spell", Cost = 2, - Attack = 2, - Health = 1, - Description = "Confront.", - Faction = "Lifeblood", + Description = "Deal 2 to an ally to deal 2 to an Agent. Shift to Volcanic Rivers.", + Faction = "Splintergleam", Set = "Core Set", + Speed = "Fast", Archetypes = [ ], - ImageFile = "Wolf.png", + ImageFile = "Bathe in Flames.png", }, new() { - Name = "Wom, Sweet Wom", - Category = "Agent", + Name = "Bloodbolt", + Category = "Spell", + Cost = 3, + Description = "Deal 2 to an Agent or Core. Breakdown 15: Instead, deal 3.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Bloodbolt.png", + }, + new() + { + Name = "Bloodlust", + Category = "Spell", Cost = 2, - Attack = 1, - Health = 4, - Description = "Activate: Reduce an Agent's Strength by my Strength this round. When I see an enemy Agent reduced to 0 Strength, grant allies +1/+0.", - Faction = "Singularity", + Description = "An ally Strikes a damaged Agent. Create a Transient Fueled by Pain in hand.", + Faction = "Splintergleam", Set = "Core Set", + Speed = "Fast", Archetypes = [ ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Awakened Security System", - ImageFile = "Wom, Sweet Wom.png", + ImageFile = "Bloodlust.png", }, new() { - Name = "Wreck-o Rex", - Category = "Agent", - Cost = 8, - Attack = 9, - Health = 9, - Description = "Confront. Overpower. Cleave. Enter: Create a Throwdown in hand.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Hungry Tyrannosaur", - ImageFile = "Wreck-o Rex.png", - }, - new() - { - Name = "Xae, Dreamstrider", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 3, - Description = "Activate: (C) An Agent Flourish|Flourishes or Decays.", - Faction = "Lifeblood", - Set = "Core Set", - Archetypes = [ - "Flourish", - "Decay", - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Sleepy Druid", - ImageFile = "Xae, Dreamstrider.png", - }, - new() - { - Name = "Ylka, the Headliner", - Category = "Agent", - Cost = 3, - Attack = 3, - Health = 1, - Description = "Activate: Rock out. When allies Deplete, (C) Deal 2 to a random enemy. If it's dead or gone, deal 1 to the enemy Core instead.", - Faction = "Silence", - Set = "Core Set", - Archetypes = [ - ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Rotting Rocker", - ImageFile = "Ylka, the Headliner.png", - }, - new() - { - Name = "Zealot of the Hunt", - Category = "Agent", + Name = "BREAK AND SHATTER!", + Category = "Spell", Cost = 6, - Attack = 7, - Health = 5, - Description = "Enter or when I.", - Faction = "Lifeblood", + Description = "Surge. Give each ally +1/+1 for each point of Durability it is missing and Overpower this round.", + Faction = "Splintergleam", Set = "Core Set", + Speed = "Slow", Archetypes = [ ], - ImmortalizeTo = [ - "Khaelar", - ], - ImmortalizeWhen = "Give the strongest enemy Exposed and set its stats to 1/1 this round. Immortalize: I've destroyed an Agent.", - ImageFile = "Zealot of the Hunt.png", + ImageFile = "BREAK AND SHATTER!.png", }, new() { - Name = "Zel, the First Diver", - Category = "Agent", - Cost = 1, - Attack = 1, - Health = 3, - Description = "When I am Phased or Rewound, first Draw 1 and Flourish. When I am Rewound or Destroyed, I keep all permanent buffs.", - Faction = "Phasetide", + Name = "Channel Vigor", + Category = "Spell", + Cost = 2, + Description = "Deal 1 to an ally to give another ally +3/+1 this round.", + Faction = "Splintergleam", Set = "Core Set", + Speed = "Immediate", Archetypes = [ - "Rewound", ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Curious Acolyte", - ImageFile = "Zel, the First Diver.png", + ImageFile = "Channel Vigor.png", }, new() { - Name = "Ziv, the Adaptable", - Category = "Agent", + Name = "Circle of Strife", + Category = "Spell", + Cost = 2, + Description = "Deal 1 to an Agent. Create a Transient Bloodlust in hand.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Circle of Strife.png", + }, + new() + { + Name = "Fueled by Pain", + Category = "Spell", + Cost = 2, + Description = "A damaged ally Strikes an Agent. Create a Transient Circle of Strife in hand.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Fueled by Pain.png", + }, + new() + { + Name = "Go for the Heart", + Category = "Spell", Cost = 5, - Attack = 3, - Health = 5, - Description = "Play: Discard 1. When you Discard, I Flourish and grant me a random positive keyword.", - Faction = "Singularity", + Description = "Deal 3 to the enemy Core. Breakdown 10: Instead, deal 4. Breakdown 1: Instead, deal 5.", + Faction = "Splintergleam", Set = "Core Set", + Speed = "Slow", Archetypes = [ - "Flourish", - "Discarded", ], - ImmortalizeTo = [ - ], - ImmortalizeFrom = "Roiling Amalgam", - ImageFile = "Ziv, the Adaptable.png", + ImageFile = "Go for the Heart.png", }, new() { - Name = "Zorp, Unrecyclable", - Category = "Agent", + Name = "Ironblood Elixir", + Category = "Spell", Cost = 3, - Attack = 6, - Health = 1, - Description = "Overpower. Enter: Create a copy of me in hand.", - Faction = "Singularity", + Description = "Grant an ally +1/+2 and Fervor.", + Faction = "Splintergleam", Set = "Core Set", + Speed = "Immediate", Archetypes = [ ], - ImmortalizeTo = [ + ImageFile = "Ironblood Elixir.png", + }, + new() + { + Name = "Kintsu-Kai", + Category = "Spell", + Cost = 2, + Description = "Any amount of allies Bleed 1. Grant Bleed to a single enemy that many times.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Kintsu-Kai.png", + }, + new() + { + Name = "Magmatic Teachings", + Category = "Spell", + Cost = 3, + Description = "An Immortalized ally strikes an enemy. If that enemy is destroyed, Immortalize your weakest non-Immoralized ally.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Magmatic Teachings.png", + }, + new() + { + Name = "Paradox Cacophony", + Category = "Spell", + Cost = 2, + Description = "Shift to Torment. Paradox: Trigger Bleed.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Paradox Cacophony.png", + }, + new() + { + Name = "Rebuild", + Category = "Spell", + Cost = 1, + Description = "Deal 1 to an Agent or Core. If an Agent survives this damage, it Flourish|Flourishes.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Rebuild.png", + }, + new() + { + Name = "Rippling Resplendence", + Category = "Spell", + Cost = 5, + Description = "Grant allies Fervor. Deal 1 to all Agents. Breakdown 15: Deal 1 to all Agents.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Rippling Resplendence.png", + }, + new() + { + Name = "Sanguine Resurgence", + Category = "Spell", + Cost = 5, + Description = "Your Bleed effects gain Siphon this round. Two Agents Bleed 3.", + Faction = "Splintergleam", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Sanguine Resurgence.png", + }, + new() + { + Name = "Army of the Sun", + Category = "Spell", + Cost = 13, + Description = "Summon the Strongest Agent in your deck now and at each Round Start.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Army of the Sun.png", + }, + new() + { + Name = "Chaos Control", + Category = "Spell", + Cost = 3, + Description = "Give an ally +0/+3 to give an enemy -3/-0 this round.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Chaos Control.png", + }, + new() + { + Name = "Entropy's End", + Category = "Spell", + Cost = 7, + Description = "Revive an Agent.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Entropy's End.png", + }, + new() + { + Name = "Novathermal Mining", + Category = "Spell", + Cost = 5, + Description = "Gain an empty Energy Crystal. Sacrifice 3: Gain 4 Reserve Energy.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Novathermal Mining.png", + }, + new() + { + Name = "Paradox Capacitor", + Category = "Spell", + Cost = 4, + Description = "Gain 1 empty Energy Crystal. Paradox: Instead, gain 2 empty Energy Crystals.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Paradox Capacitor.png", + }, + new() + { + Name = "Radiant Channeling", + Category = "Spell", + Cost = 5, + Description = "Deal 0 to an Agent. Increase it by 2 and refill 1 Reserve Energy for each Reserve Energy spent to play this. Shift to Star Siphon.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Radiant Channeling.png", + }, + new() + { + Name = "Soothing Glow", + Category = "Spell", + Cost = 2, + Description = "An ally Flourish|Flourishes. Heal your Core 2.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Soothing Glow.png", + }, + new() + { + Name = "Sunshock", + Category = "Spell", + Cost = 2, + Description = "Deal 2 to an Agent or Core.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Sunshock.png", + }, + new() + { + Name = "Supernova", + Category = "Spell", + Cost = 5, + Description = "Deal 0 to an Agent. Increase it by 2 and refill 2 Energy Crystals for each time you've Overflowed this game.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Fast", + Archetypes = [ + ], + ImageFile = "Supernova.png", + }, + new() + { + Name = "Throw into the Sun", + Category = "Spell", + Cost = 6, + Description = "Erase any card in play.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Slow", + Archetypes = [ + ], + ImageFile = "Throw into the Sun.png", + }, + new() + { + Name = "Unlocked Potential", + Category = "Spell", + Cost = 8, + Description = "Grant an ally +9/+4.", + Faction = "Sungrace", + Set = "Core Set", + Speed = "Immediate", + Archetypes = [ + ], + ImageFile = "Unlocked Potential.png", + }, + new() + { + Name = "Deadly Fauna", + Category = "Timeline", + Description = "All Agents have Overpower.", + Faction = "Lifeblood", + Archetypes = [ + ], + }, + new() + { + Name = "The One True Timeline", + Category = "Timeline", + Description = "Round Start: Heal all Agents and Cores 1.", + Faction = "Phasetide", + Archetypes = [ + ], + }, + new() + { + Name = "Voiceless Sky", + Category = "Timeline", + Description = "If a player has exactly one Agent, it has +3/+3.", + Faction = "Silence", + Archetypes = [ + ], + }, + new() + { + Name = "Erudite Beacon", + Category = "Timeline", + Description = "When you Shift here, draw 1. Round Start: Players draw 1.", + Faction = "Singularity", + Archetypes = [ + ], + }, + new() + { + Name = "Torment", + Category = "Timeline", + Description = "All Agents and Cores have Bleed 1.", + Faction = "Splintergleam", + Archetypes = [ + ], + }, + new() + { + Name = "Volcanic Rivers", + Category = "Timeline", + Description = "When you Shift here, deal 1 to both Cores.", + Faction = "Splintergleam", + Archetypes = [ + ], + }, + new() + { + Name = "Star Siphon", + Category = "Timeline", + Description = "Round End: Refill all Energy Reserves.", + Faction = "Sungrace", + Archetypes = [ ], - ImmortalizeFrom = "Scuttling Spares", - ImageFile = "Zorp, Unrecyclable.png", } ]; } diff --git a/Chrono/Web/Pages/Cards.razor b/Chrono/Web/Pages/Cards.razor index b6af96c..6f7d000 100644 --- a/Chrono/Web/Pages/Cards.razor +++ b/Chrono/Web/Pages/Cards.razor @@ -112,7 +112,7 @@ {
@{ var idx = 0; } - @foreach (var card in filteredCards) + @foreach (var card in filteredCards.Where(a=>a.Category is "Agent" or "Spell")) {
@card.Cost
} - @if (card.HasImmortalize) + @if (card.IsImmortalized) {
diff --git a/Chrono/chrono.tasks b/Chrono/chrono.tasks deleted file mode 100644 index eb93f9f..0000000 --- a/Chrono/chrono.tasks +++ /dev/null @@ -1,47 +0,0 @@ -# Chrono CCG - Project Guide - -This project is a hosted Blazor WebAssembly application with a PostgreSQL database for persisting agent notes. - -## Prerequisites -- **Docker Desktop**: Required for the recommended containerized setup. -- **.NET 10 SDK**: Required if you want to build or run the project locally without Docker. - -## 1. Running with Docker (Recommended) -The easiest way to get everything running (App + PostgreSQL) is using Docker Compose. - -1. **Open a terminal** in the project root (`Chrono/`). -2. **Run the following command**: - ```bash - docker-compose up --build - ``` -3. **Access the Application**: - - Web Interface: http://localhost:8080 - - API Endpoint: http://localhost:8080/api/notes - -The database will be automatically initialized and migrations will be applied on startup. - -## 2. Running Locally (Development) -If you need to run the app directly (e.g., for faster debugging): - -1. **Start a PostgreSQL database**. You can use the one from docker-compose if you want: - ```bash - docker-compose up db - ``` -2. **Verify Connection String**: `Server/appsettings.Development.json` is pre-configured to point to `localhost`. -3. **Run the Server project**: - ```bash - cd Server - dotnet run --launch-profile https - ``` -4. The app will be served at the URL shown in the terminal (e.g., https://localhost:7266). - -## 3. Running Tests -To verify the core domain logic: -```bash -dotnet test -``` - -## 4. Key Features -- **Agent Notes**: In the "Cards" gallery, select an Agent to see the "Personal Note" field. Changes are auto-saved to the PostgreSQL database when you click away from the text area. -- **Auto-Migrations**: The Server project automatically handles database schema updates on startup. -- **Dockerized Architecture**: Complete orchestration of the web server and database. diff --git a/chrono.docs/.obsidian/workspace.json b/chrono.docs/.obsidian/workspace.json index c21b8cf..4cd2ace 100644 --- a/chrono.docs/.obsidian/workspace.json +++ b/chrono.docs/.obsidian/workspace.json @@ -8,17 +8,118 @@ "type": "tabs", "children": [ { - "id": "c90153d5f925b0d5", + "id": "d6fd830908a482d3", "type": "leaf", "state": { "type": "markdown", "state": { - "file": "Decks/Big Energy.md", + "file": "Deadly Fauna.md", "mode": "source", - "source": true + "source": false }, "icon": "lucide-file", - "title": "Big Energy" + "title": "Deadly Fauna" + } + }, + { + "id": "9aaa8a83f2165190", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Factions/Splintergleam.md", + "mode": "source", + "source": false + }, + "icon": "lucide-file", + "title": "Splintergleam" + } + }, + { + "id": "6870293355431c6b", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Factions/Singularity.md", + "mode": "source", + "source": false + }, + "icon": "lucide-file", + "title": "Singularity" + } + }, + { + "id": "c17e1da0a76701dd", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Factions/Singularity.md", + "mode": "source", + "source": false + }, + "icon": "lucide-file", + "title": "Singularity" + } + }, + { + "id": "8ee0871c924703d3", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Spells/Lifeblood/Affront to Nature.md", + "mode": "source", + "source": false + }, + "icon": "lucide-file", + "title": "Affront to Nature" + } + }, + { + "id": "277c05a1fb7da690", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Spells/Singularity/Aggressive Recycling.md", + "mode": "source", + "source": false + }, + "icon": "lucide-file", + "title": "Aggressive Recycling" + } + }, + { + "id": "f2231e7ad9851807", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Agents/Sungrace/Brilliant Martyr.md", + "mode": "source", + "source": false + }, + "icon": "lucide-file", + "title": "Brilliant Martyr" + } + } + ], + "currentTab": 6 + }, + { + "id": "ee75c69c63d8f248", + "type": "tabs", + "children": [ + { + "id": "c90153d5f925b0d5", + "type": "leaf", + "state": { + "type": "empty", + "state": {}, + "icon": "lucide-file", + "title": "New tab" } } ] @@ -53,7 +154,7 @@ "state": { "type": "search", "state": { - "query": "Paradox", + "query": "Immedi", "matchingCase": false, "explainSearch": false, "collapseAll": false, @@ -74,12 +175,11 @@ "title": "Bookmarks" } } - ], - "currentTab": 1 + ] } ], "direction": "horizontal", - "width": 233.5 + "width": 331.5 }, "right": { "id": "47f3bcd7aed212ab", @@ -184,54 +284,55 @@ "bases:Create new base": false } }, - "active": "c90153d5f925b0d5", + "active": "f2231e7ad9851807", "lastOpenFiles": [ - "Paradox Capacitor.md", - "Paradox Capacitor.png", "Decks/Big Energy.md", - "Swashbuckling Diehard.md", - "_Decks.base", - "Decks/Rewind Me.canvas", - "Decks/Rewind Me.md", - "Overpower.md", - "_Keyword.base", + "Decks/Sub/Big Energy.md", + "Decks/Sub", + "Redirects/Agents.md", "_Timeline.base", - "Bronk the Calm.md", - "Aggressive Recycling.md", - "Agents.md", - "Affront to Nature.png", - "Aardvark Precinct Captain.png", - "Aardvark Precinct Captain.md", - "A'kon, Starry Diviner.md", - "_Agents.base", - "_Factions.base", + "Redirects", + "Rules/Chain.md", + "Rules/Discarded.md", + "Rules/Round End.md", + "Rules/Core.md", + "Keywords/Sprout.md", + "Rules", + "Speed/Fast.md", + "Speed/Immediate.md", + "Spells/Singularity/Aggressive Recycling.md", + "Speed/Slow.md", + "Speed", + "Spells/Lifeblood/Affront to Nature.md", + "Tokens/Pocket Scout.md", + "Tokens/Seedling.png", + "Tokens/Pocket Scout.png", + "Factions/Silence.md", + "Tokens/Wolf.md", + "Tokens", + "Sets", + "Sets/Core Set.md", "_Spells.base", - "Xae, Dreamstrider.md", - "Ylka, the Headliner.md", - "Zealot of the Hunt.md", - "Zel, the First Diver.md", - "Ziv, the Adaptable.md", - "Zorp, Unrecyclable.md", - "Muffle.md", - "Mr. E.md", - "Nanobot Hive.md", - "Nascent Clone.md", - "E-Law, Boot Shepherd.md", - "Efficient Scrapbot.md", - "Egg Tender.md", - "Enhanced Retriever.md", - "Enlightened Refugee.md", - "Fervent Follower.png", - "Fervent Mycologist.png", - "Bearer of the Broth.png", - "Battleharts.png", - "Appeal to the Scrolls.png", - "Zealot of the Hunt.png", - "Dedicated Missionary.png", - "Master of Ceremonies.png.crdownload", - "Master of Ceremonies_files/v833ccba57c9e4d2798f2e76cebdd09a11778172276447", - "Master of Ceremonies_files/flux.min.js.download", - "Master of Ceremonies_files/livewire.min.js.download", + "_Keyword.base", + "_Factions.base", + "Rules/Cores.md", + "Factions/Sungrace.md", + "Factions/Phasetide.md", + "Factions/Singularity.md", + "Factions/Splintergleam.md", + "Untitled.md", + "Tokens/Seedling.md", + "Factions/Lifeblood.md", + "Timelines/Silence/Voiceless Sky.md", + "Khaelar.png", + "Agents Immortalized/Singularity/Zorp, Unrecyclable.png", + "Agents Immortalized/Singularity/Ziv, the Adaptable.png", + "Agents Immortalized/Phasetide/Zel, the First Diver.png", + "Agents/Lifeblood/Zealot of the Hunt.png", + "Agents Immortalized/Silence/Ylka, the Headliner.png", + "Agents Immortalized/Lifeblood/Xae, Dreamstrider.png", + "Agents Immortalized/Lifeblood/Wreck-o Rex.png", + "Decks/Rewind Me.canvas", "_Agents.canvas" ] } \ No newline at end of file diff --git a/chrono.docs/A'kon, Starry Diviner.md b/chrono.docs/A'kon, Starry Diviner.md deleted file mode 100644 index 00e3966..0000000 --- a/chrono.docs/A'kon, Starry Diviner.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 2 -health: 2 -description: "[[Enter]] or Last Gasp: Create a [[Return to Stillness]] in hand." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Somber Astronomer]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[A'kon, Starry Diviner.png]]" ---- - - -![[A'kon, Starry Diviner.png]] diff --git a/chrono.docs/A'kon, Starry Diviner.png b/chrono.docs/A'kon, Starry Diviner.png deleted file mode 100644 index 5958d17..0000000 Binary files a/chrono.docs/A'kon, Starry Diviner.png and /dev/null differ diff --git a/chrono.docs/Aardvark Precinct Captain.md b/chrono.docs/Aardvark Precinct Captain.md deleted file mode 100644 index a7a81cb..0000000 --- a/chrono.docs/Aardvark Precinct Captain.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 0 -health: 1 -description: "[[Enter]]: [[Sprout]] 1 for each other ally." -immortalizeWhen: "[[Round End]]: I see 5+ other allies. When I [[Immortalize]], [[Shift]] to [[Deadly Fauna]]." -immortalizeTo: - - "[[Tino, Majestic Stumbler]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Sprout]]" - - "[[Shift]]" -imageLink: "[[Aardvark Precinct Captain.png]]" ---- - - -![[Aardvark Precinct Captain.png]] diff --git a/chrono.docs/Aardvark Precinct Captain.png b/chrono.docs/Aardvark Precinct Captain.png deleted file mode 100644 index 9996185..0000000 Binary files a/chrono.docs/Aardvark Precinct Captain.png and /dev/null differ diff --git a/chrono.docs/Affront to Nature.md b/chrono.docs/Affront to Nature.md deleted file mode 100644 index f6207b6..0000000 --- a/chrono.docs/Affront to Nature.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 9 -description: "Allies [[Flourish]] 3 times. Enemies [[Decay]] 3 times." -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Affront to Nature.png]]" ---- - - -![[Affront to Nature.png]] diff --git a/chrono.docs/Affront to Nature.png b/chrono.docs/Affront to Nature.png deleted file mode 100644 index c10a421..0000000 Binary files a/chrono.docs/Affront to Nature.png and /dev/null differ diff --git a/chrono.docs/Agents.md b/chrono.docs/Agents.md deleted file mode 100644 index 6c19721..0000000 --- a/chrono.docs/Agents.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Redirect -see: "[[Agent]]" ---- diff --git a/chrono.docs/Aggressive Recycling.md b/chrono.docs/Aggressive Recycling.md deleted file mode 100644 index 22eadf0..0000000 --- a/chrono.docs/Aggressive Recycling.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Discard 2 to play. [[Draw]] 2. [[Sacrifice]] 3: Instead, Discard 3 to play. [[Draw]] 3." -faction: "[[Singularity]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Aggressive Recycling.png]]" ---- - - -![[Aggressive Recycling.png]] diff --git a/chrono.docs/Aggressive Recycling.png b/chrono.docs/Aggressive Recycling.png deleted file mode 100644 index e5580c4..0000000 Binary files a/chrono.docs/Aggressive Recycling.png and /dev/null differ diff --git a/chrono.docs/Alina Who Cuts the Strings.md b/chrono.docs/Alina Who Cuts the Strings.md deleted file mode 100644 index 9ad307a..0000000 --- a/chrono.docs/Alina Who Cuts the Strings.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 3 -health: 2 -description: "[[Play]]: (C) [[Mute]] an Agent. [[Activate]]: (C) Destroy a [[Mute|Muted]] Agent." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Destiny Ripper]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Alina Who Cuts the Strings.png]]" ---- - - -![[Alina Who Cuts the Strings.png]] diff --git a/chrono.docs/Alina Who Cuts the Strings.png b/chrono.docs/Alina Who Cuts the Strings.png deleted file mode 100644 index e05a0f1..0000000 Binary files a/chrono.docs/Alina Who Cuts the Strings.png and /dev/null differ diff --git a/chrono.docs/Alina, the Overflowing Cup.md b/chrono.docs/Alina, the Overflowing Cup.md deleted file mode 100644 index dd4d38e..0000000 --- a/chrono.docs/Alina, the Overflowing Cup.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 3 -health: 5 -description: "[[Enter]] or Round Start: Create a 0 cost [[Transient]] [[Blessed Soup]] in hand." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Bearer of the Broth]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Alina, the Overflowing Cup.png]]" ---- - - -![[Alina, the Overflowing Cup.png]] diff --git a/chrono.docs/Alina, the Overflowing Cup.png b/chrono.docs/Alina, the Overflowing Cup.png deleted file mode 100644 index 2d5bac5..0000000 Binary files a/chrono.docs/Alina, the Overflowing Cup.png and /dev/null differ diff --git a/chrono.docs/Appeal to the Scrolls.md b/chrono.docs/Appeal to the Scrolls.md deleted file mode 100644 index 2a646d1..0000000 --- a/chrono.docs/Appeal to the Scrolls.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 5 -description: "If you have 1 or less Agents, I cost 2 less. [[Draw]] 2 Actions." -faction: "[[Silence]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Appeal to the Scrolls.png]]" ---- - - -![[Appeal to the Scrolls.png]] diff --git a/chrono.docs/Appeal to the Scrolls.png b/chrono.docs/Appeal to the Scrolls.png deleted file mode 100644 index 90665a2..0000000 Binary files a/chrono.docs/Appeal to the Scrolls.png and /dev/null differ diff --git a/chrono.docs/Armageddonaut.md b/chrono.docs/Armageddonaut.md deleted file mode 100644 index b2cc40f..0000000 --- a/chrono.docs/Armageddonaut.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 6 -health: 6 -description: "Cleave. [[Enter]] or when I destroy an Agent: Create a [[Circle of Strife]] in hand." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Hungry Engine]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Armageddonaut.png]]" ---- - - -![[Armageddonaut.png]] diff --git a/chrono.docs/Armageddonaut.png b/chrono.docs/Armageddonaut.png deleted file mode 100644 index f27ba3e..0000000 Binary files a/chrono.docs/Armageddonaut.png and /dev/null differ diff --git a/chrono.docs/Army of the Sun.md b/chrono.docs/Army of the Sun.md deleted file mode 100644 index 0597d45..0000000 --- a/chrono.docs/Army of the Sun.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 13 -description: "Summon the Strongest Agent in your deck now and at each Round Start." -faction: "[[Sungrace]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Army of the Sun.png]]" ---- - - -![[Army of the Sun.png]] diff --git a/chrono.docs/Army of the Sun.png b/chrono.docs/Army of the Sun.png deleted file mode 100644 index 10c6cb9..0000000 Binary files a/chrono.docs/Army of the Sun.png and /dev/null differ diff --git a/chrono.docs/Arra, Saurian Broodmother.md b/chrono.docs/Arra, Saurian Broodmother.md deleted file mode 100644 index d63c397..0000000 --- a/chrono.docs/Arra, Saurian Broodmother.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 2 -description: "[[Activate]]: The next ally that enters play this round [[Flourish|Flourishes]]. The first time each round another ally [[Flourish|Flourishes]], I [[Flourish]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Egg Tender]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Arra, Saurian Broodmother.png]]" ---- - - -![[Arra, Saurian Broodmother.png]] diff --git a/chrono.docs/Arra, Saurian Broodmother.png b/chrono.docs/Arra, Saurian Broodmother.png deleted file mode 100644 index 8a37b81..0000000 Binary files a/chrono.docs/Arra, Saurian Broodmother.png and /dev/null differ diff --git a/chrono.docs/Awakened Security System.md b/chrono.docs/Awakened Security System.md deleted file mode 100644 index a382b09..0000000 --- a/chrono.docs/Awakened Security System.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 1 -health: 3 -description: "[[Activate]]: Reduce an Agent's Strength by my Strength this round." -immortalizeWhen: "I see 3+ Agents with 0 Strength in play." -immortalizeTo: - - "[[Wom, Sweet Wom]]" -immortalizeFrom: N/A -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Awakened Security System.png]]" ---- - - -![[Awakened Security System.png]] diff --git a/chrono.docs/Awakened Security System.png b/chrono.docs/Awakened Security System.png deleted file mode 100644 index 07942c5..0000000 Binary files a/chrono.docs/Awakened Security System.png and /dev/null differ diff --git a/chrono.docs/B.O.O.F..md b/chrono.docs/B.O.O.F..md deleted file mode 100644 index 7d37f42..0000000 --- a/chrono.docs/B.O.O.F..md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 3 -health: 2 -description: "[[Enter]]: [[Draw]] a 1 cost Agent from your deck. [[Round End]]: If I do not see a 1 cost ally in play, [[Draw]] a 1 cost Agent from your deck." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Enhanced Retriever]]" -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - "[[Draw]]" -imageLink: "[[B.O.O.F..png]]" ---- - - -![[B.O.O.F..png]] diff --git a/chrono.docs/B.O.O.F..png b/chrono.docs/B.O.O.F..png deleted file mode 100644 index d0cdb91..0000000 Binary files a/chrono.docs/B.O.O.F..png and /dev/null differ diff --git a/chrono.docs/BREAK AND SHATTER!.md b/chrono.docs/BREAK AND SHATTER!.md deleted file mode 100644 index 98b30db..0000000 --- a/chrono.docs/BREAK AND SHATTER!.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 6 -description: "[[Surge]]. Give each ally +1/+1 for each point of Durability it is missing and [[Overpower]] this round." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[BREAK AND SHATTER!.png]]" ---- - - -![[BREAK AND SHATTER!.png]] diff --git a/chrono.docs/BREAK AND SHATTER!.png b/chrono.docs/BREAK AND SHATTER!.png deleted file mode 100644 index 5f0c07c..0000000 Binary files a/chrono.docs/BREAK AND SHATTER!.png and /dev/null differ diff --git a/chrono.docs/Backhand.md b/chrono.docs/Backhand.md deleted file mode 100644 index 7ffa39b..0000000 --- a/chrono.docs/Backhand.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Destroy an Agent with 2 or less Strength or Durability." -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Backhand.png]]" ---- - - -![[Backhand.png]] diff --git a/chrono.docs/Backhand.png b/chrono.docs/Backhand.png deleted file mode 100644 index 449a200..0000000 Binary files a/chrono.docs/Backhand.png and /dev/null differ diff --git a/chrono.docs/Balanced Blade.md b/chrono.docs/Balanced Blade.md deleted file mode 100644 index 7d9bc8b..0000000 --- a/chrono.docs/Balanced Blade.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "The next time an ally Strikes an enemy this round, first grant it Strength equal to its target's Durability." -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Balanced Blade.png]]" ---- - - -![[Balanced Blade.png]] diff --git a/chrono.docs/Balanced Blade.png b/chrono.docs/Balanced Blade.png deleted file mode 100644 index 26e00dd..0000000 Binary files a/chrono.docs/Balanced Blade.png and /dev/null differ diff --git a/chrono.docs/Bareknuckle Inquisitor.md b/chrono.docs/Bareknuckle Inquisitor.md deleted file mode 100644 index 9fcf8ac..0000000 --- a/chrono.docs/Bareknuckle Inquisitor.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 3 -health: 8 -description: "[[Confront]]. Siphon. [[Enter]]: Deal 4 to me." -immortalizeWhen: "I've seen allies or your Core [[Heal]] 6+." -immortalizeTo: - - "[[Da'Kad, Heretic Crusher]]" -immortalizeFrom: N/A -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Heal]]" -imageLink: "[[Bareknuckle Inquisitor.png]]" ---- - - -![[Bareknuckle Inquisitor.png]] diff --git a/chrono.docs/Bareknuckle Inquisitor.png b/chrono.docs/Bareknuckle Inquisitor.png deleted file mode 100644 index a60e4df..0000000 Binary files a/chrono.docs/Bareknuckle Inquisitor.png and /dev/null differ diff --git a/chrono.docs/Bathe in Flames.md b/chrono.docs/Bathe in Flames.md deleted file mode 100644 index 685d051..0000000 --- a/chrono.docs/Bathe in Flames.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Deal 2 to an ally to deal 2 to an Agent. [[Shift]] to Volcanic Rivers." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Bathe in Flames.png]]" ---- - - -![[Bathe in Flames.png]] diff --git a/chrono.docs/Bathe in Flames.png b/chrono.docs/Bathe in Flames.png deleted file mode 100644 index b282a4c..0000000 Binary files a/chrono.docs/Bathe in Flames.png and /dev/null differ diff --git a/chrono.docs/Battleharts.md b/chrono.docs/Battleharts.md deleted file mode 100644 index ff4e142..0000000 --- a/chrono.docs/Battleharts.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 0 -health: 1 -description: "[[Overpower]]. When another ally enters play, I [[Flourish]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Glade Grazers]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Battleharts.png]]" ---- - - -![[Battleharts.png]] diff --git a/chrono.docs/Battleharts.png b/chrono.docs/Battleharts.png deleted file mode 100644 index eae2813..0000000 Binary files a/chrono.docs/Battleharts.png and /dev/null differ diff --git a/chrono.docs/Bearer of the Broth.md b/chrono.docs/Bearer of the Broth.md deleted file mode 100644 index ad18048..0000000 --- a/chrono.docs/Bearer of the Broth.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 2 -health: 4 -description: "[[Enter]]: Create a 0 cost [[Transient]] [[Blessed Soup]] in hand." -immortalizeWhen: "You've played [[Blessed Soup]] 2+ times this game." -immortalizeTo: - - "[[Alina, the Overflowing Cup]]" -immortalizeFrom: N/A -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Bearer of the Broth.png]]" ---- - - -![[Bearer of the Broth.png]] diff --git a/chrono.docs/Bearer of the Broth.png b/chrono.docs/Bearer of the Broth.png deleted file mode 100644 index d0f00b4..0000000 Binary files a/chrono.docs/Bearer of the Broth.png and /dev/null differ diff --git a/chrono.docs/Bill, First Point of Contact.md b/chrono.docs/Bill, First Point of Contact.md deleted file mode 100644 index 3c81d16..0000000 --- a/chrono.docs/Bill, First Point of Contact.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 3 -health: 4 -description: "[[Enter]], [[Deplete]], or Round Start: Create a [[Transient]] [[Scouter Round]] in hand." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Enthusiastic Bot-Poke]]" -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Bill, First Point of Contact.png]]" ---- - - -![[Bill, First Point of Contact.png]] diff --git a/chrono.docs/Bill, First Point of Contact.png b/chrono.docs/Bill, First Point of Contact.png deleted file mode 100644 index 8e90cb4..0000000 Binary files a/chrono.docs/Bill, First Point of Contact.png and /dev/null differ diff --git a/chrono.docs/Blazing Shifter.md b/chrono.docs/Blazing Shifter.md deleted file mode 100644 index f28b561..0000000 --- a/chrono.docs/Blazing Shifter.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 2 -health: 2 -description: "[[Enter]]: [[Shift]] to Volcanic Rivers. I have +1/+1 for each Timeline in the Timeline Stack." -immortalizeWhen: "I have 7+ Strength." -immortalizeTo: - - "[[The Unstoppable Flow]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Blazing Shifter.png]]" ---- - - -![[Blazing Shifter.png]] diff --git a/chrono.docs/Blazing Shifter.png b/chrono.docs/Blazing Shifter.png deleted file mode 100644 index fc4aa34..0000000 Binary files a/chrono.docs/Blazing Shifter.png and /dev/null differ diff --git a/chrono.docs/Blessed Soup.md b/chrono.docs/Blessed Soup.md deleted file mode 100644 index 083734e..0000000 --- a/chrono.docs/Blessed Soup.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "[[Heal]] an Agent or Core 2. [[Draw]] 1." -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Blessed Soup.png]]" ---- - - -![[Blessed Soup.png]] diff --git a/chrono.docs/Blessed Soup.png b/chrono.docs/Blessed Soup.png deleted file mode 100644 index 1a3a162..0000000 Binary files a/chrono.docs/Blessed Soup.png and /dev/null differ diff --git a/chrono.docs/Bloodbolt.md b/chrono.docs/Bloodbolt.md deleted file mode 100644 index 6b3df6e..0000000 --- a/chrono.docs/Bloodbolt.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "Deal 2 to an Agent or Core. Breakdown 15: Instead, deal 3." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Bloodbolt.png]]" ---- - - -![[Bloodbolt.png]] diff --git a/chrono.docs/Bloodbolt.png b/chrono.docs/Bloodbolt.png deleted file mode 100644 index a6be616..0000000 Binary files a/chrono.docs/Bloodbolt.png and /dev/null differ diff --git a/chrono.docs/Bloodline Tracker.md b/chrono.docs/Bloodline Tracker.md deleted file mode 100644 index 3e17baa..0000000 --- a/chrono.docs/Bloodline Tracker.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 1 -description: "[[Activate]]: [[Sacrifice]] 1: (C) Deal 1 to the enemy Core." -immortalizeWhen: I've dealt 6+ damage. -immortalizeTo: - - "[[Master of Ceremonies]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Bloodline Tracker.png]]" ---- - - -![[Bloodline Tracker.png]] - - diff --git a/chrono.docs/Bloodline Tracker.png b/chrono.docs/Bloodline Tracker.png deleted file mode 100644 index 7a55270..0000000 Binary files a/chrono.docs/Bloodline Tracker.png and /dev/null differ diff --git a/chrono.docs/Bloodlust.md b/chrono.docs/Bloodlust.md deleted file mode 100644 index f0b0017..0000000 --- a/chrono.docs/Bloodlust.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "An ally Strikes a damaged Agent. Create a [[Transient]] [[Fueled by Pain]] in hand." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Bloodlust.png]]" ---- - - -![[Bloodlust.png]] diff --git a/chrono.docs/Bloodlust.png b/chrono.docs/Bloodlust.png deleted file mode 100644 index 08d7781..0000000 Binary files a/chrono.docs/Bloodlust.png and /dev/null differ diff --git a/chrono.docs/Bloom.md b/chrono.docs/Bloom.md deleted file mode 100644 index a188160..0000000 --- a/chrono.docs/Bloom.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Give an ally +0/+2 this round. [[Sprout]] 1." -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Bloom.png]]" ---- - - -![[Bloom.png]] diff --git a/chrono.docs/Bloom.png b/chrono.docs/Bloom.png deleted file mode 100644 index d418d20..0000000 Binary files a/chrono.docs/Bloom.png and /dev/null differ diff --git a/chrono.docs/Boatswain Corvus.md b/chrono.docs/Boatswain Corvus.md deleted file mode 100644 index 26741c6..0000000 --- a/chrono.docs/Boatswain Corvus.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 7 -attack: 6 -health: 10 -description: "[[Overpower]]. Round Start: Deal 1 to the enemy Core twice. When you deal non-combat damage to the enemy Core, grant the weakest enemy Exposed. [[Core Strike]]: Deal 3 to all enemies and t..." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Gilded Behemoth]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Boatswain Corvus.png]]" ---- - - -![[Boatswain Corvus.png]] diff --git a/chrono.docs/Boatswain Corvus.png b/chrono.docs/Boatswain Corvus.png deleted file mode 100644 index 89db8a8..0000000 Binary files a/chrono.docs/Boatswain Corvus.png and /dev/null differ diff --git a/chrono.docs/Boof, Ever Loyal.md b/chrono.docs/Boof, Ever Loyal.md deleted file mode 100644 index f96da17..0000000 --- a/chrono.docs/Boof, Ever Loyal.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 3 -health: 5 -description: "[[Enter]]: Deal 4 to me. Last Gasp: Return the last Action that was put into your Graveyard this round to hand." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Temple Guard Hound]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Boof, Ever Loyal.png]]" ---- - - -![[Boof, Ever Loyal.png]] diff --git a/chrono.docs/Boof, Ever Loyal.png b/chrono.docs/Boof, Ever Loyal.png deleted file mode 100644 index 7242abb..0000000 Binary files a/chrono.docs/Boof, Ever Loyal.png and /dev/null differ diff --git a/chrono.docs/Boof, Lonely and Proud.md b/chrono.docs/Boof, Lonely and Proud.md deleted file mode 100644 index a7ce016..0000000 --- a/chrono.docs/Boof, Lonely and Proud.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 3 -health: 3 -description: "[[Confront]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Territorial Pack]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Boof, Lonely and Proud.png]]" ---- - - -![[Boof, Lonely and Proud.png]] diff --git a/chrono.docs/Boof, Lonely and Proud.png b/chrono.docs/Boof, Lonely and Proud.png deleted file mode 100644 index a1c8545..0000000 Binary files a/chrono.docs/Boof, Lonely and Proud.png and /dev/null differ diff --git a/chrono.docs/Boof, the Champion.md b/chrono.docs/Boof, the Champion.md deleted file mode 100644 index 03fd099..0000000 --- a/chrono.docs/Boof, the Champion.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 4 -health: 4 -description: "[[Overpower]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Pit Dog]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Boof, the Champion.png]]" ---- - - -![[Boof, the Champion.png]] diff --git a/chrono.docs/Boof, the Champion.png b/chrono.docs/Boof, the Champion.png deleted file mode 100644 index 1924570..0000000 Binary files a/chrono.docs/Boof, the Champion.png and /dev/null differ diff --git a/chrono.docs/Boof, the Listener.md b/chrono.docs/Boof, the Listener.md deleted file mode 100644 index 003c1a1..0000000 --- a/chrono.docs/Boof, the Listener.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 2 -health: 1 -description: "[[Enter]] and Last Gasp: [[Draw]] a random 1, 2, or 3 cost Action from your deck." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Librarian's Assistant]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - "[[Draw]]" -imageLink: "[[Boof, the Listener.png]]" ---- - - -![[Boof, the Listener.png]] diff --git a/chrono.docs/Boof, the Listener.png b/chrono.docs/Boof, the Listener.png deleted file mode 100644 index fefd186..0000000 Binary files a/chrono.docs/Boof, the Listener.png and /dev/null differ diff --git a/chrono.docs/Braindead Bouncer.md b/chrono.docs/Braindead Bouncer.md deleted file mode 100644 index e49fd25..0000000 --- a/chrono.docs/Braindead Bouncer.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 3 -health: 2 -description: "[[Round End]]: [[Decay]]." -immortalizeWhen: "Round Start: I see [[Voiceless Sky]]." -immortalizeTo: - - "[[Wilfred, Lobotomizer]]" -immortalizeFrom: N/A -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - "[[Decay]]" - - "[[Shift]]" -imageLink: "[[Braindead Bouncer.png]]" ---- - - -![[Braindead Bouncer.png]] diff --git a/chrono.docs/Braindead Bouncer.png b/chrono.docs/Braindead Bouncer.png deleted file mode 100644 index 7a7211d..0000000 Binary files a/chrono.docs/Braindead Bouncer.png and /dev/null differ diff --git a/chrono.docs/Brant the Bloody.md b/chrono.docs/Brant the Bloody.md deleted file mode 100644 index 723fc57..0000000 --- a/chrono.docs/Brant the Bloody.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 2 -health: 3 -description: "[[Confront]]. Agents I [[Strike]] Bleed 1. When an enemy Bleeds, I [[Flourish]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Persistent Squire]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Brant the Bloody.png]]" ---- - - -![[Brant the Bloody.png]] diff --git a/chrono.docs/Brant the Bloody.png b/chrono.docs/Brant the Bloody.png deleted file mode 100644 index 2c718b3..0000000 Binary files a/chrono.docs/Brant the Bloody.png and /dev/null differ diff --git a/chrono.docs/Bright-Eyed Supplicant.md b/chrono.docs/Bright-Eyed Supplicant.md deleted file mode 100644 index dcba5d3..0000000 --- a/chrono.docs/Bright-Eyed Supplicant.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 2 -health: 4 -description: "[[Confront]]." -immortalizeWhen: "I've survived damage twice." -immortalizeTo: - - "[[Overseer of Trials]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Bright-Eyed Supplicant.png]]" ---- - - -![[Bright-Eyed Supplicant.png]] diff --git a/chrono.docs/Bright-Eyed Supplicant.png b/chrono.docs/Bright-Eyed Supplicant.png deleted file mode 100644 index 8fdffe4..0000000 Binary files a/chrono.docs/Bright-Eyed Supplicant.png and /dev/null differ diff --git a/chrono.docs/Brilliant Martyr.md b/chrono.docs/Brilliant Martyr.md deleted file mode 100644 index f841b52..0000000 --- a/chrono.docs/Brilliant Martyr.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 2 -health: 1 -description: "Last Gasp: [[Shift]] to Star Siphon." -immortalizeWhen: "I see your Energy Reserve Overflow." -immortalizeTo: - - "[[Quaid, the Willing]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Brilliant Martyr.png]]" ---- - - -![[Brilliant Martyr.png]] diff --git a/chrono.docs/Brilliant Martyr.png b/chrono.docs/Brilliant Martyr.png deleted file mode 100644 index 2eac81a..0000000 Binary files a/chrono.docs/Brilliant Martyr.png and /dev/null differ diff --git a/chrono.docs/Bronk the Calm.md b/chrono.docs/Bronk the Calm.md deleted file mode 100644 index 636db43..0000000 --- a/chrono.docs/Bronk the Calm.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 3 -health: 4 -description: "[[Enter]]: Summon a [[Wolf]] and [[Shift]] to [[Abundant Growth]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Panicked Refugee]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Bronk the Calm.png]]" ---- - - -![[Bronk the Calm.png]] diff --git a/chrono.docs/Bronk the Calm.png b/chrono.docs/Bronk the Calm.png deleted file mode 100644 index e9cb1b7..0000000 Binary files a/chrono.docs/Bronk the Calm.png and /dev/null differ diff --git a/chrono.docs/Bronk the Guide.md b/chrono.docs/Bronk the Guide.md deleted file mode 100644 index 75d8e98..0000000 --- a/chrono.docs/Bronk the Guide.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 3 -health: 3 -description: "[[Enter]]: [[Shift]] to Erudite Beacon. [[Activate]]: [[Shift]] to Erudite Beacon." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Enlightened Refugee]]" -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Bronk the Guide.png]]" ---- - - -![[Bronk the Guide.png]] diff --git a/chrono.docs/Bronk the Guide.png b/chrono.docs/Bronk the Guide.png deleted file mode 100644 index 83ff50e..0000000 Binary files a/chrono.docs/Bronk the Guide.png and /dev/null differ diff --git a/chrono.docs/Brutal Reveler.md b/chrono.docs/Brutal Reveler.md deleted file mode 100644 index e64103e..0000000 --- a/chrono.docs/Brutal Reveler.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 7 -attack: 6 -health: 5 -description: "[[Overpower]]. The first time each round anything takes damage, create a [[Transient]] [[Bloodbolt]] in hand." -immortalizeWhen: "Breakdown 10." -immortalizeTo: - - "[[Tyar, Benevolent Ruler]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Brutal Reveler.png]]" ---- - - -![[Brutal Reveler.png]] diff --git a/chrono.docs/Brutal Reveler.png b/chrono.docs/Brutal Reveler.png deleted file mode 100644 index 4e8e616..0000000 Binary files a/chrono.docs/Brutal Reveler.png and /dev/null differ diff --git a/chrono.docs/Built to Burn.md b/chrono.docs/Built to Burn.md deleted file mode 100644 index a94f228..0000000 --- a/chrono.docs/Built to Burn.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 5 -description: "Summon a Temporary exact copy of an ally." -faction: "[[Singularity]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Built to Burn.png]]" ---- - - -![[Built to Burn.png]] diff --git a/chrono.docs/Built to Burn.png b/chrono.docs/Built to Burn.png deleted file mode 100644 index af4574f..0000000 Binary files a/chrono.docs/Built to Burn.png and /dev/null differ diff --git a/chrono.docs/Bullseye Bounty Hunter.md b/chrono.docs/Bullseye Bounty Hunter.md deleted file mode 100644 index f011a5f..0000000 --- a/chrono.docs/Bullseye Bounty Hunter.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 4 -health: 3 -description: "[[Blitz]]. Cleave. [[Play]]: Grant two enemies Exposed." -immortalizeWhen: "I've destroyed two enemies." -immortalizeTo: - - "[[Sareh, Rebel Strategist]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Bullseye Bounty Hunter.png]]" ---- - - -![[Bullseye Bounty Hunter.png]] diff --git a/chrono.docs/Bullseye Bounty Hunter.png b/chrono.docs/Bullseye Bounty Hunter.png deleted file mode 100644 index eb32b75..0000000 Binary files a/chrono.docs/Bullseye Bounty Hunter.png and /dev/null differ diff --git a/chrono.docs/Burrowing Beetles.md b/chrono.docs/Burrowing Beetles.md deleted file mode 100644 index 47a5bdd..0000000 --- a/chrono.docs/Burrowing Beetles.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 1 -description: "[[Evasive]]." -immortalizeWhen: "I've seen allies [[Flourish]] 4+ times." -immortalizeTo: - - "[[The Cycle Embodied]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Burrowing Beetles.png]]" ---- - - -![[Burrowing Beetles.png]] diff --git a/chrono.docs/Burrowing Beetles.png b/chrono.docs/Burrowing Beetles.png deleted file mode 100644 index 062c7a8..0000000 Binary files a/chrono.docs/Burrowing Beetles.png and /dev/null differ diff --git a/chrono.docs/Bury the Evidence.md b/chrono.docs/Bury the Evidence.md deleted file mode 100644 index c590a53..0000000 --- a/chrono.docs/Bury the Evidence.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "An enemy Decays twice, or an ally Decays twice to [[Draw]] 2." -faction: "[[Silence]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Bury the Evidence.png]]" ---- - - -![[Bury the Evidence.png]] diff --git a/chrono.docs/Bury the Evidence.png b/chrono.docs/Bury the Evidence.png deleted file mode 100644 index e7274c5..0000000 Binary files a/chrono.docs/Bury the Evidence.png and /dev/null differ diff --git a/chrono.docs/By the Numbers.md b/chrono.docs/By the Numbers.md deleted file mode 100644 index a72974e..0000000 --- a/chrono.docs/By the Numbers.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Reveal the top card of both decks. Create a copy of the card with the higher cost in hand, then shuffle both cards into their respective decks. In a tie, create a copy of both card..." -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[By the Numbers.png]]" ---- - - -![[By the Numbers.png]] diff --git a/chrono.docs/By the Numbers.png b/chrono.docs/By the Numbers.png deleted file mode 100644 index d656efa..0000000 Binary files a/chrono.docs/By the Numbers.png and /dev/null differ diff --git a/chrono.docs/Canine Adjutant.md b/chrono.docs/Canine Adjutant.md deleted file mode 100644 index 3c28cc3..0000000 --- a/chrono.docs/Canine Adjutant.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 2 -health: 1 -description: "[[Evasive]]. [[Core Strike]]: [[Erase]] the enemy Graveyard." -immortalizeWhen: "I've Struck the enemy Core." -immortalizeTo: - - "[[Specialist Boof]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Canine Adjutant.png]]" ---- - - -![[Canine Adjutant.png]] diff --git a/chrono.docs/Canine Adjutant.png b/chrono.docs/Canine Adjutant.png deleted file mode 100644 index 3039222..0000000 Binary files a/chrono.docs/Canine Adjutant.png and /dev/null differ diff --git a/chrono.docs/Cascading Serenity.md b/chrono.docs/Cascading Serenity.md deleted file mode 100644 index 90c8206..0000000 --- a/chrono.docs/Cascading Serenity.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "Destroy an Agent with cost 2 or less. Create a [[Return to Stillness]] in hand." -faction: "[[Silence]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Cascading Serenity.png]]" ---- - - -![[Cascading Serenity.png]] diff --git a/chrono.docs/Cascading Serenity.png b/chrono.docs/Cascading Serenity.png deleted file mode 100644 index a21aa51..0000000 Binary files a/chrono.docs/Cascading Serenity.png and /dev/null differ diff --git a/chrono.docs/Chain.md b/chrono.docs/Chain.md deleted file mode 100644 index 25ee4e5..0000000 --- a/chrono.docs/Chain.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Rule -description: Effects are stacked until they are able to be resolved. This enables [[Immediate]] and [[Fast]] reactions to be added onto the stack for reactive gameplay. ---- diff --git a/chrono.docs/Channel Vigor.md b/chrono.docs/Channel Vigor.md deleted file mode 100644 index 637621d..0000000 --- a/chrono.docs/Channel Vigor.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Deal 1 to an ally to give another ally +3/+1 this round." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Channel Vigor.png]]" ---- - - -![[Channel Vigor.png]] diff --git a/chrono.docs/Channel Vigor.png b/chrono.docs/Channel Vigor.png deleted file mode 100644 index 01c42d0..0000000 Binary files a/chrono.docs/Channel Vigor.png and /dev/null differ diff --git a/chrono.docs/Chaos Conductor Boltz.md b/chrono.docs/Chaos Conductor Boltz.md deleted file mode 100644 index 3044081..0000000 --- a/chrono.docs/Chaos Conductor Boltz.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 6 -health: 4 -description: "[[Blitz]]. When you play an Action, gain 1 Reserve Energy. Round Start: Create a [[Transient]] [[Sunshock]] in hand for each Reserve Energy you have." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Jury of the Second Law]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Chaos Conductor Boltz.png]]" ---- - - -![[Chaos Conductor Boltz.png]] diff --git a/chrono.docs/Chaos Conductor Boltz.png b/chrono.docs/Chaos Conductor Boltz.png deleted file mode 100644 index f08bec4..0000000 Binary files a/chrono.docs/Chaos Conductor Boltz.png and /dev/null differ diff --git a/chrono.docs/Chaos Control.md b/chrono.docs/Chaos Control.md deleted file mode 100644 index 2b8a05a..0000000 --- a/chrono.docs/Chaos Control.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "Give an ally +0/+3 to give an enemy -3/-0 this round." -faction: "[[Sungrace]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Chaos Control.png]]" ---- - - -![[Chaos Control.png]] diff --git a/chrono.docs/Chaos Control.png b/chrono.docs/Chaos Control.png deleted file mode 100644 index aeb36e2..0000000 Binary files a/chrono.docs/Chaos Control.png and /dev/null differ diff --git a/chrono.docs/Chronal Quarantine.md b/chrono.docs/Chronal Quarantine.md deleted file mode 100644 index 2cb710b..0000000 --- a/chrono.docs/Chronal Quarantine.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 7 -description: "[[Phase]] enemies. [[Phase]] allies. If [[The One True Timeline]] is active, allies [[Phase]] in." -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Chronal Quarantine.png]]" ---- - - -![[Chronal Quarantine.png]] diff --git a/chrono.docs/Chronal Quarantine.png b/chrono.docs/Chronal Quarantine.png deleted file mode 100644 index 77eddb8..0000000 Binary files a/chrono.docs/Chronal Quarantine.png and /dev/null differ diff --git a/chrono.docs/Chronal Scan.md b/chrono.docs/Chronal Scan.md deleted file mode 100644 index 97c47dd..0000000 --- a/chrono.docs/Chronal Scan.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "Discard 1 to play. Create a [[Transient]] copy in hand of an ally now and at next Round Start." -faction: "[[Singularity]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Chronal Scan.png]]" ---- - - -![[Chronal Scan.png]] diff --git a/chrono.docs/Chronal Scan.png b/chrono.docs/Chronal Scan.png deleted file mode 100644 index b9165a8..0000000 Binary files a/chrono.docs/Chronal Scan.png and /dev/null differ diff --git a/chrono.docs/Chronicle of the One.md b/chrono.docs/Chronicle of the One.md deleted file mode 100644 index fc4e48e..0000000 --- a/chrono.docs/Chronicle of the One.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -category: Spell -description: Create a [[Transient]] [[Out of Line]], [[The Firm Hand]], or [[Prayer of Rescue]] in hand. -cost: 1 -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Chronicle of the One.png]]" ---- - -![[Chronicle of the One.png]] diff --git a/chrono.docs/Chronicle of the One.png b/chrono.docs/Chronicle of the One.png deleted file mode 100644 index 39ed298..0000000 Binary files a/chrono.docs/Chronicle of the One.png and /dev/null differ diff --git a/chrono.docs/Chronosynthesis.md b/chrono.docs/Chronosynthesis.md deleted file mode 100644 index 3a09e17..0000000 --- a/chrono.docs/Chronosynthesis.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 8 -description: "[[Sprout]] 1 for every time you have [[Sprout|Sprouted]] this game." -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Chronosynthesis.png]]" ---- - - -![[Chronosynthesis.png]] diff --git a/chrono.docs/Chronosynthesis.png b/chrono.docs/Chronosynthesis.png deleted file mode 100644 index 036ffde..0000000 Binary files a/chrono.docs/Chronosynthesis.png and /dev/null differ diff --git a/chrono.docs/Circle of Strife.md b/chrono.docs/Circle of Strife.md deleted file mode 100644 index f740f88..0000000 --- a/chrono.docs/Circle of Strife.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Deal 1 to an Agent. Create a [[Transient]] [[Bloodlust]] in hand." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Circle of Strife.png]]" ---- - - -![[Circle of Strife.png]] diff --git a/chrono.docs/Circle of Strife.png b/chrono.docs/Circle of Strife.png deleted file mode 100644 index 4554ab0..0000000 Binary files a/chrono.docs/Circle of Strife.png and /dev/null differ diff --git a/chrono.docs/Clarion, Deepest Breath.md b/chrono.docs/Clarion, Deepest Breath.md deleted file mode 100644 index bab324a..0000000 --- a/chrono.docs/Clarion, Deepest Breath.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 6 -health: 6 -description: "When you play an Action, (C) [[Shift]] to Volcanic Rivers. Your Actions and Timelines you [[Shift]] to have Siphon." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Magmatic Tether]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Clarion, Deepest Breath.png]]" ---- - - -![[Clarion, Deepest Breath.png]] diff --git a/chrono.docs/Clarion, Deepest Breath.png b/chrono.docs/Clarion, Deepest Breath.png deleted file mode 100644 index bf6a4e3..0000000 Binary files a/chrono.docs/Clarion, Deepest Breath.png and /dev/null differ diff --git a/chrono.docs/Conscientious Overwrite.md b/chrono.docs/Conscientious Overwrite.md deleted file mode 100644 index 399a38f..0000000 --- a/chrono.docs/Conscientious Overwrite.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Deal 2 to an Agent. Create a [[Scouter Round]] in hand." -faction: "[[Singularity]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Conscientious Overwrite.png]]" ---- - - -![[Conscientious Overwrite.png]] diff --git a/chrono.docs/Conscientious Overwrite.png b/chrono.docs/Conscientious Overwrite.png deleted file mode 100644 index 130d244..0000000 Binary files a/chrono.docs/Conscientious Overwrite.png and /dev/null differ diff --git a/chrono.docs/Consequence Admin Cain.md b/chrono.docs/Consequence Admin Cain.md deleted file mode 100644 index 946c5fc..0000000 --- a/chrono.docs/Consequence Admin Cain.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 2 -health: 1 -description: "[[Play]]: [icon][[Phase]] an Agent. Agents cannot [[Phase]] in while I am in play." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Karmic Debtor]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Rewound]]" -imageLink: "[[Consequence Admin Cain.png]]" ---- - - -![[Consequence Admin Cain.png]] diff --git a/chrono.docs/Consequence Admin Cain.png b/chrono.docs/Consequence Admin Cain.png deleted file mode 100644 index 745d95b..0000000 Binary files a/chrono.docs/Consequence Admin Cain.png and /dev/null differ diff --git a/chrono.docs/Containment Breach.md b/chrono.docs/Containment Breach.md deleted file mode 100644 index 9c6d40d..0000000 --- a/chrono.docs/Containment Breach.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 2 -health: 6 -description: "Round Start: Deal 1 to each Agent and Core for each Reserve Energy you have." -immortalizeWhen: "I've seen 3+ Agents destroyed." -immortalizeTo: - - "[[Penitent Star]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Containment Breach.png]]" ---- - - -![[Containment Breach.png]] diff --git a/chrono.docs/Containment Breach.png b/chrono.docs/Containment Breach.png deleted file mode 100644 index c78c063..0000000 Binary files a/chrono.docs/Containment Breach.png and /dev/null differ diff --git a/chrono.docs/Convergent Pack.md b/chrono.docs/Convergent Pack.md deleted file mode 100644 index df4c3bb..0000000 --- a/chrono.docs/Convergent Pack.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 4 -description: "[[Shift]] to [[Abundant Growth]]. For every two Timelines in the Timeline Stack, summon an attacking [[Wolf]] Confronting the weakest unconfronted enemy." -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Convergent Pack.png]]" ---- - - -![[Convergent Pack.png]] diff --git a/chrono.docs/Convergent Pack.png b/chrono.docs/Convergent Pack.png deleted file mode 100644 index b9bf43a..0000000 Binary files a/chrono.docs/Convergent Pack.png and /dev/null differ diff --git a/chrono.docs/Core Set.md b/chrono.docs/Core Set.md deleted file mode 100644 index dc567fa..0000000 --- a/chrono.docs/Core Set.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -category: Set ---- diff --git a/chrono.docs/Core.md b/chrono.docs/Core.md deleted file mode 100644 index 7c9f3dc..0000000 --- a/chrono.docs/Core.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -category: Rule ---- diff --git a/chrono.docs/Cores.md b/chrono.docs/Cores.md deleted file mode 100644 index aaf685b..0000000 --- a/chrono.docs/Cores.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Redirect -see: "[[Core]]" ---- diff --git a/chrono.docs/Curb the Anomalies.md b/chrono.docs/Curb the Anomalies.md deleted file mode 100644 index eda9feb..0000000 --- a/chrono.docs/Curb the Anomalies.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 6 -description: "I cost 1 less if you see [[The One True Timeline]]. [[Mute]] all Agents this round. [[Shift]] to [[The One True Timeline]]." -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Curb the Anomalies.png]]" ---- - - -![[Curb the Anomalies.png]] diff --git a/chrono.docs/Curb the Anomalies.png b/chrono.docs/Curb the Anomalies.png deleted file mode 100644 index 95b716a..0000000 Binary files a/chrono.docs/Curb the Anomalies.png and /dev/null differ diff --git a/chrono.docs/Curious Acolyte.md b/chrono.docs/Curious Acolyte.md deleted file mode 100644 index 140eee4..0000000 --- a/chrono.docs/Curious Acolyte.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -category: Agent -description: When I am [[Phased]] or [[Rewound]], [[Draw]] 1. -immortalizeWhen: I am [[Phased]] or [[Rewound]]. -immortalizeTo: "[[Zel, the First Diver]]" -attack: 1 -health: 3 -cost: 1 -faction: "[[Phasetide]]" -set: "[[Core Set]]" -immortalizeFrom: N/A -archetypes: - - "[[Rewound]]" -imageLink: "[[Curious Acolyte.png]]" ---- - - -![[Curious Acolyte.png]] diff --git a/chrono.docs/Curious Acolyte.png b/chrono.docs/Curious Acolyte.png deleted file mode 100644 index 545ce65..0000000 Binary files a/chrono.docs/Curious Acolyte.png and /dev/null differ diff --git a/chrono.docs/Da'Kad, Heretic Crusher.md b/chrono.docs/Da'Kad, Heretic Crusher.md deleted file mode 100644 index d141dbe..0000000 --- a/chrono.docs/Da'Kad, Heretic Crusher.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 4 -health: 9 -description: "[[Confront]]. Siphon. [[Enter]]: Deal 4 to me. When an ally or your Core heals, Deal 1 to the enemy Core." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Bareknuckle Inquisitor]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Heal]]" -imageLink: "[[Da'Kad, Heretic Crusher.png]]" ---- - - -![[Da'Kad, Heretic Crusher.png]] diff --git a/chrono.docs/Da'Kad, Heretic Crusher.png b/chrono.docs/Da'Kad, Heretic Crusher.png deleted file mode 100644 index 777c8bd..0000000 Binary files a/chrono.docs/Da'Kad, Heretic Crusher.png and /dev/null differ diff --git a/chrono.docs/Daville, the Star Song.md b/chrono.docs/Daville, the Star Song.md deleted file mode 100644 index 9b866ce..0000000 --- a/chrono.docs/Daville, the Star Song.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 5 -health: 5 -description: "[[Activate]]: [[Refresh]] an ally. That ally cannot [[Refresh]] again this round. When an ally [[Deplete|Depletes]], if I see [[Voiceless Sky]], give it +3/+3 this round." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Death Jockey]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Daville, the Star Song.png]]" ---- - - -![[Daville, the Star Song.png]] diff --git a/chrono.docs/Daville, the Star Song.png b/chrono.docs/Daville, the Star Song.png deleted file mode 100644 index 955fbb6..0000000 Binary files a/chrono.docs/Daville, the Star Song.png and /dev/null differ diff --git a/chrono.docs/Deadly Fauna.md b/chrono.docs/Deadly Fauna.md deleted file mode 100644 index bf4c8fe..0000000 --- a/chrono.docs/Deadly Fauna.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: Timeline -description: All Agents have [[Overpower]]. -faction: "[[Lifeblood]]" ---- diff --git a/chrono.docs/Death Jockey.md b/chrono.docs/Death Jockey.md deleted file mode 100644 index 8021f4e..0000000 --- a/chrono.docs/Death Jockey.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 4 -health: 4 -description: "[[Activate]]: [[Refresh]] an ally. That ally cannot [[Refresh]] again this round." -immortalizeWhen: "I've seen allies [[Refresh]] 4+ times." -immortalizeTo: - - "[[Daville, the Star Song]]" -immortalizeFrom: N/A -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Death Jockey.png]]" ---- - - -![[Death Jockey.png]] diff --git a/chrono.docs/Death Jockey.png b/chrono.docs/Death Jockey.png deleted file mode 100644 index 0fef17d..0000000 Binary files a/chrono.docs/Death Jockey.png and /dev/null differ diff --git a/chrono.docs/Debris Collector.md b/chrono.docs/Debris Collector.md deleted file mode 100644 index 616af4d..0000000 --- a/chrono.docs/Debris Collector.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 1 -health: 1 -description: "I have +1/+1 for every Energy Crystal you have." -immortalizeWhen: "I have 10+ Strength." -immortalizeTo: - - "[[Living Comet]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Debris Collector.png]]" ---- - - -![[Debris Collector.png]] diff --git a/chrono.docs/Debris Collector.png b/chrono.docs/Debris Collector.png deleted file mode 100644 index efbab67..0000000 Binary files a/chrono.docs/Debris Collector.png and /dev/null differ diff --git a/chrono.docs/Dedicated Missionary.md b/chrono.docs/Dedicated Missionary.md deleted file mode 100644 index 43c98fc..0000000 --- a/chrono.docs/Dedicated Missionary.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 3 -health: 2 -description: "[[Evasive]]. I cost 1 less for each copy of [[The One True Timeline]] in the Timeline Stack. [[Enter]]: Create a [[The Firm Hand]] in hand." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Slow Convert]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Dedicated Missionary.png]]" ---- - - -![[Dedicated Missionary.png]] diff --git a/chrono.docs/Dedicated Missionary.png b/chrono.docs/Dedicated Missionary.png deleted file mode 100644 index ab0d558..0000000 Binary files a/chrono.docs/Dedicated Missionary.png and /dev/null differ diff --git a/chrono.docs/Denizen of Flames.md b/chrono.docs/Denizen of Flames.md deleted file mode 100644 index 1150b77..0000000 --- a/chrono.docs/Denizen of Flames.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 2 -health: 1 -description: "[[Enter]]: [[Shift]] to Volcanic Rivers." -immortalizeWhen: "I see you [[Shift]] to Volcanic Rivers while Volcanic Rivers is the current Timeline." -immortalizeTo: - - "[[Magnus Lavaborn]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Denizen of Flames.png]]" ---- - - -![[Denizen of Flames.png]] diff --git a/chrono.docs/Denizen of Flames.png b/chrono.docs/Denizen of Flames.png deleted file mode 100644 index 7909cff..0000000 Binary files a/chrono.docs/Denizen of Flames.png and /dev/null differ diff --git a/chrono.docs/Desperate Primordial.md b/chrono.docs/Desperate Primordial.md deleted file mode 100644 index 51d6ee9..0000000 --- a/chrono.docs/Desperate Primordial.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 4 -health: 2 -description: "[[Overpower]]. Temporary." -immortalizeWhen: "I've seen the enemy Core take damage twice." -immortalizeTo: - - "[[Vera, Original Proof]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Desperate Primordial.png]]" ---- - - -![[Desperate Primordial.png]] diff --git a/chrono.docs/Desperate Primordial.png b/chrono.docs/Desperate Primordial.png deleted file mode 100644 index f398b4a..0000000 Binary files a/chrono.docs/Desperate Primordial.png and /dev/null differ diff --git a/chrono.docs/Destiny Ripper.md b/chrono.docs/Destiny Ripper.md deleted file mode 100644 index 645a583..0000000 --- a/chrono.docs/Destiny Ripper.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 2 -health: 1 -description: "[[Play]]: (C) [[Mute]] an Agent." -immortalizeWhen: "I've seen 3+ Agents [[Mute|Muted]]." -immortalizeTo: - - "[[Alina Who Cuts the Strings]]" -immortalizeFrom: N/A -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Destiny Ripper.png]]" ---- - - -![[Destiny Ripper.png]] diff --git a/chrono.docs/Destiny Ripper.png b/chrono.docs/Destiny Ripper.png deleted file mode 100644 index fe4d3a8..0000000 Binary files a/chrono.docs/Destiny Ripper.png and /dev/null differ diff --git a/chrono.docs/Devoted Bloodletter.md b/chrono.docs/Devoted Bloodletter.md deleted file mode 100644 index b8625e6..0000000 --- a/chrono.docs/Devoted Bloodletter.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 4 -health: 5 -description: "The first time each round I deal or take damage, [[Draw]] 1 and [[Shift]] to Torment." -immortalizeWhen: "I've Drawn 3+ cards." -immortalizeTo: - - "[[Opener of the Way]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" - - "[[Draw]]" -imageLink: "[[Devoted Bloodletter.png]]" ---- - - -![[Devoted Bloodletter.png]] diff --git a/chrono.docs/Devoted Bloodletter.png b/chrono.docs/Devoted Bloodletter.png deleted file mode 100644 index d138e91..0000000 Binary files a/chrono.docs/Devoted Bloodletter.png and /dev/null differ diff --git a/chrono.docs/Devourer Spawn.md b/chrono.docs/Devourer Spawn.md deleted file mode 100644 index 3a4ac38..0000000 --- a/chrono.docs/Devourer Spawn.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 10 -attack: 10 -health: 10 -description: "For each Timeline in the Timeline Stack, I gain a random positive keyword." -immortalizeWhen: "I've gained 7+ keywords." -immortalizeTo: - - "[[Time Devourer Soval]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Devourer Spawn.png]]" ---- - - -![[Devourer Spawn.png]] diff --git a/chrono.docs/Devourer Spawn.png b/chrono.docs/Devourer Spawn.png deleted file mode 100644 index 876ad46..0000000 Binary files a/chrono.docs/Devourer Spawn.png and /dev/null differ diff --git a/chrono.docs/Dhali, Bearer of Memories.md b/chrono.docs/Dhali, Bearer of Memories.md deleted file mode 100644 index cdb0e61..0000000 --- a/chrono.docs/Dhali, Bearer of Memories.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 4 -health: 5 -description: "[[Round End]]: Create in hand a random Action that started in your deck. When you play an Action you've already played this game, copy it." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Overburdened Scribe]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Dhali, Bearer of Memories.png]]" ---- - - -![[Dhali, Bearer of Memories.png]] diff --git a/chrono.docs/Dhali, Bearer of Memories.png b/chrono.docs/Dhali, Bearer of Memories.png deleted file mode 100644 index 376ad28..0000000 Binary files a/chrono.docs/Dhali, Bearer of Memories.png and /dev/null differ diff --git a/chrono.docs/Discarded.md b/chrono.docs/Discarded.md deleted file mode 100644 index c94319c..0000000 --- a/chrono.docs/Discarded.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Rule -description: Remove this card from your hand. ---- diff --git a/chrono.docs/Disciplined Student.md b/chrono.docs/Disciplined Student.md deleted file mode 100644 index bfaf78f..0000000 --- a/chrono.docs/Disciplined Student.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 2 -health: 1 -description: "[[Enter]]: Create in hand a random Action that started in your deck." -immortalizeWhen: "I see [[Voiceless Sky]]." -immortalizeTo: - - "[[True Believer]]" -immortalizeFrom: N/A -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Disciplined Student.png]]" ---- - - -![[Disciplined Student.png]] diff --git a/chrono.docs/Disciplined Student.png b/chrono.docs/Disciplined Student.png deleted file mode 100644 index f77d849..0000000 Binary files a/chrono.docs/Disciplined Student.png and /dev/null differ diff --git a/chrono.docs/Divergence Assasin.md b/chrono.docs/Divergence Assasin.md deleted file mode 100644 index 53dbf2d..0000000 --- a/chrono.docs/Divergence Assasin.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 6 -health: 3 -description: "[[Blitz]]. I cost 1 less for each time you've [[Phased]] or [[Rewound]] an Agent this game. Strike: [[Rewind]] me.]]" -immortalizeWhen: You've [[Phased]] or [[Rewound]] Agents 6+ times this game. -immortalizeTo: - - "[[Masa, Time-Lost]]" -immortalizeFrom: N/A -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Rewound]]" ---- diff --git a/chrono.docs/Doctor Mirthram Remora.md b/chrono.docs/Doctor Mirthram Remora.md deleted file mode 100644 index a5c7c68..0000000 --- a/chrono.docs/Doctor Mirthram Remora.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 3 -health: 4 -description: "[[Enter]] and Overflow: [[Heal]] allies and your Core 1. [[Round End]]: Deal damage to enemies and the enemy Core equal to each time you've healed your Core this round." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Starfueled Medics]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Heal]]" -imageLink: "[[Doctor Mirthram Remora.png]]" ---- - - -![[Doctor Mirthram Remora.png]] diff --git a/chrono.docs/Doctor Mirthram Remora.png b/chrono.docs/Doctor Mirthram Remora.png deleted file mode 100644 index ced4886..0000000 Binary files a/chrono.docs/Doctor Mirthram Remora.png and /dev/null differ diff --git a/chrono.docs/Draw.md b/chrono.docs/Draw.md deleted file mode 100644 index f535da1..0000000 --- a/chrono.docs/Draw.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Keyword -description: Place the card from the top of your deck into your hand. ---- diff --git a/chrono.docs/Dyson, the Aspirant.md b/chrono.docs/Dyson, the Aspirant.md deleted file mode 100644 index 818880d..0000000 --- a/chrono.docs/Dyson, the Aspirant.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 3 -health: 3 -description: "[[Confront]]. [[Enter]]: [[Shift]] to Star Siphon." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Kinetic Absorber]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Dyson, the Aspirant.png]]" ---- - - -![[Dyson, the Aspirant.png]] diff --git a/chrono.docs/Dyson, the Aspirant.png b/chrono.docs/Dyson, the Aspirant.png deleted file mode 100644 index cdd4b3e..0000000 Binary files a/chrono.docs/Dyson, the Aspirant.png and /dev/null differ diff --git a/chrono.docs/E-Law, Boot Shepherd.md b/chrono.docs/E-Law, Boot Shepherd.md deleted file mode 100644 index c5d44ab..0000000 --- a/chrono.docs/E-Law, Boot Shepherd.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 3 -health: 2 -description: "[[Play]]: Discard 1 to [[Draw]] 1. Round Start: [[Draw]] 1." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Efficient Scrapbot]]" -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - "[[Draw]]" - - "[[Discarded]]" -imageLink: "[[E-Law, Boot Shepherd.png]]" ---- - - -![[E-Law, Boot Shepherd.png]] diff --git a/chrono.docs/E-Law, Boot Shepherd.png b/chrono.docs/E-Law, Boot Shepherd.png deleted file mode 100644 index 6ed5f13..0000000 Binary files a/chrono.docs/E-Law, Boot Shepherd.png and /dev/null differ diff --git a/chrono.docs/Efficient Scrapbot.md b/chrono.docs/Efficient Scrapbot.md deleted file mode 100644 index 756f430..0000000 --- a/chrono.docs/Efficient Scrapbot.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 2 -health: 1 -description: "[[Play]]: Discard 1 to [[Draw]] 1." -immortalizeWhen: "I've seen you [[Draw]] 6+ cards." -immortalizeTo: - - "[[E-Law, Boot Shepherd]]" -immortalizeFrom: N/A -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - "[[Draw]]" - - "[[Discarded]]" -imageLink: "[[Efficient Scrapbot.png]]" ---- - - -![[Efficient Scrapbot.png]] diff --git a/chrono.docs/Efficient Scrapbot.png b/chrono.docs/Efficient Scrapbot.png deleted file mode 100644 index a8fbdba..0000000 Binary files a/chrono.docs/Efficient Scrapbot.png and /dev/null differ diff --git a/chrono.docs/Egg Tender.md b/chrono.docs/Egg Tender.md deleted file mode 100644 index 7a531e9..0000000 --- a/chrono.docs/Egg Tender.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 0 -health: 1 -description: "[[Activate]]: The next ally that enters play this round [[Flourish|Flourishes]]." -immortalizeWhen: "I've seen allies [[Flourish]] 4+ times." -immortalizeTo: - - "[[Arra, Saurian Broodmother]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Egg Tender.png]]" ---- - - -![[Egg Tender.png]] diff --git a/chrono.docs/Egg Tender.png b/chrono.docs/Egg Tender.png deleted file mode 100644 index bfc831f..0000000 Binary files a/chrono.docs/Egg Tender.png and /dev/null differ diff --git a/chrono.docs/Enhanced Retriever.md b/chrono.docs/Enhanced Retriever.md deleted file mode 100644 index 694bcdf..0000000 --- a/chrono.docs/Enhanced Retriever.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 2 -health: 1 -description: "[[Enter]]: [[Draw]] a 1 cost Agent from your deck." -immortalizeWhen: "[[Round End]]: I see a 1 cost ally in play." -immortalizeTo: - - "[[B.O.O.F.]]" -immortalizeFrom: N/A -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - "[[Draw]]" -imageLink: "[[Enhanced Retriever.png]]" ---- - - -![[Enhanced Retriever.png]] diff --git a/chrono.docs/Enhanced Retriever.png b/chrono.docs/Enhanced Retriever.png deleted file mode 100644 index 5d7303c..0000000 Binary files a/chrono.docs/Enhanced Retriever.png and /dev/null differ diff --git a/chrono.docs/Enlightened Refugee.md b/chrono.docs/Enlightened Refugee.md deleted file mode 100644 index fc49fa8..0000000 --- a/chrono.docs/Enlightened Refugee.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 2 -health: 2 -description: "[[Enter]]: [[Shift]] to Erudite Beacon." -immortalizeWhen: "I've seen you [[Draw]] 6+ cards." -immortalizeTo: - - "[[Bronk the Guide]]" -immortalizeFrom: N/A -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" - - "[[Draw]]" -imageLink: "[[Enlightened Refugee.png]]" ---- - - -![[Enlightened Refugee.png]] diff --git a/chrono.docs/Enlightened Refugee.png b/chrono.docs/Enlightened Refugee.png deleted file mode 100644 index 712f1f2..0000000 Binary files a/chrono.docs/Enlightened Refugee.png and /dev/null differ diff --git a/chrono.docs/Enlightened Survivor.md b/chrono.docs/Enlightened Survivor.md deleted file mode 100644 index 6dba893..0000000 --- a/chrono.docs/Enlightened Survivor.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 4 -health: 5 -description: "Rejuvenate." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Stalwart Champion]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Enlightened Survivor.png]]" ---- - - -![[Enlightened Survivor.png]] diff --git a/chrono.docs/Enlightened Survivor.png b/chrono.docs/Enlightened Survivor.png deleted file mode 100644 index 8e84840..0000000 Binary files a/chrono.docs/Enlightened Survivor.png and /dev/null differ diff --git a/chrono.docs/Enthusiastic Bot-Poke.md b/chrono.docs/Enthusiastic Bot-Poke.md deleted file mode 100644 index 1e8b2dd..0000000 --- a/chrono.docs/Enthusiastic Bot-Poke.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 2 -health: 3 -description: "[[Enter]] or Round Start: Create a [[Transient]] [[Scouter Round]] in hand." -immortalizeWhen: "I see 3+ allied Pocket Scouts in play." -immortalizeTo: - - "[[Bill, First Point of Contact]]" -immortalizeFrom: N/A -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Enthusiastic Bot-Poke.png]]" ---- - - -![[Enthusiastic Bot-Poke.png]] diff --git a/chrono.docs/Enthusiastic Bot-Poke.png b/chrono.docs/Enthusiastic Bot-Poke.png deleted file mode 100644 index 6937dde..0000000 Binary files a/chrono.docs/Enthusiastic Bot-Poke.png and /dev/null differ diff --git a/chrono.docs/Entropy's End.md b/chrono.docs/Entropy's End.md deleted file mode 100644 index f56559c..0000000 --- a/chrono.docs/Entropy's End.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 7 -description: "Revive an Agent." -faction: "[[Sungrace]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Entropy's End.png]]" ---- - - -![[Entropy's End.png]] diff --git a/chrono.docs/Entropy's End.png b/chrono.docs/Entropy's End.png deleted file mode 100644 index b7f8c83..0000000 Binary files a/chrono.docs/Entropy's End.png and /dev/null differ diff --git a/chrono.docs/Erudite Beacon.md b/chrono.docs/Erudite Beacon.md deleted file mode 100644 index bf8e510..0000000 --- a/chrono.docs/Erudite Beacon.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: Timeline -description: "When you Shift here, draw 1. Round Start: Players draw 1." -faction: "[[Singularity]]" ---- diff --git a/chrono.docs/Eruption Incarnate.md b/chrono.docs/Eruption Incarnate.md deleted file mode 100644 index 1ee6cf1..0000000 --- a/chrono.docs/Eruption Incarnate.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 5 -health: 5 -description: "[[Overpower]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Hidden Locus]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Eruption Incarnate.png]]" ---- - - -![[Eruption Incarnate.png]] diff --git a/chrono.docs/Eruption Incarnate.png b/chrono.docs/Eruption Incarnate.png deleted file mode 100644 index d6ad310..0000000 Binary files a/chrono.docs/Eruption Incarnate.png and /dev/null differ diff --git a/chrono.docs/Evolution Incarnate.md b/chrono.docs/Evolution Incarnate.md deleted file mode 100644 index 37a19db..0000000 --- a/chrono.docs/Evolution Incarnate.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 6 -health: 6 -description: "[[Confront]]. [[Enter]] or [[Round End]]: [[Shift]] to [[Deadly Fauna]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Harbinger of Power]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Evolution Incarnate.png]]" ---- - - -![[Evolution Incarnate.png]] diff --git a/chrono.docs/Evolution Incarnate.png b/chrono.docs/Evolution Incarnate.png deleted file mode 100644 index e1c77ae..0000000 Binary files a/chrono.docs/Evolution Incarnate.png and /dev/null differ diff --git a/chrono.docs/Fast.md b/chrono.docs/Fast.md deleted file mode 100644 index 8609d77..0000000 --- a/chrono.docs/Fast.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Keyword -description: This spell can be reacted to. ---- diff --git a/chrono.docs/Fervent Follower.md b/chrono.docs/Fervent Follower.md deleted file mode 100644 index 4b75724..0000000 --- a/chrono.docs/Fervent Follower.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 1 -description: "[[Round End]]: I [[Flourish]]. When I see a [[Shift]] to a Timeline other than [[The One True Timeline]], deal 1 to me." -immortalizeWhen: "I have 6+ Strength." -immortalizeTo: - - "[[Pontifex Dhabu]]" -immortalizeFrom: N/A -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" - - "[[Shift]]" -imageLink: "[[Fervent Follower.png]]" ---- - - -![[Fervent Follower.png]] diff --git a/chrono.docs/Fervent Follower.png b/chrono.docs/Fervent Follower.png deleted file mode 100644 index 615a953..0000000 Binary files a/chrono.docs/Fervent Follower.png and /dev/null differ diff --git a/chrono.docs/Fervent Mycologist.md b/chrono.docs/Fervent Mycologist.md deleted file mode 100644 index e6d174e..0000000 --- a/chrono.docs/Fervent Mycologist.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 1 -description: "[[Evasive]]." -immortalizeWhen: I've Struck the enemy Core. -immortalizeTo: - - "[[Jenny, Sower of Spores]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Sprout]]" -imageLink: "[[Fervent Mycologist.png]]" ---- - - -![[Fervent Mycologist.png]] diff --git a/chrono.docs/Fervent Mycologist.png b/chrono.docs/Fervent Mycologist.png deleted file mode 100644 index b593bb4..0000000 Binary files a/chrono.docs/Fervent Mycologist.png and /dev/null differ diff --git a/chrono.docs/Flourish.md b/chrono.docs/Flourish.md deleted file mode 100644 index 4c35eef..0000000 --- a/chrono.docs/Flourish.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Keyword -description: Grant this Agent +1/+1. ---- diff --git a/chrono.docs/Focused Adaptation.md b/chrono.docs/Focused Adaptation.md deleted file mode 100644 index 90e5d34..0000000 --- a/chrono.docs/Focused Adaptation.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 4 -description: "Give an ally \"The next time I would be destroyed, instead heal me to full and heal your Core the same amount\" this round." -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Focused Adaptation.png]]" ---- - - -![[Focused Adaptation.png]] diff --git a/chrono.docs/Focused Adaptation.png b/chrono.docs/Focused Adaptation.png deleted file mode 100644 index 2a4bd45..0000000 Binary files a/chrono.docs/Focused Adaptation.png and /dev/null differ diff --git a/chrono.docs/Forest Recluse.md b/chrono.docs/Forest Recluse.md deleted file mode 100644 index 4f00ba5..0000000 --- a/chrono.docs/Forest Recluse.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 3 -health: 2 -description: "[[Play]]: (C) [[Deplete]] an enemy." -immortalizeWhen: "I've seen Agents [[Deplete]] 4+ times." -immortalizeTo: - - "[[Witch of the Woods]]" -immortalizeFrom: N/A -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Forest Recluse.png]]" ---- - - -![[Forest Recluse.png]] diff --git a/chrono.docs/Forest Recluse.png b/chrono.docs/Forest Recluse.png deleted file mode 100644 index 0ca5bd1..0000000 Binary files a/chrono.docs/Forest Recluse.png and /dev/null differ diff --git a/chrono.docs/Fractal Phantasm.md b/chrono.docs/Fractal Phantasm.md deleted file mode 100644 index d947c6c..0000000 --- a/chrono.docs/Fractal Phantasm.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 2 -health: 1 -description: "Temporary. Last Gasp: The next time you [[Shift]], revive me and grant copies of me *everywhere* +1/+0." -immortalizeWhen: "I have 4+ Strength." -immortalizeTo: - - "[[Quicksilver Khaela]]" -immortalizeFrom: N/A -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Fractal Phantasm.png]]" ---- - - -![[Fractal Phantasm.png]] diff --git a/chrono.docs/Fractal Phantasm.png b/chrono.docs/Fractal Phantasm.png deleted file mode 100644 index 2ca93ff..0000000 Binary files a/chrono.docs/Fractal Phantasm.png and /dev/null differ diff --git a/chrono.docs/Frontline Fellowship.md b/chrono.docs/Frontline Fellowship.md deleted file mode 100644 index 1a8e96b..0000000 --- a/chrono.docs/Frontline Fellowship.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 4 -description: "Disarm the strongest ally to Disarm the two strongest enemies." -faction: "[[Singularity]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Frontline Fellowship.png]]" ---- - - -![[Frontline Fellowship.png]] diff --git a/chrono.docs/Frontline Fellowship.png b/chrono.docs/Frontline Fellowship.png deleted file mode 100644 index 4c773a8..0000000 Binary files a/chrono.docs/Frontline Fellowship.png and /dev/null differ diff --git a/chrono.docs/Frontline Juggernaut.md b/chrono.docs/Frontline Juggernaut.md deleted file mode 100644 index 2fa417c..0000000 --- a/chrono.docs/Frontline Juggernaut.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 6 -health: 5 -description: "[[Overpower]]. Allied Breakdown sees both Cores." -immortalizeWhen: "Breakdown 10." -immortalizeTo: - - "[[Kurian, the Breaker]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Frontline Juggernaut.png]]" ---- - - -![[Frontline Juggernaut.png]] diff --git a/chrono.docs/Frontline Juggernaut.png b/chrono.docs/Frontline Juggernaut.png deleted file mode 100644 index 639c31c..0000000 Binary files a/chrono.docs/Frontline Juggernaut.png and /dev/null differ diff --git a/chrono.docs/Fueled by Pain.md b/chrono.docs/Fueled by Pain.md deleted file mode 100644 index 89b1d5f..0000000 --- a/chrono.docs/Fueled by Pain.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "A damaged ally Strikes an Agent. Create a [[Transient]] [[Circle of Strife]] in hand." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Fueled by Pain.png]]" ---- - - -![[Fueled by Pain.png]] diff --git a/chrono.docs/Fueled by Pain.png b/chrono.docs/Fueled by Pain.png deleted file mode 100644 index 023d014..0000000 Binary files a/chrono.docs/Fueled by Pain.png and /dev/null differ diff --git a/chrono.docs/Fuzzy Archivist.md b/chrono.docs/Fuzzy Archivist.md deleted file mode 100644 index 9da8a12..0000000 --- a/chrono.docs/Fuzzy Archivist.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 1 -health: 3 -description: "[[Evasive]]. [[Activate]]: Grant an Action in hand [[Transient]], then create an exact copy of it in hand." -immortalizeWhen: "I've seen Agents [[Deplete]] 4+ times." -immortalizeTo: - - "[[Greyl, the Problem]]" -immortalizeFrom: N/A -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Fuzzy Archivist.png]]" ---- - - -![[Fuzzy Archivist.png]] diff --git a/chrono.docs/Fuzzy Archivist.png b/chrono.docs/Fuzzy Archivist.png deleted file mode 100644 index 4668d38..0000000 Binary files a/chrono.docs/Fuzzy Archivist.png and /dev/null differ diff --git a/chrono.docs/Gardener Apprentice.md b/chrono.docs/Gardener Apprentice.md deleted file mode 100644 index 65e0015..0000000 --- a/chrono.docs/Gardener Apprentice.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 1 -description: "[[Enter]]: [[Sprout]] 1." -immortalizeWhen: I've seen you [[Sprout]] 4+ times. -immortalizeTo: - - "[[Horticulturalist Oswald]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Sprout]]" -imageLink: "[[Gardener Apprentice.png]]" ---- - - -![[Gardener Apprentice.png]] diff --git a/chrono.docs/Gardener Apprentice.png b/chrono.docs/Gardener Apprentice.png deleted file mode 100644 index 7df6187..0000000 Binary files a/chrono.docs/Gardener Apprentice.png and /dev/null differ diff --git a/chrono.docs/Gentle Frank.md b/chrono.docs/Gentle Frank.md deleted file mode 100644 index 5691ed1..0000000 --- a/chrono.docs/Gentle Frank.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 8 -attack: 9 -health: 15 -description: "Delay. [[Confront]]. If your opponent would [[Confront]] an Agent, they must [[Confront]] me if able. Allies and your Core take 1 less damage from all sources." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Lightsteel Colossus]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Gentle Frank.png]]" ---- - - -![[Gentle Frank.png]] diff --git a/chrono.docs/Gentle Frank.png b/chrono.docs/Gentle Frank.png deleted file mode 100644 index 54f05dc..0000000 Binary files a/chrono.docs/Gentle Frank.png and /dev/null differ diff --git a/chrono.docs/Gilded Behemoth.md b/chrono.docs/Gilded Behemoth.md deleted file mode 100644 index f66648d..0000000 --- a/chrono.docs/Gilded Behemoth.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 7 -attack: 5 -health: 9 -description: "[[Overpower]]. [[Core Strike]]: Deal 3 to the enemy Core." -immortalizeWhen: "You've dealt 15+ non-combat damage this game." -immortalizeTo: - - "[[Boatswain Corvus]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Gilded Behemoth.png]]" ---- - - -![[Gilded Behemoth.png]] diff --git a/chrono.docs/Gilded Behemoth.png b/chrono.docs/Gilded Behemoth.png deleted file mode 100644 index 634769b..0000000 Binary files a/chrono.docs/Gilded Behemoth.png and /dev/null differ diff --git a/chrono.docs/Glade Grazers.md b/chrono.docs/Glade Grazers.md deleted file mode 100644 index 839f259..0000000 --- a/chrono.docs/Glade Grazers.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 0 -health: 1 -description: "When another ally enters play, I [[Flourish]]." -immortalizeWhen: "I have 6+ Strength." -immortalizeTo: - - "[[Battleharts]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Glade Grazers.png]]" ---- - - -![[Glade Grazers.png]] diff --git a/chrono.docs/Glade Grazers.png b/chrono.docs/Glade Grazers.png deleted file mode 100644 index b29b77f..0000000 Binary files a/chrono.docs/Glade Grazers.png and /dev/null differ diff --git a/chrono.docs/Glasswinged Monarch.md b/chrono.docs/Glasswinged Monarch.md deleted file mode 100644 index 3ac35ca..0000000 --- a/chrono.docs/Glasswinged Monarch.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 4 -health: 4 -description: "[[Evasive]]. [[Enter]] or [[Core Strike]]: [[Shift]] to [[Abundant Growth]]." -immortalizeWhen: "I've seen you [[Shift]] twice." -immortalizeTo: - - "[[Omeganeura]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Glasswinged Monarch.png]]" ---- - - -![[Glasswinged Monarch.png]] diff --git a/chrono.docs/Glasswinged Monarch.png b/chrono.docs/Glasswinged Monarch.png deleted file mode 100644 index f25efd5..0000000 Binary files a/chrono.docs/Glasswinged Monarch.png and /dev/null differ diff --git a/chrono.docs/Glittering Gladiator.md b/chrono.docs/Glittering Gladiator.md deleted file mode 100644 index 7fc0950..0000000 --- a/chrono.docs/Glittering Gladiator.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 3 -description: "When I survive damage, grant me +2/+0." -immortalizeWhen: "I've Struck an Agent with less Strength than me." -immortalizeTo: - - "[[Scoot Sparkles]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Glittering Gladiator.png]]" ---- - - -![[Glittering Gladiator.png]] diff --git a/chrono.docs/Glittering Gladiator.png b/chrono.docs/Glittering Gladiator.png deleted file mode 100644 index cdfaced..0000000 Binary files a/chrono.docs/Glittering Gladiator.png and /dev/null differ diff --git a/chrono.docs/Gnosis.md b/chrono.docs/Gnosis.md deleted file mode 100644 index 6782015..0000000 --- a/chrono.docs/Gnosis.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "[[Draw]] 2. You may return any of those cards to the bottom of your deck. [[Sacrifice]] 2 for each card kept." -faction: "[[Silence]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Gnosis.png]]" ---- - - -![[Gnosis.png]] diff --git a/chrono.docs/Gnosis.png b/chrono.docs/Gnosis.png deleted file mode 100644 index acc3070..0000000 Binary files a/chrono.docs/Gnosis.png and /dev/null differ diff --git a/chrono.docs/Go for the Heart.md b/chrono.docs/Go for the Heart.md deleted file mode 100644 index 69a7245..0000000 --- a/chrono.docs/Go for the Heart.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 5 -description: "Deal 3 to the enemy Core. Breakdown 10: Instead, deal 4. Breakdown 1: Instead, deal 5." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Go for the Heart.png]]" ---- - - -![[Go for the Heart.png]] diff --git a/chrono.docs/Go for the Heart.png b/chrono.docs/Go for the Heart.png deleted file mode 100644 index 63679ab..0000000 Binary files a/chrono.docs/Go for the Heart.png and /dev/null differ diff --git a/chrono.docs/Grand Admiral Khaela.md b/chrono.docs/Grand Admiral Khaela.md deleted file mode 100644 index d4714de..0000000 --- a/chrono.docs/Grand Admiral Khaela.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 7 -attack: 6 -health: 7 -description: "[[Blitz]]. [[Play]] or Attack: [icon] [[Erase]] all enemies with a cost of 2 or less in play. When I'm attacking, allies have Cleave." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Gunnery Captain]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Grand Admiral Khaela.png]]" ---- - - -![[Grand Admiral Khaela.png]] diff --git a/chrono.docs/Grand Admiral Khaela.png b/chrono.docs/Grand Admiral Khaela.png deleted file mode 100644 index d5865de..0000000 Binary files a/chrono.docs/Grand Admiral Khaela.png and /dev/null differ diff --git a/chrono.docs/Grand Judge Dhael.md b/chrono.docs/Grand Judge Dhael.md deleted file mode 100644 index 34d8b37..0000000 --- a/chrono.docs/Grand Judge Dhael.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 7 -attack: 5 -health: 5 -description: "[[Activate]]: Return an Action from your Graveyard to your hand. It costs 3 less and has \"If I would be put into a Graveyard, instead [[Erase]] me.\"" -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Stern Arbiter]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Grand Judge Dhael.png]]" ---- - - -![[Grand Judge Dhael.png]] diff --git a/chrono.docs/Grand Judge Dhael.png b/chrono.docs/Grand Judge Dhael.png deleted file mode 100644 index 9050154..0000000 Binary files a/chrono.docs/Grand Judge Dhael.png and /dev/null differ diff --git a/chrono.docs/Greyl, the Problem.md b/chrono.docs/Greyl, the Problem.md deleted file mode 100644 index 561c3c4..0000000 --- a/chrono.docs/Greyl, the Problem.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 2 -health: 4 -description: "[[Evasive]]. [[Activate]]: Grant all Actions in hand [[Transient]], then create exact copies of them in hand." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Fuzzy Archivist]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Greyl, the Problem.png]]" ---- - - -![[Greyl, the Problem.png]] diff --git a/chrono.docs/Greyl, the Problem.png b/chrono.docs/Greyl, the Problem.png deleted file mode 100644 index d9ede1c..0000000 Binary files a/chrono.docs/Greyl, the Problem.png and /dev/null differ diff --git a/chrono.docs/Gritmancer Grant.md b/chrono.docs/Gritmancer Grant.md deleted file mode 100644 index 543a43b..0000000 --- a/chrono.docs/Gritmancer Grant.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 4 -health: 4 -description: "[[Evasive]]. Fervor." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Pterosaur Rider]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Gritmancer Grant.png]]" ---- - - -![[Gritmancer Grant.png]] diff --git a/chrono.docs/Gritmancer Grant.png b/chrono.docs/Gritmancer Grant.png deleted file mode 100644 index 65df1e9..0000000 Binary files a/chrono.docs/Gritmancer Grant.png and /dev/null differ diff --git a/chrono.docs/Gunnery Captain.md b/chrono.docs/Gunnery Captain.md deleted file mode 100644 index 7e86e94..0000000 --- a/chrono.docs/Gunnery Captain.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 7 -attack: 5 -health: 6 -description: "[[Blitz]]. [[Play]]: [icon] [[Erase]] all enemies with a cost of 2 or less in play." -immortalizeWhen: "I see your Energy Reserve Overflow." -immortalizeTo: - - "[[Grand Admiral Khaela]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Gunnery Captain.png]]" ---- - - -![[Gunnery Captain.png]] diff --git a/chrono.docs/Gunnery Captain.png b/chrono.docs/Gunnery Captain.png deleted file mode 100644 index eed28a0..0000000 Binary files a/chrono.docs/Gunnery Captain.png and /dev/null differ diff --git a/chrono.docs/Harbinger of Power.md b/chrono.docs/Harbinger of Power.md deleted file mode 100644 index fcd6392..0000000 --- a/chrono.docs/Harbinger of Power.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 5 -health: 5 -description: "[[Enter]]: [[Shift]] to [[Deadly Fauna]]." -immortalizeWhen: "I've seen the enemy Core take damage through [[Overpower]]." -immortalizeTo: - - "[[Evolution Incarnate]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Harbinger of Power.png]]" ---- - - -![[Harbinger of Power.png]] diff --git a/chrono.docs/Harbinger of Power.png b/chrono.docs/Harbinger of Power.png deleted file mode 100644 index 386d7af..0000000 Binary files a/chrono.docs/Harbinger of Power.png and /dev/null differ diff --git a/chrono.docs/Harker, Metal Reporter.md b/chrono.docs/Harker, Metal Reporter.md deleted file mode 100644 index 38224f0..0000000 --- a/chrono.docs/Harker, Metal Reporter.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 3 -health: 5 -description: "When I see a [[Shift]], create a \"[[By the Numbers]]\" in hand, or if you have one in hand, reduce its cost by 1." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Heretic Whistleblower]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Harker, Metal Reporter.png]]" ---- - - -![[Harker, Metal Reporter.png]] diff --git a/chrono.docs/Harker, Metal Reporter.png b/chrono.docs/Harker, Metal Reporter.png deleted file mode 100644 index 55d1da6..0000000 Binary files a/chrono.docs/Harker, Metal Reporter.png and /dev/null differ diff --git a/chrono.docs/Headbanging.md b/chrono.docs/Headbanging.md deleted file mode 100644 index 3ad8044..0000000 --- a/chrono.docs/Headbanging.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 1 -description: "Discard 1 to play. Deal 2 to an Agent or Core." -faction: "[[Singularity]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Headbanging.png]]" ---- - - -![[Headbanging.png]] diff --git a/chrono.docs/Headbanging.png b/chrono.docs/Headbanging.png deleted file mode 100644 index 4859630..0000000 Binary files a/chrono.docs/Headbanging.png and /dev/null differ diff --git a/chrono.docs/Herald of the One.md b/chrono.docs/Herald of the One.md deleted file mode 100644 index 1ec7298..0000000 --- a/chrono.docs/Herald of the One.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 1 -health: 4 -description: "[[Play]]: (C) Transform me into an exact copy of an Agent." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Nascent Clone]]" -faction: "[[Singularity]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Herald of the One.png]]" ---- - - -![[Herald of the One.png]] diff --git a/chrono.docs/Herald of the One.png b/chrono.docs/Herald of the One.png deleted file mode 100644 index 6059a13..0000000 Binary files a/chrono.docs/Herald of the One.png and /dev/null differ diff --git a/chrono.docs/Heretic Whistleblower.md b/chrono.docs/Heretic Whistleblower.md deleted file mode 100644 index 0e07f62..0000000 --- a/chrono.docs/Heretic Whistleblower.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 2 -health: 4 -description: "When I see a [[Shift]], reveal the top card of your deck. If it is an Action, [[Draw]] 1." -immortalizeWhen: "I've seen 3+ Shifts." -immortalizeTo: - - "[[Harker, Metal Reporter]]" -immortalizeFrom: N/A -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" - - "[[Draw]]" -imageLink: "[[Heretic Whistleblower.png]]" ---- - - -![[Heretic Whistleblower.png]] diff --git a/chrono.docs/Heretic Whistleblower.png b/chrono.docs/Heretic Whistleblower.png deleted file mode 100644 index 00bcf42..0000000 Binary files a/chrono.docs/Heretic Whistleblower.png and /dev/null differ diff --git a/chrono.docs/Hidden Locus.md b/chrono.docs/Hidden Locus.md deleted file mode 100644 index aab18ea..0000000 --- a/chrono.docs/Hidden Locus.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 0 -health: 2 -description: "Round Start: Gain an extra Energy Crystal this round." -immortalizeWhen: "Round Start: You have 10 Energy Crystals." -immortalizeTo: - - "[[Eruption Incarnate]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Hidden Locus.png]]" ---- - - -![[Hidden Locus.png]] diff --git a/chrono.docs/Hidden Locus.png b/chrono.docs/Hidden Locus.png deleted file mode 100644 index 683d278..0000000 Binary files a/chrono.docs/Hidden Locus.png and /dev/null differ diff --git a/chrono.docs/Holder of the Instruments.md b/chrono.docs/Holder of the Instruments.md deleted file mode 100644 index bc26f2b..0000000 --- a/chrono.docs/Holder of the Instruments.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 2 -health: 1 -description: "[[Enter]]: [[Shift]] to [[The One True Timeline]]." -faction: "[[Phasetide]]" -immortalizeWhen: I am [[Phased]] or [[Rewound]]. -immortalizeTo: - - "[[Symphony of the Path]]" -immortalizeFrom: N/A -set: "[[Core Set]]" -archetypes: - - "[[Rewound]]" -imageLink: "[[Holder of the Instruments.png]]" ---- - - -![[Holder of the Instruments.png]] diff --git a/chrono.docs/Holder of the Instruments.png b/chrono.docs/Holder of the Instruments.png deleted file mode 100644 index 2d2e0ba..0000000 Binary files a/chrono.docs/Holder of the Instruments.png and /dev/null differ diff --git a/chrono.docs/Holy Cleaner.md b/chrono.docs/Holy Cleaner.md deleted file mode 100644 index 37d486b..0000000 --- a/chrono.docs/Holy Cleaner.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 2 -health: 3 -description: "[[Play]]: [[Activate]] [[Rewind]] an Agent with equal or less Durability than me." -faction: "[[Phasetide]]" -immortalizeWhen: You've [[Rewound]] 3+ times this game. -immortalizeTo: - - "[[Violent Inquisitioner]]" -immortalizeFrom: N/A -set: "[[Core Set]]" -archetypes: - - "[[Rewound]]" -imageLink: "[[Holy Cleaner.png]]" ---- - - -![[Holy Cleaner.png]] diff --git a/chrono.docs/Holy Cleaner.png b/chrono.docs/Holy Cleaner.png deleted file mode 100644 index 0f8ba9e..0000000 Binary files a/chrono.docs/Holy Cleaner.png and /dev/null differ diff --git a/chrono.docs/Horticulturalist Oswald.md b/chrono.docs/Horticulturalist Oswald.md deleted file mode 100644 index b8b0d35..0000000 --- a/chrono.docs/Horticulturalist Oswald.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 2 -health: 2 -description: "[[Enter]]: [[Sprout]] 1. [[Activate]]: Give a Seedling [[Overpower]]." -immortalizeWhen: -immortalizeTo: - - N/A -immortalizeFrom: "[[Gardener Apprentice]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Sprout]]" ---- diff --git a/chrono.docs/Hungry Engine.md b/chrono.docs/Hungry Engine.md deleted file mode 100644 index 828636b..0000000 --- a/chrono.docs/Hungry Engine.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 5 -health: 5 -description: "[[Enter]]: Create a [[Circle of Strife]] in hand." -immortalizeWhen: "I've survived damage." -immortalizeTo: - - "[[Armageddonaut]]" -immortalizeFrom: N/A -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Hungry Engine.png]]" ---- - - -![[Hungry Engine.png]] diff --git a/chrono.docs/Hungry Engine.png b/chrono.docs/Hungry Engine.png deleted file mode 100644 index 95a3d2d..0000000 Binary files a/chrono.docs/Hungry Engine.png and /dev/null differ diff --git a/chrono.docs/Hungry Tyrannosaur.md b/chrono.docs/Hungry Tyrannosaur.md deleted file mode 100644 index f9bc430..0000000 --- a/chrono.docs/Hungry Tyrannosaur.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 8 -attack: 8 -health: 7 -description: "[[Confront]]. [[Overpower]]. [[Enter]]: Create a [[Throwdown]] in hand." -immortalizeWhen: "I've destroyed an Agent." -immortalizeTo: - - "[[Wreck-o Rex]]" -immortalizeFrom: N/A -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Hungry Tyrannosaur.png]]" ---- - - -![[Hungry Tyrannosaur.png]] diff --git a/chrono.docs/Hungry Tyrannosaur.png b/chrono.docs/Hungry Tyrannosaur.png deleted file mode 100644 index 5b5c9f1..0000000 Binary files a/chrono.docs/Hungry Tyrannosaur.png and /dev/null differ diff --git a/chrono.docs/Hush Now.md b/chrono.docs/Hush Now.md deleted file mode 100644 index 565cd2d..0000000 --- a/chrono.docs/Hush Now.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 6 -description: "Destroy an Agent." -faction: "[[Silence]]" -set: "[[Core Set]]" -speed: "[[Fast]]" -imageLink: "[[Hush Now.png]]" ---- - - -![[Hush Now.png]] diff --git a/chrono.docs/Hush Now.png b/chrono.docs/Hush Now.png deleted file mode 100644 index 61a73af..0000000 Binary files a/chrono.docs/Hush Now.png and /dev/null differ diff --git a/chrono.docs/Immediate.md b/chrono.docs/Immediate.md deleted file mode 100644 index a97146d..0000000 --- a/chrono.docs/Immediate.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: Keyword -description: This spell cannot be reacted to. ---- diff --git a/chrono.docs/Indara, the Candle.md b/chrono.docs/Indara, the Candle.md deleted file mode 100644 index 566a5b1..0000000 --- a/chrono.docs/Indara, the Candle.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 4 -health: 4 -description: "[[Activate]]: [icon] Revive an [[Immortalized]] Ally." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Solemn Attendant]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Indara, the Candle.png]]" ---- - - -![[Indara, the Candle.png]] diff --git a/chrono.docs/Indara, the Candle.png b/chrono.docs/Indara, the Candle.png deleted file mode 100644 index 3ae15c0..0000000 Binary files a/chrono.docs/Indara, the Candle.png and /dev/null differ diff --git a/chrono.docs/Invigorating Balm.md b/chrono.docs/Invigorating Balm.md deleted file mode 100644 index 4caaf22..0000000 --- a/chrono.docs/Invigorating Balm.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 1 -description: "[[Heal]] an ally 1. Give it +1/+1 this round." -faction: "[[Phasetide]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Invigorating Balm.png]]" ---- - - -![[Invigorating Balm.png]] diff --git a/chrono.docs/Invigorating Balm.png b/chrono.docs/Invigorating Balm.png deleted file mode 100644 index 36c2286..0000000 Binary files a/chrono.docs/Invigorating Balm.png and /dev/null differ diff --git a/chrono.docs/Ironblood Elixir.md b/chrono.docs/Ironblood Elixir.md deleted file mode 100644 index 676d0ac..0000000 --- a/chrono.docs/Ironblood Elixir.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "Grant an ally +1/+2 and Fervor." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Ironblood Elixir.png]]" ---- - - -![[Ironblood Elixir.png]] diff --git a/chrono.docs/Ironblood Elixir.png b/chrono.docs/Ironblood Elixir.png deleted file mode 100644 index dc802a9..0000000 Binary files a/chrono.docs/Ironblood Elixir.png and /dev/null differ diff --git a/chrono.docs/Jenny, Sower of Spores.md b/chrono.docs/Jenny, Sower of Spores.md deleted file mode 100644 index f1820f2..0000000 --- a/chrono.docs/Jenny, Sower of Spores.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 1 -description: "[[Evasive]]. Strike: [[Sprout]] 1." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Fervent Mycologist]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - "[[Sprout]]" -imageLink: "[[Jenny, Sower of Spores.png]]" ---- - - -![[Jenny, Sower of Spores.png]] diff --git a/chrono.docs/Jenny, Sower of Spores.png b/chrono.docs/Jenny, Sower of Spores.png deleted file mode 100644 index f583a3d..0000000 Binary files a/chrono.docs/Jenny, Sower of Spores.png and /dev/null differ diff --git a/chrono.docs/Jury of the Second Law.md b/chrono.docs/Jury of the Second Law.md deleted file mode 100644 index e783c5e..0000000 --- a/chrono.docs/Jury of the Second Law.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 5 -health: 3 -description: "[[Blitz]]. When you play an Action, gain 1 Reserve Energy." -immortalizeWhen: "You've spent 12+ Energy in one round this game." -immortalizeTo: - - "[[Chaos Conductor Boltz]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Jury of the Second Law.png]]" ---- - - -![[Jury of the Second Law.png]] diff --git a/chrono.docs/Jury of the Second Law.png b/chrono.docs/Jury of the Second Law.png deleted file mode 100644 index be90837..0000000 Binary files a/chrono.docs/Jury of the Second Law.png and /dev/null differ diff --git a/chrono.docs/Karmic Debtor.md b/chrono.docs/Karmic Debtor.md deleted file mode 100644 index d84f157..0000000 --- a/chrono.docs/Karmic Debtor.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 2 -health: 1 -description: "[[Play]]: [icon][[Phase]] an Agent. It cannot [[Phase]] in while I am in play." -immortalizeWhen: "I've seen 3+ Agents [[Phased]] or [[Rewound]]." -immortalizeTo: - - "[[Consequence Admin Cain]]" -immortalizeFrom: N/A -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Rewound]]" -imageLink: "[[Karmic Debtor.png]]" ---- - - -![[Karmic Debtor.png]] diff --git a/chrono.docs/Karmic Debtor.png b/chrono.docs/Karmic Debtor.png deleted file mode 100644 index fa64a61..0000000 Binary files a/chrono.docs/Karmic Debtor.png and /dev/null differ diff --git a/chrono.docs/Khaela the Hungry.md b/chrono.docs/Khaela the Hungry.md deleted file mode 100644 index 7a40590..0000000 --- a/chrono.docs/Khaela the Hungry.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 1 -health: 5 -description: "[[Play]] or [[Activate]]: (C) Deal 1 to me and another Agent. [[Sacrifice]] 2: Instead deal 2." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Painforger]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Khaela the Hungry.png]]" ---- - - -![[Khaela the Hungry.png]] diff --git a/chrono.docs/Khaela the Hungry.png b/chrono.docs/Khaela the Hungry.png deleted file mode 100644 index 53acfdb..0000000 Binary files a/chrono.docs/Khaela the Hungry.png and /dev/null differ diff --git a/chrono.docs/Khaela the Savior.md b/chrono.docs/Khaela the Savior.md deleted file mode 100644 index 7c51a37..0000000 --- a/chrono.docs/Khaela the Savior.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 3 -health: 4 -description: "[[Blitz]]. Each time I [[Strike]] while attacking: Swap me with the Agent to my right, the [[Rewind]] it. Set its cost to 0 this round." -faction: "[[Phasetide]]" -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Temple Analyst]]" -set: "[[Core Set]]" -archetypes: - - "[[Rewound]]" -imageLink: "[[Khaela the Savior.png]]" ---- - - -![[Khaela the Savior.png]] diff --git a/chrono.docs/Khaela the Savior.png b/chrono.docs/Khaela the Savior.png deleted file mode 100644 index f01fac3..0000000 Binary files a/chrono.docs/Khaela the Savior.png and /dev/null differ diff --git a/chrono.docs/Khaela, the Vanished.md b/chrono.docs/Khaela, the Vanished.md deleted file mode 100644 index a167e5f..0000000 --- a/chrono.docs/Khaela, the Vanished.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 3 -health: 2 -description: "[[Blitz]]. Siphon." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Nameless Spirit]]" -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Khaela, the Vanished.png]]" ---- - - -![[Khaela, the Vanished.png]] diff --git a/chrono.docs/Khaela, the Vanished.png b/chrono.docs/Khaela, the Vanished.png deleted file mode 100644 index 951e8f2..0000000 Binary files a/chrono.docs/Khaela, the Vanished.png and /dev/null differ diff --git a/chrono.docs/Khaelar.md b/chrono.docs/Khaelar.md deleted file mode 100644 index 3c4d7b4..0000000 --- a/chrono.docs/Khaelar.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 8 -health: 6 -description: "[[Enter]] or when I destroy an Agent: Give the strongest enemy Exposed and set its stats to 1/1 this round." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Zealot of the Hunt]]" -faction: "[[Lifeblood]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Khaelar.png]]" ---- - - -![[Khaelar.png]] diff --git a/chrono.docs/Khaelar.png b/chrono.docs/Khaelar.png deleted file mode 100644 index 61f331f..0000000 Binary files a/chrono.docs/Khaelar.png and /dev/null differ diff --git a/chrono.docs/Kinetic Absorber.md b/chrono.docs/Kinetic Absorber.md deleted file mode 100644 index 285b306..0000000 --- a/chrono.docs/Kinetic Absorber.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 2 -health: 3 -description: "[[Confront]]." -immortalizeWhen: "I survive an enemy Striking me. When I [[Immortalize]], [[Shift]] to Star Siphon." -immortalizeTo: - - "[[Dyson, the Aspirant]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Kinetic Absorber.png]]" ---- - - -![[Kinetic Absorber.png]] diff --git a/chrono.docs/Kinetic Absorber.png b/chrono.docs/Kinetic Absorber.png deleted file mode 100644 index 2ac15c4..0000000 Binary files a/chrono.docs/Kinetic Absorber.png and /dev/null differ diff --git a/chrono.docs/Kintsu-Kai.md b/chrono.docs/Kintsu-Kai.md deleted file mode 100644 index 197e9c5..0000000 --- a/chrono.docs/Kintsu-Kai.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 2 -description: "Any amount of allies Bleed 1. Grant Bleed to a single enemy that many times." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Immediate]]" -imageLink: "[[Kintsu-Kai.png]]" ---- - - -![[Kintsu-Kai.png]] diff --git a/chrono.docs/Kintsu-Kai.png b/chrono.docs/Kintsu-Kai.png deleted file mode 100644 index b1d647c..0000000 Binary files a/chrono.docs/Kintsu-Kai.png and /dev/null differ diff --git a/chrono.docs/Kurian, the Breaker.md b/chrono.docs/Kurian, the Breaker.md deleted file mode 100644 index 6d7fb38..0000000 --- a/chrono.docs/Kurian, the Breaker.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 10 -health: 5 -description: "[[Overpower]]. Allied Breakdown sees both Cores." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Frontline Juggernaut]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Kurian, the Breaker.png]]" ---- - - -![[Kurian, the Breaker.png]] diff --git a/chrono.docs/Kurian, the Breaker.png b/chrono.docs/Kurian, the Breaker.png deleted file mode 100644 index d41270e..0000000 Binary files a/chrono.docs/Kurian, the Breaker.png and /dev/null differ diff --git a/chrono.docs/Kyln, the Dynasty.md b/chrono.docs/Kyln, the Dynasty.md deleted file mode 100644 index 7db1787..0000000 --- a/chrono.docs/Kyln, the Dynasty.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 8 -attack: 3 -health: 3 -description: "[[Evasive]]. [[Overpower]]. [[Enter]]: [[Flourish]] copies of me everywhere, then create a copy of me in hand and reduce the cost of allied created cards everywhere by 1 at [[Round End]] (Minimum 1)." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Planet Seeder]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Kyln, the Dynasty.png]]" ---- - - -![[Kyln, the Dynasty.png]] diff --git a/chrono.docs/Kyln, the Dynasty.png b/chrono.docs/Kyln, the Dynasty.png deleted file mode 100644 index d799747..0000000 Binary files a/chrono.docs/Kyln, the Dynasty.png and /dev/null differ diff --git a/chrono.docs/Librarian's Assistant.md b/chrono.docs/Librarian's Assistant.md deleted file mode 100644 index 0ebedb2..0000000 --- a/chrono.docs/Librarian's Assistant.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 2 -health: 1 -description: "[[Enter]]: [[Draw]] a random 1, 2, or 3 cost Action from your deck." -immortalizeWhen: "I've seen you play 3+ Actions." -immortalizeTo: - - "[[Boof, the Listener]]" -immortalizeFrom: N/A -faction: "[[Silence]]" -set: "[[Core Set]]" -archetypes: - - "[[Draw]]" -imageLink: "[[Librarian's Assistant.png]]" ---- - - -![[Librarian's Assistant.png]] diff --git a/chrono.docs/Librarian's Assistant.png b/chrono.docs/Librarian's Assistant.png deleted file mode 100644 index a70488f..0000000 Binary files a/chrono.docs/Librarian's Assistant.png and /dev/null differ diff --git a/chrono.docs/Lifeblood.md b/chrono.docs/Lifeblood.md deleted file mode 100644 index c17ed9b..0000000 --- a/chrono.docs/Lifeblood.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -category: Faction ---- diff --git a/chrono.docs/Lightsteel Colossus.md b/chrono.docs/Lightsteel Colossus.md deleted file mode 100644 index 0f5c33f..0000000 --- a/chrono.docs/Lightsteel Colossus.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 8 -attack: 9 -health: 14 -description: "Delay. [[Confront]]." -immortalizeWhen: "You have 10 Energy Crystals." -immortalizeTo: - - "[[Gentle Frank]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Lightsteel Colossus.png]]" ---- - - -![[Lightsteel Colossus.png]] diff --git a/chrono.docs/Lightsteel Colossus.png b/chrono.docs/Lightsteel Colossus.png deleted file mode 100644 index 9389be0..0000000 Binary files a/chrono.docs/Lightsteel Colossus.png and /dev/null differ diff --git a/chrono.docs/Lightsteel Engineer.md b/chrono.docs/Lightsteel Engineer.md deleted file mode 100644 index 42a4407..0000000 --- a/chrono.docs/Lightsteel Engineer.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 4 -health: 5 -description: "Reduce damage you or allies would deal to your Core by 1. When you reduce damage this way, deal 1 to the enemy Core." -immortalizeWhen: "I've prevented 5+ damage to your Core." -immortalizeTo: - - "[[Mechanist Daedelus]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Lightsteel Engineer.png]]" ---- - - -![[Lightsteel Engineer.png]] diff --git a/chrono.docs/Lightsteel Engineer.png b/chrono.docs/Lightsteel Engineer.png deleted file mode 100644 index 592067b..0000000 Binary files a/chrono.docs/Lightsteel Engineer.png and /dev/null differ diff --git a/chrono.docs/Limit Breaker.md b/chrono.docs/Limit Breaker.md deleted file mode 100644 index 95f8799..0000000 --- a/chrono.docs/Limit Breaker.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 0 -health: 1 -description: "Round Start: I [[Flourish]] once for each Reserve Energy you have." -immortalizeWhen: "I see your Energy Reserve Overflow." -immortalizeTo: - - "[[Malum, the Fist]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Limit Breaker.png]]" ---- - - -![[Limit Breaker.png]] diff --git a/chrono.docs/Limit Breaker.png b/chrono.docs/Limit Breaker.png deleted file mode 100644 index 9cea8f9..0000000 Binary files a/chrono.docs/Limit Breaker.png and /dev/null differ diff --git a/chrono.docs/Living Comet.md b/chrono.docs/Living Comet.md deleted file mode 100644 index e7775ba..0000000 --- a/chrono.docs/Living Comet.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 4 -attack: 1 -health: 1 -description: "[[Overpower]]. I have +1/+1 for every Energy Crystal you have." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Debris Collector]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Living Comet.png]]" ---- - - -![[Living Comet.png]] diff --git a/chrono.docs/Living Comet.png b/chrono.docs/Living Comet.png deleted file mode 100644 index bf08924..0000000 Binary files a/chrono.docs/Living Comet.png and /dev/null differ diff --git a/chrono.docs/Lumbering Starseeker.md b/chrono.docs/Lumbering Starseeker.md deleted file mode 100644 index 76c41fb..0000000 --- a/chrono.docs/Lumbering Starseeker.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 5 -health: 6 -description: "Delay." -immortalizeWhen: "I survive damage." -immortalizeTo: - - "[[Luminous Vengeance]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Lumbering Starseeker.png]]" ---- - - -![[Lumbering Starseeker.png]] diff --git a/chrono.docs/Lumbering Starseeker.png b/chrono.docs/Lumbering Starseeker.png deleted file mode 100644 index 9970472..0000000 Binary files a/chrono.docs/Lumbering Starseeker.png and /dev/null differ diff --git a/chrono.docs/Luminous Vengeance.md b/chrono.docs/Luminous Vengeance.md deleted file mode 100644 index 806cf8f..0000000 --- a/chrono.docs/Luminous Vengeance.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 5 -attack: 7 -health: 6 -description: "Delay. [[Overpower]]. [[Confront]]." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Lumbering Starseeker]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Luminous Vengeance.png]]" ---- - - -![[Luminous Vengeance.png]] diff --git a/chrono.docs/Luminous Vengeance.png b/chrono.docs/Luminous Vengeance.png deleted file mode 100644 index 8623e9f..0000000 Binary files a/chrono.docs/Luminous Vengeance.png and /dev/null differ diff --git a/chrono.docs/Magmatic Teachings.md b/chrono.docs/Magmatic Teachings.md deleted file mode 100644 index b8233cb..0000000 --- a/chrono.docs/Magmatic Teachings.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -category: Spell -cost: 3 -description: "An [[Immortalized]] ally strikes an enemy. If that enemy is destroyed, [[Immortalize]] your weakest non-Immoralized ally." -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -speed: "[[Slow]]" -imageLink: "[[Magmatic Teachings.png]]" ---- - - -![[Magmatic Teachings.png]] diff --git a/chrono.docs/Magmatic Teachings.png b/chrono.docs/Magmatic Teachings.png deleted file mode 100644 index 36477a2..0000000 Binary files a/chrono.docs/Magmatic Teachings.png and /dev/null differ diff --git a/chrono.docs/Magmatic Tether.md b/chrono.docs/Magmatic Tether.md deleted file mode 100644 index 7ee2e60..0000000 --- a/chrono.docs/Magmatic Tether.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 5 -health: 5 -description: "When you play an Action, (C) [[Shift]] to Volcanic Rivers." -immortalizeWhen: "You've spent 12+ Energy in one round this game." -immortalizeTo: - - "[[Clarion, Deepest Breath]]" -immortalizeFrom: N/A -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Magmatic Tether.png]]" ---- - - -![[Magmatic Tether.png]] diff --git a/chrono.docs/Magmatic Tether.png b/chrono.docs/Magmatic Tether.png deleted file mode 100644 index ea0f1eb..0000000 Binary files a/chrono.docs/Magmatic Tether.png and /dev/null differ diff --git a/chrono.docs/Magnus Lavaborn.md b/chrono.docs/Magnus Lavaborn.md deleted file mode 100644 index 5238a78..0000000 --- a/chrono.docs/Magnus Lavaborn.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 3 -health: 1 -description: "[[Enter]]: [[Shift]] to Volcanic Rivers twice. [[Strike]]: Deal 1 to the enemy Core." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Denizen of Flames]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - "[[Shift]]" -imageLink: "[[Magnus Lavaborn.png]]" ---- - - -![[Magnus Lavaborn.png]] diff --git a/chrono.docs/Magnus Lavaborn.png b/chrono.docs/Magnus Lavaborn.png deleted file mode 100644 index dd4cbff..0000000 Binary files a/chrono.docs/Magnus Lavaborn.png and /dev/null differ diff --git a/chrono.docs/Malark, the Silver Wave.md b/chrono.docs/Malark, the Silver Wave.md deleted file mode 100644 index b90779b..0000000 --- a/chrono.docs/Malark, the Silver Wave.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 3 -attack: 4 -health: 1 -description: "[[Blitz]]. Last Gasp: Grant the weakest ally [[Blitz]], +4/+1 and this Last Gasp." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Swashbuckling Diehard]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Malark, the Silver Wave.png]]" ---- - - -![[Malark, the Silver Wave.png]] diff --git a/chrono.docs/Malark, the Silver Wave.png b/chrono.docs/Malark, the Silver Wave.png deleted file mode 100644 index a84ef91..0000000 Binary files a/chrono.docs/Malark, the Silver Wave.png and /dev/null differ diff --git a/chrono.docs/Malum, the Fist.md b/chrono.docs/Malum, the Fist.md deleted file mode 100644 index 27f91f7..0000000 --- a/chrono.docs/Malum, the Fist.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 2 -attack: 0 -health: 1 -description: "Round Start: I [[Flourish]] once for each Reserve Energy you have. Overflow: Grant me a random positive keyword." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Limit Breaker]]" -faction: "[[Sungrace]]" -set: "[[Core Set]]" -archetypes: - - "[[Flourish]]" -imageLink: "[[Malum, the Fist.png]]" ---- - - -![[Malum, the Fist.png]] diff --git a/chrono.docs/Malum, the Fist.png b/chrono.docs/Malum, the Fist.png deleted file mode 100644 index 598cded..0000000 Binary files a/chrono.docs/Malum, the Fist.png and /dev/null differ diff --git a/chrono.docs/Masa, Time-Lost.md b/chrono.docs/Masa, Time-Lost.md deleted file mode 100644 index 1058e14..0000000 --- a/chrono.docs/Masa, Time-Lost.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -category: Agent -cost: 6 -attack: 7 -health: 4 -description: "[[Blitz]]. I cost 1 less for each time you've [[Phased]] or [[Rewound]] an Agent this game. When you [[Phase]] or [[Rewind]] an Agent, first deal 1 to the enemy Core. Strike: [[Rewind]] me." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Divergence Assasin]]" -faction: "[[Phasetide]]" -set: "[[Core Set]]" -archetypes: - - "[[Rewound]]" -imageLink: "[[Masa, Time-Lost.png]]" ---- - - -![[Masa, Time-Lost.png]] diff --git a/chrono.docs/Masa, Time-Lost.png b/chrono.docs/Masa, Time-Lost.png deleted file mode 100644 index 184d660..0000000 Binary files a/chrono.docs/Masa, Time-Lost.png and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies.md b/chrono.docs/Master of Ceremonies.md deleted file mode 100644 index 32c2fa8..0000000 --- a/chrono.docs/Master of Ceremonies.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -category: Agent -cost: 1 -attack: 1 -health: 1 -description: "[[Activate]]: [[Sacrifice]] 2: (C) Deal 2 to the enemy Core." -immortalizeWhen: N/A -immortalizeTo: - - N/A -immortalizeFrom: "[[Bloodline Tracker]]" -faction: "[[Splintergleam]]" -set: "[[Core Set]]" -archetypes: - - N/A -imageLink: "[[Master of Ceremonies.png]]" ---- - -![[Master of Ceremonies.png]] diff --git a/chrono.docs/Master of Ceremonies.png b/chrono.docs/Master of Ceremonies.png deleted file mode 100644 index d24881c..0000000 Binary files a/chrono.docs/Master of Ceremonies.png and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies_files/01KJ69M1G9BF4K4425HYRV5Y25.webp b/chrono.docs/Master of Ceremonies_files/01KJ69M1G9BF4K4425HYRV5Y25.webp deleted file mode 100644 index da3c787..0000000 Binary files a/chrono.docs/Master of Ceremonies_files/01KJ69M1G9BF4K4425HYRV5Y25.webp and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies_files/189.webp b/chrono.docs/Master of Ceremonies_files/189.webp deleted file mode 100644 index 7a55270..0000000 Binary files a/chrono.docs/Master of Ceremonies_files/189.webp and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies_files/190.webp b/chrono.docs/Master of Ceremonies_files/190.webp deleted file mode 100644 index d24881c..0000000 Binary files a/chrono.docs/Master of Ceremonies_files/190.webp and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies_files/agents.webp b/chrono.docs/Master of Ceremonies_files/agents.webp deleted file mode 100644 index 520a577..0000000 Binary files a/chrono.docs/Master of Ceremonies_files/agents.webp and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies_files/app-CAiCLEjY.js.download b/chrono.docs/Master of Ceremonies_files/app-CAiCLEjY.js.download deleted file mode 100644 index 2313a77..0000000 --- a/chrono.docs/Master of Ceremonies_files/app-CAiCLEjY.js.download +++ /dev/null @@ -1,6 +0,0 @@ -function ze(e,t){return function(){return e.apply(t,arguments)}}const{toString:ht}=Object.prototype,{getPrototypeOf:be}=Object,{iterator:re,toStringTag:Je}=Symbol,se=(e=>t=>{const n=ht.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),P=e=>(e=e.toLowerCase(),t=>se(t)===e),oe=e=>t=>typeof t===e,{isArray:M}=Array,I=oe("undefined");function V(e){return e!==null&&!I(e)&&e.constructor!==null&&!I(e.constructor)&&T(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Ve=P("ArrayBuffer");function mt(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&Ve(e.buffer),t}const yt=oe("string"),T=oe("function"),We=oe("number"),W=e=>e!==null&&typeof e=="object",bt=e=>e===!0||e===!1,Y=e=>{if(se(e)!=="object")return!1;const t=be(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Je in e)&&!(re in e)},wt=e=>{if(!W(e)||V(e))return!1;try{return Object.keys(e).length===0&&Object.getPrototypeOf(e)===Object.prototype}catch{return!1}},Et=P("Date"),gt=P("File"),St=P("Blob"),Rt=P("FileList"),Ot=e=>W(e)&&T(e.pipe),Tt=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||T(e.append)&&((t=se(e))==="formdata"||t==="object"&&T(e.toString)&&e.toString()==="[object FormData]"))},At=P("URLSearchParams"),[xt,Ct,Nt,Pt]=["ReadableStream","Request","Response","Headers"].map(P),Ft=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function K(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),M(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const D=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,ve=e=>!I(e)&&e!==D;function pe(){const{caseless:e,skipUndefined:t}=ve(this)&&this||{},n={},r=(s,i)=>{const o=e&&Ke(n,i)||i;Y(n[o])&&Y(s)?n[o]=pe(n[o],s):Y(s)?n[o]=pe({},s):M(s)?n[o]=s.slice():(!t||!I(s))&&(n[o]=s)};for(let s=0,i=arguments.length;s(K(t,(s,i)=>{n&&T(s)?e[i]=ze(s,n):e[i]=s},{allOwnKeys:r}),e),Ut=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Lt=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Bt=(e,t,n,r)=>{let s,i,o;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),i=s.length;i-- >0;)o=s[i],(!r||r(o,e,t))&&!c[o]&&(t[o]=e[o],c[o]=!0);e=n!==!1&&be(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},kt=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Dt=e=>{if(!e)return null;if(M(e))return e;let t=e.length;if(!We(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},jt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&be(Uint8Array)),qt=(e,t)=>{const r=(e&&e[re]).call(e);let s;for(;(s=r.next())&&!s.done;){const i=s.value;t.call(e,i[0],i[1])}},Ht=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},It=P("HTMLFormElement"),Mt=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),Ce=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),$t=P("RegExp"),Xe=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};K(n,(s,i)=>{let o;(o=t(s,i,e))!==!1&&(r[i]=o||s)}),Object.defineProperties(e,r)},zt=e=>{Xe(e,(t,n)=>{if(T(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(T(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Jt=(e,t)=>{const n={},r=s=>{s.forEach(i=>{n[i]=!0})};return M(e)?r(e):r(String(e).split(t)),n},Vt=()=>{},Wt=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function Kt(e){return!!(e&&T(e.append)&&e[Je]==="FormData"&&e[re])}const vt=e=>{const t=new Array(10),n=(r,s)=>{if(W(r)){if(t.indexOf(r)>=0)return;if(V(r))return r;if(!("toJSON"in r)){t[s]=r;const i=M(r)?[]:{};return K(r,(o,c)=>{const d=n(o,s+1);!I(d)&&(i[c]=d)}),t[s]=void 0,i}}return r};return n(e,0)},Xt=P("AsyncFunction"),Gt=e=>e&&(W(e)||T(e))&&T(e.then)&&T(e.catch),Ge=((e,t)=>e?setImmediate:t?((n,r)=>(D.addEventListener("message",({source:s,data:i})=>{s===D&&i===n&&r.length&&r.shift()()},!1),s=>{r.push(s),D.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",T(D.postMessage)),Qt=typeof queueMicrotask<"u"?queueMicrotask.bind(D):typeof process<"u"&&process.nextTick||Ge,Zt=e=>e!=null&&T(e[re]),a={isArray:M,isArrayBuffer:Ve,isBuffer:V,isFormData:Tt,isArrayBufferView:mt,isString:yt,isNumber:We,isBoolean:bt,isObject:W,isPlainObject:Y,isEmptyObject:wt,isReadableStream:xt,isRequest:Ct,isResponse:Nt,isHeaders:Pt,isUndefined:I,isDate:Et,isFile:gt,isBlob:St,isRegExp:$t,isFunction:T,isStream:Ot,isURLSearchParams:At,isTypedArray:jt,isFileList:Rt,forEach:K,merge:pe,extend:_t,trim:Ft,stripBOM:Ut,inherits:Lt,toFlatObject:Bt,kindOf:se,kindOfTest:P,endsWith:kt,toArray:Dt,forEachEntry:qt,matchAll:Ht,isHTMLForm:It,hasOwnProperty:Ce,hasOwnProp:Ce,reduceDescriptors:Xe,freezeMethods:zt,toObjectSet:Jt,toCamelCase:Mt,noop:Vt,toFiniteNumber:Wt,findKey:Ke,global:D,isContextDefined:ve,isSpecCompliantForm:Kt,toJSONObject:vt,isAsyncFn:Xt,isThenable:Gt,setImmediate:Ge,asap:Qt,isIterable:Zt};function y(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s,this.status=s.status?s.status:null)}a.inherits(y,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.status}}});const Qe=y.prototype,Ze={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Ze[e]={value:e}});Object.defineProperties(y,Ze);Object.defineProperty(Qe,"isAxiosError",{value:!0});y.from=(e,t,n,r,s,i)=>{const o=Object.create(Qe);a.toFlatObject(e,o,function(l){return l!==Error.prototype},f=>f!=="isAxiosError");const c=e&&e.message?e.message:"Error",d=t==null&&e?e.code:t;return y.call(o,c,d,n,r,s),e&&o.cause==null&&Object.defineProperty(o,"cause",{value:e,configurable:!0}),o.name=e&&e.name||"Error",i&&Object.assign(o,i),o};const Yt=null;function he(e){return a.isPlainObject(e)||a.isArray(e)}function Ye(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function Ne(e,t,n){return e?e.concat(t).map(function(s,i){return s=Ye(s),!n&&i?"["+s+"]":s}).join(n?".":""):t}function en(e){return a.isArray(e)&&!e.some(he)}const tn=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function ie(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(m,p){return!a.isUndefined(p[m])});const r=n.metaTokens,s=n.visitor||l,i=n.dots,o=n.indexes,d=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function f(u){if(u===null)return"";if(a.isDate(u))return u.toISOString();if(a.isBoolean(u))return u.toString();if(!d&&a.isBlob(u))throw new y("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(u)||a.isTypedArray(u)?d&&typeof Blob=="function"?new Blob([u]):Buffer.from(u):u}function l(u,m,p){let E=u;if(u&&!p&&typeof u=="object"){if(a.endsWith(m,"{}"))m=r?m:m.slice(0,-2),u=JSON.stringify(u);else if(a.isArray(u)&&en(u)||(a.isFileList(u)||a.endsWith(m,"[]"))&&(E=a.toArray(u)))return m=Ye(m),E.forEach(function(g,O){!(a.isUndefined(g)||g===null)&&t.append(o===!0?Ne([m],O,i):o===null?m:m+"[]",f(g))}),!1}return he(u)?!0:(t.append(Ne(p,m,i),f(u)),!1)}const h=[],b=Object.assign(tn,{defaultVisitor:l,convertValue:f,isVisitable:he});function S(u,m){if(!a.isUndefined(u)){if(h.indexOf(u)!==-1)throw Error("Circular reference detected in "+m.join("."));h.push(u),a.forEach(u,function(E,x){(!(a.isUndefined(E)||E===null)&&s.call(t,E,a.isString(x)?x.trim():x,m,b))===!0&&S(E,m?m.concat(x):[x])}),h.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return S(e),t}function Pe(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function we(e,t){this._pairs=[],e&&ie(e,this,t)}const et=we.prototype;et.append=function(t,n){this._pairs.push([t,n])};et.toString=function(t){const n=t?function(r){return t.call(this,r,Pe)}:Pe;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function nn(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function tt(e,t,n){if(!t)return e;const r=n&&n.encode||nn;a.isFunction(n)&&(n={serialize:n});const s=n&&n.serialize;let i;if(s?i=s(t,n):i=a.isURLSearchParams(t)?t.toString():new we(t,n).toString(r),i){const o=e.indexOf("#");o!==-1&&(e=e.slice(0,o)),e+=(e.indexOf("?")===-1?"?":"&")+i}return e}class Fe{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const nt={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},rn=typeof URLSearchParams<"u"?URLSearchParams:we,sn=typeof FormData<"u"?FormData:null,on=typeof Blob<"u"?Blob:null,an={isBrowser:!0,classes:{URLSearchParams:rn,FormData:sn,Blob:on},protocols:["http","https","file","blob","url","data"]},Ee=typeof window<"u"&&typeof document<"u",me=typeof navigator=="object"&&navigator||void 0,cn=Ee&&(!me||["ReactNative","NativeScript","NS"].indexOf(me.product)<0),ln=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",un=Ee&&window.location.href||"http://localhost",fn=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ee,hasStandardBrowserEnv:cn,hasStandardBrowserWebWorkerEnv:ln,navigator:me,origin:un},Symbol.toStringTag,{value:"Module"})),R={...fn,...an};function dn(e,t){return ie(e,new R.classes.URLSearchParams,{visitor:function(n,r,s,i){return R.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)},...t})}function pn(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function hn(e){const t={},n=Object.keys(e);let r;const s=n.length;let i;for(r=0;r=n.length;return o=!o&&a.isArray(s)?s.length:o,d?(a.hasOwnProp(s,o)?s[o]=[s[o],r]:s[o]=r,!c):((!s[o]||!a.isObject(s[o]))&&(s[o]=[]),t(n,r,s[o],i)&&a.isArray(s[o])&&(s[o]=hn(s[o])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(pn(r),s,n,0)}),n}return null}function mn(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const v={transitional:nt,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,i=a.isObject(t);if(i&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(rt(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t)||a.isReadableStream(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(i){if(r.indexOf("application/x-www-form-urlencoded")>-1)return dn(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const d=this.env&&this.env.FormData;return ie(c?{"files[]":t}:t,d&&new d,this.formSerializer)}}return i||s?(n.setContentType("application/json",!1),mn(t)):t}],transformResponse:[function(t){const n=this.transitional||v.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(a.isResponse(t)||a.isReadableStream(t))return t;if(t&&a.isString(t)&&(r&&!this.responseType||s)){const o=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t,this.parseReviver)}catch(c){if(o)throw c.name==="SyntaxError"?y.from(c,y.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:R.classes.FormData,Blob:R.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{v.headers[e]={}});const yn=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),bn=e=>{const t={};let n,r,s;return e&&e.split(` -`).forEach(function(o){s=o.indexOf(":"),n=o.substring(0,s).trim().toLowerCase(),r=o.substring(s+1).trim(),!(!n||t[n]&&yn[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},_e=Symbol("internals");function J(e){return e&&String(e).trim().toLowerCase()}function ee(e){return e===!1||e==null?e:a.isArray(e)?e.map(ee):String(e)}function wn(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const En=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function ue(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function gn(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Sn(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,i,o){return this[r].call(this,t,s,i,o)},configurable:!0})})}let A=class{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function i(c,d,f){const l=J(d);if(!l)throw new Error("header name must be a non-empty string");const h=a.findKey(s,l);(!h||s[h]===void 0||f===!0||f===void 0&&s[h]!==!1)&&(s[h||d]=ee(c))}const o=(c,d)=>a.forEach(c,(f,l)=>i(f,l,d));if(a.isPlainObject(t)||t instanceof this.constructor)o(t,n);else if(a.isString(t)&&(t=t.trim())&&!En(t))o(bn(t),n);else if(a.isObject(t)&&a.isIterable(t)){let c={},d,f;for(const l of t){if(!a.isArray(l))throw TypeError("Object iterator must return a key-value pair");c[f=l[0]]=(d=c[f])?a.isArray(d)?[...d,l[1]]:[d,l[1]]:l[1]}o(c,n)}else t!=null&&i(n,t,r);return this}get(t,n){if(t=J(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return wn(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=J(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||ue(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function i(o){if(o=J(o),o){const c=a.findKey(r,o);c&&(!n||ue(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(i):i(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const i=n[r];(!t||ue(this,this[i],i,t,!0))&&(delete this[i],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,i)=>{const o=a.findKey(r,i);if(o){n[o]=ee(s),delete n[i];return}const c=t?gn(i):String(i).trim();c!==i&&delete n[i],n[c]=ee(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` -`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[_e]=this[_e]={accessors:{}}).accessors,s=this.prototype;function i(o){const c=J(o);r[c]||(Sn(s,o),r[c]=!0)}return a.isArray(t)?t.forEach(i):i(t),this}};A.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(A.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(A);function fe(e,t){const n=this||v,r=t||n,s=A.from(r.headers);let i=r.data;return a.forEach(e,function(c){i=c.call(n,i,s.normalize(),t?t.status:void 0)}),s.normalize(),i}function st(e){return!!(e&&e.__CANCEL__)}function $(e,t,n){y.call(this,e??"canceled",y.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits($,y,{__CANCEL__:!0});function ot(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new y("Request failed with status code "+n.status,[y.ERR_BAD_REQUEST,y.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function Rn(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function On(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,i=0,o;return t=t!==void 0?t:1e3,function(d){const f=Date.now(),l=r[i];o||(o=f),n[s]=d,r[s]=f;let h=i,b=0;for(;h!==s;)b+=n[h++],h=h%e;if(s=(s+1)%e,s===i&&(i=(i+1)%e),f-o{n=l,s=null,i&&(clearTimeout(i),i=null),e(...f)};return[(...f)=>{const l=Date.now(),h=l-n;h>=r?o(f,l):(s=f,i||(i=setTimeout(()=>{i=null,o(s)},r-h)))},()=>s&&o(s)]}const ne=(e,t,n=3)=>{let r=0;const s=On(50,250);return Tn(i=>{const o=i.loaded,c=i.lengthComputable?i.total:void 0,d=o-r,f=s(d),l=o<=c;r=o;const h={loaded:o,total:c,progress:c?o/c:void 0,bytes:d,rate:f||void 0,estimated:f&&c&&l?(c-o)/f:void 0,event:i,lengthComputable:c!=null,[t?"download":"upload"]:!0};e(h)},n)},Ue=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},Le=e=>(...t)=>a.asap(()=>e(...t)),An=R.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,R.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(R.origin),R.navigator&&/(msie|trident)/i.test(R.navigator.userAgent)):()=>!0,xn=R.hasStandardBrowserEnv?{write(e,t,n,r,s,i,o){if(typeof document>"u")return;const c=[`${e}=${encodeURIComponent(t)}`];a.isNumber(n)&&c.push(`expires=${new Date(n).toUTCString()}`),a.isString(r)&&c.push(`path=${r}`),a.isString(s)&&c.push(`domain=${s}`),i===!0&&c.push("secure"),a.isString(o)&&c.push(`SameSite=${o}`),document.cookie=c.join("; ")},read(e){if(typeof document>"u")return null;const t=document.cookie.match(new RegExp("(?:^|; )"+e+"=([^;]*)"));return t?decodeURIComponent(t[1]):null},remove(e){this.write(e,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function Cn(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Nn(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function it(e,t,n){let r=!Cn(t);return e&&(r||n==!1)?Nn(e,t):t}const Be=e=>e instanceof A?{...e}:e;function q(e,t){t=t||{};const n={};function r(f,l,h,b){return a.isPlainObject(f)&&a.isPlainObject(l)?a.merge.call({caseless:b},f,l):a.isPlainObject(l)?a.merge({},l):a.isArray(l)?l.slice():l}function s(f,l,h,b){if(a.isUndefined(l)){if(!a.isUndefined(f))return r(void 0,f,h,b)}else return r(f,l,h,b)}function i(f,l){if(!a.isUndefined(l))return r(void 0,l)}function o(f,l){if(a.isUndefined(l)){if(!a.isUndefined(f))return r(void 0,f)}else return r(void 0,l)}function c(f,l,h){if(h in t)return r(f,l);if(h in e)return r(void 0,f)}const d={url:i,method:i,data:i,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:c,headers:(f,l,h)=>s(Be(f),Be(l),h,!0)};return a.forEach(Object.keys({...e,...t}),function(l){const h=d[l]||s,b=h(e[l],t[l],l);a.isUndefined(b)&&h!==c||(n[l]=b)}),n}const at=e=>{const t=q({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:i,headers:o,auth:c}=t;if(t.headers=o=A.from(o),t.url=tt(it(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),c&&o.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):""))),a.isFormData(n)){if(R.hasStandardBrowserEnv||R.hasStandardBrowserWebWorkerEnv)o.setContentType(void 0);else if(a.isFunction(n.getHeaders)){const d=n.getHeaders(),f=["content-type","content-length"];Object.entries(d).forEach(([l,h])=>{f.includes(l.toLowerCase())&&o.set(l,h)})}}if(R.hasStandardBrowserEnv&&(r&&a.isFunction(r)&&(r=r(t)),r||r!==!1&&An(t.url))){const d=s&&i&&xn.read(i);d&&o.set(s,d)}return t},Pn=typeof XMLHttpRequest<"u",Fn=Pn&&function(e){return new Promise(function(n,r){const s=at(e);let i=s.data;const o=A.from(s.headers).normalize();let{responseType:c,onUploadProgress:d,onDownloadProgress:f}=s,l,h,b,S,u;function m(){S&&S(),u&&u(),s.cancelToken&&s.cancelToken.unsubscribe(l),s.signal&&s.signal.removeEventListener("abort",l)}let p=new XMLHttpRequest;p.open(s.method.toUpperCase(),s.url,!0),p.timeout=s.timeout;function E(){if(!p)return;const g=A.from("getAllResponseHeaders"in p&&p.getAllResponseHeaders()),N={data:!c||c==="text"||c==="json"?p.responseText:p.response,status:p.status,statusText:p.statusText,headers:g,config:e,request:p};ot(function(C){n(C),m()},function(C){r(C),m()},N),p=null}"onloadend"in p?p.onloadend=E:p.onreadystatechange=function(){!p||p.readyState!==4||p.status===0&&!(p.responseURL&&p.responseURL.indexOf("file:")===0)||setTimeout(E)},p.onabort=function(){p&&(r(new y("Request aborted",y.ECONNABORTED,e,p)),p=null)},p.onerror=function(O){const N=O&&O.message?O.message:"Network Error",B=new y(N,y.ERR_NETWORK,e,p);B.event=O||null,r(B),p=null},p.ontimeout=function(){let O=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const N=s.transitional||nt;s.timeoutErrorMessage&&(O=s.timeoutErrorMessage),r(new y(O,N.clarifyTimeoutError?y.ETIMEDOUT:y.ECONNABORTED,e,p)),p=null},i===void 0&&o.setContentType(null),"setRequestHeader"in p&&a.forEach(o.toJSON(),function(O,N){p.setRequestHeader(N,O)}),a.isUndefined(s.withCredentials)||(p.withCredentials=!!s.withCredentials),c&&c!=="json"&&(p.responseType=s.responseType),f&&([b,u]=ne(f,!0),p.addEventListener("progress",b)),d&&p.upload&&([h,S]=ne(d),p.upload.addEventListener("progress",h),p.upload.addEventListener("loadend",S)),(s.cancelToken||s.signal)&&(l=g=>{p&&(r(!g||g.type?new $(null,e,p):g),p.abort(),p=null)},s.cancelToken&&s.cancelToken.subscribe(l),s.signal&&(s.signal.aborted?l():s.signal.addEventListener("abort",l)));const x=Rn(s.url);if(x&&R.protocols.indexOf(x)===-1){r(new y("Unsupported protocol "+x+":",y.ERR_BAD_REQUEST,e));return}p.send(i||null)})},_n=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,s;const i=function(f){if(!s){s=!0,c();const l=f instanceof Error?f:this.reason;r.abort(l instanceof y?l:new $(l instanceof Error?l.message:l))}};let o=t&&setTimeout(()=>{o=null,i(new y(`timeout ${t} of ms exceeded`,y.ETIMEDOUT))},t);const c=()=>{e&&(o&&clearTimeout(o),o=null,e.forEach(f=>{f.unsubscribe?f.unsubscribe(i):f.removeEventListener("abort",i)}),e=null)};e.forEach(f=>f.addEventListener("abort",i));const{signal:d}=r;return d.unsubscribe=()=>a.asap(c),d}},Un=function*(e,t){let n=e.byteLength;if(n{const s=Ln(e,t);let i=0,o,c=d=>{o||(o=!0,r&&r(d))};return new ReadableStream({async pull(d){try{const{done:f,value:l}=await s.next();if(f){c(),d.close();return}let h=l.byteLength;if(n){let b=i+=h;n(b)}d.enqueue(new Uint8Array(l))}catch(f){throw c(f),f}},cancel(d){return c(d),s.return()}},{highWaterMark:2})},De=64*1024,{isFunction:Z}=a,kn=(({Request:e,Response:t})=>({Request:e,Response:t}))(a.global),{ReadableStream:je,TextEncoder:qe}=a.global,He=(e,...t)=>{try{return!!e(...t)}catch{return!1}},Dn=e=>{e=a.merge.call({skipUndefined:!0},kn,e);const{fetch:t,Request:n,Response:r}=e,s=t?Z(t):typeof fetch=="function",i=Z(n),o=Z(r);if(!s)return!1;const c=s&&Z(je),d=s&&(typeof qe=="function"?(u=>m=>u.encode(m))(new qe):async u=>new Uint8Array(await new n(u).arrayBuffer())),f=i&&c&&He(()=>{let u=!1;const m=new n(R.origin,{body:new je,method:"POST",get duplex(){return u=!0,"half"}}).headers.has("Content-Type");return u&&!m}),l=o&&c&&He(()=>a.isReadableStream(new r("").body)),h={stream:l&&(u=>u.body)};s&&["text","arrayBuffer","blob","formData","stream"].forEach(u=>{!h[u]&&(h[u]=(m,p)=>{let E=m&&m[u];if(E)return E.call(m);throw new y(`Response type '${u}' is not supported`,y.ERR_NOT_SUPPORT,p)})});const b=async u=>{if(u==null)return 0;if(a.isBlob(u))return u.size;if(a.isSpecCompliantForm(u))return(await new n(R.origin,{method:"POST",body:u}).arrayBuffer()).byteLength;if(a.isArrayBufferView(u)||a.isArrayBuffer(u))return u.byteLength;if(a.isURLSearchParams(u)&&(u=u+""),a.isString(u))return(await d(u)).byteLength},S=async(u,m)=>{const p=a.toFiniteNumber(u.getContentLength());return p??b(m)};return async u=>{let{url:m,method:p,data:E,signal:x,cancelToken:g,timeout:O,onDownloadProgress:N,onUploadProgress:B,responseType:C,headers:ce,withCredentials:X="same-origin",fetchOptions:Se}=at(u),Re=t||fetch;C=C?(C+"").toLowerCase():"text";let G=_n([x,g&&g.toAbortSignal()],O),z=null;const k=G&&G.unsubscribe&&(()=>{G.unsubscribe()});let Oe;try{if(B&&f&&p!=="get"&&p!=="head"&&(Oe=await S(ce,E))!==0){let L=new n(m,{method:"POST",body:E,duplex:"half"}),H;if(a.isFormData(E)&&(H=L.headers.get("content-type"))&&ce.setContentType(H),L.body){const[le,Q]=Ue(Oe,ne(Le(B)));E=ke(L.body,De,le,Q)}}a.isString(X)||(X=X?"include":"omit");const F=i&&"credentials"in n.prototype,Te={...Se,signal:G,method:p.toUpperCase(),headers:ce.normalize().toJSON(),body:E,duplex:"half",credentials:F?X:void 0};z=i&&new n(m,Te);let U=await(i?Re(z,Se):Re(m,Te));const Ae=l&&(C==="stream"||C==="response");if(l&&(N||Ae&&k)){const L={};["status","statusText","headers"].forEach(xe=>{L[xe]=U[xe]});const H=a.toFiniteNumber(U.headers.get("content-length")),[le,Q]=N&&Ue(H,ne(Le(N),!0))||[];U=new r(ke(U.body,De,le,()=>{Q&&Q(),k&&k()}),L)}C=C||"text";let pt=await h[a.findKey(h,C)||"text"](U,u);return!Ae&&k&&k(),await new Promise((L,H)=>{ot(L,H,{data:pt,headers:A.from(U.headers),status:U.status,statusText:U.statusText,config:u,request:z})})}catch(F){throw k&&k(),F&&F.name==="TypeError"&&/Load failed|fetch/i.test(F.message)?Object.assign(new y("Network Error",y.ERR_NETWORK,u,z),{cause:F.cause||F}):y.from(F,F&&F.code,u,z)}}},jn=new Map,ct=e=>{let t=e&&e.env||{};const{fetch:n,Request:r,Response:s}=t,i=[r,s,n];let o=i.length,c=o,d,f,l=jn;for(;c--;)d=i[c],f=l.get(d),f===void 0&&l.set(d,f=c?new Map:Dn(t)),l=f;return f};ct();const ge={http:Yt,xhr:Fn,fetch:{get:ct}};a.forEach(ge,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Ie=e=>`- ${e}`,qn=e=>a.isFunction(e)||e===null||e===!1;function Hn(e,t){e=a.isArray(e)?e:[e];const{length:n}=e;let r,s;const i={};for(let o=0;o`adapter ${d} `+(f===!1?"is not supported by the environment":"is not available in the build"));let c=n?o.length>1?`since : -`+o.map(Ie).join(` -`):" "+Ie(o[0]):"as no adapter specified";throw new y("There is no suitable adapter to dispatch the request "+c,"ERR_NOT_SUPPORT")}return s}const lt={getAdapter:Hn,adapters:ge};function de(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new $(null,e)}function Me(e){return de(e),e.headers=A.from(e.headers),e.data=fe.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),lt.getAdapter(e.adapter||v.adapter,e)(e).then(function(r){return de(e),r.data=fe.call(e,e.transformResponse,r),r.headers=A.from(r.headers),r},function(r){return st(r)||(de(e),r&&r.response&&(r.response.data=fe.call(e,e.transformResponse,r.response),r.response.headers=A.from(r.response.headers))),Promise.reject(r)})}const ut="1.13.2",ae={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ae[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const $e={};ae.transitional=function(t,n,r){function s(i,o){return"[Axios v"+ut+"] Transitional option '"+i+"'"+o+(r?". "+r:"")}return(i,o,c)=>{if(t===!1)throw new y(s(o," has been removed"+(n?" in "+n:"")),y.ERR_DEPRECATED);return n&&!$e[o]&&($e[o]=!0,console.warn(s(o," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(i,o,c):!0}};ae.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function In(e,t,n){if(typeof e!="object")throw new y("options must be an object",y.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const i=r[s],o=t[i];if(o){const c=e[i],d=c===void 0||o(c,i,e);if(d!==!0)throw new y("option "+i+" must be "+d,y.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new y("Unknown option "+i,y.ERR_BAD_OPTION)}}const te={assertOptions:In,validators:ae},_=te.validators;let j=class{constructor(t){this.defaults=t||{},this.interceptors={request:new Fe,response:new Fe}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s={};Error.captureStackTrace?Error.captureStackTrace(s):s=new Error;const i=s.stack?s.stack.replace(/^.+\n/,""):"";try{r.stack?i&&!String(r.stack).endsWith(i.replace(/^.+\n.+\n/,""))&&(r.stack+=` -`+i):r.stack=i}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=q(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:i}=n;r!==void 0&&te.assertOptions(r,{silentJSONParsing:_.transitional(_.boolean),forcedJSONParsing:_.transitional(_.boolean),clarifyTimeoutError:_.transitional(_.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:te.assertOptions(s,{encode:_.function,serialize:_.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),te.assertOptions(n,{baseUrl:_.spelling("baseURL"),withXsrfToken:_.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let o=i&&a.merge(i.common,i[n.method]);i&&a.forEach(["delete","get","head","post","put","patch","common"],u=>{delete i[u]}),n.headers=A.concat(o,i);const c=[];let d=!0;this.interceptors.request.forEach(function(m){typeof m.runWhen=="function"&&m.runWhen(n)===!1||(d=d&&m.synchronous,c.unshift(m.fulfilled,m.rejected))});const f=[];this.interceptors.response.forEach(function(m){f.push(m.fulfilled,m.rejected)});let l,h=0,b;if(!d){const u=[Me.bind(this),void 0];for(u.unshift(...c),u.push(...f),b=u.length,l=Promise.resolve(n);h{if(!r._listeners)return;let i=r._listeners.length;for(;i-- >0;)r._listeners[i](s);r._listeners=null}),this.promise.then=s=>{let i;const o=new Promise(c=>{r.subscribe(c),i=c}).then(s);return o.cancel=function(){r.unsubscribe(i)},o},t(function(i,o,c){r.reason||(r.reason=new $(i,o,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new ft(function(s){t=s}),cancel:t}}};function $n(e){return function(n){return e.apply(null,n)}}function zn(e){return a.isObject(e)&&e.isAxiosError===!0}const ye={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(ye).forEach(([e,t])=>{ye[t]=e});function dt(e){const t=new j(e),n=ze(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return dt(q(e,s))},n}const w=dt(v);w.Axios=j;w.CanceledError=$;w.CancelToken=Mn;w.isCancel=st;w.VERSION=ut;w.toFormData=ie;w.AxiosError=y;w.Cancel=w.CanceledError;w.all=function(t){return Promise.all(t)};w.spread=$n;w.isAxiosError=zn;w.mergeConfig=q;w.AxiosHeaders=A;w.formToJSON=e=>rt(a.isHTMLForm(e)?new FormData(e):e);w.getAdapter=lt.getAdapter;w.HttpStatusCode=ye;w.default=w;const{Axios:Wn,AxiosError:Kn,CanceledError:vn,isCancel:Xn,CancelToken:Gn,VERSION:Qn,all:Zn,Cancel:Yn,isAxiosError:er,spread:tr,toFormData:nr,AxiosHeaders:rr,HttpStatusCode:sr,formToJSON:or,getAdapter:ir,mergeConfig:ar}=w;window.axios=w;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest"; diff --git a/chrono.docs/Master of Ceremonies_files/app-Dwo3iAEc.css b/chrono.docs/Master of Ceremonies_files/app-Dwo3iAEc.css deleted file mode 100644 index 28ca71d..0000000 --- a/chrono.docs/Master of Ceremonies_files/app-Dwo3iAEc.css +++ /dev/null @@ -1 +0,0 @@ -/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-mask-linear:linear-gradient(#fff,#fff);--tw-mask-radial:linear-gradient(#fff,#fff);--tw-mask-conic:linear-gradient(#fff,#fff);--tw-mask-left:linear-gradient(#fff,#fff);--tw-mask-right:linear-gradient(#fff,#fff);--tw-mask-bottom:linear-gradient(#fff,#fff);--tw-mask-top:linear-gradient(#fff,#fff);--tw-mask-right-from-position:0%;--tw-mask-right-to-position:100%;--tw-mask-right-from-color:black;--tw-mask-right-to-color:transparent;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-text-shadow-color:initial;--tw-text-shadow-alpha:100%;--tw-content:"";--tw-mask-left-from-position:0%;--tw-mask-left-to-position:100%;--tw-mask-left-from-color:black;--tw-mask-left-to-color:transparent}}}@layer theme{:root,:host{--font-sans:"Barlow Condensed",var(--font-fallback);--font-serif:ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:oklch(97.1% .013 17.38);--color-red-100:oklch(93.6% .032 17.717);--color-red-200:oklch(88.5% .062 18.334);--color-red-300:oklch(80.8% .114 19.571);--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-red-900:oklch(39.6% .141 25.723);--color-red-950:oklch(25.8% .092 26.042);--color-orange-50:oklch(98% .016 73.684);--color-orange-100:oklch(95.4% .038 75.164);--color-orange-200:oklch(90.1% .076 70.697);--color-orange-300:oklch(83.7% .128 66.29);--color-orange-400:oklch(75% .183 55.934);--color-orange-500:oklch(70.5% .213 47.604);--color-orange-600:oklch(64.6% .222 41.116);--color-orange-700:oklch(55.3% .195 38.402);--color-orange-800:oklch(47% .157 37.304);--color-orange-900:oklch(40.8% .123 38.172);--color-orange-950:oklch(26.6% .079 36.259);--color-amber-50:oklch(98.7% .022 95.277);--color-amber-100:oklch(96.2% .059 95.617);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-300:oklch(87.9% .169 91.605);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-amber-700:oklch(55.5% .163 48.998);--color-amber-800:oklch(47.3% .137 46.201);--color-amber-900:oklch(41.4% .112 45.904);--color-amber-950:oklch(27.9% .077 45.635);--color-yellow-50:oklch(98.7% .026 102.212);--color-yellow-100:oklch(97.3% .071 103.193);--color-yellow-200:oklch(94.5% .129 101.54);--color-yellow-300:oklch(90.5% .182 98.111);--color-yellow-400:oklch(85.2% .199 91.936);--color-yellow-500:oklch(79.5% .184 86.047);--color-yellow-600:oklch(68.1% .162 75.834);--color-yellow-700:oklch(55.4% .135 66.442);--color-yellow-800:oklch(47.6% .114 61.907);--color-yellow-900:oklch(42.1% .095 57.708);--color-yellow-950:oklch(28.6% .066 53.813);--color-lime-50:oklch(98.6% .031 120.757);--color-lime-100:oklch(96.7% .067 122.328);--color-lime-200:oklch(93.8% .127 124.321);--color-lime-300:oklch(89.7% .196 126.665);--color-lime-400:oklch(84.1% .238 128.85);--color-lime-500:oklch(76.8% .233 130.85);--color-lime-600:oklch(64.8% .2 131.684);--color-lime-700:oklch(53.2% .157 131.589);--color-lime-800:oklch(45.3% .124 130.933);--color-lime-900:oklch(40.5% .101 131.063);--color-lime-950:oklch(27.4% .072 132.109);--color-green-50:oklch(98.2% .018 155.826);--color-green-100:oklch(96.2% .044 156.743);--color-green-200:oklch(92.5% .084 155.995);--color-green-300:oklch(87.1% .15 154.449);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-green-700:oklch(52.7% .154 150.069);--color-green-800:oklch(44.8% .119 151.328);--color-green-900:oklch(39.3% .095 152.535);--color-green-950:oklch(26.6% .065 152.934);--color-emerald-50:oklch(97.9% .021 166.113);--color-emerald-100:oklch(95% .052 163.051);--color-emerald-200:oklch(90.5% .093 164.15);--color-emerald-300:oklch(84.5% .143 164.978);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-emerald-700:oklch(50.8% .118 165.612);--color-emerald-800:oklch(43.2% .095 166.913);--color-emerald-900:oklch(37.8% .077 168.94);--color-emerald-950:oklch(26.2% .051 172.552);--color-teal-50:oklch(98.4% .014 180.72);--color-teal-100:oklch(95.3% .051 180.801);--color-teal-200:oklch(91% .096 180.426);--color-teal-300:oklch(85.5% .138 181.071);--color-teal-400:oklch(77.7% .152 181.912);--color-teal-500:oklch(70.4% .14 182.503);--color-teal-600:oklch(60% .118 184.704);--color-teal-700:oklch(51.1% .096 186.391);--color-teal-800:oklch(43.7% .078 188.216);--color-teal-900:oklch(38.6% .063 188.416);--color-teal-950:oklch(27.7% .046 192.524);--color-cyan-50:oklch(98.4% .019 200.873);--color-cyan-100:oklch(95.6% .045 203.388);--color-cyan-200:oklch(91.7% .08 205.041);--color-cyan-300:oklch(86.5% .127 207.078);--color-cyan-400:oklch(78.9% .154 211.53);--color-cyan-500:oklch(71.5% .143 215.221);--color-cyan-600:oklch(60.9% .126 221.723);--color-cyan-700:oklch(52% .105 223.128);--color-cyan-800:oklch(45% .085 224.283);--color-cyan-900:oklch(39.8% .07 227.392);--color-cyan-950:oklch(30.2% .056 229.695);--color-sky-50:oklch(97.7% .013 236.62);--color-sky-100:oklch(95.1% .026 236.824);--color-sky-200:oklch(90.1% .058 230.902);--color-sky-300:oklch(82.8% .111 230.318);--color-sky-400:oklch(74.6% .16 232.661);--color-sky-500:oklch(68.5% .169 237.323);--color-sky-600:oklch(58.8% .158 241.966);--color-sky-700:oklch(50% .134 242.749);--color-sky-800:oklch(44.3% .11 240.79);--color-sky-900:oklch(39.1% .09 240.876);--color-sky-950:oklch(29.3% .066 243.157);--color-blue-50:oklch(97% .014 254.604);--color-blue-100:oklch(93.2% .032 255.585);--color-blue-200:oklch(88.2% .059 254.128);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-400:oklch(70.7% .165 254.624);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-blue-700:oklch(48.8% .243 264.376);--color-blue-800:oklch(42.4% .199 265.638);--color-blue-900:oklch(37.9% .146 265.522);--color-blue-950:oklch(28.2% .091 267.935);--color-indigo-50:oklch(96.2% .018 272.314);--color-indigo-100:oklch(93% .034 272.788);--color-indigo-200:oklch(87% .065 274.039);--color-indigo-300:oklch(78.5% .115 274.713);--color-indigo-400:oklch(67.3% .182 276.935);--color-indigo-500:oklch(58.5% .233 277.117);--color-indigo-600:oklch(51.1% .262 276.966);--color-indigo-700:oklch(45.7% .24 277.023);--color-indigo-800:oklch(39.8% .195 277.366);--color-indigo-900:oklch(35.9% .144 278.697);--color-indigo-950:oklch(25.7% .09 281.288);--color-violet-50:oklch(96.9% .016 293.756);--color-violet-100:oklch(94.3% .029 294.588);--color-violet-200:oklch(89.4% .057 293.283);--color-violet-300:oklch(81.1% .111 293.571);--color-violet-400:oklch(70.2% .183 293.541);--color-violet-500:oklch(60.6% .25 292.717);--color-violet-600:oklch(54.1% .281 293.009);--color-violet-700:oklch(49.1% .27 292.581);--color-violet-800:oklch(43.2% .232 292.759);--color-violet-900:oklch(38% .189 293.745);--color-violet-950:oklch(28.3% .141 291.089);--color-purple-50:oklch(97.7% .014 308.299);--color-purple-100:oklch(94.6% .033 307.174);--color-purple-200:oklch(90.2% .063 306.703);--color-purple-300:oklch(82.7% .119 306.383);--color-purple-400:oklch(71.4% .203 305.504);--color-purple-500:oklch(62.7% .265 303.9);--color-purple-600:oklch(55.8% .288 302.321);--color-purple-700:oklch(49.6% .265 301.924);--color-purple-800:oklch(43.8% .218 303.724);--color-purple-900:oklch(38.1% .176 304.987);--color-purple-950:oklch(29.1% .149 302.717);--color-fuchsia-50:oklch(97.7% .017 320.058);--color-fuchsia-100:oklch(95.2% .037 318.852);--color-fuchsia-200:oklch(90.3% .076 319.62);--color-fuchsia-300:oklch(83.3% .145 321.434);--color-fuchsia-400:oklch(74% .238 322.16);--color-fuchsia-500:oklch(66.7% .295 322.15);--color-fuchsia-600:oklch(59.1% .293 322.896);--color-fuchsia-700:oklch(51.8% .253 323.949);--color-fuchsia-800:oklch(45.2% .211 324.591);--color-fuchsia-900:oklch(40.1% .17 325.612);--color-fuchsia-950:oklch(29.3% .136 325.661);--color-pink-50:oklch(97.1% .014 343.198);--color-pink-100:oklch(94.8% .028 342.258);--color-pink-200:oklch(89.9% .061 343.231);--color-pink-300:oklch(82.3% .12 346.018);--color-pink-400:oklch(71.8% .202 349.761);--color-pink-500:oklch(65.6% .241 354.308);--color-pink-600:oklch(59.2% .249 .584);--color-pink-700:oklch(52.5% .223 3.958);--color-pink-800:oklch(45.9% .187 3.815);--color-pink-900:oklch(40.8% .153 2.432);--color-pink-950:oklch(28.4% .109 3.907);--color-rose-50:oklch(96.9% .015 12.422);--color-rose-100:oklch(94.1% .03 12.58);--color-rose-200:oklch(89.2% .058 10.001);--color-rose-300:oklch(81% .117 11.638);--color-rose-400:oklch(71.2% .194 13.428);--color-rose-500:oklch(64.5% .246 16.439);--color-rose-600:oklch(58.6% .253 17.585);--color-rose-700:oklch(51.4% .222 16.935);--color-rose-800:oklch(45.5% .188 13.697);--color-rose-900:oklch(41% .159 10.272);--color-rose-950:oklch(27.1% .105 12.094);--color-slate-50:oklch(98.4% .003 247.858);--color-slate-100:oklch(96.8% .007 247.896);--color-slate-200:oklch(92.9% .013 255.508);--color-slate-300:oklch(86.9% .022 252.894);--color-slate-400:oklch(70.4% .04 256.788);--color-slate-500:oklch(55.4% .046 257.417);--color-slate-600:oklch(44.6% .043 257.281);--color-slate-700:oklch(37.2% .044 257.287);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-slate-950:oklch(12.9% .042 264.695);--color-gray-50:oklch(98.5% .002 247.839);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-gray-950:oklch(13% .028 261.692);--color-zinc-50:oklch(98.5% 0 0);--color-zinc-100:oklch(96.7% .001 286.375);--color-zinc-200:oklch(92% .004 286.32);--color-zinc-300:oklch(87.1% .006 286.286);--color-zinc-400:oklch(70.5% .015 286.067);--color-zinc-500:oklch(55.2% .016 285.938);--color-zinc-600:oklch(44.2% .017 285.786);--color-zinc-700:oklch(37% .013 285.805);--color-zinc-800:oklch(27.4% .006 286.033);--color-zinc-900:oklch(21% .006 285.885);--color-zinc-950:oklch(14.1% .005 285.823);--color-neutral-50:oklch(98.5% 0 0);--color-neutral-100:oklch(97% 0 0);--color-neutral-200:oklch(92.2% 0 0);--color-neutral-300:oklch(87% 0 0);--color-neutral-400:oklch(70.8% 0 0);--color-neutral-500:oklch(55.6% 0 0);--color-neutral-600:oklch(43.9% 0 0);--color-neutral-700:oklch(37.1% 0 0);--color-neutral-800:oklch(26.9% 0 0);--color-neutral-900:oklch(20.5% 0 0);--color-neutral-950:oklch(14.5% 0 0);--color-stone-50:oklch(98.5% .001 106.423);--color-stone-100:oklch(97% .001 106.424);--color-stone-200:oklch(92.3% .003 48.717);--color-stone-300:oklch(86.9% .005 56.366);--color-stone-400:oklch(70.9% .01 56.259);--color-stone-500:oklch(55.3% .013 58.071);--color-stone-600:oklch(44.4% .011 73.639);--color-stone-700:oklch(37.4% .01 67.558);--color-stone-800:oklch(26.8% .007 34.298);--color-stone-900:oklch(21.6% .006 56.043);--color-stone-950:oklch(14.7% .004 49.25);--color-black:#000;--color-white:#fff;--spacing:.25rem;--breakpoint-sm:40rem;--breakpoint-md:48rem;--breakpoint-lg:64rem;--breakpoint-xl:80rem;--breakpoint-2xl:96rem;--container-3xs:16rem;--container-2xs:18rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--text-9xl:8rem;--text-9xl--line-height:1;--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--tracking-normal:0em;--tracking-wide:.025em;--tracking-wider:.05em;--tracking-widest:.1em;--leading-tight:1.25;--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--leading-loose:2;--radius-xs:.125rem;--radius-sm:.25rem;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--radius-4xl:2rem;--shadow-2xs:0 1px #0000000d;--shadow-xs:0 1px 2px 0 #0000000d;--shadow-sm:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--shadow-md:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--shadow-lg:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--shadow-xl:0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;--shadow-2xl:0 25px 50px -12px #00000040;--inset-shadow-2xs:inset 0 1px #0000000d;--inset-shadow-xs:inset 0 1px 1px #0000000d;--inset-shadow-sm:inset 0 2px 4px #0000000d;--drop-shadow-xs:0 1px 1px #0000000d;--drop-shadow-sm:0 1px 2px #00000026;--drop-shadow-md:0 3px 3px #0000001f;--drop-shadow-lg:0 4px 4px #00000026;--drop-shadow-xl:0 9px 7px #0000001a;--drop-shadow-2xl:0 25px 25px #00000026;--ease-in:cubic-bezier(.4,0,1,1);--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-ping:ping 1s cubic-bezier(0,0,.2,1)infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--animate-bounce:bounce 1s infinite;--blur-xs:4px;--blur-sm:8px;--blur-md:12px;--blur-lg:16px;--blur-xl:24px;--blur-2xl:40px;--blur-3xl:64px;--perspective-dramatic:100px;--perspective-near:300px;--perspective-normal:500px;--perspective-midrange:800px;--perspective-distant:1200px;--aspect-video:16/9;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-accent:var(--color-zinc-800);--color-accent-content:var(--color-zinc-800);--color-accent-foreground:var(--color-white);--font-fallback:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-secondary:"Forum",var(--font-fallback);--gradient-menu:linear-gradient(150deg,#fff 0%,#a2a2a2 100%);--gradient-title:linear-gradient(315deg,#fff 0%,#e9cea9 50%,#f3be77 100%);--gradient-invert:linear-gradient(135deg,#fff 0%,#e9cea9 50%,#e9cea9 100%)}.dark{--color-accent:var(--color-white);--color-accent-content:var(--color-white);--color-accent-foreground:var(--color-zinc-800)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}ui-button{display:block}ui-label{cursor:default;display:inline-block}ui-description,ui-legend,ui-select{display:block}ui-selected-option{display:contents}ui-options:not([popover]),ui-option,ui-option-create,ui-option-empty,ui-empty{cursor:default;display:block}ui-pillbox,ui-checkbox-group{display:block}ui-checkbox,ui-switch{-webkit-user-select:none;user-select:none;display:inline-block}ui-radio-group{display:block}ui-radio{-webkit-user-select:none;user-select:none;display:inline-block}ui-date-picker,ui-time-picker,ui-calendar{display:block}ui-calendar-preset,ui-calendar-previous,ui-calendar-next,ui-calender-next{-webkit-user-select:none;user-select:none;display:block}ui-menu[popover]:popover-open{display:block}ui-menu[popover].\:popover-open{display:block}ui-menu-checkbox,ui-menu-radio{cursor:default;display:contents}ui-disclosure{display:block}ui-tab-group,ui-tabs{cursor:default;display:block}ui-resizable,ui-composer,ui-editor,ui-editor-content,ui-progress{display:block}}@layer components{:where([data-flux-timeline]){--flux-timeline-item-gap:calc(var(--spacing)*4);--flux-timeline-item-offset:0px;--flux-timeline-content-gap:calc(var(--spacing)*3);--flux-timeline-line-gap:var(--spacing);--flux-timeline-line-width:1px;--flux-timeline-indicator-size:calc(var(--spacing)*8)}:where([data-flux-timeline-horizontal]){--flux-timeline-content-gap:calc(var(--spacing)*2)}:where([data-flux-timeline-size=lg]){--flux-timeline-item-gap:calc(var(--spacing)*8);--flux-timeline-content-gap:calc(var(--spacing)*4);--flux-timeline-line-gap:0px;--flux-timeline-line-width:2px;--flux-timeline-indicator-size:calc(var(--spacing)*12)}:where([data-flux-timeline-horizontal][data-flux-timeline-size=lg]),:where([data-flux-timeline-horizontal] [data-flux-timeline-size=lg]){--flux-timeline-item-gap:calc(var(--spacing)*4);--flux-timeline-content-gap:calc(var(--spacing)*3)}}@layer utilities{.\@container{container-type:inline-size}.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.absolute\!{position:absolute!important}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.inset-\[3px\]{top:3px;right:3px;bottom:3px;left:3px}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.inset-x-3{inset-inline:calc(var(--spacing)*3)}.inset-y-0{inset-block:calc(var(--spacing)*0)}.inset-y-\[3px\]{inset-block:3px}.start-0{inset-inline-start:calc(var(--spacing)*0)}.end-0{inset-inline-end:calc(var(--spacing)*0)}.end-\[-2px\]{inset-inline-end:-2px}.-top-2{top:calc(var(--spacing)*-2)}.top-0{top:calc(var(--spacing)*0)}.top-1{top:calc(var(--spacing)*1)}.top-1\/2{top:50%}.top-2{top:calc(var(--spacing)*2)}.top-2\.5{top:calc(var(--spacing)*2.5)}.top-3{top:calc(var(--spacing)*3)}.top-4{top:calc(var(--spacing)*4)}.top-\[-2px\]{top:-2px}.top-full{top:100%}.top-px{top:1px}.right-0{right:calc(var(--spacing)*0)}.right-0\.5{right:calc(var(--spacing)*.5)}.right-1{right:calc(var(--spacing)*1)}.right-2{right:calc(var(--spacing)*2)}.right-2\.5{right:calc(var(--spacing)*2.5)}.right-3{right:calc(var(--spacing)*3)}.right-3\.5{right:calc(var(--spacing)*3.5)}.right-4{right:calc(var(--spacing)*4)}.bottom-0{bottom:calc(var(--spacing)*0)}.bottom-0\.5{bottom:calc(var(--spacing)*.5)}.bottom-1{bottom:calc(var(--spacing)*1)}.bottom-2{bottom:calc(var(--spacing)*2)}.bottom-2\.5{bottom:calc(var(--spacing)*2.5)}.bottom-3{bottom:calc(var(--spacing)*3)}.bottom-\[-1rem\]{bottom:-1rem}.bottom-\[-3px\]{bottom:-3px}.bottom-px{bottom:1px}.-left-\[9999px\]{left:-9999px}.left-0{left:calc(var(--spacing)*0)}.left-1{left:calc(var(--spacing)*1)}.left-2{left:calc(var(--spacing)*2)}.left-2\.5{left:calc(var(--spacing)*2.5)}.isolate{isolation:isolate}.-z-10{z-index:-10}.z-0{z-index:0}.z-1{z-index:1}.z-10{z-index:10}.z-20{z-index:20}.z-20\!{z-index:20!important}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.z-50\!{z-index:50!important}.z-\[110\]{z-index:110}.z-\[120\]{z-index:120}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-4{grid-column:span 4/span 4}.col-span-full{grid-column:1/-1}.row-span-full{grid-row:1/-1}.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.container\!{width:100%!important}@media(min-width:40rem){.container\!{max-width:40rem!important}}@media(min-width:48rem){.container\!{max-width:48rem!important}}@media(min-width:64rem){.container\!{max-width:64rem!important}}@media(min-width:80rem){.container\!{max-width:80rem!important}}@media(min-width:96rem){.container\!{max-width:96rem!important}}.m-0{margin:calc(var(--spacing)*0)}.m-1{margin:calc(var(--spacing)*1)}.m-2{margin:calc(var(--spacing)*2)}.m-3{margin:calc(var(--spacing)*3)}.m-4{margin:calc(var(--spacing)*4)}.m-10{margin:calc(var(--spacing)*10)}.m-15{margin:calc(var(--spacing)*15)}.m-21{margin:calc(var(--spacing)*21)}.m-27{margin:calc(var(--spacing)*27)}.m-33{margin:calc(var(--spacing)*33)}.m-37{margin:calc(var(--spacing)*37)}.m-39{margin:calc(var(--spacing)*39)}.m-40{margin:calc(var(--spacing)*40)}.m-41{margin:calc(var(--spacing)*41)}.m-46{margin:calc(var(--spacing)*46)}.m-53{margin:calc(var(--spacing)*53)}.m-54{margin:calc(var(--spacing)*54)}.m-55{margin:calc(var(--spacing)*55)}.m-60{margin:calc(var(--spacing)*60)}.m-64{margin:calc(var(--spacing)*64)}.m-74{margin:calc(var(--spacing)*74)}.m-82{margin:calc(var(--spacing)*82)}.m-84{margin:calc(var(--spacing)*84)}.m-93{margin:calc(var(--spacing)*93)}.m-95{margin:calc(var(--spacing)*95)}.m-98{margin:calc(var(--spacing)*98)}.m-137{margin:calc(var(--spacing)*137)}.m-138{margin:calc(var(--spacing)*138)}.m-144{margin:calc(var(--spacing)*144)}.m-154{margin:calc(var(--spacing)*154)}.m-250{margin:calc(var(--spacing)*250)}.m-252{margin:calc(var(--spacing)*252)}.m-276{margin:calc(var(--spacing)*276)}.m-410{margin:calc(var(--spacing)*410)}.m-440{margin:calc(var(--spacing)*440)}.m-462{margin:calc(var(--spacing)*462)}.m-503{margin:calc(var(--spacing)*503)}.m-513{margin:calc(var(--spacing)*513)}.m-557{margin:calc(var(--spacing)*557)}.m-818{margin:calc(var(--spacing)*818)}.m-882{margin:calc(var(--spacing)*882)}.m-1610{margin:calc(var(--spacing)*1610)}.m-1867{margin:calc(var(--spacing)*1867)}.m-1940{margin:calc(var(--spacing)*1940)}.m-2077{margin:calc(var(--spacing)*2077)}.m-2136{margin:calc(var(--spacing)*2136)}.m-2287{margin:calc(var(--spacing)*2287)}.m-2519{margin:calc(var(--spacing)*2519)}.m-2590{margin:calc(var(--spacing)*2590)}.m-\[-2px\]{margin:-2px}.-mx-\[\.3125rem\]{margin-inline:-.3125rem}.mx-1{margin-inline:calc(var(--spacing)*1)}.mx-2{margin-inline:calc(var(--spacing)*2)}.mx-3{margin-inline:calc(var(--spacing)*3)}.mx-6{margin-inline:calc(var(--spacing)*6)}.mx-\[-5px\]{margin-inline:-5px}.mx-auto{margin-inline:auto}.-my-1{margin-block:calc(var(--spacing)*-1)}.-my-\[calc\(0\.25rem-1px\)\]{margin-block:calc(1px - .25rem)}.-my-\[calc\(0\.25rem-2px\)\]{margin-block:calc(2px - .25rem)}.-my-px{margin-block:-1px}.my-6{margin-block:calc(var(--spacing)*6)}.my-8{margin-block:calc(var(--spacing)*8)}.my-20{margin-block:calc(var(--spacing)*20)}.my-\[\.3125rem\]{margin-block:.3125rem}.my-px{margin-block:1px}.-ms-1{margin-inline-start:calc(var(--spacing)*-1)}.-ms-1\.5{margin-inline-start:calc(var(--spacing)*-1.5)}.-ms-2{margin-inline-start:calc(var(--spacing)*-2)}.-ms-2\.5{margin-inline-start:calc(var(--spacing)*-2.5)}.-ms-3{margin-inline-start:calc(var(--spacing)*-3)}.-ms-4{margin-inline-start:calc(var(--spacing)*-4)}.ms-1{margin-inline-start:calc(var(--spacing)*1)}.ms-1\.5{margin-inline-start:calc(var(--spacing)*1.5)}.ms-2{margin-inline-start:calc(var(--spacing)*2)}.ms-3{margin-inline-start:calc(var(--spacing)*3)}.ms-4{margin-inline-start:calc(var(--spacing)*4)}.ms-5{margin-inline-start:calc(var(--spacing)*5)}.ms-auto{margin-inline-start:auto}.-me-1{margin-inline-end:calc(var(--spacing)*-1)}.-me-1\.5{margin-inline-end:calc(var(--spacing)*-1.5)}.-me-2{margin-inline-end:calc(var(--spacing)*-2)}.-me-2\.5{margin-inline-end:calc(var(--spacing)*-2.5)}.-me-3{margin-inline-end:calc(var(--spacing)*-3)}.-me-4{margin-inline-end:calc(var(--spacing)*-4)}.-me-\[\.3125rem\]{margin-inline-end:-.3125rem}.me-2{margin-inline-end:calc(var(--spacing)*2)}.me-3{margin-inline-end:calc(var(--spacing)*3)}.me-4{margin-inline-end:calc(var(--spacing)*4)}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:decimal}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:disc}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.25em;font-weight:600}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em;font-style:italic;font-weight:500}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:0;margin-bottom:.888889em;font-size:2.25em;font-weight:800;line-height:1.11111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:2em;margin-bottom:1em;font-size:1.5em;font-weight:700;line-height:1.33333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;font-weight:600;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em;display:block}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-kbd);box-shadow:0 0 0 1px var(--tw-prose-kbd-shadows),0 3px 0 var(--tw-prose-kbd-shadows);padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-family:inherit;font-size:.875em;font-weight:500}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;font-weight:400;line-height:1.71429;overflow-x:auto}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit;background-color:#0000;border-width:0;border-radius:0;padding:0}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){table-layout:auto;width:100%;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.71429}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);vertical-align:bottom;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em;font-weight:600}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);margin-top:.857143em;font-size:.875em;line-height:1.42857}.prose{--tw-prose-body:oklch(37.3% .034 259.733);--tw-prose-headings:oklch(21% .034 264.665);--tw-prose-lead:oklch(44.6% .03 256.802);--tw-prose-links:oklch(21% .034 264.665);--tw-prose-bold:oklch(21% .034 264.665);--tw-prose-counters:oklch(55.1% .027 264.364);--tw-prose-bullets:oklch(87.2% .01 258.338);--tw-prose-hr:oklch(92.8% .006 264.531);--tw-prose-quotes:oklch(21% .034 264.665);--tw-prose-quote-borders:oklch(92.8% .006 264.531);--tw-prose-captions:oklch(55.1% .027 264.364);--tw-prose-kbd:oklch(21% .034 264.665);--tw-prose-kbd-shadows:oklab(21% -.00316127 -.0338527/.1);--tw-prose-code:oklch(21% .034 264.665);--tw-prose-pre-code:oklch(92.8% .006 264.531);--tw-prose-pre-bg:oklch(27.8% .033 256.848);--tw-prose-th-borders:oklch(87.2% .01 258.338);--tw-prose-td-borders:oklch(92.8% .006 264.531);--tw-prose-invert-body:oklch(87.2% .01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(70.7% .022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(70.7% .022 261.325);--tw-prose-invert-bullets:oklch(44.6% .03 256.802);--tw-prose-invert-hr:oklch(37.3% .034 259.733);--tw-prose-invert-quotes:oklch(96.7% .003 264.542);--tw-prose-invert-quote-borders:oklch(37.3% .034 259.733);--tw-prose-invert-captions:oklch(70.7% .022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:#ffffff1a;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(87.2% .01 258.338);--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:oklch(44.6% .03 256.802);--tw-prose-invert-td-borders:oklch(37.3% .034 259.733);font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.prose-lg{font-size:1.125rem;line-height:1.77778}.prose-lg :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em}.prose-lg :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.09091em;margin-bottom:1.09091em;font-size:1.22222em;line-height:1.45455}.prose-lg :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.66667em;margin-bottom:1.66667em;padding-inline-start:1em}.prose-lg :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:.833333em;font-size:2.66667em;line-height:1}.prose-lg :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.86667em;margin-bottom:1.06667em;font-size:1.66667em;line-height:1.33333}.prose-lg :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.66667em;margin-bottom:.666667em;font-size:1.33333em;line-height:1.5}.prose-lg :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:.444444em;line-height:1.55556}.prose-lg :where(img):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-lg :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:1.77778em}.prose-lg :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-lg :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:1.77778em}.prose-lg :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.222222em;padding-inline-end:.444444em;padding-bottom:.222222em;border-radius:.3125rem;padding-inline-start:.444444em;font-size:.888889em}.prose-lg :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em}.prose-lg :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.866667em}.prose-lg :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em}.prose-lg :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:1em;padding-inline-end:1.5em;padding-bottom:1em;border-radius:.375rem;margin-top:2em;margin-bottom:2em;padding-inline-start:1.5em;font-size:.888889em;line-height:1.75}.prose-lg :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-lg :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em;padding-inline-start:1.55556em}.prose-lg :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;margin-bottom:.666667em}.prose-lg :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-lg :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.444444em}.prose-lg :where(.prose-lg>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em}.prose-lg :where(.prose-lg>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em}.prose-lg :where(.prose-lg>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.33333em}.prose-lg :where(.prose-lg>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em}.prose-lg :where(.prose-lg>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.33333em}.prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em}.prose-lg :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em}.prose-lg :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em}.prose-lg :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;padding-inline-start:1.55556em}.prose-lg :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:3.11111em;margin-bottom:3.11111em}.prose-lg :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-lg :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-lg :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-lg :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-lg :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em;line-height:1.5}.prose-lg :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:.75em;padding-bottom:.75em;padding-inline-start:.75em}.prose-lg :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-lg :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-lg :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.75em;padding-inline-end:.75em;padding-bottom:.75em;padding-inline-start:.75em}.prose-lg :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-lg :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-lg :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:1.77778em}.prose-lg :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-lg :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1em;font-size:.888889em;line-height:1.5}.prose-lg :where(.prose-lg>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-lg :where(.prose-lg>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.-mt-1{margin-top:calc(var(--spacing)*-1)}.-mt-1\.5{margin-top:calc(var(--spacing)*-1.5)}.-mt-2\.5{margin-top:calc(var(--spacing)*-2.5)}.-mt-\[\.3125rem\]{margin-top:-.3125rem}.-mt-\[4\.9rem\]{margin-top:-4.9rem}.mt-0\.5{margin-top:calc(var(--spacing)*.5)}.mt-0\.25{margin-top:calc(var(--spacing)*.25)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-12{margin-top:calc(var(--spacing)*12)}.mt-16{margin-top:calc(var(--spacing)*16)}.mt-28{margin-top:calc(var(--spacing)*28)}.mt-80{margin-top:calc(var(--spacing)*80)}.mt-\[-5px\]{margin-top:-5px}.mt-\[3px\]{margin-top:3px}.mt-auto{margin-top:auto}.mt-px{margin-top:1px}.-mr-1\.25{margin-right:calc(var(--spacing)*-1.25)}.mr-0{margin-right:calc(var(--spacing)*0)}.mr-1{margin-right:calc(var(--spacing)*1)}.mr-3{margin-right:calc(var(--spacing)*3)}.mr-auto{margin-right:auto}.-mb-1{margin-bottom:calc(var(--spacing)*-1)}.-mb-1\.5{margin-bottom:calc(var(--spacing)*-1.5)}.-mb-2\.5{margin-bottom:calc(var(--spacing)*-2.5)}.-mb-3{margin-bottom:calc(var(--spacing)*-3)}.-mb-\[\.3125rem\]{margin-bottom:-.3125rem}.-mb-px{margin-bottom:-1px}.mb-0\!{margin-bottom:calc(var(--spacing)*0)!important}.mb-0\.25{margin-bottom:calc(var(--spacing)*.25)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-1\.5{margin-bottom:calc(var(--spacing)*1.5)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-5{margin-bottom:calc(var(--spacing)*5)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.mb-10{margin-bottom:calc(var(--spacing)*10)}.mb-12{margin-bottom:calc(var(--spacing)*12)}.mb-16{margin-bottom:calc(var(--spacing)*16)}.mb-\[2px\]{margin-bottom:2px}.mb-\[5px\]{margin-bottom:5px}.mb-\[10px\]{margin-bottom:10px}.-ml-8{margin-left:calc(var(--spacing)*-8)}.-ml-px{margin-left:-1px}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-auto{margin-left:auto}.ml-px{margin-left:1px}.box-content{box-sizing:content-box}.line-clamp-2{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline\!{display:inline!important}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.inline-table{display:inline-table}.list-item{display:list-item}.table{display:table}.table\!{display:table!important}.table-caption{display:table-caption}.table-cell{display:table-cell}.table-column{display:table-column}.table-column-group{display:table-column-group}.table-footer-group{display:table-footer-group}.table-header-group{display:table-header-group}.table-row{display:table-row}.table-row-group{display:table-row-group}.aspect-\[3\/4\]{aspect-ratio:3/4}.aspect-\[335\/376\]{aspect-ratio:335/376}.aspect-video{aspect-ratio:var(--aspect-video)}.\!size-4{width:calc(var(--spacing)*4)!important;height:calc(var(--spacing)*4)!important}.\!size-6{width:calc(var(--spacing)*6)!important;height:calc(var(--spacing)*6)!important}.\!size-8{width:calc(var(--spacing)*8)!important;height:calc(var(--spacing)*8)!important}.size-1{width:calc(var(--spacing)*1);height:calc(var(--spacing)*1)}.size-2{width:calc(var(--spacing)*2);height:calc(var(--spacing)*2)}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}.size-3\!{width:calc(var(--spacing)*3)!important;height:calc(var(--spacing)*3)!important}.size-3\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-4\!{width:calc(var(--spacing)*4)!important;height:calc(var(--spacing)*4)!important}.size-5{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}.size-5\!{width:calc(var(--spacing)*5)!important;height:calc(var(--spacing)*5)!important}.size-6{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.size-7{width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.size-8{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.size-10{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.size-11{width:calc(var(--spacing)*11);height:calc(var(--spacing)*11)}.size-12{width:calc(var(--spacing)*12);height:calc(var(--spacing)*12)}.size-13{width:calc(var(--spacing)*13);height:calc(var(--spacing)*13)}.size-14{width:calc(var(--spacing)*14);height:calc(var(--spacing)*14)}.size-20{width:calc(var(--spacing)*20);height:calc(var(--spacing)*20)}.size-\[1\.125rem\]{width:1.125rem;height:1.125rem}.size-\[6px\]{width:6px;height:6px}.size-\[var\(--card-version-switch-icon-size\)\]{width:var(--card-version-switch-icon-size);height:var(--card-version-switch-icon-size)}.size-\[var\(--card-version-switch-size\)\]{width:var(--card-version-switch-size);height:var(--card-version-switch-size)}.size-full{width:100%;height:100%}.h-1{height:calc(var(--spacing)*1)}.h-1\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-2\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-12{height:calc(var(--spacing)*12)}.h-14{height:calc(var(--spacing)*14)}.h-14\.5{height:calc(var(--spacing)*14.5)}.h-17\.25{height:calc(var(--spacing)*17.25)}.h-20{height:calc(var(--spacing)*20)}.h-40{height:calc(var(--spacing)*40)}.h-56{height:calc(var(--spacing)*56)}.h-64{height:calc(var(--spacing)*64)}.h-\[28px\]{height:28px}.h-\[42px\]{height:42px}.h-\[48px\]{height:48px}.h-\[56px\]{height:56px}.h-\[58px\]{height:58px}.h-\[72px\]{height:72px}.h-\[260px\]{height:260px}.h-\[308px\]{height:308px}.h-\[480px\]{height:480px}.h-\[910px\]{height:910px}.h-\[calc\(2rem\+2px\)\]{height:calc(2rem + 2px)}.h-auto{height:auto}.h-auto\!{height:auto!important}.h-full{height:100%}.h-px{height:1px}.max-h-\[20rem\]{max-height:20rem}.max-h-\[90vh\]{max-height:90vh}.max-h-\[100vh\]{max-height:100vh}.max-h-\[calc\(100dvh-1rem\)\]{max-height:calc(100dvh - 1rem)}.max-h-dvh{max-height:100dvh}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-4{min-height:calc(var(--spacing)*4)}.min-h-6{min-height:calc(var(--spacing)*6)}.min-h-8{min-height:calc(var(--spacing)*8)}.min-h-10{min-height:calc(var(--spacing)*10)}.min-h-14{min-height:calc(var(--spacing)*14)}.min-h-16{min-height:calc(var(--spacing)*16)}.min-h-\[520px\]{min-height:520px}.min-h-\[575px\]{min-height:575px}.min-h-\[664px\]{min-height:664px}.min-h-\[814px\]{min-height:814px}.min-h-\[calc\(100dvh-1rem\)\]{min-height:calc(100dvh - 1rem)}.min-h-auto{min-height:auto}.min-h-dvh{min-height:100dvh}.min-h-screen{min-height:100vh}.w-1{width:calc(var(--spacing)*1)}.w-1\.5{width:calc(var(--spacing)*1.5)}.w-1\/3{width:33.3333%}.w-1\/4{width:25%}.w-2{width:calc(var(--spacing)*2)}.w-2\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-3\.5{width:calc(var(--spacing)*3.5)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-6\!{width:calc(var(--spacing)*6)!important}.w-7{width:calc(var(--spacing)*7)}.w-8{width:calc(var(--spacing)*8)}.w-8\!{width:calc(var(--spacing)*8)!important}.w-10{width:calc(var(--spacing)*10)}.w-20{width:calc(var(--spacing)*20)}.w-80{width:calc(var(--spacing)*80)}.w-90{width:calc(var(--spacing)*90)}.w-\[35px\]{width:35px}.w-\[160px\]{width:160px}.w-\[204px\]{width:204px}.w-\[300px\]{width:300px}.w-\[331px\]{width:331px}.w-\[448px\]{width:448px}.w-\[640px\]{width:640px}.w-\[calc\(2ch\+2px\)\]{width:calc(2ch + 2px)}.w-\[calc\(100\%-1px\)\]{width:calc(100% - 1px)}.w-\[calc\(100\%-2px\)\]{width:calc(100% - 2px)}.w-\[full\]{width:full}.w-fit{width:fit-content}.w-full{width:100%}.w-px{width:1px}.max-w-2xl{max-width:var(--container-2xl)}.max-w-3{max-width:calc(var(--spacing)*3)}.max-w-3xl{max-width:var(--container-3xl)}.max-w-4xl{max-width:var(--container-4xl)}.max-w-5xl{max-width:var(--container-5xl)}.max-w-6xl{max-width:var(--container-6xl)}.max-w-7xl{max-width:var(--container-7xl)}.max-w-80{max-width:calc(var(--spacing)*80)}.max-w-480{max-width:calc(var(--spacing)*480)}.max-w-\[22rem\]{max-width:22rem}.max-w-\[95vw\]{max-width:95vw}.max-w-\[335px\]{max-width:335px}.max-w-\[400px\]{max-width:400px}.max-w-\[540px\]{max-width:540px}.max-w-\[600px\]{max-width:600px}.max-w-\[620px\]{max-width:620px}.max-w-\[680px\]{max-width:680px}.max-w-\[720px\]{max-width:720px}.max-w-\[790px\]{max-width:790px}.max-w-\[1265px\]{max-width:1265px}.max-w-\[1780px\]{max-width:1780px}.max-w-full{max-width:100%}.max-w-lg{max-width:var(--container-lg)}.max-w-none{max-width:none}.max-w-sm{max-width:var(--container-sm)}.max-w-xl{max-width:var(--container-xl)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-2{min-width:calc(var(--spacing)*2)}.min-w-3{min-width:calc(var(--spacing)*3)}.min-w-4{min-width:calc(var(--spacing)*4)}.min-w-5{min-width:calc(var(--spacing)*5)}.min-w-6{min-width:calc(var(--spacing)*6)}.min-w-8{min-width:calc(var(--spacing)*8)}.min-w-10{min-width:calc(var(--spacing)*10)}.min-w-12{min-width:calc(var(--spacing)*12)}.min-w-56{min-width:calc(var(--spacing)*56)}.min-w-70{min-width:calc(var(--spacing)*70)}.min-w-85\.5{min-width:calc(var(--spacing)*85.5)}.min-w-\[10rem\]{min-width:10rem}.min-w-\[100vw\]{min-width:100vw}.min-w-\[120px\]{min-width:120px}.min-w-\[144px\]{min-width:144px}.min-w-\[209px\]{min-width:209px}.min-w-\[240px\]{min-width:240px}.min-w-\[360px\]{min-width:360px}.min-w-\[calc\(100vw-1rem\)\]{min-width:calc(100vw - 1rem)}.min-w-full{min-width:100%}.flex-1{flex:1}.flex-none{flex:none}.flex-shrink{flex-shrink:1}.flex-shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.grow-0{flex-grow:0}.basis-\[calc\(33\.333\%-1rem\)\]{flex-basis:calc(33.333% - 1rem)}.basis-full{flex-basis:100%}.table-fixed{table-layout:fixed}.border-collapse{border-collapse:collapse}.border-separate{border-collapse:separate}.border-spacing-0{--tw-border-spacing-x:calc(var(--spacing)*0);--tw-border-spacing-y:calc(var(--spacing)*0);border-spacing:var(--tw-border-spacing-x)var(--tw-border-spacing-y)}.border-spacing-x-0{--tw-border-spacing-x:calc(var(--spacing)*0);border-spacing:var(--tw-border-spacing-x)var(--tw-border-spacing-y)}.origin-top-left{transform-origin:0 0}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-\[0\.1875rem\]{--tw-translate-x:.1875rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-\[0\.9375rem\]{--tw-translate-x:.9375rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-\[15\%\]{--tw-translate-x:15%;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-0{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[calc\(100\%\+1rem\)\]{--tw-translate-y: calc(100% + 1rem) ;translate:var(--tw-translate-x)var(--tw-translate-y)}.scale-95{--tw-scale-x:95%;--tw-scale-y:95%;--tw-scale-z:95%;scale:var(--tw-scale-x)var(--tw-scale-y)}.scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x)var(--tw-scale-y)}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.transform\!{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)!important}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-default{cursor:default}.cursor-help{cursor:help}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.touch-manipulation{touch-action:manipulation}.touch-none{touch-action:none}.resize{resize:both}.resize\!{resize:both!important}.resize-none{resize:none}.resize-y{resize:vertical}.scroll-my-\[\.3125rem\]{scroll-margin-block:.3125rem}.scroll-py-\[\.3125rem\]{scroll-padding-block:.3125rem}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.\[appearance\:slider-vertical\]{-webkit-appearance:slider-vertical;-moz-appearance:slider-vertical;appearance:slider-vertical}.\[appearance\:textfield\]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-\[1fr_7rem\]{grid-template-columns:1fr 7rem}.grid-cols-\[auto_1fr_1fr_auto\]{grid-template-columns:auto 1fr 1fr auto}.grid-cols-\[minmax\(0\,1fr\)_4\.6rem_4\.2rem\]{grid-template-columns:minmax(0,1fr) 4.6rem 4.2rem}.grid-rows-\[auto_auto_auto_auto_auto\]{grid-template-rows:auto auto auto auto auto}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.place-items-center{place-items:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-start{justify-content:flex-start}.justify-items-center{justify-items:center}.gap-0{gap:calc(var(--spacing)*0)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-2\.5{gap:calc(var(--spacing)*2.5)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-7{gap:calc(var(--spacing)*7)}.gap-8{gap:calc(var(--spacing)*8)}.gap-10{gap:calc(var(--spacing)*10)}.gap-12{gap:calc(var(--spacing)*12)}.gap-\[0px_40px\]{gap:0 40px}.gap-\[10px_40px\]{gap:10px 40px}.gap-\[30px_80px\]{gap:30px 80px}.gap-\[30px_160px\]{gap:30px 160px}.gap-\[100px\]{gap:100px}:where(.space-y-0\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-10>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*10)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*10)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-\[2px\]>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(2px*var(--tw-space-y-reverse));margin-block-end:calc(2px*calc(1 - var(--tw-space-y-reverse)))}.gap-x-1\.5{column-gap:calc(var(--spacing)*1.5)}.gap-x-3{column-gap:calc(var(--spacing)*3)}.gap-x-4{column-gap:calc(var(--spacing)*4)}:where(.space-x-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*1)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-x-reverse)))}.gap-y-1\.5{row-gap:calc(var(--spacing)*1.5)}.gap-y-2{row-gap:calc(var(--spacing)*2)}.gap-y-4\.5{row-gap:calc(var(--spacing)*4.5)}.place-self-start{place-self:start}.self-center{align-self:center}.self-end{align-self:flex-end}.self-start{align-self:flex-start}.self-stretch{align-self:stretch}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overscroll-contain{overscroll-behavior:contain}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-\[\.3rem\]{border-radius:.3rem}.rounded-\[1\.55rem\]{border-radius:1.55rem}.rounded-\[2\.5rem\]{border-radius:2.5rem}.rounded-\[3px\]{border-radius:3px}.rounded-\[4px\]{border-radius:4px}.rounded-\[6px\]{border-radius:6px}.rounded-\[8px\]{border-radius:8px}.rounded-\[28px\]{border-radius:28px}.rounded-\[var\(--avatar-radius\)\]{border-radius:var(--avatar-radius)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-sm{border-radius:var(--radius-sm)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-s-lg{border-start-start-radius:var(--radius-lg);border-end-start-radius:var(--radius-lg)}.rounded-e-lg{border-start-end-radius:var(--radius-lg);border-end-end-radius:var(--radius-lg)}.rounded-t-\[calc\(0\.5rem-1px\)\]{border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.rounded-t-lg{border-top-left-radius:var(--radius-lg);border-top-right-radius:var(--radius-lg)}.rounded-l-md{border-top-left-radius:var(--radius-md);border-bottom-left-radius:var(--radius-md)}.rounded-r-md{border-top-right-radius:var(--radius-md);border-bottom-right-radius:var(--radius-md)}.rounded-br-lg{border-bottom-right-radius:var(--radius-lg)}.rounded-bl-lg{border-bottom-left-radius:var(--radius-lg)}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-1{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-4{border-style:var(--tw-border-style);border-width:4px}.border-s{border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.border-s-0{border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.border-e{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.border-e-0{border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-t-0{border-top-style:var(--tw-border-style);border-top-width:0}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-2,.border-b-\[2px\]{border-bottom-style:var(--tw-border-style);border-bottom-width:2px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-none{--tw-border-style:none;border-style:none}.border-solid{--tw-border-style:solid;border-style:solid}.border-\(--callout-border\){border-color:var(--callout-border)}.border-\[\#9e7946\]\/80{border-color:#9e7946cc}.border-\[\#19140035\]{border-color:#19140035}.border-\[\#C79B4A\]{border-color:#c79b4a}.border-\[\#C79B4A\]\/35{border-color:#c79b4a59}.border-\[\#C79B4A\]\/50{border-color:#c79b4a80}.border-\[\#e3e3e0\]{border-color:#e3e3e0}.border-\[\#f2c731\]{border-color:#f2c731}.border-accent{border-color:var(--color-accent)}.border-amber-300\/40{border-color:#ffd23666}@supports (color:color-mix(in lab,red,red)){.border-amber-300\/40{border-color:color-mix(in oklab,var(--color-amber-300)40%,transparent)}}.border-amber-300\/50{border-color:#ffd23680}@supports (color:color-mix(in lab,red,red)){.border-amber-300\/50{border-color:color-mix(in oklab,var(--color-amber-300)50%,transparent)}}.border-amber-300\/70{border-color:#ffd236b3}@supports (color:color-mix(in lab,red,red)){.border-amber-300\/70{border-color:color-mix(in oklab,var(--color-amber-300)70%,transparent)}}.border-black{border-color:var(--color-black)}.border-black\/10{border-color:#0000001a}@supports (color:color-mix(in lab,red,red)){.border-black\/10{border-color:color-mix(in oklab,var(--color-black)10%,transparent)}}.border-gray-200{border-color:var(--color-gray-200)}.border-gray-300{border-color:var(--color-gray-300)}.border-red-500{border-color:var(--color-red-500)}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.border-white\/10{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.border-white\/10{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.border-white\/10\!{border-color:#ffffff1a!important}@supports (color:color-mix(in lab,red,red)){.border-white\/10\!{border-color:color-mix(in oklab,var(--color-white)10%,transparent)!important}}.border-white\/15{border-color:#ffffff26}@supports (color:color-mix(in lab,red,red)){.border-white\/15{border-color:color-mix(in oklab,var(--color-white)15%,transparent)}}.border-white\/20{border-color:#fff3}@supports (color:color-mix(in lab,red,red)){.border-white\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.border-white\/25{border-color:#ffffff40}@supports (color:color-mix(in lab,red,red)){.border-white\/25{border-color:color-mix(in oklab,var(--color-white)25%,transparent)}}.border-white\/30{border-color:#ffffff4d}@supports (color:color-mix(in lab,red,red)){.border-white\/30{border-color:color-mix(in oklab,var(--color-white)30%,transparent)}}.border-white\/30\!{border-color:#ffffff4d!important}@supports (color:color-mix(in lab,red,red)){.border-white\/30\!{border-color:color-mix(in oklab,var(--color-white)30%,transparent)!important}}.border-white\/40{border-color:#fff6}@supports (color:color-mix(in lab,red,red)){.border-white\/40{border-color:color-mix(in oklab,var(--color-white)40%,transparent)}}.border-white\/50{border-color:#ffffff80}@supports (color:color-mix(in lab,red,red)){.border-white\/50{border-color:color-mix(in oklab,var(--color-white)50%,transparent)}}.border-zinc-100{border-color:var(--color-zinc-100)}.border-zinc-200{border-color:var(--color-zinc-200)}.border-zinc-300{border-color:var(--color-zinc-300)}.border-zinc-800\/10{border-color:#27272a1a}@supports (color:color-mix(in lab,red,red)){.border-zinc-800\/10{border-color:color-mix(in oklab,var(--color-zinc-800)10%,transparent)}}.border-zinc-800\/15{border-color:#27272a26}@supports (color:color-mix(in lab,red,red)){.border-zinc-800\/15{border-color:color-mix(in oklab,var(--color-zinc-800)15%,transparent)}}.border-x-zinc-100{border-inline-color:var(--color-zinc-100)}.border-r-transparent{border-right-color:#0000}.border-b-\[\#72cacc\]{border-bottom-color:#72cacc}.border-b-zinc-300\/80{border-bottom-color:#d4d4d8cc}@supports (color:color-mix(in lab,red,red)){.border-b-zinc-300\/80{border-bottom-color:color-mix(in oklab,var(--color-zinc-300)80%,transparent)}}.bg-\(--callout-background\){background-color:var(--callout-background)}.bg-\[\#1b1b18\]{background-color:#1b1b18}.bg-\[\#141211\]{background-color:#141211}.bg-\[\#141311\]{background-color:#141311}.bg-\[\#302812\]\/50{background-color:#30281280}.bg-\[\#C79B4A\]{background-color:#c79b4a}.bg-\[\#C79B4A\]\/10{background-color:#c79b4a1a}.bg-\[\#FDFDFC\]{background-color:#fdfdfc}.bg-\[\#dbdbd7\]{background-color:#dbdbd7}.bg-\[\#fff2f2\]{background-color:#fff2f2}.bg-\[var\(--color-accent\)\]{background-color:var(--color-accent)}.bg-\[var\(--color-accent-foreground\)\]{background-color:var(--color-accent-foreground)}.bg-accent{background-color:var(--color-accent)}.bg-amber-200{background-color:var(--color-amber-200)}.bg-amber-400\/25{background-color:#fcbb0040}@supports (color:color-mix(in lab,red,red)){.bg-amber-400\/25{background-color:color-mix(in oklab,var(--color-amber-400)25%,transparent)}}.bg-amber-500{background-color:var(--color-amber-500)}.bg-amber-500\/20{background-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/20{background-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.bg-amber-600{background-color:var(--color-amber-600)}.bg-black{background-color:var(--color-black)}.bg-black\/10{background-color:#0000001a}@supports (color:color-mix(in lab,red,red)){.bg-black\/10{background-color:color-mix(in oklab,var(--color-black)10%,transparent)}}.bg-black\/20{background-color:#0003}@supports (color:color-mix(in lab,red,red)){.bg-black\/20{background-color:color-mix(in oklab,var(--color-black)20%,transparent)}}.bg-black\/25{background-color:#00000040}@supports (color:color-mix(in lab,red,red)){.bg-black\/25{background-color:color-mix(in oklab,var(--color-black)25%,transparent)}}.bg-black\/30{background-color:#0000004d}@supports (color:color-mix(in lab,red,red)){.bg-black\/30{background-color:color-mix(in oklab,var(--color-black)30%,transparent)}}.bg-black\/35{background-color:#00000059}@supports (color:color-mix(in lab,red,red)){.bg-black\/35{background-color:color-mix(in oklab,var(--color-black)35%,transparent)}}.bg-black\/40{background-color:#0006}@supports (color:color-mix(in lab,red,red)){.bg-black\/40{background-color:color-mix(in oklab,var(--color-black)40%,transparent)}}.bg-black\/45{background-color:#00000073}@supports (color:color-mix(in lab,red,red)){.bg-black\/45{background-color:color-mix(in oklab,var(--color-black)45%,transparent)}}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab,red,red)){.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.bg-black\/55{background-color:#0000008c}@supports (color:color-mix(in lab,red,red)){.bg-black\/55{background-color:color-mix(in oklab,var(--color-black)55%,transparent)}}.bg-black\/60{background-color:#0009}@supports (color:color-mix(in lab,red,red)){.bg-black\/60{background-color:color-mix(in oklab,var(--color-black)60%,transparent)}}.bg-black\/70{background-color:#000000b3}@supports (color:color-mix(in lab,red,red)){.bg-black\/70{background-color:color-mix(in oklab,var(--color-black)70%,transparent)}}.bg-black\/75{background-color:#000000bf}@supports (color:color-mix(in lab,red,red)){.bg-black\/75{background-color:color-mix(in oklab,var(--color-black)75%,transparent)}}.bg-black\/80{background-color:#000c}@supports (color:color-mix(in lab,red,red)){.bg-black\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}}.bg-black\/85{background-color:#000000d9}@supports (color:color-mix(in lab,red,red)){.bg-black\/85{background-color:color-mix(in oklab,var(--color-black)85%,transparent)}}.bg-black\/95{background-color:#000000f2}@supports (color:color-mix(in lab,red,red)){.bg-black\/95{background-color:color-mix(in oklab,var(--color-black)95%,transparent)}}.bg-blue-200{background-color:var(--color-blue-200)}.bg-blue-400\/20{background-color:#54a2ff33}@supports (color:color-mix(in lab,red,red)){.bg-blue-400\/20{background-color:color-mix(in oklab,var(--color-blue-400)20%,transparent)}}.bg-blue-500{background-color:var(--color-blue-500)}.bg-blue-600{background-color:var(--color-blue-600)}.bg-cyan-200{background-color:var(--color-cyan-200)}.bg-cyan-400\/20{background-color:#00d2ef33}@supports (color:color-mix(in lab,red,red)){.bg-cyan-400\/20{background-color:color-mix(in oklab,var(--color-cyan-400)20%,transparent)}}.bg-cyan-500{background-color:var(--color-cyan-500)}.bg-cyan-600{background-color:var(--color-cyan-600)}.bg-emerald-200{background-color:var(--color-emerald-200)}.bg-emerald-400\/20{background-color:#00d29433}@supports (color:color-mix(in lab,red,red)){.bg-emerald-400\/20{background-color:color-mix(in oklab,var(--color-emerald-400)20%,transparent)}}.bg-emerald-500{background-color:var(--color-emerald-500)}.bg-emerald-500\/80{background-color:#00bb7fcc}@supports (color:color-mix(in lab,red,red)){.bg-emerald-500\/80{background-color:color-mix(in oklab,var(--color-emerald-500)80%,transparent)}}.bg-emerald-600{background-color:var(--color-emerald-600)}.bg-fuchsia-200{background-color:var(--color-fuchsia-200)}.bg-fuchsia-400\/20{background-color:#ec6cff33}@supports (color:color-mix(in lab,red,red)){.bg-fuchsia-400\/20{background-color:color-mix(in oklab,var(--color-fuchsia-400)20%,transparent)}}.bg-fuchsia-500{background-color:var(--color-fuchsia-500)}.bg-fuchsia-600{background-color:var(--color-fuchsia-600)}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-50\/80{background-color:#f9fafbcc}@supports (color:color-mix(in lab,red,red)){.bg-gray-50\/80{background-color:color-mix(in oklab,var(--color-gray-50)80%,transparent)}}.bg-gray-200{background-color:var(--color-gray-200)}.bg-green-200{background-color:var(--color-green-200)}.bg-green-400\/20{background-color:#05df7233}@supports (color:color-mix(in lab,red,red)){.bg-green-400\/20{background-color:color-mix(in oklab,var(--color-green-400)20%,transparent)}}.bg-green-500{background-color:var(--color-green-500)}.bg-green-500\/20{background-color:#00c75833}@supports (color:color-mix(in lab,red,red)){.bg-green-500\/20{background-color:color-mix(in oklab,var(--color-green-500)20%,transparent)}}.bg-green-600{background-color:var(--color-green-600)}.bg-indigo-200{background-color:var(--color-indigo-200)}.bg-indigo-400\/20{background-color:#7d87ff33}@supports (color:color-mix(in lab,red,red)){.bg-indigo-400\/20{background-color:color-mix(in oklab,var(--color-indigo-400)20%,transparent)}}.bg-indigo-500{background-color:var(--color-indigo-500)}.bg-indigo-600{background-color:var(--color-indigo-600)}.bg-lime-200{background-color:var(--color-lime-200)}.bg-lime-400\/25{background-color:#9de50040}@supports (color:color-mix(in lab,red,red)){.bg-lime-400\/25{background-color:color-mix(in oklab,var(--color-lime-400)25%,transparent)}}.bg-lime-500{background-color:var(--color-lime-500)}.bg-lime-600{background-color:var(--color-lime-600)}.bg-orange-200{background-color:var(--color-orange-200)}.bg-orange-400\/20{background-color:#ff8b1a33}@supports (color:color-mix(in lab,red,red)){.bg-orange-400\/20{background-color:color-mix(in oklab,var(--color-orange-400)20%,transparent)}}.bg-orange-500{background-color:var(--color-orange-500)}.bg-orange-600{background-color:var(--color-orange-600)}.bg-pink-200{background-color:var(--color-pink-200)}.bg-pink-400\/20{background-color:#fb64b633}@supports (color:color-mix(in lab,red,red)){.bg-pink-400\/20{background-color:color-mix(in oklab,var(--color-pink-400)20%,transparent)}}.bg-pink-500{background-color:var(--color-pink-500)}.bg-pink-600{background-color:var(--color-pink-600)}.bg-purple-200{background-color:var(--color-purple-200)}.bg-purple-400\/20{background-color:#c07eff33}@supports (color:color-mix(in lab,red,red)){.bg-purple-400\/20{background-color:color-mix(in oklab,var(--color-purple-400)20%,transparent)}}.bg-purple-500{background-color:var(--color-purple-500)}.bg-purple-600{background-color:var(--color-purple-600)}.bg-red-200{background-color:var(--color-red-200)}.bg-red-400\/20{background-color:#ff656833}@supports (color:color-mix(in lab,red,red)){.bg-red-400\/20{background-color:color-mix(in oklab,var(--color-red-400)20%,transparent)}}.bg-red-500{background-color:var(--color-red-500)}.bg-red-500\/20{background-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.bg-red-500\/20{background-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}}.bg-red-600{background-color:var(--color-red-600)}.bg-rose-200{background-color:var(--color-rose-200)}.bg-rose-400\/20{background-color:#ff667f33}@supports (color:color-mix(in lab,red,red)){.bg-rose-400\/20{background-color:color-mix(in oklab,var(--color-rose-400)20%,transparent)}}.bg-rose-500{background-color:var(--color-rose-500)}.bg-rose-600{background-color:var(--color-rose-600)}.bg-sky-200{background-color:var(--color-sky-200)}.bg-sky-400\/20{background-color:#00bcfe33}@supports (color:color-mix(in lab,red,red)){.bg-sky-400\/20{background-color:color-mix(in oklab,var(--color-sky-400)20%,transparent)}}.bg-sky-500{background-color:var(--color-sky-500)}.bg-sky-500\/80{background-color:#00a5efcc}@supports (color:color-mix(in lab,red,red)){.bg-sky-500\/80{background-color:color-mix(in oklab,var(--color-sky-500)80%,transparent)}}.bg-sky-600{background-color:var(--color-sky-600)}.bg-teal-200{background-color:var(--color-teal-200)}.bg-teal-400\/20{background-color:#00d3bd33}@supports (color:color-mix(in lab,red,red)){.bg-teal-400\/20{background-color:color-mix(in oklab,var(--color-teal-400)20%,transparent)}}.bg-teal-500{background-color:var(--color-teal-500)}.bg-teal-600{background-color:var(--color-teal-600)}.bg-transparent{background-color:#0000}.bg-violet-200{background-color:var(--color-violet-200)}.bg-violet-400\/20{background-color:#a685ff33}@supports (color:color-mix(in lab,red,red)){.bg-violet-400\/20{background-color:color-mix(in oklab,var(--color-violet-400)20%,transparent)}}.bg-violet-500{background-color:var(--color-violet-500)}.bg-violet-600{background-color:var(--color-violet-600)}.bg-white{background-color:var(--color-white)}.bg-white\/5{background-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.bg-white\/5{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.bg-white\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.bg-white\/10{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.bg-yellow-200{background-color:var(--color-yellow-200)}.bg-yellow-400\/25{background-color:#fac80040}@supports (color:color-mix(in lab,red,red)){.bg-yellow-400\/25{background-color:color-mix(in oklab,var(--color-yellow-400)25%,transparent)}}.bg-yellow-500{background-color:var(--color-yellow-500)}.bg-yellow-600{background-color:var(--color-yellow-600)}.bg-zinc-50{background-color:var(--color-zinc-50)}.bg-zinc-100{background-color:var(--color-zinc-100)}.bg-zinc-200{background-color:var(--color-zinc-200)}.bg-zinc-400{background-color:var(--color-zinc-400)}.bg-zinc-400\/15{background-color:#9f9fa926}@supports (color:color-mix(in lab,red,red)){.bg-zinc-400\/15{background-color:color-mix(in oklab,var(--color-zinc-400)15%,transparent)}}.bg-zinc-500{background-color:var(--color-zinc-500)}.bg-zinc-600{background-color:var(--color-zinc-600)}.bg-zinc-800{background-color:var(--color-zinc-800)}.bg-zinc-800\/5{background-color:#27272a0d}@supports (color:color-mix(in lab,red,red)){.bg-zinc-800\/5{background-color:color-mix(in oklab,var(--color-zinc-800)5%,transparent)}}.bg-zinc-800\/6{background-color:#27272a0f}@supports (color:color-mix(in lab,red,red)){.bg-zinc-800\/6{background-color:color-mix(in oklab,var(--color-zinc-800)6%,transparent)}}.bg-zinc-800\/10{background-color:#27272a1a}@supports (color:color-mix(in lab,red,red)){.bg-zinc-800\/10{background-color:color-mix(in oklab,var(--color-zinc-800)10%,transparent)}}.bg-zinc-800\/15{background-color:#27272a26}@supports (color:color-mix(in lab,red,red)){.bg-zinc-800\/15{background-color:color-mix(in oklab,var(--color-zinc-800)15%,transparent)}}.bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-\[linear-gradient\(180deg\,rgba\(0\,0\,0\,0\)_0\%\,rgba\(0\,0\,0\,0\)_40\%\,rgb\(0\,0\,0\)_100\%\)\]{background-image:linear-gradient(#0000,#0000 40%,#000)}.bg-\[linear-gradient\(180deg\,rgba\(0\,0\,0\,0\)_0\%\,rgba\(0\,0\,0\,10\%\)_30\%\,rgb\(0\,0\,0\,35\%\)_100\%\)\]{background-image:linear-gradient(#0000,#0000001a 30%,#00000059)}.bg-\[linear-gradient\(360deg\,\#211b19_5\%\,transparent_50\%\)\]{background-image:linear-gradient(360deg,#211b19 5%,#0000 50%)}.bg-\[linear-gradient\(360deg\,\#211b19de_5\%\,transparent_50\%\)\]{background-image:linear-gradient(360deg,#211b19de 5%,#0000 50%)}.bg-\[linear-gradient\(360deg\,\#121620_5\%\,transparent_50\%\)\]{background-image:linear-gradient(360deg,#121620 5%,#0000 50%)}.bg-\[url\(\'data\:image\/svg\+xml\,\%3Csvg\%20xmlns\=\%22http\:\/\/www\.w3\.org\/2000\/svg\%22\%20viewBox\=\%220\%200\%2016\%2016\%22\%20fill\=\%22\%2300000040\%22\%20class\=\%22size-4\%22\%3E\%3Cpath\%20fill-rule\=\%22evenodd\%22\%20d\=\%22M4\.22\%206\.22a\.75\.75\%200\%200\%201\%201\.06\%200L8\%208\.94l2\.72-2\.72a\.75\.75\%200\%201\%201\%201\.06\%201\.06l-3\.25\%203\.25a\.75\.75\%200\%200\%201-1\.06\%200L4\.22\%207\.28a\.75\.75\%200\%200\%201\%200-1\.06Z\%22\%20clip-rule\=\%22evenodd\%22\/\%3E\%3C\/svg\%3E\'\)\]{background-image:url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2016%2016%22%20fill=%22%2300000040%22%20class=%22size-4%22%3E%3Cpath%20fill-rule=%22evenodd%22%20d=%22M4.22%206.22a.75.75%200%200%201%201.06%200L8%208.94l2.72-2.72a.75.75%200%201%201%201.06%201.06l-3.25%203.25a.75.75%200%200%201-1.06%200L4.22%207.28a.75.75%200%200%201%200-1.06Z%22%20clip-rule=%22evenodd%22/%3E%3C/svg%3E)}.from-black\/60{--tw-gradient-from:#0009}@supports (color:color-mix(in lab,red,red)){.from-black\/60{--tw-gradient-from:color-mix(in oklab,var(--color-black)60%,transparent)}}.from-black\/60{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-black\/70{--tw-gradient-from:#000000b3}@supports (color:color-mix(in lab,red,red)){.from-black\/70{--tw-gradient-from:color-mix(in oklab,var(--color-black)70%,transparent)}}.from-black\/70{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-zinc-100{--tw-gradient-from:var(--color-zinc-100);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-1\%{--tw-gradient-from-position:1%}.via-black\/0{--tw-gradient-via:#0000}@supports (color:color-mix(in lab,red,red)){.via-black\/0{--tw-gradient-via:color-mix(in oklab,var(--color-black)0%,transparent)}}.via-black\/0{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-black\/10{--tw-gradient-via:#0000001a}@supports (color:color-mix(in lab,red,red)){.via-black\/10{--tw-gradient-via:color-mix(in oklab,var(--color-black)10%,transparent)}}.via-black\/10{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.mask-r-from-\[max\(calc\(100\%-6rem\)\,var\(--flux-scroll-percentage\)\)\]{-webkit-mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);--tw-mask-linear:var(--tw-mask-left),var(--tw-mask-right),var(--tw-mask-bottom),var(--tw-mask-top);--tw-mask-right:linear-gradient(to right,var(--tw-mask-right-from-color)var(--tw-mask-right-from-position),var(--tw-mask-right-to-color)var(--tw-mask-right-to-position));--tw-mask-right-from-position:max( calc(100% - 6rem) ,var(--flux-scroll-percentage));-webkit-mask-composite:source-in;mask-composite:intersect}.bg-\[length\:16px_16px\]{background-size:16px 16px}.bg-cover{background-size:cover}.text-gradient{-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.bg-bottom{background-position:bottom}.bg-center{background-position:50%}.bg-position-\[center_72px\]{background-position:50% 72px}.bg-position-\[right_\.25rem_center\]\!{background-position:right .25rem center!important}.bg-no-repeat{background-repeat:no-repeat}.mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.stroke-zinc-300{stroke:var(--color-zinc-300)}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.p-0{padding:calc(var(--spacing)*0)}.p-0\!{padding:calc(var(--spacing)*0)!important}.p-0\.5{padding:calc(var(--spacing)*.5)}.p-1{padding:calc(var(--spacing)*1)}.p-1\!{padding:calc(var(--spacing)*1)!important}.p-2{padding:calc(var(--spacing)*2)}.p-2\.5{padding:calc(var(--spacing)*2.5)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.p-10{padding:calc(var(--spacing)*10)}.p-20{padding:calc(var(--spacing)*20)}.p-\[\.3125rem\]{padding:.3125rem}.p-\[1\.4px\]{padding:1.4px}.p-\[1px\]{padding:1px}.p-\[5px\]{padding:5px}.p-\[calc\(0\.25rem-1px\)\]{padding:calc(.25rem - 1px)}.p-\[calc\(0\.75rem-1px\)\]{padding:calc(.75rem - 1px)}.px-0\!{padding-inline:calc(var(--spacing)*0)!important}.px-1{padding-inline:calc(var(--spacing)*1)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\.5{padding-inline:calc(var(--spacing)*2.5)}.px-2\.5\!{padding-inline:calc(var(--spacing)*2.5)!important}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-8{padding-inline:calc(var(--spacing)*8)}.px-10{padding-inline:calc(var(--spacing)*10)}.px-\[\.3125rem\]{padding-inline:.3125rem}.px-\[3px\]{padding-inline:3px}.py-0{padding-block:calc(var(--spacing)*0)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-5{padding-block:calc(var(--spacing)*5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-8{padding-block:calc(var(--spacing)*8)}.py-10{padding-block:calc(var(--spacing)*10)}.py-12{padding-block:calc(var(--spacing)*12)}.py-16{padding-block:calc(var(--spacing)*16)}.py-\[2px\]{padding-block:2px}.py-\[3px\]{padding-block:3px}.py-\[calc\(0\.5rem-1px\)\]{padding-block:calc(.5rem - 1px)}.py-\[calc\(0\.25rem\)\]{padding-block:.25rem}.py-\[calc\(0\.25rem-1px\)\]{padding-block:calc(.25rem - 1px)}.py-\[calc\(0\.25rem-2px\)\]{padding-block:calc(.25rem - 2px)}.py-\[calc\(0\.75rem-3px\)\]{padding-block:calc(.75rem - 3px)}.py-\[calc\(0\.125rem\+1px\)\]{padding-block:calc(.125rem + 1px)}.ps-1{padding-inline-start:calc(var(--spacing)*1)}.ps-2{padding-inline-start:calc(var(--spacing)*2)}.ps-2\.5{padding-inline-start:calc(var(--spacing)*2.5)}.ps-3{padding-inline-start:calc(var(--spacing)*3)}.ps-3\.5{padding-inline-start:calc(var(--spacing)*3.5)}.ps-4{padding-inline-start:calc(var(--spacing)*4)}.ps-7{padding-inline-start:calc(var(--spacing)*7)}.ps-9{padding-inline-start:calc(var(--spacing)*9)}.ps-10{padding-inline-start:calc(var(--spacing)*10)}.ps-11{padding-inline-start:calc(var(--spacing)*11)}.ps-\[calc\(0\.5rem-1px\)\]{padding-inline-start:calc(.5rem - 1px)}.ps-\[calc\(0\.25rem\)\]{padding-inline-start:.25rem}.pe-0{padding-inline-end:calc(var(--spacing)*0)}.pe-1{padding-inline-end:calc(var(--spacing)*1)}.pe-2{padding-inline-end:calc(var(--spacing)*2)}.pe-2\.5{padding-inline-end:calc(var(--spacing)*2.5)}.pe-3{padding-inline-end:calc(var(--spacing)*3)}.pe-3\.5{padding-inline-end:calc(var(--spacing)*3.5)}.pe-4{padding-inline-end:calc(var(--spacing)*4)}.pe-6{padding-inline-end:calc(var(--spacing)*6)}.pe-9{padding-inline-end:calc(var(--spacing)*9)}.pe-10{padding-inline-end:calc(var(--spacing)*10)}.pe-11{padding-inline-end:calc(var(--spacing)*11)}.pe-16{padding-inline-end:calc(var(--spacing)*16)}.pe-23{padding-inline-end:calc(var(--spacing)*23)}.pe-30{padding-inline-end:calc(var(--spacing)*30)}.pe-37{padding-inline-end:calc(var(--spacing)*37)}.pe-44{padding-inline-end:calc(var(--spacing)*44)}.pe-51{padding-inline-end:calc(var(--spacing)*51)}.pe-\[\.3125rem\]{padding-inline-end:.3125rem}.pe-\[1\.35rem\]{padding-inline-end:1.35rem}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-6{padding-top:calc(var(--spacing)*6)}.pt-8{padding-top:calc(var(--spacing)*8)}.pt-11{padding-top:calc(var(--spacing)*11)}.pt-16{padding-top:calc(var(--spacing)*16)}.pt-\[\.3125rem\]{padding-top:.3125rem}.pt-\[100px\]{padding-top:100px}.pr-2{padding-right:calc(var(--spacing)*2)}.pr-3{padding-right:calc(var(--spacing)*3)}.pr-8{padding-right:calc(var(--spacing)*8)}.pr-9{padding-right:calc(var(--spacing)*9)}.pr-10{padding-right:calc(var(--spacing)*10)}.pb-1{padding-bottom:calc(var(--spacing)*1)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-5{padding-bottom:calc(var(--spacing)*5)}.pb-6{padding-bottom:calc(var(--spacing)*6)}.pb-8{padding-bottom:calc(var(--spacing)*8)}.pb-12{padding-bottom:calc(var(--spacing)*12)}.pb-\[\.3125rem\]{padding-bottom:.3125rem}.pl-1{padding-left:calc(var(--spacing)*1)}.pl-1\.5{padding-left:calc(var(--spacing)*1.5)}.pl-3{padding-left:calc(var(--spacing)*3)}.text-center{text-align:center}.text-end{text-align:end}.text-justify{text-align:justify}.text-left{text-align:left}.text-right{text-align:right}.text-start{text-align:start}.align-\[-0\.15em\]{vertical-align:-.15em}.align-baseline{vertical-align:baseline}.align-top{vertical-align:top}.font-mono{font-family:var(--font-mono)}.font-secondary\!{font-family:var(--font-secondary)!important}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-4xl\/11\!{font-size:var(--text-4xl)!important;line-height:calc(var(--spacing)*11)!important}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-8xl{font-size:var(--text-8xl);line-height:var(--tw-leading,var(--text-8xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-base\!{font-size:var(--text-base)!important;line-height:var(--tw-leading,var(--text-base--line-height))!important}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-lg\!{font-size:var(--text-lg)!important;line-height:var(--tw-leading,var(--text-lg--line-height))!important}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-sm\!{font-size:var(--text-sm)!important;line-height:var(--tw-leading,var(--text-sm--line-height))!important}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xl\!{font-size:var(--text-xl)!important;line-height:var(--tw-leading,var(--text-xl--line-height))!important}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-xs\!{font-size:var(--text-xs)!important;line-height:var(--tw-leading,var(--text-xs--line-height))!important}.\[font-size\:inherit\]{font-size:inherit}.text-\[\.625rem\]{font-size:.625rem}.text-\[\.5625rem\]{font-size:.5625rem}.text-\[0\.7rem\]{font-size:.7rem}.text-\[0\.64rem\]{font-size:.64rem}.text-\[0\.65rem\]{font-size:.65rem}.text-\[0\.66rem\]{font-size:.66rem}.text-\[0\.68rem\]{font-size:.68rem}.text-\[0\.72rem\]{font-size:.72rem}.text-\[1\.2rem\]{font-size:1.2rem}.text-\[1\.05rem\]\!{font-size:1.05rem!important}.text-\[1\.8rem\]{font-size:1.8rem}.text-\[1\.25rem\]{font-size:1.25rem}.text-\[1\.125rem\]{font-size:1.125rem}.text-\[1rem\]{font-size:1rem}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[13px\]{font-size:13px}.leading-4{--tw-leading:calc(var(--spacing)*4);line-height:calc(var(--spacing)*4)}.leading-5{--tw-leading:calc(var(--spacing)*5);line-height:calc(var(--spacing)*5)}.leading-6{--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6)}.leading-16{--tw-leading:calc(var(--spacing)*16);line-height:calc(var(--spacing)*16)}.leading-\[1\.3rem\]{--tw-leading:1.3rem;line-height:1.3rem}.leading-\[1\.125rem\]{--tw-leading:1.125rem;line-height:1.125rem}.leading-\[1\.375rem\]{--tw-leading:1.375rem;line-height:1.375rem}.leading-\[20px\]{--tw-leading:20px;line-height:20px}.leading-none{--tw-leading:1;line-height:1}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-snug{--tw-leading:var(--leading-snug);line-height:var(--leading-snug)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.\[line-height\:inherit\]{line-height:inherit}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-\[0\.2em\]{--tw-tracking:.2em;letter-spacing:.2em}.tracking-\[0\.2rem\]{--tw-tracking:.2rem;letter-spacing:.2rem}.tracking-\[0\.3em\]{--tw-tracking:.3em;letter-spacing:.3em}.tracking-\[0\.05em\]{--tw-tracking:.05em;letter-spacing:.05em}.tracking-\[0\.12em\]{--tw-tracking:.12em;letter-spacing:.12em}.tracking-\[0\.14em\]{--tw-tracking:.14em;letter-spacing:.14em}.tracking-\[0\.15em\]{--tw-tracking:.15em;letter-spacing:.15em}.tracking-\[0\.15rem\]{--tw-tracking:.15rem;letter-spacing:.15rem}.tracking-\[0\.16em\]{--tw-tracking:.16em;letter-spacing:.16em}.tracking-\[0\.18em\]{--tw-tracking:.18em;letter-spacing:.18em}.tracking-\[0\.24em\]{--tw-tracking:.24em;letter-spacing:.24em}.tracking-\[0\.28em\]{--tw-tracking:.28em;letter-spacing:.28em}.tracking-\[1\.5px\]{--tw-tracking:1.5px;letter-spacing:1.5px}.tracking-\[2px\]{--tw-tracking:2px;letter-spacing:2px}.tracking-\[3px\]{--tw-tracking:3px;letter-spacing:3px}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.tracking-widest{--tw-tracking:var(--tracking-widest);letter-spacing:var(--tracking-widest)}.tracking-widest\!{--tw-tracking:var(--tracking-widest)!important;letter-spacing:var(--tracking-widest)!important}.text-nowrap{text-wrap:nowrap}.text-wrap{text-wrap:wrap}.break-all{word-break:break-all}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-\[\#1b1b18\]{color:#1b1b18}.text-\[\#3c71a3\]{color:#3c71a3}.text-\[\#4e5afb\]{color:#4e5afb}.text-\[\#706f6c\]{color:#706f6c}.text-\[\#C79B4A\]{color:#c79b4a}.text-\[\#E2C98A\]{color:#e2c98a}.text-\[\#F53003\]{color:#f53003}.text-\[\#FAEEBC\]{color:#faeebc}.text-\[\#bce8f3\]{color:#bce8f3}.text-\[\#d8d0c3\]{color:#d8d0c3}.text-\[\#d93f24\]{color:#d93f24}.text-\[\#dbdbdb\]{color:#dbdbdb}.text-\[\#eadeb4\]{color:#eadeb4}.text-\[\#f53003\]{color:#f53003}.text-\[\#fdd142\]{color:#fdd142}.text-\[var\(--callout-icon\)\]{color:var(--callout-icon)}.text-\[var\(--color-accent-content\)\]{color:var(--color-accent-content)}.text-\[var\(--color-accent-foreground\)\],.text-accent-foreground{color:var(--color-accent-foreground)}.text-amber-100{color:var(--color-amber-100)}.text-amber-300{color:var(--color-amber-300)}.text-amber-400{color:var(--color-amber-400)}.text-amber-500{color:var(--color-amber-500)}.text-amber-600{color:var(--color-amber-600)}.text-amber-700{color:var(--color-amber-700)}.text-amber-800{color:var(--color-amber-800)}.text-black{color:var(--color-black)}.text-blue-600{color:var(--color-blue-600)}.text-blue-800{color:var(--color-blue-800)}.text-cyan-600{color:var(--color-cyan-600)}.text-cyan-800{color:var(--color-cyan-800)}.text-emerald-600{color:var(--color-emerald-600)}.text-emerald-800{color:var(--color-emerald-800)}.text-fuchsia-600{color:var(--color-fuchsia-600)}.text-fuchsia-700{color:var(--color-fuchsia-700)}.text-fuchsia-800{color:var(--color-fuchsia-800)}.text-gray-200{color:var(--color-gray-200)}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-gray-800{color:var(--color-gray-800)}.text-gray-900{color:var(--color-gray-900)}.text-green-400{color:var(--color-green-400)}.text-green-600{color:var(--color-green-600)}.text-green-800{color:var(--color-green-800)}.text-indigo-600{color:var(--color-indigo-600)}.text-indigo-700{color:var(--color-indigo-700)}.text-indigo-800{color:var(--color-indigo-800)}.text-lime-600{color:var(--color-lime-600)}.text-lime-800{color:var(--color-lime-800)}.text-orange-600{color:var(--color-orange-600)}.text-orange-700{color:var(--color-orange-700)}.text-orange-800{color:var(--color-orange-800)}.text-pink-600{color:var(--color-pink-600)}.text-pink-700{color:var(--color-pink-700)}.text-pink-800{color:var(--color-pink-800)}.text-purple-600{color:var(--color-purple-600)}.text-purple-700{color:var(--color-purple-700)}.text-purple-800{color:var(--color-purple-800)}.text-red-400{color:var(--color-red-400)}.text-red-500{color:var(--color-red-500)}.text-red-600{color:var(--color-red-600)}.text-red-700{color:var(--color-red-700)}.text-red-800{color:var(--color-red-800)}.text-rose-500{color:var(--color-rose-500)}.text-rose-600{color:var(--color-rose-600)}.text-rose-700{color:var(--color-rose-700)}.text-rose-800{color:var(--color-rose-800)}.text-sky-600{color:var(--color-sky-600)}.text-sky-800{color:var(--color-sky-800)}.text-teal-400{color:var(--color-teal-400)}.text-teal-600{color:var(--color-teal-600)}.text-teal-800{color:var(--color-teal-800)}.text-violet-600{color:var(--color-violet-600)}.text-violet-700{color:var(--color-violet-700)}.text-violet-800{color:var(--color-violet-800)}.text-white{color:var(--color-white)}.text-white\!{color:var(--color-white)!important}.text-white\/40{color:#fff6}@supports (color:color-mix(in lab,red,red)){.text-white\/40{color:color-mix(in oklab,var(--color-white)40%,transparent)}}.text-white\/50{color:#ffffff80}@supports (color:color-mix(in lab,red,red)){.text-white\/50{color:color-mix(in oklab,var(--color-white)50%,transparent)}}.text-white\/55{color:#ffffff8c}@supports (color:color-mix(in lab,red,red)){.text-white\/55{color:color-mix(in oklab,var(--color-white)55%,transparent)}}.text-white\/60{color:#fff9}@supports (color:color-mix(in lab,red,red)){.text-white\/60{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.text-white\/65{color:#ffffffa6}@supports (color:color-mix(in lab,red,red)){.text-white\/65{color:color-mix(in oklab,var(--color-white)65%,transparent)}}.text-white\/70{color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){.text-white\/70{color:color-mix(in oklab,var(--color-white)70%,transparent)}}.text-white\/75{color:#ffffffbf}@supports (color:color-mix(in lab,red,red)){.text-white\/75{color:color-mix(in oklab,var(--color-white)75%,transparent)}}.text-white\/80{color:#fffc}@supports (color:color-mix(in lab,red,red)){.text-white\/80{color:color-mix(in oklab,var(--color-white)80%,transparent)}}.text-white\/85{color:#ffffffd9}@supports (color:color-mix(in lab,red,red)){.text-white\/85{color:color-mix(in oklab,var(--color-white)85%,transparent)}}.text-white\/90{color:#ffffffe6}@supports (color:color-mix(in lab,red,red)){.text-white\/90{color:color-mix(in oklab,var(--color-white)90%,transparent)}}.text-yellow-600{color:var(--color-yellow-600)}.text-yellow-800{color:var(--color-yellow-800)}.text-zinc-200\/50{color:#e4e4e780}@supports (color:color-mix(in lab,red,red)){.text-zinc-200\/50{color:color-mix(in oklab,var(--color-zinc-200)50%,transparent)}}.text-zinc-300{color:var(--color-zinc-300)}.text-zinc-400{color:var(--color-zinc-400)}.text-zinc-400\!{color:var(--color-zinc-400)!important}.text-zinc-400\/75{color:#9f9fa9bf}@supports (color:color-mix(in lab,red,red)){.text-zinc-400\/75{color:color-mix(in oklab,var(--color-zinc-400)75%,transparent)}}.text-zinc-500{color:var(--color-zinc-500)}.text-zinc-600{color:var(--color-zinc-600)}.text-zinc-700{color:var(--color-zinc-700)}.text-zinc-800{color:var(--color-zinc-800)}.text-zinc-800\!{color:var(--color-zinc-800)!important}.text-zinc-800\/70{color:#27272ab3}@supports (color:color-mix(in lab,red,red)){.text-zinc-800\/70{color:color-mix(in oklab,var(--color-zinc-800)70%,transparent)}}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.uppercase{text-transform:uppercase}.uppercase\!{text-transform:uppercase!important}.italic{font-style:italic}.ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.overline{text-decoration-line:overline}.underline{text-decoration-line:underline}.decoration-\[color-mix\(in_oklab\,var\(--color-accent-content\)\,transparent_80\%\)\]{text-decoration-color:#27272a33}@supports (color:color-mix(in lab,red,red)){.decoration-\[color-mix\(in_oklab\,var\(--color-accent-content\)\,transparent_80\%\)\]{-webkit-text-decoration-color:color-mix(in oklab,var(--color-accent-content),transparent 80%);text-decoration-color:color-mix(in oklab,var(--color-accent-content),transparent 80%)}}.decoration-zinc-800\/20{text-decoration-color:#27272a33}@supports (color:color-mix(in lab,red,red)){.decoration-zinc-800\/20{-webkit-text-decoration-color:color-mix(in oklab,var(--color-zinc-800)20%,transparent);text-decoration-color:color-mix(in oklab,var(--color-zinc-800)20%,transparent)}}.decoration-dotted{text-decoration-style:dotted}.underline-offset-2{text-underline-offset:2px}.underline-offset-4{text-underline-offset:4px}.underline-offset-\[6px\]{text-underline-offset:6px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.placeholder-zinc-400::placeholder{color:var(--color-zinc-400)}.placeholder-zinc-500::placeholder{color:var(--color-zinc-500)}.accent-\[\#C79B4A\]{accent-color:#c79b4a}.accent-emerald-400{accent-color:var(--color-emerald-400)}.scheme-dark{color-scheme:dark}.\!opacity-100{opacity:1!important}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-30{opacity:.3}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-100{opacity:1}.mix-blend-luminosity{mix-blend-mode:luminosity}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xs{--tw-shadow:0 1px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[-12px_-8px_22px_0px_rgba\(0\,0\,0\,0\.6\)\]{--tw-shadow:-12px -8px 22px 0px var(--tw-shadow-color,#0009);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_10px_30px_rgba\(0\,0\,0\,0\.35\)\]{--tw-shadow:0 10px 30px var(--tw-shadow-color,#00000059);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0px_0px_1px_0px_rgba\(0\,0\,0\,0\.03\)\,0px_1px_2px_0px_rgba\(0\,0\,0\,0\.06\)\]{--tw-shadow:0px 0px 1px 0px var(--tw-shadow-color,#00000008),0px 1px 2px 0px var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0px_1px_2px_0px_rgba\(0\,0\,0\,\.05\)\,0px_2px_4px_0px_rgba\(0\,0\,0\,\.1\)\]{--tw-shadow:0px 1px 2px 0px var(--tw-shadow-color,#0000000d),0px 2px 4px 0px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0px_1px_10px_rgba\(0\,0\,0\,0\.74\)_inset\]{--tw-shadow:0px 1px 10px var(--tw-shadow-color,#000000bd)inset;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[inset_0px_0px_0px_1px_rgba\(26\,26\,0\,0\.16\)\]{--tw-shadow:inset 0px 0px 0px 1px var(--tw-shadow-color,#1a1a0029);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[inset_0px_1px_--theme\(--color-white\/\.2\)\]{--tw-shadow:inset 0px 1px var(--tw-shadow-color,#fff3)}@supports (color:color-mix(in lab,red,red)){.shadow-\[inset_0px_1px_--theme\(--color-white\/\.2\)\]{--tw-shadow:inset 0px 1px var(--tw-shadow-color,color-mix(in oklab,var(--color-white)20%,transparent))}}.shadow-\[inset_0px_1px_--theme\(--color-white\/\.2\)\]{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[inset_0px_1px_var\(--color-red-500\)\,inset_0px_2px_--theme\(--color-white\/\.15\)\]{--tw-shadow:inset 0px 1px var(--tw-shadow-color,var(--color-red-500)),inset 0px 2px var(--tw-shadow-color,#ffffff26)}@supports (color:color-mix(in lab,red,red)){.shadow-\[inset_0px_1px_var\(--color-red-500\)\,inset_0px_2px_--theme\(--color-white\/\.15\)\]{--tw-shadow:inset 0px 1px var(--tw-shadow-color,var(--color-red-500)),inset 0px 2px var(--tw-shadow-color,color-mix(in oklab,var(--color-white)15%,transparent))}}.shadow-\[inset_0px_1px_var\(--color-red-500\)\,inset_0px_2px_--theme\(--color-white\/\.15\)\]{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-0{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-1{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2,.ring-\[2px\]{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-black\/20{--tw-shadow-color:#0003}@supports (color:color-mix(in lab,red,red)){.shadow-black\/20{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-black)20%,transparent)var(--tw-shadow-alpha),transparent)}}.shadow-black\/40{--tw-shadow-color:#0006}@supports (color:color-mix(in lab,red,red)){.shadow-black\/40{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-black)40%,transparent)var(--tw-shadow-alpha),transparent)}}.ring-\[\#f3be77\]\/70{--tw-ring-color:oklab(83.4176% .0304598 .103144/.7)}.ring-black\/5{--tw-ring-color:#0000000d}@supports (color:color-mix(in lab,red,red)){.ring-black\/5{--tw-ring-color:color-mix(in oklab,var(--color-black)5%,transparent)}}.ring-black\/7{--tw-ring-color:#00000012}@supports (color:color-mix(in lab,red,red)){.ring-black\/7{--tw-ring-color:color-mix(in oklab,var(--color-black)7%,transparent)}}.ring-black\/15{--tw-ring-color:#00000026}@supports (color:color-mix(in lab,red,red)){.ring-black\/15{--tw-ring-color:color-mix(in oklab,var(--color-black)15%,transparent)}}.ring-gray-200{--tw-ring-color:var(--color-gray-200)}.ring-gray-300{--tw-ring-color:var(--color-gray-300)}.ring-gray-400{--tw-ring-color:var(--color-gray-400)}.ring-white{--tw-ring-color:var(--color-white)}.ring-white\/70{--tw-ring-color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){.ring-white\/70{--tw-ring-color:color-mix(in oklab,var(--color-white)70%,transparent)}}.ring-offset-1{--tw-ring-offset-width:1px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.ring-offset-white{--tw-ring-offset-color:var(--color-white)}.outline-hidden{--tw-outline-style:none;outline-style:none}@media(forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.outline-offset-2{outline-offset:2px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow{--tw-drop-shadow-size:drop-shadow(0 1px 2px var(--tw-drop-shadow-color,#0000001a))drop-shadow(0 1px 1px var(--tw-drop-shadow-color,#0000000f));--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a)drop-shadow(0 1px 1px #0000000f);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-2xl{--tw-drop-shadow-size:drop-shadow(0 25px 25px var(--tw-drop-shadow-color,#00000026));--tw-drop-shadow:drop-shadow(var(--drop-shadow-2xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.invert{--tw-invert:invert(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.sepia{--tw-sepia:sepia(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter\!{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)!important}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[opacity\,transform\]{transition-property:opacity,transform;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[width\]{transition-property:width;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.delay-300{transition-delay:.3s}.duration-0{--tw-duration:0s;transition-duration:0s}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-400{--tw-duration:.4s;transition-duration:.4s}.duration-750{--tw-duration:.75s;transition-duration:.75s}.ease-in{--tw-ease:var(--ease-in);transition-timing-function:var(--ease-in)}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.prose-invert{--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders)}.outline-none{--tw-outline-style:none;outline-style:none}.outline-none\!{--tw-outline-style:none!important;outline-style:none!important}.select-none{-webkit-user-select:none;user-select:none}.\[--avatar-radius\:calc\(infinity\*1px\)\]{--avatar-radius:calc(infinity*1px)}.\[--avatar-radius\:var\(--radius-lg\)\]{--avatar-radius:var(--radius-lg)}.\[--avatar-radius\:var\(--radius-md\)\]{--avatar-radius:var(--radius-md)}.\[--avatar-radius\:var\(--radius-sm\)\]{--avatar-radius:var(--radius-sm)}.\[--avatar-radius\:var\(--radius-xl\)\]{--avatar-radius:var(--radius-xl)}.\[--callout-background\:var\(--color-amber-50\)\]{--callout-background:var(--color-amber-50)}.\[--callout-background\:var\(--color-blue-50\)\]{--callout-background:var(--color-blue-50)}.\[--callout-background\:var\(--color-cyan-50\)\]{--callout-background:var(--color-cyan-50)}.\[--callout-background\:var\(--color-emerald-50\)\]{--callout-background:var(--color-emerald-50)}.\[--callout-background\:var\(--color-fuchsia-50\)\]{--callout-background:var(--color-fuchsia-50)}.\[--callout-background\:var\(--color-green-50\)\]{--callout-background:var(--color-green-50)}.\[--callout-background\:var\(--color-indigo-50\)\]{--callout-background:var(--color-indigo-50)}.\[--callout-background\:var\(--color-lime-50\)\]{--callout-background:var(--color-lime-50)}.\[--callout-background\:var\(--color-orange-50\)\]{--callout-background:var(--color-orange-50)}.\[--callout-background\:var\(--color-pink-50\)\]{--callout-background:var(--color-pink-50)}.\[--callout-background\:var\(--color-purple-50\)\]{--callout-background:var(--color-purple-50)}.\[--callout-background\:var\(--color-red-50\)\]{--callout-background:var(--color-red-50)}.\[--callout-background\:var\(--color-rose-50\)\]{--callout-background:var(--color-rose-50)}.\[--callout-background\:var\(--color-sky-50\)\]{--callout-background:var(--color-sky-50)}.\[--callout-background\:var\(--color-teal-50\)\]{--callout-background:var(--color-teal-50)}.\[--callout-background\:var\(--color-violet-50\)\]{--callout-background:var(--color-violet-50)}.\[--callout-background\:var\(--color-white\)\]{--callout-background:var(--color-white)}.\[--callout-background\:var\(--color-yellow-50\)\]{--callout-background:var(--color-yellow-50)}.\[--callout-background\:var\(--color-zinc-50\)\]{--callout-background:var(--color-zinc-50)}.\[--callout-border\:var\(--color-amber-400\)\]{--callout-border:var(--color-amber-400)}.\[--callout-border\:var\(--color-blue-200\)\]{--callout-border:var(--color-blue-200)}.\[--callout-border\:var\(--color-cyan-200\)\]{--callout-border:var(--color-cyan-200)}.\[--callout-border\:var\(--color-emerald-200\)\]{--callout-border:var(--color-emerald-200)}.\[--callout-border\:var\(--color-fuchsia-200\)\]{--callout-border:var(--color-fuchsia-200)}.\[--callout-border\:var\(--color-green-300\)\]{--callout-border:var(--color-green-300)}.\[--callout-border\:var\(--color-indigo-200\)\]{--callout-border:var(--color-indigo-200)}.\[--callout-border\:var\(--color-lime-400\)\]{--callout-border:var(--color-lime-400)}.\[--callout-border\:var\(--color-orange-200\)\]{--callout-border:var(--color-orange-200)}.\[--callout-border\:var\(--color-pink-200\)\]{--callout-border:var(--color-pink-200)}.\[--callout-border\:var\(--color-purple-300\)\]{--callout-border:var(--color-purple-300)}.\[--callout-border\:var\(--color-red-200\)\]{--callout-border:var(--color-red-200)}.\[--callout-border\:var\(--color-rose-200\)\]{--callout-border:var(--color-rose-200)}.\[--callout-border\:var\(--color-sky-200\)\]{--callout-border:var(--color-sky-200)}.\[--callout-border\:var\(--color-teal-200\)\]{--callout-border:var(--color-teal-200)}.\[--callout-border\:var\(--color-violet-200\)\]{--callout-border:var(--color-violet-200)}.\[--callout-border\:var\(--color-yellow-400\)\]{--callout-border:var(--color-yellow-400)}.\[--callout-border\:var\(--color-zinc-200\)\]{--callout-border:var(--color-zinc-200)}.\[--callout-heading\:var\(--color-amber-600\)\]{--callout-heading:var(--color-amber-600)}.\[--callout-heading\:var\(--color-blue-600\)\]{--callout-heading:var(--color-blue-600)}.\[--callout-heading\:var\(--color-cyan-600\)\]{--callout-heading:var(--color-cyan-600)}.\[--callout-heading\:var\(--color-emerald-600\)\]{--callout-heading:var(--color-emerald-600)}.\[--callout-heading\:var\(--color-fuchsia-600\)\]{--callout-heading:var(--color-fuchsia-600)}.\[--callout-heading\:var\(--color-green-600\)\]{--callout-heading:var(--color-green-600)}.\[--callout-heading\:var\(--color-indigo-600\)\]{--callout-heading:var(--color-indigo-600)}.\[--callout-heading\:var\(--color-lime-700\)\]{--callout-heading:var(--color-lime-700)}.\[--callout-heading\:var\(--color-orange-600\)\]{--callout-heading:var(--color-orange-600)}.\[--callout-heading\:var\(--color-pink-600\)\]{--callout-heading:var(--color-pink-600)}.\[--callout-heading\:var\(--color-purple-800\)\]{--callout-heading:var(--color-purple-800)}.\[--callout-heading\:var\(--color-red-700\)\]{--callout-heading:var(--color-red-700)}.\[--callout-heading\:var\(--color-rose-600\)\]{--callout-heading:var(--color-rose-600)}.\[--callout-heading\:var\(--color-sky-600\)\]{--callout-heading:var(--color-sky-600)}.\[--callout-heading\:var\(--color-teal-600\)\]{--callout-heading:var(--color-teal-600)}.\[--callout-heading\:var\(--color-violet-600\)\]{--callout-heading:var(--color-violet-600)}.\[--callout-heading\:var\(--color-yellow-600\)\]{--callout-heading:var(--color-yellow-600)}.\[--callout-heading\:var\(--color-zinc-800\)\]{--callout-heading:var(--color-zinc-800)}.\[--callout-icon\:var\(--color-amber-500\)\]{--callout-icon:var(--color-amber-500)}.\[--callout-icon\:var\(--color-blue-500\)\]{--callout-icon:var(--color-blue-500)}.\[--callout-icon\:var\(--color-cyan-500\)\]{--callout-icon:var(--color-cyan-500)}.\[--callout-icon\:var\(--color-emerald-500\)\]{--callout-icon:var(--color-emerald-500)}.\[--callout-icon\:var\(--color-fuchsia-500\)\]{--callout-icon:var(--color-fuchsia-500)}.\[--callout-icon\:var\(--color-green-500\)\]{--callout-icon:var(--color-green-500)}.\[--callout-icon\:var\(--color-indigo-500\)\]{--callout-icon:var(--color-indigo-500)}.\[--callout-icon\:var\(--color-lime-500\)\]{--callout-icon:var(--color-lime-500)}.\[--callout-icon\:var\(--color-orange-500\)\]{--callout-icon:var(--color-orange-500)}.\[--callout-icon\:var\(--color-pink-500\)\]{--callout-icon:var(--color-pink-500)}.\[--callout-icon\:var\(--color-purple-500\)\]{--callout-icon:var(--color-purple-500)}.\[--callout-icon\:var\(--color-red-400\)\]{--callout-icon:var(--color-red-400)}.\[--callout-icon\:var\(--color-rose-500\)\]{--callout-icon:var(--color-rose-500)}.\[--callout-icon\:var\(--color-sky-500\)\]{--callout-icon:var(--color-sky-500)}.\[--callout-icon\:var\(--color-teal-500\)\]{--callout-icon:var(--color-teal-500)}.\[--callout-icon\:var\(--color-violet-500\)\]{--callout-icon:var(--color-violet-500)}.\[--callout-icon\:var\(--color-yellow-500\)\]{--callout-icon:var(--color-yellow-500)}.\[--callout-icon\:var\(--color-zinc-400\)\]{--callout-icon:var(--color-zinc-400)}.\[--callout-text\:var\(--color-amber-600\)\]{--callout-text:var(--color-amber-600)}.\[--callout-text\:var\(--color-blue-600\)\]{--callout-text:var(--color-blue-600)}.\[--callout-text\:var\(--color-cyan-600\)\]{--callout-text:var(--color-cyan-600)}.\[--callout-text\:var\(--color-emerald-600\)\]{--callout-text:var(--color-emerald-600)}.\[--callout-text\:var\(--color-fuchsia-600\)\]{--callout-text:var(--color-fuchsia-600)}.\[--callout-text\:var\(--color-green-600\)\]{--callout-text:var(--color-green-600)}.\[--callout-text\:var\(--color-indigo-600\)\]{--callout-text:var(--color-indigo-600)}.\[--callout-text\:var\(--color-lime-600\)\]{--callout-text:var(--color-lime-600)}.\[--callout-text\:var\(--color-orange-600\)\]{--callout-text:var(--color-orange-600)}.\[--callout-text\:var\(--color-pink-600\)\]{--callout-text:var(--color-pink-600)}.\[--callout-text\:var\(--color-purple-700\)\]{--callout-text:var(--color-purple-700)}.\[--callout-text\:var\(--color-red-700\)\]{--callout-text:var(--color-red-700)}.\[--callout-text\:var\(--color-rose-600\)\]{--callout-text:var(--color-rose-600)}.\[--callout-text\:var\(--color-sky-600\)\]{--callout-text:var(--color-sky-600)}.\[--callout-text\:var\(--color-teal-600\)\]{--callout-text:var(--color-teal-600)}.\[--callout-text\:var\(--color-violet-600\)\]{--callout-text:var(--color-violet-600)}.\[--callout-text\:var\(--color-yellow-700\)\]{--callout-text:var(--color-yellow-700)}.\[--callout-text\:var\(--color-zinc-500\)\]{--callout-text:var(--color-zinc-500)}.\[--color-accent-content\:var\(--color-amber-600\)\]{--color-accent-content:var(--color-amber-600)}.\[--color-accent-content\:var\(--color-blue-600\)\]{--color-accent-content:var(--color-blue-600)}.\[--color-accent-content\:var\(--color-cyan-600\)\]{--color-accent-content:var(--color-cyan-600)}.\[--color-accent-content\:var\(--color-emerald-600\)\]{--color-accent-content:var(--color-emerald-600)}.\[--color-accent-content\:var\(--color-fuchsia-600\)\]{--color-accent-content:var(--color-fuchsia-600)}.\[--color-accent-content\:var\(--color-gray-800\)\]{--color-accent-content:var(--color-gray-800)}.\[--color-accent-content\:var\(--color-green-600\)\]{--color-accent-content:var(--color-green-600)}.\[--color-accent-content\:var\(--color-indigo-600\)\]{--color-accent-content:var(--color-indigo-600)}.\[--color-accent-content\:var\(--color-lime-600\)\]{--color-accent-content:var(--color-lime-600)}.\[--color-accent-content\:var\(--color-mauve-800\)\]{--color-accent-content:var(--color-mauve-800)}.\[--color-accent-content\:var\(--color-mist-800\)\]{--color-accent-content:var(--color-mist-800)}.\[--color-accent-content\:var\(--color-neutral-800\)\]{--color-accent-content:var(--color-neutral-800)}.\[--color-accent-content\:var\(--color-olive-800\)\]{--color-accent-content:var(--color-olive-800)}.\[--color-accent-content\:var\(--color-orange-600\)\]{--color-accent-content:var(--color-orange-600)}.\[--color-accent-content\:var\(--color-pink-600\)\]{--color-accent-content:var(--color-pink-600)}.\[--color-accent-content\:var\(--color-purple-600\)\]{--color-accent-content:var(--color-purple-600)}.\[--color-accent-content\:var\(--color-red-600\)\]{--color-accent-content:var(--color-red-600)}.\[--color-accent-content\:var\(--color-rose-500\)\]{--color-accent-content:var(--color-rose-500)}.\[--color-accent-content\:var\(--color-sky-600\)\]{--color-accent-content:var(--color-sky-600)}.\[--color-accent-content\:var\(--color-slate-800\)\]{--color-accent-content:var(--color-slate-800)}.\[--color-accent-content\:var\(--color-stone-800\)\]{--color-accent-content:var(--color-stone-800)}.\[--color-accent-content\:var\(--color-taupe-800\)\]{--color-accent-content:var(--color-taupe-800)}.\[--color-accent-content\:var\(--color-teal-600\)\]{--color-accent-content:var(--color-teal-600)}.\[--color-accent-content\:var\(--color-violet-600\)\]{--color-accent-content:var(--color-violet-600)}.\[--color-accent-content\:var\(--color-yellow-600\)\]{--color-accent-content:var(--color-yellow-600)}.\[--color-accent-content\:var\(--color-zinc-800\)\]{--color-accent-content:var(--color-zinc-800)}.\[--color-accent-foreground\:var\(--color-amber-950\)\]{--color-accent-foreground:var(--color-amber-950)}.\[--color-accent-foreground\:var\(--color-lime-900\)\]{--color-accent-foreground:var(--color-lime-900)}.\[--color-accent-foreground\:var\(--color-white\)\]{--color-accent-foreground:var(--color-white)}.\[--color-accent-foreground\:var\(--color-yellow-950\)\]{--color-accent-foreground:var(--color-yellow-950)}.\[--color-accent\:var\(--color-amber-400\)\]{--color-accent:var(--color-amber-400)}.\[--color-accent\:var\(--color-blue-500\)\]{--color-accent:var(--color-blue-500)}.\[--color-accent\:var\(--color-cyan-600\)\]{--color-accent:var(--color-cyan-600)}.\[--color-accent\:var\(--color-emerald-600\)\]{--color-accent:var(--color-emerald-600)}.\[--color-accent\:var\(--color-fuchsia-600\)\]{--color-accent:var(--color-fuchsia-600)}.\[--color-accent\:var\(--color-gray-800\)\]{--color-accent:var(--color-gray-800)}.\[--color-accent\:var\(--color-green-600\)\]{--color-accent:var(--color-green-600)}.\[--color-accent\:var\(--color-indigo-500\)\]{--color-accent:var(--color-indigo-500)}.\[--color-accent\:var\(--color-lime-400\)\]{--color-accent:var(--color-lime-400)}.\[--color-accent\:var\(--color-mauve-800\)\]{--color-accent:var(--color-mauve-800)}.\[--color-accent\:var\(--color-mist-800\)\]{--color-accent:var(--color-mist-800)}.\[--color-accent\:var\(--color-neutral-800\)\]{--color-accent:var(--color-neutral-800)}.\[--color-accent\:var\(--color-olive-800\)\]{--color-accent:var(--color-olive-800)}.\[--color-accent\:var\(--color-orange-500\)\]{--color-accent:var(--color-orange-500)}.\[--color-accent\:var\(--color-pink-600\)\]{--color-accent:var(--color-pink-600)}.\[--color-accent\:var\(--color-purple-500\)\]{--color-accent:var(--color-purple-500)}.\[--color-accent\:var\(--color-red-500\)\]{--color-accent:var(--color-red-500)}.\[--color-accent\:var\(--color-rose-500\)\]{--color-accent:var(--color-rose-500)}.\[--color-accent\:var\(--color-sky-600\)\]{--color-accent:var(--color-sky-600)}.\[--color-accent\:var\(--color-slate-800\)\]{--color-accent:var(--color-slate-800)}.\[--color-accent\:var\(--color-stone-800\)\]{--color-accent:var(--color-stone-800)}.\[--color-accent\:var\(--color-taupe-800\)\]{--color-accent:var(--color-taupe-800)}.\[--color-accent\:var\(--color-teal-600\)\]{--color-accent:var(--color-teal-600)}.\[--color-accent\:var\(--color-violet-500\)\]{--color-accent:var(--color-violet-500)}.\[--color-accent\:var\(--color-yellow-400\)\]{--color-accent:var(--color-yellow-400)}.\[--color-accent\:var\(--color-zinc-800\)\]{--color-accent:var(--color-zinc-800)}.\[--flux-flyout-translate\:translateX\(-50px\)\]{--flux-flyout-translate:translateX(-50px)}.\[--flux-flyout-translate\:translateX\(50px\)\]{--flux-flyout-translate:translateX(50px)}.\[--flux-flyout-translate\:translateY\(50px\)\]{--flux-flyout-translate:translateY(50px)}.\[--flux-scroll-percentage\:0\%\]{--flux-scroll-percentage:0%}.\[--haze-border\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_80\%\)\]{--haze-border:#27272a33}@supports (color:color-mix(in lab,red,red)){.\[--haze-border\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_80\%\)\]{--haze-border:color-mix(in oklab,var(--color-accent-content),transparent 80%)}}.\[--haze-light\:color-mix\(in_oklab\,_var\(--color-accent\)\,_transparent_98\%\)\]{--haze-light:#27272a05}@supports (color:color-mix(in lab,red,red)){.\[--haze-light\:color-mix\(in_oklab\,_var\(--color-accent\)\,_transparent_98\%\)\]{--haze-light:color-mix(in oklab,var(--color-accent),transparent 98%)}}.\[--haze\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_97\.5\%\)\]{--haze:#27272a06}@supports (color:color-mix(in lab,red,red)){.\[--haze\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_97\.5\%\)\]{--haze:color-mix(in oklab,var(--color-accent-content),transparent 97.5%)}}.\[--hover-fill\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_90\%\)\]{--hover-fill:#27272a1a}@supports (color:color-mix(in lab,red,red)){.\[--hover-fill\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_90\%\)\]{--hover-fill:color-mix(in oklab,var(--color-accent-content),transparent 90%)}}.\[grid-area\:aside\]{grid-area:aside}.\[grid-area\:footer\]{grid-area:footer}.\[grid-area\:header\]{grid-area:header}.\[grid-area\:main\]{grid-area:main}.\[grid-area\:sidebar\]{grid-area:sidebar}.\[print-color-adjust\:exact\]{-webkit-print-color-adjust:exact;print-color-adjust:exact}.\[writing-mode\:vertical-lr\]{writing-mode:vertical-lr}.text-shadow-2xs{text-shadow:0px 1px 0px var(--tw-text-shadow-color,#00000026)}.text-shadow-black{--tw-text-shadow-color:#000}@supports (color:color-mix(in lab,red,red)){.text-shadow-black{--tw-text-shadow-color:color-mix(in oklab,var(--color-black)var(--tw-text-shadow-alpha),transparent)}}.text-shadow-lg{text-shadow:0px 1px 2px var(--tw-text-shadow-color,#0000001a),0px 3px 2px var(--tw-text-shadow-color,#0000001a),0px 4px 8px var(--tw-text-shadow-color,#0000001a)}.text-shadow-md{text-shadow:0px 1px 1px var(--tw-text-shadow-color,#0000001a),0px 1px 2px var(--tw-text-shadow-color,#0000001a),0px 2px 4px var(--tw-text-shadow-color,#0000001a)}.text-shadow-xs{text-shadow:0px 1px 1px var(--tw-text-shadow-color,#0003)}:is(.\*\:col-start-1>*){grid-column-start:1}:is(.\*\:row-start-1>*){grid-row-start:1}:is(.\*\:h-auto>*){height:auto}:is(.\*\:bg-zinc-200>*){background-color:var(--color-zinc-200)}:is(.\*\:p-1\.5>*){padding:calc(var(--spacing)*1.5)}:is(.\*\:transition-opacity>*){transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}:is(.\*\*\:ring-white *){--tw-ring-color:var(--color-white)}:is(.\*\:not-first\:-ml-2>*):not(:first-child){margin-left:calc(var(--spacing)*-2)}.not-first-of-type\:mt-1:not(:first-of-type){margin-top:calc(var(--spacing)*1)}.not-in-data-flux-sidebar-collapsed-desktop\:hidden:not(:where([data-flux-sidebar-collapsed-desktop]) *){display:none}.not-in-data-loading\:opacity-0:not(:where([data-loading]) *){opacity:0}.not-in-\[tr\:first-child\]\:border-t:not(:where(:is(tr:first-child)) *){border-top-style:var(--tw-border-style);border-top-width:1px}.not-has-\[nav\]\:hidden:not(:has(:is(nav))),.not-data-open\:hidden:not([data-open]){display:none}@supports not ((-moz-appearance:none)){.not-\[\@supports\(-moz-appearance\:none\)\]\:hidden{display:none}}.group-last\/breadcrumb\:hidden:is(:where(.group\/breadcrumb):last-child *){display:none}.group-focus-within\:text-\[\#C79B4A\]:is(:where(.group):focus-within *){color:#c79b4a}.group-focus-within\/slider\:pointer-events-auto:is(:where(.group\/slider):focus-within *){pointer-events:auto}.group-focus-within\/slider\:visible:is(:where(.group\/slider):focus-within *){visibility:visible}.group-focus-within\/slider\:opacity-100:is(:where(.group\/slider):focus-within *){opacity:1}@media(hover:hover){.group-hover\:scale-\[1\.04\]:is(:where(.group):hover *){scale:1.04}.group-hover\:text-amber-200:is(:where(.group):hover *){color:var(--color-amber-200)}.group-hover\:text-zinc-800:is(:where(.group):hover *){color:var(--color-zinc-800)}.group-hover\:opacity-0:is(:where(.group):hover *){opacity:0}.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}.group-hover\/accordion-heading\:text-zinc-800:is(:where(.group\/accordion-heading):hover *){color:var(--color-zinc-800)}.group-hover\/card\:scale-\[1\.03\]:is(:where(.group\/card):hover *){scale:1.03}.group-hover\/slider\:pointer-events-auto:is(:where(.group\/slider):hover *){pointer-events:auto}.group-hover\/slider\:visible:is(:where(.group\/slider):hover *){visibility:visible}.group-hover\/slider\:opacity-100:is(:where(.group\/slider):hover *){opacity:1}.group-hover\/sortable\:text-zinc-800:is(:where(.group\/sortable):hover *){color:var(--color-zinc-800)}.group-hover\/sortable\:opacity-100:is(:where(.group\/sortable):hover *){opacity:1}}.group-data-active\/item\:text-zinc-800:is(:where(.group\/item)[data-active] *){color:var(--color-zinc-800)}.group-data-checked\:translate-x-\[0\.9375rem\]:is(:where(.group)[data-checked] *){--tw-translate-x:.9375rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.group-data-checked\:bg-\(--color-accent-foreground\):is(:where(.group)[data-checked] *){background-color:var(--color-accent-foreground)}.group-data-checked\/menu-checkbox\:block:is(:where(.group\/menu-checkbox)[data-checked] *),.group-data-checked\/menu-radio\:block:is(:where(.group\/menu-radio)[data-checked] *),.group-data-open\/accordion-heading\:block:is(:where(.group\/accordion-heading)[data-open] *){display:block}.group-data-open\/accordion-heading\:hidden:is(:where(.group\/accordion-heading)[data-open] *){display:none}.group-data-open\/disclosure-button\:block:is(:where(.group\/disclosure-button)[data-open] *){display:block}.group-data-open\/disclosure-button\:hidden:is(:where(.group\/disclosure-button)[data-open] *){display:none}.peer-checked\:opacity-0:is(:where(.peer):checked~*){opacity:0}.peer-checked\:opacity-100:is(:where(.peer):checked~*){opacity:1}.peer-focus-visible\:ring-2:is(:where(.peer):focus-visible~*){--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.peer-disabled\:opacity-0:is(:where(.peer):disabled~*){opacity:0}.peer-disabled\:opacity-60:is(:where(.peer):disabled~*){opacity:.6}.file\:mr-2::file-selector-button{margin-right:calc(var(--spacing)*2)}.file\:rounded::file-selector-button{border-radius:.25rem}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-white\/15::file-selector-button{background-color:#ffffff26}@supports (color:color-mix(in lab,red,red)){.file\:bg-white\/15::file-selector-button{background-color:color-mix(in oklab,var(--color-white)15%,transparent)}}.file\:px-2::file-selector-button{padding-inline:calc(var(--spacing)*2)}.file\:py-1::file-selector-button{padding-block:calc(var(--spacing)*1)}.file\:text-white::file-selector-button{color:var(--color-white)}.placeholder\:text-\[\#d8d0c3\]\/50::placeholder{color:#d8d0c380}.placeholder\:text-\[\#d8d0c3\]\/80::placeholder{color:#d8d0c3cc}.before\:absolute:before{content:var(--tw-content);position:absolute}.before\:inset-0:before{content:var(--tw-content);inset:calc(var(--spacing)*0)}.before\:top-0:before{content:var(--tw-content);top:calc(var(--spacing)*0)}.before\:top-1\/2:before{content:var(--tw-content);top:50%}.before\:bottom-0:before{content:var(--tw-content);bottom:calc(var(--spacing)*0)}.before\:bottom-1\/2:before{content:var(--tw-content);bottom:50%}.before\:left-\[0\.4rem\]:before{content:var(--tw-content);left:.4rem}.before\:z-10:before{content:var(--tw-content);z-index:10}.before\:-translate-x-full:before{content:var(--tw-content);--tw-translate-x:-100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.before\:animate-\[flux-shimmer_2s_infinite\]:before{content:var(--tw-content);animation:2s infinite flux-shimmer}.before\:border-l:before{content:var(--tw-content);border-left-style:var(--tw-border-style);border-left-width:1px}.before\:border-\[\#e3e3e0\]:before{content:var(--tw-content);border-color:#e3e3e0}.before\:bg-gradient-to-r:before{content:var(--tw-content);--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.before\:from-transparent:before{content:var(--tw-content);--tw-gradient-from:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.before\:via-\[var\(--flux-shimmer-color\)\]\/50:before{content:var(--tw-content);--tw-gradient-via:var(--flux-shimmer-color)}@supports (color:color-mix(in lab,red,red)){.before\:via-\[var\(--flux-shimmer-color\)\]\/50:before{--tw-gradient-via:color-mix(in oklab,var(--flux-shimmer-color)50%,transparent)}}.before\:via-\[var\(--flux-shimmer-color\)\]\/50:before{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.before\:to-transparent:before{content:var(--tw-content);--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:-inset-px:after{content:var(--tw-content);top:-1px;right:-1px;bottom:-1px;left:-1px}.after\:inset-0:after{content:var(--tw-content);inset:calc(var(--spacing)*0)}.after\:inset-\[3px\]:after{content:var(--tw-content);top:3px;right:3px;bottom:3px;left:3px}.after\:rounded-\[1px\]:after{content:var(--tw-content);border-radius:1px}.after\:rounded-full:after{content:var(--tw-content);border-radius:3.40282e38px}.after\:rounded-lg:after{content:var(--tw-content);border-radius:var(--radius-lg)}.after\:rounded-md:after{content:var(--tw-content);border-radius:var(--radius-md)}.after\:rounded-sm:after{content:var(--tw-content);border-radius:var(--radius-sm)}.after\:rounded-xl:after{content:var(--tw-content);border-radius:var(--radius-xl)}.after\:bg-white:after{content:var(--tw-content);background-color:var(--color-white)}.after\:inset-ring-\[1px\]:after{content:var(--tw-content);--tw-inset-ring-shadow:inset 0 0 0 1px var(--tw-inset-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.after\:inset-ring-black\/7:after{content:var(--tw-content);--tw-inset-ring-color:#00000012}@supports (color:color-mix(in lab,red,red)){.after\:inset-ring-black\/7:after{--tw-inset-ring-color:color-mix(in oklab,var(--color-black)7%,transparent)}}.after\:content-\[var\(--flux-file-upload-progress-as-string\)\]:after{--tw-content:var(--flux-file-upload-progress-as-string);content:var(--tw-content)}.first\:sticky:first-child{position:sticky}.first\:left-0:first-child{left:calc(var(--spacing)*0)}.first\:ps-0:first-child{padding-inline-start:calc(var(--spacing)*0)}.first\:pt-0:first-child{padding-top:calc(var(--spacing)*0)}.first\:after\:pointer-events-none:first-child:after{content:var(--tw-content);pointer-events:none}.first\:after\:absolute:first-child:after{content:var(--tw-content);position:absolute}.first\:after\:inset-y-0:first-child:after{content:var(--tw-content);inset-block:calc(var(--spacing)*0)}.first\:after\:right-0:first-child:after{content:var(--tw-content);right:calc(var(--spacing)*0)}.first\:after\:w-8:first-child:after{content:var(--tw-content);width:calc(var(--spacing)*8)}.first\:after\:translate-x-full:first-child:after{content:var(--tw-content);--tw-translate-x:100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.last\:sticky:last-child{position:sticky}.last\:right-0:last-child{right:calc(var(--spacing)*0)}.last\:bottom-0:last-child{bottom:calc(var(--spacing)*0)}.last\:z-20:last-child{z-index:20}.last\:border-b-0:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.last\:pe-0:last-child{padding-inline-end:calc(var(--spacing)*0)}.last\:pb-0:last-child{padding-bottom:calc(var(--spacing)*0)}.last\:after\:pointer-events-none:last-child:after{content:var(--tw-content);pointer-events:none}.last\:after\:absolute:last-child:after{content:var(--tw-content);position:absolute}.last\:after\:inset-y-0:last-child:after{content:var(--tw-content);inset-block:calc(var(--spacing)*0)}.last\:after\:left-0:last-child:after{content:var(--tw-content);left:calc(var(--spacing)*0)}.last\:after\:w-8:last-child:after{content:var(--tw-content);width:calc(var(--spacing)*8)}.last\:after\:-translate-x-full:last-child:after{content:var(--tw-content);--tw-translate-x:-100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.odd\:bg-white\/\[0\.03\]:nth-child(odd){background-color:#ffffff08}@supports (color:color-mix(in lab,red,red)){.odd\:bg-white\/\[0\.03\]:nth-child(odd){background-color:color-mix(in oklab,var(--color-white)3%,transparent)}}.even\:bg-black\/25:nth-child(2n){background-color:#00000040}@supports (color:color-mix(in lab,red,red)){.even\:bg-black\/25:nth-child(2n){background-color:color-mix(in oklab,var(--color-black)25%,transparent)}}.first-of-type\:rounded-s-lg:first-of-type{border-start-start-radius:var(--radius-lg);border-end-start-radius:var(--radius-lg)}.last-of-type\:rounded-e-lg:last-of-type{border-start-end-radius:var(--radius-lg);border-end-end-radius:var(--radius-lg)}.checked\:bg-\[\#c9814a\]:checked{background-color:#c9814a}@media(hover:hover){.hover\:z-20:hover{z-index:20}.hover\:-translate-x-\[4\%\]:hover{--tw-translate-x: -4% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:translate-x-\[14\%\]:hover{--tw-translate-x:14%;translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\:scale-\[1\.04\]:hover{scale:1.04}.hover\:border-\[\#1915014a\]:hover{border-color:#1915014a}.hover\:border-\[\#19140035\]:hover{border-color:#19140035}.hover\:border-\[\#C79B4A\]:hover{border-color:#c79b4a}.hover\:border-\[\#C79B4A\]\/60:hover{border-color:#c79b4a99}.hover\:border-\[var\(--haze-border\)\]:hover{border-color:var(--haze-border)}.hover\:border-black:hover{border-color:var(--color-black)}.hover\:border-white\/30\!:hover{border-color:#ffffff4d!important}@supports (color:color-mix(in lab,red,red)){.hover\:border-white\/30\!:hover{border-color:color-mix(in oklab,var(--color-white)30%,transparent)!important}}.hover\:border-white\/45:hover{border-color:#ffffff73}@supports (color:color-mix(in lab,red,red)){.hover\:border-white\/45:hover{border-color:color-mix(in oklab,var(--color-white)45%,transparent)}}.hover\:border-white\/60\!:hover{border-color:#fff9!important}@supports (color:color-mix(in lab,red,red)){.hover\:border-white\/60\!:hover{border-color:color-mix(in oklab,var(--color-white)60%,transparent)!important}}.hover\:border-zinc-200:hover{border-color:var(--color-zinc-200)}.hover\:bg-\[\#C79B4A\]\/15:hover{background-color:#c79b4a26}.hover\:bg-\[color-mix\(in_oklab\,_var\(--color-accent\)\,_transparent_10\%\)\]:hover{background-color:#27272ae6}@supports (color:color-mix(in lab,red,red)){.hover\:bg-\[color-mix\(in_oklab\,_var\(--color-accent\)\,_transparent_10\%\)\]:hover{background-color:color-mix(in oklab,var(--color-accent),transparent 10%)}}.hover\:bg-black:hover{background-color:var(--color-black)}.hover\:bg-emerald-500:hover{background-color:var(--color-emerald-500)}.hover\:bg-gray-100:hover{background-color:var(--color-gray-100)}.hover\:bg-red-50:hover{background-color:var(--color-red-50)}.hover\:bg-red-600:hover{background-color:var(--color-red-600)}.hover\:bg-sky-500:hover{background-color:var(--color-sky-500)}.hover\:bg-white\/10:hover{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-white\/10:hover{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.hover\:bg-white\/20:hover{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.hover\:bg-white\/20:hover{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.hover\:bg-zinc-50:hover{background-color:var(--color-zinc-50)}.hover\:bg-zinc-100:hover{background-color:var(--color-zinc-100)}.hover\:bg-zinc-200:hover{background-color:var(--color-zinc-200)}.hover\:bg-zinc-800\/5:hover{background-color:#27272a0d}@supports (color:color-mix(in lab,red,red)){.hover\:bg-zinc-800\/5:hover{background-color:color-mix(in oklab,var(--color-zinc-800)5%,transparent)}}.hover\:bg-zinc-800\/10:hover{background-color:#27272a1a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-zinc-800\/10:hover{background-color:color-mix(in oklab,var(--color-zinc-800)10%,transparent)}}.hover\:bg-zinc-800\/\[4\%\]:hover{background-color:#27272a0a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-zinc-800\/\[4\%\]:hover{background-color:color-mix(in oklab,var(--color-zinc-800)4%,transparent)}}.hover\:bg-\[url\(\'data\:image\/svg\+xml\,\%3Csvg\%20xmlns\=\%22http\:\/\/www\.w3\.org\/2000\/svg\%22\%20viewBox\=\%220\%200\%2016\%2016\%22\%20fill\=\%22\%231f2937\%22\%20class\=\%22size-4\%22\%3E\%3Cpath\%20fill-rule\=\%22evenodd\%22\%20d\=\%22M4\.22\%206\.22a\.75\.75\%200\%200\%201\%201\.06\%200L8\%208\.94l2\.72-2\.72a\.75\.75\%200\%201\%201\%201\.06\%201\.06l-3\.25\%203\.25a\.75\.75\%200\%200\%201-1\.06\%200L4\.22\%207\.28a\.75\.75\%200\%200\%201\%200-1\.06Z\%22\%20clip-rule\=\%22evenodd\%22\/\%3E\%3C\/svg\%3E\'\)\]:hover{background-image:url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2016%2016%22%20fill=%22%231f2937%22%20class=%22size-4%22%3E%3Cpath%20fill-rule=%22evenodd%22%20d=%22M4.22%206.22a.75.75%200%200%201%201.06%200L8%208.94l2.72-2.72a.75.75%200%201%201%201.06%201.06l-3.25%203.25a.75.75%200%200%201-1.06%200L4.22%207.28a.75.75%200%200%201%200-1.06Z%22%20clip-rule=%22evenodd%22/%3E%3C/svg%3E)}.hover\:bg-\[length\:16px_16px\]:hover{background-size:16px 16px}.hover\:text-\[\#E2C98A\]:hover{color:#e2c98a}.hover\:text-\[\#FAEEBC\]:hover{color:#faeebc}.hover\:text-amber-100:hover{color:var(--color-amber-100)}.hover\:text-gray-400:hover{color:var(--color-gray-400)}.hover\:text-gray-700:hover{color:var(--color-gray-700)}.hover\:text-red-600:hover{color:var(--color-red-600)}.hover\:text-white:hover{color:var(--color-white)}.hover\:text-white\/80:hover{color:#fffc}@supports (color:color-mix(in lab,red,red)){.hover\:text-white\/80:hover{color:color-mix(in oklab,var(--color-white)80%,transparent)}}.hover\:text-zinc-800:hover{color:var(--color-zinc-800)}.hover\:text-zinc-800\!:hover{color:var(--color-zinc-800)!important}.hover\:underline:hover{text-decoration-line:underline}.hover\:decoration-current:hover{text-decoration-color:currentColor}.hover\:opacity-100:hover{opacity:1}.hover\:after\:bg-\[var\(--haze-light\)\]:hover:after{content:var(--tw-content);background-color:var(--haze-light)}}.focus\:border-\[\#C79B4A\]:focus{border-color:#c79b4a}.focus\:border-blue-300:focus{border-color:var(--color-blue-300)}.focus\:border-zinc-200:focus{border-color:var(--color-zinc-200)}.focus\:text-zinc-800:focus{color:var(--color-zinc-800)}.focus\:ring:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-0:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-offset-0:focus{--tw-ring-offset-width:0px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-hidden:focus{--tw-outline-style:none;outline-style:none}@media(forced-colors:active){.focus\:outline-hidden:focus{outline-offset:2px;outline:2px solid #0000}}.focus\:outline-offset-\[revert\]:focus{outline-offset:revert}.focus\:outline-\[revert\]:focus{outline-color:revert}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-white\/60:focus-visible{--tw-ring-color:#fff9}@supports (color:color-mix(in lab,red,red)){.focus-visible\:ring-white\/60:focus-visible{--tw-ring-color:color-mix(in oklab,var(--color-white)60%,transparent)}}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.active\:bg-gray-100:active{background-color:var(--color-gray-100)}.active\:text-gray-500:active{color:var(--color-gray-500)}.active\:text-gray-700:active{color:var(--color-gray-700)}.active\:text-gray-800:active{color:var(--color-gray-800)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-default:disabled{cursor:default}.disabled\:border-b-zinc-200:disabled{border-bottom-color:var(--color-zinc-200)}.disabled\:text-zinc-400:disabled{color:var(--color-zinc-400)}.disabled\:text-zinc-500:disabled{color:var(--color-zinc-500)}.disabled\:placeholder-zinc-400:disabled::placeholder{color:var(--color-zinc-400)}.disabled\:placeholder-zinc-400\/70:disabled::placeholder{color:#9f9fa9b3}@supports (color:color-mix(in lab,red,red)){.disabled\:placeholder-zinc-400\/70:disabled::placeholder{color:color-mix(in oklab,var(--color-zinc-400)70%,transparent)}}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-75:disabled{opacity:.75}.disabled\:shadow-none:disabled{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.disabled\:shadow-xs\!:disabled{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d)!important;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)!important}:where([data-checked]) .in-data-checked\:text-zinc-800{color:var(--color-zinc-800)}:where([data-dragging]) .in-data-dragging\:border-zinc-300{border-color:var(--color-zinc-300)}:where([data-dragging]) .in-data-dragging\:bg-zinc-100{background-color:var(--color-zinc-100)}:where([data-dragging]) .in-data-dragging\:text-zinc-800{color:var(--color-zinc-800)}:where([data-flux-menu]) .in-data-flux-menu\:block{display:block}:where([data-flux-menu]) .in-data-flux-menu\:px-2{padding-inline:calc(var(--spacing)*2)}:where([data-flux-menu]) .in-data-flux-menu\:text-zinc-400{color:var(--color-zinc-400)}:where([data-flux-menu]) .in-data-flux-menu\:text-zinc-800{color:var(--color-zinc-800)}@media(hover:hover){:where([data-flux-menu]) .in-data-flux-menu\:hover\:bg-zinc-50:hover{background-color:var(--color-zinc-50)}}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:absolute{position:absolute}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:hidden{display:none}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:w-10{width:calc(var(--spacing)*10)}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:cursor-e-resize{cursor:e-resize}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:justify-center{justify-content:center}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:px-0{padding-inline:calc(var(--spacing)*0)}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:px-3{padding-inline:calc(var(--spacing)*3)}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:opacity-0{opacity:0}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:not-in-data-flux-menu\:w-10:not(:where([data-flux-menu]) *){width:calc(var(--spacing)*10)}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:not-in-data-flux-menu\:justify-center:not(:where([data-flux-menu]) *){justify-content:center}:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:not-in-data-flux-sidebar-group-dropdown\:hidden:not(:where([data-flux-sidebar-group-dropdown]) *){display:none}:where([data-flux-sidebar-active]) :is(:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:in-data-flux-sidebar-active\:absolute){position:absolute}:where([data-flux-sidebar-active]) :is(:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:in-data-flux-sidebar-active\:opacity-0){opacity:0}:where([data-flux-sidebar-active]) :is(:where([data-flux-sidebar-collapsed-desktop]) .in-data-flux-sidebar-collapsed-desktop\:in-data-flux-sidebar-active\:opacity-100){opacity:1}:where([data-flux-sidebar-group-dropdown]) .in-data-flux-sidebar-group-dropdown\:hidden{display:none}:where([data-flux-sidebar-group-dropdown]) .in-data-flux-sidebar-group-dropdown\:w-auto\!{width:auto!important}:where([data-flux-sidebar-group-dropdown]) .in-data-flux-sidebar-group-dropdown\:bg-white\!{background-color:var(--color-white)!important}:where([data-flux-sidebar-group-dropdown]) .in-data-flux-sidebar-group-dropdown\:px-2\!{padding-inline:calc(var(--spacing)*2)!important}:where([data-flux-sidebar-group-dropdown]) .in-data-flux-sidebar-group-dropdown\:text-zinc-400\!{color:var(--color-zinc-400)!important}:where([data-flux-sidebar-group-dropdown]) .in-data-flux-sidebar-group-dropdown\:text-zinc-800\!{color:var(--color-zinc-800)!important}@media(hover:hover){:where([data-flux-sidebar-group-dropdown]) .in-data-flux-sidebar-group-dropdown\:hover\:bg-zinc-50\!:hover{background-color:var(--color-zinc-50)!important}}:where([data-flux-sidebar-active]) :is(:where([data-flux-sidebar-collapsed-desktop]) :is(:where([data-flux-sidebar-header]) .in-data-flux-sidebar-header\:in-data-flux-sidebar-collapsed-desktop\:in-data-flux-sidebar-active\:hidden)),:where([data-flux-sidebar-on-mobile]) .in-data-flux-sidebar-on-mobile\:hidden{display:none}:where([data-flux-sidebar-on-mobile]) .in-data-flux-sidebar-on-mobile\:h-10{height:calc(var(--spacing)*10)}:where([data-loading]) .in-data-loading\:opacity-0{opacity:0}:where([data-loading]) .in-data-loading\:opacity-100{opacity:1}:where([data-scrolled-left]) .in-data-scrolled-left\:last\:after\:inset-shadow-\[-8px_0px_8px_-8px_rgba\(0\,0\,0\,0\.05\)\]:last-child:after{content:var(--tw-content);--tw-inset-shadow:inset -8px 0px 8px -8px var(--tw-inset-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}:where([data-scrolled-right]) .in-data-scrolled-right\:first\:after\:inset-shadow-\[8px_0px_8px_-8px_rgba\(0\,0\,0\,0\.05\)\]:first-child:after{content:var(--tw-content);--tw-inset-shadow:inset 8px 0px 8px -8px var(--tw-inset-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}:where([data-flux-timeline-size=lg]) .in-data-\[flux-timeline-size\=lg\]\:text-zinc-800{color:var(--color-zinc-800)}:is(:where([data-flux-timeline-size=lg]) .in-data-\[flux-timeline-size\=lg\]\:\*\:bg-zinc-100>*){background-color:var(--color-zinc-100)}:where(.group\/center-align) .in-\[\.group\\\/center-align\]\:justify-center{justify-content:center}:where(.group\/end-align) .in-\[\.group\\\/end-align\]\:-ms-8{margin-inline-start:calc(var(--spacing)*-8)}:where(.group\/end-align) .in-\[\.group\\\/end-align\]\:-me-2{margin-inline-end:calc(var(--spacing)*-2)}:where(.group\/end-align) .in-\[\.group\\\/end-align\]\:flex-row-reverse{flex-direction:row-reverse}:where(.group\/end-align) .in-\[\.group\\\/end-align\]\:justify-end{justify-content:flex-end}:where(:is(data-target)) .in-\[data-target\]\:text-start{text-align:start}:where(:is(ui-toast-group)) .in-\[ui-toast-group\]\:w-xs{width:var(--container-xs)}.has-focus-within\:z-10:has(:focus-within){z-index:10}.has-focus-visible\:outline-2:has(:focus-visible){outline-style:var(--tw-outline-style);outline-width:2px}.has-focus-visible\:outline-\[-webkit-focus-ring-color\]:has(:focus-visible){outline-color:-webkit-focus-ring-color}.has-data-flux-navlist-badge\:not-in-data-flux-sidebar-collapsed-desktop\:pe-1\.5:has([data-flux-navlist-badge]):not(:where([data-flux-sidebar-collapsed-desktop]) *){padding-inline-end:calc(var(--spacing)*1.5)}.has-data-flux-slider-tick-line\:mt-1:has([data-flux-slider-tick-line]){margin-top:calc(var(--spacing)*1)}.has-data-invalid\:border-red-500:has([data-invalid]){border-color:var(--color-red-500)}.has-data-invalid\:outline-red-500\!:has([data-invalid]){outline-color:var(--color-red-500)!important}.has-data-\[circle\=true\]\:rounded-full:has([data-circle=true]){border-radius:3.40282e38px}.has-\[\:disabled\]\:cursor-not-allowed:has(:disabled){cursor:not-allowed}.has-\[\:disabled\]\:opacity-70:has(:disabled){opacity:.7}.has-\[\[data-flux-control\]\~\[data-flux-label\]\]\:grid-cols-\[auto_1fr\]:has(:is([data-flux-control]~[data-flux-label])){grid-template-columns:auto 1fr}.has-\[\[data-flux-label\]\~\[data-flux-control\]\]\:grid-cols-\[1fr_auto\]:has(:is([data-flux-label]~[data-flux-control])){grid-template-columns:1fr auto}.has-\[option\.placeholder\:checked\]\:text-zinc-400:has(:is(option.placeholder:checked)){color:var(--color-zinc-400)}.data-active\:bg-red-50[data-active]{background-color:var(--color-red-50)}.data-active\:bg-zinc-50[data-active]{background-color:var(--color-zinc-50)}.data-active\:bg-zinc-100[data-active]{background-color:var(--color-zinc-100)}.data-active\:text-red-600[data-active]{color:var(--color-red-600)}.data-active\:text-zinc-500[data-active]{color:var(--color-zinc-500)}.data-active\:opacity-100[data-active]{opacity:1}.data-checked\:border-0[data-checked]{border-style:var(--tw-border-style);border-width:0}.data-checked\:border-\(--color-accent\)[data-checked]{border-color:var(--color-accent)}.data-checked\:border-zinc-800[data-checked]{border-color:var(--color-zinc-800)}.data-checked\:bg-\(--color-accent\)[data-checked]{background-color:var(--color-accent)}.data-checked\:bg-white[data-checked]{background-color:var(--color-white)}.data-checked\:bg-zinc-50[data-checked]{background-color:var(--color-zinc-50)}.data-checked\:bg-zinc-800[data-checked]{background-color:var(--color-zinc-800)}.data-checked\:text-\(--color-accent-foreground\)[data-checked]{color:var(--color-accent-foreground)}.data-checked\:text-white[data-checked]{color:var(--color-white)}.data-checked\:text-zinc-800[data-checked]{color:var(--color-zinc-800)}.data-checked\:shadow-xs[data-checked]{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.data-checked\:after\:bg-\(--haze\)[data-checked]:after{content:var(--tw-content);background-color:var(--haze)}@media(hover:hover){.hover\:data-checked\:border-\(--color-accent\):hover[data-checked]{border-color:var(--color-accent)}.hover\:data-checked\:bg-\(--color-accent\):hover[data-checked]{background-color:var(--color-accent)}.hover\:data-checked\:text-\(--color-accent-foreground\):hover[data-checked]{color:var(--color-accent-foreground)}.hover\:data-checked\:after\:bg-\(--haze\):hover[data-checked]:after{content:var(--tw-content);background-color:var(--haze)}}.data-current\:border[data-current]{border-style:var(--tw-border-style);border-width:1px}.data-current\:border-zinc-200[data-current]{border-color:var(--color-zinc-200)}.data-current\:bg-white[data-current]{background-color:var(--color-white)}.data-current\:bg-zinc-800\/\[4\%\][data-current]{background-color:#27272a0a}@supports (color:color-mix(in lab,red,red)){.data-current\:bg-zinc-800\/\[4\%\][data-current]{background-color:color-mix(in oklab,var(--color-zinc-800)4%,transparent)}}.data-current\:text-\(--color-accent-content\)[data-current]{color:var(--color-accent-content)}.data-current\:text-zinc-800[data-current]{color:var(--color-zinc-800)}.data-current\:shadow-xs[data-current]{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.data-current\:after\:absolute[data-current]:after{content:var(--tw-content);position:absolute}.data-current\:after\:inset-x-0[data-current]:after{content:var(--tw-content);inset-inline:calc(var(--spacing)*0)}.data-current\:after\:-bottom-3[data-current]:after{content:var(--tw-content);bottom:calc(var(--spacing)*-3)}.data-current\:after\:h-\[2px\][data-current]:after{content:var(--tw-content);height:2px}.data-current\:after\:bg-\(--color-accent-content\)[data-current]:after{content:var(--tw-content);background-color:var(--color-accent-content)}.data-current\:after\:bg-zinc-800[data-current]:after{content:var(--tw-content);background-color:var(--color-zinc-800)}@media(hover:hover){.hover\:data-current\:bg-\(--hover-fill\):hover[data-current]{background-color:var(--hover-fill)}.hover\:data-current\:text-\(--color-accent-content\):hover[data-current]{color:var(--color-accent-content)}}.data-end\:rounded-e-lg[data-end],.data-end-preview\:rounded-e-lg[data-end-preview]{border-start-end-radius:var(--radius-lg);border-end-end-radius:var(--radius-lg)}:is(.\*\*\:data-flux-badge-icon\:me-1 *)[data-flux-badge-icon]{margin-inline-end:calc(var(--spacing)*1)}:is(.\*\*\:data-flux-badge-icon\:me-1\.5 *)[data-flux-badge-icon]{margin-inline-end:calc(var(--spacing)*1.5)}:is(.\*\*\:data-flux-badge-icon\:me-2 *)[data-flux-badge-icon]{margin-inline-end:calc(var(--spacing)*2)}:is(.\*\:data-flux-field\:mb-3>*)[data-flux-field]{margin-bottom:calc(var(--spacing)*3)}:is(.\*\*\:data-flux-heading\:text-lg *)[data-flux-heading]{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}:is(.\*\:data-flux-input\:grow>*)[data-flux-input]{flex-grow:1}:is(.\*\:data-flux-label\:mb-3>*)[data-flux-label]{margin-bottom:calc(var(--spacing)*3)}.data-flux-loading\:pointer-events-none[data-flux-loading]{pointer-events:none}:is(.\*\*\:data-flux-menu-item-icon\:text-zinc-400 *)[data-flux-menu-item-icon]{color:var(--color-zinc-400)}.data-flux-sidebar-collapsed-desktop\:w-14[data-flux-sidebar-collapsed-desktop]{width:calc(var(--spacing)*14)}.data-flux-sidebar-collapsed-desktop\:cursor-e-resize[data-flux-sidebar-collapsed-desktop]{cursor:e-resize}.data-flux-sidebar-collapsed-desktop\:px-2[data-flux-sidebar-collapsed-desktop]{padding-inline:calc(var(--spacing)*2)}.data-flux-sidebar-on-mobile\:fixed\![data-flux-sidebar-on-mobile]{position:fixed!important}.data-flux-sidebar-on-mobile\:start-0\![data-flux-sidebar-on-mobile]{inset-inline-start:calc(var(--spacing)*0)!important}.data-flux-sidebar-on-mobile\:top-0\![data-flux-sidebar-on-mobile]{top:calc(var(--spacing)*0)!important}.data-flux-sidebar-on-mobile\:max-h-dvh\![data-flux-sidebar-on-mobile]{max-height:100dvh!important}.data-flux-sidebar-on-mobile\:min-h-dvh\![data-flux-sidebar-on-mobile]{min-height:100dvh!important}.data-flux-sidebar-on-mobile\:not-data-flux-sidebar-collapsed-mobile\:block[data-flux-sidebar-on-mobile]:not([data-flux-sidebar-collapsed-mobile]){display:block}.data-flux-sidebar-on-mobile\:data-flux-sidebar-collapsed-mobile\:-translate-x-full[data-flux-sidebar-on-mobile][data-flux-sidebar-collapsed-mobile]{--tw-translate-x:-100%;translate:var(--tw-translate-x)var(--tw-translate-y)}:is(.\*\*\:data-flux-subheading\:text-sm *)[data-flux-subheading]{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}:is(.\*\*\:data-flux-table-sortable\:last\:me-0 *)[data-flux-table-sortable]:last-child{margin-inline-end:calc(var(--spacing)*0)}.data-hidden\:hidden[data-hidden]{display:none}.data-in-range\:bg-zinc-100[data-in-range]{background-color:var(--color-zinc-100)}.data-indeterminate\:border-transparent[data-indeterminate]{border-color:#0000}.data-invalid\:border-red-500[data-invalid]{border-color:var(--color-red-500)}.data-invalid\:text-red-500[data-invalid]{color:var(--color-red-500)}.data-invalid\:shadow-none[data-invalid]{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.data-invalid\:outline-red-500[data-invalid]{outline-color:var(--color-red-500)}.disabled\:data-invalid\:border-red-500:disabled[data-invalid]{border-color:var(--color-red-500)}.data-loading\:pointer-events-none[data-loading]{pointer-events:none}.data-match\:text-zinc-800[data-match]{color:var(--color-zinc-800)}:is(.\*\*\:data-navmenu-icon\:text-zinc-400 *)[data-navmenu-icon]{color:var(--color-zinc-400)}.data-open\:block[data-open]{display:block}.data-open\:text-zinc-800[data-open]{color:var(--color-zinc-800)}.data-outside\:opacity-50[data-outside]{opacity:.5}.data-selected\:border-\(--color-accent-content\)[data-selected]{border-color:var(--color-accent-content)}.data-selected\:border-zinc-800[data-selected]{border-color:var(--color-zinc-800)}.data-selected\:bg-\(--color-accent\)[data-selected]{background-color:var(--color-accent)}.data-selected\:bg-white[data-selected]{background-color:var(--color-white)}.data-selected\:bg-zinc-800[data-selected]{background-color:var(--color-zinc-800)}.data-selected\:text-\(--color-accent-content\)[data-selected]{color:var(--color-accent-content)}.data-selected\:text-\(--color-accent-foreground\)[data-selected]{color:var(--color-accent-foreground)}.data-selected\:text-white[data-selected]{color:var(--color-white)}.data-selected\:text-zinc-800[data-selected]{color:var(--color-zinc-800)}.data-selected\:shadow-xs[data-selected]{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media(hover:hover){.hover\:data-selected\:bg-\(--color-accent\):hover[data-selected]{background-color:var(--color-accent)}.hover\:data-selected\:text-\(--color-accent-content\):hover[data-selected]{color:var(--color-accent-content)}.hover\:data-selected\:text-\(--color-accent-foreground\):hover[data-selected]{color:var(--color-accent-foreground)}}.data-start\:rounded-s-lg[data-start]{border-start-start-radius:var(--radius-lg);border-end-start-radius:var(--radius-lg)}.data-unavailable\:line-through[data-unavailable]{text-decoration-line:line-through}:is(.\*\*\:data-\[slot\=avatar\]\:ring-4 *)[data-slot=avatar]{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}:is(.\*\*\:data-\[slot\=avatar\]\:data-\[size\=sm\]\:ring-2 *)[data-slot=avatar][data-size=sm],:is(.\*\*\:data-\[slot\=avatar\]\:data-\[size\=xs\]\:ring-2 *)[data-slot=avatar][data-size=xs]{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}:is(.\*\*\:data-\[slot\=content\]\:p-2\! *)[data-slot=content]{padding:calc(var(--spacing)*2)!important}:is(.\*\*\:data-\[slot\=content\]\:text-base\! *)[data-slot=content]{font-size:var(--text-base)!important;line-height:var(--tw-leading,var(--text-base--line-height))!important}:is(.\*\*\:data-\[slot\=content\]\:text-zinc-700 *)[data-slot=content]{color:var(--color-zinc-700)}.data-\[type\=agent\]\:text-\[\#eadeb4\][data-type=agent]{color:#eadeb4}.data-\[type\=diver\]\:text-\[\#bce8f3\][data-type=diver]{color:#bce8f3}.data-\[type\=immortal\]\:text-\[\#fdd142\][data-type=immortal]{color:#fdd142}@media not all and (min-width:64rem){.max-lg\:data-flux-sidebar-cloak\:hidden[data-flux-sidebar-cloak]{display:none}}@media not all and (min-width:40rem){.max-sm\:fixed\!{position:fixed!important}.max-sm\:inset-0\!{inset:calc(var(--spacing)*0)!important}.max-sm\:hidden{display:none}.max-sm\:max-h-full\!{max-height:100%!important}}@media(min-width:40rem){.sm\:top-2{top:calc(var(--spacing)*2)}.sm\:right-3{right:calc(var(--spacing)*3)}.sm\:bottom-2{bottom:calc(var(--spacing)*2)}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:inline{display:inline}.sm\:size-6{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.sm\:size-8{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.sm\:size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.sm\:size-10{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.sm\:size-11{width:calc(var(--spacing)*11);height:calc(var(--spacing)*11)}.sm\:size-12{width:calc(var(--spacing)*12);height:calc(var(--spacing)*12)}.sm\:size-14{width:calc(var(--spacing)*14);height:calc(var(--spacing)*14)}.sm\:size-16{width:calc(var(--spacing)*16);height:calc(var(--spacing)*16)}.sm\:h-8{height:calc(var(--spacing)*8)}.sm\:h-full{height:100%}.sm\:w-6\!{width:calc(var(--spacing)*6)!important}.sm\:w-\[11\.25rem\]{width:11.25rem}.sm\:w-auto{width:auto}.sm\:max-w-sm{max-width:var(--container-sm)}.sm\:min-w-\[260px\]{min-width:260px}.sm\:flex-1{flex:1}.sm\:basis-0{flex-basis:calc(var(--spacing)*0)}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-\[14rem_minmax\(0\,1fr\)\]{grid-template-columns:14rem minmax(0,1fr)}.sm\:grid-cols-\[auto_1fr\]{grid-template-columns:auto 1fr}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:items-end{align-items:flex-end}.sm\:justify-between{justify-content:space-between}.sm\:justify-normal{justify-content:normal}.sm\:gap-2{gap:calc(var(--spacing)*2)}.sm\:gap-3{gap:calc(var(--spacing)*3)}.sm\:gap-x-0{column-gap:calc(var(--spacing)*0)}.sm\:border{border-style:var(--tw-border-style);border-width:1px}.sm\:p-2{padding:calc(var(--spacing)*2)}.sm\:p-2\.5{padding:calc(var(--spacing)*2.5)}.sm\:p-6{padding:calc(var(--spacing)*6)}.sm\:p-8{padding:calc(var(--spacing)*8)}.sm\:px-2{padding-inline:calc(var(--spacing)*2)}.sm\:px-5{padding-inline:calc(var(--spacing)*5)}.sm\:px-6{padding-inline:calc(var(--spacing)*6)}.sm\:px-10{padding-inline:calc(var(--spacing)*10)}.sm\:px-16{padding-inline:calc(var(--spacing)*16)}.sm\:py-4{padding-block:calc(var(--spacing)*4)}.sm\:py-10{padding-block:calc(var(--spacing)*10)}.sm\:ps-2{padding-inline-start:calc(var(--spacing)*2)}.sm\:ps-5{padding-inline-start:calc(var(--spacing)*5)}.sm\:pe-8{padding-inline-end:calc(var(--spacing)*8)}.sm\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.sm\:text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.sm\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.sm\:shadow-2xs{--tw-shadow:0 1px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.sm\:backdrop\:bg-transparent::backdrop{background-color:#0000}:where(:is(ui-toast-group)) .sm\:in-\[ui-toast-group\]\:w-sm{width:var(--container-sm)}:is(.sm\:\*\*\:data-\[slot\=content\]\:text-sm\! *)[data-slot=content]{font-size:var(--text-sm)!important;line-height:var(--tw-leading,var(--text-sm--line-height))!important}}@media(min-width:48rem){.md\:flex{display:flex}.md\:hidden{display:none}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:gap-4{gap:calc(var(--spacing)*4)}.md\:gap-5{gap:calc(var(--spacing)*5)}.md\:gap-9{gap:calc(var(--spacing)*9)}.md\:gap-\[60px\]{gap:60px}.md\:gap-\[60px_100px\]{gap:60px 100px}.md\:gap-\[170px\]{gap:170px}.md\:p-8{padding:calc(var(--spacing)*8)}.md\:p-12{padding:calc(var(--spacing)*12)}.md\:p-20{padding:calc(var(--spacing)*20)}.md\:p-\[1px\],.md\:p-px{padding:1px}.md\:px-20{padding-inline:calc(var(--spacing)*20)}.md\:text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.md\:text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.md\:text-9xl{font-size:var(--text-9xl);line-height:var(--tw-leading,var(--text-9xl--line-height))}.md\:text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.md\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}}@media(min-width:64rem){.lg\:sticky{position:sticky}.lg\:top-2{top:calc(var(--spacing)*2)}.lg\:top-20{top:calc(var(--spacing)*20)}.lg\:bottom-auto{bottom:auto}.lg\:z-auto{z-index:auto}.lg\:-mt-\[6\.6rem\]{margin-top:-6.6rem}.lg\:mb-0{margin-bottom:calc(var(--spacing)*0)}.lg\:mb-6{margin-bottom:calc(var(--spacing)*6)}.lg\:-ml-px{margin-left:-1px}.lg\:ml-0{margin-left:calc(var(--spacing)*0)}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:aspect-auto{aspect-ratio:auto}.lg\:h-8{height:calc(var(--spacing)*8)}.lg\:h-\[600px\]{height:600px}.lg\:max-h-\[calc\(100dvh-1rem\)\]{max-height:calc(100dvh - 1rem)}.lg\:max-h-\[calc\(100vh-6rem\)\]{max-height:calc(100vh - 6rem)}.lg\:w-\[438px\]{width:438px}.lg\:w-auto{width:auto}.lg\:max-w-4xl{max-width:var(--container-4xl)}.lg\:max-w-sm{max-width:var(--container-sm)}.lg\:grow{flex-grow:1}.lg\:translate-y-0{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-\[19rem_minmax\(0\,1fr\)\]{grid-template-columns:19rem minmax(0,1fr)}.lg\:grid-cols-\[22rem_minmax\(0\,1fr\)\]{grid-template-columns:22rem minmax(0,1fr)}.lg\:grid-cols-\[minmax\(0\,420px\)_1fr\]{grid-template-columns:minmax(0,420px) 1fr}.lg\:flex-row{flex-direction:row}.lg\:items-start{align-items:flex-start}.lg\:justify-between{justify-content:space-between}.lg\:justify-center{justify-content:center}.lg\:overflow-y-auto{overflow-y:auto}.lg\:rounded-lg{border-radius:var(--radius-lg)}.lg\:rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.lg\:rounded-tl-lg{border-top-left-radius:var(--radius-lg)}.lg\:rounded-r-lg{border-top-right-radius:var(--radius-lg);border-bottom-right-radius:var(--radius-lg)}.lg\:rounded-br-none{border-bottom-right-radius:0}.lg\:bg-black\/80{background-color:#000c}@supports (color:color-mix(in lab,red,red)){.lg\:bg-black\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}}.lg\:p-8{padding:calc(var(--spacing)*8)}.lg\:p-20{padding:calc(var(--spacing)*20)}.lg\:px-8{padding-inline:calc(var(--spacing)*8)}.lg\:py-1\.5{padding-block:calc(var(--spacing)*1.5)}.lg\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}@media(min-width:80rem){.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.xl\:flex-row{flex-direction:row}.xl\:items-end{align-items:flex-end}.xl\:justify-between{justify-content:space-between}.xl\:px-8{padding-inline:calc(var(--spacing)*8)}}@media(min-width:96rem){.\32xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.\32xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}}@container not (min-width:28rem){.\@max-md\:py-2{padding-block:calc(var(--spacing)*2)}}@container (min-width:28rem){.\@md\:m-\[-2px\]{margin:-2px}.\@md\:flex{display:flex}.\@md\:flex-row-reverse{flex-direction:row-reverse}.\@md\:justify-end{justify-content:flex-end}.\@md\:ps-4{padding-inline-start:calc(var(--spacing)*4)}.\@md\:pe-4{padding-inline-end:calc(var(--spacing)*4)}}@container (min-width:40rem){.\@\[40rem\]\:flex{display:flex}.\@\[40rem\]\:hidden{display:none}}.rtl\:mr-0:where(:dir(rtl),[dir=rtl],[dir=rtl] *){margin-right:calc(var(--spacing)*0)}.rtl\:mr-auto:where(:dir(rtl),[dir=rtl],[dir=rtl] *){margin-right:auto}.rtl\:ml-0:where(:dir(rtl),[dir=rtl],[dir=rtl] *){margin-left:calc(var(--spacing)*0)}.rtl\:ml-auto:where(:dir(rtl),[dir=rtl],[dir=rtl] *){margin-left:auto}.rtl\:block:where(:dir(rtl),[dir=rtl],[dir=rtl] *){display:block}.rtl\:hidden:where(:dir(rtl),[dir=rtl],[dir=rtl] *){display:none}.rtl\:inline:where(:dir(rtl),[dir=rtl],[dir=rtl] *){display:inline}.rtl\:-translate-x-\[0\.1875rem\]:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x: -.1875rem ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rtl\:translate-x-1\/2:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x: 50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rtl\:-scale-x-100:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-scale-x: -100% ;scale:var(--tw-scale-x)var(--tw-scale-y)}.rtl\:rotate-180:where(:dir(rtl),[dir=rtl],[dir=rtl] *){rotate:180deg}.rtl\:flex-row-reverse:where(:dir(rtl),[dir=rtl],[dir=rtl] *){flex-direction:row-reverse}.rtl\:mask-r-from-100\%:where(:dir(rtl),[dir=rtl],[dir=rtl] *){-webkit-mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);--tw-mask-linear:var(--tw-mask-left),var(--tw-mask-right),var(--tw-mask-bottom),var(--tw-mask-top);--tw-mask-right:linear-gradient(to right,var(--tw-mask-right-from-color)var(--tw-mask-right-from-position),var(--tw-mask-right-to-color)var(--tw-mask-right-to-position));--tw-mask-right-from-position:100%;-webkit-mask-composite:source-in;mask-composite:intersect}.rtl\:mask-l-from-\[max\(calc\(100\%-6rem\)\,var\(--flux-scroll-percentage\)\)\]:where(:dir(rtl),[dir=rtl],[dir=rtl] *){-webkit-mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);mask-image:var(--tw-mask-linear),var(--tw-mask-radial),var(--tw-mask-conic);--tw-mask-linear:var(--tw-mask-left),var(--tw-mask-right),var(--tw-mask-bottom),var(--tw-mask-top);--tw-mask-left:linear-gradient(to left,var(--tw-mask-left-from-color)var(--tw-mask-left-from-position),var(--tw-mask-left-to-color)var(--tw-mask-left-to-position));--tw-mask-left-from-position:max( calc(100% - 6rem) ,var(--flux-scroll-percentage));-webkit-mask-composite:source-in;mask-composite:intersect}.rtl\:bg-position-\[left_\.25rem_center\]\!:where(:dir(rtl),[dir=rtl],[dir=rtl] *){background-position:.25rem!important}.rtl\:text-right:where(:dir(rtl),[dir=rtl],[dir=rtl] *){text-align:right}.rtl\:\[--flux-flyout-translate\:translateX\(-50px\)\]:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--flux-flyout-translate:translateX(-50px)}.rtl\:\[--flux-flyout-translate\:translateX\(50px\)\]:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--flux-flyout-translate:translateX(50px)}.rtl\:group-data-checked\:-translate-x-\[0\.9375rem\]:where(:dir(rtl),[dir=rtl],[dir=rtl] *):is(:where(.group)[data-checked] *){--tw-translate-x: -.9375rem ;translate:var(--tw-translate-x)var(--tw-translate-y)}:where([data-flux-sidebar-collapsed-desktop]) .rtl\:in-data-flux-sidebar-collapsed-desktop\:cursor-w-resize:where(:dir(rtl),[dir=rtl],[dir=rtl] *),.rtl\:data-flux-sidebar-collapsed-desktop\:cursor-w-resize:where(:dir(rtl),[dir=rtl],[dir=rtl] *)[data-flux-sidebar-collapsed-desktop]{cursor:w-resize}.data-flux-sidebar-on-mobile\:data-flux-sidebar-collapsed-mobile\:rtl\:translate-x-full[data-flux-sidebar-on-mobile][data-flux-sidebar-collapsed-mobile]:where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x:100%;translate:var(--tw-translate-x)var(--tw-translate-y)}.dark\:block:where(.dark,.dark *){display:block}.dark\:hidden:where(.dark,.dark *){display:none}.dark\:translate-x-\[0\.125rem\]:where(.dark,.dark *){--tw-translate-x:.125rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.dark\:border:where(.dark,.dark *){border-style:var(--tw-border-style);border-width:1px}.dark\:border-0:where(.dark,.dark *){border-style:var(--tw-border-style);border-width:0}.dark\:border-\[\#3E3E3A\]:where(.dark,.dark *){border-color:#3e3e3a}.dark\:border-\[\#eeeeec\]:where(.dark,.dark *){border-color:#eeeeec}.dark\:border-gray-600:where(.dark,.dark *){border-color:var(--color-gray-600)}.dark\:border-gray-700:where(.dark,.dark *){border-color:var(--color-gray-700)}.dark\:border-white\/5:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.dark\:border-white\/5:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.dark\:border-white\/10:where(.dark,.dark *){border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:border-white\/10:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:border-white\/20:where(.dark,.dark *){border-color:#fff3}@supports (color:color-mix(in lab,red,red)){.dark\:border-white\/20:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.dark\:border-zinc-500:where(.dark,.dark *){border-color:var(--color-zinc-500)}.dark\:border-zinc-600:where(.dark,.dark *){border-color:var(--color-zinc-600)}.dark\:border-zinc-700:where(.dark,.dark *){border-color:var(--color-zinc-700)}.dark\:bg-\[\#0a0a0a\]:where(.dark,.dark *){background-color:#0a0a0a}.dark\:bg-\[\#1D0002\]:where(.dark,.dark *){background-color:#1d0002}.dark\:bg-\[\#3E3E3A\]:where(.dark,.dark *){background-color:#3e3e3a}.dark\:bg-\[\#161615\]:where(.dark,.dark *){background-color:#161615}.dark\:bg-\[\#eeeeec\]:where(.dark,.dark *){background-color:#eeeeec}.dark\:bg-amber-400:where(.dark,.dark *){background-color:var(--color-amber-400)}.dark\:bg-amber-400\/40:where(.dark,.dark *){background-color:#fcbb0066}@supports (color:color-mix(in lab,red,red)){.dark\:bg-amber-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-amber-400)40%,transparent)}}.dark\:bg-amber-500:where(.dark,.dark *){background-color:var(--color-amber-500)}.dark\:bg-blue-400:where(.dark,.dark *){background-color:var(--color-blue-400)}.dark\:bg-blue-400\/40:where(.dark,.dark *){background-color:#54a2ff66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-blue-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-blue-400)40%,transparent)}}.dark\:bg-blue-600:where(.dark,.dark *){background-color:var(--color-blue-600)}.dark\:bg-cyan-400:where(.dark,.dark *){background-color:var(--color-cyan-400)}.dark\:bg-cyan-400\/40:where(.dark,.dark *){background-color:#00d2ef66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-cyan-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-cyan-400)40%,transparent)}}.dark\:bg-cyan-600:where(.dark,.dark *){background-color:var(--color-cyan-600)}.dark\:bg-emerald-400:where(.dark,.dark *){background-color:var(--color-emerald-400)}.dark\:bg-emerald-400\/40:where(.dark,.dark *){background-color:#00d29466}@supports (color:color-mix(in lab,red,red)){.dark\:bg-emerald-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-emerald-400)40%,transparent)}}.dark\:bg-emerald-600:where(.dark,.dark *){background-color:var(--color-emerald-600)}.dark\:bg-fuchsia-400:where(.dark,.dark *){background-color:var(--color-fuchsia-400)}.dark\:bg-fuchsia-400\/40:where(.dark,.dark *){background-color:#ec6cff66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-fuchsia-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-fuchsia-400)40%,transparent)}}.dark\:bg-fuchsia-600:where(.dark,.dark *){background-color:var(--color-fuchsia-600)}.dark\:bg-gray-700:where(.dark,.dark *){background-color:var(--color-gray-700)}.dark\:bg-gray-800:where(.dark,.dark *){background-color:var(--color-gray-800)}.dark\:bg-gray-900:where(.dark,.dark *){background-color:var(--color-gray-900)}.dark\:bg-gray-900\/80:where(.dark,.dark *){background-color:#101828cc}@supports (color:color-mix(in lab,red,red)){.dark\:bg-gray-900\/80:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-gray-900)80%,transparent)}}.dark\:bg-gray-950\/40:where(.dark,.dark *){background-color:#03071266}@supports (color:color-mix(in lab,red,red)){.dark\:bg-gray-950\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-gray-950)40%,transparent)}}.dark\:bg-green-400:where(.dark,.dark *){background-color:var(--color-green-400)}.dark\:bg-green-400\/40:where(.dark,.dark *){background-color:#05df7266}@supports (color:color-mix(in lab,red,red)){.dark\:bg-green-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-green-400)40%,transparent)}}.dark\:bg-green-600:where(.dark,.dark *){background-color:var(--color-green-600)}.dark\:bg-indigo-400:where(.dark,.dark *){background-color:var(--color-indigo-400)}.dark\:bg-indigo-400\/40:where(.dark,.dark *){background-color:#7d87ff66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-indigo-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-indigo-400)40%,transparent)}}.dark\:bg-indigo-600:where(.dark,.dark *){background-color:var(--color-indigo-600)}.dark\:bg-lime-400:where(.dark,.dark *){background-color:var(--color-lime-400)}.dark\:bg-lime-400\/40:where(.dark,.dark *){background-color:#9de50066}@supports (color:color-mix(in lab,red,red)){.dark\:bg-lime-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-lime-400)40%,transparent)}}.dark\:bg-lime-600:where(.dark,.dark *){background-color:var(--color-lime-600)}.dark\:bg-orange-400:where(.dark,.dark *){background-color:var(--color-orange-400)}.dark\:bg-orange-400\/40:where(.dark,.dark *){background-color:#ff8b1a66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-orange-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-orange-400)40%,transparent)}}.dark\:bg-orange-600:where(.dark,.dark *){background-color:var(--color-orange-600)}.dark\:bg-pink-400:where(.dark,.dark *){background-color:var(--color-pink-400)}.dark\:bg-pink-400\/40:where(.dark,.dark *){background-color:#fb64b666}@supports (color:color-mix(in lab,red,red)){.dark\:bg-pink-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-pink-400)40%,transparent)}}.dark\:bg-pink-600:where(.dark,.dark *){background-color:var(--color-pink-600)}.dark\:bg-purple-400:where(.dark,.dark *){background-color:var(--color-purple-400)}.dark\:bg-purple-400\/40:where(.dark,.dark *){background-color:#c07eff66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-purple-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-purple-400)40%,transparent)}}.dark\:bg-purple-600:where(.dark,.dark *){background-color:var(--color-purple-600)}.dark\:bg-red-400:where(.dark,.dark *){background-color:var(--color-red-400)}.dark\:bg-red-400\/40:where(.dark,.dark *){background-color:#ff656866}@supports (color:color-mix(in lab,red,red)){.dark\:bg-red-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-red-400)40%,transparent)}}.dark\:bg-red-600:where(.dark,.dark *){background-color:var(--color-red-600)}.dark\:bg-rose-400:where(.dark,.dark *){background-color:var(--color-rose-400)}.dark\:bg-rose-400\/40:where(.dark,.dark *){background-color:#ff667f66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-rose-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-rose-400)40%,transparent)}}.dark\:bg-rose-600:where(.dark,.dark *){background-color:var(--color-rose-600)}.dark\:bg-sky-400:where(.dark,.dark *){background-color:var(--color-sky-400)}.dark\:bg-sky-400\/40:where(.dark,.dark *){background-color:#00bcfe66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-sky-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-sky-400)40%,transparent)}}.dark\:bg-sky-600:where(.dark,.dark *){background-color:var(--color-sky-600)}.dark\:bg-teal-400:where(.dark,.dark *){background-color:var(--color-teal-400)}.dark\:bg-teal-400\/40:where(.dark,.dark *){background-color:#00d3bd66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-teal-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-teal-400)40%,transparent)}}.dark\:bg-teal-600:where(.dark,.dark *){background-color:var(--color-teal-600)}.dark\:bg-transparent:where(.dark,.dark *){background-color:#0000}.dark\:bg-violet-400:where(.dark,.dark *){background-color:var(--color-violet-400)}.dark\:bg-violet-400\/40:where(.dark,.dark *){background-color:#a685ff66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-violet-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-violet-400)40%,transparent)}}.dark\:bg-violet-600:where(.dark,.dark *){background-color:var(--color-violet-600)}.dark\:bg-white:where(.dark,.dark *){background-color:var(--color-white)}.dark\:bg-white\/5:where(.dark,.dark *){background-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.dark\:bg-white\/5:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.dark\:bg-white\/10:where(.dark,.dark *){background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:bg-white\/10:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:bg-white\/20:where(.dark,.dark *){background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.dark\:bg-white\/20:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.dark\:bg-white\/25:where(.dark,.dark *){background-color:#ffffff40}@supports (color:color-mix(in lab,red,red)){.dark\:bg-white\/25:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)25%,transparent)}}.dark\:bg-white\/30:where(.dark,.dark *){background-color:#ffffff4d}@supports (color:color-mix(in lab,red,red)){.dark\:bg-white\/30:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)30%,transparent)}}.dark\:bg-white\/\[6\%\]:where(.dark,.dark *){background-color:#ffffff0f}@supports (color:color-mix(in lab,red,red)){.dark\:bg-white\/\[6\%\]:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)6%,transparent)}}.dark\:bg-yellow-400:where(.dark,.dark *){background-color:var(--color-yellow-400)}.dark\:bg-yellow-400\/40:where(.dark,.dark *){background-color:#fac80066}@supports (color:color-mix(in lab,red,red)){.dark\:bg-yellow-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-yellow-400)40%,transparent)}}.dark\:bg-zinc-300:where(.dark,.dark *){background-color:var(--color-zinc-300)}.dark\:bg-zinc-400:where(.dark,.dark *){background-color:var(--color-zinc-400)}.dark\:bg-zinc-400\/40:where(.dark,.dark *){background-color:#9f9fa966}@supports (color:color-mix(in lab,red,red)){.dark\:bg-zinc-400\/40:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-zinc-400)40%,transparent)}}.dark\:bg-zinc-600:where(.dark,.dark *){background-color:var(--color-zinc-600)}.dark\:bg-zinc-600\!:where(.dark,.dark *){background-color:var(--color-zinc-600)!important}.dark\:bg-zinc-700:where(.dark,.dark *){background-color:var(--color-zinc-700)}.dark\:bg-zinc-800:where(.dark,.dark *){background-color:var(--color-zinc-800)}.dark\:bg-zinc-900:where(.dark,.dark *){background-color:var(--color-zinc-900)}.dark\:bg-\[url\(\'data\:image\/svg\+xml\,\%3Csvg\%20xmlns\=\%22http\:\/\/www\.w3\.org\/2000\/svg\%22\%20viewBox\=\%220\%200\%2016\%2016\%22\%20fill\=\%22\%23ffffff75\%22\%20class\=\%22size-4\%22\%3E\%3Cpath\%20fill-rule\=\%22evenodd\%22\%20d\=\%22M4\.22\%206\.22a\.75\.75\%200\%200\%201\%201\.06\%200L8\%208\.94l2\.72-2\.72a\.75\.75\%200\%201\%201\%201\.06\%201\.06l-3\.25\%203\.25a\.75\.75\%200\%200\%201-1\.06\%200L4\.22\%207\.28a\.75\.75\%200\%200\%201\%200-1\.06Z\%22\%20clip-rule\=\%22evenodd\%22\/\%3E\%3C\/svg\%3E\'\)\]:where(.dark,.dark *){background-image:url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2016%2016%22%20fill=%22%23ffffff75%22%20class=%22size-4%22%3E%3Cpath%20fill-rule=%22evenodd%22%20d=%22M4.22%206.22a.75.75%200%200%201%201.06%200L8%208.94l2.72-2.72a.75.75%200%201%201%201.06%201.06l-3.25%203.25a.75.75%200%200%201-1.06%200L4.22%207.28a.75.75%200%200%201%200-1.06Z%22%20clip-rule=%22evenodd%22/%3E%3C/svg%3E)}.dark\:from-white\/10:where(.dark,.dark *){--tw-gradient-from:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:from-white\/10:where(.dark,.dark *){--tw-gradient-from:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:from-white\/10:where(.dark,.dark *){--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.dark\:bg-\[length\:16px_16px\]:where(.dark,.dark *){background-size:16px 16px}.dark\:text-\[\#1C1C1A\]:where(.dark,.dark *){color:#1c1c1a}.dark\:text-\[\#A1A09A\]:where(.dark,.dark *){color:#a1a09a}.dark\:text-\[\#EDEDEC\]:where(.dark,.dark *){color:#ededec}.dark\:text-\[\#F61500\]:where(.dark,.dark *){color:#f61500}.dark\:text-\[\#FF4433\]:where(.dark,.dark *){color:#f43}.dark\:text-\[var\(--callout-icon\)\]:where(.dark,.dark *){color:var(--callout-icon)}.dark\:text-amber-200:where(.dark,.dark *){color:var(--color-amber-200)}.dark\:text-amber-400:where(.dark,.dark *){color:var(--color-amber-400)}.dark\:text-amber-500:where(.dark,.dark *){color:var(--color-amber-500)}.dark\:text-blue-200:where(.dark,.dark *){color:var(--color-blue-200)}.dark\:text-blue-400:where(.dark,.dark *){color:var(--color-blue-400)}.dark\:text-cyan-200:where(.dark,.dark *){color:var(--color-cyan-200)}.dark\:text-cyan-400:where(.dark,.dark *){color:var(--color-cyan-400)}.dark\:text-emerald-200:where(.dark,.dark *){color:var(--color-emerald-200)}.dark\:text-emerald-400:where(.dark,.dark *){color:var(--color-emerald-400)}.dark\:text-fuchsia-200:where(.dark,.dark *){color:var(--color-fuchsia-200)}.dark\:text-fuchsia-400:where(.dark,.dark *){color:var(--color-fuchsia-400)}.dark\:text-gray-100:where(.dark,.dark *){color:var(--color-gray-100)}.dark\:text-gray-200:where(.dark,.dark *){color:var(--color-gray-200)}.dark\:text-gray-300:where(.dark,.dark *){color:var(--color-gray-300)}.dark\:text-gray-400:where(.dark,.dark *){color:var(--color-gray-400)}.dark\:text-gray-500:where(.dark,.dark *){color:var(--color-gray-500)}.dark\:text-gray-600:where(.dark,.dark *){color:var(--color-gray-600)}.dark\:text-green-200:where(.dark,.dark *){color:var(--color-green-200)}.dark\:text-green-500:where(.dark,.dark *){color:var(--color-green-500)}.dark\:text-indigo-200:where(.dark,.dark *){color:var(--color-indigo-200)}.dark\:text-indigo-400:where(.dark,.dark *){color:var(--color-indigo-400)}.dark\:text-lime-200:where(.dark,.dark *){color:var(--color-lime-200)}.dark\:text-lime-400:where(.dark,.dark *){color:var(--color-lime-400)}.dark\:text-lime-500:where(.dark,.dark *){color:var(--color-lime-500)}.dark\:text-orange-200:where(.dark,.dark *){color:var(--color-orange-200)}.dark\:text-orange-400:where(.dark,.dark *){color:var(--color-orange-400)}.dark\:text-pink-200:where(.dark,.dark *){color:var(--color-pink-200)}.dark\:text-pink-400:where(.dark,.dark *){color:var(--color-pink-400)}.dark\:text-purple-200:where(.dark,.dark *){color:var(--color-purple-200)}.dark\:text-purple-400:where(.dark,.dark *){color:var(--color-purple-400)}.dark\:text-red-200:where(.dark,.dark *){color:var(--color-red-200)}.dark\:text-red-400:where(.dark,.dark *){color:var(--color-red-400)}.dark\:text-rose-200:where(.dark,.dark *){color:var(--color-rose-200)}.dark\:text-rose-400:where(.dark,.dark *){color:var(--color-rose-400)}.dark\:text-sky-200:where(.dark,.dark *){color:var(--color-sky-200)}.dark\:text-sky-400:where(.dark,.dark *){color:var(--color-sky-400)}.dark\:text-teal-200:where(.dark,.dark *){color:var(--color-teal-200)}.dark\:text-teal-400:where(.dark,.dark *){color:var(--color-teal-400)}.dark\:text-violet-200:where(.dark,.dark *){color:var(--color-violet-200)}.dark\:text-violet-400:where(.dark,.dark *){color:var(--color-violet-400)}.dark\:text-white:where(.dark,.dark *){color:var(--color-white)}.dark\:text-white\!:where(.dark,.dark *){color:var(--color-white)!important}.dark\:text-white\/15:where(.dark,.dark *){color:#ffffff26}@supports (color:color-mix(in lab,red,red)){.dark\:text-white\/15:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)15%,transparent)}}.dark\:text-white\/40:where(.dark,.dark *){color:#fff6}@supports (color:color-mix(in lab,red,red)){.dark\:text-white\/40:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)40%,transparent)}}.dark\:text-white\/50:where(.dark,.dark *){color:#ffffff80}@supports (color:color-mix(in lab,red,red)){.dark\:text-white\/50:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)50%,transparent)}}.dark\:text-white\/60:where(.dark,.dark *){color:#fff9}@supports (color:color-mix(in lab,red,red)){.dark\:text-white\/60:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)60%,transparent)}}.dark\:text-white\/70:where(.dark,.dark *){color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){.dark\:text-white\/70:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)70%,transparent)}}.dark\:text-white\/80:where(.dark,.dark *){color:#fffc}@supports (color:color-mix(in lab,red,red)){.dark\:text-white\/80:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)80%,transparent)}}.dark\:text-yellow-200:where(.dark,.dark *){color:var(--color-yellow-200)}.dark\:text-yellow-500:where(.dark,.dark *){color:var(--color-yellow-500)}.dark\:text-zinc-200:where(.dark,.dark *){color:var(--color-zinc-200)}.dark\:text-zinc-300:where(.dark,.dark *){color:var(--color-zinc-300)}.dark\:text-zinc-400:where(.dark,.dark *){color:var(--color-zinc-400)}.dark\:text-zinc-500:where(.dark,.dark *){color:var(--color-zinc-500)}.dark\:text-zinc-500\!:where(.dark,.dark *){color:var(--color-zinc-500)!important}.dark\:text-zinc-800:where(.dark,.dark *){color:var(--color-zinc-800)}.dark\:text-zinc-950:where(.dark,.dark *){color:var(--color-zinc-950)}.dark\:decoration-white\/20:where(.dark,.dark *){text-decoration-color:#fff3}@supports (color:color-mix(in lab,red,red)){.dark\:decoration-white\/20:where(.dark,.dark *){-webkit-text-decoration-color:color-mix(in oklab,var(--color-white)20%,transparent);text-decoration-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.dark\:placeholder-white\/60:where(.dark,.dark *)::placeholder{color:#fff9}@supports (color:color-mix(in lab,red,red)){.dark\:placeholder-white\/60:where(.dark,.dark *)::placeholder{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.dark\:placeholder-zinc-400:where(.dark,.dark *)::placeholder{color:var(--color-zinc-400)}.dark\:shadow-\[inset_0px_0px_0px_1px_\#fffaed2d\]:where(.dark,.dark *){--tw-shadow:inset 0px 0px 0px 1px var(--tw-shadow-color,#fffaed2d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark\:shadow-none:where(.dark,.dark *){--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark\:ring-black\/30:where(.dark,.dark *){--tw-ring-color:#0000004d}@supports (color:color-mix(in lab,red,red)){.dark\:ring-black\/30:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab,var(--color-black)30%,transparent)}}.dark\:ring-gray-600:where(.dark,.dark *){--tw-ring-color:var(--color-gray-600)}.dark\:ring-gray-700:where(.dark,.dark *){--tw-ring-color:var(--color-gray-700)}.dark\:ring-zinc-700:where(.dark,.dark *){--tw-ring-color:var(--color-zinc-700)}.dark\:ring-zinc-900:where(.dark,.dark *){--tw-ring-color:var(--color-zinc-900)}.dark\:ring-offset-gray-900:where(.dark,.dark *){--tw-ring-offset-color:var(--color-gray-900)}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-amber-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#fcbb001a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-amber-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-amber-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-blue-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#54a2ff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-blue-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-blue-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-cyan-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#00d2ef1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-cyan-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-cyan-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-emerald-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#00d2941a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-emerald-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-emerald-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-fuchsia-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#ec6cff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-fuchsia-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-fuchsia-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-green-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#05df721a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-green-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-green-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-indigo-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#7d87ff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-indigo-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-indigo-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-lime-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#9de5001a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-lime-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-lime-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-orange-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#ff8b1a1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-orange-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-orange-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-pink-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#fb64b61a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-pink-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-pink-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-purple-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#c07eff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-purple-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-purple-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-red-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#ff65681a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-red-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-red-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-rose-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#ff667f1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-rose-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-rose-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-sky-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#00bcfe1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-sky-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-sky-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-teal-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#00d3bd1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-teal-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-teal-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-violet-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#a685ff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-violet-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-violet-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-yellow-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#fac8001a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-yellow-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-yellow-400),transparent 90%)}}.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-zinc-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:#9f9fa91a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-background\:color-mix\(in_oklab\,var\(--color-zinc-400\)\,transparent_90\%\)\]:where(.dark,.dark *){--callout-background:color-mix(in oklab,var(--color-zinc-400),transparent 90%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-amber-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#fcbb0080}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-amber-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-amber-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-blue-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#54a2ff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-blue-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-blue-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-cyan-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#00d2ef80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-cyan-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-cyan-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-emerald-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#00d29480}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-emerald-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-emerald-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-fuchsia-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#ec6cff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-fuchsia-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-fuchsia-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-green-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#05df7280}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-green-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-green-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-indigo-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#7d87ff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-indigo-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-indigo-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-lime-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#9de50080}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-lime-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-lime-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-orange-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#ff8b1a80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-orange-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-orange-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-pink-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#fb64b680}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-pink-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-pink-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-purple-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#c07eff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-purple-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-purple-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-red-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#ff656880}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-red-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-red-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-rose-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#ff667f80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-rose-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-rose-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-sky-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#00bcfe80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-sky-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-sky-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-teal-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#00d3bd80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-teal-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-teal-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-violet-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#a685ff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-violet-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-violet-400),transparent 50%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-white\)\,transparent_95\%\)\]:where(.dark,.dark *){--callout-border:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-white\)\,transparent_95\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-white),transparent 95%)}}.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-yellow-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:#fac80080}@supports (color:color-mix(in lab,red,red)){.dark\:\[--callout-border\:color-mix\(in_oklab\,var\(--color-yellow-400\)\,transparent_50\%\)\]:where(.dark,.dark *){--callout-border:color-mix(in oklab,var(--color-yellow-400),transparent 50%)}}.dark\:\[--callout-heading\:var\(--color-amber-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-amber-200)}.dark\:\[--callout-heading\:var\(--color-blue-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-blue-200)}.dark\:\[--callout-heading\:var\(--color-cyan-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-cyan-200)}.dark\:\[--callout-heading\:var\(--color-emerald-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-emerald-200)}.dark\:\[--callout-heading\:var\(--color-fuchsia-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-fuchsia-200)}.dark\:\[--callout-heading\:var\(--color-green-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-green-200)}.dark\:\[--callout-heading\:var\(--color-indigo-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-indigo-200)}.dark\:\[--callout-heading\:var\(--color-lime-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-lime-200)}.dark\:\[--callout-heading\:var\(--color-orange-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-orange-200)}.dark\:\[--callout-heading\:var\(--color-pink-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-pink-200)}.dark\:\[--callout-heading\:var\(--color-purple-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-purple-200)}.dark\:\[--callout-heading\:var\(--color-red-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-red-200)}.dark\:\[--callout-heading\:var\(--color-rose-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-rose-200)}.dark\:\[--callout-heading\:var\(--color-sky-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-sky-200)}.dark\:\[--callout-heading\:var\(--color-teal-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-teal-200)}.dark\:\[--callout-heading\:var\(--color-violet-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-violet-200)}.dark\:\[--callout-heading\:var\(--color-yellow-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-yellow-200)}.dark\:\[--callout-heading\:var\(--color-zinc-200\)\]:where(.dark,.dark *){--callout-heading:var(--color-zinc-200)}.dark\:\[--callout-icon\:var\(--color-amber-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-amber-400)}.dark\:\[--callout-icon\:var\(--color-blue-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-blue-400)}.dark\:\[--callout-icon\:var\(--color-cyan-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-cyan-400)}.dark\:\[--callout-icon\:var\(--color-emerald-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-emerald-400)}.dark\:\[--callout-icon\:var\(--color-fuchsia-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-fuchsia-400)}.dark\:\[--callout-icon\:var\(--color-green-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-green-400)}.dark\:\[--callout-icon\:var\(--color-indigo-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-indigo-400)}.dark\:\[--callout-icon\:var\(--color-lime-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-lime-400)}.dark\:\[--callout-icon\:var\(--color-orange-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-orange-400)}.dark\:\[--callout-icon\:var\(--color-pink-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-pink-400)}.dark\:\[--callout-icon\:var\(--color-purple-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-purple-400)}.dark\:\[--callout-icon\:var\(--color-red-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-red-400)}.dark\:\[--callout-icon\:var\(--color-rose-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-rose-400)}.dark\:\[--callout-icon\:var\(--color-sky-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-sky-400)}.dark\:\[--callout-icon\:var\(--color-teal-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-teal-400)}.dark\:\[--callout-icon\:var\(--color-violet-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-violet-400)}.dark\:\[--callout-icon\:var\(--color-yellow-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-yellow-400)}.dark\:\[--callout-icon\:var\(--color-zinc-400\)\]:where(.dark,.dark *){--callout-icon:var(--color-zinc-400)}.dark\:\[--callout-text\:var\(--color-amber-300\)\]:where(.dark,.dark *){--callout-text:var(--color-amber-300)}.dark\:\[--callout-text\:var\(--color-blue-300\)\]:where(.dark,.dark *){--callout-text:var(--color-blue-300)}.dark\:\[--callout-text\:var\(--color-cyan-300\)\]:where(.dark,.dark *){--callout-text:var(--color-cyan-300)}.dark\:\[--callout-text\:var\(--color-emerald-300\)\]:where(.dark,.dark *){--callout-text:var(--color-emerald-300)}.dark\:\[--callout-text\:var\(--color-fuchsia-300\)\]:where(.dark,.dark *){--callout-text:var(--color-fuchsia-300)}.dark\:\[--callout-text\:var\(--color-green-300\)\]:where(.dark,.dark *){--callout-text:var(--color-green-300)}.dark\:\[--callout-text\:var\(--color-indigo-300\)\]:where(.dark,.dark *){--callout-text:var(--color-indigo-300)}.dark\:\[--callout-text\:var\(--color-lime-300\)\]:where(.dark,.dark *){--callout-text:var(--color-lime-300)}.dark\:\[--callout-text\:var\(--color-orange-300\)\]:where(.dark,.dark *){--callout-text:var(--color-orange-300)}.dark\:\[--callout-text\:var\(--color-pink-300\)\]:where(.dark,.dark *){--callout-text:var(--color-pink-300)}.dark\:\[--callout-text\:var\(--color-purple-300\)\]:where(.dark,.dark *){--callout-text:var(--color-purple-300)}.dark\:\[--callout-text\:var\(--color-red-300\)\]:where(.dark,.dark *){--callout-text:var(--color-red-300)}.dark\:\[--callout-text\:var\(--color-rose-300\)\]:where(.dark,.dark *){--callout-text:var(--color-rose-300)}.dark\:\[--callout-text\:var\(--color-sky-300\)\]:where(.dark,.dark *){--callout-text:var(--color-sky-300)}.dark\:\[--callout-text\:var\(--color-teal-300\)\]:where(.dark,.dark *){--callout-text:var(--color-teal-300)}.dark\:\[--callout-text\:var\(--color-violet-300\)\]:where(.dark,.dark *){--callout-text:var(--color-violet-300)}.dark\:\[--callout-text\:var\(--color-yellow-300\)\]:where(.dark,.dark *){--callout-text:var(--color-yellow-300)}.dark\:\[--callout-text\:var\(--color-zinc-300\)\]:where(.dark,.dark *){--callout-text:var(--color-zinc-300)}.dark\:\[--color-accent-content\:var\(--color-amber-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-amber-400)}.dark\:\[--color-accent-content\:var\(--color-blue-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-blue-400)}.dark\:\[--color-accent-content\:var\(--color-cyan-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-cyan-400)}.dark\:\[--color-accent-content\:var\(--color-emerald-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-emerald-400)}.dark\:\[--color-accent-content\:var\(--color-fuchsia-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-fuchsia-400)}.dark\:\[--color-accent-content\:var\(--color-green-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-green-400)}.dark\:\[--color-accent-content\:var\(--color-indigo-300\)\]:where(.dark,.dark *){--color-accent-content:var(--color-indigo-300)}.dark\:\[--color-accent-content\:var\(--color-lime-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-lime-400)}.dark\:\[--color-accent-content\:var\(--color-orange-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-orange-400)}.dark\:\[--color-accent-content\:var\(--color-pink-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-pink-400)}.dark\:\[--color-accent-content\:var\(--color-purple-300\)\]:where(.dark,.dark *){--color-accent-content:var(--color-purple-300)}.dark\:\[--color-accent-content\:var\(--color-red-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-red-400)}.dark\:\[--color-accent-content\:var\(--color-rose-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-rose-400)}.dark\:\[--color-accent-content\:var\(--color-sky-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-sky-400)}.dark\:\[--color-accent-content\:var\(--color-teal-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-teal-400)}.dark\:\[--color-accent-content\:var\(--color-violet-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-violet-400)}.dark\:\[--color-accent-content\:var\(--color-white\)\]:where(.dark,.dark *){--color-accent-content:var(--color-white)}.dark\:\[--color-accent-content\:var\(--color-yellow-400\)\]:where(.dark,.dark *){--color-accent-content:var(--color-yellow-400)}.dark\:\[--color-accent-foreground\:var\(--color-amber-950\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-amber-950)}.dark\:\[--color-accent-foreground\:var\(--color-gray-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-gray-800)}.dark\:\[--color-accent-foreground\:var\(--color-lime-950\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-lime-950)}.dark\:\[--color-accent-foreground\:var\(--color-mauve-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-mauve-800)}.dark\:\[--color-accent-foreground\:var\(--color-mist-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-mist-800)}.dark\:\[--color-accent-foreground\:var\(--color-neutral-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-neutral-800)}.dark\:\[--color-accent-foreground\:var\(--color-olive-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-olive-800)}.dark\:\[--color-accent-foreground\:var\(--color-orange-950\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-orange-950)}.dark\:\[--color-accent-foreground\:var\(--color-slate-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-slate-800)}.dark\:\[--color-accent-foreground\:var\(--color-stone-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-stone-800)}.dark\:\[--color-accent-foreground\:var\(--color-taupe-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-taupe-800)}.dark\:\[--color-accent-foreground\:var\(--color-white\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-white)}.dark\:\[--color-accent-foreground\:var\(--color-yellow-950\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-yellow-950)}.dark\:\[--color-accent-foreground\:var\(--color-zinc-800\)\]:where(.dark,.dark *){--color-accent-foreground:var(--color-zinc-800)}.dark\:\[--color-accent\:var\(--color-amber-400\)\]:where(.dark,.dark *){--color-accent:var(--color-amber-400)}.dark\:\[--color-accent\:var\(--color-blue-500\)\]:where(.dark,.dark *){--color-accent:var(--color-blue-500)}.dark\:\[--color-accent\:var\(--color-cyan-600\)\]:where(.dark,.dark *){--color-accent:var(--color-cyan-600)}.dark\:\[--color-accent\:var\(--color-emerald-600\)\]:where(.dark,.dark *){--color-accent:var(--color-emerald-600)}.dark\:\[--color-accent\:var\(--color-fuchsia-600\)\]:where(.dark,.dark *){--color-accent:var(--color-fuchsia-600)}.dark\:\[--color-accent\:var\(--color-green-600\)\]:where(.dark,.dark *){--color-accent:var(--color-green-600)}.dark\:\[--color-accent\:var\(--color-indigo-500\)\]:where(.dark,.dark *){--color-accent:var(--color-indigo-500)}.dark\:\[--color-accent\:var\(--color-lime-400\)\]:where(.dark,.dark *){--color-accent:var(--color-lime-400)}.dark\:\[--color-accent\:var\(--color-orange-400\)\]:where(.dark,.dark *){--color-accent:var(--color-orange-400)}.dark\:\[--color-accent\:var\(--color-pink-600\)\]:where(.dark,.dark *){--color-accent:var(--color-pink-600)}.dark\:\[--color-accent\:var\(--color-purple-500\)\]:where(.dark,.dark *){--color-accent:var(--color-purple-500)}.dark\:\[--color-accent\:var\(--color-red-500\)\]:where(.dark,.dark *){--color-accent:var(--color-red-500)}.dark\:\[--color-accent\:var\(--color-rose-500\)\]:where(.dark,.dark *){--color-accent:var(--color-rose-500)}.dark\:\[--color-accent\:var\(--color-sky-600\)\]:where(.dark,.dark *){--color-accent:var(--color-sky-600)}.dark\:\[--color-accent\:var\(--color-teal-600\)\]:where(.dark,.dark *){--color-accent:var(--color-teal-600)}.dark\:\[--color-accent\:var\(--color-violet-500\)\]:where(.dark,.dark *){--color-accent:var(--color-violet-500)}.dark\:\[--color-accent\:var\(--color-white\)\]:where(.dark,.dark *){--color-accent:var(--color-white)}.dark\:\[--color-accent\:var\(--color-yellow-400\)\]:where(.dark,.dark *){--color-accent:var(--color-yellow-400)}.dark\:\[--haze\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_90\%\)\]:where(.dark,.dark *){--haze:#27272a1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[--haze\:color-mix\(in_oklab\,_var\(--color-accent-content\)\,_transparent_90\%\)\]:where(.dark,.dark *){--haze:color-mix(in oklab,var(--color-accent-content),transparent 90%)}}:is(.dark\:\*\:bg-zinc-700:where(.dark,.dark *)>*){background-color:var(--color-zinc-700)}:is(.\*\*\:dark\:ring-zinc-900 *):where(.dark,.dark *){--tw-ring-color:var(--color-zinc-900)}@media(hover:hover){.dark\:group-hover\:text-white:where(.dark,.dark *):is(:where(.group):hover *),.dark\:group-hover\/accordion-heading\:text-white:where(.dark,.dark *):is(:where(.group\/accordion-heading):hover *),.dark\:group-hover\/sortable\:text-white:where(.dark,.dark *):is(:where(.group\/sortable):hover *){color:var(--color-white)}}.dark\:group-data-active\/item\:text-white:where(.dark,.dark *):is(:where(.group\/item)[data-active] *){color:var(--color-white)}.dark\:group-data-checked\:translate-x-\[0\.9375rem\]:where(.dark,.dark *):is(:where(.group)[data-checked] *){--tw-translate-x:.9375rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.dark\:before\:border-\[\#3E3E3A\]:where(.dark,.dark *):before{content:var(--tw-content);border-color:#3e3e3a}.dark\:before\:via-\[var\(--flux-shimmer-color\)\]\/50:where(.dark,.dark *):before{content:var(--tw-content);--tw-gradient-via:var(--flux-shimmer-color)}@supports (color:color-mix(in lab,red,red)){.dark\:before\:via-\[var\(--flux-shimmer-color\)\]\/50:where(.dark,.dark *):before{--tw-gradient-via:color-mix(in oklab,var(--flux-shimmer-color)50%,transparent)}}.dark\:before\:via-\[var\(--flux-shimmer-color\)\]\/50:where(.dark,.dark *):before{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.dark\:after\:bg-zinc-900:where(.dark,.dark *):after{content:var(--tw-content);background-color:var(--color-zinc-900)}.dark\:after\:inset-ring-white\/10:where(.dark,.dark *):after{content:var(--tw-content);--tw-inset-ring-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:after\:inset-ring-white\/10:where(.dark,.dark *):after{--tw-inset-ring-color:color-mix(in oklab,var(--color-white)10%,transparent)}}@media(hover:hover){.dark\:hover\:border-\[\#3E3E3A\]:where(.dark,.dark *):hover{border-color:#3e3e3a}.dark\:hover\:border-\[\#62605b\]:where(.dark,.dark *):hover{border-color:#62605b}.dark\:hover\:border-white:where(.dark,.dark *):hover{border-color:var(--color-white)}.dark\:hover\:border-white\/10:where(.dark,.dark *):hover{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:border-white\/10:where(.dark,.dark *):hover{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:hover\:border-zinc-500:where(.dark,.dark *):hover{border-color:var(--color-zinc-500)}.dark\:hover\:border-zinc-600:where(.dark,.dark *):hover{border-color:var(--color-zinc-600)}.dark\:hover\:bg-gray-900:where(.dark,.dark *):hover{background-color:var(--color-gray-900)}.dark\:hover\:bg-red-400\/20:where(.dark,.dark *):hover{background-color:#ff656833}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-red-400\/20:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-red-400)20%,transparent)}}.dark\:hover\:bg-red-500:where(.dark,.dark *):hover{background-color:var(--color-red-500)}.dark\:hover\:bg-white:where(.dark,.dark *):hover{background-color:var(--color-white)}.dark\:hover\:bg-white\/5:where(.dark,.dark *):hover{background-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-white\/5:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.dark\:hover\:bg-white\/10:where(.dark,.dark *):hover{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-white\/10:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:hover\:bg-white\/15:where(.dark,.dark *):hover{background-color:#ffffff26}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-white\/15:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)15%,transparent)}}.dark\:hover\:bg-white\/20:where(.dark,.dark *):hover{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-white\/20:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.dark\:hover\:bg-white\/\[7\%\]:where(.dark,.dark *):hover{background-color:#ffffff12}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-white\/\[7\%\]:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)7%,transparent)}}.dark\:hover\:bg-zinc-600:where(.dark,.dark *):hover{background-color:var(--color-zinc-600)}.dark\:hover\:bg-zinc-600\/75:where(.dark,.dark *):hover{background-color:#52525cbf}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-zinc-600\/75:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-zinc-600)75%,transparent)}}.dark\:hover\:bg-zinc-700:where(.dark,.dark *):hover{background-color:var(--color-zinc-700)}.dark\:hover\:bg-\[url\(\'data\:image\/svg\+xml\,\%3Csvg\%20xmlns\=\%22http\:\/\/www\.w3\.org\/2000\/svg\%22\%20viewBox\=\%220\%200\%2016\%2016\%22\%20fill\=\%22\%23ffffff\%22\%20class\=\%22size-4\%22\%3E\%3Cpath\%20fill-rule\=\%22evenodd\%22\%20d\=\%22M4\.22\%206\.22a\.75\.75\%200\%200\%201\%201\.06\%200L8\%208\.94l2\.72-2\.72a\.75\.75\%200\%201\%201\%201\.06\%201\.06l-3\.25\%203\.25a\.75\.75\%200\%200\%201-1\.06\%200L4\.22\%207\.28a\.75\.75\%200\%200\%201\%200-1\.06Z\%22\%20clip-rule\=\%22evenodd\%22\/\%3E\%3C\/svg\%3E\'\)\]:where(.dark,.dark *):hover{background-image:url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2016%2016%22%20fill=%22%23ffffff%22%20class=%22size-4%22%3E%3Cpath%20fill-rule=%22evenodd%22%20d=%22M4.22%206.22a.75.75%200%200%201%201.06%200L8%208.94l2.72-2.72a.75.75%200%201%201%201.06%201.06l-3.25%203.25a.75.75%200%200%201-1.06%200L4.22%207.28a.75.75%200%200%201%200-1.06Z%22%20clip-rule=%22evenodd%22/%3E%3C/svg%3E)}.dark\:hover\:bg-\[length\:16px_16px\]:where(.dark,.dark *):hover{background-size:16px 16px}.dark\:hover\:text-gray-200:where(.dark,.dark *):hover{color:var(--color-gray-200)}.dark\:hover\:text-gray-300:where(.dark,.dark *):hover{color:var(--color-gray-300)}.dark\:hover\:text-red-400:where(.dark,.dark *):hover{color:var(--color-red-400)}.dark\:hover\:text-white:where(.dark,.dark *):hover{color:var(--color-white)}.dark\:hover\:text-white\!:where(.dark,.dark *):hover{color:var(--color-white)!important}.dark\:hover\:text-zinc-200:where(.dark,.dark *):hover{color:var(--color-zinc-200)}.dark\:hover\:ring-zinc-600:where(.dark,.dark *):hover{--tw-ring-color:var(--color-zinc-600)}.dark\:hover\:after\:bg-white\/\[4\%\]:where(.dark,.dark *):hover:after{content:var(--tw-content);background-color:#ffffff0a}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:after\:bg-white\/\[4\%\]:where(.dark,.dark *):hover:after{background-color:color-mix(in oklab,var(--color-white)4%,transparent)}}}.dark\:focus\:border-blue-700:where(.dark,.dark *):focus{border-color:var(--color-blue-700)}.dark\:focus\:border-blue-800:where(.dark,.dark *):focus{border-color:var(--color-blue-800)}.dark\:focus\:border-zinc-600:where(.dark,.dark *):focus{border-color:var(--color-zinc-600)}.dark\:focus\:text-white:where(.dark,.dark *):focus{color:var(--color-white)}.dark\:active\:bg-gray-700:where(.dark,.dark *):active{background-color:var(--color-gray-700)}.dark\:active\:text-gray-300:where(.dark,.dark *):active{color:var(--color-gray-300)}.dark\:disabled\:border-white\/5:where(.dark,.dark *):disabled{border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.dark\:disabled\:border-white\/5:where(.dark,.dark *):disabled{border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.dark\:disabled\:bg-white\/\[7\%\]:where(.dark,.dark *):disabled{background-color:#ffffff12}@supports (color:color-mix(in lab,red,red)){.dark\:disabled\:bg-white\/\[7\%\]:where(.dark,.dark *):disabled{background-color:color-mix(in oklab,var(--color-white)7%,transparent)}}.dark\:disabled\:bg-white\/\[9\%\]:where(.dark,.dark *):disabled{background-color:#ffffff17}@supports (color:color-mix(in lab,red,red)){.dark\:disabled\:bg-white\/\[9\%\]:where(.dark,.dark *):disabled{background-color:color-mix(in oklab,var(--color-white)9%,transparent)}}.dark\:disabled\:text-zinc-400:where(.dark,.dark *):disabled{color:var(--color-zinc-400)}.dark\:disabled\:placeholder-white\/40:where(.dark,.dark *):disabled::placeholder{color:#fff6}@supports (color:color-mix(in lab,red,red)){.dark\:disabled\:placeholder-white\/40:where(.dark,.dark *):disabled::placeholder{color:color-mix(in oklab,var(--color-white)40%,transparent)}}.dark\:disabled\:placeholder-zinc-500:where(.dark,.dark *):disabled::placeholder{color:var(--color-zinc-500)}.dark\:disabled\:opacity-75:where(.dark,.dark *):disabled{opacity:.75}.dark\:disabled\:shadow-none\!:where(.dark,.dark *):disabled{--tw-shadow:0 0 #0000!important;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)!important}:where([data-checked]) .dark\:in-data-checked\:text-white:where(.dark,.dark *){color:var(--color-white)}:where([data-dragging]) .dark\:in-data-dragging\:border-white\/20:where(.dark,.dark *){border-color:#fff3}@supports (color:color-mix(in lab,red,red)){:where([data-dragging]) .dark\:in-data-dragging\:border-white\/20:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}:where([data-dragging]) .dark\:in-data-dragging\:bg-white\/15:where(.dark,.dark *){background-color:#ffffff26}@supports (color:color-mix(in lab,red,red)){:where([data-dragging]) .dark\:in-data-dragging\:bg-white\/15:where(.dark,.dark *){background-color:color-mix(in oklab,var(--color-white)15%,transparent)}}:where([data-dragging]) .dark\:in-data-dragging\:text-white:where(.dark,.dark *),:where([data-flux-menu]) .in-data-flux-menu\:dark\:text-white:where(.dark,.dark *){color:var(--color-white)}:where([data-flux-menu]) .in-data-flux-menu\:dark\:text-white\/80:where(.dark,.dark *){color:#fffc}@supports (color:color-mix(in lab,red,red)){:where([data-flux-menu]) .in-data-flux-menu\:dark\:text-white\/80:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)80%,transparent)}}@media(hover:hover){:where([data-flux-menu]) .dark\:in-data-flux-menu\:hover\:bg-zinc-600:where(.dark,.dark *):hover{background-color:var(--color-zinc-600)}}:where([data-flux-sidebar-group-dropdown]) .dark\:in-data-flux-sidebar-group-dropdown\:bg-transparent\!:where(.dark,.dark *){background-color:#0000!important}:where([data-flux-sidebar-group-dropdown]) .dark\:in-data-flux-sidebar-group-dropdown\:text-white\!:where(.dark,.dark *){color:var(--color-white)!important}:where([data-flux-sidebar-group-dropdown]) .dark\:in-data-flux-sidebar-group-dropdown\:text-white\/80\!:where(.dark,.dark *){color:#fffc!important}@supports (color:color-mix(in lab,red,red)){:where([data-flux-sidebar-group-dropdown]) .dark\:in-data-flux-sidebar-group-dropdown\:text-white\/80\!:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)80%,transparent)!important}}@media(hover:hover){:where([data-flux-sidebar-group-dropdown]) .dark\:in-data-flux-sidebar-group-dropdown\:hover\:bg-zinc-600\!:where(.dark,.dark *):hover{background-color:var(--color-zinc-600)!important}}:where([data-flux-timeline-size=lg]) .dark\:in-data-\[flux-timeline-size\=lg\]\:text-white:where(.dark,.dark *){color:var(--color-white)}.dark\:has-\[option\.placeholder\:checked\]\:text-zinc-400:where(.dark,.dark *):has(:is(option.placeholder:checked)){color:var(--color-zinc-400)}.dark\:data-active\:bg-red-400\/20:where(.dark,.dark *)[data-active]{background-color:#ff656833}@supports (color:color-mix(in lab,red,red)){.dark\:data-active\:bg-red-400\/20:where(.dark,.dark *)[data-active]{background-color:color-mix(in oklab,var(--color-red-400)20%,transparent)}}.dark\:data-active\:bg-zinc-600:where(.dark,.dark *)[data-active]{background-color:var(--color-zinc-600)}.dark\:data-active\:text-red-400:where(.dark,.dark *)[data-active]{color:var(--color-red-400)}.dark\:data-active\:text-white:where(.dark,.dark *)[data-active]{color:var(--color-white)}.dark\:data-checked\:border-white:where(.dark,.dark *)[data-checked]{border-color:var(--color-white)}.dark\:data-checked\:bg-white:where(.dark,.dark *)[data-checked]{background-color:var(--color-white)}.dark\:data-checked\:bg-white\/15:where(.dark,.dark *)[data-checked]{background-color:#ffffff26}@supports (color:color-mix(in lab,red,red)){.dark\:data-checked\:bg-white\/15:where(.dark,.dark *)[data-checked]{background-color:color-mix(in oklab,var(--color-white)15%,transparent)}}.dark\:data-checked\:bg-white\/20:where(.dark,.dark *)[data-checked]{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.dark\:data-checked\:bg-white\/20:where(.dark,.dark *)[data-checked]{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.dark\:data-checked\:text-white:where(.dark,.dark *)[data-checked]{color:var(--color-white)}.dark\:data-checked\:text-zinc-800:where(.dark,.dark *)[data-checked]{color:var(--color-zinc-800)}.dark\:data-current\:border-transparent:where(.dark,.dark *)[data-current]{border-color:#0000}.dark\:data-current\:border-white\/10:where(.dark,.dark *)[data-current]{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:data-current\:border-white\/10:where(.dark,.dark *)[data-current]{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:data-current\:bg-white\/10:where(.dark,.dark *)[data-current]{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:data-current\:bg-white\/10:where(.dark,.dark *)[data-current]{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:data-current\:bg-white\/\[7\%\]:where(.dark,.dark *)[data-current]{background-color:#ffffff12}@supports (color:color-mix(in lab,red,red)){.dark\:data-current\:bg-white\/\[7\%\]:where(.dark,.dark *)[data-current]{background-color:color-mix(in oklab,var(--color-white)7%,transparent)}}.dark\:data-current\:text-zinc-100:where(.dark,.dark *)[data-current]{color:var(--color-zinc-100)}.dark\:data-current\:after\:bg-white:where(.dark,.dark *)[data-current]:after{content:var(--tw-content);background-color:var(--color-white)}:is(.dark\:\*\*\:data-flux-menu-item-icon\:text-white\/60:where(.dark,.dark *) *)[data-flux-menu-item-icon]{color:#fff9}@supports (color:color-mix(in lab,red,red)){:is(.dark\:\*\*\:data-flux-menu-item-icon\:text-white\/60:where(.dark,.dark *) *)[data-flux-menu-item-icon]{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.dark\:data-in-range\:bg-white\/10:where(.dark,.dark *)[data-in-range]{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:data-in-range\:bg-white\/10:where(.dark,.dark *)[data-in-range]{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:data-invalid\:border-red-500:where(.dark,.dark *)[data-invalid]{border-color:var(--color-red-500)}.dark\:data-invalid\:text-red-400:where(.dark,.dark *)[data-invalid]{color:var(--color-red-400)}.dark\:disabled\:data-invalid\:border-red-500:where(.dark,.dark *):disabled[data-invalid]{border-color:var(--color-red-500)}.dark\:data-match\:text-white:where(.dark,.dark *)[data-match]{color:var(--color-white)}:is(.dark\:\*\*\:data-navmenu-icon\:text-white\/60:where(.dark,.dark *) *)[data-navmenu-icon]{color:#fff9}@supports (color:color-mix(in lab,red,red)){:is(.dark\:\*\*\:data-navmenu-icon\:text-white\/60:where(.dark,.dark *) *)[data-navmenu-icon]{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.dark\:data-open\:text-white:where(.dark,.dark *)[data-open]{color:var(--color-white)}.dark\:data-selected\:border-white:where(.dark,.dark *)[data-selected]{border-color:var(--color-white)}.dark\:data-selected\:bg-white:where(.dark,.dark *)[data-selected]{background-color:var(--color-white)}.dark\:data-selected\:bg-white\/20:where(.dark,.dark *)[data-selected]{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.dark\:data-selected\:bg-white\/20:where(.dark,.dark *)[data-selected]{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.dark\:data-selected\:text-white:where(.dark,.dark *)[data-selected]{color:var(--color-white)}.dark\:data-selected\:text-zinc-800:where(.dark,.dark *)[data-selected]{color:var(--color-zinc-800)}:is(.dark\:\*\*\:data-\[slot\=content\]\:text-zinc-300:where(.dark,.dark *) *)[data-slot=content]{color:var(--color-zinc-300)}.dark\:rtl\:-translate-x-\[0\.125rem\]:where(.dark,.dark *):where(:dir(rtl),[dir=rtl],[dir=rtl] *){--tw-translate-x: -.125rem ;translate:var(--tw-translate-x)var(--tw-translate-y)}.dark\:rtl\:group-data-checked\:-translate-x-\[0\.9375rem\]:where(.dark,.dark *):where(:dir(rtl),[dir=rtl],[dir=rtl] *):is(:where(.group)[data-checked] *){--tw-translate-x: -.9375rem ;translate:var(--tw-translate-x)var(--tw-translate-y)}@starting-style{.starting\:translate-y-4{--tw-translate-y:calc(var(--spacing)*4);translate:var(--tw-translate-x)var(--tw-translate-y)}}@starting-style{.starting\:translate-y-6{--tw-translate-y:calc(var(--spacing)*6);translate:var(--tw-translate-x)var(--tw-translate-y)}}@starting-style{.starting\:opacity-0{opacity:0}}.\[\&_\[data-flux-button\]\]\:rounded-lg [data-flux-button]{border-radius:var(--radius-lg)}.\[\&_\[data-flux-input-group\]\]\:w-auto [data-flux-input-group]{width:auto}.\[\&_\[data-slot\=heading\]\]\:text-\(--callout-heading\) [data-slot=heading]{color:var(--callout-heading)}.\[\&_\[data-slot\=text\]\]\:text-\(--callout-text\) [data-slot=text]{color:var(--callout-text)}.\[\&_\[popover\]\]\:whitespace-normal [popover]{white-space:normal}.\[\&_button\]\:text-amber-700\! button{color:var(--color-amber-700)!important}.\[\&_button\]\:text-blue-800\! button{color:var(--color-blue-800)!important}.\[\&_button\]\:text-cyan-800\! button{color:var(--color-cyan-800)!important}.\[\&_button\]\:text-emerald-800\! button{color:var(--color-emerald-800)!important}.\[\&_button\]\:text-fuchsia-700\! button{color:var(--color-fuchsia-700)!important}.\[\&_button\]\:text-green-800\! button{color:var(--color-green-800)!important}.\[\&_button\]\:text-indigo-700\! button{color:var(--color-indigo-700)!important}.\[\&_button\]\:text-lime-800\! button{color:var(--color-lime-800)!important}.\[\&_button\]\:text-orange-700\! button{color:var(--color-orange-700)!important}.\[\&_button\]\:text-pink-700\! button{color:var(--color-pink-700)!important}.\[\&_button\]\:text-purple-700\! button{color:var(--color-purple-700)!important}.\[\&_button\]\:text-red-700\! button{color:var(--color-red-700)!important}.\[\&_button\]\:text-rose-700\! button{color:var(--color-rose-700)!important}.\[\&_button\]\:text-sky-800\! button{color:var(--color-sky-800)!important}.\[\&_button\]\:text-teal-800\! button{color:var(--color-teal-800)!important}.\[\&_button\]\:text-violet-700\! button{color:var(--color-violet-700)!important}.\[\&_button\]\:text-yellow-800\! button{color:var(--color-yellow-800)!important}.\[\&_button\]\:text-zinc-700\! button{color:var(--color-zinc-700)!important}.dark\:\[\&_button\]\:text-amber-200\!:where(.dark,.dark *) button{color:var(--color-amber-200)!important}.dark\:\[\&_button\]\:text-blue-200\!:where(.dark,.dark *) button{color:var(--color-blue-200)!important}.dark\:\[\&_button\]\:text-cyan-200\!:where(.dark,.dark *) button{color:var(--color-cyan-200)!important}.dark\:\[\&_button\]\:text-emerald-200\!:where(.dark,.dark *) button{color:var(--color-emerald-200)!important}.dark\:\[\&_button\]\:text-fuchsia-200\!:where(.dark,.dark *) button{color:var(--color-fuchsia-200)!important}.dark\:\[\&_button\]\:text-green-200\!:where(.dark,.dark *) button{color:var(--color-green-200)!important}.dark\:\[\&_button\]\:text-indigo-200\!:where(.dark,.dark *) button{color:var(--color-indigo-200)!important}.dark\:\[\&_button\]\:text-lime-200\!:where(.dark,.dark *) button{color:var(--color-lime-200)!important}.dark\:\[\&_button\]\:text-orange-200\!:where(.dark,.dark *) button{color:var(--color-orange-200)!important}.dark\:\[\&_button\]\:text-pink-200\!:where(.dark,.dark *) button{color:var(--color-pink-200)!important}.dark\:\[\&_button\]\:text-purple-200\!:where(.dark,.dark *) button{color:var(--color-purple-200)!important}.dark\:\[\&_button\]\:text-red-200\!:where(.dark,.dark *) button{color:var(--color-red-200)!important}.dark\:\[\&_button\]\:text-rose-200\!:where(.dark,.dark *) button{color:var(--color-rose-200)!important}.dark\:\[\&_button\]\:text-sky-200\!:where(.dark,.dark *) button{color:var(--color-sky-200)!important}.dark\:\[\&_button\]\:text-teal-200\!:where(.dark,.dark *) button{color:var(--color-teal-200)!important}.dark\:\[\&_button\]\:text-violet-200\!:where(.dark,.dark *) button{color:var(--color-violet-200)!important}.dark\:\[\&_button\]\:text-yellow-200\!:where(.dark,.dark *) button{color:var(--color-yellow-200)!important}.dark\:\[\&_button\]\:text-zinc-200\!:where(.dark,.dark *) button{color:var(--color-zinc-200)!important}.\[\&_dialog\]\:whitespace-normal dialog{white-space:normal}.\[\&_nav\]\:mx-auto nav{margin-inline:auto}.\[\&_nav\]\:w-fit nav{width:fit-content}.\[\&_span\]\:text-white\/80 span{color:#fffc}@supports (color:color-mix(in lab,red,red)){.\[\&_span\]\:text-white\/80 span{color:color-mix(in oklab,var(--color-white)80%,transparent)}}.\[\&_svg\]\:text-white\/65 svg{color:#ffffffa6}@supports (color:color-mix(in lab,red,red)){.\[\&_svg\]\:text-white\/65 svg{color:color-mix(in oklab,var(--color-white)65%,transparent)}}.\[\&\+\&\>\[data-flux-menu-separator-top\]\]\:hidden+.\[\&\+\&\>\[data-flux-menu-separator-top\]\]\:hidden>[data-flux-menu-separator-top]{display:none}.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none}.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none}.\[\&\:first-child\>\[data-flux-menu-separator-top\]\]\:hidden:first-child>[data-flux-menu-separator-top]{display:none}.\[\&\:first-of-type_td\[data-in-range\]\:not\(\[data-selected\]\)\:first-child\]\:rounded-s-none:first-of-type td[data-in-range]:not([data-selected]):first-child{border-start-start-radius:0;border-end-start-radius:0}.\[\&\:has\(\+\[data-flux-subheading\]\)\]\:mb-2:has(+[data-flux-subheading]){margin-bottom:calc(var(--spacing)*2)}.\[\&\:has\(\+\[data-slot\=image\]\)\]\:hidden:has(+[data-slot=image]){display:none}.\[\&\:has\(\+input\:focus\)\]\:text-zinc-800:has(+input:focus){color:var(--color-zinc-800)}.dark\:\[\&\:has\(\+input\:focus\)\]\:text-zinc-400:where(.dark,.dark *):has(+input:focus){color:var(--color-zinc-400)}.\[\&\:has\(\>\:not\(span\)\:first-child\)\]\:ps-3:has(>:not(span):first-child){padding-inline-start:calc(var(--spacing)*3)}.\[\&\:has\(\>\:not\(span\)\:last-child\)\]\:pe-3:has(>:not(span):last-child){padding-inline-end:calc(var(--spacing)*3)}.\[\&\:has\(\>\[data-flux-checkbox-group\]\[disabled\]\)\>\[data-flux-label\]\]\:opacity-50:has(>[data-flux-checkbox-group][disabled])>[data-flux-label],.\[\&\:has\(\>\[data-flux-radio-group\]\[disabled\]\)\>\[data-flux-label\]\]\:opacity-50:has(>[data-flux-radio-group][disabled])>[data-flux-label]{opacity:.5}.\[\&\:has\(\[data-flux-label-trailing\]\)\]\:flex:has([data-flux-label-trailing]){display:flex}.\[\&\:has\(\[data-slot\=image\]\)\]\:p-\[calc\(0\.5rem-1px\)\]:has([data-slot=image]){padding:calc(.5rem - 1px)}.\[\&\:has\(\[disabled\]\)\]\:shadow-none:has([disabled]){--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark\:\[\&\:has\(\[disabled\]\)\]\:bg-white\/\[7\%\]:where(.dark,.dark *):has([disabled]){background-color:#ffffff12}@supports (color:color-mix(in lab,red,red)){.dark\:\[\&\:has\(\[disabled\]\)\]\:bg-white\/\[7\%\]:where(.dark,.dark *):has([disabled]){background-color:color-mix(in oklab,var(--color-white)7%,transparent)}}.\[\&\:hover_\[data-flux-checkbox-indicator\]\]\:border-\[var\(--haze-border\)\]:hover [data-flux-checkbox-indicator]{border-color:var(--haze-border)}.dark\:\[\&\:hover_\[data-flux-checkbox-indicator\]\]\:border-white\/10:where(.dark,.dark *):hover [data-flux-checkbox-indicator]{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[\&\:hover_\[data-flux-checkbox-indicator\]\]\:border-white\/10:where(.dark,.dark *):hover [data-flux-checkbox-indicator]{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.\[\&\:hover_\[data-flux-radio-indicator\]\]\:border-\[var\(--haze-border\)\]:hover [data-flux-radio-indicator]{border-color:var(--haze-border)}.dark\:\[\&\:hover_\[data-flux-radio-indicator\]\]\:border-white\/10:where(.dark,.dark *):hover [data-flux-radio-indicator]{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[\&\:hover_\[data-flux-radio-indicator\]\]\:border-white\/10:where(.dark,.dark *):hover [data-flux-radio-indicator]{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.\[\&\:hover_\[data-navmenu-icon\]\]\:text-current:hover [data-navmenu-icon]{color:currentColor}.\[\&\:hover\>\*\]\:text-zinc-800:hover>*{color:var(--color-zinc-800)}.dark\:\[\&\:hover\>\*\]\:text-white:where(.dark,.dark *):hover>*{color:var(--color-white)}@media(hover:hover){.\[\&\:is\(button\)\]\:hover\:bg-amber-400\/40:is(button):hover{background-color:#fcbb0066}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-amber-400\/40:is(button):hover{background-color:color-mix(in oklab,var(--color-amber-400)40%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-amber-600:is(button):hover{background-color:var(--color-amber-600)}.\[\&\:is\(button\)\]\:hover\:bg-blue-400\/30:is(button):hover{background-color:#54a2ff4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-blue-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-blue-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-blue-600:is(button):hover{background-color:var(--color-blue-600)}.\[\&\:is\(button\)\]\:hover\:bg-cyan-400\/30:is(button):hover{background-color:#00d2ef4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-cyan-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-cyan-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-cyan-600:is(button):hover{background-color:var(--color-cyan-600)}.\[\&\:is\(button\)\]\:hover\:bg-emerald-400\/30:is(button):hover{background-color:#00d2944d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-emerald-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-emerald-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-emerald-600:is(button):hover{background-color:var(--color-emerald-600)}.\[\&\:is\(button\)\]\:hover\:bg-fuchsia-400\/30:is(button):hover{background-color:#ec6cff4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-fuchsia-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-fuchsia-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-fuchsia-600:is(button):hover{background-color:var(--color-fuchsia-600)}.\[\&\:is\(button\)\]\:hover\:bg-green-400\/30:is(button):hover{background-color:#05df724d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-green-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-green-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-green-600:is(button):hover{background-color:var(--color-green-600)}.\[\&\:is\(button\)\]\:hover\:bg-indigo-400\/30:is(button):hover{background-color:#7d87ff4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-indigo-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-indigo-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-indigo-600:is(button):hover{background-color:var(--color-indigo-600)}.\[\&\:is\(button\)\]\:hover\:bg-lime-400\/35:is(button):hover{background-color:#9de50059}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-lime-400\/35:is(button):hover{background-color:color-mix(in oklab,var(--color-lime-400)35%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-lime-600:is(button):hover{background-color:var(--color-lime-600)}.\[\&\:is\(button\)\]\:hover\:bg-orange-400\/30:is(button):hover{background-color:#ff8b1a4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-orange-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-orange-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-orange-600:is(button):hover{background-color:var(--color-orange-600)}.\[\&\:is\(button\)\]\:hover\:bg-pink-400\/30:is(button):hover{background-color:#fb64b64d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-pink-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-pink-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-pink-600:is(button):hover{background-color:var(--color-pink-600)}.\[\&\:is\(button\)\]\:hover\:bg-purple-400\/30:is(button):hover{background-color:#c07eff4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-purple-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-purple-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-purple-600:is(button):hover{background-color:var(--color-purple-600)}.\[\&\:is\(button\)\]\:hover\:bg-red-400\/30:is(button):hover{background-color:#ff65684d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-red-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-red-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-red-600:is(button):hover{background-color:var(--color-red-600)}.\[\&\:is\(button\)\]\:hover\:bg-rose-400\/30:is(button):hover{background-color:#ff667f4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-rose-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-rose-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-rose-600:is(button):hover{background-color:var(--color-rose-600)}.\[\&\:is\(button\)\]\:hover\:bg-sky-400\/30:is(button):hover{background-color:#00bcfe4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-sky-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-sky-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-sky-600:is(button):hover{background-color:var(--color-sky-600)}.\[\&\:is\(button\)\]\:hover\:bg-teal-400\/30:is(button):hover{background-color:#00d3bd4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-teal-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-teal-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-teal-600:is(button):hover{background-color:var(--color-teal-600)}.\[\&\:is\(button\)\]\:hover\:bg-violet-400\/30:is(button):hover{background-color:#a685ff4d}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-violet-400\/30:is(button):hover{background-color:color-mix(in oklab,var(--color-violet-400)30%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-violet-600:is(button):hover{background-color:var(--color-violet-600)}.\[\&\:is\(button\)\]\:hover\:bg-yellow-400\/40:is(button):hover{background-color:#fac80066}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-yellow-400\/40:is(button):hover{background-color:color-mix(in oklab,var(--color-yellow-400)40%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-yellow-600:is(button):hover{background-color:var(--color-yellow-600)}.\[\&\:is\(button\)\]\:hover\:bg-zinc-400\/25:is(button):hover{background-color:#9f9fa940}@supports (color:color-mix(in lab,red,red)){.\[\&\:is\(button\)\]\:hover\:bg-zinc-400\/25:is(button):hover{background-color:color-mix(in oklab,var(--color-zinc-400)25%,transparent)}}.\[\&\:is\(button\)\]\:hover\:bg-zinc-700:is(button):hover{background-color:var(--color-zinc-700)}.dark\:\[button\]\:hover\:bg-amber-400:where(.dark,.dark *):is(button):hover{background-color:var(--color-amber-400)}.dark\:\[button\]\:hover\:bg-amber-400\/50:where(.dark,.dark *):is(button):hover{background-color:#fcbb0080}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-amber-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-amber-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-blue-400\/50:where(.dark,.dark *):is(button):hover{background-color:#54a2ff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-blue-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-blue-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-blue-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-blue-500)}.dark\:\[button\]\:hover\:bg-cyan-400\/50:where(.dark,.dark *):is(button):hover{background-color:#00d2ef80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-cyan-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-cyan-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-cyan-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-cyan-500)}.dark\:\[button\]\:hover\:bg-emerald-400\/50:where(.dark,.dark *):is(button):hover{background-color:#00d29480}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-emerald-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-emerald-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-emerald-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-emerald-500)}.dark\:\[button\]\:hover\:bg-fuchsia-400\/50:where(.dark,.dark *):is(button):hover{background-color:#ec6cff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-fuchsia-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-fuchsia-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-fuchsia-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-fuchsia-500)}.dark\:\[button\]\:hover\:bg-green-400\/50:where(.dark,.dark *):is(button):hover{background-color:#05df7280}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-green-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-green-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-green-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-green-500)}.dark\:\[button\]\:hover\:bg-indigo-400\/50:where(.dark,.dark *):is(button):hover{background-color:#7d87ff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-indigo-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-indigo-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-indigo-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-indigo-500)}.dark\:\[button\]\:hover\:bg-lime-400\/50:where(.dark,.dark *):is(button):hover{background-color:#9de50080}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-lime-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-lime-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-lime-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-lime-500)}.dark\:\[button\]\:hover\:bg-orange-400\/50:where(.dark,.dark *):is(button):hover{background-color:#ff8b1a80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-orange-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-orange-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-orange-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-orange-500)}.dark\:\[button\]\:hover\:bg-pink-400\/50:where(.dark,.dark *):is(button):hover{background-color:#fb64b680}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-pink-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-pink-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-pink-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-pink-500)}.dark\:\[button\]\:hover\:bg-purple-400\/50:where(.dark,.dark *):is(button):hover{background-color:#c07eff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-purple-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-purple-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-purple-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-purple-500)}.dark\:\[button\]\:hover\:bg-red-400\/50:where(.dark,.dark *):is(button):hover{background-color:#ff656880}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-red-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-red-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-red-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-red-500)}.dark\:\[button\]\:hover\:bg-rose-400\/50:where(.dark,.dark *):is(button):hover{background-color:#ff667f80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-rose-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-rose-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-rose-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-rose-500)}.dark\:\[button\]\:hover\:bg-sky-400\/50:where(.dark,.dark *):is(button):hover{background-color:#00bcfe80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-sky-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-sky-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-sky-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-sky-500)}.dark\:\[button\]\:hover\:bg-teal-400\/50:where(.dark,.dark *):is(button):hover{background-color:#00d3bd80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-teal-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-teal-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-teal-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-teal-500)}.dark\:\[button\]\:hover\:bg-violet-400\/50:where(.dark,.dark *):is(button):hover{background-color:#a685ff80}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-violet-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-violet-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-violet-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-violet-500)}.dark\:\[button\]\:hover\:bg-yellow-300:where(.dark,.dark *):is(button):hover{background-color:var(--color-yellow-300)}.dark\:\[button\]\:hover\:bg-yellow-400\/50:where(.dark,.dark *):is(button):hover{background-color:#fac80080}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-yellow-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-yellow-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-zinc-400\/50:where(.dark,.dark *):is(button):hover{background-color:#9f9fa980}@supports (color:color-mix(in lab,red,red)){.dark\:\[button\]\:hover\:bg-zinc-400\/50:where(.dark,.dark *):is(button):hover{background-color:color-mix(in oklab,var(--color-zinc-400)50%,transparent)}}.dark\:\[button\]\:hover\:bg-zinc-500:where(.dark,.dark *):is(button):hover{background-color:var(--color-zinc-500)}}.\[\&\:last-child\>\[data-flux-menu-separator-bottom\]\]\:hidden:last-child>[data-flux-menu-separator-bottom]{display:none}.\[\&\:last-of-type_td\[data-in-range\]\:not\(\[data-selected\]\)\:last-child\]\:rounded-e-none:last-of-type td[data-in-range]:not([data-selected]):last-child{border-start-end-radius:0;border-end-end-radius:0}.\[\&\:not\(\:empty\)\]\:pb-2:not(:empty){padding-bottom:calc(var(--spacing)*2)}.\[\&\:not\(\:empty\)\+div\]\:font-normal:not(:empty)+div{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.\[\&\:not\(\:empty\)\+div\]\:text-zinc-500:not(:empty)+div{color:var(--color-zinc-500)}.\[\&\:not\(\:empty\)\+div\]\:dark\:text-zinc-300:not(:empty)+div:where(.dark,.dark *){color:var(--color-zinc-300)}.\[\&\:not\(\:has\(\>_\*\)\)\]\:hidden:not(:has(>*)){display:none}.\[\&\:not\(\:has\(\[data-flux-field\]\)\)\:has\(\[data-flux-control\]\[disabled\]\)\>\[data-flux-label\]\]\:opacity-50:not(:has([data-flux-field])):has([data-flux-control][disabled])>[data-flux-label]{opacity:.5}.\[\&\:not\(\:has\(ui-empty\[data-hidden\]\)\)\]\:hidden:not(:has(ui-empty[data-hidden])),.\[\&\:not\(\[data-selected\]\)\]\:hidden:not([data-selected]){display:none}.\[\&\:popover-open\]\:flex:popover-open{display:flex}.\[\&\:popover-open\]\:flex-col:popover-open{flex-direction:column}.\[\&\>\*\:first-child\:not\(\:last-child\)\>\[data-flux-group-target\]\]\:rounded-e-none>:first-child:not(:last-child)>[data-flux-group-target],.\[\&\>\*\:first-child\:not\(\:last-child\)\>\[data-flux-input\]\>\[data-flux-group-target\]\]\:rounded-e-none>:first-child:not(:last-child)>[data-flux-input]>[data-flux-group-target],.\[\&\>\*\:first-child\:not\(\:last-child\)\>\[data-flux-tooltip\]\>\[data-flux-group-target\]\]\:rounded-e-none>:first-child:not(:last-child)>[data-flux-tooltip]>[data-flux-group-target]{border-start-end-radius:0;border-end-end-radius:0}.\[\&\>\*\:has\(\+\[data-flux-input-group-suffix\]\)\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-e-0>:has(+[data-flux-input-group-suffix])>[data-flux-group-target]:not([data-invalid]){border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}.\[\&\>\*\:last-child\:not\(\:first-child\)\>\[data-flux-group-target\]\]\:rounded-s-none>:last-child:not(:first-child)>[data-flux-group-target]{border-start-start-radius:0;border-end-start-radius:0}.\[\&\>\*\:last-child\:not\(\:first-child\)\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-s-0>:last-child:not(:first-child)>[data-flux-group-target]:not([data-invalid]){border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.\[\&\>\*\:last-child\:not\(\:first-child\)\>\[data-flux-input\]\>\[data-flux-group-target\]\]\:rounded-s-none>:last-child:not(:first-child)>[data-flux-input]>[data-flux-group-target],.\[\&\>\*\:last-child\:not\(\:first-child\)\>\[data-flux-tooltip\]\>\[data-flux-group-target\]\]\:rounded-s-none>:last-child:not(:first-child)>[data-flux-tooltip]>[data-flux-group-target]{border-start-start-radius:0;border-end-start-radius:0}.\[\&\>\*\:last-child\:not\(\:first-child\)\>\[data-flux-tooltip\]\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-s-0>:last-child:not(:first-child)>[data-flux-tooltip]>[data-flux-group-target]:not([data-invalid]){border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.\[\&\>\*\:not\(\:first-child\)\:not\(\:last-child\)\:not\(\:only-child\)\>\[data-flux-group-target\]\]\:rounded-none>:not(:first-child):not(:last-child):not(:only-child)>[data-flux-group-target],.\[\&\>\*\:not\(\:first-child\)\:not\(\:last-child\)\:not\(\:only-child\)\>\[data-flux-input\]\>\[data-flux-group-target\]\]\:rounded-none>:not(:first-child):not(:last-child):not(:only-child)>[data-flux-input]>[data-flux-group-target],.\[\&\>\*\:not\(\:first-child\)\:not\(\:last-child\)\:not\(\:only-child\)\>\[data-flux-tooltip\]\>\[data-flux-group-target\]\]\:rounded-none>:not(:first-child):not(:last-child):not(:only-child)>[data-flux-tooltip]>[data-flux-group-target]{border-radius:0}.\[\&\>\*\:not\(\:first-child\)\:not\(\:last-child\)\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-s-0>:not(:first-child):not(:last-child)>[data-flux-group-target]:not([data-invalid]),.\[\&\>\*\:not\(\:first-child\)\:not\(\:last-child\)\>\[data-flux-tooltip\]\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-s-0>:not(:first-child):not(:last-child)>[data-flux-tooltip]>[data-flux-group-target]:not([data-invalid]){border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.\[\&\>\*\:not\(\[data-flux-label\]\)\+\[data-flux-description\]\]\:mt-3>:not([data-flux-label])+[data-flux-description]{margin-top:calc(var(--spacing)*3)}.\[\&\>\[data-flux-control\]\~\[data-flux-description\]\]\:col-start-2>[data-flux-control]~[data-flux-description]{grid-column-start:2}.\[\&\>\[data-flux-control\]\~\[data-flux-description\]\]\:row-start-2>[data-flux-control]~[data-flux-description]{grid-row-start:2}.\[\&\>\[data-flux-control\]\~\[data-flux-error\]\]\:col-span-2>[data-flux-control]~[data-flux-error]{grid-column:span 2/span 2}.\[\&\>\[data-flux-control\]\~\[data-flux-error\]\]\:mt-1>[data-flux-control]~[data-flux-error]{margin-top:calc(var(--spacing)*1)}.\[\&\>\[data-flux-field\]\:has\(\>\[data-flux-description\]\)\]\:mb-4>[data-flux-field]:has(>[data-flux-description]){margin-bottom:calc(var(--spacing)*4)}.\[\&\>\[data-flux-field\]\:last-child\]\:mb-0\!>[data-flux-field]:last-child{margin-bottom:calc(var(--spacing)*0)!important}.\[\&\>\[data-flux-group-target\]\:first-child\:not\(\:last-child\)\]\:rounded-e-none>[data-flux-group-target]:first-child:not(:last-child){border-start-end-radius:0;border-end-end-radius:0}.\[\&\>\[data-flux-group-target\]\:has\(\+\[data-flux-input-group-suffix\]\)\]\:border-e-0>[data-flux-group-target]:has(+[data-flux-input-group-suffix]){border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}.\[\&\>\[data-flux-group-target\]\:last-child\:not\(\:first-child\)\]\:rounded-s-none>[data-flux-group-target]:last-child:not(:first-child){border-start-start-radius:0;border-end-start-radius:0}.\[\&\>\[data-flux-group-target\]\:last-child\:not\(\:first-child\)\]\:border-s-0>[data-flux-group-target]:last-child:not(:first-child){border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.\[\&\>\[data-flux-group-target\]\:not\(\:first-child\)\:not\(\:last-child\)\]\:rounded-none>[data-flux-group-target]:not(:first-child):not(:last-child){border-radius:0}.\[\&\>\[data-flux-group-target\]\:not\(\:first-child\)\:not\(\:last-child\)\]\:border-s-0>[data-flux-group-target]:not(:first-child):not(:last-child){border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.\[\&\>\[data-flux-input\]\:has\(\+\[data-flux-input-group-suffix\]\)\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-e-0>[data-flux-input]:has(+[data-flux-input-group-suffix])>[data-flux-group-target]:not([data-invalid]){border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}.\[\&\>\[data-flux-input\]\:last-child\:not\(\:first-child\)\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-s-0>[data-flux-input]:last-child:not(:first-child)>[data-flux-group-target]:not([data-invalid]),.\[\&\>\[data-flux-input\]\:not\(\:first-child\)\:not\(\:last-child\)\>\[data-flux-group-target\]\:not\(\[data-invalid\]\)\]\:border-s-0>[data-flux-input]:not(:first-child):not(:last-child)>[data-flux-group-target]:not([data-invalid]){border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}.\[\&\>\[data-flux-label\]\+\[data-flux-description\]\]\:mt-0>[data-flux-label]+[data-flux-description]{margin-top:calc(var(--spacing)*0)}.\[\&\>\[data-flux-label\]\+\[data-flux-description\]\]\:mb-3>[data-flux-label]+[data-flux-description]{margin-bottom:calc(var(--spacing)*3)}.\[\&\>\[data-flux-label\]\:has\(\+\[data-flux-description\]\)\]\:mb-2>[data-flux-label]:has(+[data-flux-description]){margin-bottom:calc(var(--spacing)*2)}.\[\&\>\[data-flux-label\]\~\[data-flux-control\]\]\:col-start-2>[data-flux-label]~[data-flux-control]{grid-column-start:2}.\[\&\>\[data-flux-label\]\~\[data-flux-control\]\]\:row-start-1>[data-flux-label]~[data-flux-control]{grid-row-start:1}.\[\&\>\[data-flux-legend\]\]\:mb-4>[data-flux-legend],.\[\&\>\[data-flux-legend\]\+\[data-flux-description\]\]\:mb-4>[data-flux-legend]+[data-flux-description]{margin-bottom:calc(var(--spacing)*4)}.\[\&\>\[data-flux-legend\]\:has\(\+\[data-flux-description\]\)\]\:mb-2>[data-flux-legend]:has(+[data-flux-description]){margin-bottom:calc(var(--spacing)*2)}@container (min-width:28rem){.\@md\:\[\&\>\[data-slot\=\"content\"\]\:has\(\[data-slot\=\"heading\"\]\)\:has\(\[data-slot\=\"text\"\]\)\+\[data-slot\=\"actions\"\]\]\:p-2>[data-slot=content]:has([data-slot=heading]):has([data-slot=text])+[data-slot=actions]{padding:calc(var(--spacing)*2)}}.dark\:\[\&\>option\]\:bg-zinc-700:where(.dark,.dark *)>option{background-color:var(--color-zinc-700)}.dark\:\[\&\>option\]\:text-white:where(.dark,.dark *)>option{color:var(--color-white)}.\[\&\>p\]\:text-white\/70>p{color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){.\[\&\>p\]\:text-white\/70>p{color:color-mix(in oklab,var(--color-white)70%,transparent)}}.\[\&\>svg\]\:ms-6>svg{margin-inline-start:calc(var(--spacing)*6)}.\[\&\>svg\]\:me-2>svg{margin-inline-end:calc(var(--spacing)*2)}.\[\&\>svg\]\:text-zinc-400>svg{color:var(--color-zinc-400)}.\[\&\>tr\:last-child\>td\]\:border-b>tr:last-child>td{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&\>tr\:last-child\>th\]\:bg-transparent\!>tr:last-child>th{background-color:#0000!important}.\[\&\>tr\:nth-child\(even\)\>td\:nth-child\(2\)\]\:bg-\[\#211b19\]\/50>tr:nth-child(2n)>td:nth-child(2){background-color:#211b1980}.\[\&\>tr\:nth-child\(even\)\>td\:nth-child\(3\)\]\:bg-\[\#1b202c\]\/50>tr:nth-child(2n)>td:nth-child(3){background-color:#1b202c80}.\[\&\>tr\:nth-child\(even\)\>td\:nth-child\(4\)\]\:bg-\[\#3b341b\]\/50>tr:nth-child(2n)>td:nth-child(4){background-color:#3b341b80}.\[\&\>tr\:nth-child\(even\)\>th\]\:bg-\[\#ffffff\]\/5>tr:nth-child(2n)>th{background-color:#ffffff0d}.\[\&\>tr\:nth-child\(odd\)\>td\:nth-child\(2\)\]\:bg-\[\#171211\]\/50>tr:nth-child(odd)>td:nth-child(2){background-color:#17121180}.\[\&\>tr\:nth-child\(odd\)\>td\:nth-child\(3\)\]\:bg-\[\#121620\]\/50>tr:nth-child(odd)>td:nth-child(3){background-color:#12162080}.\[\&\>tr\:nth-child\(odd\)\>td\:nth-child\(4\)\]\:bg-\[\#302812\]\/50>tr:nth-child(odd)>td:nth-child(4){background-color:#30281280}.\[\&\>tr\:nth-child\(odd\)\>th\]\:bg-\[\#ffffff\]\/3>tr:nth-child(odd)>th{background-color:#ffffff08}:where([data-flux-sidebar-on-desktop]) .\[\&\[collapsible\=\"mobile\"\]\]\:in-data-flux-sidebar-on-desktop\:hidden[collapsible=mobile]{display:none}.\[\&\[data-active\]_\[data-flux-menu-item-icon\]\]\:text-current[data-active] [data-flux-menu-item-icon]{color:currentColor}.\[\&\[data-active\]\>svg\]\:text-zinc-800[data-active]>svg{color:var(--color-zinc-800)}.dark\:\[\&\[data-active\]\>svg\]\:text-white:where(.dark,.dark *)[data-active]>svg{color:var(--color-white)}.\[\&\[data-flux-loading\]\>\:not\(\[data-flux-loading-indicator\]\)\]\:opacity-0[data-flux-loading]>:not([data-flux-loading-indicator]){opacity:0}.\[\&\[data-flux-loading\]\>\[data-flux-loading-indicator\]\]\:opacity-100[data-flux-loading]>[data-flux-loading-indicator]{opacity:1}.\[\&\[data-loading\]\>\:not\(\[data-flux-loading-indicator\]\)\]\:opacity-0[data-loading]>:not([data-flux-loading-indicator]){opacity:0}.\[\&\[data-loading\]\>\[data-flux-loading-indicator\]\]\:opacity-100[data-loading]>[data-flux-loading-indicator]{opacity:1}.\[\&\[data-outside\]\:has\(\+\[data-in-range\]\)\]\:bg-linear-to-l[data-outside]:has(+[data-in-range]){--tw-gradient-position:to left}@supports (background-image:linear-gradient(in lab,red,red)){.\[\&\[data-outside\]\:has\(\+\[data-in-range\]\)\]\:bg-linear-to-l[data-outside]:has(+[data-in-range]){--tw-gradient-position:to left in oklab}}.\[\&\[data-outside\]\:has\(\+\[data-in-range\]\)\]\:bg-linear-to-l[data-outside]:has(+[data-in-range]){background-image:linear-gradient(var(--tw-gradient-stops))}.rtl\:\[\&\[data-outside\]\:has\(\+\[data-in-range\]\)\]\:bg-linear-to-r:where(:dir(rtl),[dir=rtl],[dir=rtl] *)[data-outside]:has(+[data-in-range]){--tw-gradient-position:to right}@supports (background-image:linear-gradient(in lab,red,red)){.rtl\:\[\&\[data-outside\]\:has\(\+\[data-in-range\]\)\]\:bg-linear-to-r:where(:dir(rtl),[dir=rtl],[dir=rtl] *)[data-outside]:has(+[data-in-range]){--tw-gradient-position:to right in oklab}}.rtl\:\[\&\[data-outside\]\:has\(\+\[data-in-range\]\)\]\:bg-linear-to-r:where(:dir(rtl),[dir=rtl],[dir=rtl] *)[data-outside]:has(+[data-in-range]){background-image:linear-gradient(var(--tw-gradient-stops))}.\[\&\[data-outside\]\:has\(\+\[data-in-range\]\[data-selected\]\)\]\:bg-none\![data-outside]:has(+[data-in-range][data-selected]){background-image:none!important}.\[\&\[data-selected\]\+\[data-selected\]\]\:rounded-s-none[data-selected]+[data-selected]{border-start-start-radius:0;border-end-start-radius:0}.\[\&\[disabled\]\]\:pointer-events-none[disabled]{pointer-events:none}.\[\&\[disabled\]\]\:cursor-default[disabled]{cursor:default}.\[\&\[disabled\]\]\:text-zinc-400[disabled]{color:var(--color-zinc-400)}.\[\&\[disabled\]\]\:opacity-50[disabled]{opacity:.5}.\[\&\[disabled\]\]\:shadow-none[disabled]{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark\:\[\&\[disabled\]\]\:border-white\/10:where(.dark,.dark *)[disabled]{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.dark\:\[\&\[disabled\]\]\:border-white\/10:where(.dark,.dark *)[disabled]{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.dark\:\[\&\[disabled\]\]\:bg-white\/\[7\%\]:where(.dark,.dark *)[disabled]{background-color:#ffffff12}@supports (color:color-mix(in lab,red,red)){.dark\:\[\&\[disabled\]\]\:bg-white\/\[7\%\]:where(.dark,.dark *)[disabled]{background-color:color-mix(in oklab,var(--color-white)7%,transparent)}}.dark\:\[\&\[disabled\]\]\:text-zinc-400:where(.dark,.dark *)[disabled]{color:var(--color-zinc-400)}.dark\:\[\&\[disabled\]\]\:opacity-75:where(.dark,.dark *)[disabled]{opacity:.75}.\[\&\[disabled\]_\&\]\:text-zinc-400[disabled] .\[\&\[disabled\]_\&\]\:text-zinc-400{color:var(--color-zinc-400)}.\[\&\[disabled\]_\[data-flux-label\]\]\:opacity-50[disabled] [data-flux-label],.\[\&\[disabled\]_\[data-flux-legend\]\]\:opacity-50[disabled] [data-flux-legend]{opacity:.5}.\[\&\[disabled\]_\[data-slot\=content\]\]\:text-zinc-500[disabled] [data-slot=content]{color:var(--color-zinc-500)}.dark\:\[\&\[disabled\]_\[data-slot\=content\]\]\:text-zinc-400:where(.dark,.dark *)[disabled] [data-slot=content]{color:var(--color-zinc-400)}.\[\&\[disabled\]\>\:not\(\[data-flux-loading-indicator\]\)\]\:opacity-0[disabled]>:not([data-flux-loading-indicator]){opacity:0}.\[\&\[disabled\]\>\[data-flux-loading-indicator\]\]\:opacity-100[disabled]>[data-flux-loading-indicator]{opacity:1}:is([data-flux-button-group]>.\[\:is\(\[data-flux-button-group\]\>\&\:first-child\,_\[data-flux-button-group\]_\:first-child\>\&\)\]\:border-s-\[1px\]:first-child,[data-flux-button-group] :first-child>.\[\:is\(\[data-flux-button-group\]\>\&\:first-child\,_\[data-flux-button-group\]_\:first-child\>\&\)\]\:border-s-\[1px\]){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}:is([data-flux-button-group]>.\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-e-0:last-child,[data-flux-button-group] :last-child>.\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-e-0){border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}:is([data-flux-button-group]>.\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-e-\[1px\]:last-child,[data-flux-button-group] :last-child>.\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-e-\[1px\]){border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}:is([data-flux-button-group]>.dark\:\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-s-\[1px\]:where(.dark,.dark *):last-child,[data-flux-button-group] :last-child>.dark\:\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-s-\[1px\]:where(.dark,.dark *)){border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}:is([data-flux-button-group]>.dark\:\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-e-0:where(.dark,.dark *):last-child,[data-flux-button-group] :last-child>.dark\:\[\:is\(\[data-flux-button-group\]\>\&\:last-child\,_\[data-flux-button-group\]_\:last-child\>\&\)\]\:border-e-0:where(.dark,.dark *)){border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}:is([data-flux-button-group]>.\[\:is\(\[data-flux-button-group\]\>\&\:not\(\:first-child\)\,_\[data-flux-button-group\]_\:not\(\:first-child\)\>\&\)\]\:border-s-\[color-mix\(in_srgb\,var\(--color-accent-foreground\)\,transparent_85\%\)\]:not(:first-child),[data-flux-button-group] :not(:first-child)>.\[\:is\(\[data-flux-button-group\]\>\&\:not\(\:first-child\)\,_\[data-flux-button-group\]_\:not\(\:first-child\)\>\&\)\]\:border-s-\[color-mix\(in_srgb\,var\(--color-accent-foreground\)\,transparent_85\%\)\]){border-inline-start-color:#ffffff26}@supports (color:color-mix(in lab,red,red)){:is([data-flux-button-group]>.\[\:is\(\[data-flux-button-group\]\>\&\:not\(\:first-child\)\,_\[data-flux-button-group\]_\:not\(\:first-child\)\>\&\)\]\:border-s-\[color-mix\(in_srgb\,var\(--color-accent-foreground\)\,transparent_85\%\)\]:not(:first-child),[data-flux-button-group] :not(:first-child)>.\[\:is\(\[data-flux-button-group\]\>\&\:not\(\:first-child\)\,_\[data-flux-button-group\]_\:not\(\:first-child\)\>\&\)\]\:border-s-\[color-mix\(in_srgb\,var\(--color-accent-foreground\)\,transparent_85\%\)\]){border-inline-start-color:color-mix(in srgb,var(--color-accent-foreground),transparent 85%)}}:where(.\[\:where\(\&\)\]\:relative){position:relative}:where(.\[\:where\(\&\)\]\:block){display:block}:where(.\[\:where\(\&\)\]\:size-4){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}:where(.\[\:where\(\&\)\]\:size-5){width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}:where(.\[\:where\(\&\)\]\:size-6){width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}:where(.\[\:where\(\&\)\]\:size-8){width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}:where(.\[\:where\(\&\)\]\:size-10){width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}:where(.\[\:where\(\&\)\]\:size-12){width:calc(var(--spacing)*12);height:calc(var(--spacing)*12)}:where(.\[\:where\(\&\)\]\:size-16){width:calc(var(--spacing)*16);height:calc(var(--spacing)*16)}:where(.\[\:where\(\&\)\]\:size-\[var\(--flux-timeline-indicator-size\)\]){width:var(--flux-timeline-indicator-size);height:var(--flux-timeline-indicator-size)}:where(.\[\:where\(\&\)\]\:h-1\.5){height:calc(var(--spacing)*1.5)}:where(.\[\:where\(\&\)\]\:h-4){height:calc(var(--spacing)*4)}:where(.\[\:where\(\&\)\]\:h-5){height:calc(var(--spacing)*5)}:where(.\[\:where\(\&\)\]\:h-6){height:calc(var(--spacing)*6)}:where(.\[\:where\(\&\)\]\:max-h-\[14rem\]){max-height:14rem}:where(.\[\:where\(\&\)\]\:max-h-\[20rem\]){max-height:20rem}:where(.\[\:where\(\&\)\]\:min-h-4){min-height:calc(var(--spacing)*4)}:where(.\[\:where\(\&\)\]\:w-64){width:calc(var(--spacing)*64)}:where(.\[\:where\(\&\)\]\:w-full){width:100%}:where(.\[\:where\(\&\)\]\:max-w-7xl){max-width:var(--container-7xl)}:where(.\[\:where\(\&\)\]\:max-w-xl){max-width:var(--container-xl)}:where(.\[\:where\(\&\)\]\:min-w-6){min-width:calc(var(--spacing)*6)}:where(.\[\:where\(\&\)\]\:min-w-48){min-width:calc(var(--spacing)*48)}:where(.\[\:where\(\&\)\]\:min-w-full){min-width:100%}:where(.\[\:where\(\&\)\]\:min-w-xs){min-width:var(--container-xs)}:where(.\[\:where\(\&\)\]\:rounded){border-radius:.25rem}:where(.\[\:where\(\&\)\]\:rounded-lg){border-radius:var(--radius-lg)}:where(.\[\:where\(\&\)\]\:rounded-md){border-radius:var(--radius-md)}:where(.\[\:where\(\&\)\]\:rounded-sm){border-radius:var(--radius-sm)}:where(.\[\:where\(\&\)\]\:rounded-xl){border-radius:var(--radius-xl)}:where(.\[\:where\(\&\)\]\:bg-white){background-color:var(--color-white)}:where(.\[\:where\(\&\)\]\:bg-zinc-100){background-color:var(--color-zinc-100)}:where(.\[\:where\(\&\)\]\:bg-zinc-200){background-color:var(--color-zinc-200)}:where(.\[\:where\(\&\)\]\:bg-zinc-400\/20){background-color:#9f9fa933}@supports (color:color-mix(in lab,red,red)){:where(.\[\:where\(\&\)\]\:bg-zinc-400\/20){background-color:color-mix(in oklab,var(--color-zinc-400)20%,transparent)}}:where(.\[\:where\(\&\)\]\:stroke-white){stroke:var(--color-white)}:where(.\[\:where\(\&\)\]\:p-4){padding:calc(var(--spacing)*4)}:where(.\[\:where\(\&\)\]\:p-6){padding:calc(var(--spacing)*6)}:where(.\[\:where\(\&\)\]\:pt-8){padding-top:calc(var(--spacing)*8)}:where(.\[\:where\(\&\)\]\:text-base){font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}:where(.\[\:where\(\&\)\]\:text-sm){font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}:where(.\[\:where\(\&\)\]\:text-xs){font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}:where(.\[\:where\(\&\)\]\:font-medium){--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}:where(.\[\:where\(\&\)\]\:font-normal){--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}:where(.\[\:where\(\&\)\]\:text-zinc-300){color:var(--color-zinc-300)}:where(.\[\:where\(\&\)\]\:text-zinc-400){color:var(--color-zinc-400)}:where(.\[\:where\(\&\)\]\:text-zinc-500){color:var(--color-zinc-500)}:where(.\[\:where\(\&\)\]\:text-zinc-800){color:var(--color-zinc-800)}:where(.\[\:where\(\&\)\]\:shadow-xs){--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}:where(.\[\:where\(\&\)\]\:\[--flux-shimmer-color\:white\]){--flux-shimmer-color:white}@media(min-width:48rem){:where(.md\:\[\:where\(\&\)\]\:min-w-\[25rem\]){min-width:25rem}}:where(.\[\:where\(\&\)\]\:dark\:bg-zinc-600):where(.dark,.dark *){background-color:var(--color-zinc-600)}:where(.dark\:\[\:where\(\&\)\]\:bg-white\/10:where(.dark,.dark *)){background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){:where(.dark\:\[\:where\(\&\)\]\:bg-white\/10:where(.dark,.dark *)){background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}:where(.dark\:\[\:where\(\&\)\]\:bg-zinc-800:where(.dark,.dark *)){background-color:var(--color-zinc-800)}:where(.dark\:\[\:where\(\&\)\]\:stroke-zinc-900:where(.dark,.dark *)){stroke:var(--color-zinc-900)}:where(.\[\:where\(\&\)\]\:dark\:text-white):where(.dark,.dark *){color:var(--color-white)}:where(.\[\:where\(\&\)\]\:dark\:text-white\/50):where(.dark,.dark *){color:#ffffff80}@supports (color:color-mix(in lab,red,red)){:where(.\[\:where\(\&\)\]\:dark\:text-white\/50):where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)50%,transparent)}}:where(.\[\:where\(\&\)\]\:dark\:text-white\/70):where(.dark,.dark *){color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){:where(.\[\:where\(\&\)\]\:dark\:text-white\/70):where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)70%,transparent)}}:where(.\[\:where\(\&\)\]\:dark\:text-zinc-300):where(.dark,.dark *){color:var(--color-zinc-300)}:where(.dark\:\[\:where\(\&\)\]\:text-white\/40:where(.dark,.dark *)){color:#fff6}@supports (color:color-mix(in lab,red,red)){:where(.dark\:\[\:where\(\&\)\]\:text-white\/40:where(.dark,.dark *)){color:color-mix(in oklab,var(--color-white)40%,transparent)}}:where(.dark\:\[\:where\(\&\)\]\:text-zinc-100:where(.dark,.dark *)){color:var(--color-zinc-100)}:where(.dark\:\[\:where\(\&\)\]\:text-zinc-300:where(.dark,.dark *)){color:var(--color-zinc-300)}:where(.dark\:\[\:where\(\&\)\]\:\[--flux-shimmer-color\:var\(--color-zinc-900\)\]:where(.dark,.dark *)){--flux-shimmer-color:var(--color-zinc-900)}@media(min-width:1080px){.\[\@media\(min-width\:1080px\)\]\:h-\[280px\]{height:280px}}@media(min-width:1210px){.\[\@media\(min-width\:1210px\)\]\:h-\[300px\]{height:300px}}@supports ((-moz-appearance:none)){.\[\@supports\(-moz-appearance\:none\)\]\:hidden{display:none}.\[\@supports\(-moz-appearance\:none\)\]\:pe-3{padding-inline-end:calc(var(--spacing)*3)}}[data-color]>.\[\[data-color\]\>\&\]\:text-inherit{color:inherit}[data-color]>.\[\[data-color\]\>\&\]\:decoration-current\/20{text-decoration-color:currentColor}@supports (color:color-mix(in lab,red,red)){[data-color]>.\[\[data-color\]\>\&\]\:decoration-current\/20{-webkit-text-decoration-color:color-mix(in oklab,currentcolor 20%,transparent);text-decoration-color:color-mix(in oklab,currentcolor 20%,transparent)}}@media(hover:hover){[data-color]>.\[\[data-color\]\>\&\]\:hover\:decoration-current:hover{text-decoration-color:currentColor}}[data-color]>.dark\:\[\[data-color\]\>\&\]\:decoration-current\/50:where(.dark,.dark *){text-decoration-color:currentColor}@supports (color:color-mix(in lab,red,red)){[data-color]>.dark\:\[\[data-color\]\>\&\]\:decoration-current\/50:where(.dark,.dark *){-webkit-text-decoration-color:color-mix(in oklab,currentcolor 50%,transparent);text-decoration-color:color-mix(in oklab,currentcolor 50%,transparent)}}[data-copyable-copied]>.\[\[data-copyable-copied\]\>\&\]\:block{display:block}[data-copyable-copied]>.\[\[data-copyable-copied\]\>\&\]\:hidden{display:none}[data-date-variant=danger] .\[\[data-date-variant\=\'danger\'\]_\&\]\:text-rose-500{color:var(--color-rose-500)}[data-date-variant=danger] .dark\:\[\[data-date-variant\=\'danger\'\]_\&\]\:text-rose-400:where(.dark,.dark *){color:var(--color-rose-400)}[data-date-variant=success] .\[\[data-date-variant\=\'success\'\]_\&\]\:text-lime-600{color:var(--color-lime-600)}[data-date-variant=success] .dark\:\[\[data-date-variant\=\'success\'\]_\&\]\:text-lime-400:where(.dark,.dark *){color:var(--color-lime-400)}[data-date-variant=warning] .\[\[data-date-variant\=\'warning\'\]_\&\]\:text-yellow-600{color:var(--color-yellow-600)}[data-date-variant=warning] .dark\:\[\[data-date-variant\=\'warning\'\]_\&\]\:text-yellow-400:where(.dark,.dark *){color:var(--color-yellow-400)}[data-flux-button-group] .\[\[data-flux-button-group\]_\&\]\:border-s-0{border-inline-start-style:var(--tw-border-style);border-inline-start-width:0}[data-flux-button-group] .\[\[data-flux-button-group\]_\&\]\:border-e{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}[data-flux-button-group] .\[\[data-flux-button-group\]_\&\]\:border-e-0{border-inline-end-style:var(--tw-border-style);border-inline-end-width:0}[data-flux-button-group] .\[\[data-flux-button-group\]_\&\]\:border-red-600{border-color:var(--color-red-600)}[data-flux-button-group] .\[\[data-flux-button-group\]_\&\]\:border-zinc-200\/80{border-color:#e4e4e7cc}@supports (color:color-mix(in lab,red,red)){[data-flux-button-group] .\[\[data-flux-button-group\]_\&\]\:border-zinc-200\/80{border-color:color-mix(in oklab,var(--color-zinc-200)80%,transparent)}}[data-flux-button-group] .dark\:\[\[data-flux-button-group\]_\&\]\:border-red-900\/25:where(.dark,.dark *){border-color:#82181a40}@supports (color:color-mix(in lab,red,red)){[data-flux-button-group] .dark\:\[\[data-flux-button-group\]_\&\]\:border-red-900\/25:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-red-900)25%,transparent)}}[data-flux-button-group] .dark\:\[\[data-flux-button-group\]_\&\]\:border-zinc-900\/50:where(.dark,.dark *){border-color:#18181b80}@supports (color:color-mix(in lab,red,red)){[data-flux-button-group] .dark\:\[\[data-flux-button-group\]_\&\]\:border-zinc-900\/50:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-zinc-900)50%,transparent)}}[data-flux-command-input]:has(input:placeholder-shown) .\[\[data-flux-command-input\]\:has\(input\:placeholder-shown\)_\&\]\:hidden{display:none}[data-flux-container] .\[\[data-flux-container\]_\&\]\:px-0{padding-inline:calc(var(--spacing)*0)}[data-flux-date-picker-button]:has([data-flux-date-picker-placeholder]) .\[\[data-flux-date-picker-button\]\:has\(\[data-flux-date-picker-placeholder\]\)_\&\]\:hidden{display:none}[data-flux-date-picker-button]:hover .\[\[data-flux-date-picker-button\]\:hover_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-date-picker-button]:hover .dark\:\[\[data-flux-date-picker-button\]\:hover_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-date-picker][disabled] .\[\[data-flux-date-picker\]\[disabled\]_\&\]\:hidden{display:none}[data-flux-editor-link]:not(:has(input:placeholder-shown)) .\[\[data-flux-editor-link\]\:not\(\:has\(input\:placeholder-shown\)\)_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-editor-link]:not(:has(input:placeholder-shown)) .dark\:\[\[data-flux-editor-link\]\:not\(\:has\(input\:placeholder-shown\)\)_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-editor-link]:not(:has(input:placeholder-shown)) .\[\[data-flux-editor-link\]\:not\(\:has\(input\:placeholder-shown\)\)_\&\:hover\]\:bg-zinc-200:hover{background-color:var(--color-zinc-200)}[data-flux-editor-link]:not(:has(input:placeholder-shown)) .dark\:\[\[data-flux-editor-link\]\:not\(\:has\(input\:placeholder-shown\)\)_\&\:hover\]\:bg-white\/10:where(.dark,.dark *):hover{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){[data-flux-editor-link]:not(:has(input:placeholder-shown)) .dark\:\[\[data-flux-editor-link\]\:not\(\:has\(input\:placeholder-shown\)\)_\&\:hover\]\:bg-white\/10:where(.dark,.dark *):hover{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}[data-flux-file-upload-trigger]:hover .\[\[data-flux-file-upload-trigger\]\:hover_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-file-upload-trigger]:hover .dark\:\[\[data-flux-file-upload-trigger\]\:hover_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:flex{display:flex}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:flex-1{flex:1}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:items-center{align-items:center}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:items-stretch{align-items:stretch}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:gap-0{gap:calc(var(--spacing)*0)}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:border-y{border-block-style:var(--tw-border-style);border-block-width:1px}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:border-e{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:border-zinc-200{border-color:var(--color-zinc-200)}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:bg-white{background-color:var(--color-white)}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:px-4{padding-inline:calc(var(--spacing)*4)}[data-flux-input-group] .\[\[data-flux-input-group\]_\&\]\:shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[data-flux-input-group] .dark\:\[\[data-flux-input-group\]_\&\]\:border-zinc-600:where(.dark,.dark *){border-color:var(--color-zinc-600)}[data-flux-input-group] .dark\:\[\[data-flux-input-group\]_\&\]\:bg-zinc-700:where(.dark,.dark *){background-color:var(--color-zinc-700)}[data-flux-input-group] .dark\:\[\[data-flux-input-group\]_\&\]\:text-zinc-300:where(.dark,.dark *){color:var(--color-zinc-300)}[data-flux-input]:has(input:placeholder-shown) .\[\[data-flux-input\]\:has\(input\:placeholder-shown\)_\&\]\:hidden,[data-flux-input]:has(input[disabled]) .\[\[data-flux-input\]\:has\(input\[disabled\]\)_\&\]\:hidden{display:none}[data-flux-input]:hover .\[\[data-flux-input\]\:hover_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-input]:hover .dark\:\[\[data-flux-input\]\:hover_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-loading]>.\[\[data-flux-loading\]\>\&\]\:block{display:block}[data-flux-menu-item-icon]:hover .\[\[data-flux-menu-item-icon\]\:hover_\&\]\:text-current,[data-flux-menu-item]:hover .\[\[data-flux-menu-item\]\:hover_\&\]\:text-current{color:currentColor}[data-flux-menu]:has(>[data-flux-menu-item-has-icon]) .\[\[data-flux-menu\]\:has\(\>\[data-flux-menu-item-has-icon\]\)_\&\]\:block{display:block}[data-flux-pillbox-search]:has([data-flux-loading]) .\[\[data-flux-pillbox-search\]\:has\(\[data-flux-loading\]\)_\&\]\:opacity-0{opacity:0}[data-flux-pillbox-search]:has([data-flux-loading]) .\[\[data-flux-pillbox-search\]\:has\(\[data-flux-loading\]\)_\&\]\:opacity-100{opacity:1}[data-flux-pillbox-search]:has(input:placeholder-shown) .\[\[data-flux-pillbox-search\]\:has\(input\:placeholder-shown\)_\&\]\:hidden,[data-flux-pillbox-trigger]:has([data-flux-pillbox-placeholder]) .\[\[data-flux-pillbox-trigger\]\:has\(\[data-flux-pillbox-placeholder\]\)_\&\]\:hidden{display:none}[data-flux-pillbox-trigger]:hover .\[\[data-flux-pillbox-trigger\]\:hover_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-pillbox-trigger]:hover .dark\:\[\[data-flux-pillbox-trigger\]\:hover_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-pillbox][disabled]:has([data-selected]) .\[\[data-flux-pillbox\]\[disabled\]\:has\(\[data-selected\]\)_\&\]\:hidden,[data-flux-select-button]:has([data-flux-select-placeholder]) .\[\[data-flux-select-button\]\:has\(\[data-flux-select-placeholder\]\)_\&\]\:hidden{display:none}[data-flux-select-button]:hover .\[\[data-flux-select-button\]\:hover_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-select-button]:hover .dark\:\[\[data-flux-select-button\]\:hover_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-select-search]:has([data-flux-loading]) .\[\[data-flux-select-search\]\:has\(\[data-flux-loading\]\)_\&\]\:opacity-0{opacity:0}[data-flux-select-search]:has([data-flux-loading]) .\[\[data-flux-select-search\]\:has\(\[data-flux-loading\]\)_\&\]\:opacity-100{opacity:1}[data-flux-select-search]:has(input:placeholder-shown) .\[\[data-flux-select-search\]\:has\(input\:placeholder-shown\)_\&\]\:hidden,[data-flux-select]:has([disabled][data-selected]) .\[\[data-flux-select\]\:has\(\[disabled\]\[data-selected\]\)_\&\]\:hidden,[data-flux-select][disabled]:has([data-selected]) .\[\[data-flux-select\]\[disabled\]\:has\(\[data-selected\]\)_\&\]\:hidden{display:none}[data-flux-sidebar-group-dropdown]>button:hover .\[\[data-flux-sidebar-group-dropdown\]\>button\:hover_\&\]\:text-current,[data-flux-sidebar-group-dropdown]>button:hover :is(:where([data-flux-menu]) .in-data-flux-menu\:\[\[data-flux-sidebar-group-dropdown\]\>button\:hover_\&\]\:text-current){color:currentColor}[data-flux-sidebar-item]:hover .\[\[data-flux-sidebar-item\]\:hover_\&\]\:text-current\!{color:currentColor!important}[data-flux-subheading]+.\[\[data-flux-subheading\]\+\&\]\:mt-2{margin-top:calc(var(--spacing)*2)}[data-flux-tab][data-selected] .\[\[data-flux-tab\]\[data-selected\]_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-tab][data-selected] .dark\:\[\[data-flux-tab\]\[data-selected\]_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-time-picker-button]:has([data-flux-time-picker-placeholder]) .\[\[data-flux-time-picker-button\]\:has\(\[data-flux-time-picker-placeholder\]\)_\&\]\:hidden{display:none}[data-flux-time-picker-button]:hover .\[\[data-flux-time-picker-button\]\:hover_\&\]\:text-zinc-800{color:var(--color-zinc-800)}[data-flux-time-picker-button]:hover .dark\:\[\[data-flux-time-picker-button\]\:hover_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}[data-flux-time-picker]:has([disabled]) .\[\[data-flux-time-picker\]\:has\(\[disabled\]\)_\&\]\:hidden{display:none}:is([data-flux-timeline-status=complete] .\[\[data-flux-timeline-status\=complete\]_\&\]\:\*\:bg-accent>*),:is([data-flux-timeline-status=complete]+[data-flux-timeline-item] .\[\[data-flux-timeline-status\=complete\]\+\[data-flux-timeline-item\]_\&\]\:\*\:bg-accent>*){background-color:var(--color-accent)}[data-flux-toast-dialog][data-variant=danger] .\[\[data-flux-toast-dialog\]\[data-variant\=danger\]_\&\]\:block,[data-flux-toast-dialog][data-variant=success] .\[\[data-flux-toast-dialog\]\[data-variant\=success\]_\&\]\:block,[data-flux-toast-dialog][data-variant=warning] .\[\[data-flux-toast-dialog\]\[data-variant\=warning\]_\&\]\:block{display:block}[data-in-range]:not([data-selected]):not([data-end-preview])+.\[\[data-in-range\]\:not\(\[data-selected\]\)\:not\(\[data-end-preview\]\)\+\&\[data-outside\]\]\:bg-linear-to-r[data-outside]{--tw-gradient-position:to right}@supports (background-image:linear-gradient(in lab,red,red)){[data-in-range]:not([data-selected]):not([data-end-preview])+.\[\[data-in-range\]\:not\(\[data-selected\]\)\:not\(\[data-end-preview\]\)\+\&\[data-outside\]\]\:bg-linear-to-r[data-outside]{--tw-gradient-position:to right in oklab}}[data-in-range]:not([data-selected]):not([data-end-preview])+.\[\[data-in-range\]\:not\(\[data-selected\]\)\:not\(\[data-end-preview\]\)\+\&\[data-outside\]\]\:bg-linear-to-r[data-outside]{background-image:linear-gradient(var(--tw-gradient-stops))}[data-in-range]:not([data-selected]):not([data-end-preview])+.rtl\:\[\[data-in-range\]\:not\(\[data-selected\]\)\:not\(\[data-end-preview\]\)\+\&\[data-outside\]\]\:bg-linear-to-l:where(:dir(rtl),[dir=rtl],[dir=rtl] *)[data-outside]{--tw-gradient-position:to left}@supports (background-image:linear-gradient(in lab,red,red)){[data-in-range]:not([data-selected]):not([data-end-preview])+.rtl\:\[\[data-in-range\]\:not\(\[data-selected\]\)\:not\(\[data-end-preview\]\)\+\&\[data-outside\]\]\:bg-linear-to-l:where(:dir(rtl),[dir=rtl],[dir=rtl] *)[data-outside]{--tw-gradient-position:to left in oklab}}[data-in-range]:not([data-selected]):not([data-end-preview])+.rtl\:\[\[data-in-range\]\:not\(\[data-selected\]\)\:not\(\[data-end-preview\]\)\+\&\[data-outside\]\]\:bg-linear-to-l:where(:dir(rtl),[dir=rtl],[dir=rtl] *)[data-outside]{background-image:linear-gradient(var(--tw-gradient-stops))}[data-month]:first-of-type .\[\[data-month\]\:first-of-type_\&\]\:opacity-0{opacity:0}[data-nav-footer] .\[\[data-nav-footer\]_\&\]\:hidden{display:none}[data-nav-sidebar] [data-nav-footer] .\[\[data-nav-sidebar\]_\[data-nav-footer\]_\&\]\:block,[data-viewable-open]>.\[\[data-viewable-open\]\>\&\]\:block{display:block}[data-viewable-open]>.\[\[data-viewable-open\]\>\&\]\:hidden{display:none}[disabled] .\[\[disabled\]_\&\]\:pointer-events-none{pointer-events:none}[disabled] .\[\[disabled\]_\&\]\:text-zinc-200\!{color:var(--color-zinc-200)!important}[disabled] .\[\[disabled\]_\&\]\:text-zinc-400\/70{color:#9f9fa9b3}@supports (color:color-mix(in lab,red,red)){[disabled] .\[\[disabled\]_\&\]\:text-zinc-400\/70{color:color-mix(in oklab,var(--color-zinc-400)70%,transparent)}}[disabled] .\[\[disabled\]_\&\]\:text-zinc-500{color:var(--color-zinc-500)}[disabled] .\[\[disabled\]_\&\]\:placeholder-zinc-400\/70::placeholder{color:#9f9fa9b3}@supports (color:color-mix(in lab,red,red)){[disabled] .\[\[disabled\]_\&\]\:placeholder-zinc-400\/70::placeholder{color:color-mix(in oklab,var(--color-zinc-400)70%,transparent)}}[disabled] .\[\[disabled\]_\&\]\:opacity-50{opacity:.5}[disabled] .\[\[disabled\]_\&\]\:opacity-75{opacity:.75}[disabled] .dark\:\[\[disabled\]_\&\]\:text-white\/40\!:where(.dark,.dark *){color:#fff6!important}@supports (color:color-mix(in lab,red,red)){[disabled] .dark\:\[\[disabled\]_\&\]\:text-white\/40\!:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)40%,transparent)!important}}[disabled] .dark\:\[\[disabled\]_\&\]\:text-zinc-400:where(.dark,.dark *){color:var(--color-zinc-400)}[disabled] .dark\:\[\[disabled\]_\&\]\:text-zinc-500:where(.dark,.dark *),[disabled] .dark\:\[\[disabled\]_\&\]\:placeholder-zinc-500:where(.dark,.dark *)::placeholder{color:var(--color-zinc-500)}[disabled]:hover .\[\[disabled\]\:hover_\&\]\:text-zinc-400{color:var(--color-zinc-400)}[disabled]:hover .dark\:\[\[disabled\]\:hover_\&\]\:text-white\/60:where(.dark,.dark *){color:#fff9}@supports (color:color-mix(in lab,red,red)){[disabled]:hover .dark\:\[\[disabled\]\:hover_\&\]\:text-white\/60:where(.dark,.dark *){color:color-mix(in oklab,var(--color-white)60%,transparent)}}[inline] .\[\[inline\]_\&\]\:col-span-1{grid-column:span 1/span 1}[inline] .\[\[inline\]_\&\]\:col-span-2{grid-column:span 2/span 2}[inline] .\[\[inline\]_\&\]\:col-start-1{grid-column-start:1}[inline] .\[\[inline\]_\&\]\:col-start-2{grid-column-start:2}[inline] .\[\[inline\]_\&\]\:row-start-1{grid-row-start:1}[readonly] .\[\[readonly\]_\&\]\:pointer-events-none{pointer-events:none}[readonly] .\[\[readonly\]_\&\]\:cursor-default{cursor:default}[readonly] .\[\[readonly\]_\&\]\:bg-transparent{background-color:#0000}td[data-selected] .\[td\[data-selected\]_\&\]\:bg-\[var\(--color-accent\)\]{background-color:var(--color-accent)}td[data-selected] .\[td\[data-selected\]_\&\]\:bg-white{background-color:var(--color-white)}td[data-selected] .\[td\[data-selected\]_\&\]\:text-\[var\(--color-accent-foreground\)\]{color:var(--color-accent-foreground)}td[data-selected] .dark\:\[td\[data-selected\]_\&\]\:bg-zinc-800:where(.dark,.dark *){background-color:var(--color-zinc-800)}td[data-selected] .\[td\[data-selected\]_\&\[disabled\]\]\:opacity-50[disabled]{opacity:.5}td[data-selected]+td[data-selected] .\[td\[data-selected\]\+td\[data-selected\]_\&\]\:rounded-s-none{border-start-start-radius:0;border-end-start-radius:0}td[data-selected]:has(+td[data-selected]) .\[td\[data-selected\]\:has\(\+td\[data-selected\]\)_\&\]\:rounded-e-none{border-start-end-radius:0;border-end-end-radius:0}td[data-today] .\[td\[data-today\]_\&\]\:flex{display:flex}td[disabled] .\[td\[disabled\]_\&\]\:pointer-events-none{pointer-events:none}td[disabled] .\[td\[disabled\]_\&\]\:cursor-default{cursor:default}td[disabled] .\[td\[disabled\]_\&\]\:text-zinc-400{color:var(--color-zinc-400)}ui-checkbox[data-checked] .\[ui-checkbox\[data-checked\]_\&\]\:border-transparent{border-color:#0000}ui-checkbox[data-checked] .\[ui-checkbox\[data-checked\]_\&\]\:bg-\[var\(--color-accent\)\]{background-color:var(--color-accent)}ui-checkbox[data-checked] .\[ui-checkbox\[data-checked\]_\&\]\:text-zinc-800{color:var(--color-zinc-800)}ui-checkbox[data-checked] .\[ui-checkbox\[data-checked\]_\&\]\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media(hover:hover){ui-checkbox[data-checked] .hover\:\[ui-checkbox\[data-checked\]_\&\]\:bg-\(--color-accent\):hover{background-color:var(--color-accent)}}ui-checkbox[data-checked] .focus\:\[ui-checkbox\[data-checked\]_\&\]\:bg-\(--color-accent\):focus{background-color:var(--color-accent)}ui-checkbox[data-checked] .dark\:\[ui-checkbox\[data-checked\]_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}ui-checkbox[data-checked]:not([data-indeterminate]) .\[ui-checkbox\[data-checked\]\:not\(\[data-indeterminate\]\)_\&\>svg\:first-child\]\:block>svg:first-child{display:block}ui-checkbox[data-checked][disabled] .\[ui-checkbox\[data-checked\]\[disabled\]_\&\]\:opacity-50{opacity:.5}ui-checkbox[data-indeterminate] .\[ui-checkbox\[data-indeterminate\]_\&\]\:border-transparent{border-color:#0000}ui-checkbox[data-indeterminate] .\[ui-checkbox\[data-indeterminate\]_\&\]\:bg-\[var\(--color-accent\)\]{background-color:var(--color-accent)}ui-checkbox[data-indeterminate] .\[ui-checkbox\[data-indeterminate\]_\&\]\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media(hover:hover){ui-checkbox[data-indeterminate] .hover\:\[ui-checkbox\[data-indeterminate\]_\&\]\:bg-\(--color-accent\):hover{background-color:var(--color-accent)}}ui-checkbox[data-indeterminate] .focus\:\[ui-checkbox\[data-indeterminate\]_\&\]\:bg-\(--color-accent\):focus{background-color:var(--color-accent)}ui-checkbox[data-indeterminate] .\[ui-checkbox\[data-indeterminate\]_\&\>svg\:last-child\]\:block>svg:last-child{display:block}ui-checkbox[disabled] .\[ui-checkbox\[disabled\]_\&\]\:border-zinc-200{border-color:var(--color-zinc-200)}ui-checkbox[disabled] .\[ui-checkbox\[disabled\]_\&\]\:opacity-75{opacity:.75}ui-checkbox[disabled] .\[ui-checkbox\[disabled\]_\&\]\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}ui-checkbox[disabled] .dark\:\[ui-checkbox\[disabled\]_\&\]\:border-white\/5:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){ui-checkbox[disabled] .dark\:\[ui-checkbox\[disabled\]_\&\]\:border-white\/5:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}ui-checkbox[disabled][data-checked] .\[ui-checkbox\[disabled\]\[data-checked\]_\&\]\:border-transparent,ui-checkbox[disabled][data-indeterminate] .\[ui-checkbox\[disabled\]\[data-indeterminate\]_\&\]\:border-transparent{border-color:#0000}ui-dropdown>.\[ui-dropdown\>\&\]\:w-full{width:100%}ui-option[data-selected] .\[ui-option\[data-selected\]_\&\]\:block{display:block}ui-option[data-selected] .\[ui-option\[data-selected\]_\&\]\:border-transparent{border-color:#0000}ui-option[data-selected] .\[ui-option\[data-selected\]_\&\]\:bg-\[var\(--color-accent\)\]{background-color:var(--color-accent)}@media(hover:hover){ui-option[data-selected] .hover\:\[ui-option\[data-selected\]_\&\]\:bg-\(--color-accent\):hover{background-color:var(--color-accent)}}ui-option[data-selected] .focus\:\[ui-option\[data-selected\]_\&\]\:bg-\(--color-accent\):focus{background-color:var(--color-accent)}ui-option[data-selected] .\[ui-option\[data-selected\]_\&\>div\]\:block>div,ui-option[data-selected] .\[ui-option\[data-selected\]_\&\>svg\:first-child\]\:block>svg:first-child{display:block}ui-option[data-selected][disabled] .\[ui-option\[data-selected\]\[disabled\]_\&\]\:opacity-50{opacity:.5}ui-option[disabled] .\[ui-option\[disabled\]_\&\]\:border-zinc-200{border-color:var(--color-zinc-200)}ui-option[disabled] .\[ui-option\[disabled\]_\&\]\:opacity-75{opacity:.75}ui-option[disabled] .dark\:\[ui-option\[disabled\]_\&\]\:border-white\/5:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){ui-option[disabled] .dark\:\[ui-option\[disabled\]_\&\]\:border-white\/5:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}ui-option[disabled] :is(ui-option[data-selected] .\[ui-option\[data-selected\]_\&\]\:\[ui-option\[disabled\]_\&\]\:border-transparent),ui-radio[data-checked] .\[ui-radio\[data-checked\]_\&\]\:border-transparent{border-color:#0000}ui-radio[data-checked] .\[ui-radio\[data-checked\]_\&\]\:bg-\[var\(--color-accent\)\]{background-color:var(--color-accent)}ui-radio[data-checked] .\[ui-radio\[data-checked\]_\&\]\:text-zinc-800{color:var(--color-zinc-800)}ui-radio[data-checked] .\[ui-radio\[data-checked\]_\&\]\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media(hover:hover){ui-radio[data-checked] .hover\:\[ui-radio\[data-checked\]_\&\]\:bg-\(--color-accent\):hover{background-color:var(--color-accent)}}ui-radio[data-checked] .focus\:\[ui-radio\[data-checked\]_\&\]\:bg-\(--color-accent\):focus{background-color:var(--color-accent)}ui-radio[data-checked] .dark\:\[ui-radio\[data-checked\]_\&\]\:text-white:where(.dark,.dark *){color:var(--color-white)}ui-radio[data-checked] .\[ui-radio\[data-checked\]_\&\>div\]\:block>div{display:block}ui-radio[data-checked][disabled] .\[ui-radio\[data-checked\]\[disabled\]_\&\]\:opacity-50{opacity:.5}ui-radio[disabled] .\[ui-radio\[disabled\]_\&\]\:border-zinc-200{border-color:var(--color-zinc-200)}ui-radio[disabled] .\[ui-radio\[disabled\]_\&\]\:opacity-75{opacity:.75}ui-radio[disabled] .\[ui-radio\[disabled\]_\&\]\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}ui-radio[disabled] .dark\:\[ui-radio\[disabled\]_\&\]\:border-white\/5:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){ui-radio[disabled] .dark\:\[ui-radio\[disabled\]_\&\]\:border-white\/5:where(.dark,.dark *){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}ui-radio[disabled] :is(ui-radio[data-checked] .\[ui-radio\[data-checked\]_\&\]\:\[ui-radio\[disabled\]_\&\]\:border-transparent){border-color:#0000}ui-selected .\[ui-selected_\&\]\:sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}ui-selected .\[ui-selected_\&\]\:hidden{display:none}ui-time-picker-options>[data-selected] .\[ui-time-picker-options\>\[data-selected\]_\&\]\:block{display:block}ui-time-picker:has([disabled]) .\[ui-time-picker\:has\(\[disabled\]\)_\&\]\:hidden,ui-time-picker[data-empty] .\[ui-time-picker\[data-empty\]_\&\]\:hidden{display:none}}@keyframes flux-shimmer{0%{transform:translate(0)}to{transform:translate(200%)}}:has(>[data-flux-main]){grid-template:"header header header""sidebar main aside"1fr"sidebar footer aside"/min-content minmax(0,1fr) min-content;grid-area:body;display:grid}:has(>[data-flux-sidebar]+[data-flux-header]){grid-template-areas:"sidebar header header""sidebar main aside""sidebar footer aside"}[data-flux-modal]>dialog,[data-flux-modal]>dialog::backdrop{opacity:0;transition:all 75ms allow-discrete}[data-flux-modal]>dialog{transform:scale(.95)}[data-flux-modal]>dialog[data-flux-flyout]{transform:scale(1)var(--flux-flyout-translate,var(--fx-flyout-translate,translateX(50px)))}[data-flux-modal]>dialog[open],[data-flux-modal]>dialog[open]::backdrop{opacity:1;transition:all .15s allow-discrete;transform:translate(0)scale(1)}@starting-style{[data-flux-modal]>dialog[open],[data-flux-modal]>dialog[open]::backdrop{opacity:0}[data-flux-modal]>dialog[open]{transform:scale(.95)}[data-flux-modal]>dialog[open][data-flux-flyout]{transform:scale(1)var(--flux-flyout-translate,var(--fx-flyout-translate,translateX(50px)))}}[data-flux-modal]>dialog::backdrop{background-color:#0000001a}select[data-flux-select-native]{print-color-adjust:exact;-webkit-print-color-adjust:exact;background-image:url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%23d4d4d4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%23d4d4d4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-inline-end:2.5rem}[dir=rtl] select[data-flux-select-native]{background-position:.5rem}select[data-flux-select-native]:hover:not(:disabled){background-image:url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%2327272a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%2327272a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")}.dark select[data-flux-select-native]{background-image:url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%23A1A1AA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%23A1A1AA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")}.dark select[data-flux-select-native]:hover:not(:disabled){background-image:url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")}ui-toast{background-color:#0000;max-width:24rem;margin:1.5rem;overflow:visible}ui-toast[position*=top]{margin-bottom:auto}ui-toast[position*=bottom]{margin-top:auto}ui-toast[position*=left],ui-toast[position*=start]{margin-inline-end:auto}ui-toast[position*=center]{margin-left:auto;margin-right:auto}ui-toast[position*=right],ui-toast[position*=end]{margin-inline-start:auto}ui-toast [data-flux-toast-dialog]{opacity:0;transition:opacity .35s allow-discrete,transform .35s allow-discrete,height .35s allow-discrete;transform:translate(0)}ui-toast [data-flux-toast-dialog].showing{opacity:1;transition:opacity .2s allow-discrete,transform .2s allow-discrete,height .2s allow-discrete;transform:translate(0)}@starting-style{ui-toast [data-flux-toast-dialog]{opacity:0;transform:translate(0)}ui-toast[position*=top]>[data-flux-toast-dialog]{transform:translateY(-.5rem)}ui-toast[position*=top][position*=left]>[data-flux-toast-dialog]{transform:translate(-.5rem)}ui-toast[position*=top][position*=right]>[data-flux-toast-dialog],[dir=rtl] :is(ui-toast)[position*=top][position*=left]>[data-flux-toast-dialog]{transform:translate(.5rem)}[dir=rtl] :is(ui-toast)[position*=top][position*=right]>[data-flux-toast-dialog]{transform:translate(-.5rem)}ui-toast[position*=bottom]>[data-flux-toast-dialog]{transform:translateY(.5rem)}}ui-toast-group{background-color:#0000;width:24rem;margin:1.5rem;display:flex;overflow:visible}ui-toast-group[position*=top]{margin-bottom:auto}ui-toast-group[position*=bottom]{margin-top:auto}ui-toast-group[position*=left],ui-toast-group[position*=start]{justify-content:flex-start;margin-inline-end:auto}ui-toast-group[position*=center]{justify-content:center;margin-left:auto;margin-right:auto}ui-toast-group[position*=right],ui-toast-group[position*=end]{justify-content:flex-end;margin-inline-start:auto}ui-toast-group [data-flux-toast-dialog]{transition:opacity .35s allow-discrete,transform .35s allow-discrete,height .35s allow-discrete;position:absolute;transform:translate(0)}[position*=top] :is(ui-toast-group [data-flux-toast-dialog]){padding-bottom:.75rem;top:0}[position*=bottom] :is(ui-toast-group [data-flux-toast-dialog]){padding-top:.75rem;bottom:0}ui-toast-group [data-flux-toast-dialog]>*{transition:opacity .35s allow-discrete,transform .35s allow-discrete,height .35s allow-discrete}.flux-no-scrollbar{scrollbar-width:none;-ms-overflow-style:none}.flux-no-scrollbar::-webkit-scrollbar{display:none}.has-focus-visible\:outline-default:has(:focus-visible){outline:auto highlight;outline-color:-webkit-focus-ring-color}[data-flux-timeline]{grid-template-columns:var(--flux-timeline-item-offset)auto var(--flux-timeline-content-gap)1fr;display:grid}[data-flux-timeline] [data-flux-timeline-item]{grid-template-columns:subgrid;grid-column:2/-1;grid-template-rows:auto 1fr auto 1fr auto;display:grid}[data-flux-timeline] [data-flux-timeline-item]:has([data-flux-timeline-block]){grid-column:1/-1}[data-flux-timeline] [data-flux-timeline-item]:not(:first-child) [data-flux-timeline-gap-leading],[data-flux-timeline] [data-flux-timeline-item]:not(:last-child) [data-flux-timeline-gap-trailing]{min-height:calc(var(--flux-timeline-item-gap)/2)}[data-flux-timeline] [data-flux-timeline-item]:first-child [data-flux-timeline-line-leading],[data-flux-timeline] [data-flux-timeline-item]:last-child [data-flux-timeline-line-trailing]{opacity:0}[data-flux-timeline] [data-flux-timeline-indicator]{grid-area:3/1;justify-self:center}[data-flux-timeline] [data-flux-timeline-content]{grid-area:2/3/5;align-self:center}[data-flux-timeline] [data-flux-timeline-line-leading]{grid-area:1/1/3}[data-flux-timeline] [data-flux-timeline-line-trailing]{grid-area:4/1/-1}[data-flux-timeline] [data-flux-timeline-gap-leading]{grid-area:1/3}[data-flux-timeline] [data-flux-timeline-gap-trailing]{grid-area:5/3}[data-flux-timeline][data-flux-timeline-horizontal]{grid-template-columns:initial;grid-template-rows:auto var(--flux-timeline-content-gap)1fr}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-item]{grid-template-rows:subgrid;grid-row:1/-1;grid-column:initial;grid-template-columns:auto 1fr auto 1fr auto}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-item]:not(:first-child) [data-flux-timeline-gap-leading],[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-item]:not(:last-child) [data-flux-timeline-gap-trailing]{min-width:calc(var(--flux-timeline-item-gap)/2)}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-indicator]{justify-self:initial;grid-area:1/3;align-self:center}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-content]{justify-self:center;align-self:initial;grid-area:3/2/auto/5}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-line-leading]{grid-area:1/1/auto/3;justify-self:stretch}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-line-trailing]{grid-area:1/4/auto/-1;justify-self:stretch}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-gap-leading]{grid-area:3/1}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-gap-trailing]{grid-area:3/5}[data-flux-timeline][data-flux-timeline-horizontal=inline]{grid-template-rows:auto}[data-flux-timeline][data-flux-timeline-horizontal=inline] [data-flux-timeline-item]{grid-template-columns:auto auto auto auto 1fr}[data-flux-timeline][data-flux-timeline-horizontal=inline] [data-flux-timeline-content]{padding-left:var(--flux-timeline-content-gap);padding-right:var(--flux-timeline-content-gap);grid-area:1/4}[data-flux-timeline][data-flux-timeline-horizontal=inline] [data-flux-timeline-line-leading]{grid-area:1/1/auto/3}[data-flux-timeline][data-flux-timeline-horizontal=inline] [data-flux-timeline-line-trailing]{grid-area:1/5}[data-flux-timeline][data-flux-timeline-horizontal=inline] [data-flux-timeline-gap-leading]{grid-area:1/1}[data-flux-timeline][data-flux-timeline-horizontal=inline] [data-flux-timeline-gap-trailing]{grid-area:1/5}[data-flux-timeline-item]:not(:first-child) [data-flux-timeline-line-leading],[data-flux-timeline-item] [data-flux-timeline-line-trailing]{flex-direction:column;align-items:center;display:flex}:is([data-flux-timeline-item]:not(:first-child) [data-flux-timeline-line-leading],[data-flux-timeline-item] [data-flux-timeline-line-trailing]) *{width:var(--flux-timeline-line-width);height:calc(100% - var(--flux-timeline-line-gap))}[data-flux-timeline-item]:not(:first-child) [data-flux-timeline-line-leading]{justify-content:start}[data-flux-timeline-item] [data-flux-timeline-line-trailing]{justify-content:end}[data-flux-timeline-horizontal] [data-flux-timeline-item] :is([data-flux-timeline-line-leading],[data-flux-timeline-line-trailing]){justify-content:center;align-items:initial}[data-flux-timeline-horizontal] [data-flux-timeline-item] :is([data-flux-timeline-line-leading],[data-flux-timeline-line-trailing]) *{height:var(--flux-timeline-line-width);width:calc(100% - var(--flux-timeline-line-gap))}[data-flux-timeline-horizontal] [data-flux-timeline-item] [data-flux-timeline-line-leading]{align-items:start}[data-flux-timeline-horizontal] [data-flux-timeline-item] [data-flux-timeline-line-trailing]{align-items:end}[data-flux-timeline]:not([data-flux-timeline-horizontal])[data-flux-timeline-align=start] [data-flux-timeline-item]{grid-template-rows:auto auto auto 1fr auto}[data-flux-timeline]:not([data-flux-timeline-horizontal])[data-flux-timeline-align=start] [data-flux-timeline-content]{align-self:start}[data-flux-timeline]:not([data-flux-timeline-horizontal]) [data-flux-timeline-item][data-flux-timeline-align=start]{grid-template-rows:auto auto auto 1fr auto}[data-flux-timeline]:not([data-flux-timeline-horizontal]) [data-flux-timeline-item][data-flux-timeline-align=start] [data-flux-timeline-content]{align-self:start}[data-flux-timeline]:not([data-flux-timeline-horizontal])[data-flux-timeline-align=end] [data-flux-timeline-item]{grid-template-rows:auto 1fr auto auto auto}[data-flux-timeline]:not([data-flux-timeline-horizontal])[data-flux-timeline-align=end] [data-flux-timeline-content]{align-self:end}[data-flux-timeline]:not([data-flux-timeline-horizontal]) [data-flux-timeline-item][data-flux-timeline-align=end]{grid-template-rows:auto 1fr auto auto auto}[data-flux-timeline]:not([data-flux-timeline-horizontal]) [data-flux-timeline-item][data-flux-timeline-align=end] [data-flux-timeline-content]{align-self:end}[data-flux-timeline]:not([data-flux-timeline-horizontal])[data-flux-timeline-align=baseline] [data-flux-timeline-item]{grid-template-rows:auto auto auto 1fr auto}[data-flux-timeline]:not([data-flux-timeline-horizontal])[data-flux-timeline-align=baseline] [data-flux-timeline-content]{grid-row:3/5;align-self:baseline}[data-flux-timeline]:not([data-flux-timeline-horizontal])[data-flux-timeline-align=baseline] [data-flux-timeline-indicator]{align-self:baseline}[data-flux-timeline]:not([data-flux-timeline-horizontal]) [data-flux-timeline-item][data-flux-timeline-align=baseline]{grid-template-rows:auto auto auto 1fr auto}[data-flux-timeline]:not([data-flux-timeline-horizontal]) [data-flux-timeline-item][data-flux-timeline-align=baseline] [data-flux-timeline-content]{grid-row:3/5;align-self:baseline}[data-flux-timeline]:not([data-flux-timeline-horizontal]) [data-flux-timeline-item][data-flux-timeline-align=baseline] [data-flux-timeline-indicator]{align-self:baseline}:is([data-flux-timeline][data-flux-timeline-horizontal][data-flux-timeline-align=start],[data-flux-timeline][data-flux-timeline-horizontal][data-flux-timeline-align=baseline]) [data-flux-timeline-item]{grid-template-columns:auto auto auto 1fr auto}:is([data-flux-timeline][data-flux-timeline-horizontal][data-flux-timeline-align=start],[data-flux-timeline][data-flux-timeline-horizontal][data-flux-timeline-align=baseline]) [data-flux-timeline-content]{justify-self:start}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-item]:is([data-flux-timeline-align=start],[data-flux-timeline-align=baseline]){grid-template-columns:auto auto auto 1fr auto}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-item]:is([data-flux-timeline-align=start],[data-flux-timeline-align=baseline]) [data-flux-timeline-content]{justify-self:start}[data-flux-timeline][data-flux-timeline-horizontal][data-flux-timeline-align=end] [data-flux-timeline-item]{grid-template-columns:auto 1fr auto auto auto}[data-flux-timeline][data-flux-timeline-horizontal][data-flux-timeline-align=end] [data-flux-timeline-content]{justify-self:end}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-item][data-flux-timeline-align=end]{grid-template-columns:auto 1fr auto auto auto}[data-flux-timeline][data-flux-timeline-horizontal] [data-flux-timeline-item][data-flux-timeline-align=end] [data-flux-timeline-content]{justify-self:end}[data-flux-timeline]:has([data-flux-timeline-block]){--flux-timeline-item-offset:calc(var(--spacing)*3)}[data-flux-timeline-item] [data-flux-timeline-block]{grid-template-columns:subgrid;grid-area:2/1/5/-1;display:grid}[data-flux-timeline-item] [data-flux-timeline-block] [data-flux-timeline-subgrid]{grid-template-columns:subgrid;grid-column:1/-1;display:grid}[data-flux-timeline-item] [data-flux-timeline-block] [data-flux-timeline-subgrid]>:first-child{grid-column:2;justify-self:center}[data-flux-timeline-item] [data-flux-timeline-block] [data-flux-timeline-subgrid]>:nth-child(2){grid-column:4}[data-flux-timeline-item] [data-flux-timeline-block]>:not([data-flux-timeline-subgrid]){grid-column:1/-1}[data-flux-timeline-item] [data-flux-timeline-line-leading]:has(~[data-flux-timeline-block]){grid-area:1/2/2}[data-flux-timeline-item] [data-flux-timeline-line-leading]:has(~[data-flux-timeline-block]) *{height:100%!important}[data-flux-timeline-item] [data-flux-timeline-block]~[data-flux-timeline-line-trailing]{grid-area:5/2/-1}[data-flux-timeline-item] [data-flux-timeline-block]~[data-flux-timeline-line-trailing] *{height:100%!important}[data-flux-timeline-item]:not(:first-child) [data-flux-timeline-gap-leading]:has(~[data-flux-timeline-block]),[data-flux-timeline-item]:not(:last-child) [data-flux-timeline-block]~[data-flux-timeline-gap-trailing]{height:var(--flux-timeline-item-gap)}[x-cloak]{display:none!important}.sub-font{font-family:var(--font-secondary)}.text-gradient-menu{background:var(--gradient-menu);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.text-gradient-title{background:var(--gradient-title);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.text-gradient-invert{background:var(--gradient-invert);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.hover-3d{perspective:75rem;--transform:0,0;--shine:100% 100%;--shadow:0rem 0rem;--ease:linear(0,.931 13.8%,1.196 21.4%,1.343 29.8%,1.378 36%,1.365 43.2%,1.059 78%,1);filter:drop-shadow(var(--shadow).1rem #00000008)drop-shadow(var(--shadow).2rem #00000008)drop-shadow(var(--shadow).3rem #00000008)drop-shadow(var(--shadow).4rem #00000008);transition:filter .4s ease-out;display:inline-grid}.hover-3d>:first-child{transform:rotate3d(var(--transform),0,10deg);transition:transform var(--ease).5s,scale var(--ease).5s,outline-color ease-out .5s;outline-offset:-1px;outline:.5px solid #0000;grid-area:1/1/4/4;position:relative;overflow:hidden}.hover-3d>:first-child:before{content:"";pointer-events:none;z-index:1;opacity:0;filter:blur(.75rem);width:33.3333%;height:33.3333%;scale:500%;translate:var(--shine);background-image:radial-gradient(circle,#fff3 10%,#0000 50%);transition:translate .4s ease-out,opacity .4s ease-out;position:absolute;inset:0 auto auto 0}.hover-3d>:nth-child(n+2){isolation:isolate;z-index:1;scale:1.2}.hover-3d>:nth-child(2){grid-area:1/1/2/2}.hover-3d>:nth-child(3){grid-area:1/2/2/3}.hover-3d>:nth-child(4){grid-area:1/3/2/4}.hover-3d>:nth-child(5){grid-area:2/1/3/2}.hover-3d>:nth-child(6){grid-area:2/3/3/4}.hover-3d>:nth-child(7){grid-area:3/1/4/2}.hover-3d>:nth-child(8){grid-area:3/2/4/3}.hover-3d>:nth-child(9){grid-area:3/3/4/4}.hover-3d:hover{--ease:linear(0,.708 15.2%,.927 23.6%,1.067 33%,1.12 41%,1.13 50.2%,1.019 83.2%,1)}.hover-3d:hover>:first-child{outline-color:#fff1;scale:1.05}.hover-3d:hover>:first-child:before{opacity:1}.hover-3d:has(>:nth-child(2):hover){--transform:-1,1;--shine:0% 0%;--shadow:-.5rem -.5rem}.hover-3d:has(>:nth-child(3):hover){--transform:-1,0;--shine:100% 0%;--shadow:0rem -.5rem}.hover-3d:has(>:nth-child(4):hover){--transform:-1,-1;--shine:200% 0%;--shadow:.5rem -.5rem}.hover-3d:has(>:nth-child(5):hover){--transform:0,1;--shine:0% 100%;--shadow:-.5rem 0rem}.hover-3d:has(>:nth-child(6):hover){--transform:0,-1;--shine:200% 100%;--shadow:.5rem 0rem}.hover-3d:has(>:nth-child(7):hover){--transform:1,1;--shine:0% 200%;--shadow:-.5rem .5rem}.hover-3d:has(>:nth-child(8):hover){--transform:1,0;--shine:100% 200%;--shadow:0rem .5rem}.hover-3d:has(>:nth-child(9):hover){--transform:1,-1;--shine:200% 200%;--shadow:.5rem .5rem}[data-name=lifeblood]{background-image:linear-gradient(315deg,#fff,#c4ffef 10%,#5bffd3)}[data-name=sungrace]{background-image:linear-gradient(315deg,#fff,#ffd2b8 10%,#c1612b)}[data-name=silence]{background-image:linear-gradient(315deg,#fff,#eab2ff 10%,#a65dc2)}[data-name=singularity]{background-image:linear-gradient(315deg,#fff,#fff 10%,#878787)}[data-name=splintergleam]{background-image:linear-gradient(315deg,#fff,#ff9b98 10%,#b63d3a)}[data-name=phasetide]{background-image:linear-gradient(315deg,#fff,#ddedfb 10%,#78c4d9)}.toggle-btn{cursor:pointer;color:#f6edd3;background:#050505;border:0;border-radius:14px;justify-content:center;align-items:center;gap:10px;height:40px;padding:0 16px;transition:transform 60ms,filter .15s,background .2s;display:inline-flex;position:relative;overflow:hidden;box-shadow:inset 0 1px 1px #ffffff08,0 2px 8px #00000059}.toggle-btn:before{content:"";border-radius:inherit;pointer-events:none;background:linear-gradient(#312e296b,#312e29);padding:2px;transition:background .2s,filter .2s;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-mask-image:linear-gradient(#fff 0 0),linear-gradient(#fff 0 0);-webkit-mask-position:0 0,0 0;-webkit-mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.toggle-btn img{z-index:1;transition:transform .1s;position:relative}.toggle-btn span{z-index:1;position:relative}.toggle-btn:hover{background:radial-gradient(circle at 50% 25%,#ffffff12,#0000 45%),linear-gradient(#0d0c0b,#1f1e1a)}.toggle-btn:hover:before{filter:drop-shadow(0 0 6px #ffd77814)}.toggle-btn:active,.toggle-btn:active img{transform:translateY(1px)}.toggle-btn:active,.toggle-btn.is-active{box-shadow:inset 0 1px 1px #ffffff0d,0 0 10px #ffd2641f,0 2px 10px #0006}.toggle-btn:active:before,.toggle-btn.is-active:before{background:linear-gradient(#fff0ad,#ffe08a 38%,#ffd05c 72%,#ffc63f)}.toggle-btn.mana-filter-btn{color:#ffffffc7;box-shadow:none;text-shadow:0 1px 2px #00000073;background:url(/build/assets/mana-icon-CfhXtMoB.webp) 50%/contain no-repeat;border-radius:9999px;padding:0}.toggle-btn.mana-filter-btn:before{border-radius:inherit;background:#0006;padding:0;transition:background .15s;top:0;right:0;bottom:0;left:0;-webkit-mask:none;mask:none}.toggle-btn.mana-filter-btn:hover{color:#ffffffe0;background:url(/build/assets/mana-icon-CfhXtMoB.webp) 50%/contain no-repeat}.toggle-btn.mana-filter-btn:hover:before{filter:none;background:#00000026}.toggle-btn.mana-filter-btn:active,.toggle-btn.mana-filter-btn.is-active{color:#ffffffeb;box-shadow:none}.toggle-btn.mana-filter-btn:active:before,.toggle-btn.mana-filter-btn.is-active:before{background:0 0}.card-search-field,.card-filter-control{background:linear-gradient(#ffffff0a,#ffffff0a),linear-gradient(#000,#000);border:2px solid #faeebc33;border-radius:14px;align-items:center;gap:12px;min-height:40px;padding:0 14px;display:flex;box-shadow:inset 6px 6px 7.2px #00000073}.card-search-field{width:100%}.card-filter-panel{background:linear-gradient(#ffffff0a,#ffffff0a),linear-gradient(#000000f5,#000000f5);border:2px solid #faeebc33;border-radius:1rem;box-shadow:inset 6px 6px 7.2px #00000073}.btn-overlay-hover{cursor:pointer;position:relative}.btn-overlay-hover:before{pointer-events:none;inset:calc(var(--spacing)*0);z-index:10;border-radius:var(--radius-3xl);opacity:0;mix-blend-mode:overlay;transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.3s;--tw-content:"";content:var(--tw-content);background-color:#ffffff4d;transition-duration:.3s;position:absolute}.btn-overlay-hover:hover:before{opacity:.7}.btn-overlay-hover:active:before{opacity:1}.has-stone-separator:before{top:calc(var(--spacing)*-7);z-index:30;height:calc(var(--spacing)*9);--tw-content:"";content:var(--tw-content);background-image:url(/build/assets/stone-separator-B8z7D0q9.png);background-position:50%;background-repeat:no-repeat;background-size:cover;width:100%;position:absolute}.keyword-tooltip-trigger{text-underline-offset:.16em}.keyword-tooltip-trigger:hover{color:#f1d6af}.keyword-tooltip-content{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:radial-gradient(120% 160% at 100% 0,#70707033,#fcdca700 48%),linear-gradient(151deg,#000000c4,#0000),url(https://vite.dev.test:443/public/assets/images/tooltip-bg.webp) 1px 0/100%;border:1px solid #50505059;border-radius:.75rem;padding:.65rem .75rem;box-shadow:0 14px 40px #0000007a,inset 0 0 0 1px #00000059}.keyword-tooltip-title{text-transform:uppercase;letter-spacing:.1em;align-items:center;gap:.4rem;font-size:.95rem;font-weight:700;line-height:1.15;display:inline-flex}.keyword-tooltip-type{letter-spacing:.12em;text-transform:uppercase;border:1px solid #ffffff38;border-radius:999px;align-items:center;padding:.12rem .45rem;font-size:.65rem;font-weight:700;line-height:1;display:inline-flex;position:absolute;top:10px;right:10px}.keyword-tooltip-type--neutral{color:#a3cdfff2;background-color:#27486e61;border-color:#78abec80}.keyword-tooltip-type--positive{color:#9bebb9f2;background-color:#19583561;border-color:#5cb78285}.keyword-tooltip-type--negative{color:#ffb3aaf5;background-color:#702a2266;border-color:#d6706685}.keyword-tooltip-type--token{color:#fde2a8fa;background-color:#7a571c6b;border-color:#eab6547a}.keyword-tooltip-description{color:#ebebefe6;letter-spacing:.04em;font-size:.95rem;line-height:1.25}.card-search-select{font-family:var(--font-secondary);letter-spacing:.04em}.card-search-select [data-flux-select-button]{color:#f2f2f2f5;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);letter-spacing:.04em;background:linear-gradient(142deg,#0000008f,#00000038);border-color:#ffffff24;font-size:1rem;box-shadow:0 12px 28px #00000059,inset 0 0 0 1px #ffffff0d}.card-search-select [data-flux-select-button]:hover{border-color:#ffffff3d}.card-search-select [data-flux-select-placeholder]{color:#f1f1f180}.card-search-select [data-flux-options]{background:radial-gradient(150% 180% at 100% 0,#ffe4b51a,#ffe4b500 52%),linear-gradient(170deg,#13161cf5,#0f1013eb);border-color:#ffffff1f;box-shadow:0 18px 50px #00000080,inset 0 0 0 1px #ffffff0d}.card-search-select [data-flux-select-search] input{color:#f5f5f5eb;letter-spacing:.04em;background:#ffffff05;border-bottom-color:#ffffff1f;font-size:1rem}.card-search-select [data-flux-select-search] input::placeholder{color:#f0f0f073}.card-search-select [data-flux-option]{color:#f3f3f3e6;letter-spacing:.04em;border-radius:.55rem;font-size:1rem;font-weight:500}.card-search-select [data-flux-option][data-active]{color:#fffffffa;background:linear-gradient(90deg,#ffffff29,#ffffff14)}@property --tw-border-spacing-x{syntax:"";inherits:false;initial-value:0}@property --tw-border-spacing-y{syntax:"";inherits:false;initial-value:0}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"";inherits:false;initial-value:100%}@property --tw-mask-linear{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-radial{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-conic{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-left{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-right{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-bottom{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-top{syntax:"*";inherits:false;initial-value:linear-gradient(#fff,#fff)}@property --tw-mask-right-from-position{syntax:"*";inherits:false;initial-value:0%}@property --tw-mask-right-to-position{syntax:"*";inherits:false;initial-value:100%}@property --tw-mask-right-from-color{syntax:"*";inherits:false;initial-value:black}@property --tw-mask-right-to-color{syntax:"*";inherits:false;initial-value:transparent}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-text-shadow-color{syntax:"*";inherits:false}@property --tw-text-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-mask-left-from-position{syntax:"*";inherits:false;initial-value:0%}@property --tw-mask-left-to-position{syntax:"*";inherits:false;initial-value:100%}@property --tw-mask-left-from-color{syntax:"*";inherits:false;initial-value:black}@property --tw-mask-left-to-color{syntax:"*";inherits:false;initial-value:transparent}@keyframes spin{to{transform:rotate(360deg)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}} diff --git a/chrono.docs/Master of Ceremonies_files/css2 b/chrono.docs/Master of Ceremonies_files/css2 deleted file mode 100644 index 87a2d42..0000000 --- a/chrono.docs/Master of Ceremonies_files/css2 +++ /dev/null @@ -1,117 +0,0 @@ -/* vietnamese */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTx3L3I-JCGChYJ8VI-L6OO_au7B6x7T2kn3.woff2) format('woff2'); - unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; -} -/* latin-ext */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTx3L3I-JCGChYJ8VI-L6OO_au7B6x_T2kn3.woff2) format('woff2'); - unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} -/* latin */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTx3L3I-JCGChYJ8VI-L6OO_au7B6xHT2g.woff2) format('woff2'); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} -/* vietnamese */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 500; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lwz3nWuZEC.woff2) format('woff2'); - unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; -} -/* latin-ext */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 500; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lwz3jWuZEC.woff2) format('woff2'); - unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} -/* latin */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 500; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lwz3bWuQ.woff2) format('woff2'); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} -/* vietnamese */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 600; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873z3nWuZEC.woff2) format('woff2'); - unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; -} -/* latin-ext */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 600; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873z3jWuZEC.woff2) format('woff2'); - unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} -/* latin */ -@font-face { - font-family: 'Barlow Condensed'; - font-style: normal; - font-weight: 600; - font-display: swap; - src: url(https://fonts.gstatic.com/s/barlowcondensed/v13/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873z3bWuQ.woff2) format('woff2'); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} -/* cyrillic-ext */ -@font-face { - font-family: 'Forum'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(https://fonts.gstatic.com/s/forum/v19/6aey4Ky-Vb8Ew8IcOpIq3g.woff2) format('woff2'); - unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -} -/* cyrillic */ -@font-face { - font-family: 'Forum'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(https://fonts.gstatic.com/s/forum/v19/6aey4Ky-Vb8Ew8IVOpIq3g.woff2) format('woff2'); - unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -} -/* latin-ext */ -@font-face { - font-family: 'Forum'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(https://fonts.gstatic.com/s/forum/v19/6aey4Ky-Vb8Ew8IfOpIq3g.woff2) format('woff2'); - unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} -/* latin */ -@font-face { - font-family: 'Forum'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(https://fonts.gstatic.com/s/forum/v19/6aey4Ky-Vb8Ew8IROpI.woff2) format('woff2'); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} diff --git a/chrono.docs/Master of Ceremonies_files/customize.png b/chrono.docs/Master of Ceremonies_files/customize.png deleted file mode 100644 index 3635e4b..0000000 Binary files a/chrono.docs/Master of Ceremonies_files/customize.png and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies_files/divergent.webp b/chrono.docs/Master of Ceremonies_files/divergent.webp deleted file mode 100644 index b779520..0000000 Binary files a/chrono.docs/Master of Ceremonies_files/divergent.webp and /dev/null differ diff --git a/chrono.docs/Master of Ceremonies_files/f.txt b/chrono.docs/Master of Ceremonies_files/f.txt deleted file mode 100644 index 9895e46..0000000 --- a/chrono.docs/Master of Ceremonies_files/f.txt +++ /dev/null @@ -1 +0,0 @@ -(function(){var s = {};(function(){var k=typeof Object.defineProperties=="function"?Object.defineProperty:function(a,d,b){if(a==Array.prototype||a==Object.prototype)return a;a[d]=b.value;return a};function l(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var d=0;d>>0,t[c]=q?p.Symbol(c):"$jscp$"+a+"$"+c),k(g,t[c],{configurable:!0,writable:!0,value:d})))}} var w=q&&typeof u(Object,"assign")=="function"?u(Object,"assign"):function(a,d){if(a==null)throw new TypeError("No nullish arg");a=Object(a);for(var b=1;b=0&&bd)c=d;return decodeURIComponent(a.slice(b+4,c!==-1?c:0).replace(/\+/g," "))};function I(a,d,b,c){function e(){--g;if(g<=0){var h;(h=a.GooglebQhCsO)||(h={});var B=h[d];B&&(delete h[d],h=B[0],typeof h==="function"&&h())}}c=c===void 0?[]:c;for(var g=b.length+1,f={g:0};f.g3?(o=_===r)&&(s=a[(l=a[4])?5:(l=3,3)],a[4]=a[5]=e):a[0]<=p&&((o=n<2&&pr||r>_)&&(a[4]=n,a[5]=r,m.n=_,l=0))}if(o||n>1)return i;throw d=!0,r}return function(o,c,_){if(u>1)throw TypeError("Generator is already running");for(d&&c===1&&p(c,_),l=c,s=_;(t=l<2?e:s)||!d;){a||(l?l<3?(l>1&&(m.n=-1),p(l,s)):m.n=s:m.v=s);try{if(u=2,a){if(l||(o="next"),t=a[o]){if(!(t=t.call(a,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else l===1&&(t=a.return)&&t.call(a),l<2&&(s=TypeError("The iterator does not provide a '"+o+"' method"),l=1);a=e}else if((t=(d=m.n<0)?s:n.call(r,m))!==i)break}catch(t){a=e,l=1,s=t}finally{u=1}}return{value:t,done:d}}})(n,o,a),!0),u}var i={};function l(){}function s(){}function u(){}t=Object.getPrototypeOf;var c=[][r]?t(t([][r]())):(h(t={},r,function(){return this}),t),d=u.prototype=l.prototype=Object.create(c);function m(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,u):(e.__proto__=u,h(e,o,"GeneratorFunction")),e.prototype=Object.create(d),e}return s.prototype=u,h(d,"constructor",u),h(u,"constructor",s),s.displayName="GeneratorFunction",h(u,o,"GeneratorFunction"),h(d),h(d,o,"Generator"),h(d,r,function(){return this}),h(d,"toString",function(){return"[object Generator]"}),(g=function(){return{w:a,m:m}})()}function h(e,t,n,r){var o=Object.defineProperty;try{o({},"",{})}catch(e){o=0}h=function(t,n,r,a){function e(e,n){h(t,e,function(t){return this._invoke(e,n,t)})}n?o?o(t,n,{value:r,enumerable:!a,configurable:!a,writable:!a}):t[n]=r:(e("next",0),e("throw",1),e("return",2))},h(e,t,n,r)}function y(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,o)}function C(e){return function(){var t=this,n=arguments;return new Promise(function(r,o){var a=e.apply(t,n);function i(e){y(a,r,o,i,l,"next",e)}function l(e){y(a,r,o,i,l,"throw",e)}i(void 0)})}}function b(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;t=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(t){l=!0,a=t},f:function(){try{i||n.return==null||n.return()}finally{if(l)throw a}}}}function V(e,t){if(e){if(typeof e=="string")return H(e,t);var n={}.toString.call(e).slice(8,-1);return n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set"?Array.from(e):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?H(e,t):void 0}}function H(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr+1||t<1||t>12||n<1||n>31)}function c(e){return e.replace(/\D/g," ")}function d(e,t,n){var r=0,o=0,a=0;return e>31?(r=e,o=t>12?n:t,a=t>12?t:n):t>31?(r=t,o=n>12?e:n,a=n>12?n:e):(r=n,o=e>12?t:e,a=e>12?e:t),u(r,o,a)?String(r).padStart(4,"0")+String(o).padStart(2,"0")+String(a).padStart(2,"0"):null}function m(e){var t=i(c(e)),n=t.split(" ").filter(function(e){return e.length>0});if(n.length>=3){var r=parseInt(n[0]),o=parseInt(n[1]),a=parseInt(n[2]),l=d(r,o,a);if(l!=null)return l}return n.length===1&&n[0].length===8?n[0]:e}function p(e){return r(e)?e:m(e)}function _(e,n,r){if(e==null)return null;if(typeof e!="string")return e;try{return r?t(e,{lowercase:!0,strip:"whitespace_only"}):p(e)}catch(e){e.message="[normalizeDOB]: ".concat(e.message),s(e)}return e}o.exports=_})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("normalizeSignalsFBEventsEmailType",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsValidationUtils"),t=e.looksLikeHashed,n=e.trim,r=/^[\w!#\$%&\'\*\+\/\=\?\^`\{\|\}~\-]+(:?\.[\w!#\$%&\'\*\+\/\=\?\^`\{\|\}~\-]+)*@(?:[a-z0-9](?:[a-z0-9\-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9\-]*[a-z0-9])?$/i;function i(e){return r.test(e)}function l(e){var r=null;if(e!=null)if(t(e))r=e;else{var o=n(e.toLowerCase());r=i(o)?o:null}return r}o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("normalizeSignalsFBEventsEnumType",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsShared"),t=e.unicodeSafeTruncate,n=a.getFbeventsModules("SignalsFBEventsValidationUtils"),r=n.looksLikeHashed,i=n.trim;function l(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},o=null,a=n.caseInsensitive,l=n.lowercase,s=n.options,u=n.truncate,c=n.uppercase;if(e!=null&&s!=null&&Array.isArray(s)&&s.length)if(typeof e=="string"&&r(e))o=e;else{var d=i(String(e));if(l===!0&&(d=d.toLowerCase()),c===!0&&(d=d.toUpperCase()),u!=null&&u!==0&&(d=t(d,u)),a===!0){for(var m=d.toLowerCase(),p=0;p-1?d:null}return o}o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("normalizeSignalsFBEventsPhoneNumberType",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsLogging"),t=e.logError,n=a.getFbeventsModules("SignalsFBEventsValidationUtils"),r=n.looksLikeHashed,i=/^0*/,l=/[\-@#<>\'\",; ]|\(|\)|\+|[a-z]/gi,s=/(?:(?![0-9\uD800-\uDFFF])[^]|[\uD800-\uDBFF][\uDC00-\uDFFF])/gi;function u(e,n,r){if(!r)try{return d(e)}catch(e){e.message="[normalizePhoneNumber]: ".concat(e.message),t(e)}return c(e)}function c(e){var t=null;if(e!=null)if(r(e))t=e;else{var n=String(e);t=n.replace(l,"").replace(i,"")}return t}function d(e){return e==null?null:r(e)?e:String(e).replace(s,"").replace(i,"")}o.exports=u})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("normalizeSignalsFBEventsPostalCodeType",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsValidationUtils"),t=e.looksLikeHashed,n=e.trim;function r(e){var r=null;if(e!=null&&typeof e=="string")if(t(e))r=e;else{var o=n(String(e).toLowerCase().split("-",1)[0]);o.length>=2&&(r=o)}return r}o.exports=r})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("normalizeSignalsFBEventsStringType",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsUtils"),t=e.keys,n=a.getFbeventsModules("SignalsFBEventsShared"),r=n.unicodeSafeTruncate,i=a.getFbeventsModules("SignalsFBEventsValidationUtils"),l=i.looksLikeHashed,s=i.strip,u=a.getFbeventsModules("SignalsPixelPIIConstants"),c=u.STATE_MAPPINGS,d=u.COUNTRY_MAPPINGS,m=a.getFbeventsModules("SignalsFBEventsLogging"),p=m.logError;function _(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=null;if(e!=null)if(l(e)&&typeof e=="string")t.rejectHashed!==!0&&(n=e);else{var o=String(e);t.strip!=null&&(o=s(o,t.strip)),t.lowercase===!0?o=o.toLowerCase():t.uppercase===!0&&(o=o.toUpperCase()),t.truncate!=null&&t.truncate!==0&&(o=r(o,t.truncate)),t.test!=null&&t.test!==""?n=new RegExp(t.test).test(o)?o:null:n=o}return n}function f(e){return _(e,{strip:"whitespace_and_punctuation"})}function g(e,n){if(e.length===2)return e;if(n[e]!=null)return n[e];var r=U(t(n)),o;try{for(r.s();!(o=r.n()).done;){var a=o.value;if(e.includes(a)){var i=n[a];return i}}}catch(e){r.e(e)}finally{r.f()}return e.toLowerCase()}function h(e,t){if(l(e)||typeof e!="string")return e;var n=e;switch(n=n.toLowerCase().trim(),n=n.replace(/[^a-z]/g,""),n=g(n,t),n.length){case 0:return null;case 1:return n;default:return n.substring(0,2)}}function y(e,t,n){if(e==null)return null;var r=e;if(!n)try{r=h(r,d)}catch(e){e.message="[NormalizeCountry]: "+e.message,p(e)}return _(r,{truncate:2,strip:"all_non_latin_alpha_numeric",test:"^[a-z]+",lowercase:!0})}function C(e,t,n){if(e==null)return null;var r=e;if(!n)try{r=h(r,c)}catch(e){e.message="[NormalizeState]: "+e.message,p(e)}return _(r,{truncate:2,strip:"all_non_latin_alpha_numeric",test:"^[a-z]+",lowercase:!0})}function b(e){return _(e,{strip:"all_non_latin_alpha_numeric",test:"^[a-z]+"})}o.exports={normalize:_,normalizeName:f,normalizeCity:b,normalizeState:C,normalizeCountry:y}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("PixelQueue",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsLogging"),n=t.logWarning,r=a.getFbeventsModules("WebStorage"),i=r.getLocalStorage,l=a.getFbeventsModules("WebStorageMutex"),s=a.getFbeventsModules("SignalsFBEventsPageStatusMonitor"),u=s.initPageStatusMonitor,c=s.subscribeToPageStatus,d=1440*60*1e3,m=30*1e3,p=5;function _(e){var t=e.prev,n=e.next;n&&(n.prev=t),t&&(t.next=n),e.next=null,e.prev=null}function f(e,t){return{item:e,next:null,prev:null,retryCount:0,enqueuedAt:t!=null?t:Date.now()}}function g(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(e){var t=Math.random()*16|0,n=e==="x"?t:t&3|8;return n.toString(16)})}function h(e,t){var n;return e+"^$"+((n=t==null?void 0:t.queueNameSuffix)!==null&&n!==void 0?n:"")}var y=new WeakMap,C=new WeakMap,b=new WeakMap,v=new WeakMap,S=new WeakMap,R=new WeakMap,L=new WeakMap,E=new WeakMap,k=new WeakMap,I=new WeakMap,T=new WeakMap,D=new WeakMap,x=new WeakMap,P=new WeakMap,M=new WeakMap,w=new WeakSet,O=(function(){function t(n,r){var o,a,i=this;$(this,t),A(this,w),F(this,y,void 0),F(this,C,void 0),F(this,b,void 0),F(this,v,void 0),F(this,S,void 0),F(this,R,void 0),F(this,L,void 0),F(this,E,0),F(this,k,void 0),F(this,I,void 0),F(this,T,void 0),F(this,D,void 0),F(this,x,void 0),F(this,P,void 0),F(this,M,void 0);var l={item:null,prev:null,next:null,retryCount:0,enqueuedAt:0};W(y,this,l),W(C,this,l),W(b,this,l.next),W(v,this,n),W(R,this,(o=r==null?void 0:r.queueNameSuffix)!==null&&o!==void 0?o:""),W(S,this,h(n,r)),W(L,this,null),W(E,this,0),W(k,this,(a=r==null?void 0:r.maxAgeInMs)!==null&&a!==void 0?a:d),W(D,this,B(S,this)+"^$"+g()),W(T,this,null),W(x,this,!1),W(P,this,!1),W(M,this,!1),W(I,this,[c(function(e){e==="inactive"&&q(w,i,H).call(i)})]),typeof e!="undefined"&&e.requestAnimationFrame?e.requestAnimationFrame(function(){return q(w,i,z).call(i)}):setTimeout(function(){return q(w,i,z).call(i)},0)}return N(t,[{key:"setHandler",value:function(t){return W(L,this,t),q(w,this,Q).call(this),this}},{key:"enqueue",value:function(t){q(w,this,X).call(this,t),this.isActive()?q(w,this,Q).call(this):q(w,this,J).call(this)}},{key:"dequeueItem",value:function(){if(B(T,this)!=null)return null;for(var e=B(b,this);e&&e.retryCount>=p;)e=e.next;return e?(W(b,this,e.next),e):(W(b,this,null),null)}},{key:"markItemAsCompleted",value:function(t){var e,n,r=t.prev,o=t.next;_(t),B(C,this)===t&&W(C,this,r!=null?r:B(y,this)),B(b,this)===t&&W(b,this,o),W(E,this,(e=B(E,this),n=e--,e)),this.isActive()||q(w,this,J).call(this)}},{key:"markItemAsFailed",value:function(t){var e=t.retryCount||0,n=e+1;t.retryCount=n,!(n>=p)&&(B(C,this)!==t&&(_(t),B(b,this)===t&&W(b,this,t.next),q(w,this,V).call(this,t)),this.isActive()&&q(w,this,Q).call(this))}},{key:"markItem",value:function(t,n){n?this.markItemAsCompleted(t):this.markItemAsFailed(t)}},{key:"length",value:function(){return B(E,this)}},{key:"isActive",value:function(){var e=B(T,this);return e==null?!0:Date.now()-e>m?(q(w,this,G).call(this),!0):!1}},{key:"getFullName",value:function(){return B(S,this)}},{key:"getQueueNameSuffix",value:function(){return B(R,this)}},{key:"disableStorage",value:function(){W(M,this,!0)}},{key:"destroy",value:function(){B(I,this).forEach(function(e){return e()})}}])})();function V(e){var t,n=(t=B(C,this))!==null&&t!==void 0?t:B(y,this);n.next=e,e.prev=n,e.next=null,W(C,this,e),B(b,this)==null&&W(b,this,e)}function H(){B(T,this)==null&&(W(T,this,Date.now()),q(w,this,j).call(this))}function G(){(B(T,this)!=null||!B(x,this))&&(W(x,this,!0),W(T,this,null),q(w,this,z).call(this))}function z(){q(w,this,Y).call(this),q(w,this,K).call(this)}function j(){q(w,this,J).call(this)}function K(){B(E,this)>0&&B(L,this)&&B(L,this).call(this,this)}function Q(){var t=this;if(!B(P,this)&&!(B(E,this)===0||!B(L,this))){W(P,this,!0);var r=function(){try{W(P,t,!1),q(w,t,K).call(t)}catch(e){n(e,"pixel","qualityChecker")}};typeof e!="undefined"&&e.requestAnimationFrame?e.requestAnimationFrame(r):setTimeout(r,0)}}function X(e,t){var n,r,o=f(e,t);q(w,this,V).call(this,o),W(E,this,(n=B(E,this),r=n++,n))}function Y(){var e=this,t=i();if(t){var r=this.getFullName()+"^$",o=new l(r);o.lock(function(o){var a=Date.now()-B(k,e);try{for(var i=0;ia){var c=U(u.items),d;try{for(c.s();!(d=c.n()).done;){var m,p=d.value,_=(m=p.enqueuedAt)!==null&&m!==void 0?m:u.ts,f=p.item;_>a&&q(w,e,X).call(e,f,_)}}catch(e){c.e(e)}finally{c.f()}}}catch(e){}}}}catch(e){n(e,"pixel","qualityChecker")}finally{o.unlock(),q(w,e,Q).call(e)}})}}function J(){var e=i();if(e&&!B(M,this)){var t=q(w,this,Z).call(this);if(t.length===0){e.getItem(B(D,this))!=null&&e.removeItem(B(D,this));return}var r={ts:Date.now(),items:t};try{e.setItem(B(D,this),JSON.stringify(r))}catch(e){n(e,"pixel","qualityChecker")}}}function Z(){for(var e=[],t=B(y,this).next,n=Date.now()-B(k,this);t;)t.enqueuedAt>n&&e.push({item:t.item,enqueuedAt:t.enqueuedAt}),t=t.next;return e}typeof e!="undefined"&&u(),o.exports=O})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsConvertNodeToHTMLElement",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";function e(e){return(typeof HTMLElement=="undefined"?"undefined":G(HTMLElement))==="object"?e instanceof HTMLElement:e!==null&&G(e)==="object"&&e.nodeType===Node.ELEMENT_NODE&&typeof e.nodeName=="string"}function t(t){return e(t)?t:null}o.exports=t})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsEventPayload",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsGuardrail"),t=new WeakMap,n=(function(){function n(){$(this,n),F(this,t,void 0),W(t,this,new Map)}return N(n,[{key:"has",value:function(n){return B(t,this).has(n)}},{key:"get",value:function(n){var e=B(t,this).get(n);return e==null||e.length===0?null:e[e.length-1]}},{key:"getAll",value:function(n){var e=B(t,this).get(n);return e?I(e):null}},{key:"getEventId",value:function(){for(var e=["eid","eid[]",encodeURIComponent("eid[]")],t=0,n=e;t0)return o}return null}},{key:"getAllParams",value:function(){var e=[],n=U(B(t,this).entries()),r;try{for(n.s();!(r=n.n()).done;){var o=R(r.value,2),a=o[0],i=o[1],l=U(i),s;try{for(l.s();!(s=l.n()).done;){var u=s.value;e.push({name:a,value:u})}}catch(e){l.e(e)}finally{l.f()}}}catch(e){n.e(e)}finally{n.f()}return e}},{key:"forEach",value:function(n){var e=U(B(t,this).entries()),r;try{for(e.s();!(r=e.n()).done;){var o=R(r.value,2),a=o[0],i=o[1],l=U(i),s;try{for(l.s();!(s=l.n()).done;){var u=s.value;n(a,u)}}catch(e){l.e(e)}finally{l.f()}}}catch(t){e.e(t)}finally{e.f()}}},{key:"set",value:function(n,r){return B(t,this).set(n,[r]),this}},{key:"setFromArray",value:function(n,r){return r.length>0&&B(t,this).set(n,I(r)),this}},{key:"setAsDict",value:function(t,n){for(var e=0;e1&&arguments[1]!==void 0?arguments[1]:{};if(!e)return p({type:"NO_EVENT_NAME"});var n=u[e];return n?h(e,t,n):_([{eventName:e,type:"NONSTANDARD_EVENT"}])}function h(e,t,o){var a=o.validationSchema,s=[];for(var u in a)if(d.call(a,u)){var c=a[u],m=t[u];if(c){if(c.isRequired!=null&&!d.call(t,u))return p({eventName:e,param:u,type:"REQUIRED_PARAM_MISSING"});if(c.type!=null&&typeof c.type=="string"){var f=!0;switch(c.type){case r:{var g=(typeof m=="string"||typeof m=="number")&&n.test("".concat(m));g&&Number(m)<0&&s.push({eventName:e||"null",param:u,type:"NEGATIVE_EVENT_PARAM"}),f=g}break;case i:f=typeof m=="string"&&!!l[m.toUpperCase()];break}if(!f)return p({eventName:e,param:u,type:"INVALID_PARAM"})}}}return _(s)}function y(e,n){var r=g(e,n);if(r.error&&t(r.error),r.warnings)for(var o=0;o0;){var t=e.eventQueue.shift();n(e,t)}}function n(t,n){var r=I(t.asyncParamFetchers.values()),o=U(r),a;try{for(o.s();!(a=o.n()).done;){var i=a.value,l=i.callback;l!=null&&l(i.result,n,t)}}catch(e){o.e(e)}finally{o.f()}e(n,t)}function r(e){var n=I(e.asyncParamFetchers.keys());Promise.allSettled(I(e.asyncParamFetchers.values()).map(function(e){return e.request})).then(function(r){e.asyncParamPromisesAllSettled=!0,r.forEach(function(t,r){if(t.status==="fulfilled"){var o=n[r],a=e.asyncParamFetchers.get(o);a!=null&&a.result==null&&(a.result=t.value,e.asyncParamFetchers.set(o,a))}}),t(e)})}o.exports={flushAsyncParamEventQueue:t,registerAsyncParamAllSettledListener:r,appendAsyncParamsAndSendEvent:n}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsAutomaticPageViewEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent");function t(){return[]}o.exports=new e(t)})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsBaseEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsUtils"),t=e.map,n=e.keys,r=(function(){function e(t){$(this,e),S(this,"_regKey",0),S(this,"_subscriptions",{}),this._coerceArgs=t||null}return N(e,[{key:"listen",value:function(t){var e=this,n="".concat(this._regKey++);return this._subscriptions[n]=t,function(){delete e._subscriptions[n]}}},{key:"listenOnce",value:function(t){var e=null,n=function(){return e&&e(),e=null,t.apply(void 0,arguments)};return e=this.listen(n),e}},{key:"trigger",value:function(){for(var e=this,r=arguments.length,o=new Array(r),a=0;a0&&u!=null){var c=u.selectedMatchKeys;for(var d in o)c.indexOf(d)>=0&&(r.userDataFormFields[d]=o[d],l!=null&&d in l&&(r.censoredUserDataFormatFormFields[d]=l[d]),a!=null&&d in a&&(r.alternateUserDataFormFields[d]=a[d]));i.trigger(r)}}o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsESTRuleEngineConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({experimentName:t.allowNull(t.string())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsEvents",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsCheckGateEvent"),n=a.getFbeventsModules("SignalsFBEventsConfigLoadedEvent"),r=a.getFbeventsModules("SignalsFBEventsFiredEvent"),i=a.getFbeventsModules("SignalsFBEventsGetCustomParametersEvent"),l=a.getFbeventsModules("SignalsFBEventsGetIWLParametersEvent"),s=a.getFbeventsModules("SignalsFBEventsIWLBootStrapEvent"),u=a.getFbeventsModules("SignalsFBEventsPIIAutomatchedEvent"),c=a.getFbeventsModules("SignalsFBEventsPIIConflictingEvent"),d=a.getFbeventsModules("SignalsFBEventsPIIInvalidatedEvent"),m=a.getFbeventsModules("SignalsFBEventsPluginLoadedEvent"),p=a.getFbeventsModules("SignalsFBEventsSetEventIDEvent"),_=a.getFbeventsModules("SignalsFBEventsSetIWLExtractorsEvent"),f=a.getFbeventsModules("SignalsFBEventsSetIWLParameterRulesEvent"),g=a.getFbeventsModules("SignalsFBEventsSetESTRules"),h=a.getFbeventsModules("SignalsFBEventsSetCCRules"),y=a.getFbeventsModules("SignalsFBEventsValidateCustomParametersEvent"),C=a.getFbeventsModules("SignalsFBEventsLateValidateCustomParametersEvent"),b=a.getFbeventsModules("SignalsFBEventsValidateUrlParametersEvent"),v=a.getFbeventsModules("SignalsFBEventsValidateGetClickIDFromBrowserProperties"),S=a.getFbeventsModules("SignalsFBEventsValidateGetIMEFromBrowserPropertiesPlatform"),R=a.getFbeventsModules("SignalsFBEventsExtractPII"),L=a.getFbeventsModules("SignalsFBEventsGetAutomaticParametersEvent"),E=a.getFbeventsModules("SignalsFBEventsSendEventEvent"),k=a.getFbeventsModules("SignalsFBEventsAutomaticPageViewEvent"),I=a.getFbeventsModules("SignalsFBEventsWebChatEvent"),T={gateCheckEvent:t,configLoaded:n,execEnd:new e,fired:r,getCustomParameters:i,getIWLParameters:l,iwlBootstrap:s,piiAutomatched:u,piiConflicting:c,piiInvalidated:d,pluginLoaded:m,setEventId:p,setIWLExtractors:_,setIWLParameterRules:f,setESTRules:g,setCCRules:h,validateCustomParameters:y,lateValidateCustomParameters:C,validateUrlParameters:b,getClickIDFromBrowserProperties:v,getIMEFromBrowserPropertiesPlatform:S,extractPii:R,getAutomaticParameters:L,SendEventEvent:E,automaticPageView:k,webchatEvent:I};o.exports=T})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsEventValidationConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({unverifiedEventNames:t.allowNull(t.arrayOf(t.string())),enableEventSanitization:t.allowNull(t.boolean()),restrictedEventNames:t.allowNull(t.arrayOf(t.string()))});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsExperimentNames",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";o.exports={NO_OP_EXPERIMENT:"no_op_exp",AUTOMATIC_PARAMETERS_JSON_AUTO_FIX:"automatic_parameters_json_auto_fix",BUTTON_CLICK_OPTIMIZE_EXPERIMENT_V2:"button_click_optimize_experiment_v2",HIGH_FETCH_PRIORITY_IMAGE:"high_fetch_priority_image",MICRODATA_REFACTOR_MIGRATION_AUTOMATIC_PARAMETERS:"microdata_refactor_migration_automatic_parameters",MICRODATA_REFACTOR_MIGRATION_PAGE_META_DATA:"microdata_refactor_migration_page_meta_data",COOKIE_TTL_FIX:"cookie_ttl_fix",IN_MEMORY_COOKIE_JAR:"in_memory_cookie_jar",PAGE_TITLE_OG_FALLBACK:"page_title_og_fallback"}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsExperimentsTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.arrayOf(t.objectWithFields({allocation:t.number(),code:t.string(),name:t.string(),passRate:t.number()}));o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsExperimentsV2Typedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.arrayOf(t.objectWithFields({evaluationType:t.enumeration({eventlevel:"EVENT_LEVEL",pageloadlevel:"PAGE_LOAD_LEVEL"}),universe:t.string(),allocation:t.number(),code:t.string(),name:t.string(),passRate:t.number()}));o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsExtractPII",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsPixelTypedef"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.Typed,i=n.coerce;function l(e,n,o){var a=i(e,t),l=r.allowNull(r.object()),s=r.allowNull(r.object());return a!=null?[{pixel:a,form:l,button:s}]:null}var s=new e(l);o.exports=s})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsFBQ",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var r=a.getFbeventsModules("SignalsEventValidation"),i=a.getFbeventsModules("handleEventIdOverride"),l=a.getFbeventsModules("SignalsFBEventsConfigStore"),s=a.getFbeventsModules("SignalsFBEventsEvents"),u=s.configLoaded,c=a.getFbeventsModules("SignalsFBEventsFireLock"),d=a.getFbeventsModules("SignalsFBEventsJSLoader"),m=a.getFbeventsModules("SignalsFBEventsLogging"),p=a.getFbeventsModules("SignalsFBEventsOptIn"),_=a.getFbeventsModules("SignalsFBEventsUtils"),f=a.getFbeventsModules("SignalsFBEventsGetValidUrl"),g=a.getFbeventsModules("SignalsFBEventsResolveLink"),h=a.getFbeventsModules("SignalsFBEventsQEV2"),y=a.getFbeventsModules("SignalsFBEventsModuleEncodings"),C=a.getFbeventsModules("SignalsParamList"),b=a.getFbeventsModules("signalsFBEventsSendEvent"),R=b.sendEvent,L=a.getFbeventsModules("SignalsFBEventsAsyncParamUtils"),E=L.registerAsyncParamAllSettledListener,k=L.flushAsyncParamEventQueue,T=_.each,D=_.keys,x=_.map,P=_.some,M=m.logError,w=m.logUserError,A=a.getFbeventsModules("SignalsFBEventsPixelQueueState"),F=A.trySetQueueHandler,O={AutomaticMatching:!0,AutomaticMatchingForPartnerIntegrations:!0,DefaultCustomData:!0,Buffer:!0,CommonIncludes:!0,FirstPartyCookies:!0,IWLBootstrapper:!0,IWLParameters:!0,IWLParameterRules:!0,IdentifyIntegration:!0,InferredEvents:!0,Microdata:!0,MicrodataJsonLd:!0,OpenBridge:!0,ParallelFire:!0,ProhibitedSources:!0,Timespent:!0,UnwantedData:!0,LocalComputation:!0,IABPCMAEBridge:!0,BrowserProperties:!0,ESTRuleEngine:!0,EventValidation:!0,ProtectedDataMode:!0,VVPClientSide:!0,ClientHint:!0,CCRuleEvaluator:!0,ProhibitedPixels:!0,LastExternalReferrer:!0,CookieDeprecationLabel:!0,UnwantedEvents:!0,UnwantedEventNames:!0,UnwantedParams:!0,StandardParamChecks:!0,ShopifyAppIntegratedPixel:!0,ShopifySandbox:!0,clientSidePixelForking:!0,ShadowTest:!0,TopicsAPI:!0,Gating:!0,AutomaticParameters:!0,LeadEventId:!0,EngagementData:!0,TriggerSgwPixelTrackCommand:!0,DomainBlocking:!0,WebChat:!0,ScrollDepth:!0,PageMetadata:!0,WebsitePerformance:!0,ImagePixelOpenBridge:!0,SmartSetup:!0,BotBlocking:!0,URLParamSchematization:!0,URLMetadata:!0,PrivacyPreservingDataLookup:!0,GoogleAnalyticsBridge:!0,BrowserPropertiesPlatform:!0,MicrodataFieldTransmission:!0,RegexParamFilter:!0,MicrodataCoverage:!0,Timezone:!0},B={Track:0,TrackCustom:4,TrackSingle:1,TrackSingleCustom:2,TrackSingleSystem:3,TrackSystem:5},W="global_config",q=200,U=["InferredEvents","Microdata","AutomaticParameters","EngagementData","PageMetadata","ScrollDepth","WebChat","MicrodataCoverage","MicrodataFieldTransmission"],V={AutomaticSetup:U},H={AutomaticMatching:["inferredevents","identity"],AutomaticMatchingForPartnerIntegrations:["automaticmatchingforpartnerintegrations"],CommonIncludes:["commonincludes"],DefaultCustomData:["defaultcustomdata"],FirstPartyCookies:["cookie"],IWLBootstrapper:["iwlbootstrapper"],IWLParameters:["iwlparameters"],IWLParameterRules:["iwlparameterrules"],ESTRuleEngine:["estruleengine"],IdentifyIntegration:["identifyintegration"],Buffer:["buffer"],InferredEvents:["inferredevents","identity"],Microdata:["microdata","identity"],MicrodataJsonLd:["jsonld_microdata"],ParallelFire:["parallelfire"],ProhibitedSources:["prohibitedsources"],Timespent:["timespent"],UnwantedData:["unwanteddata"],LocalComputation:["localcomputation"],IABPCMAEBridge:["iabpcmaebridge"],BrowserProperties:["browserproperties"],EventValidation:["eventvalidation"],ProtectedDataMode:["protecteddatamode"],VVPClientSide:["vvp"],ClientHint:["clienthint"],CCRuleEvaluator:["ccruleevaluator"],ProhibitedPixels:["prohibitedpixels"],LastExternalReferrer:["lastexternalreferrer"],CookieDeprecationLabel:["cookiedeprecationlabel"],UnwantedEvents:["unwantedevents"],UnwantedEventNames:["unwantedeventnames"],UnwantedParams:["unwantedparams"],ShopifyAppIntegratedPixel:["shopifyappintegratedpixel"],ShopifySandbox:["shopifysandbox"],clientSidePixelForking:["clientsidepixelforking"],TopicsAPI:["topicsapi"],Gating:["gating"],AutomaticParameters:["automaticparameters"],LeadEventId:["leadeventid"],EngagementData:["engagementdata"],TriggerSgwPixelTrackCommand:["triggersgwpixeltrackcommand"],DomainBlocking:["domainblocking"],WebChat:["webchat"],ScrollDepth:["scrolldepth"],PageMetadata:["pagemetadata"],WebsitePerformance:["websiteperformance"],ImagePixelOpenBridge:["imagepixelopenbridge"],SmartSetup:["smartsetup"],BotBlocking:["botblocking"],URLParamSchematization:["urlparamschematization"],URLMetadata:["urlmetadata"],PrivacyPreservingDataLookup:["privacypreservingdatalookup"],GoogleAnalyticsBridge:["googleanalyticsbridge"],BrowserPropertiesPlatform:["browserpropertiesplatform"],MicrodataFieldTransmission:["microdatafieldtransmission"],RegexParamFilter:["regexparamfilter"],MicrodataCoverage:["microdatacoverage"],Timezone:["timezone"]};function G(e){return!!(O[e]||V[e])}var z=function(t){var e=t.pixelID,n=t.version,r=t.releaseSegment,o=t.noMin,a=t.domain,i=t.optinMetaEnabledCapi,l=new C(function(e){return{finalValue:e}});return l.append("v",n),l.append("r",r),o===!0&&l.append("no_min",!0),a!=null&&a!=""&&l.append("domain",a),i===!0&&l.append("optin_meta_enabled_capi",!0),y.addEncodings(l),"".concat(d.CONFIG.CDN_BASE_URL,"signals/config/").concat(e,"?").concat(l.toPayload().toQueryString())};function j(e){var t=e.pixelID,n=e.version,r=e.releaseSegment,o=e.domain,a=e.noMin,i=e.optinMetaEnabledCapi;d.loadJSFile(z({pixelID:t,version:n,releaseSegment:r,noMin:a,domain:o,optinMetaEnabledCapi:i}))}var K=(function(){function o(e,t){var n=this;$(this,o),S(this,"VALID_FEATURES",O),S(this,"optIns",new p(V)),S(this,"configsLoaded",{}),S(this,"locks",c.global),S(this,"pluginConfig",l),S(this,"disableFirstPartyCookies",!1),S(this,"disableAutoConfig",!1),S(this,"disableSmartSetup",!1),S(this,"asyncParamFetchers",new Map),S(this,"eventQueue",[]),S(this,"asyncParamPromisesAllSettled",!0),S(this,"optinMetaEnabledCapiPixels",new Set),S(this,"disableAsyncParamBackupTimeout",!1),S(this,"fbp",null),this.VERSION=e.version,this.RELEASE_SEGMENT=e._releaseSegment,this.pixelsByID=t,this.fbq=e,T(e.pendingConfigs||[],function(e){return n.locks.lockConfig(e)})}return N(o,[{key:"optIn",value:function(t,n){var e=this,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;if(typeof n!="string"||!G(n))throw new Error('Invalid Argument: "'+n+'" is not a valid opt-in feature');return G(n)&&(this.optIns.optIn(t,n,r),T([n].concat(I(V[n]||[])),function(t){H[t]&&T(H[t],function(t){return e.fbq.loadPlugin(t)})})),this}},{key:"optOut",value:function(t,n){return this.optIns.optOut(t,n),this}},{key:"consent",value:function(t){return t==="revoke"?this.locks.lockConsent():t==="grant"?this.locks.unlockConsent():w({action:t,type:"INVALID_CONSENT_ACTION"}),this}},{key:"setUserProperties",value:function(t,n){var e=this.pluginConfig.get(null,"dataProcessingOptions");if(!(e!=null&&e.dataProcessingOptions.includes("LDU"))){if(!_.hasOwn(this.pixelsByID,t)){w({pixelID:t,type:"PIXEL_NOT_INITIALIZED"});return}this.trackSingleSystem({systemCategory:"user_properties",pixel:t,eventName:"UserProperties",customData:v({},n)})}}},{key:"trackSingle",value:function(t,n,o,a){return r.validateEventAndLog(n,o),this.trackSingleGeneric({pixel:t,eventName:n,customData:o,trackMethod:B.TrackSingle,eventData:a})}},{key:"trackSingleCustom",value:function(t,n,r,o){return this.trackSingleGeneric({pixel:t,eventName:n,customData:r,trackMethod:B.TrackSingleCustom,eventData:o})}},{key:"trackSingleSystem",value:function(t){var e=t.systemCategory,n=t.pixel,r=t.eventName,o=t.customData,a=t.eventData,i=t.customParams,l=t.experimentId;return this.trackSingleGeneric({pixel:n,eventName:r,customData:o,trackMethod:B.TrackSingleSystem,eventData:a||null,systemCategory:e,customParams:i,experimentId:l})}},{key:"trackSingleGeneric",value:function(t){var e=t.pixel,n=t.eventName,r=t.customData,o=t.trackMethod,a=t.eventData,i=t.systemCategory,l=t.customParams,s=t.experimentId,u=typeof e=="string"?e:e.id,c=s;if((c==null||c==="")&&(c=Date.now().toString()),!_.hasOwn(this.pixelsByID,u)){var d={pixelID:u,type:"PIXEL_NOT_INITIALIZED"};return i==null?w(d):M(new Error(d.type+" "+d.pixelID)),this}var m=this.getDefaultSendData(u,n,a,c);return m.customData=r,i!=null&&(m.customParameters={es:i}),l!=null&&(m.customParameters=v(v({},m.customParameters),l)),m.customParameters=v(v({},m.customParameters),{},{tm:"".concat(o)}),this.fire(m,!1),this}},{key:"_validateSend",value:function(t,n){if(!t.eventName||!t.eventName.length){var e=h.isInMetaQEControl(t.pixelId);if(!e)t.eventName="",t.customParameters=v(v({},t.customParameters),{},{"ie[d]":"1"}),w({type:"NO_EVENT_NAME"});else throw new Error("Event name not specified")}if(!t.pixelId||!t.pixelId.length)throw new Error("PixelId not specified");if(t.set&&T(x(D(t.set),function(e){return r.validateMetadata(e)}),function(e){if(e.error)throw new Error(e.error);e.warnings.length&&T(e.warnings,w)}),n){var o=r.validateEvent(t.eventName,t.customData||{});if(o.error)throw new Error(o.error);o.warnings&&o.warnings.length&&T(o.warnings,w)}return this}},{key:"_argsHasAnyUserData",value:function(t){var e=t.userData!=null&&D(t.userData).length>0,n=t.userDataFormFields!=null&&D(t.userDataFormFields).length>0;return e||n}},{key:"fire",value:function(n){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(this._validateSend(n,t),this._argsHasAnyUserData(n)&&!this.fbq.loadPlugin("identity")||this.locks.isLocked())return e.fbq("fire",n),this;var r=n.customParameters,o="";r&&r.es&&typeof r.es=="string"&&(o=r.es),n.customData=n.customData||{};var a=this.fbq.getEventCustomParameters(this.getPixel(n.pixelId),n.eventName,n.customData,o,n.eventData);return i(n.eventData,n.customData||{},a,n.pixelId,n.eventName),r&&T(D(r),function(e){if(a.containsKey(e)){var t=h.isInMetaQEControl(n.pixelId);if(!t)a.replaceEntry(e,r[e]),a.append("ie[c]","1");else throw new Error("Custom parameter ".concat(e," already specified."))}else a.append(e,r[e])}),R({customData:n.customData,customParams:a,eventName:n.eventName,eventData:n.eventData,id:n.pixelId,piiTranslator:null,experimentId:n.experimentId},this),this}},{key:"callMethod",value:function(t){var e=t[0],n=Array.prototype.slice.call(t,1);if(typeof e!="string"){w({type:"FBQ_NO_METHOD_NAME"});return}if(typeof this[e]=="function")try{this[e].apply(this,n)}catch(e){M(e)}else w({method:e,type:"INVALID_FBQ_METHOD"})}},{key:"getDefaultSendData",value:function(t,n,r,o){var e=this.getPixel(t),a={eventData:r||{},eventName:n,pixelId:t,experimentId:o};return e&&(e.userData&&(a.userData=e.userData),e.agent!=null&&e.agent!==""?a.set={agent:e.agent}:this.fbq.agent!=null&&this.fbq.agent!==""&&(a.set={agent:this.fbq.agent})),a}},{key:"getOptedInPixels",value:function(t){var e=this;return this.optIns.listPixelIds(t).map(function(t){return e.pixelsByID[t]})}},{key:"getPixel",value:function(t){return this.pixelsByID[t]}},{key:"loadConfig",value:function(r){if(!(this.fbq.disableConfigLoading===!0||_.hasOwn(this.configsLoaded,r))&&(this.locks.lockConfig(r),!this.fbq.pendingConfigs||P(this.fbq.pendingConfigs,function(e){return e===r})===!1)){var e=n.href,o=t.referrer,a=g(e,o,{google:!0}),i=f(a),l="";i!=null&&(l=i.hostname),j({pixelID:r,version:this.VERSION,releaseSegment:this.RELEASE_SEGMENT!=null?this.RELEASE_SEGMENT:"stable",domain:l,noMin:this.fbq._no_min,optinMetaEnabledCapi:this.optinMetaEnabledCapiPixels.has(r)})}}},{key:"configLoaded",value:function(t){var e=this;this.configsLoaded[t]=!0,u.trigger(t),this.locks.releaseConfig(t),F(t,this.fbq.version,this.fbq._releaseSegment,this.pluginConfig.get(t,"qualityChecker")),t!==W&&(E(this),this.disableAsyncParamBackupTimeout||setTimeout(function(){k(e)},q))}},{key:"skipOpenbridge",value:function(t){return this.pluginConfig.set(t,"skipOpenbridge",{enabled:!0}),this}},{key:"optinMetaEnabledCapi",value:function(t){return this.optinMetaEnabledCapiPixels.add(t),this}}])})();o.exports=K})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsFeatureGate",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsConfigStore");function t(e,t){return isNaN(t)?!1:n(e,t.toString())}function n(t,n){var r=e.get(n,"gating");if(r==null||r.gatings==null)return!1;var o=r.gatings.find(function(e){return e!=null&&e.name===t});return o!=null&&o.passed===!0}o.exports=t})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsFillParamList",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsParamList"),n=a.getFbeventsModules("SignalsFBEventsUtils"),r=n.hasOwn,i=a.getFbeventsModules("signalsFBEventsGetIsWebWorker"),l=a.getFbeventsModules("SignalsFBEventsQE"),s=a.getFbeventsModules("SignalsFBEventsQEV2"),u=a.getFbeventsModules("SignalsFBEventsComparedManagers"),c=e.top!==e;function d(n){var o=n.customData,a=n.customParams,d=n.eventName,m=n.id,p=n.piiTranslator,_=n.documentLink,f=n.referrerLink,g=n.timestamp,h=n.experimentId,y=o!=null?v({},o):null,C=u.getComparedURL();r(n,"documentLink")?C=_:n.documentLink=C;var b=u.getComparedReferrer();r(n,"referrerLink")?b=f:n.referrerLink=b;var S=new t(p);S.append("id",m),S.append("ev",d),S.append("dl",C),S.append("rl",b),S.append("if",c),S.append("ts",g),S.append("iw",i()),S.append("cd",y),S.append("sw",e.screen.width),S.append("sh",e.screen.height),a&&S.addRange(a);var R=l.get();R!=null&&S.append("exp",l.getCode()),s.isInTest("event_level_no_op_experiment",h);var L=m==null?void 0:m.toString(),E=s.getExperimentResultParams(h,L);return E!=null&&E.length>0&&S.append("expv2",E),S}o.exports=d})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsFilterProtectedModeEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.Typed,r=a.getFbeventsModules("SignalsFBEventsMessageParamsTypedef"),i=new e(n.tuple([r]));o.exports=i})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsFiredEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsEventPayload");function n(e,n){var r=null;(e==="GET"||e==="POST"||e==="BEACON"||e==="FETCH")&&(r=e);var o=n instanceof t?n:null;return r!=null&&o!=null?[r,o]:null}var r=new e(n);o.exports=r})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsFireEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsLogging"),t=e.logError,n=e.logInfo,r=a.getFbeventsModules("SignalsFBEventsEvents"),i=r.fired,l=a.getFbeventsModules("SignalsFBEventsQE"),s=a.getFbeventsModules("SignalsFBEventsExperimentNames"),u=s.NO_OP_EXPERIMENT,c=a.getFbeventsModules("SignalsFBEventsQEV2"),d=a.getFbeventsModules("signalsFBEventsSendBeacon"),m=a.getFbeventsModules("signalsFBEventsSendGET"),p=a.getFbeventsModules("signalsFBEventsSendFormPOST"),_=a.getFbeventsModules("signalsFBEventsSendFetch"),f=a.getFbeventsModules("SignalsFBEventsForkEvent"),g=a.getFbeventsModules("SignalsFBEventsGetTimingsEvent"),h=a.getFbeventsModules("signalsFBEventsGetIsChrome"),y=a.getFbeventsModules("signalsFBEventsFillParamList"),C=a.getFbeventsModules("signalsFBEventsFeatureGate"),b="SubscribedButtonClick";function v(e){f.trigger(e),e.id==="568414510204424"&&n(new Error("Event fired for pixel 568414510204424"),"pixel",e.eventName);var t=y(e);g.trigger(t),l.isInTest(u);var r=t.toPayload();S(r,e.experimentId)}function S(e,n){var r=e.get("ev"),o=!h();if(o&&r===b&&d(e)){i.trigger("BEACON",e);return}var a=e.get("id"),l=!c.isInMetaQEControl(a),s=c.getExperimentResultParams(n,a);if(m(e,{highFetchPriority:l,expv2:s})){i.trigger("GET",e);return}if(o&&d(e)){i.trigger("BEACON",e);return}var u=a!=null&&C("shopify_sandbox_fetch_fallback",a);u?p(e,void 0,function(e){e.set("ie[i]","1"),_(e).then(function(){i.trigger("FETCH",e)}).catch(function(e){t(e,"pixel","signalsFBEventsFireEvent")})}):p(e),i.trigger("POST",e)}o.exports=v})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsFireLock",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(e){"use strict";var t=a.getFbeventsModules("SignalsFBEventsUtils"),n=t.each,r=t.hasOwn,i=t.keys,l=(function(){function e(){$(this,e),S(this,"_locks",{}),S(this,"_callbacks",[])}return N(e,[{key:"lock",value:function(t){this._locks[t]=!0}},{key:"release",value:function(t){r(this._locks,t)&&(delete this._locks[t],i(this._locks).length===0&&n(this._callbacks,function(e){return e(t)}))}},{key:"onUnlocked",value:function(t){this._callbacks.push(t)}},{key:"isLocked",value:function(){return i(this._locks).length>0}},{key:"lockPlugin",value:function(t){this.lock("plugin:".concat(t))}},{key:"releasePlugin",value:function(t){this.release("plugin:".concat(t))}},{key:"lockConfig",value:function(t){this.lock("config:".concat(t))}},{key:"releaseConfig",value:function(t){this.release("config:".concat(t))}},{key:"lockConsent",value:function(){this.lock("consent")}},{key:"unlockConsent",value:function(){this.release("consent")}}])})();e=l,S(l,"global",new e),o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsForkEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsParamList"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.Typed,i=r.objectWithFields({customData:r.allowNull(r.object()),customParams:function(n){return n instanceof t?n:void 0},eventName:r.string(),id:r.string(),piiTranslator:function(t){return typeof t=="function"?t:void 0},documentLink:r.allowNull(r.string()),referrerLink:r.allowNull(r.string())}),l=new e(r.tuple([i]));o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsGatingConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({gatings:t.arrayOf(t.allowNull(t.objectWithFields({name:t.allowNull(t.string()),passed:t.allowNull(t.boolean())})))});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsGetAutomaticParametersEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.Typed,r=t.coerce;function i(e,t){var o=r(e,n.string()),a=r(t,n.string());return o!=null&&a!=null?[o,a]:null}var l=new e(i);o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsGetCustomParametersEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsPixelTypedef"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.Typed,i=n.coerce;function l(e,n,o,a,l){var s=i(e,t),u=i(n,r.string()),c={};o!=null&&G(o)==="object"&&(c=o);var d=a!=null&&typeof a=="string"?a:null,m={};return l!=null&&G(l)==="object"&&(m=l),s!=null&&u!=null?[s,u,c,d,m]:null}var s=new e(l);o.exports=s})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsGetIsChrome",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";function t(){var t=e.chrome,n=e.navigator,r=n.vendor,o=e.opr!==void 0,a=n.userAgent.indexOf("Edg")>-1,i=n.userAgent.match("CriOS");return!i&&t!==null&&t!==void 0&&r==="Google Inc."&&o===!1&&a===!1}o.exports=t})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsGetIsWebWorker",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";function e(){try{return typeof WorkerGlobalScope!="undefined"&&self instanceof WorkerGlobalScope||typeof WorkerNavigator!="undefined"||typeof WorkerLocation!="undefined"||typeof DedicatedWorkerGlobalScope!="undefined"}catch(e){return!1}}o.exports=e})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsGetIWLParametersEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsConvertNodeToHTMLElement"),n=a.getFbeventsModules("SignalsFBEventsPixelTypedef"),r=a.getFbeventsModules("SignalsFBEventsTyped"),i=r.coerce;function l(){for(var e=arguments.length,r=new Array(e),o=0;o0&&e<1e4}]})),enablePageHash:t.allowNull(t.boolean())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsMicrodataCoverageConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({knownFields:t.arrayOf(t.lowercaseString()),ignorePatterns:t.arrayOf(t.string()),maxUnknownFields:t.number()}),r=t.objectWithFields({version:t.string(),jsonLd:t.allowNull(n),openGraph:t.allowNull(n),schemaOrg:t.allowNull(n),unknownFieldSamplingRate:t.allowNull(t.number()),samplingRate:t.allowNull(t.number())});o.exports={SignalsFBEventsMicrodataCoverageSourceConfigTypedef:n,SignalsFBEventsMicrodataCoverageConfigTypedef:r}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsMicrodataExtractionConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=e.enforce,r=t.objectWithFields({schemaOrgPropertyNames:t.allowNull(t.arrayOf(t.lowercaseString())),jsonLdPropertyNames:t.allowNull(t.arrayOf(t.lowercaseString())),openGraphPropertyNames:t.allowNull(t.arrayOf(t.lowercaseString())),dublinCorePropertyNames:t.allowNull(t.arrayOf(t.lowercaseString())),twitterCardPropertyNames:t.allowNull(t.arrayOf(t.lowercaseString())),rdfaPropertyNames:t.allowNull(t.arrayOf(t.lowercaseString())),samplingRate:t.allowNull(t.number())}),i=t.objectWithFields({schemaOrgPropertyNames:t.allowNull(t.arrayOf(t.lowercaseString())),jsonLdTypeNames:t.allowNull(t.arrayOf(t.lowercaseString())),openGraphTypeNames:t.allowNull(t.arrayOf(t.lowercaseString())),openGraphTypeHints:t.allowNull(t.arrayOf(t.lowercaseString())),dublinCoreTypeHints:t.allowNull(t.arrayOf(t.lowercaseString())),twitterCardTypeNames:t.allowNull(t.arrayOf(t.lowercaseString())),twitterCardTypeHints:t.allowNull(t.arrayOf(t.lowercaseString())),rdfaTypeNames:t.allowNull(t.arrayOf(t.lowercaseString())),fields:t.allowNull(t.mapOf(function(e){return n(e,r)})),objects:t.allowNull(t.mapOf(function(e){return n(e,i)})),maxObjects:t.allowNull(t.number()),samplingRate:t.allowNull(t.number())}),l=t.objectWithFields({objects:t.allowNull(t.mapOf(function(e){return n(e,i)})),version:t.string()});o.exports={SignalsFBEventsMicrodataFieldConfigTypedef:r,SignalsFBEventsMicrodataObjectConfigTypedef:i,SignalsFBEventsMicrodataGlobalConfigTypedef:l}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsMicrodataFieldTransmissionConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsMicrodataExtractionConfigTypedef"),t=e.SignalsFBEventsMicrodataGlobalConfigTypedef,n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.Typed,i=n.enforce,l=r.objectWithFields({schema:r.allowNull(function(e){return i(e,t)}),samplingRate:r.allowNull(r.number()),fbeventsCacheTtlMs:r.allowNull(r.number())});o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsMobileAppBridge",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsTelemetry"),n=a.getFbeventsModules("SignalsFBEventsUtils"),r=n.each,i=n.hasOwn,l="fbmq-0.1",s={AddPaymentInfo:"fb_mobile_add_payment_info",AddToCart:"fb_mobile_add_to_cart",AddToWishlist:"fb_mobile_add_to_wishlist",CompleteRegistration:"fb_mobile_complete_registration",InitiateCheckout:"fb_mobile_initiated_checkout",Other:"other",Purchase:"fb_mobile_purchase",Search:"fb_mobile_search",ViewContent:"fb_mobile_content_view"},u={content_ids:"fb_content_id",content_type:"fb_content_type",currency:"fb_currency",num_items:"fb_num_items",search_string:"fb_search_string",value:"_valueToSum",contents:"fb_content"},c={};function d(e){return"fbmq_"+e[1]}function m(t){if(i(c,t[0])&&i(c[t[0]],t[1]))return!0;var n=e[d(t)],r=n&&n.getProtocol.call&&n.getProtocol()===l?n:null;return r!==null&&(c[t[0]]=c[t[0]]||{},c[t[0]][t[1]]=r),r!==null}function p(e){var t=[],n=c[e.id]||{};for(var r in n)i(n,r)&&t.push(n[r]);return t}function _(e){return p(e).length>0}function f(e){return i(s,e)?s[e]:e}function g(e){return i(u,e)?u[e]:e}function h(e){if(typeof e=="string")return e;if(typeof e=="number")return isNaN(e)?void 0:e;try{return JSON.stringify(e)}catch(e){}if(e.toString&&e.toString.call)return e.toString()}function y(e){var t={};if(e!=null&&G(e)==="object"){for(var n in e)if(i(e,n)){var r=h(e[n]);r!=null&&(t[g(n)]=r)}}return t}var C=0;function b(){var e=C;C=0,t.logMobileNativeForwarding(e)}function v(e,t,n){r(p(e),function(r){return r.sendEvent(e.id,f(t),JSON.stringify(y(n)))}),C++,setTimeout(b,0)}o.exports={pixelHasActiveBridge:_,registerBridge:m,sendEvent:v}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsModuleEncodings",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.coerce,r=a.getFbeventsModules("SignalsFBEventsModuleEncodingsTypedef"),i=a.getFbeventsModules("SignalsFBEventsTyped"),l=i.Typed,s=a.getFbeventsModules("SignalsFBEventsUtils"),u=s.keys,c=(function(){function t(){$(this,t)}return N(t,[{key:"setModuleEncodings",value:function(t){var e=n(t,r);e!=null&&(this.moduleEncodings=e)}},{key:"addEncodings",value:function(r){if(!(e.fbq==null||e.fbq.__fbeventsResolvedModules==null)&&this.moduleEncodings!=null){var t=n(e.fbq.__fbeventsResolvedModules,l.object());if(t!=null){var o=[],a=this.moduleEncodings.map;if(a!=null){var i=U(u(t)),s;try{for(i.s();!(s=i.n()).done;){var c=s.value;c in a&&o.push(a[c])}}catch(e){i.e(e)}finally{i.f()}}o.length>0&&(this.moduleEncodings.hash!=null&&r.append("hme",this.moduleEncodings.hash),r.append("ex_m",o.join(",")))}}}}])})();o.exports=new c})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsModuleEncodingsTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({map:t.allowNull(t.object()),hash:t.allowNull(t.string())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsNetworkConfig",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var e={ENDPOINT:"https://www.facebook.com/tr/",INSTAGRAM_TRIGGER_ATTRIBUTION:"https://www.instagram.com/tr/",TOPICS_API_ENDPOINT:"https://www.facebook.com/privacy_sandbox/topics/registration/"};o.exports=e})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsNormalizers",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("normalizeSignalsFBEventsStringType"),t=e.normalize,n=e.normalizeState,r=e.normalizeCountry;o.exports={email:a.getFbeventsModules("normalizeSignalsFBEventsEmailType"),enum:a.getFbeventsModules("normalizeSignalsFBEventsEnumType"),postal_code:a.getFbeventsModules("normalizeSignalsFBEventsPostalCodeType"),phone_number:a.getFbeventsModules("normalizeSignalsFBEventsPhoneNumberType"),dob:a.getFbeventsModules("normalizeSignalsFBEventsDOBType"),normalize_state:n,normalize_country:r,string:t}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsOpenBridgeConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({endpoints:t.arrayOf(t.objectWithFields({targetDomain:t.allowNull(t.string()),endpoint:t.allowNull(t.string()),usePathCookie:t.allowNull(t.boolean()),fallbackDomain:t.allowNull(t.string()),enrichmentDisabled:t.allowNull(t.boolean()),alwaysRetry:t.allowNull(t.boolean())})),eventsFilter:t.allowNull(t.objectWithFields({filteringMode:t.allowNull(t.string()),eventNames:t.allowNull(t.arrayOf(t.string()))})),additionalUserData:t.allowNull(t.objectWithFields({sendFBLoginID:t.allowNull(t.boolean()),useSGWUserData:t.allowNull(t.boolean())})),blockedWebsites:t.allowNull(t.arrayOf(t.string()))});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsOptIn",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsUtils"),t=e.each,n=e.filter,r=e.hasOwn,i=e.keys,l=e.some;function s(e){t(i(e),function(t){if(l(e[t],function(t){return r(e,t)}))throw new Error("Circular subOpts are not allowed. "+t+" depends on another subOpt")})}var u=(function(){function e(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};$(this,e),S(this,"_opts",{}),this._subOpts=t,s(this._subOpts)}return N(e,[{key:"_getOpts",value:function(t){return[].concat(I(r(this._subOpts,t)?this._subOpts[t]:[]),[t])}},{key:"_setOpt",value:function(t,n,r){var e=this._opts[n]||(this._opts[n]={});e[t]=r}},{key:"optIn",value:function(n,r){var e=this,o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;return t(this._getOpts(r),function(t){var a=o==!0&&e.isOptedOut(n,r);a||e._setOpt(n,t,!0)}),this}},{key:"optOut",value:function(n,r){var e=this;return t(this._getOpts(r),function(t){return e._setOpt(n,t,!1)}),this}},{key:"isOptedIn",value:function(t,n){return this._opts[n]!=null&&this._opts[n][t]===!0}},{key:"isOptedOut",value:function(t,n){return this._opts[n]!=null&&this._opts[n][t]===!1}},{key:"listPixelIds",value:function(t){var e=this._opts[t];return e!=null?n(i(e),function(t){return e[t]===!0}):[]}}])})();o.exports=u})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPageStatusEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.Typed,r=t.coerce;function i(e){var t=r(e,n.string());return t==="active"||t==="inactive"?[t]:null}var l=new e(i);o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPageStatusMonitor",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var n=a.getFbeventsModules("SignalsFBEventsPageStatusEvent"),r=!1;function i(){r||typeof e!="undefined"&&(r=!0,e.addEventListener("pagehide",function(){n.trigger("inactive")}),typeof t!="undefined"&&t.visibilityState&&t.addEventListener("visibilitychange",function(){t.visibilityState==="hidden"?n.trigger("inactive"):t.visibilityState==="visible"&&n.trigger("active")}))}function l(e){return n.listen(e)}function s(e){return n.listenOnce(e)}o.exports={initPageStatusMonitor:i,subscribeToPageStatus:l,subscribeToPageStatusOnce:s}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsParallelFireConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({target:t.string()});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPIIAutomatchedEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsPixelTypedef"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.coerce;function i(e){var n=r(e,t);return n!=null?[n]:null}var l=new e(i);o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPIIConflictingEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsPixelTypedef"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.coerce;function i(e){var n=r(e,t);return n!=null?[n]:null}var l=new e(i);o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPIIInvalidatedEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsPixelTypedef"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.coerce;function i(e){var n=r(e,t);return n!=null?[n]:null}o.exports=new e(i)})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPixelCookie",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsLogging"),t=e.logWarning,n=e.META_PIXEL_PRODUCT_NAME,r=a.getFbeventsModules("SignalsFBEventsUtils"),i=r.getCurrentTime,l="fb",s=4,u=5,c=["AQ","Ag","Aw","BA","BQ","Bg"],d=2,m=8,p="__DOT__",_=new RegExp(p,"g"),f=/\./g,g="cookie",h=(function(){function e(t){$(this,e),typeof t=="string"?this.maybeUpdatePayload(t):(this.subdomainIndex=t.subdomainIndex,this.creationTime=t.creationTime,this.payload=t.payload,this.appendix=t.appendix)}return N(e,[{key:"pack",value:function(){var e=this.payload!=null?this.payload.replace(f,p):"",t=[l,this.subdomainIndex,this.creationTime,e,this.appendix].filter(function(e){return e!=null});return t.join(".")}},{key:"maybeUpdatePayload",value:function(t){(this.payload===null||this.payload!==t)&&(this.payload=t,this.creationTime=i())}}],[{key:"unpack",value:function(o){try{var r=o.split(".");if(r.length!==s&&r.length!==u)return null;var a=R(r,5),i=a[0],p=a[1],f=a[2],h=a[3],y=a[4];if(y!=null){if(y.length!==d&&y.length!==m)throw new Error("Illegal appendix length");if(y.length===d&&!c.includes(y))throw new Error("Illegal appendix")}if(i!==l)if(i.includes(l))t(new Error("Unexpected version number '".concat(r[0],"'")),n,g);else throw new Error("Unexpected version number '".concat(r[0],"'"));var C=parseInt(p,10);if(isNaN(C))throw new Error("Illegal subdomain index '".concat(r[1],"'"));var b=parseInt(f,10);if(isNaN(b))throw new Error("Illegal creation time '".concat(r[2],"'"));if(h==null||h==="")throw new Error("Empty cookie payload");var v=h.replace(_,".");return new e({creationTime:b,payload:v,subdomainIndex:C,appendix:y})}catch(e){return t(e,n,g),null}}}])})();o.exports=h})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPixelPIISchema",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";o.exports={default:{type:"string",typeParams:{lowercase:!0,strip:"whitespace_only"}},ph:{type:"phone_number"},em:{type:"email"},fn:{type:"string",typeParams:{lowercase:!0,strip:"whitespace_and_punctuation"}},ln:{type:"string",typeParams:{lowercase:!0,strip:"whitespace_and_punctuation"}},zp:{type:"postal_code"},ct:{type:"string",typeParams:{lowercase:!0,strip:"all_non_latin_alpha_numeric",test:"^[a-z]+"}},st:{type:"normalize_state"},country:{type:"normalize_country"},db:{type:"dob"},dob:{type:"date"},doby:{type:"string",typeParams:{test:"^[0-9]{4,4}$"}},ge:{type:"enum",typeParams:{lowercase:!0,options:["f","m"]}},dobm:{type:"string",typeParams:{test:"^(0?[1-9]|1[012])$|^jan|^feb|^mar|^apr|^may|^jun|^jul|^aug|^sep|^oct|^nov|^dec"}},dobd:{type:"string",typeParams:{test:"^(([0]?[1-9])|([1-2][0-9])|(3[01]))$"}}}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPixelQueueState",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsLogging"),t=e.logWarning,n=a.getFbeventsModules("PixelQueue"),r=a.getFbeventsModules("SignalsEventPayload"),i=a.getFbeventsModules("signalsFBEventsSendGET"),l=a.getFbeventsModules("signalsFBEventsSendFetch"),s=a.getFbeventsModules("SignalsFBEventsComparedManagers"),u=0xb3734563ab77,c=String(u),d="z0",m="z1",p="z2",_=null,f=null,g=null;function h(e){_==null&&(_=new n(e))}function y(e){if(e==null)return null;if(Array.isArray(e))return e;if(typeof e.length!="number")return null;var n=[];try{for(var r=0;r1&&n[0]==="init"){var r=n[1];(typeof r=="number"&&r===u||typeof r=="string"&&r===c)&&h("fbevents")}}catch(e){t(e,"pixel","qualityChecker")}return}try{S(n)}catch(e){t(e,"pixel","qualityChecker")}}}function S(e){if(_!=null){var t=_;if(e[0]==="track"&&!(e.length<3)){var n=e[1],r=e[2],o=e[3];if(typeof n=="string"&&!(r==null||G(r)!=="object")){var a={eventName:n,params:v({},r),eventData:o};t.enqueue(a)}}}}function R(e,t,n,r){var o;if(e===c){f=t,g=n;var a=(o=r==null?void 0:r.enabled)!==null&&o!==void 0?o:!1;L(a)}}function L(e){if(_!=null){var n=_;try{e?n.setHandler(k()):(n.disableStorage(),n.setHandler(E()))}catch(e){t(e,"pixel","qualityChecker")}}}function E(){return function(e){for(var t;t=e.dequeueItem();)(function(t){e.markItemAsCompleted(t)})(t)}}function k(){var e=s.getComparedURL(),t=s.getComparedReferrer();return function(n){for(var r;r=n.dequeueItem();)(function(r){I(n,r,e,t),T(n,r,e,t),D(n,r,e,t)})(r)}}function I(e,t,n,r){var o,a=t.item,i=a.eventName,s=a.eventData,u=x(i,(o=s==null?void 0:s.eventID)!==null&&o!==void 0?o:"",n,r);u.append("qttag",d),l(u).then(function(n){e.markItemAsCompleted(t)}).catch(function(n){e.markItemAsFailed(t)})}function T(e,t,n,r){var o,a=t.item,l=a.eventName,s=a.eventData,u=x(l,(o=s==null?void 0:s.eventID)!==null&&o!==void 0?o:"",n,r);u.append("qttag",m),i(u)}function D(e,t,n,r){var o,a=t.item,l=a.eventName,s=a.eventData,u=x(l,(o=s==null?void 0:s.eventID)!==null&&o!==void 0?o:"",n,r);u.append("qttag",p),i(u,{highFetchPriority:!0})}function x(e,t,n,o){var a=new r;return a.append("id",c),a.append("ev",e),a.append("eid",t),a.append("dl",n),a.append("rl",o),a.append("a","fbq_js"),a.append("ts",String(new Date().valueOf())),a.append("v",f!=null?f:"0.0.404"),g!=null&&a.append("r",g),a}o.exports={tryInitQueue:C,tryEnqueueCommand:b,trySetQueueHandler:R}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPixelTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({eventCount:t.number(),id:t.fbid(),userData:t.mapOf(t.string()),userDataFormFields:t.mapOf(t.string())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPlugin",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var e=N(function e(t){$(this,e),S(this,"__fbEventsPlugin",1),this.plugin=t,this.__fbEventsPlugin=1});o.exports=e})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPluginLoadedEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent");function t(e){var t=e!=null&&typeof e=="string"?e:null;return t!=null?[t]:null}o.exports=new e(t)})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsPluginManager",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsConfigStore"),t=a.getFbeventsModules("SignalsFBEventsEvents"),n=t.pluginLoaded,r=a.getFbeventsModules("SignalsFBEventsJSLoader"),i=a.getFbeventsModules("SignalsFBEventsLogging"),l=i.logWarning,s=a.getFbeventsModules("SignalsFBEventsUtils"),u=s.hasOwn,c=a.getFbeventsModules("SignalsFBEventsPlugin");function d(e){return"fbevents.plugins.".concat(e)}function m(e,t){if(e==="fbevents")return new c(function(){});if(t instanceof c)return t;if(t==null||G(t)!=="object")return l(new Error("Invalid pluginAPI registered ".concat(e))),new c(function(){});var n=t.__fbEventsPlugin,r=t.plugin;return n!==1||typeof r!="function"?(l(new Error("Invalid plugin registered ".concat(e))),new c(function(){})):new c(r)}var p=(function(){function t(e,n){$(this,t),S(this,"_loadedPlugins",{}),this._instance=e,this._lock=n}return N(t,[{key:"registerPlugin",value:function(r,o){u(this._loadedPlugins,r)||(this._loadedPlugins[r]=m(r,o),this._loadedPlugins[r].plugin(a,this._instance,e),n.trigger(r),this._lock.releasePlugin(r))}},{key:"loadPlugin",value:function(t){if(/^[a-zA-Z]\w+$/.test(t)===!1)throw new Error("Invalid plugin name: ".concat(t));var e=d(t);if(this._loadedPlugins[e])return!0;if(a.fbIsModuleLoaded(e))return this.registerPlugin(e,a.getFbeventsModules(e)),!0;var n="".concat(r.CONFIG.CDN_BASE_URL,"signals/plugins/").concat(t,".js?v=").concat(a.version);return this._loadedPlugins[e]?!1:(this._lock.lockPlugin(e),r.loadJSFile(n),!0)}}])})();o.exports=p})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsProcessCCRulesEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsParamList");function n(e,n){var r=e instanceof t?e:null,o=G(n)==="object"?v({},n):null;return r!=null?[r,o]:null}var r=new e(n);o.exports=r})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsProcessEmailAddress",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsValidationUtils"),t=e.looksLikeHashed,n=a.getFbeventsModules("SignalsFBEventsLogging"),r=n.logError,i=a.getFbeventsModules("SignalsFBEventsUtils"),l=i.each,s=i.keys,u=a.getFbeventsModules("SignalsFBEventsValidationUtils"),c=u.trim,d=["em","email"];function m(e){try{if(e==null||G(e)!=="object")return e;l(s(e),function(n){var r=e[n];if(!t(r)&&!(typeof d.includes=="function"&&!d.includes(n)||r==null||typeof r!="string")){var o=c(r);o.length!==0&&(o[o.length-1]===","&&(o=o.slice(0,o.length-1)),e[n]=o)}})}catch(e){e.message="[NormalizeEmailAddress]: "+e.message,r(e)}return e}o.exports=m})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsProhibitedPixelConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({lockWebpage:t.allowNull(t.boolean()),blockReason:t.allowNull(t.string())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsProhibitedSourcesTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({prohibitedSources:t.arrayOf(t.objectWithFields({domain:t.allowNull(t.string())}))});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsProtectedDataModeConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({standardParams:t.mapOf(t.boolean()),disableAM:t.allowNull(t.boolean())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsQE",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsGuardrail"),t=a.getFbeventsModules("SignalsFBEventsExperimentsTypedef"),n=a.getFbeventsModules("SignalsFBEventsLegacyExperimentGroupsTypedef"),r=a.getFbeventsModules("SignalsFBEventsTypeVersioning"),i=a.getFbeventsModules("SignalsFBEventsTyped"),l=i.coerce,s=a.getFbeventsModules("SignalsFBEventsUtils"),u=s.reduce,c=function(){return Math.random()};function d(e){for(var t=u(e,function(e,t,n){if(n===0)return e.push([0,t.allocation]),e;var r=R(e[n-1],2),o=r[0],a=r[1];return e.push([a,a+t.allocation]),e},[]),n=c(),r=0;r=d&&n=n&&tn&&(t=o,n=i)}}return t}function c(e){if(r){if(e.length<=1){i="0";return}var t=u(e);if(t==null){i="2";return}i=t!==e[0]?"1":"0"}}function d(e){var r=[];try{for(var o=t.cookie.split(";"),a="^\\s*".concat(e,"=\\s*(.*?)\\s*$"),i=new RegExp(a),l=0;l=0?e.substring(t+1,r):e.substring(t+1);return{name:n,value:o}}o.exports={parseCookieString:p,readCookieRaw:d,doRawCookieWrite:m,setEnableBetterFbcDetection:l,getBetterFbcAvailable:s}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsRegexParamFilterConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({require_exact_match:t.boolean(),potential_matches:t.allowNull(t.arrayOf(t.string()))}),r=t.objectWithFields({regexParamFilter:t.allowNull(t.mapOf(t.allowNull(t.arrayOf(t.allowNull(n)))))});o.exports=r})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsResolveLegacyArguments",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var e="report";function t(e){var t=R(e,1),n=t[0];return e.length===1&&Array.isArray(n)?{args:n,isLegacySyntax:!0}:{args:e,isLegacySyntax:!1}}function n(t){var n=R(t,2),r=n[0],o=n[1];if(typeof r=="string"&&r.slice(0,e.length)===e){var a=r.slice(e.length);return a==="CustomEvent"?(o!=null&&G(o)==="object"&&typeof o.event=="string"&&(a=o.event),["trackCustom",a].concat(t.slice(1))):["track",a].concat(t.slice(1))}return t}function r(e){var r=t(e),o=r.args,a=r.isLegacySyntax,i=n(o);return{args:i,isLegacySyntax:a}}o.exports=r})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsResolveLink",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsGetValidUrl"),n=a.getFbeventsModules("SignalsFBEventsUtils"),r=n.keys;function i(n,o,a){var i=e.top!==e;if(!i){var l;return((l=n==null?void 0:n.length)!==null&&l!==void 0?l:0)>0?n:o}if(!o||o.length===0)return n;if(a!=null){var s=t(o);if(!s)return n;var u=s.origin,c=r(a).some(function(e){return e!=null&&u.includes(e)});if(c)return n}return o}o.exports=i})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsRestrictedDomainsConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({restrictedDomains:t.allowNull(t.arrayOf(t.allowNull(t.string()))),blacklistedIframeReferrers:t.allowNull(t.mapOf(t.boolean()))});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsSendBeacon",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsNetworkConfig"),n=a.getFbeventsModules("SignalsFBEventsLogging"),r=n.logWarning;function i(n,o){try{if(!e.navigator||!e.navigator.sendBeacon)return!1;var a=o||{},i=a.url,l=i===void 0?t.ENDPOINT:i;return n.set("rqm","SB"),e.navigator.sendBeacon(l,n.toFormData())}catch(e){return e instanceof Error&&r(new Error("[SendBeacon]:"+e.message)),!1}}o.exports=i})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsSendCloudbridgeEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.Typed,r=a.getFbeventsModules("SignalsFBEventsMessageParamsTypedef"),i=new e(n.tuple([r]));o.exports=i})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsSendEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsEvents"),t=e.setEventId,n=a.getFbeventsModules("SignalsParamList"),r=a.getFbeventsModules("SignalsFBEventsProcessCCRulesEvent"),i=a.getFbeventsModules("SignalsFBEventsLateValidateCustomParametersEvent"),l=a.getFbeventsModules("SignalsFBEventsUtils"),s=l.each,u=l.keys,c=a.getFbeventsModules("SignalsFBEventsSetFilteredEventName"),d=a.getFbeventsModules("SignalsFBEventsAsyncParamUtils"),m=d.appendAsyncParamsAndSendEvent,p=a.getFbeventsModules("SignalsFBEventsGuardrail"),_=a.getFbeventsModules("signalsFBEventsFillParamList");function f(e,o){e.customData=v({},e.customData),e.timestamp=new Date().valueOf();var a=null;if(e.customParams!=null&&(a=p.eval("multi_eid_fix")?e.customParams.getEventId():e.customParams.get("eid")),a==null||a===""){e.customParams=e.customParams||new n;var l=e.customParams;e.id!=null&&t.trigger(String(e.id),l,e.eventName)}var d=r.trigger(_(e),e.customData);d!=null&&s(d,function(t){t!=null&&s(u(t),function(r){e.customParams=e.customParams||new n,e.customParams.append(r,t[r])})});var f=i.trigger(String(e.id),e.customData||{},e.eventName,e.customParams||new n);f&&s(f,function(t){t&&s(u(t),function(r){e.customParams=e.customParams||new n,e.customParams.append(r,t[r])})});var g=c.trigger(_(e));g!=null&&s(g,function(t){t!=null&&s(u(t),function(r){e.customParams=e.customParams||new n,e.customParams.append(r,t[r])})}),o.asyncParamPromisesAllSettled?m(o,e):o.eventQueue.push(e)}o.exports={sendEvent:f}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsSendEventEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsParamList"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.Typed,i=r.objectWithFields({customData:r.allowNull(r.object()),customParams:function(n){return n instanceof t?n:void 0},eventName:r.string(),id:r.string(),piiTranslator:function(t){return typeof t=="function"?t:void 0},documentLink:r.allowNull(r.string()),referrerLink:r.allowNull(r.string())}),l=new e(r.tuple([i]));o.exports=l})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsSendEventImpl",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsSendEventEvent"),t=a.getFbeventsModules("SignalsFBEventsSendCloudbridgeEvent"),n=a.getFbeventsModules("SignalsFBEventsFilterProtectedModeEvent"),r=a.getFbeventsModules("SignalsFBEventsGetAutomaticParametersEvent"),i=a.getFbeventsModules("SignalsFBEventsUtils"),l=i.some,s=a.getFbeventsModules("signalsFBEventsFireEvent"),u=a.getFbeventsModules("SignalsFBEventsUtils"),c=u.each,d=u.hasOwn,m=u.keys,p=a.getFbeventsModules("SignalsParamList"),_=a.getFbeventsModules("signalsFBEventsFeatureGate"),f=a.getFbeventsModules("SignalsPixelCookieUtils"),g=f.writeNewCookie,h=f.CLICKTHROUGH_COOKIE_PARAM,y=a.getFbeventsModules("SignalsFBEventsComparedManagers"),C="_fbleid",b=10080*60*1e3,v=a.getFbeventsModules("generateEventId");function S(e,t){if(e.id!=null&&_("offsite_clo_beta_event_id_coverage",e.id)&&e.eventName==="Lead"&&e.customParams!=null){var n=e.customParams.get(h),r=e.customParams!=null?e.customParams.get("eid"):null;if(n!=null&&n.trim()!=""){var o=r!=null?r:v(t&&t.VERSION||"undefined","LCP");r==null&&e.customParams!=null&&e.customParams.append("eid",o),g(C,o,b)}}}function R(e){var t=r.trigger(String(e.id),e.eventName);t!=null&&c(t,function(t){t!=null&&c(m(t),function(n){e.customParams=e.customParams||new p,e.customParams.append(n,t[n])})})}function L(e){var t=e.customParams;if(t!=null){var n=e.documentLink;n!==y.getComparedURL()&&t.append("dlc","1");var r=e.referrerLink;r!==y.getComparedReferrer()&&t.append("rlc","1")}}function E(r,o){var a=e.trigger(r);if(!l(a,function(e){return e})){S(r,o),R(r),n.trigger(r),L(r);var i=t.trigger(r);if(!l(i,function(e){return e})){var u=d(r,"customData")&&typeof r.customData!="undefined"&&r.customData!==null;u||(r.customData={}),s(r)}}}o.exports=E})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsSendFetch",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsNetworkConfig"),n=2048,r=8e3;function i(t){var n=typeof e!="undefined"&&typeof e.DOMException!="undefined";if(n&&t instanceof e.DOMException){var r=t.name;return r==="AbortError"?"abort":r==="SecurityError"?"security":"unknown"}if(t instanceof TypeError)return"network";if(t instanceof Error){var o=t.name;if(o==="AbortError")return"abort";if(o==="SecurityError")return"security";if(o==="TypeError")return"network"}return"unknown"}function l(){return typeof e!="undefined"&&"AbortController"in e?new e.AbortController:{signal:void 0,abort:function(){}}}function s(e,t){return u.apply(this,arguments)}function u(){return u=C(g().m(function o(a,s){var u,c,d,m,p,_,f,h,y,C,b,S,R,L;return g().w(function(o){for(;;)switch(o.p=o.n){case 0:return u=s!=null?s:{},c=u.url,d=c===void 0?t.ENDPOINT:c,a.set("rqm","fetch"),m=a.toQueryString(),p=d+"?"+m,_=p.length>n,f=l(),h=setTimeout(function(){return f.abort()},r),y="no-cors",C="include",b=v({method:_?"POST":"GET",mode:y,credentials:C,cache:"no-store",keepalive:!0,signal:f.signal,fetchPriority:"high"},_?{headers:{"Content-Type":"application/x-www-form-urlencoded"},body:a.toQueryString()}:{}),o.p=1,S=_?d:p,o.n=2,e.fetch(S,b);case 2:return o.a(2,{ok:!0,reason:"delivered"});case 3:return o.p=3,L=o.v,R=i(L),o.a(2,{ok:!1,reason:R,error:L});case 4:return o.p=4,clearTimeout(h),o.f(4);case 5:return o.a(2)}},o,null,[[1,3,4,5]])})),u.apply(this,arguments)}o.exports=s})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsSendFormPOST",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var n=a.getFbeventsModules("SignalsFBEventsNetworkConfig"),r=a.getFbeventsModules("SignalsFBEventsUtils"),i=r.listenOnce,l=a.getFbeventsModules("SignalsFBEventsLogging"),s=l.logError,u=l.logWarning,c=a.getFbeventsModules("SignalsFBEventsGuardrail");function d(r,o,a){try{var l="fb"+Math.random().toString().replace(".",""),d=t.createElement("form");d.method="post",d.action=o!=null?o:n.ENDPOINT,d.target=l,d.acceptCharset="utf-8",d.style.display="none";var m=!!(e.attachEvent&&!e.addEventListener),p=t.createElement("iframe");m&&(p.name=l),p.src="about:blank",p.id=l,p.name=l,d.appendChild(p);var _=c.eval("fix_fbevent_uri_error"),f=!1,g=null;return i(p,"load",function(){r.set("rqm","formPOST"),r.forEach(function(e,n){var r=t.createElement("input");if(_)try{r.name=decodeURIComponent(e)}catch(t){r.name=e,u(t,"pixel","SendFormPOST")}else r.name=decodeURIComponent(e);r.value=n,d.appendChild(r)}),i(p,"load",function(){f=!0,g!=null&&clearTimeout(g),d.parentNode&&d.parentNode.removeChild(d)}),d.submit()}),t.body!=null&&t.body.appendChild(d),a&&(g=setTimeout(function(){f||a(r)},5e3)),!0}catch(e){return e instanceof Error&&s(new Error("[POST]:"+e.message)),!0}}o.exports=d})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsSendGET",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsNetworkConfig"),n=a.getFbeventsModules("SignalsFBEventsShouldRestrictReferrerEvent"),r=a.getFbeventsModules("SignalsFBEventsUtils"),i=r.some,l=2048,s=32*1024;function u(){if(e.navigator==null)return!1;var t=e.navigator.userAgent;if(t==null)return!1;if(t.indexOf("Android")>=0&&(t.indexOf("FB_IAB")>=0||t.indexOf("Instagram")>=0))return!0;var n=t.indexOf("iPhone")>=0||t.indexOf("iPad")>=0;return!!(n&&(t.indexOf("FBIOS")>=0||t.indexOf("Instagram")>=0||t.indexOf("MessengerForiOS")>=0||t.indexOf("MessengerLiteForiOS")>=0))}function c(){return u()?s:l}function d(e,r){try{var o=r||{},a=o.ignoreRequestLengthCheck,l=a===void 0?!1:a,s=o.url,u=s===void 0?t.ENDPOINT:s,d=o.highFetchPriority,m=d===void 0?!1:d,p=o.expv2;e.set("rqm",l?"FGET":"GET"),p!=null&&p.length>0&&e.setAsDict("expv2",p);var _=e.toQueryString(),f=u+"?"+_;if(l||f.length0&&c!=null?[{extractors:m,pixelID:c}]:null}var u=new e(s);o.exports=u})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsSetIWLParameterRulesEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.coerce,r=t.Typed,i=a.getFbeventsModules("signalsFBEventsCoercePixelID"),l=r.arrayOf(r.objectWithFields({condition:r.objectOrString(),derived_event_name:r.string(),rule_id:r.allowNull(r.string()),extractors:r.allowNull(r.array())}));function s(){for(var e=arguments.length,t=new Array(e),r=0;r=p?t?"":void 0:(r=s(d,m))<55296||r>56319||m+1===p||(c=s(d,m+1))<56320||c>57343?t?l(d,m):r:t?u(d,m,m+2):c-56320+(r-55296<<10)+65536}};t.exports={codeAt:c(!1),charAt:c(!0)}},244:function(t,n,r){var e=r(9036),o=e({}.toString),a=e("".slice);t.exports=function(e){return a(o(e),8,-1)}},266:function(t,n,r){var e=r(182),o=r(5809),a=r(6731),i=r(954),l=TypeError,s=function(n){return function(t,r,s,u){e(r);var c=o(t),d=a(c),m=i(c),p=n?m-1:0,_=n?-1:1;if(s<2)for(;;){if(p in d){u=d[p],p+=_;break}if(p+=_,n?p<0:m<=p)throw l("Reduce of empty array with no initial value")}for(;n?p>=0:m>p;p+=_)p in d&&(u=r(u,d[p],p,c));return u}};t.exports={left:s(!1),right:s(!0)}},347:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},492:function(t,n,r){var e=r(8471);t.exports=function(t,n,r,o){return o&&o.enumerable?t[n]=r:e(t,n,r),t}},538:function(t,n,r){var e=r(7131);t.exports=function(t,n){var r=[][t];return!!r&&e(function(){r.call(null,n||function(){return 1},1)})}},651:function(t,n,r){var e=r(3557),o=r(7980),a=e("keys");t.exports=function(e){return a[e]||(a[e]=o(e))}},789:function(t){t.exports=function(e,t){return{value:e,done:t}}},802:function(t,n,r){r(1284);var e=r(8843);t.exports=e("Array","filter")},892:function(t,n,r){var e=r(6215);t.exports=e},909:function(t,n,r){var e=r(5391),o=Object.defineProperty;t.exports=function(t,n){try{o(e,t,{value:n,configurable:!0,writable:!0})}catch(r){e[t]=n}return n}},954:function(t,n,r){var e=r(2954);t.exports=function(t){return e(t.length)}},1001:function(t,n,r){var e=r(892);t.exports=e},1004:function(t,n,r){var e=r(7235);t.exports=e&&!(typeof Symbol!="function"||Symbol.sham)&&G(typeof Symbol=="function"?Symbol.iterator:"@@iterator")=="symbol"},1049:function(t){var e=Math.ceil,n=Math.floor;t.exports=Math.trunc||function(t){var r=+t;return(r>0?n:e)(r)}},1059:function(t,n,r){r(7765);var e=r(8843);t.exports=e("Array","find")},1113:function(t){t.exports={}},1225:function(t,n,r){var e=r(7131),o=r(6615),a=r(6312),i=o("species");t.exports=function(t){return a>=51||!e(function(){var e=[];return(e.constructor={})[i]=function(){return{foo:1}},e[t](Boolean).foo!==1})}},1284:function(t,n,r){var e=r(1938),o=r(2217).filter;e({target:"Array",proto:!0,forced:!r(1225)("filter")},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},1306:function(t,n,r){var e=r(1938),o=r(2217).map;e({target:"Array",proto:!0,forced:!r(1225)("map")},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},1731:function(t,n,r){var e=r(7452);t.exports=e},1938:function(t,n,r){var e=r(5391),o=r(1981),a=r(9e3),i=r(2073),l=r(5687).f,s=r(3488),u=r(7675),c=r(2116),d=r(8471),m=r(4373),p=function(t){var e=function(r,a,i){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,a)}return new t(r,a,i)}return o(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,n){var r,o,_,f,g,h,y,C,b,v=t.target,S=t.global,R=t.stat,L=t.proto,E=S?e:R?e[v]:(e[v]||{}).prototype,k=S?u:u[v]||d(u,v,{})[v],I=k.prototype;for(f in n)o=!(r=s(S?f:v+(R?".":"#")+f,t.forced))&&E&&m(E,f),h=k[f],o&&(y=t.dontCallGetSet?(b=l(E,f))&&b.value:E[f]),g=o&&y?y:n[f],o&&G(h)==G(g)||(C=t.bind&&o?c(g,e):t.wrap&&o?p(g):L&&i(g)?a(g):g,(t.sham||g&&g.sham||h&&h.sham)&&d(C,"sham",!0),d(k,f,C),L&&(m(u,_=v+"Prototype")||d(u,_,{}),d(u[_],f,g),t.real&&I&&(r||!I[f])&&d(I,f,g)))}},1972:function(t,n,r){var e=r(244);t.exports=Array.isArray||function(t){return e(t)==="Array"}},1981:function(t,n,r){var e=r(5164),o=Function.prototype,a=o.apply,i=o.call;t.exports=(typeof Reflect=="undefined"?"undefined":G(Reflect))=="object"&&Reflect.apply||(e?i.bind(a):function(){return i.apply(a,arguments)})},2073:function(t,n,r){var e=r(7023),o=e.all;t.exports=e.IS_HTMLDDA?function(e){return typeof e=="function"||e===o}:function(e){return typeof e=="function"}},2116:function(t,n,r){var e=r(9e3),o=r(182),a=r(5164),i=e(e.bind);t.exports=function(e,t){return o(e),t===void 0?e:a?i(e,t):function(){return e.apply(t,arguments)}}},2217:function(t,n,r){var e=r(2116),o=r(9036),a=r(6731),i=r(5809),l=r(954),s=r(6601),u=o([].push),c=function(n){var t=n===1,r=n===2,o=n===3,c=n===4,d=n===6,m=n===7,p=n===5||d;return function(_,f,g,h){for(var y,C,b=i(_),v=a(b),S=e(f,g),R=l(v),L=0,E=h||s,k=t?E(_,R):r||m?E(_,0):void 0;R>L;L++)if((p||L in v)&&(C=S(y=v[L],L,b),n))if(t)k[L]=C;else if(C)switch(n){case 3:return!0;case 5:return y;case 6:return L;case 2:u(k,y)}else switch(n){case 4:return!1;case 7:u(k,y)}return d?-1:o||c?c:k}};t.exports={forEach:c(0),map:c(1),filter:c(2),some:c(3),every:c(4),find:c(5),findIndex:c(6),filterReject:c(7)}},2373:function(t,n,r){var e,o,a,i=r(7131),l=r(2073),s=r(5774),u=r(3628),c=r(3439),d=r(492),m=r(6615),p=r(3599),_=m("iterator"),f=!1;[].keys&&("next"in(a=[].keys())?(o=c(c(a)))!==Object.prototype&&(e=o):f=!0),!s(e)||i(function(){var t={};return e[_].call(t)!==t})?e={}:p&&(e=u(e)),l(e[_])||d(e,_,function(){return this}),t.exports={IteratorPrototype:e,BUGGY_SAFARI_ITERATORS:f}},2506:function(t,n,r){var e=r(5560),o=r(7131);t.exports=e&&o(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})},2633:function(t,n,r){var e=r(5560),o=r(7131),a=r(6171);t.exports=!e&&!o(function(){return Object.defineProperty(a("div"),"a",{get:function(){return 7}}).a!==7})},2640:function(t,n,r){var e=r(3109);t.exports=e},2780:function(t,n,r){var e,o=r(1938),a=r(9e3),i=r(5687).f,l=r(2954),s=r(7803),u=r(5923),c=r(8890),d=r(7288),m=r(3599),p=a("".startsWith),_=a("".slice),f=Math.min,g=d("startsWith");o({target:"String",proto:!0,forced:!!(m||g||(e=i(String.prototype,"startsWith"),!e||e.writable))&&!g},{startsWith:function(t){var e=s(c(this));u(t);var n=l(f(arguments.length>1?arguments[1]:void 0,e.length)),r=s(t);return p?p(e,r,n):_(e,n,n+r.length)===r}})},2843:function(t,n,r){var e=r(8347),o=r(7959);t.exports=function(t,n,r,a){try{return a?n(e(r)[0],r[1]):n(r)}catch(e){o(t,"throw",e)}}},2954:function(t,n,r){var e=r(6759),o=Math.min;t.exports=function(t){return t>0?o(e(t),9007199254740991):0}},3057:function(t,n,r){var e=r(5164),o=Function.prototype.call;t.exports=e?o.bind(o):function(){return o.apply(o,arguments)}},3109:function(t,n,r){r(7019);var e=r(8843);t.exports=e("Array","includes")},3381:function(t,n,r){var e=r(9036);t.exports=e({}.isPrototypeOf)},3439:function(t,n,r){var e=r(4373),o=r(2073),a=r(5809),i=r(651),l=r(7007),s=i("IE_PROTO"),u=Object,c=u.prototype;t.exports=l?u.getPrototypeOf:function(t){var n=a(t);if(e(n,s))return n[s];var r=n.constructor;return o(r)&&n instanceof r?r.prototype:n instanceof u?c:null}},3488:function(t,n,r){var e=r(7131),o=r(2073),a=/#|\.prototype\./,i=function(n,r){var t=s[l(n)];return t===c||t!==u&&(o(r)?e(r):!!r)},l=i.normalize=function(e){return String(e).replace(a,".").toLowerCase()},s=i.data={},u=i.NATIVE="N",c=i.POLYFILL="P";t.exports=i},3514:function(t,n,r){var e=r(182),o=r(6153);t.exports=function(t,n){var r=t[n];return o(r)?void 0:e(r)}},3550:function(t,n,r){var e=r(3);t.exports=e},3557:function(t,n,r){var e=r(3599),o=r(4993);(t.exports=function(e,t){return o[e]||(o[e]=t!==void 0?t:{})})("versions",[]).push({version:"3.32.2",mode:e?"pure":"global",copyright:"\xA9 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.32.2/LICENSE",source:"https://github.com/zloirock/core-js"})},3599:function(t){t.exports=!0},3628:function(n,r,o){var e,a=o(8347),i=o(9157),l=o(347),s=o(6145),u=o(9417),c=o(6171),d=o(651),m="prototype",p="script",_=d("IE_PROTO"),f=function(){},g=function(t){return"<"+p+">"+t+""},h=function(t){t.write(g("")),t.close();var e=t.parentWindow.Object;return t=null,e},y=function(){try{e=new ActiveXObject("htmlfile")}catch(e){}var n,r,o;y=typeof t!="undefined"?t.domain&&e?h(e):(r=c("iframe"),o="java"+p+":",r.style.display="none",u.appendChild(r),r.src=String(o),(n=r.contentWindow.document).open(),n.write(g("document.F=Object")),n.close(),n.F):h(e);for(var a=l.length;a--;)delete y[m][l[a]];return y()};s[_]=!0,n.exports=Object.create||function(e,t){var n;return e!==null?(f[m]=a(e),n=new f,f[m]=null,n[_]=e):n=y(),t===void 0?n:i.f(n,t)}},3768:function(t){t.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},3859:function(t,n,r){var e=r(802);t.exports=e},3969:function(t,n,r){var e=r(7827),o=r(2073),a=r(3381),i=r(1004),l=Object;t.exports=i?function(e){return G(e)=="symbol"}:function(t){var n=e("Symbol");return o(n)&&a(n.prototype,l(t))}},4003:function(t){var e=String;t.exports=function(t){try{return e(t)}catch(e){return"Object"}}},4084:function(t){t.exports=typeof navigator!="undefined"&&String(navigator.userAgent)||""},4090:function(t,n,r){r(8132);var e=r(8843);t.exports=e("Array","reduce")},4373:function(t,n,r){var e=r(9036),o=r(5809),a=e({}.hasOwnProperty);t.exports=Object.hasOwn||function(e,t){return a(o(e),t)}},4512:function(t,n,r){var e=r(9036),o=r(4373),a=r(9441),i=r(4581).indexOf,l=r(6145),s=e([].push);t.exports=function(e,t){var n,r=a(e),u=0,c=[];for(n in r)!o(l,n)&&o(r,n)&&s(c,n);for(;t.length>u;)o(r,n=t[u++])&&(~i(c,n)||s(c,n));return c}},4581:function(t,n,r){var e=r(9441),o=r(8630),a=r(954),i=function(n){return function(t,r,i){var l,s=e(t),u=a(s),c=o(i,u);if(n&&r!=r){for(;u>c;)if((l=s[c++])!=l)return!0}else for(;u>c;c++)if((n||c in s)&&s[c]===r)return n||c||0;return!n&&-1}};t.exports={includes:i(!0),indexOf:i(!1)}},4619:function(t,n,r){var e=r(7006),o=r(8347),a=r(8934);t.exports=Object.setPrototypeOf||("__proto__"in{}?(function(){var t,n=!1,r={};try{(t=e(Object.prototype,"__proto__","set"))(r,[]),n=r instanceof Array}catch(e){}return function(e,r){return o(e),a(r),n?t(e,r):e.__proto__=r,e}})():void 0)},4734:function(t,n,r){var e=r(1059);t.exports=e},4817:function(t,n,r){var e=r(6002);t.exports=e},4909:function(t,n,r){var e=r(5423);t.exports=function t(n,r){return!(!n||!r)&&(n===r||!e(n)&&(e(r)?t(n,r.parentNode):"contains"in n?n.contains(r):!!n.compareDocumentPosition&&!!(16&n.compareDocumentPosition(r))))}},4970:function(t,n,r){var e=r(5560),o=r(4373),a=Function.prototype,i=e&&Object.getOwnPropertyDescriptor,l=o(a,"name"),s=l&&function(){}.name==="something",u=l&&(!e||e&&i(a,"name").configurable);t.exports={EXISTS:l,PROPER:s,CONFIGURABLE:u}},4993:function(t,n,r){var e=r(5391),o=r(909),a="__core-js_shared__",i=e[a]||o(a,{});t.exports=i},5023:function(t,n,r){var e=r(9830);t.exports=e},5045:function(t,n,r){var e=r(3057),o=r(5774),a=r(3969),i=r(3514),l=r(6034),s=r(6615),u=TypeError,c=s("toPrimitive");t.exports=function(t,n){if(!o(t)||a(t))return t;var r,s=i(t,c);if(s){if(n===void 0&&(n="default"),r=e(s,t,n),!o(r)||a(r))return r;throw u("Can't convert object to primitive value")}return n===void 0&&(n="number"),l(t,n)}},5051:function(t,n,r){var e=r(7104),o=r(6381).f,a=r(8471),i=r(4373),l=r(5759),s=r(6615)("toStringTag");t.exports=function(t,n,r,u){if(t){var c=r?t:t.prototype;i(c,s)||o(c,s,{configurable:!0,value:n}),u&&!e&&a(c,"toString",l)}}},5109:function(t,n,r){var e=r(7004);t.exports=e},5141:function(t,n,r){var e=r(5045),o=r(3969);t.exports=function(t){var n=e(t,"string");return o(n)?n:n+""}},5164:function(t,n,r){var e=r(7131);t.exports=!e(function(){var e=function(){}.bind();return typeof e!="function"||Object.prototype.hasOwnProperty.call(e,"prototype")})},5391:function(n,r,o){var t=function(t){return t&&t.Math===Math&&t};n.exports=t((typeof globalThis=="undefined"?"undefined":G(globalThis))=="object"&&globalThis)||t(G(e)=="object"&&e)||t((typeof self=="undefined"?"undefined":G(self))=="object"&&self)||t(G(o.g)=="object"&&o.g)||(function(){return this})()||this||Function("return this")()},5423:function(t,n,r){var e=r(5504);t.exports=function(t){return e(t)&&t.nodeType==3}},5504:function(r){r.exports=function(n){var r=(n?n.ownerDocument||n:t).defaultView||e;return!(!n||!(typeof r.Node=="function"?n instanceof r.Node:G(n)=="object"&&typeof n.nodeType=="number"&&typeof n.nodeName=="string"))}},5556:function(t,n,r){var e=r(4512),o=r(347);t.exports=Object.keys||function(t){return e(t,o)}},5560:function(t,n,r){var e=r(7131);t.exports=!e(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})},5663:function(t,n,r){var e=r(7104),o=r(2073),a=r(244),i=r(6615)("toStringTag"),l=Object,s=a((function(){return arguments})())==="Arguments";t.exports=e?a:function(e){var t,n,r;return e===void 0?"Undefined":e===null?"Null":typeof(n=(function(e,t){try{return e[t]}catch(e){}})(t=l(e),i))=="string"?n:s?a(t):(r=a(t))==="Object"&&o(t.callee)?"Arguments":r}},5669:function(t,n,r){var e=r(6615),o=r(1113),a=e("iterator"),i=Array.prototype;t.exports=function(e){return e!==void 0&&(o.Array===e||i[a]===e)}},5687:function(t,n,r){var e=r(5560),o=r(3057),a=r(6337),i=r(3768),l=r(9441),s=r(5141),u=r(4373),c=r(2633),d=Object.getOwnPropertyDescriptor;n.f=e?d:function(e,t){if(e=l(e),t=s(t),c)try{return d(e,t)}catch(e){}if(u(e,t))return i(!o(a.f,e,t),e[t])}},5759:function(t,n,r){var e=r(7104),o=r(5663);t.exports=e?{}.toString:function(){return"[object "+o(this)+"]"}},5774:function(t,n,r){var e=r(2073),o=r(7023),a=o.all;t.exports=o.IS_HTMLDDA?function(t){return G(t)=="object"?t!==null:e(t)||t===a}:function(t){return G(t)=="object"?t!==null:e(t)}},5809:function(t,n,r){var e=r(8890),o=Object;t.exports=function(t){return o(e(t))}},5837:function(t,n,r){var e=r(4734);t.exports=e},5856:function(t,n,r){var e=r(5774),o=r(244),a=r(6615)("match");t.exports=function(t){var n;return e(t)&&((n=t[a])!==void 0?!!n:o(t)==="RegExp")}},5923:function(t,n,r){var e=r(5856),o=TypeError;t.exports=function(t){if(e(t))throw o("The method doesn't accept regular expressions");return t}},6002:function(t,n,r){var e=r(1731);t.exports=e},6034:function(t,n,r){var e=r(3057),o=r(2073),a=r(5774),i=TypeError;t.exports=function(t,n){var r,l;if(n==="string"&&o(r=t.toString)&&!a(l=e(r,t))||o(r=t.valueOf)&&!a(l=e(r,t))||n!=="string"&&o(r=t.toString)&&!a(l=e(r,t)))return l;throw i("Can't convert object to primitive value")}},6065:function(t){t.exports=function(){}},6145:function(t){t.exports={}},6153:function(t){t.exports=function(e){return e==null}},6171:function(t,n,r){var e=r(5391),o=r(5774),a=e.document,i=o(a)&&o(a.createElement);t.exports=function(e){return i?a.createElement(e):{}}},6188:function(t,n,r){var e=r(1938),o=r(3057),a=r(3599),i=r(4970),l=r(2073),s=r(7102),u=r(3439),c=r(4619),d=r(5051),m=r(8471),p=r(492),_=r(6615),f=r(1113),g=r(2373),h=i.PROPER,y=i.CONFIGURABLE,C=g.IteratorPrototype,b=g.BUGGY_SAFARI_ITERATORS,v=_("iterator"),S="keys",R="values",L="entries",E=function(){return this};t.exports=function(t,n,r,i,_,g,k){s(r,n,i);var I,T,D,x=function(t){if(t===_&&w)return w;if(!b&&t&&t in N)return N[t];switch(t){case S:case R:case L:return function(){return new r(this,t)}}return function(){return new r(this)}},$=n+" Iterator",P=!1,N=t.prototype,M=N[v]||N["@@iterator"]||_&&N[_],w=!b&&M||x(_),A=n==="Array"&&N.entries||M;if(A&&(I=u(A.call(new t)))!==Object.prototype&&I.next&&(a||u(I)===C||(c?c(I,C):l(I[v])||p(I,v,E)),d(I,$,!0,!0),a&&(f[$]=E)),h&&_===R&&M&&M.name!==R&&(!a&&y?m(N,"name",R):(P=!0,w=function(){return o(M,this)})),_)if(T={values:x(R),keys:g?w:x(S),entries:x(L)},k)for(D in T)(b||P||!(D in N))&&p(N,D,T[D]);else e({target:n,proto:!0,forced:b||P},T);return a&&!k||N[v]===w||p(N,v,w,{name:_}),f[n]=w,T}},6206:function(t,n,r){var e=r(1938),o=r(6864);e({target:"Array",stat:!0,forced:!r(8224)(function(e){Array.from(e)})},{from:o})},6215:function(t,n,r){var e=r(4090);t.exports=e},6312:function(t,n,r){var e,o,a=r(5391),i=r(4084),l=a.process,s=a.Deno,u=l&&l.versions||s&&s.version,c=u&&u.v8;c&&(o=(e=c.split("."))[0]>0&&e[0]<4?1:+(e[0]+e[1])),!o&&i&&(!(e=i.match(/Edge\/(\d+)/))||e[1]>=74)&&(e=i.match(/Chrome\/(\d+)/))&&(o=+e[1]),t.exports=o},6337:function(t,n){var e={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!e.call({1:2},1);n.f=o?function(e){var t=r(this,e);return!!t&&t.enumerable}:e},6381:function(t,n,r){var e=r(5560),o=r(2633),a=r(2506),i=r(8347),l=r(5141),s=TypeError,u=Object.defineProperty,c=Object.getOwnPropertyDescriptor,d="enumerable",m="configurable",p="writable";n.f=e?a?function(e,t,n){if(i(e),t=l(t),i(n),typeof e=="function"&&t==="prototype"&&"value"in n&&p in n&&!n[p]){var r=c(e,t);r&&r[p]&&(e[t]=n.value,n={configurable:m in n?n[m]:r[m],enumerable:d in n?n[d]:r[d],writable:!1})}return u(e,t,n)}:u:function(e,t,n){if(i(e),t=l(t),i(n),o)try{return u(e,t,n)}catch(e){}if("get"in n||"set"in n)throw s("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},6399:function(t,n,r){var e=r(5663),o=r(3514),a=r(6153),i=r(1113),l=r(6615)("iterator");t.exports=function(t){if(!a(t))return o(t,l)||o(t,"@@iterator")||i[e(t)]}},6408:function(t){t.exports=function(e){if(e!=null)return e;throw new Error("Got unexpected null or undefined")}},6553:function(t,n,r){var e=r(9036),o=r(7131),a=r(2073),i=r(5663),l=r(7827),s=r(6678),u=function(){},c=[],d=l("Reflect","construct"),m=/^\s*(?:class|function)\b/,p=e(m.exec),_=!m.exec(u),f=function(t){if(!a(t))return!1;try{return d(u,c,t),!0}catch(e){return!1}},g=function(t){if(!a(t))return!1;switch(i(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return _||!!p(m,s(t))}catch(e){return!0}};g.sham=!0,t.exports=!d||o(function(){var e;return f(f.call)||!f(Object)||!f(function(){e=!0})||e})?g:f},6601:function(t,n,r){var e=r(9077);t.exports=function(t,n){return new(e(t))(n===0?0:n)}},6615:function(t,n,r){var e=r(5391),o=r(3557),a=r(4373),i=r(7980),l=r(7235),s=r(1004),u=e.Symbol,c=o("wks"),d=s?u.for||u:u&&u.withoutSetter||i;t.exports=function(e){return a(c,e)||(c[e]=l&&a(u,e)?u[e]:d("Symbol."+e)),c[e]}},6678:function(t,n,r){var e=r(9036),o=r(2073),a=r(4993),i=e(Function.toString);o(a.inspectSource)||(a.inspectSource=function(e){return i(e)}),t.exports=a.inspectSource},6731:function(t,n,r){var e=r(9036),o=r(7131),a=r(244),i=Object,l=e("".split);t.exports=o(function(){return!i("z").propertyIsEnumerable(0)})?function(e){return a(e)==="String"?l(e,""):i(e)}:i},6759:function(t,n,r){var e=r(1049);t.exports=function(t){var n=+t;return n!=n||n===0?0:e(n)}},6864:function(t,n,r){var e=r(2116),o=r(3057),a=r(5809),i=r(2843),l=r(5669),s=r(6553),u=r(954),c=r(8724),d=r(7013),m=r(6399),p=Array;t.exports=function(t){var n=a(t),r=s(this),_=arguments.length,f=_>1?arguments[1]:void 0,g=f!==void 0;g&&(f=e(f,_>2?arguments[2]:void 0));var h,y,C,b,v,S,R=m(n),L=0;if(!R||this===p&&l(R))for(h=u(n),y=r?new this(h):p(h);h>L;L++)S=g?f(n[L],L):n[L],c(y,L,S);else for(v=(b=d(n,R)).next,y=r?new this:[];!(C=o(v,b)).done;L++)S=g?i(b,f,[C.value,L],!0):C.value,c(y,L,S);return y.length=L,y}},7004:function(t,n,r){var e=r(3859);t.exports=e},7006:function(t,n,r){var e=r(9036),o=r(182);t.exports=function(t,n,r){try{return e(o(Object.getOwnPropertyDescriptor(t,n)[r]))}catch(e){}}},7007:function(t,n,r){var e=r(7131);t.exports=!e(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})},7013:function(t,n,r){var e=r(3057),o=r(182),a=r(8347),i=r(4003),l=r(6399),s=TypeError;t.exports=function(t,n){var r=arguments.length<2?l(t):n;if(o(r))return a(e(r,t));throw s(i(t)+" is not iterable")}},7019:function(t,n,r){var e=r(1938),o=r(4581).includes,a=r(7131),i=r(6065);e({target:"Array",proto:!0,forced:a(function(){return!Array(1).includes()})},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("includes")},7023:function(n){var e=G(t)=="object"&&t.all,r=e===void 0&&e!==void 0;n.exports={all:e,IS_HTMLDDA:r}},7078:function(t,n,r){var e=r(7481);t.exports=e},7102:function(t,n,r){var e=r(2373).IteratorPrototype,o=r(3628),a=r(3768),i=r(5051),l=r(1113),s=function(){return this};t.exports=function(t,n,r,u){var c=n+" Iterator";return t.prototype=o(e,{next:a(+!u,r)}),i(t,c,!1,!0),l[c]=s,t}},7104:function(t,n,r){var e={};e[r(6615)("toStringTag")]="z",t.exports=String(e)==="[object z]"},7131:function(t){t.exports=function(e){try{return!!e()}catch(e){return!0}}},7235:function(t,n,r){var e=r(6312),o=r(7131),a=r(5391).String;t.exports=!!Object.getOwnPropertySymbols&&!o(function(){var t=Symbol("symbol detection");return!a(t)||!(Object(t)instanceof Symbol)||!(typeof Symbol!="function"||Symbol.sham)&&e&&e<41})},7244:function(t,n,r){var e=r(5391),o=r(244);t.exports=o(e.process)==="process"},7288:function(t,n,r){var e=r(6615)("match");t.exports=function(t){var n=/./;try{"/./"[t](n)}catch(r){try{return n[e]=!1,"/./"[t](n)}catch(e){}}return!1}},7452:function(t,n,r){r(1306);var e=r(8843);t.exports=e("Array","map")},7481:function(t,n,r){var e=r(7888);t.exports=e},7632:function(t,n,r){var e=r(235).charAt,o=r(7803),a=r(9257),i=r(6188),l=r(789),s="String Iterator",u=a.set,c=a.getterFor(s);i(String,"String",function(e){u(this,{type:s,string:o(e),index:0})},function(){var t,n=c(this),r=n.string,o=n.index;return o>=r.length?l(void 0,!0):(t=e(r,o),n.index+=t.length,l(t,!1))})},7675:function(t){t.exports={}},7765:function(t,n,r){var e=r(1938),o=r(2217).find,a=r(6065),i="find",l=!0;i in[]&&Array(1)[i](function(){l=!1}),e({target:"Array",proto:!0,forced:l},{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),a(i)},7779:function(t){function e(t,n){for(var r=t.length,o=0;r--;){var a=t[o++];Array.isArray(a)?e(a,n):n.push(a)}}t.exports=function(t){var n=[];return e(t,n),n}},7803:function(t,n,r){var e=r(5663),o=String;t.exports=function(t){if(e(t)==="Symbol")throw TypeError("Cannot convert a Symbol value to a string");return o(t)}},7827:function(t,n,r){var e=r(7675),o=r(5391),a=r(2073),i=function(t){return a(t)?t:void 0};t.exports=function(t,n){return arguments.length<2?i(e[t])||i(o[t]):e[t]&&e[t][n]||o[t]&&o[t][n]}},7888:function(t,n,r){r(7632),r(6206);var e=r(7675);t.exports=e.Array.from},7959:function(t,n,r){var e=r(3057),o=r(8347),a=r(3514);t.exports=function(t,n,r){var i,l;o(t);try{if(!(i=a(t,"return"))){if(n==="throw")throw r;return r}i=e(i,t)}catch(e){l=!0,i=e}if(n==="throw")throw r;if(l)throw i;return o(i),r}},7980:function(t,n,r){var e=r(9036),o=0,a=Math.random(),i=e(1 .toString);t.exports=function(e){return"Symbol("+(e===void 0?"":e)+")_"+i(++o+a,36)}},7981:function(t,n,r){var e=r(9012);t.exports=e},8132:function(t,n,r){var e=r(1938),o=r(266).left,a=r(538),i=r(6312);e({target:"Array",proto:!0,forced:!r(7244)&&i>79&&i<83||!a("reduce")},{reduce:function(t){var e=arguments.length;return o(this,t,e,e>1?arguments[1]:void 0)}})},8224:function(t,n,r){var e=r(6615)("iterator"),o=!1;try{var a=0,i={next:function(){return{done:!!a++}},return:function(){o=!0}};i[e]=function(){return this},Array.from(i,function(){throw 2})}catch(e){}t.exports=function(t,n){try{if(!n&&!o)return!1}catch(e){return!1}var r=!1;try{var a={};a[e]=function(){return{next:function(){return{done:r=!0}}}},t(a)}catch(e){}return r}},8327:function(t,n,r){var e=r(7078);t.exports=e},8347:function(t,n,r){var e=r(5774),o=String,a=TypeError;t.exports=function(t){if(e(t))return t;throw a(o(t)+" is not an object")}},8471:function(t,n,r){var e=r(5560),o=r(6381),a=r(3768);t.exports=e?function(e,t,n){return o.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},8630:function(t,n,r){var e=r(6759),o=Math.max,a=Math.min;t.exports=function(t,n){var r=e(t);return r<0?o(r+n,0):a(r,n)}},8698:function(t,n,r){var e=r(5391),o=r(2073),a=e.WeakMap;t.exports=o(a)&&/native code/.test(String(a))},8724:function(t,n,r){var e=r(5141),o=r(6381),a=r(3768);t.exports=function(t,n,r){var i=e(n);i in t?o.f(t,i,a(0,r)):t[i]=r}},8760:function(t,n,r){var e=r(5837);t.exports=e},8843:function(t,n,r){var e=r(7827);t.exports=e},8890:function(t,n,r){var e=r(6153),o=TypeError;t.exports=function(t){if(e(t))throw o("Can't call method on "+t);return t}},8934:function(t,n,r){var e=r(2073),o=String,a=TypeError;t.exports=function(t){if(G(t)=="object"||e(t))return t;throw a("Can't set "+o(t)+" as a prototype")}},9e3:function(t,n,r){var e=r(244),o=r(9036);t.exports=function(t){if(e(t)==="Function")return o(t)}},9012:function(t,n,r){r(2780);var e=r(8843);t.exports=e("String","startsWith")},9036:function(t,n,r){var e=r(5164),o=Function.prototype,a=o.call,i=e&&o.bind.bind(a,a);t.exports=e?i:function(e){return function(){return a.apply(e,arguments)}}},9077:function(t,n,r){var e=r(1972),o=r(6553),a=r(5774),i=r(6615)("species"),l=Array;t.exports=function(t){var n;return e(t)&&(n=t.constructor,(o(n)&&(n===l||e(n.prototype))||a(n)&&(n=n[i])===null)&&(n=void 0)),n===void 0?l:n}},9157:function(t,n,r){var e=r(5560),o=r(2506),a=r(6381),i=r(8347),l=r(9441),s=r(5556);n.f=e&&!o?Object.defineProperties:function(e,t){i(e);for(var n,r=l(t),o=s(t),u=o.length,c=0;u>c;)a.f(e,n=o[c++],r[n]);return e}},9257:function(t,n,r){var e,o,a,i=r(8698),l=r(5391),s=r(5774),u=r(8471),c=r(4373),d=r(4993),m=r(651),p=r(6145),_="Object already initialized",f=l.TypeError,g=l.WeakMap;if(i||d.state){var h=d.state||(d.state=new g);h.get=h.get,h.has=h.has,h.set=h.set,e=function(t,n){if(h.has(t))throw f(_);return n.facade=t,h.set(t,n),n},o=function(t){return h.get(t)||{}},a=function(t){return h.has(t)}}else{var y=m("state");p[y]=!0,e=function(t,n){if(c(t,y))throw f(_);return n.facade=t,u(t,y,n),n},o=function(t){return c(t,y)?t[y]:{}},a=function(t){return c(t,y)}}t.exports={set:e,get:o,has:a,enforce:function(n){return a(n)?o(n):e(n,{})},getterFor:function(t){return function(e){var n;if(!s(e)||(n=o(e)).type!==t)throw f("Incompatible receiver, "+t+" required");return n}}}},9417:function(t,n,r){var e=r(7827);t.exports=e("document","documentElement")},9441:function(t,n,r){var e=r(6731),o=r(8890);t.exports=function(t){return e(o(t))}},9830:function(t,n,r){var e=r(7981);t.exports=e}},r={};function a(e){var t=r[e];if(t!==void 0)return t.exports;var o=r[e]={exports:{}};return n[e].call(o.exports,o,o.exports,a),o.exports}a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,{a:t}),t},a.d=function(e,t){for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.g=(function(){if((typeof globalThis=="undefined"?"undefined":G(globalThis))=="object")return globalThis;try{return this||new Function("return this")()}catch(t){if(G(e)=="object")return e}})(),a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.r=function(e){typeof Symbol!="undefined"&&(typeof Symbol!="function"||Symbol.toStringTag)&&Object.defineProperty(e,typeof Symbol=="function"?Symbol.toStringTag:"@@toStringTag",{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};a.r(i),a.d(i,{MicrodataExtractionMethods:function(){return ua},SignalsESTCustomData:function(){return Bn},SignalsESTRuleEngine:function(){return vn},getJsonLDForExtractors:function(){return we},getParameterExtractorFromGraphPayload:function(){return Ae},inferredEventsSharedUtils:function(){return sa},signalsConvertNodeToHTMLElement:function(){return I},signalsExtractButtonFeatures:function(){return Wn},signalsExtractForm:function(){return Vn},signalsExtractPageFeatures:function(){return qn},signalsGetButtonActionType:function(){return Qn},signalsGetButtonImageUrl:function(){return Xe},signalsGetTextFromElement:function(){return u},signalsGetTextOrValueFromElement:function(){return Ve},signalsGetTruncatedButtonText:function(){return Hn},signalsGetValueFromHTMLElement:function(){return d},signalsGetWrappingButton:function(){return Yn},signalsIsIWLElement:function(){return Gn},signalsIsSaneButton:function(){return at},unicodeSafeTruncate:function(){return We}});var l={};a.r(l),a.d(l,{BUTTON_SELECTORS:function(){return Ge},BUTTON_SELECTOR_FORM_BLACKLIST:function(){return je},BUTTON_SELECTOR_SEPARATOR:function(){return He},EXPLICIT_BUTTON_SELECTORS:function(){return Qe},EXTENDED_BUTTON_SELECTORS:function(){return Ke},LINK_TARGET_SELECTORS:function(){return ze}});var s={};function u(e){if(e==null)return null;if(e.innerText!=null&&e.innerText.length!==0)return e.innerText;var t=e.text;return t!=null&&typeof t=="string"&&t.length!==0?t:e.textContent!=null&&e.textContent.length>0?e.textContent:null}a.r(s),a.d(s,{cleanDescription:function(){return bo},decodeHtmlEntities:function(){return yo},deduplicateProductContents:function(){return oa},extractJsonLd:function(){return Mo},extractMetaTagData:function(){return Jo},extractOpenGraph:function(){return Qo},extractRDFa:function(){return la},extractSchemaOrg:function(){return xo},jsonRepair:function(){return ia},mergeProductMetadata:function(){return Ro},normalizeWhitespace:function(){return Co},stripHtmlTags:function(){return ho},stripJsonComments:function(){return aa}});var c=500;function d(e){var t=e.tagName.toLowerCase(),n=void 0;switch(t){case"meta":n=e.getAttribute("content");break;case"audio":case"embed":case"iframe":case"img":case"source":case"track":case"video":n=e.getAttribute("src");break;case"a":case"area":case"link":n=e.getAttribute("href");break;case"object":n=e.getAttribute("data");break;case"data":case"meter":n=e.getAttribute("value");break;case"time":n=e.getAttribute("datetime");break;default:n=u(e)||""}return t==="span"&&(n==null||typeof n=="string"&&n==="")&&(n=e.getAttribute("content")),typeof n=="string"?n.substr(0,c):""}var m=["Order","AggregateOffer","CreativeWork","Event","MenuItem","Product","Service","Trip","ActionAccessSpecification","ConsumeAction","MediaSubscription","Organization","Person"],p=a(4909),_=a.n(p),f=a(6408),g=a.n(f),h=a(5109),y=a.n(h),C=a(8327),b=a.n(C),v=a(3550),S=a.n(v),R=a(4817),L=a.n(R),E=function(n){for(var e=L()(m,function(e){return'[vocab$="'.concat("http://schema.org/",'"][typeof$="').concat(e,'"]')}).join(", "),r=[],o=b()(t.querySelectorAll(e)),a=[];o.length>0;){var i=o.pop();if(!S()(r,i)){var l={"@context":"http://schema.org"};a.push({htmlElement:i,jsonLD:l});for(var s=[{element:i,workingNode:l}];s.length;){var u=s.pop(),c=u.element,p=u.workingNode,f=g()(c.getAttribute("typeof"));p["@type"]=f;for(var h=b()(c.querySelectorAll("[property]")).reverse();h.length;){var C=h.pop();if(!S()(r,C)){r.push(C);var v=g()(C.getAttribute("property"));if(C.hasAttribute("typeof")){var R={};p[v]=R,s.push({element:c,workingNode:p}),s.push({element:C,workingNode:R});break}p[v]=d(C)}}}}}return y()(a,function(e){return _()(e.htmlElement,n)})};function k(e){return k=typeof Symbol=="function"&&G(typeof Symbol=="function"?Symbol.iterator:"@@iterator")=="symbol"?function(e){return G(e)}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==(typeof Symbol=="function"?Symbol.prototype:"@@prototype")?"symbol":G(e)},k(e)}function I(e){return((typeof HTMLElement=="undefined"?"undefined":k(HTMLElement))==="object"?e instanceof HTMLElement||e!=null&&e.nodeType===1&&typeof e.nodeName=="string":e!=null&&k(e)==="object"&&e!==null&&e.nodeType===1&&typeof e.nodeName=="string")?e:null}var T=/^\s*:scope/gi,D=function(t,n){if(n[n.length-1]===">")return[];var e=n[0]===">";if((D.CAN_USE_SCOPE||!n.match(T))&&!e)try{return t.querySelectorAll(n)}catch(e){return[]}var r=n;e&&(r=":scope ".concat(n));var o=!1;t.id||(t.id="__fb_scoped_query_selector_"+Date.now(),o=!0);try{return t.querySelectorAll(r.replace(T,"#"+t.id))}catch(e){return[]}finally{o&&(t.id="")}};D.CAN_USE_SCOPE=!0;var x=t.createElement("div");try{x.querySelectorAll(":scope *")}catch(e){D.CAN_USE_SCOPE=!1}var $=D,P=a(7779),N=a.n(P),M=a(1001),w=a.n(M),A=a(5023),F=a.n(A);function O(e){return(function(e){if(Array.isArray(e))return q(e)})(e)||(function(e){if(typeof Symbol!="undefined"&&e[typeof Symbol=="function"?Symbol.iterator:"@@iterator"]!=null||e["@@iterator"]!=null)return Array.from(e)})(e)||W(e)||(function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")})()}function B(e,t){return(function(e){if(Array.isArray(e))return e})(e)||(function(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[typeof Symbol=="function"?Symbol.iterator:"@@iterator"]||e["@@iterator"];if(n!=null){var r,o,a,i,l=[],s=!0,u=!1;try{if(a=(n=n.call(e)).next,t===0){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=a.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){u=!0,o=e}finally{try{if(!s&&n.return!=null&&(i=n.return(),Object(i)!==i))return}finally{if(u)throw o}}return l}})(e,t)||W(e,t)||(function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")})()}function W(e,t){if(e){if(typeof e=="string")return q(e,t);var n={}.toString.call(e).slice(8,-1);return n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set"?Array.from(e):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?q(e,t):void 0}}function q(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=l.length?[]:[l[s]];case"closest":return t.parentNode?[t.parentNode.closest(e)]:[];default:return b()($(t,e))}};if(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),!Element.prototype.closest){var K=t.documentElement;Element.prototype.closest=function(e){var t=this;if(!K.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(t!==null&&t.nodeType===1);return null}}var Q=["og","product","music","video","article","book","profile","website","twitter"];function X(e){return X=typeof Symbol=="function"&&G(typeof Symbol=="function"?Symbol.iterator:"@@iterator")=="symbol"?function(e){return G(e)}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==(typeof Symbol=="function"?Symbol.prototype:"@@prototype")?"symbol":G(e)},X(e)}function Y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function J(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&t!==r.index?ge:o===1?he:r.relativeClass.length===0?ge:(fe(e,r.node),r.relativeClass,he)}function ve(e,t,n,r){if(r===n.length-1){if(!be(e,t,r,n[r]))return null;var o=I(e);if(o)return[o]}if(!e||!be(e,t,r,n[r]))return null;for(var a=[],i=e.firstChild,l=0;i;){var s=ve(i,l,n,r+1);s&&a.push.apply(a,me(s)),i=i.nextSibling,l+=1}return a}function Se(e,t){var n,r=[],o=(function(e,t){var n=typeof Symbol!="undefined"&&e[typeof Symbol=="function"?Symbol.iterator:"@@iterator"]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=pe(e))||t&&e&&typeof e.length=="number"){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(t){l=!0,a=t},f:function(){try{i||n.return==null||n.return()}finally{if(l)throw a}}}})(e);try{for(o.s();!(n=o.n()).done;){var a=ve(n.value,0,t,0);a&&r.push.apply(r,me(a))}}catch(e){o.e(e)}finally{o.f()}return r}function Re(e,t){var n=(function(e,t){for(var n=function(t){var e=t.parentNode;if(!e)return-1;for(var n=e.firstChild,r=0;n&&n!==t;)n=n.nextSibling,r+=1;return n===t?r:-1},r=e,o=t,a=[],i=[];!r.isSameNode(o);){var l=Ce(r,o);if(l===ge)return null;var s="";if(l===ye&&(s=fe(r,o)).length===0||(a.push({node:r,relativeClass:s,index:n(r)}),i.push(o),r=r.parentNode,o=o.parentNode,!r||!o))return null}return r&&o&&r.isSameNode(o)&&a.length>0?{parentNode:r,node1Tree:a.reverse(),node2Tree:i.reverse()}:null})(e,t);if(!n)return null;var r=(function(e,t,n){for(var r=[],o=e.firstChild;o;)o.isSameNode(t.node)||o.isSameNode(n)||!Ce(t.node,o)||r.push(o),o=o.nextSibling;return r})(n.parentNode,n.node1Tree[0],n.node2Tree[0]);return r&&r.length!==0?Se(r,n.node1Tree):null}function Le(e){return Le=typeof Symbol=="function"&&G(typeof Symbol=="function"?Symbol.iterator:"@@iterator")=="symbol"?function(e){return G(e)}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==(typeof Symbol=="function"?Symbol.prototype:"@@prototype")?"symbol":G(e)},Le(e)}function Ee(e,t){return(function(e){if(Array.isArray(e))return e})(e)||(function(e,t){var n=e==null?null:typeof Symbol!="undefined"&&e[typeof Symbol=="function"?Symbol.iterator:"@@iterator"]||e["@@iterator"];if(n!=null){var r,o,a,i,l=[],s=!0,u=!1;try{if(a=(n=n.call(e)).next,t===0){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=a.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){u=!0,o=e}finally{try{if(!s&&n.return!=null&&(i=n.return(),Object(i)!==i))return}finally{if(u)throw o}}return l}})(e,t)||(function(e,t){if(e){if(typeof e=="string")return ke(e,t);var n={}.toString.call(e).slice(8,-1);return n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set"?Array.from(e):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ke(e,t):void 0}})(e,t)||(function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")})()}function ke(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nxe[t.extractorType]?1:-1});return y()(N()(L()(o,function(r){switch(r.extractorType){case"SCHEMA_DOT_ORG":return L()((function(e){for(var n="schema.org/",r=L()(m,function(e){return'[itemtype$="'.concat(n).concat(e,'"]')}).join(", "),o=[],a=b()(t.querySelectorAll(r)),i=[];a.length>0;){var l=a.pop();if(!S()(o,l)){var s={"@context":"http://schema.org"};i.push({htmlElement:l,jsonLD:s});for(var u=[{element:l,workingNode:s}];u.length;){var c=u.pop(),p=c.element,f=c.workingNode,h=g()(p.getAttribute("itemtype"));f["@type"]=h.substr(h.indexOf(n)+11);for(var C=b()(p.querySelectorAll("[itemprop]")).reverse();C.length;){var v=C.pop();if(!S()(o,v)){o.push(v);var R=g()(v.getAttribute("itemprop"));if(v.hasAttribute("itemscope")){var E={};f[R]=E,u.push({element:p,workingNode:f}),u.push({element:v,workingNode:E});break}f[R]=d(v)}}}}}return y()(i,function(t){return _()(t.htmlElement,e)})})(n),function(e){return{extractorID:r.id,jsonLD:e.jsonLD}});case"RDFA":return L()(E(n),function(e){return{extractorID:r.id,jsonLD:e.jsonLD}});case"OPEN_GRAPH":return{extractorID:r.id,jsonLD:ee()};case"CSS":var o=L()(r.extractorConfig.parameterSelectors,function(e){var t;return(t=H(n,e.selector))===null||t===void 0?void 0:t[0]});if(o==null)return null;if(o.length===2){var a=o[0],i=o[1];if(a!=null&&i!=null){var l=Re(a,i);l&&o.push.apply(o,l)}}var s=r.extractorConfig.parameterSelectors[0].parameterType,u=r.extractorConfig.parameterSelectors[0].customParameterName;if(u!=null||!$e.has(s)){var c=o[0],p=(c==null?void 0:c.innerText)||(c==null?void 0:c.textContent)||"";return{extractorID:r.id,customParam:u||s,value:p}}var f=L()(o,function(e){var t=(e==null?void 0:e.innerText)||(e==null?void 0:e.textContent);return[s,t]}),h=L()(y()(f,function(e){return Ee(e,1)[0]!=="totalPrice"}),function(e){var t=Ee(e,2),n=t[0],r=t[1];return Ne(Pe,n,r)});if(r.eventType==="InitiateCheckout"||r.eventType==="Purchase"){var C=ne()(f,function(e){return Ee(e,1)[0]==="totalPrice"});C&&(h=[{"@context":"http://schema.org","@type":"ItemList",itemListElement:L()(h,function(e,t){return{"@type":"ListItem",item:e,position:t+1}}),totalPrice:C[1]!=null?C[1]:void 0}])}return L()(h,function(e){return{extractorID:r.id,jsonLD:e}});case"CONSTANT_VALUE":var v=r.extractorConfig,R=v.parameterType,k=v.value,I=v.customParameterName;return I==null&&$e.has(R)?{extractorID:r.id,jsonLD:Ne(Pe,R,k)}:{extractorID:r.id,customParam:I||R,value:k||""};case"URI":var T=r.extractorConfig,D=T.parameterType,x=T.customParameterName,$=(function(e,t,n){var r=new ue(e);switch(t){case ce:var o=y()(L()(r.pathname.split("/"),function(e){return e.trim()}),Boolean),a=parseInt(n,10);return a0)return i}if(t.tagName==="INPUT"&&t.getAttribute("type")==="image"){var l=t.getAttribute("src");if(l!=null)return l}var s=t.getElementsByTagName("img");if(s.length!==0){var u=s.item(0);o=(u?u.getAttribute("src"):null)||""}return o}var Ye=["sms:","mailto:","tel:","whatsapp:","https://wa.me/","skype:","callto:"],Je=/[\-!$><-==&_\/\?\.,0-9:; \]\[%~\"\{\}\)\(\+\@\^\`\*\#\|\\]/g,Ze=/((([a-z])(?=[A-Z]))|(([A-Z])(?=[A-Z][a-z])))/g,et=/(^\S{1}(?!\S))|((\s)\S{1}(?!\S))/g,tt=/\s+/g;function nt(e){return!!((function(e){var t=Ye;if(!e.hasAttribute("href"))return!1;var n=e.getAttribute("href");return n!=null&&!!ne()(t,function(e){return F()(n,e)})})(e)||(t=Ve(e),t.replace(Je," ").replace(Ze,function(e){return e+" "}).replace(et,function(e){return We(e,e.length-1)+" "}).replace(tt," ").trim().toLowerCase())||Xe(e)||e.querySelector("svg")!=null||e.getAttribute("aria-label"));var t}var rt=600,ot=10;function at(e){if(e==null||e===t.body||!nt(e))return!1;var n=typeof e.getBoundingClientRect=="function"&&e.getBoundingClientRect().height||e.offsetHeight;return!isNaN(n)&&not}function it(e,t){for(var n=0;n>>0;if(typeof t!="function")throw new TypeError(t+" is not a function");for(var o=new Array(r),a=0;a>>0,r=arguments.length>=2?arguments[1]:void 0,o=0;o>>0;if(typeof e!="function")throw new TypeError;for(var r=[],o=arguments.length>=2?arguments[1]:void 0,a=0;a=0&&t<=Number.MAX_SAFE_INTEGER},keys:Ct,listenOnce:function(t,n,r){var e=ct?"on"+n:n,o=ct?t.attachEvent:t.addEventListener,a=ct?t.detachEvent:t.removeEventListener,i=function(){a&&a.call(t,e,i,!1),r()};o&&o.call(t,e,i,!1)},map:bt,reduce:function(t,n,r,o){if(t==null)throw new TypeError(" array is null or not defined");if(typeof n!="function")throw new TypeError(n+" is not a function");var e,a=Object(t),i=a.length>>>0,l=0;if(r!=null||o===!0)e=r;else{for(;l=i)throw new TypeError("Reduce of empty array with no initial value");e=a[l++]}for(;l=0},stringStartsWith:function(t,n){return t!=null&&n!=null&&t.indexOf(n)===0}},It=kt;function Tt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Dt(e){for(var t=1;t0&&arguments[0]!==void 0?arguments[0]:"";return(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")})(this,t),(e=Mt(this,t,[n])).name="PixelCoercionError",e}return(function(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Ft(e,t)})(t,e),n=t,r&&Pt(n.prototype,r),o&&Pt(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o})(wt(Error));function Ut(){return function(e){if(e==null||!Array.isArray(e))throw new qt;return e}}function Vt(e,t){try{return t(e)}catch(e){if(e.name==="PixelCoercionError")return null;throw e}}function Ht(e,t){return t(e)}function Gt(e){if(!e)throw new qt}function zt(e){var t=e.def,n=e.validators;return function(e){var r=Ht(e,t);return n.forEach(function(e){if(!e(r))throw new qt}),r}}var jt=/^[1-9][0-9]{0,25}$/,Kt={allowNull:function(t){return function(e){return e==null?null:t(e)}},array:Ut,arrayOf:function(t){return function(e){return Ht(e,Kt.array()).map(t)}},assert:Gt,boolean:function(){return function(e){if(typeof e!="boolean")throw new qt;return e}},enumeration:function(t){return function(e){if((n=t,Object.values(n)).includes(e))return e;var n;throw new qt}},fbid:function(){return zt({def:function(t){var e=Vt(t,Kt.number());return e!=null?(Kt.assert(Bt(e)),"".concat(e)):Ht(t,Kt.string())},validators:[function(e){return jt.test(e)}]})},mapOf:function(t){return function(e){var n=Ht(e,Kt.object());return Wt(Object.keys(n),function(e,r){return Dt(Dt({},e),{},xt({},r,t(n[r])))},{})}},matches:function(t){return function(e){var n=Ht(e,Kt.string());if(t.test(n))return n;throw new qt}},number:function(){return function(e){if(typeof e!="number")throw new qt;return e}},object:function(){return function(e){if($t(e)!=="object"||Array.isArray(e)||e==null)throw new qt;return e}},objectOrString:function(){return function(e){if($t(e)!=="object"&&typeof e!="string"||Array.isArray(e)||e==null)throw new qt;return e}},objectWithFields:function(t){return function(e){var n=Ht(e,Kt.object());return Wt(Object.keys(t),function(e,r){if(e==null)return null;var o=(0,t[r])(n[r]);return Dt(Dt({},e),{},xt({},r,o))},{})}},string:function(){return function(e){if(typeof e!="string")throw new qt;return e}},stringOrNumber:function(){return function(e){if(typeof e!="string"&&typeof e!="number")throw new qt;return e}},tuple:function(t){return function(e){var n=Ht(e,Ut());return Gt(n.length===t.length),n.map(function(e,n){return Ht(e,t[n])})}},withValidation:zt,func:function(){return function(e){if(typeof e!="function"||e==null)throw new qt;return e}}},Qt={Typed:Kt,coerce:Vt,enforce:Ht,PixelCoercionError:qt},Xt=Qt.Typed,Yt=Xt.objectWithFields({type:Xt.withValidation({def:Xt.number(),validators:[function(e){return e>=1&&e<=3}]}),conditions:Xt.arrayOf(Xt.objectWithFields({targetType:Xt.withValidation({def:Xt.number(),validators:[function(e){return e>=1&&e<=6}]}),extractor:Xt.allowNull(Xt.withValidation({def:Xt.number(),validators:[function(e){return e>=1&&e<=11}]})),operator:Xt.withValidation({def:Xt.number(),validators:[function(e){return e>=1&&e<=4}]}),action:Xt.withValidation({def:Xt.number(),validators:[function(e){return e>=1&&e<=4}]}),value:Xt.allowNull(Xt.string())}))}),Jt="*";function Zt(e){var t=[],n=e;do{var r=n.indexOf(Jt);r<0?(t.push(n),n=""):r===0?(t.push(Jt),n=n.slice(1)):(t.push(n.slice(0,r)),n=n.slice(r))}while(n.length>0);return t}var en=function(t,n){for(var e=Zt(t),r=n,o=0;oe.length)&&(t=e.length);for(var n=0,r=Array(t);n<-==&_\/\?\.,0-9:; \]\[%~\"\{\}\)\(\+\@\^\`]/g," "),r=n.replace(/([A-Z])/g," $1").split(" ");if(r==null||r.length===0)return"";n=tn(r,1)[0];for(var o=1;oi&&(n+=a[l]+" ");return n.replace(/\s+/g," ")}function _n(e){var t=pn(e,!0).toLowerCase().split(" ");return t.filter(function(e,n){return t.indexOf(e)===n}).join(" ").trim()}function fn(e){return pn(e,!1).toLowerCase().trim()}function gn(e,t){if(t.startsWith("*.")){var n=t.slice(2).split(".").reverse(),r=e.split(".").reverse();if(n.length!==r.length)return!1;for(var o=0;o3&&arguments[3]!==void 0&&arguments[3];switch(e){case sn.EQUALS:return(function(e,t){var n=arguments.length>2&&arguments[2]!==void 0&&arguments[2],r=e===t||e.toLowerCase()===yn(t).toLowerCase()||_n(e)===t||mn(e)===mn(t);if(!n||r)return r;var o=t.toLowerCase(),a=e.toLowerCase();return r=(r=r||a===o)||yn(a).toLowerCase()===yn(o).toLowerCase(),(r=(r=_n(a)===o)||mn(a)===mn(o))||hn(a)===hn(o)})(t,n,r);case sn.CONTAINS:return n!=null&&n.includes(t);case sn.DOMAIN_MATCHES:return gn(n,t);case sn.STRING_MATCHES:return n!=null&&on(t,n);default:return!1}}function bn(e,t){var n=arguments.length>2&&arguments[2]!==void 0&&arguments[2];if(!(function(e,t){switch(e){case an.LOAD:return t.event==="PageView";case an.CLICK:return t.event==="SubscribedButtonClick";case an.TRACK:return!0;case an.BECOME_VISIBLE:default:return!1}})(e.action,t))return!1;var r=dn(e.targetType,e.extractor,t);if(r==null)return!1;var o=e.value;return o!=null&&(e.extractor!==un.TOKENIZED_TEXT_V1&&e.extractor!==un.TOKENIZED_TEXT_V2||(o=o.toLowerCase()),Cn(e.operator,o,r,n))}var vn={isMatchESTRule:function(t,n){var e=arguments.length>2&&arguments[2]!==void 0&&arguments[2],r=t;typeof t=="string"&&(r=JSON.parse(t));for(var o=rn(r,Yt),a=[],i=0;i0&&(o=kn(r,function(e,t){var n=t.value;if(n==null)return e;try{var r=parseFloat(n);return e==null?r:e+r}catch(t){return e}},null,!0)),r=[{value:n},{value:o!=null?o.toString():null}].concat(r)}function Mn(e){var t=[];return Ln(e,function(n){if(e!=null){var r=typeof n["@type"]=="string"?n["@type"]:null;if(r!==null){var o=null;switch(r){case"Product":o=$n(n);break;case"ItemList":o=Nn(n);break;case"ListItem":o=Pn(n)}o!=null&&(t=t.concat(o))}}}),t=En(t,function(e){return e!=null}),Ln(t,function(e){Ln(Object.keys(e),function(t){var n=e[t];Array.isArray(n)&&n.length>0||typeof n=="string"&&n!==""||delete e[t]})}),t=En(t,function(e){return Object.keys(e).length>0})}function wn(e){if(e==null)return null;var t=e.replace(/\\u[\dA-F]{4}/gi,function(e){var t=e.replace(/\\u/g,""),n=parseInt(t,16);return String.fromCharCode(n)});if(t=(function(e){var t=e;if(t.length>=3){var n=t.substring(t.length-3);if(/((\.)(\d)(0)|(\,)(0)(0))/.test(n)){var r=n.charAt(0),o=n.charAt(1),a=n.charAt(2);o!=="0"&&(r+=o),a!=="0"&&(r+=a),r.length===1&&(r=""),t=t.substring(0,t.length-3)+r}}return t})(t=(t=(t=t.replace(/[^\d,\.]/g,"")).replace(/(\.){2,}/g,"")).replace(/(\,){2,}/g,"")),!An(t))return null;var n=(function(e){var t=e,n=(function(e){var t=e.replace(/\,/g,"");return On(t=Fn(t),!1)})(t),r=(function(e){var t=e.replace(/\./g,"");return On(t=Fn(t=t.replace(/\,/g,".")),!0)})(t);if(n==null||r==null)return n!=null?n:r!=null?r:null;var o=r.length;return o>0&&r.charAt(o-1)!=="0"&&(o-=1),n.length>=o?n:r})(t);return n==null?null:An(t=n)?t:null}function An(e){return/\d/.test(e)}function Fn(e){var t=e,n=t.indexOf(".");return n<0?t:t=t.substring(0,n+1)+t.substring(n+1).replace(/\./g,"")}function On(e,t){try{var n=parseFloat(e);if(typeof(o=n)!="number"||Number.isNaN(o))return null;var r=t?3:2;return parseFloat(n.toFixed(r)).toString()}catch(e){return null}var o}var Bn={genCustomData:Mn,reduceCustomData:function(t){if(t.length===0)return{};var e=kn(t,function(e,t){return Ln(Object.keys(t),function(n){var r=t[n],o=e[n];if(o==null)e[n]=r;else if(Array.isArray(o)){var a=Array.isArray(r)?r:[r];e[n]=o.concat(a)}}),e},{});return Ln(Object.keys(e),function(t){e[t],e[t]==null&&delete e[t]}),e},getProductData:$n,getItemListData:Nn,getListItemData:Pn,genNormalizePrice:wn},Wn=function(t,n){var e=t.id,r=t.tagName,o=u(t),a=r.toLowerCase(),i=t.className,l=t.querySelectorAll(Ge).length,s=null;t.tagName==="A"&&t instanceof HTMLAnchorElement&&t.href?s=t.href:n!=null&&n instanceof HTMLFormElement&&n.action&&(s=n.action),typeof s!="string"&&(s="");var c={classList:i,destination:s,id:e,imageUrl:Xe(t),innerText:o||"",numChildButtons:l,tag:a,type:t.getAttribute("type")};return(t instanceof HTMLInputElement||t instanceof HTMLSelectElement||t instanceof HTMLTextAreaElement||t instanceof HTMLButtonElement)&&(c.name=t.name,c.value=t.value),t instanceof HTMLAnchorElement&&(c.name=t.name),c},qn=function(){var e=t.querySelector("title");return{title:We(e&&e.text,500)}},Un=function(t,n){var e=t,r=t.matches||e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector||null;return r!==null&&r.bind(t)(n)},Vn=function(t){if(t instanceof HTMLInputElement)return t.form;if(Un(t,je))return null;for(var e=I(t);e.nodeName!=="FORM";){var n=I(e.parentElement);if(n==null)return null;e=n}return e},Hn=function(t){return Ve(t).substring(0,200)},Gn=function(n){if(e.FacebookIWL!=null&&e.FacebookIWL.getIWLRoot!=null&&typeof e.FacebookIWL.getIWLRoot=="function"){var t=e.FacebookIWL.getIWLRoot();return t&&t.contains(n)}return!1},zn="Outbound",jn="Download",Kn=[".pdf",".docx",".doc",".txt",".jpg",".jpeg",".png",".gif",".mp3",".wav",".ogg",".zip",".rar",".7z",".exe",".msi",".xlsx",".xls",".pptx",".ppt"],Qn=function(n){var t=[],r=e.location.hostname,o=n.getAttribute("href");return o!==null&&o!==""&&typeof o=="string"&&(o.startsWith("http://")||o.startsWith("https://"))&&(new URL(o).host!==r&&t.push(zn),Kn.some(function(e){return o.endsWith(e)})&&t.push(jn)),t},Xn=(0,It.filter)(Ge.split(He),function(e){return e!=="a"}).join(He),Yn=function e(t,n,r){var o=arguments.length>3&&arguments[3]!==void 0&&arguments[3];if(t==null||!at(t))return null;if(Un(t,n?Ge:Xn))return t;if(r&&Un(t,ze)){var a=Qn(t);if(a!=null&&a.length>0)return t}var i=t.parentNode,l=o&&i!=null&&i.nodeType===11?I(i.host):I(i);return l!=null?e(l,n,r,o):null},Jn=32,Zn=10,er=9,tr=13,nr=160,rr=8192,or=8202,ar=8239,ir=8287,lr=12288;function sr(e){return/^[0-9A-Fa-f]$/.test(e)}function ur(e){return e>="0"&&e<="9"}function cr(e){return",:[]/{}()\n+".includes(e)}function dr(e){return e>="a"&&e<="z"||e>="A"&&e<="Z"||e==="_"||e==="$"}function mr(e){return e>="a"&&e<="z"||e>="A"&&e<="Z"||e==="_"||e==="$"||e>="0"&&e<="9"}var pr=/^(http|https|ftp|mailto|file|data|irc):\/\/$/,_r=/^[A-Za-z0-9-._~:/?#@!$&\'()*+;=]$/;function fr(e){return",[]/{}\n+".includes(e)}function gr(e){return vr(e)||hr.test(e)}var hr=/^[[{\w-]$/;function yr(e,t){var n=e.charCodeAt(t);return n===Jn||n===Zn||n===er||n===tr}function Cr(e,t){var n=e.charCodeAt(t);return n===Jn||n===er||n===tr}function br(e,t){var n=e.charCodeAt(t);return n===nr||n>=rr&&n<=or||n===ar||n===ir||n===lr}function vr(e){return Sr(e)||Lr(e)}function Sr(e){return e==='"'||e==="\u201C"||e==="\u201D"}function Rr(e){return e==='"'}function Lr(e){return e==="'"||e==="\u2018"||e==="\u2019"||e==="`"||e==="\xB4"}function Er(e){return e==="'"}function kr(e,t){var n=arguments.length>2&&arguments[2]!==void 0&&arguments[2],r=e.lastIndexOf(t);return r!==-1?e.substring(0,r)+(n?"":e.substring(r+1)):e}function Ir(e,t){var n=e.length;if(!yr(e,n-1))return e+t;for(;yr(e,n-1);)n--;return e.substring(0,n)+t+e.substring(n)}function Tr(e,t,n){return e.substring(0,t)+e.substring(t+n)}function Dr(e,t){var n=typeof Symbol!="undefined"&&e[typeof Symbol=="function"?Symbol.iterator:"@@iterator"]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=(function(e,t){if(e){if(typeof e=="string")return xr(e,t);var n={}.toString.call(e).slice(8,-1);return n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set"?Array.from(e):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?xr(e,t):void 0}})(e))||t&&e&&typeof e.length=="number"){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(t){l=!0,a=t},f:function(){try{i||n.return==null||n.return()}finally{if(l)throw a}}}}function xr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=e.length)return n;function o(){a();var r=(function(){if(e[t]!=="{")return!1;n+="{",t++,a(),c(",")&&a();for(var r=!0;t=e.length;i||(gr(e[t])||l?n=Ir(n,":"):I()),o()||(i||l?n+="null":I())}return(function(){e[t]==="}"?(n+="}",t++):n=Ir(n,"}")})(),!0})()||(function(){if(e[t]==="["){n+="[",t++,a(),c(",")&&a();for(var r=!0;tr){var o=e.slice(r,t),a=/^0\d/.test(o);return n+=a?'"'.concat(o,'"'):o,!0}return!1})()||v("true","true")||v("false","false")||v("null","null")||v("True","true")||v("False","false")||v("None","null")||S(!1)||(function(){if(e[t]==="/"){var r=t;for(t++;t0&&arguments[0]!==void 0)||arguments[0],n=t,r=i(e);do(r=l())&&(r=i(e));while(r);return t>n}function i(r){for(var o=r?yr:Cr,a="";;)if(o(e,t))a+=e[t],t++;else{if(!br(e,t))break;a+=" ",t++}return a.length>0&&(n+=a,!0)}function l(){if(e[t]==="/"&&e[t+1]==="*"){for(;t0&&arguments[0]!==void 0&&arguments[0],o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:-1,a=e[t]==="\\";if(a&&(t++,a=!0),!vr(e[t]))return!1;var i=Rr(e[t])?Rr:Er(e[t])?Er:Lr(e[t])?Lr:Sr,l=t,s=n.length,u='"';for(t++;;){var c={str:u,stopAtDelimiter:r,iBefore:l,oBefore:s,stopAtIndex:o,isEndQuote:i},m=_(c);if(m!==null)return m;var p=f(c);if(p!==null)return p;var b=g(c);if(b!==null){if(b.shouldContinue){u=b.str;continue}return b.result}var v=h(c);if(v!==null)return v;var S=y(u);u=S!==null?S:C(u),a&&d()}}function _(r){if(t>=e.length){var o=r.str,a=r.stopAtDelimiter,i=r.iBefore,l=r.oBefore,s=R(t-1);if(!a&&cr(e.charAt(s)))return t=i,n=n.substring(0,l),p(!0);var u=Ir(o,'"');return n+=u,!0}return null}function f(e){if(t===e.stopAtIndex){var r=Ir(e.str,'"');return n+=r,!0}return null}function g(r){if(r.isEndQuote(e[t])){var o=r.str,i=r.stopAtDelimiter,l=r.iBefore,s=r.oBefore,u=t,c=o.length,d=o+'"';if(t++,n+=d,a(!1),i||t>=e.length||cr(e[t])||vr(e[t])||ur(e[t]))return b(),{result:!0,shouldContinue:!1};var m=R(u-1),_=e.charAt(m);return _===","?(t=l,n=n.substring(0,s),{result:p(!1,m),shouldContinue:!1}):cr(_)?(t=l,n=n.substring(0,s),{result:p(!0),shouldContinue:!1}):(n=n.substring(0,s),t=u+1,{str:"".concat(d.substring(0,c),"\\").concat(d.substring(c)),shouldContinue:!0})}return null}function h(r){if(r.stopAtDelimiter&&fr(e[t])){var o=r.iBefore,a=r.str;if(e[t-1]===":"&&pr.test(e.substring(o+1,t+2)))for(;t=e.length?t=e.length:(function(){var n=e.slice(t,t+6);throw new Error('Invalid unicode character "'.concat(n,'" at position ').concat(t))})()}else n+=r,t+=2;return n}return null}function C(n){var r,o=e.charAt(t);return o==='"'&&e[t-1]!=="\\"?(n+="\\".concat(o),t++):(r=o)==="\n"||r==="\r"||r===" "||r==="\b"||r==="\f"?(n+=$r[o],t++):(o>=" "||(function(e){throw new Error("Invalid character ".concat(JSON.stringify(e)," at position ").concat(t))})(o),n+=o,t++),n}function b(){var r=!1;for(a();e[t]==="+";){r=!0,t++,a();var o=(n=kr(n,'"',!0)).length,i=p();n=i?Tr(n,o,1):Ir(n,'"')}return r}function v(r,o){return e.slice(t,t+r.length)===r&&(n+=o,t+=r.length,!0)}function S(r){var a=t;if(dr(e[t])){for(;ta){for(;yr(e,t-1)&&t>0;)t--;var l=e.slice(a,t);return n+=l==="undefined"?"null":JSON.stringify(l),e[t]==='"'&&t++,!0}}function R(t){for(var n=t;n>0&&yr(e,n);)n--;return n}function L(){return t>=e.length||cr(e[t])||yr(e,t)}function E(r){n+="".concat(e.slice(r,t),"0")}function k(){throw new Error("Object key expected at position ".concat(t))}function I(){throw new Error("Colon expected at position ".concat(t))}(function(){throw new Error("Unexpected character ".concat(JSON.stringify(e[t])," at position ").concat(t))})()}function Mr(e,t){return e[t]==="*"&&e[t+1]==="/"}function wr(e){return wr=typeof Symbol=="function"&&G(typeof Symbol=="function"?Symbol.iterator:"@@iterator")=="symbol"?function(e){return G(e)}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==(typeof Symbol=="function"?Symbol.prototype:"@@prototype")?"symbol":G(e)},wr(e)}function Ar(e){return(function(e){if(Array.isArray(e))return Fr(e)})(e)||(function(e){if(typeof Symbol!="undefined"&&e[typeof Symbol=="function"?Symbol.iterator:"@@iterator"]!=null||e["@@iterator"]!=null)return Array.from(e)})(e)||(function(e,t){if(e){if(typeof e=="string")return Fr(e,t);var n={}.toString.call(e).slice(8,-1);return n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set"?Array.from(e):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Fr(e,t):void 0}})(e)||(function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")})()}function Fr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n]+>/g,"")}function yo(e){var t={"&":"&","<":"<",">":">",""":'"',"'":"'","'":"'"};return e.replace(/&(amp|lt|gt|quot|#39|apos);/g,function(e){var n;return(n=t[e])!==null&&n!==void 0?n:e}).replace(/&#x([0-9a-fA-F]+);/g,function(e,t){return String.fromCharCode(parseInt(t,16))}).replace(/&#(\d+);/g,function(e,t){return String.fromCharCode(parseInt(t,10))})}function Co(e){return e.replace(/\s+/g," ").trim()}function bo(e){if(e==null||typeof e!="string")return null;var t=Co(yo(ho(e)));return t===""?null:t}function vo(e,t){return jr.some(function(n){return(e==="https://schema.org/".concat(n.type)||e==="http://schema.org/".concat(n.type))&&n.property===t})}function So(e){return Object.keys(e).length===0}function Ro(e){for(var t={automaticParameters:{},productID:null,productUrl:null,productContents:[],productUrls:[]},n=0;n0&&arguments[0]!==void 0&&arguments[0],n=arguments.length>1&&arguments[1]!==void 0&&arguments[1],r=t.querySelectorAll("[itemscope]");if(r.length===0)return{automaticParameters:{},allProductContents:[]};var o=Ur(r,function(e){return Qr.includes(ko(e,"itemtype").toLowerCase())});if(o.length===0)return{automaticParameters:{},allProductContents:[]};var a={},i=[];return o.forEach(function(t){var r=(function(e){var t=arguments.length>2&&arguments[2]!==void 0&&arguments[2],n=null,r=null,o=null,a=null,i=[{itempropsLowerCase:["price"],property:"item_price",apply:function(t){return Ho(t)},getDefault:function(){return null},setDefault:function(t){}},{itempropsLowerCase:["availability"],property:"availability",apply:function(t){return Xo(t)},getDefault:function(){return null},setDefault:function(t){}},{itempropsLowerCase:["mpn"],property:"mpn",apply:function(t){return t},getDefault:function(){return r},setDefault:function(t){r=t}},{itempropsLowerCase:Kr,property:"gtin",apply:function(t){return t},getDefault:function(){return o},setDefault:function(t){o=t}},{itempropsLowerCase:["productid","sku","product_id"],property:"id",apply:function(t){return t},getDefault:function(){return n},setDefault:function(t){n=t}},{itempropsLowerCase:["pricecurrency"],property:"currency",apply:function(t){return null},getDefault:function(){return a},setDefault:function(t){a=t}}],l={};if(arguments.length>1&&arguments[1]!==void 0&&arguments[1]){To(e).forEach(function(e){var t=e.getAttribute("itemprop");if(typeof t=="string"&&t!==""){var n=d(e);n!=null&&n!==""&&i.forEach(function(e){var r=e.setDefault,o=e.itempropsLowerCase;(0,e.getDefault)()==null&&o.includes(t.toLowerCase())&&r(n)})}});var s=Ur(e.querySelectorAll("[itemscope]"),function(e){return Xr.includes(ko(e,"itemtype").toLowerCase())}),u=[];s.forEach(function(e){var t={};To(e).forEach(function(e){var n=e.getAttribute("itemprop");if(typeof n=="string"&&n!==""){var r=d(e);r!=null&&r!==""&&i.forEach(function(e){var o=e.apply,a=e.property;if(e.itempropsLowerCase.includes(n.toLowerCase())){var i=o(r);Go(t,a,i)}})}}),u.push(t)}),u.forEach(function(e){Go(e,"mpn",e.mpn?e.mpn:r),Go(e,"gtin",e.gtin?e.gtin:o),Go(e,"id",e.id?e.id:n)}),Uo(l={currency:a},!0,u)}var c={};if(t)for(var m=e.querySelectorAll("[itemscope]"),p=[e].concat(Ar(m)),_=new Vr,f=p.length-1;f>=0;f--){var g=p[f],h=g.getAttribute("itemtype");if(typeof h=="string"&&h!==""&&(g===e||!Qr.includes(h.toLowerCase())))for(var y=To(g),C=0;C0&&arguments[0]!==void 0&&arguments[0],n=arguments.length>2&&arguments[2]!==void 0&&arguments[2],r=t.querySelectorAll("[itemscope]"),o=[],a=(function(e){for(var t=new Vr,n=0;n=0;m--){var p=t[m],_=p.getAttribute("itemtype");if(typeof _=="string"&&_!==""){for(var f={},g=p.querySelectorAll("[itemprop]"),h=0;h=0;l--){if(n[l].scope.contains(a)){n[l].schema.subscopes.push(i);break}n.pop()}n.length===0&&t.push(i),n.push({schema:i,scope:a})}return t})(o);return{extractedProperties:_,productMetadata:s}}function $o(e,t,n,r){var o,a=n.toLowerCase();a!=="productid"&&a!=="sku"||(e.ids==null?e.ids=[r]:e.ids.includes(r)||e.ids.push(r)),Qr.includes(t.toLowerCase())&&a==="name"&&(e.name=r),Qr.includes(t.toLowerCase())&&a==="description"&&(e.description=(o=bo(r))!==null&&o!==void 0?o:r),Jr.includes(t.toLowerCase())&&(e.aggregate_rating==null&&(e.aggregate_rating={}),a==="ratingvalue"?e.aggregate_rating.ratingValue=r:a==="ratingcount"?e.aggregate_rating.ratingCount=r:a==="reviewcount"?e.aggregate_rating.reviewCount=r:a==="bestrating"?e.aggregate_rating.bestRating=r:a==="worstrating"&&(e.aggregate_rating.worstRating=r)),Xr.includes(t.toLowerCase())&&e.item_condition==null&&n==="itemCondition"&&Go(e,"item_condition",Xo(r)),Qr.includes(t.toLowerCase())&&e.keywords==null&&n==="keywords"&&(e.keywords=r),Zr.includes(t.toLowerCase())&&e.brand==null&&n==="name"&&(e.brand=r),Qr.includes(t.toLowerCase())&&(e.category==null&&n==="category"&&(e.category=r),e.brand==null&&n==="brand"&&(e.brand=r))}function Po(e,t,n,r){var o=n.toLowerCase();t.automaticParameters.currency==null&&o==="pricecurrency"&&(t.automaticParameters.currency=r),e.id!=null||o!=="productid"&&o!=="sku"||(e.id=r),e.mpn==null&&o==="mpn"&&(e.mpn=r),e.gtin==null&&Kr.includes(o)&&(e.gtin=r),e.item_price==null&&o==="price"&&Go(e,"item_price",Ho(r)),e.availability==null&&o==="availability"&&Go(e,"availability",Xo(r))}function No(e,t){if(e==null)return{content:[],currency:null};var n={},r=(function(e){var t={price:null,currency:null};if(e==null)return t;t.price=Ho(jo(e,ao)),t.currency=jo(e,io);var n=(function(e){var t={price:null,currency:null};return e==null?t:Array.isArray(e)?(e.length===0||qr(e,function(e){e.priceCurrency!=null&&(t.currency=jo(e,io)),t.price=(function(e,t){return e==null?t:t==null?e:e>t?t:e})(Ho(jo(e,ao)),t.price)}),t):(t.price=Ho(jo(e,ao)),t.currency=jo(e,io),t)})(jo(e,uo));return t.price==null&&(t.price=n.price),t.currency==null&&(t.currency=n.currency),t})(e),o=jo(e,eo,t.mpn),a=jo(e,Kr,t.gtin);Go(n,"mpn",o),Go(n,"gtin",a),Go(n,"item_price",r.price),Go(n,"availability",Xo(jo(e,oo)));var i=(function(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,r=[];if(n&&r.push(n),wr(e)!=="object")return r;var o=[];return qr(Object.keys(e),function(n){t.includes(n.toLowerCase())&&zo(e[n])&&o.push(e[n])}),o.length>0?o:r})(e,lo,t.id),l=(function(e,t){var n=[];return t.forEach(function(t){if(t!=null){var r=Br({},e);r.id=t,n.push(r)}}),n.length!==0||So(e)||n.push(e),n})(n,i);return{content:l,currency:r.currency}}function Mo(){for(var e=arguments.length>0&&arguments[0]!==void 0&&arguments[0],n=arguments.length>1&&arguments[1]!==void 0&&arguments[1],r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3&&arguments[3]!==void 0&&arguments[3],a={automaticParameters:{},productID:null,productUrl:null,productContents:[]},i=[],l=[],s=t.querySelectorAll('script[type="application/ld+json"]'),u=0,c=[],d={},m=0;mGr)return Uo(a.automaticParameters,e,c),Vo(a.productContents,o,[d]),{extractedProperties:i,invalidInnerTexts:l,productMetadata:a};for(var _=wo(p,n),f=0;f<_.length;f++){var g=_[f];Wo(_,jo(g,["mainentity"])),Wo(_,jo(g,["@graph"])),Wo(_,jo(g,["hasvariant"]));var h={},y=Ao({json:g,productMetadata:a,contentData:h,includeAutomaticParameters:e,productContentData:d,includeProductContent:o,logInfo:r}),C=y.isTypeProduct,b=y.offers;if((a.productUrl==null||C)&&b!=null){var v=Oo({offers:b,productMetadata:a,contentData:h,includeAutomaticParameters:e,productContentData:d,includeProductContent:o,logInfo:r});c=c.concat(v)}i.push(g)}}catch(e){l.push(p)}}return Uo(a.automaticParameters,e,c),Vo(a.productContents,o,[d]),{extractedProperties:i,invalidInnerTexts:l,productMetadata:a}}function wo(e,t){var n=null;n=aa(e);try{n=JSON.parse(n.replace(/[\n\r\t]+/g," "))}catch(e){if(!t)throw e;try{n=ia(n),n=JSON.parse(n.replace(/[\n\r\t]+/g," "))}catch(t){throw new Error("Failed to parse JSON even after repair attempt. Original error: ".concat(e.message))}}return Array.isArray(n)||(n=[n]),n}function Ao(e){var t=e.json,n=e.productMetadata,r=e.contentData,o=e.includeAutomaticParameters,a=e.productContentData,i=e.includeProductContent,l=qo(t),s=Qr.includes(l),u=jo(t,so);if(!s)return{isTypeProduct:s,offers:u};var c=jo(t,lo);if(n.productID!=null&&n.productID!==""||(n.productID=c),o&&(Go(r,"id",c),Go(r,"mpn",jo(t,eo)),Go(r,"gtin",jo(t,Kr))),i){c&&(a.ids==null?a.ids=[c]:a.ids.includes(c)||a.ids.push(c)),Go(a,"name",jo(t,to)),Go(a,"description",bo(jo(t,no))),Go(a,"aggregate_rating",jo(t,ro)),Go(a,"keywords",jo(t,po)),Go(a,"category",jo(t,_o));var d=jo(t,fo);typeof d=="string"?a.brand=d:Go(a,"brand",jo(d,to))}return Bo(t,n),Fo(t,n),{isTypeProduct:s,offers:u}}function Fo(e,t){var n=jo(e,co);n!=null&&n!==""&&(t.productUrls==null&&(t.productUrls=[]),t.productUrls.push(n))}function Oo(e){var t=e.offers,n=e.productMetadata,r=e.contentData,o=e.includeAutomaticParameters,a=e.productContentData,i=e.includeProductContent,l=[],s=[];if(Array.isArray(t))s=t;else{var u=qo(t),c=Xr.includes(u),d=Yr.includes(u);(c||d)&&(s=[t])}return s.length===0||qr(s,function(e){if(Bo(e,n),Fo(e,n),o){var t=No(e,r);n.automaticParameters.currency==null&&(n.automaticParameters.currency=t.currency),l=l.concat(t.content)}i&&((function(e,t){if(e!=null){var n=jo(e,lo);n!=null&&(t.ids==null?t.ids=[n]:t.ids.includes(n)||t.ids.push(n))}})(e,a),(function(e,t,n){e!=null&&Go(t,"item_condition",Xo(jo(e,mo,n.item_condition)))})(e,a,r))}),l}function Bo(e,t){var n=jo(e,co);t.productUrl!=null&&t.productUrl!==""||(t.productUrl=n)}function Wo(e,t){if(t!=null){var n=t;Array.isArray(t)||(n=[t]),e.push.apply(e,Ar(n))}}function qo(e){return e==null?"":typeof e["@type"]=="string"&&e["@type"]!=null?e["@type"].toLowerCase():""}function Uo(e,t,n){if(t){var r=n.filter(function(e){return!So(e)});r.length!==0&&(e.contents=r)}}function Vo(e,t,n){if(t){var r=n.map(function(e){return(function(e){for(var t={},n=0,r=Object.keys(e);n2&&arguments[2]!==void 0?arguments[2]:null;if(e==null||wr(e)!=="object")return n;var r=Object.keys(e),o={};qr(r,function(n){t.includes(n.toLowerCase())&&(o[n.toLowerCase()]=e[n])});var a=t.find(function(e){return zo(o[e])});return a?o[a]:n}function Ko(e,t,n,r,o,a,i){var l,s=arguments.length>7&&arguments[7]!==void 0&&arguments[7],u=null,c=null,d=!1,m=n[e];return m!=null&&(l=e,zr.includes(l))?Array.isArray(m)?n[e].push(t):n[e]=[m,t]:(t&&(r.productID!=null&&r.productID!==""||(e==="product:retailer_item_id"&&(u=t,d=!0),e==="product:sku"&&(c=t,d=!0)),r.productUrl!=null&&r.productUrl!==""||e!=="og:url"||(r.productUrl=t),e==="og:type"&&t.toLowerCase().includes("product")&&(d=!0),s&&(function(e,t,n){var r;n.name!=null||e!=="product:name"&&e!=="og:title"||(n.name=t),n.description!=null||e!=="product:description"&&e!=="og:description"||(n.description=(r=bo(t))!==null&&r!==void 0?r:t),e!=="product:retailer_item_id"&&e!=="product:sku"||(n.ids==null?n.ids=[t]:n.ids.includes(t)||n.ids.push(t)),e!=="product:brand"&&e!=="og:brand"||(n.brand=t),e!=="product:category"&&e!=="og:category"||(n.category=t),n.item_condition!=null||e!=="product:condition"&&e!=="og:condition"||Go(n,"item_condition",Xo(t)),n.keywords!=null||e!=="product:keywords"&&e!=="og:keywords"||(n.keywords=t)})(e,t,i),a&&(function(e,t,n,r){n.automaticParameters.currency!=null||e!=="product:price:currency"&&e!=="og:price:currency"||(n.automaticParameters.currency=t),r.id!=null||e!=="product:retailer_item_id"&&e!=="product:sku"||(r.id=t),r.mpn==null&&e==="product:mfr_part_no"&&(r.mpn=t),r.gtin==null&&Kr.map(function(e){return"product:".concat(e)}).includes(e)&&(r.gtin=t),r.item_price!=null||e!=="product:price:amount"&&e!=="og:price:amount"||Go(r,"item_price",Ho(t)),r.availability!=null||e!=="product:availability"&&e!=="og:availability"||Go(r,"availability",Xo(t))})(e,t,r,o)),n[e]=t),{productRetailerItemID:u,productSKU:c,isProduct:d}}function Qo(){for(var e=arguments.length>0&&arguments[0]!==void 0&&arguments[0],n=arguments.length>2&&arguments[2]!==void 0&&arguments[2],r={automaticParameters:{},productID:null,productUrl:null,productContents:[]},o=new Vr(["og","product","music","video","article","book","profile","website","twitter"]),a={},i=null,l=null,s=!1,u={},c={},d=t.querySelectorAll("meta[property]"),m=0;m0?t[t.length-1]:""}var Yo={description:!0,keywords:!0};function Jo(){var e=arguments.length>0&&arguments[0]!==void 0&&arguments[0],n=t.querySelector("title"),r=n&&(n.textContent||n.innerText);if(e&&(!r||r.trim()==="")){var o=t.querySelector('meta[property="og:title"]');if(o){var a=o.getAttribute("content");a&&(r=a)}}var i={title:We(r,Hr)},l=(function(){var e=t.querySelector('meta[property="og:locale"]');if(e!=null){var n=e.getAttribute("content");if(n!=null&&n!=="")return n.substring(0,Zo)}var r=t.documentElement;if(r!=null){var o=r.getAttribute("lang");if(o!=null&&o!=="")return o.substring(0,Zo)}var a=t.querySelector('meta[http-equiv="content-language"]');if(a!=null){var i=a.getAttribute("content");if(i!=null&&i!=="")return i.substring(0,Zo)}return null})();l!=null&&(i.locale=l);for(var s=t.querySelectorAll("meta[name]"),u=0;u0&&(l.ids=s);for(var u=0;u0&&(i.contents=p.contents),i):(c?p.contents!=null&&p.contents.length>0&&(i.contents=p.contents):u&&(i.content_ids=p.product_variant_ids,i.content_type=p.content_type_favor_variant),i))}catch(e){return e.message="[Shopify]: ".concat(e.message),l(e),i}}o.exports={isIncrementalShopifyEvent:u,updateContentDataForShopify:c}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsShouldRestrictReferrerEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsEventPayload"),t=a.getFbeventsModules("SignalsFBEventsBaseEvent");function n(t){var n=t instanceof e?t:null;return n!=null?[n]:null}var r=new t(n);o.exports=r})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsSkipOpenBridgeConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({enabled:t.boolean()});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsSmartSetupPixelConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({type:t.string(),selector:t.string(),key:t.string(),source:t.allowNull(t.string())}),r=t.objectWithFields({rules:t.allowNull(t.mapOf(t.allowNull(n))),maxEntriesPerKey:t.allowNull(t.number()),maxValueLength:t.allowNull(t.number())});o.exports=r})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsSPANavigationUtil",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var a=n.href,i=t.referrer;function l(e){s(e),u(e)}function s(t){if(t.fbq.disablePushState!==!0&&!(!r.pushState||!r.replaceState)){var o=t.makeSafe(function(){t.automaticPageView.trigger(),i=a,a=n.href,a!==i&&t.onPageChange()});t.injectMethod(r,"pushState",o),t.injectMethod(r,"replaceState",o),e.addEventListener("popstate",o,!1)}}function u(t){"onpageshow"in e&&e.addEventListener("pageshow",function(e){e.persisted&&(t.automaticPageView.trigger(),t.onPageChange())})}o.exports={setupSPANavigation:l}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsStandardParamChecksConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({standardParamChecks:t.allowNull(t.mapOf(t.allowNull(t.arrayOf(t.allowNull(t.objectWithFields({require_exact_match:t.boolean(),potential_matches:t.allowNull(t.arrayOf(t.string()))}))))))});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsTelemetry",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsLogging"),n=a.getFbeventsModules("SignalsEventPayload"),r=a.getFbeventsModules("signalsFBEventsSendGET"),i=.01,l=Math.random(),s=e.fbq&&e.fbq._releaseSegment?e.fbq._releaseSegment:"unknown",u=l1&&arguments[1]!==void 0?arguments[1]:0,i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;if(!(!i&&!u))try{var l=new n;l.append("v",e.fbq&&e.fbq.version?e.fbq.version:"unknown"),l.append("rs",s),l.append("e",o),l.append("p",String(a)),r(l,{ignoreRequestLengthCheck:!0,url:c})}catch(e){t.logError(e)}}function m(e){d("FBMQ_FORWARDED",e,!0)}o.exports={logMobileNativeForwarding:m}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsTrackEventEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.Typed,r=n.objectWithFields({pixelID:n.allowNull(n.string()),eventName:n.string(),customData:n.allowNull(n.object()),eventData:n.allowNull(n.object()),eventId:n.allowNull(n.string())}),i=new e(n.tuple([r]));o.exports=i})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsTriggerSgwPixelTrackCommandConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({sgwPixelId:t.allowNull(t.string()),sgwHostUrl:t.allowNull(t.string())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsTyped",function(){ -return(function(e,t,n,r){var o={exports:{}},l=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsUtils"),t=e.reduce,n=a.getFbeventsModules("SignalsFBEventsUtils"),r=n.isSafeInteger,l=(function(e){function t(){var e,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",r=arguments.length>1?arguments[1]:void 0;$(this,t);var o=r!=null?"".concat(r,": ").concat(n):n;return e=i(this,t,[o]),e.name="FBEventsCoercionError",e}return u(t,e),N(t)})(c(Error));function s(e){return Object.values(e)}function d(){return function(e){if(typeof e!="boolean")throw new l("Expected boolean, got ".concat(G(e)),"Typed.boolean");return e}}function m(){return function(e){if(typeof e!="number")throw new l("Expected number, got ".concat(G(e)),"Typed.number");return e}}function p(){return function(e){return e}}function _(){return function(e){if(typeof e=="string")return e;if(G(e)==="object"&&e!==null)try{return JSON.stringify(e)}catch(e){throw new l("Expected string, got object that cannot be stringified","Typed.string")}throw new l("Expected string, got ".concat(G(e)),"Typed.string")}}function f(){return function(e){var t=P(e,W.string());return t.toLowerCase()}}function g(){return function(e){if(typeof e!="string"&&typeof e!="number")throw new l("Expected string or number, got ".concat(G(e)),"Typed.stringOrNumber");return e}}function h(){return function(e){if(G(e)!=="object"||Array.isArray(e)||e==null)throw new l("Expected object, got ".concat(G(e)).concat(Array.isArray(e)?" (array)":""),"Typed.object");return e}}function y(){return function(e){if(G(e)!=="object"||Array.isArray(e)||e==null)throw new l("Expected object, got ".concat(G(e)).concat(Array.isArray(e)?" (array)":""),"Typed.mutableObject");return v({},e)}}function C(){return function(e){if(G(e)!=="object"||Array.isArray(e)||e==null)throw new l("Expected object, got ".concat(G(e)).concat(Array.isArray(e)?" (array)":""),"Typed.stringRecord");for(var t={},n=0,r=Object.keys(e);n0&&o.append("cud",l),Object.keys(s).length>0&&o.append("cudff",s),o.append("ud",v(v({},a),p),!0),o.append("aud",v(v({},d),C),!0),o.append("udff",v(v({},u),_),!0),o.append("audff",v(v({},c),R),!0)}catch(r){t(r,"pixel","pii_invalidated"),n.trigger(e)}}o.exports={getPrivateEmailDomain:i,appendUserDataParams:l,redactedEmailHash:r}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsUtils",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var e=Object.prototype.toString,n=Object.prototype.hasOwnProperty;function r(e,t){return n.call(e,t)}var a=!("addEventListener"in t);function i(e,t){return t!=null&&e instanceof t}function l(t){return Array.isArray?Array.isArray(t):e.call(t)==="[object Array]"}function s(e){return typeof e=="number"||typeof e=="string"&&/^\d+$/.test(e)}function u(e){return e!=null&&G(e)==="object"&&!l(e)}function c(t){return u(t)&&e.call(t)==="[object Object]"}function d(e){if(!c(e))return!1;var t=e.constructor;if(typeof t!="function")return!1;var n=t.prototype;return!(!c(n)||!r(n,"isPrototypeOf"))}var m=Number.isInteger||function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e};function p(e){return m(e)&&e>=0&&e<=Number.MAX_SAFE_INTEGER}function _(e,t,n){var r=a?"on"+t:t,o=a?e.attachEvent:e.addEventListener,i=a?e.detachEvent:e.removeEventListener,l=function(){i&&i.call(e,r,l,!1),n()};o&&o.call(e,r,l,!1)}var f=Object.prototype.propertyIsEnumerable,g=!f.call({toString:null},"toString"),h=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],y=h.length;function C(e){if(G(e)!=="object"&&(typeof e!="function"||e===null))throw new TypeError("Object.keys called on non-object");var t=[];for(var r in e)n.call(e,r)&&t.push(r);if(g)for(var o=0;o=r)throw new TypeError("Reduce of empty array with no initial value");a=e[o++]}for(;o=0}function x(e,t){return e==null||t==null?!1:e.indexOf(t)===0}function P(e){return e.filter(function(t,n){return e.indexOf(t)===n})}function M(){var e=Date.now();return typeof e=="number"?e:new Date().getTime()}var w={FBSet:T,each:function(t,n){if(t!=null)for(var e=t.length,r=0;r\?@ \[\\\]\^_`\{\|\}~\s]+/g,s=/[^a-zA-Z0-9]+/g,u=/^1\(?\d{3}\)?\d{7}$/,c=/^47\d{8}$/,d=/^\d{1,4}\(?\d{2,3}\)?\d{4,}$/;function m(e){return typeof e=="string"?e.replace(r,""):""}function p(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"whitespace_only",n="";if(typeof e=="string")switch(t){case"whitespace_only":n=e.replace(i,"");break;case"whitespace_and_punctuation":n=e.replace(l,"");break;case"all_non_latin_alpha_numeric":n=e.replace(s,"");break}return n}function _(e){return typeof e=="string"&&n.test(e)}function f(e){var n=String(e).replace(/[\-\s]+/g,"").replace(/^\+?0{0,2}/,"");return t(n,"0")?!1:t(n,"1")?u.test(n):t(n,"47")?c.test(n):d.test(n)}o.exports={isInternationalPhoneNumber:f,looksLikeHashed:_,strip:p,trim:m}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsVVPConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({enabled:t.boolean(),rules:t.arrayOf(t.objectWithFields({place:t.number(),keyRegex:t.allowNull(t.string()),valueRegex:t.allowNull(t.string()),keyNegativeRegex:t.allowNull(t.string())})),standardParams:t.mapOf(t.boolean()),inScopeEventNames:t.allowNull(t.arrayOf(t.string())),isShadowEnabled:t.allowNull(t.boolean())});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsWebchatConfigTypedef",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsTyped"),t=e.Typed,n=t.objectWithFields({automaticEventNamesEnabled:t.arrayOf(t.string()),automaticEventsEnabled:t.boolean(),pixelDataToWebchatEnabled:t.boolean()});o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsWebChatEvent",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsBaseEvent"),t=a.getFbeventsModules("SignalsFBEventsTyped"),n=t.Typed,r=n.objectWithFields({pixelID:n.allowNull(n.string()),eventName:n.string(),customData:n.allowNull(n.mutableObject()),eventData:n.allowNull(n.object()),customParams:n.allowNull(n.stringRecord())}),i=new e(n.tuple([r]));o.exports=i})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsParamList",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsCensor"),t=e.censoredIneligibleKeysWithUD,n=a.getFbeventsModules("SignalsFBEventsUtils"),r=n.hasOwn,i=a.getFbeventsModules("SignalsEventPayload"),l=a.getFbeventsModules("SignalsFBEventsGuardrail"),s="deep",u="shallow",c=["eid"];function d(e){return JSON==null||!JSON.stringify?Object.prototype.toString.call(e):JSON.stringify(e)}function m(e){if(e==null)return!0;var t=G(e);return t==="number"||t==="boolean"||t==="string"}var p=(function(){function e(t){$(this,e),S(this,"_params",new Map),this._piiTranslator=t}return N(e,[{key:"containsKey",value:function(t){return this._params.has(t)}},{key:"get",value:function(t){var e=this._params.get(t);return e==null||e.length===0?null:e[e.length-1]}},{key:"getAll",value:function(t){var e=this._params.get(t);return e||null}},{key:"getAllParams",value:function(){var e=[],t=U(this._params.entries()),n;try{for(t.s();!(n=t.n()).done;){var r=R(n.value,2),o=r[0],a=r[1],i=U(a),l;try{for(i.s();!(l=i.n()).done;){var s=l.value;e.push({name:o,value:s})}}catch(e){i.e(e)}finally{i.f()}}}catch(e){t.e(e)}finally{t.f()}return e}},{key:"replaceEntry",value:function(t,n){this._removeKey(t),this.append(t,n)}},{key:"replaceObjectEntry",value:function(t,n){this._removeObjectKey(t,n),this.append(t,n)}},{key:"addRange",value:function(t){this.addParams(t.getAllParams())}},{key:"addParams",value:function(t){for(var e=0;e2&&arguments[2]!==void 0?arguments[2]:!1;return this._append({name:encodeURIComponent(t),value:n},s,e),this}},{key:"appendHash",value:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;for(var n in t)r(t,n)&&this._append({name:encodeURIComponent(n),value:t[n]},s,e);return this}},{key:"_removeKey",value:function(t){this._params.delete(t)}},{key:"_removeObjectKey",value:function(t,n){for(var e in n)if(r(n,e)){var o="".concat(t,"[").concat(encodeURIComponent(e),"]");this._removeKey(o)}}},{key:"_append",value:function(t,n,r){var e=t.name,o=t.value;if(o!=null)for(var a=0;a0)return o}return null}},{key:"toPayload",value:function(){var e=new i;return this.each(function(t,n){e.append(t,n)}),e}}],[{key:"fromHash",value:function(n,r){return new e(r).appendHash(n)}}])})();o.exports=p})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsPixelCookieUtils",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsPixelCookie"),n=a.getFbeventsModules("signalsFBEventsGetIsChrome"),r=a.getFbeventsModules("SignalsFBEventsLogging"),i=r.logWarning,l=a.getFbeventsModules("SignalsFBEventsQEV2"),s=a.getFbeventsModules("SignalsFBEventsExperimentNames"),u=s.COOKIE_TTL_FIX,c=a.getFbeventsModules("SignalsFBEventsUtils"),d=c.getCurrentTime,m=a.getFbeventsModules("SignalsFBEventsComparedManagers"),p=2160*60*60*1e3,_=1e3,f="_fbc",g="fbc",h="fbcs",y="aems",C="_fbp",b="fbp",v="fbclid",S=[{prefix:"",query:"fbclid",ebp_path:"clickID"}],R={params:S},L=!1;function E(e){var t=l.isInTestPageLoadLevelExperiment(u);if(t){var n=d();return new Date(n+Math.round(e)).toUTCString()}return new Date(Date.now()+Math.round(e)).toUTCString()}function k(e){var n=m.getComparedCookieRaw(e);return typeof n!="string"||n===""?null:t.unpack(n)}function I(e,t){return e.slice(e.length-1-t).join(".")}function T(e,t,r,o){return"".concat(e,"=").concat(t,";")+"expires=".concat(E(o),";")+"domain=.".concat(r,";")+"".concat(n()?"SameSite=Lax;":"")+"path=/"}function D(e,t,r,o){return"".concat(e,"=").concat(t,";")+"max-age=".concat(Math.floor(o/_),";")+"domain=.".concat(r,";")+"".concat(n()?"SameSite=Lax;":"")+"path=/"}function x(e,t,n){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:p,o=encodeURIComponent(t);try{m.setComparedCookieRaw(T(e,o,n,r))}catch(e){i("Fail to write cookie: "+e.message)}var a=k(e);if(a==null){var s=l.isInTestPageLoadLevelExperiment(u);if(s)try{m.setComparedCookieRaw(D(e,o,n,r))}catch(e){i("Fail to write cookie with max-age: "+e.message)}}}function $(t,n){var r=e.location.hostname,o=r.split(".");if(n.subdomainIndex==null)throw new Error("Subdomain index not set on cookie.");var a=I(o,n.subdomainIndex);return x(t,n.pack(),a,p),m.updateCookieCache(t,n.pack()),n}function P(n,r){for(var o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:p,a=e.location.hostname,i=a.split("."),l=new t(r),s=0;s2?k(r,n)||k(t,n)||k(o,n)||k(a,n):r===n||t===n||o===n||a===n}function T(e){var t=e.id,n=e.keywords,r=e.name,o=e.placeholder,a=e.value;return E(n,function(e){return I({id:t,keyword:e,name:r,placeholder:o,value:a})})}function D(e){return e!=null&&typeof e=="string"&&g.test(e)}function x(e){var t=e;return typeof t=="number"&&typeof t.toString=="function"&&(t=t.toString()),t!=null&&typeof t=="string"&&t.length>6&&L.test(t)}function $(e){var t=e;return typeof t=="number"&&typeof t.toString=="function"&&(t=t.toString()),t!=null&&typeof t=="string"&&S.test(t)}function P(e){var t=e.value,n=e.parentElement,r=e.previousElementSibling,o=null;if((r instanceof HTMLInputElement||r instanceof HTMLTextAreaElement)&&(o=r.value),o==null||typeof o!="string"||n==null)return null;var a=n.innerText!=null?n.innerText:n.textContent;if(a==null||a.indexOf("@")<0)return null;var i="".concat(o,"@").concat(t);return g.test(i)?i:null}function N(e,t){var n=e.name,r=e.id,o=e.placeholder,a=e.value;return t==="tel"&&!(a.length<=6&&h.ZIP_CODE.includes(r))||T({id:r,keywords:h.PHONE_NUMBER,name:n,placeholder:o})}function M(e){var t=e.name,n=e.id,r=e.placeholder;return T({id:n,keywords:h.FIRST_NAME,name:t,placeholder:r})}function w(e){var t=e.name,n=e.id,r=e.placeholder;return T({id:n,keywords:h.LAST_NAME,name:t,placeholder:r})}function A(e){var t=e.name,n=e.id,r=e.placeholder;return T({id:n,keywords:h.NAME,name:t,placeholder:r})&&!T({id:n,keywords:h.USERNAME,name:t,placeholder:r})}function F(e){var t=e.name,n=e.id,r=e.placeholder;return T({id:n,keywords:h.CITY,name:t,placeholder:r})}function O(e){var t=e.name,n=e.id,r=e.placeholder;return T({id:n,keywords:h.STATE,name:t,placeholder:r})}function B(e,t,n){var r=e.name,o=e.id,a=e.placeholder,i=e.value;return(t==="checkbox"||t==="radio")&&n===!0?T({id:o,keywords:h.GENDER_VALUES,name:r,placeholder:a,value:i}):t==="text"?T({id:o,keywords:h.GENDER_FIELDS,name:r,placeholder:a}):!1}function W(e,t){var n=e.name,r=e.id;return t!==""&&E(b,function(e){var n=t.match(String(e));return n!=null&&n[0]===t})||T({id:r,keywords:h.ZIP_CODE,name:n})}function q(e){var t=e.name,n=e.id;return T({id:n,keywords:h.RESTRICTED,name:t})}function V(e){return e.trim().toLowerCase().replace(/[_-]/g,"")}function H(e){return e.trim().toLowerCase()}function G(e){return E(h.MALE,function(t){return t===e})?"m":E(h.FEMALE,function(t){return t===e})?"f":""}function z(e){var t=e.toLowerCase();return y[t]!==void 0?y[t]:t}var j=(function(){for(var e={},t=0,n=Object.entries(C);t2&&arguments[2]!==void 0?arguments[2]:!1,a=z(e),i=r[a];(i==null||i.length===0)&&(i=r.default);var l=n[i.type];if(l==null)return null;var s=l(t,i.typeParams,o);return s!=null&&s!==""?s:null}function X(e,n){var r=n.value,o=n instanceof HTMLInputElement&&n.checked===!0,a=e.name,i=e.id,d=e.inputType,f=e.placeholder,g={id:V(a),name:V(i),placeholder:f!=null&&V(f)||"",value:H(r)};if(q(g)||d==="password"||r===""||r==null)return null;if(D(g.value))return{normalized:{em:s(g.value)},alternateNormalized:{em:s(g.value)},rawCensored:l.eval("send_censored_em")?{em:t(r)}:{}};if(P(n)!=null)return{normalized:{em:s(P(n))},alternateNormalized:{em:s(P(n))},rawCensored:l.eval("send_censored_em")?{em:t(r)}:{}};if(M(g))return{normalized:{fn:m(g.value)},alternateNormalized:{fn:m(g.value)},rawCensored:l.eval("send_censored_ph")?{fn:t(r)}:{}};if(w(g))return{normalized:{ln:m(g.value)},alternateNormalized:{ln:m(g.value)},rawCensored:l.eval("send_censored_ph")?{ln:t(r)}:{}};if(N(g,d))return{normalized:{ph:c(g.value)},alternateNormalized:{ph:c(g.value,null,!0)},rawCensored:l.eval("send_censored_ph")?{ph:t(g.value)}:{}};if(A(g)){var h=r.split(" "),y=h[0];h.shift();var C=h.join(" "),b=g.value.split(" "),S={fn:m(b[0])};b.shift();var R={ln:m(b.join(" "))};return{normalized:v(v({},S),R),alternateNormalized:v(v({},S),R),rawCensored:l.eval("send_censored_ph")?{fn:t(y),ln:t(C)}:{}}}else{if(F(g))return{normalized:{ct:p(g.value)},alternateNormalized:{ct:p(g.value)},rawCensored:{ct:t(r)}};if(O(g))return{normalized:{st:_(g.value)},alternateNormalized:{st:_(g.value,null,!0)},rawCensored:l.eval("send_censored_ph")?{st:t(r)}:{}};if(d!=null&&B(g,d,o))return{normalized:{ge:G(g.value)},alternateNormalized:{ge:G(g.value)},rawCensored:l.eval("send_censored_ph")?{ge:t(r)}:{}};if(W(g,r))return{normalized:{zp:u(g.value)},alternateNormalized:{zp:u(g.value)},rawCensored:l.eval("send_censored_ph")?{zp:t(r)}:{}}}return null}o.exports={extractPIIFields:X,getNormalizedPIIKey:z,getNormalizedPIIKeyExpanded:K,getNormalizedPIIValue:Q,isEmail:D,getGenderCharacter:G,isPhoneNumber:x,isZipCode:$}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("WebStorage",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var t=typeof e!="undefined"?e:self,n={getLocalStorage:function(){var e=null;try{if(e=t.localStorage,e!=null&&typeof e.setItem=="function"&&typeof e.removeItem=="function"){var n="__test__"+Date.now();return e.setItem(n,""),e.removeItem(n),e}}catch(e){return null}return null}};o.exports=n})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("WebStorageMutex",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";function e(){return Date.now()}function t(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(e){var t=Math.random()*16|0,n=e==="x"?t:t&3|8;return n.toString(16)})}var n="pixel_mutex:",r=1e3,i=a.getFbeventsModules("WebStorage"),l=i.getLocalStorage,s=t(),u=null,c=!1;function d(){return c||(c=!0,u=l()),u}function m(e){return n+e}function p(){return"".concat(e(),"-").concat(Math.random().toString(16).slice(2),"-").concat(t())}function _(e){var t=d();if(!t)return null;var n=t.getItem(m(e));if(n==null)return null;try{var r=JSON.parse(n);if(r&&typeof r.ownerId=="string"&&typeof r.token=="string"&&Number.isFinite(r.expiresAt))return r}catch(e){}return null}function f(e,t){var n=d();if(!n)return!1;try{var r=JSON.stringify(t);return n.setItem(m(e),r),n.getItem(m(e))===r}catch(e){return!1}}function g(e){var t=d();if(t)try{t.removeItem(m(e))}catch(e){}}var h=new WeakMap,y=new WeakSet,C=(function(){function t(e){$(this,t),A(this,y),F(this,h,void 0),this.name=e,W(h,this,null)}return N(t,[{key:"lock",value:function(n,r,o){var t=this;B(h,this)&&(clearTimeout(B(h,this)),W(h,this,null));var a=_(this.name);(!a||a.ownerId===s||a.expiresAt=e())}function v(e){var t=Math.max(1,e==null?r:e),n=_(this.name);if(n&&n.expiresAt>=Date.now()&&n.ownerId!==s)return!1;var o={ownerId:s,token:p(),expiresAt:Date.now()+t};return!!f(this.name,o)}o.exports=C})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.commonincludes",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsPlugin");o.exports=new e(function(e,t){})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.commonincludes"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.commonincludes",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.commonincludes",function(){ -return o.exports})})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;if(a.execStart=e.performance&&e.performance.now&&e.performance.now(),!(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})())return;function i(e){"@babel/helpers - typeof";return i=typeof Symbol=="function"&&typeof(typeof Symbol=="function"?Symbol.iterator:"@@iterator")=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==(typeof Symbol=="function"?Symbol.prototype:"@@prototype")?"symbol":typeof e},i(e)}function l(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=55296&&n<=56319&&r>=56320&&r<=57343&&(n=65536+((n&1023)<<10)+(r&1023),o++),n<=127?t+=String.fromCharCode(n):n<=2047?t+=String.fromCharCode(192|n>>>6&31,128|n&63):n<=65535?t+=String.fromCharCode(224|n>>>12&15,128|n>>>6&63,128|n&63):n<=2097151&&(t+=String.fromCharCode(240|n>>>18&7,128|n>>>12&63,128|n>>>6&63,128|n&63));return t}function t(e,t){return t>>>e|t<<32-e}function n(e,t,n){return e&t^~e&n}function r(e,t,n){return e&t^e&n^t&n}function a(e){return t(2,e)^t(13,e)^t(22,e)}function i(e){return t(6,e)^t(11,e)^t(25,e)}function l(e){return t(7,e)^t(18,e)^e>>>3}function s(e){return t(17,e)^t(19,e)^e>>>10}function u(e,t){return e[t&15]+=s(e[t+14&15])+e[t+9&15]+l(e[t+1&15])}var c=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],d=new Array(8),m=new Array(2),p=new Array(64),_=new Array(16),f="0123456789abcdef";function g(e,t){var n=(e&65535)+(t&65535),r=(e>>16)+(t>>16)+(n>>16);return r<<16|n&65535}function h(){m[0]=m[1]=0,d[0]=1779033703,d[1]=3144134277,d[2]=1013904242,d[3]=2773480762,d[4]=1359893119,d[5]=2600822924,d[6]=528734635,d[7]=1541459225}function y(){var e,t,o,l,s,m,f,h,y,C;o=d[0],l=d[1],s=d[2],m=d[3],f=d[4],h=d[5],y=d[6],C=d[7];for(var b=0;b<16;b++)_[b]=p[(b<<2)+3]|p[(b<<2)+2]<<8|p[(b<<2)+1]<<16|p[b<<2]<<24;for(var v=0;v<64;v++)e=C+i(f)+n(f,h,y)+c[v],v<16?e+=_[v]:e+=u(_,v),t=a(o)+r(o,l,s),C=y,y=h,h=f,f=g(m,e),m=s,s=l,l=o,o=g(e,t);d[0]+=o,d[1]+=l,d[2]+=s,d[3]+=m,d[4]+=f,d[5]+=h,d[6]+=y,d[7]+=C}function C(e,t){var n,r,o=0;r=m[0]>>3&63;var a=t&63;for((m[0]+=t<<3)>29,n=0;n+63>3&63;if(p[e++]=128,e<=56)for(var t=e;t<56;t++)p[t]=0;else{for(var n=e;n<64;n++)p[n]=0;y();for(var r=0;r<56;r++)p[r]=0}p[56]=m[1]>>>24&255,p[57]=m[1]>>>16&255,p[58]=m[1]>>>8&255,p[59]=m[1]&255,p[60]=m[0]>>>24&255,p[61]=m[0]>>>16&255,p[62]=m[0]>>>8&255,p[63]=m[0]&255,y()}function v(){for(var e="",t=0;t<8;t++)for(var n=28;n>=0;n-=4)e+=f.charAt(d[t]>>>n&15);return e}function S(e){for(var t=0,n=0;n<8;n++)for(var r=28;r>=0;r-=4)e[t++]=f.charCodeAt(d[n]>>>r&15)}function R(e,t){if(h(),C(e,e.length),b(),t)S(t);else return v()}function L(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=arguments.length>2?arguments[2]:void 0;if(t==null)return null;var o=t;return n&&(o=e(t)),R(o,r)}o.exports=L})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.identity",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsCensor"),t=e.censorPII,n=a.getFbeventsModules("SignalsFBEventsLogging"),r=n.logUserError,i=a.getFbeventsModules("SignalsFBEventsPlugin"),l=a.getFbeventsModules("SignalsFBEventsUtils"),u=l.FBSet,c=a.getFbeventsModules("SignalsPixelPIIUtils"),p=c.getNormalizedPIIKey,_=c.getNormalizedPIIValue,f=a.getFbeventsModules("sha256_with_dependencies_new"),g=/^[A-Fa-f0-9]{64}$|^[A-Fa-f0-9]{32}$/,y=/^[\w!#\$%&\'\*\+\/\=\?\^`\{\|\}~\-]+(:?\.[\w!#\$%&\'\*\+\/\=\?\^`\{\|\}~\-]+)*@(?:[a-z0-9](?:[a-z0-9\-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9\-]*[a-z0-9])?$/i,b=Object.prototype.hasOwnProperty,v=new u(["uid"]);function S(e){return e==null?!1:y.test(e)}function R(e,t,n){var o=p(e);if(t==null||t==="")return null;var a=_(o,t,n);if(o==="em"&&!S(a))throw r({key_type:"email address",key_val:e,type:"PII_INVALID_TYPE"}),new Error("Invalid email format for key '".concat(e,"'"));return a!=null&&a!=""?a:t}function L(e,n){if(n==null)return null;var o=/\[(.*)\]/.exec(e);if(o==null)throw new Error("Invalid key format, expected bracket notation like 'ud[em]' but got: ".concat(e));var a=!1;e.length>0&&e[0]==="a"&&(a=!0);var i=C(o,2),l=i[1];if(v.has(l)){if(S(n))throw r({key:e,type:"PII_UNHASHED_PII"}),new Error("Email for key '".concat(e,"' needs to be hashed"));return{finalValue:n}}if(g.test(n)){var s=n.toLowerCase();return{finalValue:s,censoredFormat:t(s)}}var u=R(l,n,a);return u!=null&&u!=""?{finalValue:f(u),censoredFormat:t(u)}:null}var E=(function(e){function t(e){var n;return d(this,t),n=m(this,t,[function(t){t.piiTranslator=e}]),n.piiTranslator=e,n}return h(t,e),s(t)})(i),k=new E(L);o.exports=k})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.identity"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.identity",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.identity",function(){ -return o.exports})})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("signalsFBEventsGetIwlUrl",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("signalsFBEventsCreateTrustedTypePolicy"),n=a.getFbeventsModules("signalsFBEventsGetTier"),r=t("facebook.com/signals/iwl",function(t){var n=typeof e.URL=="function"?e.URL:e.webkitURL,r=new n(t),o=r.hostname.endsWith(".facebook.com")&&r.pathname=="/signals/iwl.js";if(!o)throw new Error("Disallowed script URL");return t});o.exports=function(t,o,a,i,l){var e=n(o),s=e==null?"www.facebook.com":"www.".concat(e,".facebook.com"),u="https://".concat(s,"/signals/iwl.js?pixel_id=").concat(encodeURIComponent(t),"&access_token=").concat(encodeURIComponent(a));return i===!0&&(u+="&from_extension=true"),l!=null&&l!==""&&(u+="&page_domain=".concat(encodeURIComponent(l))),r!=null?r.createScriptURL(u):u}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("signalsFBEventsGetTier",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var e=/^https:\/\/www\.([A-Za-z0-9\.]+)\.facebook\.com\/tr\/?$/,t=["https://www.facebook.com/tr","https://www.facebook.com/tr/"];o.exports=function(r){if(t.indexOf(r)!==-1)return null;var n=e.exec(r);if(n==null)throw new Error("Malformed tier: ".concat(r));return n[1]}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.iwlbootstrapper",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var n=a.getFbeventsModules("SignalsFBEventsIWLBootStrapEvent"),r=a.getFbeventsModules("SignalsFBEventsLogging"),i=a.getFbeventsModules("SignalsFBEventsNetworkConfig"),l=a.getFbeventsModules("SignalsFBEventsPlugin"),s=a.getFbeventsModules("SignalsFBEventsUtils"),u=s.hasOwn,c=a.getFbeventsModules("signalsFBEventsGetIwlUrl"),d=a.getFbeventsModules("signalsFBEventsGetTier"),m=r.logUserError;function p(){return typeof performance!="undefined"?performance.now():Date.now()}var _=/^https:\/\/.*\.facebook\.com$/i,f=/^https:\/\/.*\.internalfb\.com$/i,g="FACEBOOK_IWL_CONFIG_STORAGE_KEY",h="signals-browser-extension",y=null;o.exports=new l(function(r,o){try{y=e.sessionStorage?e.sessionStorage:{getItem:function(t){return null},removeItem:function(t){},setItem:function(t,n){}}}catch(e){return}var a=!1,l=null;function s(n,r,o,l,s){var u=t.createElement("script");u.async=!0,u.onload=function(){if(e.__iwlBootstrapTiming&&(e.__iwlBootstrapTiming.scriptLoadEnd=p()),!e.FacebookIWL||!e.FacebookIWL.init){delete e.__iwlBootstrapTiming;return}var t=d(i.ENDPOINT);t!=null&&e.FacebookIWL.set&&e.FacebookIWL.set("tier",t),o()},e.FacebookIWLSessionEnd=function(){y.removeItem(g),l?(a=!1,l()):e.close()},u.src=c(n,i.ENDPOINT,r,s,typeof e!="undefined"&&e.location!=null?e.location.hostname:void 0);var m=t.body;m&&(e.__iwlBootstrapTiming&&(e.__iwlBootstrapTiming.scriptLoadStart=p()),m.appendChild(u))}var C=function(t){return!!(o&&o.pixelsByID&&u(o.pixelsByID,t))};function b(t,n){if(!a){var r=y.getItem(g);if(r){var o=JSON.parse(r),i=o.pixelID,l=o.graphToken,u=o.sessionStartTime,c=o.valueCurrencyDiagnostics,d=o.deepLinkContext;a=!0,s(i,l,function(){var t=C(i)?i.toString():null;e.__iwlBootstrapTiming&&(e.__iwlBootstrapTiming.initStart=p());try{e.FacebookIWL.init(t,l,u,c,d)}finally{e.__iwlBootstrapTiming&&(e.__iwlBootstrapTiming.initEnd=p()),e.FacebookIWL.logBootstrapTiming&&e.FacebookIWL.logBootstrapTiming(),delete e.__iwlBootstrapTiming}},t,n)}}}function v(t,n,r){a||s(t,n,function(){return e.FacebookIWL.showConfirmModal(t)},void 0,r)}function S(e,t,n,r,o,a,i){y.setItem(g,JSON.stringify({graphToken:e,pixelID:t,sessionStartTime:n,valueCurrencyDiagnostics:a!=null?a:void 0,deepLinkContext:i!=null?i:void 0})),b(r,o)}n.listen(function(t){var n=t.graphToken,r=t.pixelID;S(n,r),e.FacebookIWLSessionEnd=function(){return y.removeItem(g)}});function R(t){var n=t.data,r=n.graphToken,a=n.msg_type,i=n.pixelID,s=n.sessionStartTime,c=n.source,d=n.valueCurrencyDiagnostics,C=n.deepLinkContext;if(o&&o.pixelsByID&&o.pixelsByID[i]&&o.pixelsByID[i].codeless==="false"){m({pixelID:i,type:"SITE_CODELESS_OPT_OUT"});return}var b=_.test(t.origin)||f.test(t.origin)||c===h&&t.source===e;if(!(y.getItem(g)||!b||!(t.data&&(a==="FACEBOOK_IWL_BOOTSTRAP"||a==="FACEBOOK_IWL_CONFIRM_DOMAIN")))){if(!u(o.pixelsByID,i)){t.source.postMessage("FACEBOOK_IWL_ERROR_PIXEL_DOES_NOT_MATCH",t.origin);return}switch(a){case"FACEBOOK_IWL_BOOTSTRAP":{e.__iwlBootstrapTiming={listenerReadyAt:l,bootstrapReceivedAt:p()},t.source.postMessage("FACEBOOK_IWL_BOOTSTRAP_ACK",t.origin);var R=c===h&&t.source===e,L=R?function(){return t.source.postMessage("FACEBOOK_IWL_SESSION_ENDED",t.origin)}:void 0;S(r,i,s,L,R,d,C);break}case"FACEBOOK_IWL_CONFIRM_DOMAIN":{t.source.postMessage("FACEBOOK_IWL_CONFIRM_DOMAIN_ACK",t.origin),v(i,r);break}}}}if(y.getItem(g)){b();return}l=p(),e.addEventListener("message",R)})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.iwlbootstrapper"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.iwlbootstrapper",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.iwlbootstrapper",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("SignalsFBEventsOptTrackingOptions",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";o.exports={AUTO_CONFIG_OPT_OUT:1,AUTO_CONFIG:2,CONFIG_LOADING:4,SUPPORTS_DEFINE_PROPERTY:8,SUPPORTS_SEND_BEACON:16,HAS_INVALIDATED_PII:32,SHOULD_PROXY:64,IS_HEADLESS:128,IS_SELENIUM:256,HAS_DETECTION_FAILED:512,HAS_CONFLICTING_PII:1024,HAS_AUTOMATCHED_PII:2048,FIRST_PARTY_COOKIES:4096,IS_SHADOW_TEST:8192,SMART_SETUP_OPT_OUT:16384}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEventsProxyState",function(){ -return(function(e,t,n,r){var o={exports:{}},a=o.exports;return(function(){"use strict";var e=!1;o.exports={getShouldProxy:function(){return e},setShouldProxy:function(n){e=n}}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.opttracking",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsEvents"),n=t.getCustomParameters,r=t.piiAutomatched,i=t.piiConflicting,l=t.piiInvalidated,s=a.getFbeventsModules("SignalsFBEventsOptTrackingOptions"),u=a.getFbeventsModules("SignalsFBEventsPlugin"),c=a.getFbeventsModules("SignalsFBEventsProxyState"),d=a.getFbeventsModules("SignalsFBEventsUtils"),m=d.some,p=!1;function _(){try{Object.defineProperty({},"test",{})}catch(e){return!1}return!0}function f(){return!!(e.navigator&&e.navigator.sendBeacon)}function g(e,t){return e?t:0}var h=["_selenium","callSelenium","_Selenium_IDE_Recorder"],y=["__webdriver_evaluate","__selenium_evaluate","__webdriver_script_function","__webdriver_script_func","__webdriver_script_fn","__fxdriver_evaluate","__driver_unwrapped","__webdriver_unwrapped","__driver_evaluate","__selenium_unwrapped","__fxdriver_unwrapped"];function C(){if(v(h))return!0;var t=m(y,function(t){return!!e.document[t]});if(t)return!0;var n=e.document;for(var r in n)if(r.match(/\$[a-z]dc_/)&&n[r].cache_)return!0;if(e.external&&e.external.toString&&e.external.toString().indexOf("Sequentum")>=0)return!0;if(n.documentElement&&n.documentElement.getAttribute){var o=m(["selenium","webdriver","driver"],function(t){return!!e.document.documentElement.getAttribute(t)});if(o)return!0}return!1}function b(){return!!(v(["_phantom","__nightmare","callPhantom"])||/HeadlessChrome/.test(e.navigator.userAgent))}function v(t){var n=m(t,function(t){return!!e[t]});return n}function S(){var e=0,t=0,n=0;try{e=g(C(),s.IS_SELENIUM),t=g(b(),s.IS_HEADLESS)}catch(e){n=s.HAS_DETECTION_FAILED}return{hasDetectionFailed:n,isHeadless:t,isSelenium:e}}var R=new u(function(e,t){if(!p){var o={};l.listen(function(e){e!=null&&(o[typeof e=="string"?e:e.id]=!0)});var a={};i.listen(function(e){e!=null&&(a[typeof e=="string"?e:e.id]=!0)});var u={};r.listen(function(e){e!=null&&(u[typeof e=="string"?e:e.id]=!0)}),n.listen(function(n){var r=t.optIns,i=g(n!=null&&r.isOptedOut(n.id,"AutomaticSetup")&&r.isOptedOut(n.id,"InferredEvents")&&r.isOptedOut(n.id,"Microdata"),s.AUTO_CONFIG_OPT_OUT),l=g(n!=null&&(r.isOptedIn(n.id,"AutomaticSetup")||r.isOptedIn(n.id,"InferredEvents")||r.isOptedIn(n.id,"Microdata")),s.AUTO_CONFIG),d=g(e.disableConfigLoading!==!0,s.CONFIG_LOADING),m=g(_(),s.SUPPORTS_DEFINE_PROPERTY),p=g(f(),s.SUPPORTS_SEND_BEACON),h=g(n!=null&&a[n.id],s.HAS_CONFLICTING_PII),y=g(n!=null&&o[n.id],s.HAS_INVALIDATED_PII),C=g(n!=null&&u[n.id],s.HAS_AUTOMATCHED_PII),b=g(c.getShouldProxy(),s.SHOULD_PROXY),v=g(n!=null&&r.isOptedIn(n.id,"FirstPartyCookies"),s.FIRST_PARTY_COOKIES),R=g(n!=null&&r.isOptedIn(n.id,"ShadowTest"),s.IS_SHADOW_TEST),L=g(n!=null&&(t.disableSmartSetup||r.isOptedOut(n.id,"SmartSetup")),s.SMART_SETUP_OPT_OUT),E=S(),k=i|l|d|m|p|y|b|E.isHeadless|E.isSelenium|E.hasDetectionFailed|h|C|v|R|L;return{o:k}}),p=!0}});R.OPTIONS=s,o.exports=R})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.opttracking"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.opttracking",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.opttracking",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.prohibitedsources",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsConfigStore"),n=a.getFbeventsModules("SignalsFBEventsEvents"),r=n.configLoaded,i=a.getFbeventsModules("SignalsFBEventsLogging"),l=a.getFbeventsModules("SignalsFBEventsPlugin"),s=a.getFbeventsModules("SignalsFBEventsUtils"),u=s.filter,c=a.getFbeventsModules("sha256_with_dependencies_new");o.exports=new l(function(n,o){r.listen(function(n){var r=o.optIns.isOptedIn(n,"ProhibitedSources");if(r){var a=o.getPixel(n);if(a!=null){var l=t.get(a.id,"prohibitedSources");if(l!=null){var s=u(l.prohibitedSources,function(t){return t.domain!=null&&t.domain===c(e.location.hostname)}).length>0;s&&(o.locks.lock("prohibited_sources_".concat(n)),i.consoleWarn("[fbpixel] "+a.id+" is unavailable. Go to Events Manager to learn more"))}}}})})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.prohibitedsources"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.prohibitedsources",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.prohibitedsources",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.unwanteddata",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsEvents"),t=e.validateCustomParameters,n=e.validateUrlParameters,r=a.getFbeventsModules("SignalsFBEventsConfigStore"),i=a.getFbeventsModules("SignalsFBEventsLogging"),l=a.getFbeventsModules("SignalsFBEventsPlugin"),s=a.getFbeventsModules("SignalsFBEventsUtils"),u=a.getFbeventsModules("sha256_with_dependencies_new"),c=s.map,d=!1;o.exports=new l(function(e,o){t.listen(function(t,n,a){if(t==null)return{};e.performanceMark("fbevents:start:unwantedDataProcessing",t.id);var l=o.optIns.isOptedIn(t.id,"UnwantedData");if(!l)return{};var d=o.optIns.isOptedIn(t.id,"ProtectedDataMode"),m=r.get(t.id,"unwantedData");if(m==null)return{};var p=!1,_=[],f=[],g={};if(m.blacklisted_keys!=null){var h=m.blacklisted_keys[a];if(h!=null){var y=h.cd;c(y,function(e){s.hasOwn(n,e)&&(p=!0,_.push(e),delete n[e])})}}if(m.sensitive_keys!=null){var C=m.sensitive_keys[a];if(C!=null){var b=C.cd;Object.keys(n).forEach(function(e){c(b,function(t){u(e)===t&&(p=!0,f.push(t),delete n[e])})})}}if(g.unwantedParams=_,g.restrictedParams=f,p&&!d){var v=_.length>0,S=f.length>0;if(v||S){e.performanceMark("fbevents:end:unwantedDataProcessing",t.id),i.logUserError({type:"UNWANTED_CUSTOM_DATA"});var R={};return v&&(R.up=_.join(",")),S&&(R.rp=f.join(",")),R}}return e.performanceMark("fbevents:end:unwantedDataProcessing",t.id),{}});function a(e,t,n,r,o){var a=new URLSearchParams(t.search),i=[],l=[],s={};if(n.blacklisted_keys!=null){var m=n.blacklisted_keys[r];if(m!=null){var p=m.url;c(p,function(e){a.has(e)&&(d=!0,i.push(e),a.set(e,"_removed_"))})}}if(n.sensitive_keys!=null){var _=n.sensitive_keys[r];if(_!=null){var f=_.url;a.forEach(function(e,t){c(f,function(e){u(t)===e&&(d=!0,l.push(e),a.set(t,"_removed_"))})})}}return s.unwantedParams=i,s.restrictedParams=l,d?(o||(i.length>0&&e.append("up_url",i.join(",")),l.length>0&&e.append("rp_url",l.join(","))),a.toString()):""}n.listen(function(t,n,l,u){if(t!=null){e.performanceMark("fbevents:start:validateUrlProcessing",t.id);var c=o.optIns.isOptedIn(t.id,"UnwantedData");if(c){var m=o.optIns.isOptedIn(t.id,"ProtectedDataMode"),p=r.get(t.id,"unwantedData");if(p!=null){if(d=!1,s.hasOwn(n,"dl")&&n.dl.length>0){var _=new URL(n.dl),f=a(u,_,p,l,m);d&&f.length>0&&(_.search=f,n.dl=_.toString())}if(s.hasOwn(n,"rl")&&n.rl.length>0){var g=new URL(n.rl),h=a(u,g,p,l,m);d&&h.length>0&&(g.search=h,n.rl=g.toString())}d&&i.logUserError({type:"UNWANTED_URL_DATA"}),e.performanceMark("fbevents:end:validateUrlProcessing",t.id)}}}})})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.unwanteddata"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.unwanteddata",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.unwanteddata",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.eventvalidation",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsPlugin"),t=a.getFbeventsModules("SignalsFBEventsSendEventEvent"),n=a.getFbeventsModules("SignalsFBEventsTyped"),r=n.coerce,i=n.Typed,l=a.getFbeventsModules("SignalsFBEventsLogging"),s=l.logUserError,u=a.getFbeventsModules("sha256_with_dependencies_new");o.exports=new e(function(e,n){t.listen(function(e){var t=e.id,o=e.eventName,a=r(t,i.fbid());if(a==null)return!1;var l=n.optIns.isOptedIn(a,"EventValidation");if(!l)return!1;var c=n.pluginConfig.get(a,"eventValidation");if(c==null)return!1;var d=c.unverifiedEventNames,m=c.restrictedEventNames,p=!1,_=!1,f=u(o);return d&&(p=d.includes(o)||f!=null&&d.includes(f),p&&s({type:"UNVERIFIED_EVENT"})),m&&(_=m.includes(o)||f!=null&&m.includes(f),_&&s({type:"RESTRICTED_EVENT"})),p||_})})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.eventvalidation"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.eventvalidation",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.eventvalidation",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;if(a.execStart=e.performance&&e.performance.now&&e.performance.now(),!(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})())return;function i(e,t){var n=typeof Symbol!="undefined"&&e[typeof Symbol=="function"?Symbol.iterator:"@@iterator"]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=l(e))||t&&e&&typeof e.length=="number"){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(t){s=!0,a=t},f:function(){try{i||n.return==null||n.return()}finally{if(s)throw a}}}}function l(e,t){if(e){if(typeof e=="string")return s(e,t);var n={}.toString.call(e).slice(8,-1);return n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set"?Array.from(e):n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(e,t):void 0}}function s(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0,r=e();return n&&r}o.exports={checkIsAndroidChromeWithClientHint:t,checkIsAndroidChromeWithUAString:n,checkIsAndroidChrome:r}})(),o.exports})(e,t,n,r)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.clienthint",function(){ -return(function(e,t,n,r){var o={exports:{}},l=o.exports;return(function(){"use strict";var t=a.getFbeventsModules("SignalsFBEventsPlugin"),n=a.getFbeventsModules("SignalsParamList"),r=a.getFbeventsModules("SignalsFBEventsLogging"),l=r.logWarning,s=r.logInfo,u=r.META_PIXEL_PRODUCT_NAME,c=a.getFbeventsModules("SignalsFBEventsTyped"),d=c.coerce,m=a.getFbeventsModules("SignalsFBEventsClientHintTypedef"),p=m.userAgentDataTypedef,_=m.highEntropyResultTypedef,f=a.getFbeventsModules("SignalsFBEventsGetIsAndroidChrome"),g=f.checkIsAndroidChrome,h="chmd",y="chpv",C="chfv",b=[h,y,C],v="clientHint",S="clienthint";function R(e){var t=d(e,_);if(t==null)return s(new Error("[ClientHint Error] getHighEntropyValues returned null from Android Chrome source"),u,S),new Map;var n=new Map;n.set(h,String(t.model)),n.set(y,String(t.platformVersion));var r,o,a=i(t.fullVersionList),l;try{for(a.s();!(l=a.n()).done;)o=l.value,o.brand.includes("Chrome")&&(r=o.version)}catch(e){a.e(e)}finally{a.f()}return n.set(C,String(r)),n}function L(e,t){var n=i(b),r;try{for(n.s();!(r=n.n()).done;){var o=r.value;e.get(o)==null&&e.append(o,t.get(o))}}catch(e){n.e(e)}finally{n.f()}}function E(e,t,r){var o=R(e),a=t.customParams||new n;L(a,o),t.customParams=a}o.exports=new t(function(t,n){var r=d(e.navigator.userAgentData,p);if(r==null){e.navigator.userAgentData!=null&&l(new Error("[ClientHint Error] UserAgentData coerce error"),u,S);return}else if(!g(e.navigator.userAgent))return;var o=e.navigator.userAgentData.getHighEntropyValues(["model","platformVersion","fullVersionList"]).then(function(e){var t=n.asyncParamFetchers.get(v);return t!=null&&t.result==null&&(t.result=e,n.asyncParamFetchers.set(v,t)),e}).catch(function(e){var t=e instanceof Error?e.message:String(e);l(new Error("[ClientHint Error] Fetch error: ".concat(t)),u,S)});n.asyncParamFetchers.set(v,{request:o,callback:E}),n.asyncParamPromisesAllSettled=!1})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.clienthint"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.clienthint",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.clienthint",function(){ -return o.exports})})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.unwantedparams",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsEvents"),t=e.validateCustomParameters,n=a.getFbeventsModules("SignalsFBEventsConfigStore"),r=a.getFbeventsModules("SignalsFBEventsPlugin"),i=a.getFbeventsModules("SignalsFBEventsUtils"),l=i.each,s=i.hasOwn;o.exports=new r(function(e,r){t.listen(function(t,o,a){if(t==null)return{};e.performanceMark("fbevents:start:unwantedParamsProcessing",t.id);var i=r.optIns.isOptedIn(t.id,"UnwantedParams");if(!i)return{};var u=n.get(t.id,"unwantedParams");if(u==null||u.unwantedParams==null)return{};var c=[];return l(u.unwantedParams,function(e){s(o,e)&&(c.push(e),delete o[e])}),e.performanceMark("fbevents:end:unwantedParamsProcessing",t.id),c.length>0?{spb:c.join(",")}:{}})})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.unwantedparams"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.unwantedparams",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.unwantedparams",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.standardparamchecks",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsLogging"),t=e.logUserError,n=a.getFbeventsModules("SignalsFBEventsEvents"),r=n.lateValidateCustomParameters,i=a.getFbeventsModules("SignalsFBEventsConfigStore"),l=a.getFbeventsModules("SignalsFBEventsPlugin"),s=a.getFbeventsModules("SignalsFBEventsUtils"),u=s.each,c=s.some,d=s.keys;function m(e,t){return t?t.require_exact_match?c(t.potential_matches,function(t){return t.toLowerCase()===e.toLowerCase()}):c(t.potential_matches,function(t){return new RegExp(t).test(e)}):!1}o.exports=new l(function(e,n){r.listen(function(e,r,o){var a=n.optIns.isOptedIn(e,"StandardParamChecks");if(!a)return{};var l=i.get(e,"standardParamChecks");if(l==null||l.standardParamChecks==null)return{};var s=[];return u(d(r),function(n){var o=l.standardParamChecks[n]||[];if(!o||o.length==0)return{};var a=c(o,function(e){return m(String(r[n]),e)});a||(s.push(n),t({invalidParamName:n,pixelID:e,type:"INVALID_PARAM_FORMAT"}))}),u(s,function(e){delete r[e]}),s.length>0?{rks:s.join(",")}:{}})})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.standardparamchecks"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.standardparamchecks",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.standardparamchecks",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;a.execStart=e.performance&&e.performance.now&&e.performance.now(),(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})()&&(a.__fbeventsModules||(a.__fbeventsModules={},a.__fbeventsResolvedModules={},a.getFbeventsModules=function(e){return a.__fbeventsResolvedModules[e]||(a.__fbeventsResolvedModules[e]=a.__fbeventsModules[e]()),a.__fbeventsResolvedModules[e]},a.fbIsModuleLoaded=function(e){return!!a.__fbeventsModules[e]},a.ensureModuleRegistered=function(e,t){a.fbIsModuleLoaded(e)||(a.__fbeventsModules[e]=t)}) -,a.ensureModuleRegistered("SignalsFBEvents.plugins.gating",function(){ -return(function(e,t,n,r){var o={exports:{}},i=o.exports;return(function(){"use strict";var e=a.getFbeventsModules("SignalsFBEventsPlugin"),t=a.getFbeventsModules("SignalsFBEventsEvents"),n=t.gateCheckEvent,r=t.configLoaded,i=a.getFbeventsModules("signalsFBEventsFeatureGate"),l=a.getFbeventsModules("SignalsFBEventsUtils"),s=l.each,u=l.keys;o.exports=new e(function(e,t){var o=[];function a(e,t,n,r){var o=i(e,r),a=o?t:n;try{a(e,r)}catch(e){}}function l(e,t,n,r,a){o.push({gateName:e,onEnabled:t,onDisabled:n,pixelID:r,checkedPixels:a})}function c(e,n,r,o){if(t.configsLoaded[o]){a(e,n,r,o);return}l(e,n,r,o,new Set)}function d(e,n,r){var o=new Set,i=u(t.pixelsByID);s(i,function(i){t.configsLoaded[i]&&(a(e,n,r,i),o.add(i))}),l(e,n,r,null,o)}function m(e,t){var n=e.gateName,r=e.onEnabled,o=e.onDisabled,i=e.pixelID;return i!==t?!1:(a(n,r,o,t),!0)}function p(e,t){var n=e.gateName,r=e.onEnabled,o=e.onDisabled,i=e.checkedPixels;i.has(t)||(a(n,r,o,t),i.add(t))}n.listen(function(e,t,n,r){r!=null?c(e,t,n,r):d(e,t,n)}),r.listen(function(e){var t=[];s(o,function(n){if(n.pixelID!=null){var r=m(n,e);r||t.push(n)}else p(n,e),t.push(n)}),o.length=0,s(t,function(e){return o.push(e)})})})})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents.plugins.gating"),a.registerPlugin&&a.registerPlugin("fbevents.plugins.gating",o.exports) -,a.ensureModuleRegistered("fbevents.plugins.gating",function(){ -return o.exports}))})()})(window,document,location,history); -(function(e,t,n,r){var o={exports:{}},a=o.exports;(function(){var a=e.fbq;if(a.execStart=e.performance&&e.performance.now&&e.performance.now(),!(function(){var t=e.postMessage||function(){};return a?!0:(t({action:"FB_LOG",logType:"Facebook Pixel Error",logMessage:"Pixel code is not installed correctly on this page"},"*"),"error"in console,!1)})())return;function i(e){"@babel/helpers - typeof";return i=typeof Symbol=="function"&&typeof(typeof Symbol=="function"?Symbol.iterator:"@@iterator")=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==(typeof Symbol=="function"?Symbol.prototype:"@@prototype")?"symbol":typeof e},i(e)}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);n1?o-1:0),i=1;i0&&De.pluginConfig.set(Z,"shopifySandboxContext",J)}break}case"userData":{var re=a[0],oe=re==null||j(re);if(!oe){Ne("user_data",re,"set",l);return}for(var le=s({},re),se=0;se0&&(m==null&&(m=new a(t.piiTranslator)),Object.keys(l).forEach(function(e){m.append(e,l[e])}));try{D.eval("reset_init_time_on_spa_page_change")&&c.isAutomaticPageView&&(Re=Re!==-1?Date.now():Re);for(var p=0,_=ke.length;p<_;p++){var f=ke[p],g=Date.now().toString(),h=e.fbq.instance.pluginConfig.get(f.id,"buffer"),y=!1;if(h!=null&&(y=h.onlyBufferPageView===!0&&r.isInTest("spa_pageview_fix")),y=c.allowDuplicatePageViews||y,c.isAutomaticPageView&&(i=s(s({},i),{},{isAutomaticPageView:!0})),!(!(n==="PageView"&&y)&&u.hasOwn(Te,n)&&Te[n].has(f.id))&&f.trackSingleOnly!==!0)try{Xe({customData:o,eventData:i,eventName:n,pixel:f,additionalCustomParams:m,experimentId:g}),u.hasOwn(Te,n)&&Te[n].add(f.id)}catch(e){ye(e,ve,Pe)}}}finally{}}function Ve(e,t,n,r){try{for(var o=0,a=ke.length;o1&&be({type:"MULTIPLE_PIXELS"}),J.listenOnce(function(){q({fbq:t,automaticPageView:le,onPageChange:function(){var e=new Me({allowDuplicatePageViews:!0,isAutomaticPageView:!0});we.call(e,"trackCustom","PageView")},makeSafe:v,injectMethod:b})});function Je(e){t._initHandlers.push(e),Be()}function Ze(){return{pixelInitializationTime:Re,pixels:ke}}function et(e){e.instance=De,e.callMethod=we,e._initHandlers=[],e._initsDone={},e.send=ze,e.getEventCustomParameters=je,e.addInitHandler=Je,e.getState=Ze,e.init=Oe,e.set=Fe,e.gateCheck=A,e.loadPlugin=function(e){return xe.loadPlugin(e)},e.registerPlugin=function(e,t){xe.registerPlugin(e,t)}}et(e.fbq),fe(e.fbq.queue),Ye(),o.exports={doExport:et},Y.trigger()})(),o.exports})(e,t,n,r)}),o.exports=a.getFbeventsModules("SignalsFBEvents"),a.registerPlugin&&a.registerPlugin("fbevents",o.exports) -,a.ensureModuleRegistered("fbevents",function(){ -return o.exports})})()})(window,document,location,history); -fbq.registerPlugin("global_config", {__fbEventsPlugin: 1, plugin: function(fbq, instance, config) { fbq.loadPlugin("commonincludes"); -fbq.loadPlugin("identity"); -fbq.loadPlugin("opttracking"); -fbq.set("experiments", [{"allocation":0.01,"code":"c","name":"no_op_exp","passRate":0.5},{"allocation":0,"code":"d","name":"config_dedupe","passRate":1},{"allocation":0,"code":"e","name":"send_fbc_when_no_cookie","passRate":1},{"allocation":0,"code":"f","name":"send_events_in_batch","passRate":0},{"allocation":0,"code":"h","name":"set_fbc_cookie_after_config_load","passRate":0},{"allocation":0,"code":"i","name":"prioritize_send_beacon_in_url","passRate":0.5},{"allocation":0,"code":"j","name":"fix_fbc_fbp_update","passRate":0},{"allocation":0,"code":"l","name":"async_param_refactor","passRate":0.5},{"allocation":0.01,"code":"m","name":"sync_process_event","passRate":0.5},{"allocation":0.04,"code":"s","name":"fix_null_context_passed","passRate":0.5}]); -fbq.set("guardrails", [{"name":"no_op","code":"a","passRate":1,"enableForPixels":["569835061642423"]},{"name":"extract_extra_microdata","code":"b","passRate":0,"enableForPixels":[]},{"name":"sgw_auto_extract","code":"c","passRate":1,"enableForPixels":["1296510287734738","337570375319394"]},{"name":"multi_eid_fix","code":"d","passRate":0,"enableForPixels":["909978539160024","966604283536489"]},{"name":"use_async_param_refactor","code":"f","passRate":1,"enableForPixels":["3421688111417438"]},{"name":"process_pii_from_shopify","code":"h","passRate":1,"enableForPixels":[]},{"name":"send_censored_ph","code":"f","passRate":1,"enableForPixels":["569835061642423"]},{"name":"send_censored_em","code":"g","passRate":1,"enableForPixels":["569835061642423"]},{"name":"fix_fbevent_uri_error","code":"j","passRate":1,"enableForPixels":[]},{"name":"send_normalized_ud_format","code":"e","passRate":1,"enableForPixels":["569835061642423"]},{"name":"enable_automatic_parameter_logging","code":"i","passRate":1,"enableForPixels":[]},{"name":"release_spa_pageview_fix","code":"l","passRate":1,"enableForPixels":["569835061642423"]},{"name":"fix_duplicate_opt_tracking_param","code":"m","passRate":1,"enableForPixels":[]},{"name":"release_fix_null_context_passed","code":"n","passRate":1,"enableForPixels":[]},{"name":"reset_init_time_on_spa_page_change","code":"o","passRate":1,"enableForPixels":[]},{"name":"fix_missing_event_name_error","code":"p","passRate":1,"enableForPixels":[]},{"name":"use_string_prefix_match_from_util","code":"q","passRate":1,"enableForPixels":[]},{"name":"get_keywords_from_local_storage","code":"r","passRate":0,"enableForPixels":["569835061642423","1728810767262484","197307666770807","568414510204424"]},{"name":"bot_blocking_client_side_block_enabled","code":"s","passRate":1,"enableForPixels":["1306783967701444"]},{"name":"page_locale_metadata_enabled","code":"t","passRate":1,"enableForPixels":["1728810767262484"]}]); -fbq.set("moduleEncodings", {"map":{"gateCheck":0,"generateEventId":1,"handleEventIdOverride":2,"normalizeSignalsFBEventsDOBType":3,"normalizeSignalsFBEventsEmailType":4,"normalizeSignalsFBEventsEnumType":5,"normalizeSignalsFBEventsPhoneNumberType":6,"normalizeSignalsFBEventsPostalCodeType":7,"normalizeSignalsFBEventsStringType":8,"PixelQueue":9,"SignalsConvertNodeToHTMLElement":10,"SignalsEventPayload":11,"SignalsEventValidation":12,"SignalsFBEventsAddGmailSuffixToEmail":13,"SignalsFBEventsAsyncParamUtils":14,"SignalsFBEventsAutomaticPageViewEvent":15,"SignalsFBEventsBaseEvent":16,"SignalsFBEventsBotBlockingConfigTypedef":17,"SignalsFBEventsBrowserPropertiesConfigTypedef":18,"SignalsFBEventsBrowserPropertiesPlatformConfigTypedef":19,"SignalsFBEventsBufferConfigTypedef":20,"SignalsFBEventsCCRuleEvaluatorConfigTypedef":21,"SignalsFBEventsCensor":22,"SignalsFBEventsCheckGateEvent":23,"SignalsFBEventsClientHintConfigTypedef":24,"SignalsFBEventsClientSidePixelForkingConfigTypedef":25,"signalsFBEventsCoerceAutomaticMatchingConfig":26,"signalsFBEventsCoerceBatchingConfig":27,"signalsFBEventsCoerceInferredEventsConfig":28,"signalsFBEventsCoerceParameterExtractors":29,"signalsFBEventsCoercePixelID":30,"signalsFBEventsCoerceStandardParameter":31,"SignalsFBEventsComparedManagers":32,"SignalsFBEventsConfigLoadedEvent":33,"SignalsFBEventsConfigStore":34,"SignalsFBEventsCookieConfigTypedef":35,"SignalsFBEventsCookieDeprecationLabelConfigTypedef":36,"SignalsFBEventsCookieManager":37,"SignalsFBEventsCorrectPIIPlacement":38,"signalsFBEventsCreateTrustedTypePolicy":39,"SignalsFBEventsDataProcessingOptionsConfigTypedef":40,"SignalsFBEventsDefaultCustomDataConfigTypedef":41,"SignalsFBEventsDisabledExtensionsConfigTypedef":42,"signalsFBEventsDoAutomaticMatching":43,"SignalsFBEventsESTRuleEngineConfigTypedef":44,"SignalsFBEventsEvents":45,"SignalsFBEventsEventValidationConfigTypedef":46,"SignalsFBEventsExperimentNames":47,"SignalsFBEventsExperimentsTypedef":48,"SignalsFBEventsExperimentsV2Typedef":49,"SignalsFBEventsExtractPII":50,"SignalsFBEventsFBQ":51,"signalsFBEventsFeatureGate":52,"signalsFBEventsFillParamList":53,"SignalsFBEventsFilterProtectedModeEvent":54,"SignalsFBEventsFiredEvent":55,"signalsFBEventsFireEvent":56,"SignalsFBEventsFireLock":57,"SignalsFBEventsForkEvent":58,"SignalsFBEventsGatingConfigTypedef":59,"SignalsFBEventsGetAutomaticParametersEvent":60,"SignalsFBEventsGetCustomParametersEvent":61,"signalsFBEventsGetIsChrome":62,"signalsFBEventsGetIsWebWorker":63,"SignalsFBEventsGetIWLParametersEvent":64,"SignalsFBEventsGetTimingsEvent":65,"SignalsFBEventsGetValidUrl":66,"SignalsFBEventsGoogleAnalyticsBridgeConfigTypedef":67,"SignalsFBEventsGuardrail":68,"SignalsFBEventsGuardrailTypedef":69,"SignalsFBEventsIABPCMAEBridgeConfigTypedef":70,"SignalsFBEventsImagePixelOpenBridgeConfigTypedef":71,"signalsFBEventsInjectMethod":72,"signalsFBEventsIsHostMeta":73,"signalsFBEventsIsURLFromMeta":74,"SignalsFBEventsIWLBootStrapEvent":75,"SignalsFBEventsJSLoader":76,"SignalsFBEventsLateValidateCustomParametersEvent":77,"SignalsFBEventsLegacyExperimentGroupsTypedef":78,"SignalsFBEventsLogging":79,"signalsFBEventsMakeSafe":80,"SignalsFBEventsMessageParamsTypedef":81,"SignalsFBEventsMetaQEConfigTypedef":82,"SignalsFBEventsMethods":83,"SignalsFBEventsMicrodataConfigTypedef":84,"SignalsFBEventsMicrodataCoverageConfigTypedef":85,"SignalsFBEventsMicrodataExtractionConfigTypedef":86,"SignalsFBEventsMicrodataFieldTransmissionConfigTypedef":87,"SignalsFBEventsMobileAppBridge":88,"SignalsFBEventsModuleEncodings":89,"SignalsFBEventsModuleEncodingsTypedef":90,"SignalsFBEventsNetworkConfig":91,"SignalsFBEventsNormalizers":92,"SignalsFBEventsOpenBridgeConfigTypedef":93,"SignalsFBEventsOptIn":94,"SignalsFBEventsPageStatusEvent":95,"SignalsFBEventsPageStatusMonitor":96,"SignalsFBEventsParallelFireConfigTypedef":97,"SignalsFBEventsPIIAutomatchedEvent":98,"SignalsFBEventsPIIConflictingEvent":99,"SignalsFBEventsPIIInvalidatedEvent":100,"SignalsFBEventsPixelCookie":101,"SignalsFBEventsPixelPIISchema":102,"SignalsFBEventsPixelQueueState":103,"SignalsFBEventsPixelTypedef":104,"SignalsFBEventsPlugin":105,"SignalsFBEventsPluginLoadedEvent":106,"SignalsFBEventsPluginManager":107,"SignalsFBEventsProcessCCRulesEvent":108,"SignalsFBEventsProcessEmailAddress":109,"SignalsFBEventsProhibitedPixelConfigTypedef":110,"SignalsFBEventsProhibitedSourcesTypedef":111,"SignalsFBEventsProtectedDataModeConfigTypedef":112,"SignalsFBEventsQE":113,"SignalsFBEventsQEV2":114,"SignalsFBEventsQualityCheckerConfigTypedef":115,"SignalsFBEventsRawCookieOps":116,"SignalsFBEventsRegexParamFilterConfigTypedef":117,"signalsFBEventsResolveLegacyArguments":118,"SignalsFBEventsResolveLink":119,"SignalsFBEventsRestrictedDomainsConfigTypedef":120,"signalsFBEventsSendBeacon":121,"SignalsFBEventsSendCloudbridgeEvent":122,"signalsFBEventsSendEvent":123,"SignalsFBEventsSendEventEvent":124,"signalsFBEventsSendEventImpl":125,"signalsFBEventsSendFetch":126,"signalsFBEventsSendFormPOST":127,"signalsFBEventsSendGET":128,"SignalsFBEventsSetCCRules":129,"SignalsFBEventsSetESTRules":130,"SignalsFBEventsSetEventIDEvent":131,"SignalsFBEventsSetFilteredEventName":132,"SignalsFBEventsSetIWLExtractorsEvent":133,"SignalsFBEventsSetIWLParameterRulesEvent":134,"SignalsFBEventsShared":135,"SignalsFBEventsShopifySandboxConfigTypedef":136,"SignalsFBEventsShopifySandboxContextConfigTypedef":137,"signalsFBEventsShopifyUtil":138,"SignalsFBEventsShouldRestrictReferrerEvent":139,"SignalsFBEventsSkipOpenBridgeConfigTypedef":140,"SignalsFBEventsSmartSetupPixelConfigTypedef":141,"signalsFBEventsSPANavigationUtil":142,"SignalsFBEventsStandardParamChecksConfigTypedef":143,"SignalsFBEventsTelemetry":144,"SignalsFBEventsTrackEventEvent":145,"SignalsFBEventsTriggerSgwPixelTrackCommandConfigTypedef":146,"SignalsFBEventsTyped":147,"SignalsFBEventsTypeVersioning":148,"SignalsFBEventsUnwantedDataTypedef":149,"SignalsFBEventsUnwantedEventNamesConfigTypedef":150,"SignalsFBEventsUnwantedEventsConfigTypedef":151,"SignalsFBEventsUnwantedParamsConfigTypedef":152,"SignalsFBEventsURLManager":153,"SignalsFBEventsURLMetadataConfigTypedef":154,"signalsFBEventsUserDataParams":155,"SignalsFBEventsUtils":156,"SignalsFBEventsValidateCustomParametersEvent":157,"SignalsFBEventsValidateGetClickIDFromBrowserProperties":158,"SignalsFBEventsValidateGetIMEFromBrowserPropertiesPlatform":159,"SignalsFBEventsValidateUrlParametersEvent":160,"SignalsFBEventsValidationUtils":161,"SignalsFBEventsVVPConfigTypedef":162,"SignalsFBEventsWebchatConfigTypedef":163,"SignalsFBEventsWebChatEvent":164,"SignalsParamList":165,"SignalsPixelCookieUtils":166,"SignalsPixelPIIConstants":167,"SignalsPixelPIIUtils":168,"WebStorage":169,"WebStorageMutex":170,"SignalsFBEvents":171,"SignalsFBEvents.plugins.automaticparameters":172,"sha256_with_dependencies_new":173,"SignalsFBEventsBuildMicrodata":174,"SignalsFBEventsExtractMicrodataFromJsonLdV2":175,"SignalsFBEventsExtractMicrodataFromOpenGraphV2":176,"SignalsFBEventsExtractMicrodataFromSchemaOrgV2":177,"signalsFBEventsExtractMicrodataSchemas":178,"SignalsFBEventsMicrodata":179,"SignalsFBEventsParseMicrodataUtils":180,"SignalsFBEventsProcessMicrodata":181,"SignalsFBEvents.plugins.botblocking":182,"SignalsFBEventsBlockFlags":183,"SignalsFBEventsBotDetectionEngine":184,"SignalsFBEvents.plugins.browserproperties":185,"SignalsFBEvents.plugins.cookie":186,"SignalsFBEventsBrowserPropertiesTypedef":187,"SignalsFBEventsFbcCombiner":188,"signalsFBEventsGetIsAndroid":189,"signalsFBEventsGetIsAndroidIAW":190,"signalsFBEventsGetIsSafariOrMobileSafari":191,"signalsFBEventsIsHostFacebook":192,"SignalsFBEventsLocalStorageTypedef":193,"SignalsFBEventsLocalStorageUtils":194,"signalsFBEventsShouldNotDropCookie":195,"SignalsFBEventsURLUtil":196,"SignalsFBEvents.plugins.browserpropertiesplatform":197,"SignalsFBEvents.plugins.buffer":198,"signalsFBEventsGetIsIosInAppBrowser":199,"SignalsFBEvents.plugins.ccruleevaluator":200,"SignalsFBEventsCCRuleEngine":201,"SignalsFBEventsTransformToCCInput":202,"SignalsFBEvents.plugins.clienthint":203,"SignalsFBEventsClientHintTypedef":204,"SignalsFBEventsGetIsAndroidChrome":205,"SignalsFBEvents.plugins.clientsidepixelforking":206,"SignalsPixelClientSideForkingUtils":207,"SignalsFBEvents.plugins.commonincludes":208,"SignalsFBEvents.plugins.cookiedeprecationlabel":209,"SignalsFBEvents.plugins.debug":210,"SignalsFBEvents.plugins.defaultcustomdata":211,"SignalsFBEvents.plugins.engagementdata":212,"SignalsFBEvents.plugins.estruleengine":213,"signalsFBEventsMakeSafeString":214,"SignalsFBEvents.plugins.eventvalidation":215,"SignalsFBEvents.plugins.gating":216,"SignalsFBEvents.plugins.googleanalyticsbridge":217,"SignalsFBEvents.plugins.iabpcmaebridge":218,"SignalsFBEvents.plugins.identifyintegration":219,"getDeepStackTrace":220,"getIntegrationCandidates":221,"SignalsFBEvents.plugins.identity":222,"SignalsFBEvents.plugins.imagepixelopenbridge":223,"SignalsFBEvents.plugins.inferredevents":224,"signalsFBEventsCollapseUserData":225,"signalsFBEventsExtractEventPayload":226,"signalsFBEventsExtractFormFieldFeatures":227,"signalsFBEventsExtractFromInputs":228,"signalsFBEventsExtractPageFeatures":229,"SignalsFBEventsFeatureCounter":230,"SignalsFBEventsThrottler":231,"SignalsFBEvents.plugins.iwlbootstrapper":232,"signalsFBEventsGetIwlUrl":233,"signalsFBEventsGetTier":234,"SignalsFBEvents.plugins.iwlparameterrules":235,"SignalsFBEvents.plugins.iwlparameters":236,"SignalsFBEvents.plugins.jsonld_microdata":237,"SignalsFBEvents.plugins.lastexternalreferrer":238,"SignalsFBEvents.plugins.microdata":239,"SignalsFBEvents.plugins.microdatacoverage":240,"SignalsFBEventsBitmapEncoder":241,"SignalsFBEventsConfigDrivenParsingUtils":242,"SignalsFBEventsCoverageExtractor":243,"SignalsFBEventsCoverageJsonLdExtractor":244,"SignalsFBEventsCoverageOpenGraphExtractor":245,"SignalsFBEventsCoverageSchemaOrgExtractor":246,"SignalsFBEventsMicrodataErrors":247,"SignalsFBEvents.plugins.microdatafieldtransmission":248,"SignalsFBEventsConfigDrivenParser":249,"SignalsFBEventsDublinCoreParser":250,"SignalsFBEventsJsonLdParser":251,"SignalsFBEventsMicrodataCache":252,"SignalsFBEventsOpenGraphParser":253,"SignalsFBEventsRDFaParser":254,"SignalsFBEventsResponseOptimizer":255,"SignalsFBEventsSchemaOrgParser":256,"SignalsFBEventsTwitterCardParser":257,"SignalsFBEvents.plugins.openbridge3":258,"cbsdk_fbevents_embed":259,"openBridgeAdvancedMatching":260,"openBridgeDomainFilter":261,"OpenBridgeFBLogin":262,"openBridgeUserDataUtils":263,"ResolveLinks":264,"SignalsFBEvents.plugins.openbridgerollout":265,"SignalsFBEvents.plugins.opttracking":266,"SignalsFBEventsOptTrackingOptions":267,"SignalsFBEventsProxyState":268,"SignalsFBEvents.plugins.pagemetadata":269,"SignalsFBEvents.plugins.parallelfire":270,"signalsFBEventsSendXHR":271,"SignalsFBEvents.plugins.performance":272,"SignalsFBEventsPerformanceTiming":273,"SignalsFBEvents.plugins.privacypreservingdatalookup":274,"pdl":275,"PdlWasm":276,"PdlWasmTypes":277,"WebPDL":278,"WebPDLUtility":279,"SignalsFBEvents.plugins.prohibitedpixels":280,"SignalsFBEvents.plugins.prohibitedsources":281,"SignalsFBEvents.plugins.protecteddatamode":282,"SignalsFBEvents.plugins.regexparamfilter":283,"SignalsFBEvents.plugins.scrolldepth":284,"SignalsFBEvents.plugins.shopifyappintegratedpixel":285,"SignalsFBEvents.plugins.shopifysandbox":286,"SignalsFBEvents.plugins.smartsetup":287,"signalsFBEventsWarningAggregator":288,"smartSetupBuildResult":289,"smartSetupProcessContent":290,"SignalsFBEvents.plugins.standardparamchecks":291,"SignalsFBEvents.plugins.timespent":292,"SignalsFBEventsTimespentTracking":293,"SignalsFBEvents.plugins.timezone":294,"SignalsFBEvents.plugins.topicsapi":295,"SignalsFBEvents.plugins.triggersgwpixeltrackcommand":296,"SignalsFBEvents.plugins.unwanteddata":297,"SignalsFBEvents.plugins.unwantedeventnames":298,"SignalsFBEvents.plugins.unwantedevents":299,"SignalsFBEvents.plugins.unwantedparams":300,"SignalsFBEvents.plugins.urlmetadata":301,"SignalsFBEventsURLMetadataUtils":302,"SignalsFBEvents.plugins.urlparamschematization":303,"AllowableQueryBucketizedValues":304,"AllowableQueryKeys":305,"AllowableQueryValues":306,"AllowedRegexParameterValue":307,"AllowedURLParameterValue":308,"BucketedURLParameterValue":309,"EnumExtractor":310,"FBIDsExtractor":311,"FBIDValidator":312,"IURLParameterValue":313,"URLParameterConfig":314,"URLSchematization":315,"URLSchematizer":316,"UtmIdFetcher":317,"SignalsFBEvents.plugins.vvp":318,"SignalsFBEvents.plugins.webchat":319,"SignalsFBEvents.plugins.websiteperformance":320,"SignalsFBevents.plugins.automaticmatchingforpartnerintegrations":321,"PixelCustomDataAndUserDataEnum":322,"SignalsIWLParameterExtractorEnum":323,"StandardEventsEnum":324,"index":325,"SignalsFBEventsCookieProviderType":326,"SignalsFBEventsESTCustomData":327,"SignalsFBEventsEnums":328,"SignalsFBEventsFormFieldFeaturesType":329,"SignalsFBEventsTypes":330,"SignalsFBEventsURLProviderType":331,"SignalsFBEventsWildcardMatches":332,"SignalsInteractionUtil":333,"SignalsPageVisibilityUtil":334,"SignalsFBEventsAutomaticEventsTypes":335,"signalsFBEventsElementDoesMatch":336,"signalsFBEventsExtractButtonFeatures":337,"signalsFBEventsExtractForm":338,"signalsFBEventsGetTruncatedButtonText":339,"signalsFBEventsGetWrappingButton":340,"signalsFBEventsIsIWLElement":341,"signalsFBEventsIsSaneAndNotDisabledButton":342,"babel.config":343,"fbevents_embed":344,"SignalsFBEventsConfigTypes":345,"SignalsFBEventsForkCbsdkEvent":346,"SignalsFBEventsConfigDrivenParserInterface":347,"SignalsFBEventsCoverageParserInterface":348,"ExperimentUtil":349,"OpenBridgeConnection":350,"DataBag":351,"keys":352,"buildAndSendFlowBag":353,"newEventID":354,"typedef":355,"sendToCloudbridgeWithPostService":356,"addEndpointToUrl":357,"isErrorExpected":358,"sendPOST":359,"sendPOSTWithFetch":360,"topics_api_utility_lib":361,"signalsFBEventsGetIsChromeInclIOS":362,"signalsFBEventsGetIsWebview":363,"analytics_debug":364,"analytics_ecommerce":365,"analytics_enhanced_ecommerce":366,"analytics_enhanced_link_attribution":367,"analytics_release":368,"proxy_polyfill":369,"SignalsFBEventsESTRuleConditionTypedef":370,"TestUtils":371,"loadBaseCode":372,"paramFilterFixtures":373},"hash":"ed806287581422089c496fd485507306546b2937977788da80b80247d3e2e94b"}); -config.set(null, "batching", {"batchWaitTimeMs":10,"maxBatchSize":10}); -config.set(null, "microdata", {"waitTimeMs":500}); -fbq.set("experimentsV2", [{"allocation":1,"code":"pl","name":"page_load_level_no_op_experiment","passRate":0.5,"universe":"page_load_level_no_op_universe","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":1,"code":"el","name":"event_level_no_op_experiment","passRate":0.5,"universe":"event_level_no_op_universe","evaluationType":"EVENT_LEVEL"},{"allocation":1,"code":"bc","name":"button_click_optimize_experiment_v2","passRate":1,"universe":"button_click_experiment_universe","evaluationType":"EVENT_LEVEL"},{"allocation":0,"code":"se","name":"process_additional_shopify_events","passRate":0,"universe":"shopify_events_universe","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":1,"code":"ra","name":"microdata_refactor_migration_automatic_parameters","passRate":0,"universe":"microdata_refactor_migration_automatic_parameters","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":1,"code":"rp","name":"microdata_refactor_migration_page_meta_data","passRate":0,"universe":"microdata_refactor_migration_page_meta_data","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":0.5,"code":"ct","name":"cookie_ttl_fix","passRate":0.5,"universe":"cookie_universe","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":0.5,"code":"im","name":"in_memory_cookie_jar","passRate":0.5,"universe":"cookie_universe","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":1,"code":"hf","name":"high_fetch_priority_image","passRate":0.5,"universe":"high_fetch_priority_universe","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":0,"code":"zz","name":"meta_qe","passRate":0,"universe":"qe_universe","evaluationType":"PAGE_LOAD_LEVEL"},{"allocation":0.05,"code":"pt","name":"page_title_og_fallback","passRate":0.5,"universe":"page_title_og_fallback_universe","evaluationType":"EVENT_LEVEL"},{"allocation":0.01,"code":"ai","name":"android_iab_max_get_length_32k","passRate":0.5,"universe":"android_iab_max_get_length_universe","evaluationType":"EVENT_LEVEL"}]);instance.configLoaded("global_config"); }}); \ No newline at end of file diff --git a/chrono.docs/Master of Ceremonies_files/flux.min.js.download b/chrono.docs/Master of Ceremonies_files/flux.min.js.download deleted file mode 100644 index 1644fda..0000000 --- a/chrono.docs/Master of Ceremonies_files/flux.min.js.download +++ /dev/null @@ -1,131 +0,0 @@ -(()=>{var ui=class extends Event{oldState;newState;constructor(i,{oldState:t="",newState:e="",...s}={}){super(i,s),this.oldState=String(t||""),this.newState=String(e||"")}},Br=new WeakMap;function zr(i,t,e){Br.set(i,setTimeout(()=>{Br.has(i)&&i.dispatchEvent(new ui("toggle",{cancelable:!1,oldState:t,newState:e}))},0))}var as=globalThis.ShadowRoot||function(){},fn=globalThis.HTMLDialogElement||function(){},ri=new WeakMap,Dt=new WeakMap,Ne=new WeakMap;function ai(i){return Ne.get(i)||"hidden"}var ni=new WeakMap;function pn(i){let t=i.popoverTargetElement;if(!(t instanceof HTMLElement))return;let e=ai(t);i.popoverTargetAction==="show"&&e==="showing"||i.popoverTargetAction==="hide"&&e==="hidden"||(e==="showing"?Oe(t,!0,!0):Zt(t,!1)&&(ni.set(t,i),rs(t)))}function Zt(i,t){return!(i.popover!=="auto"&&i.popover!=="manual"||!i.isConnected||t&&ai(i)!=="showing"||!t&&ai(i)!=="hidden"||i instanceof fn&&i.hasAttribute("open")||document.fullscreenElement===i)}function Wr(i){return i?Array.from(Dt.get(i.ownerDocument)||[]).indexOf(i)+1:0}function bn(i){let t=Gr(i),e=mn(i);return Wr(t)>Wr(e)?t:e}function oi(i){let t=Dt.get(i);for(let e of t||[])if(!e.isConnected)t.delete(e);else return e;return null}function pe(i){return typeof i.getRootNode=="function"?i.getRootNode():i.parentNode?pe(i.parentNode):i}function Gr(i){for(;i;){if(i instanceof HTMLElement&&i.popover==="auto"&&Ne.get(i)==="showing")return i;if(i=i instanceof Element&&i.assignedSlot||i.parentElement||pe(i),i instanceof as&&(i=i.host),i instanceof Document)return}}function mn(i){for(;i;){let t=i.popoverTargetElement;if(t instanceof HTMLElement)return t;if(i=i.parentElement||pe(i),i instanceof as&&(i=i.host),i instanceof Document)return}}function gn(i){let t=new Map,e=0;for(let a of Dt.get(i.ownerDocument)||[])t.set(a,e),e+=1;t.set(i,e),e+=1;let s=null;function r(a){let n=Gr(a);if(n===null)return null;let l=t.get(n);(s===null||t.get(s)"u")return;window.ToggleEvent=window.ToggleEvent||ui;function i(o){return o?.includes(":popover-open")&&(o=o.replace(An,"$1.\\:popover-open")),o}Jt(Document.prototype,"querySelector",i),Jt(Document.prototype,"querySelectorAll",i),Jt(Element.prototype,"querySelector",i),Jt(Element.prototype,"querySelectorAll",i),Jt(Element.prototype,"matches",i),Jt(Element.prototype,"closest",i),Jt(DocumentFragment.prototype,"querySelectorAll",i),Object.defineProperties(HTMLElement.prototype,{popover:{enumerable:!0,configurable:!0,get(){if(!this.hasAttribute("popover"))return null;let o=(this.getAttribute("popover")||"").toLowerCase();return o===""||o=="auto"?"auto":"manual"},set(o){o===null?this.removeAttribute("popover"):this.setAttribute("popover",o)}},showPopover:{enumerable:!0,configurable:!0,value(){rs(this)}},hidePopover:{enumerable:!0,configurable:!0,value(){Oe(this,!0,!0)}},togglePopover:{enumerable:!0,configurable:!0,value(o){Ne.get(this)==="showing"&&o===void 0||o===!1?Oe(this,!0,!0):(o===void 0||o===!0)&&rs(this)}}});let t=Element.prototype.attachShadow;t&&Object.defineProperties(Element.prototype,{attachShadow:{enumerable:!0,configurable:!0,writable:!0,value(o){let u=t.call(this,o);return ss(u),u}}});let e=HTMLElement.prototype.attachInternals;e&&Object.defineProperties(HTMLElement.prototype,{attachInternals:{enumerable:!0,configurable:!0,writable:!0,value(){let o=e.call(this);return o.shadowRoot&&ss(o.shadowRoot),o}}});let s=new WeakMap;function r(o){Object.defineProperties(o.prototype,{popoverTargetElement:{enumerable:!0,configurable:!0,set(u){if(u===null)this.removeAttribute("popovertarget"),s.delete(this);else if(u instanceof Element)this.setAttribute("popovertarget",""),s.set(this,u);else throw new TypeError("popoverTargetElement must be an element or null")},get(){if(this.localName!=="button"&&this.localName!=="input"||this.localName==="input"&&this.type!=="reset"&&this.type!=="image"&&this.type!=="button"||this.disabled||this.form&&this.type==="submit")return null;let u=s.get(this);if(u&&u.isConnected)return u;if(u&&!u.isConnected)return s.delete(this),null;let d=pe(this),c=this.getAttribute("popovertarget");return(d instanceof Document||d instanceof Yr)&&c&&d.getElementById(c)||null}},popoverTargetAction:{enumerable:!0,configurable:!0,get(){let u=(this.getAttribute("popovertargetaction")||"").toLowerCase();return u==="show"||u==="hide"?u:"toggle"},set(u){this.setAttribute("popovertargetaction",u)}}})}r(HTMLButtonElement),r(HTMLInputElement);let a=o=>{let u=o.composedPath(),d=u[0];if(!(d instanceof Element)||d?.shadowRoot)return;let c=pe(d);if(!(c instanceof Yr||c instanceof Document))return;let f=u.find(m=>m.matches?.("[popovertargetaction],[popovertarget]"));if(f){pn(f),o.preventDefault();return}},n=o=>{let u=o.key,d=o.target;!o.defaultPrevented&&d&&(u==="Escape"||u==="Esc")&&hi(d.ownerDocument,!0,!0)};(o=>{o.addEventListener("click",a),o.addEventListener("keydown",n),o.addEventListener("pointerdown",Ur),o.addEventListener("pointerup",Ur)})(document),ss(document)}xn()||_n();var mi=class extends Event{oldState;newState;constructor(i,{oldState:t="",newState:e="",...s}={}){super(i,s),this.oldState=String(t||""),this.newState=String(e||"")}},Xr=new WeakMap;function ta(i,t,e){Xr.set(i,setTimeout(()=>{Xr.has(i)&&i.dispatchEvent(new mi("toggle",{cancelable:!1,oldState:t,newState:e}))},0))}var hs=globalThis.ShadowRoot||function(){},kn=globalThis.HTMLDialogElement||function(){},ci=new WeakMap,It=new WeakMap,Fe=new WeakMap;function di(i){return Fe.get(i)||"hidden"}var fi=new WeakMap;function Cn(i){let t=i.popoverTargetElement;if(!(t instanceof HTMLElement))return;let e=di(t);i.popoverTargetAction==="show"&&e==="showing"||i.popoverTargetAction==="hide"&&e==="hidden"||(e==="showing"?Re(t,!0,!0):te(t,!1)&&(fi.set(t,i),us(t)))}function te(i,t){return!(i.popover!=="auto"&&i.popover!=="manual"||!i.isConnected||t&&di(i)!=="showing"||!t&&di(i)!=="hidden"||i instanceof kn&&i.hasAttribute("open")||document.fullscreenElement===i)}function jr(i){return i?Array.from(It.get(i.ownerDocument)||[]).indexOf(i)+1:0}function Tn(i){let t=ea(i),e=Dn(i);return jr(t)>jr(e)?t:e}function pi(i){let t=It.get(i);for(let e of t||[])if(!e.isConnected)t.delete(e);else return e;return null}function me(i){return typeof i.getRootNode=="function"?i.getRootNode():i.parentNode?me(i.parentNode):i}function ea(i){for(;i;){if(i instanceof HTMLElement&&i.popover==="auto"&&Fe.get(i)==="showing")return i;if(i=i instanceof Element&&i.assignedSlot||i.parentElement||me(i),i instanceof hs&&(i=i.host),i instanceof Document)return}}function Dn(i){for(;i;){let t=i.popoverTargetElement;if(t instanceof HTMLElement)return t;if(i=i.parentElement||me(i),i instanceof hs&&(i=i.host),i instanceof Document)return}}function In(i){let t=new Map,e=0;for(let a of It.get(i.ownerDocument)||[])t.set(a,e),e+=1;t.set(i,e),e+=1;let s=null;function r(a){let n=ea(a);if(n===null)return null;let l=t.get(n);(s===null||t.get(s)"u")return;window.ToggleEvent=window.ToggleEvent||mi;function i(o){return o?.includes(":popover-open")&&(o=o.replace(On,"$1.\\:popover-open")),o}Qt(Document.prototype,"querySelector",i),Qt(Document.prototype,"querySelectorAll",i),Qt(Element.prototype,"querySelector",i),Qt(Element.prototype,"querySelectorAll",i),Qt(Element.prototype,"matches",i),Qt(Element.prototype,"closest",i),Qt(DocumentFragment.prototype,"querySelectorAll",i),Object.defineProperties(HTMLElement.prototype,{popover:{enumerable:!0,configurable:!0,get(){if(!this.hasAttribute("popover"))return null;let o=(this.getAttribute("popover")||"").toLowerCase();return o===""||o=="auto"?"auto":"manual"},set(o){o===null?this.removeAttribute("popover"):this.setAttribute("popover",o)}},showPopover:{enumerable:!0,configurable:!0,value(){us(this)}},hidePopover:{enumerable:!0,configurable:!0,value(){Re(this,!0,!0)}},togglePopover:{enumerable:!0,configurable:!0,value(o){Fe.get(this)==="showing"&&o===void 0||o===!1?Re(this,!0,!0):(o===void 0||o===!0)&&us(this)}}});let t=Element.prototype.attachShadow;t&&Object.defineProperties(Element.prototype,{attachShadow:{enumerable:!0,configurable:!0,writable:!0,value(o){let u=t.call(this,o);return ls(u),u}}});let e=HTMLElement.prototype.attachInternals;e&&Object.defineProperties(HTMLElement.prototype,{attachInternals:{enumerable:!0,configurable:!0,writable:!0,value(){let o=e.call(this);return o.shadowRoot&&ls(o.shadowRoot),o}}});let s=new WeakMap;function r(o){Object.defineProperties(o.prototype,{popoverTargetElement:{enumerable:!0,configurable:!0,set(u){if(u===null)this.removeAttribute("popovertarget"),s.delete(this);else if(u instanceof Element)this.setAttribute("popovertarget",""),s.set(this,u);else throw new TypeError("popoverTargetElement must be an element or null")},get(){if(this.localName!=="button"&&this.localName!=="input"||this.localName==="input"&&this.type!=="reset"&&this.type!=="image"&&this.type!=="button"||this.disabled||this.form&&this.type==="submit")return null;let u=s.get(this);if(u&&u.isConnected)return u;if(u&&!u.isConnected)return s.delete(this),null;let d=me(this),c=this.getAttribute("popovertarget");return(d instanceof Document||d instanceof Qr)&&c&&d.getElementById(c)||null}},popoverTargetAction:{enumerable:!0,configurable:!0,get(){let u=(this.getAttribute("popovertargetaction")||"").toLowerCase();return u==="show"||u==="hide"?u:"toggle"},set(u){this.setAttribute("popovertargetaction",u)}}})}r(HTMLButtonElement),r(HTMLInputElement);let a=o=>{let u=o.composedPath(),d=u[0];if(!(d instanceof Element)||d?.shadowRoot)return;let c=me(d);if(!(c instanceof Qr||c instanceof Document))return;let f=u.find(m=>m.matches?.("[popovertargetaction],[popovertarget]"));if(f){Cn(f),o.preventDefault();return}},n=o=>{let u=o.key,d=o.target;!o.defaultPrevented&&d&&(u==="Escape"||u==="Esc")&&gi(d.ownerDocument,!0,!0)};(o=>{o.addEventListener("click",a),o.addEventListener("keydown",n),o.addEventListener("pointerdown",Zr),o.addEventListener("pointerup",Zr)})(document),ls(document)}var vi;function Ve(i){let t=i({css:(e,...s)=>`@layer base { ${e.raw[0]+s.join("")} }`});if(document.adoptedStyleSheets===void 0){let e=document.createElement("style");e.textContent=t,document.head.appendChild(e);return}vi===void 0&&(vi=new CSSStyleSheet,document.adoptedStyleSheets=[...document.adoptedStyleSheets,vi]),vi.insertRule(t)}function yi(i,t){let e=i;for(;e;){if(t(e))return e;e=e.parentElement}}function tt(i,t){let e=document.createTreeWalker(i,NodeFilter.SHOW_ELEMENT,t?{acceptNode:s=>{let r,a;return t(s,{skip:()=>r=!0,reject:()=>a=!0}),r?NodeFilter.FILTER_SKIP:a?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT}}:{});return new cs(e)}var cs=class{constructor(t){this.walker=t}from(t){return this.walker.currentNode=t,this}first(){return this.walker.firstChild()}last(){return this.walker.lastChild()}next(t){return this.walker.currentNode=t,this.walker.nextSibling()}nextOrFirst(t){let e=this.next(t);return e||(this.walker.currentNode=this.walker.root,this.first())}prev(t){return this.walker.currentNode=t,this.walker.previousSibling()}prevOrLast(t){let e=this.prev(t);return e||(this.walker.currentNode=this.walker.root,this.last())}closest(t,e){let s=this.from(t).walker;for(;s.currentNode;){if(e(s.currentNode))return s.currentNode;s.parentNode()}}contains(t){return this.find(e=>e===t)}find(t){return this.walk((e,s)=>{t(e)&&s(e)})}findOrFirst(t){return this.find(t)||(this.walker.currentNode=this.walker.root),this.first()}each(t){this.walk(e=>t(e))}some(t){return!!this.find(t)}every(t){let e=!0;return this.walk(s=>{t(s)||(e=!1)}),e}map(t){let e=[];return this.walk(s=>e.push(t(s))),e}filter(t){let e=[];return this.walk(s=>t(s)&&e.push(s)),e}walk(t){let e,s=this.walker,r;for(;s.nextNode()&&(e=s.currentNode,t(e,a=>r=a),r===void 0););return r}};function T(i,t){customElements.define(`ui-${i}`,t)}function y(i,t,e,s={}){return i.addEventListener(t,e,s),{off:()=>i.removeEventListener(t,e),pause:r=>{i.removeEventListener(t,e),r(),i.addEventListener(t,e)}}}function oa(i){return["a[href]","area[href]","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","iframe","object","embed","[tabindex]","[contenteditable]"].some(e=>i.matches(e))&&i.tabIndex>=0}function ds(i,t){let e;return function(){let s=this,r=arguments;e||(i.apply(s,r),e=!0,setTimeout(()=>e=!1,t))}}function fs(i,t){let e,s,r=t,a=!1,n={pause:()=>{a&&(clearTimeout(e),r-=Date.now()-s,a=!1)},resume:()=>{a||(s=Date.now(),e=setTimeout(i,r),a=!0)},cancel:()=>{clearTimeout(e),a=!1,r=t}};return n.resume(),n}var qe="pointer";document.addEventListener("keydown",()=>qe="keyboard",{capture:!0});document.addEventListener("pointerdown",i=>{qe=i.pointerType==="mouse"?"mouse":"touch"},{capture:!0});document.addEventListener("pointermove",i=>{qe=i.pointerType==="mouse"?"mouse":"touch"},{capture:!0});function ee(){return qe==="keyboard"}function wi(){return qe==="touch"}function xi(i,t){let e="",s=Un(()=>{e=""},300);i.addEventListener("keydown",r=>{r.key.length===1&&/[a-zA-Z]/.test(r.key)&&(e+=r.key,t(e),r.stopPropagation()),s()})}function Fn(i,t){return"lofi-"+(t?t+"-":"")+Math.random().toString(16).slice(2)}function K(i,t){let e=i.hasAttribute("id")?i.getAttribute("id"):Fn(i,t);return h(i,"id",e),i._x_bindings||(i._x_bindings={}),i._x_bindings.id||(i._x_bindings.id=e),e}function G(){let i=!1;return t=>(...e)=>{if(!i){i=!0;try{t(...e)}finally{i=!1}}}}function ye(i,t,{gain:e,lose:s,focusable:r,useSafeArea:a}){let n=!1,l=A=>{ee()&&(i.contains(A.target)||t.contains(A.target)?(n=!0,e()):(n=!1,s()))};r&&document.addEventListener("focusin",l);let o=()=>{document.removeEventListener("focusin",l)},u=()=>{},d=()=>{},c=()=>{n=!1,s(),u(),d()},f=()=>{n=!1,u(),d()},m=A=>{wi()||n||(n=!0,e(),setTimeout(()=>{let{safeArea:_,redraw:L,remove:O}=a?Vn(i,t,A.clientX,A.clientY):Hn();u=O;let E,b=ds(q=>{let S=t.getBoundingClientRect(),N=i.getBoundingClientRect(),F;switch(_.contains(q.target)&&qn(N,S,q.clientX,q.clientY)?F="safeArea":t.contains(q.target)?F="panel":i.contains(q.target)?F="trigger":F="outside",E&&clearTimeout(E),F){case"outside":c();break;case"trigger":L(q.clientX,q.clientY);break;case"panel":u();break;case"safeArea":L(q.clientX,q.clientY),E=setTimeout(()=>{c()},300);break;default:break}},100);document.addEventListener("pointermove",b),d=()=>document.removeEventListener("pointermove",b)}))};i.addEventListener("pointerenter",m);let p=()=>{i.removeEventListener("pointerenter",m)};return{clear:f,remove:()=>{f(),p(),o()}}}function Vn(i,t,e,s){let r=document.createElement("div"),a=t.getBoundingClientRect(),n=i.getBoundingClientRect();r.style.position="fixed",h(r,"data-safe-area","");let l=(o,u)=>{if(a.top===0&&a.bottom===0)return;let d;a.leftn.right&&(d="right"),a.topn.bottom&&a.top>u&&(d="down"),d===void 0&&(d="right");let c,f,m,p,w,A,_,L,O=10;switch(d){case"left":c=a.right,f=Math.max(a.right,o)+5,m=f-c,p=Math.min(n.top,a.top)-O,w=Math.max(n.bottom,a.bottom)+O,A=w-p,_=u-p,L=`polygon(0% 0%, 100% ${_}px, 0% 100%)`;break;case"right":c=Math.min(a.left,o)-5,f=a.left,m=f-c,p=Math.min(n.top,a.top)-O,w=Math.max(n.bottom,a.bottom)+O,A=w-p,_=u-p,L=`polygon(0% ${_}px, 100% 0%, 100% 100%)`;break;case"up":c=Math.min(o,a.left)-O,f=Math.max(o,a.right)+O,m=f-c,p=a.bottom,w=Math.max(a.bottom,u)+5,A=w-p,_=o-c,L=`polygon(0% 0%, 100% 0%, ${_}px 100%)`;break;case"down":c=Math.min(o,a.left)-O,f=Math.max(o,a.right)+O,m=f-c,p=Math.min(a.top,u)-5,w=a.top,A=w-p,_=o-c,L=`polygon(${_}px 0%, 100% 100%, 0% 100%)`;break}r.style.left=`${c}px`,r.style.top=`${p}px`,r.style.width=`${m}px`,r.style.height=`${A}px`,r.style.clipPath=L};return{safeArea:r,redraw:(o,u)=>{r.isConnected||i.appendChild(r),l(o,u)},remove:()=>{r.remove()}}}function qn(i,t,e,s){return!$n(i,e,s)&&!Bn(t,e,s)}function $n(i,t,e){return i.left<=t&&t<=i.right&&i.top<=e&&e<=i.bottom}function Bn(i,t,e){return i.left<=t&&t<=i.right&&i.top<=e&&e<=i.bottom}function h(i,t,e){i._durableAttributeObserver===void 0&&(i._durableAttributeObserver=la(i,[t])),i._durableAttributeObserver.hasAttribute(t)||i._durableAttributeObserver.addAttribute(t),i._durableAttributeObserver.pause(()=>{i.setAttribute(t,e)})}function dt(i,t){x(i,t),Wn(i,t)}function x(i,t){i._durableAttributeObserver===void 0&&(i._durableAttributeObserver=la(i,[t])),i._durableAttributeObserver.hasAttribute(t)||i._durableAttributeObserver.addAttribute(t),i._durableAttributeObserver.pause(()=>{i.removeAttribute(t)})}function Wn(i,t){i?._durableAttributeObserver?.hasAttribute(t)&&i._durableAttributeObserver.releaseAttribute(t)}function la(i,t){let e=r=>{r.forEach(a=>{a.oldValue===null?i._durableAttributeObserver.pause(()=>x(i,a.attributeName)):i._durableAttributeObserver.pause(()=>h(i,a.attributeName,a.oldValue))})},s=new MutationObserver(r=>e(r));return s.observe(i,{attributeFilter:t,attributeOldValue:!0}),{attributes:t,hasAttribute(r){return this.attributes.includes(r)},addAttribute(r){this.attributes.includes(r)||this.attributes.push(r),s.observe(i,{attributeFilter:this.attributes,attributeOldValue:!0})},releaseAttribute(r){this.hasAttribute(r)&&s.observe(i,{attributeFilter:this.attributes,attributeOldValue:!0})},pause(r){e(s.takeRecords()),s.disconnect(),r(),s.observe(i,{attributeFilter:this.attributes,attributeOldValue:!0})}}}function Hn(){return{safeArea:{contains:()=>!1},redraw:()=>{},remove:()=>{}}}function Un(i,t){let e;return(...s)=>{clearTimeout(e),e=setTimeout(()=>{i(...s)},t)}}var ge=0,ve=!1;Ve(({css:i})=>i`[data-flux-allow-scroll] { pointer-events: auto; }`);function ot(i=null,t=!1,e=[]){if(t)return{lock:()=>{},unlock:()=>{}};let s=(a=!1)=>{na(document.documentElement);let n={overflow:"hidden",...a?{pointerEvents:"none"}:{}};window.CSS&&CSS.supports&&CSS.supports("scrollbar-gutter: stable")?document.documentElement.scrollHeight>document.documentElement.clientHeight&&window.getComputedStyle(document.documentElement).overflowY!=="hidden"&&(n.scrollbarGutter="stable"):n.paddingRight=`calc(${window.innerWidth-document.documentElement.clientWidth}px + ${window.getComputedStyle(document.documentElement).paddingRight})`,Yn(document.documentElement,n),a&&(h(i,"data-flux-allow-scroll",""),e.forEach(l=>{h(l,"data-flux-allow-scroll","")}),ve=!0)},r=(a=!1)=>{na(document.documentElement),a&&(dt(i,"data-flux-allow-scroll"),e.forEach(n=>{x(n,"data-flux-allow-scroll")}),ve=!1)};return{lock(){ge++,!(ge>1&&i!==null&&ve)&&s(i!==null&&!ve)},unlock(){ge=Math.max(0,ge-1),!(ge>0&&i!==null&&!ve)&&(r(i!==null&&ve),ge>0&&s(!1))}}}function Yn(i,t){let e=JSON.parse(i.getAttribute("data-flux-scroll-unlock")||"{}");Object.entries(t).forEach(([s,r])=>{e[s]===void 0&&(e[s]=i.style[s],i.style[s]=r)}),i.setAttribute("data-flux-scroll-unlock",JSON.stringify(e))}function na(i){let t=JSON.parse(i.getAttribute("data-flux-scroll-unlock")||"{}");Object.entries(t).forEach(([e,s])=>{i.style[e]=s}),i.removeAttribute("data-flux-scroll-unlock")}function ps(i,t,e){let s=i.style[t];return i.style[t]=e,()=>{i.style[t]=s}}function we(i,t,e){let s=(n,l)=>o=>{o.key===n&&!t()&&(l(),o.preventDefault(),o.stopPropagation())};h(i,"role","button");let r=()=>{i.hasAttribute("disabled")?(h(i,"aria-disabled","true"),h(i,"tabindex","-1")):(x(i,"aria-disabled"),h(i,"tabindex","0"))};new MutationObserver(()=>r()).observe(i,{attributes:!0,attributeFilter:["disabled"]}),r(),y(i,"click",()=>e()),y(i,"keydown",s("Enter",()=>e())),y(i,"keydown",s(" ",()=>{})),y(i,"keyup",s(" ",()=>e()))}function ua(i,t,e=null){let s=()=>{let n=i.getAttribute(t),l={sm:640,md:768,lg:1024,xl:1280,"2xl":1536};for(let[o,u]of Object.entries(l).reverse()){let d=i.getAttribute(`${o}:${t}`);if(d&&window.innerWidth>=u)return d}return n||e},r=s(),a=[];return new ResizeObserver(()=>{let n=s(),l=JSON.stringify(r);JSON.stringify(n)!==l&&(r=n,a.forEach(o=>o(n)))}).observe(window.document.documentElement),[r,n=>a.push(n)]}function Ai(){return navigator?.language||document.documentElement.lang||"en-US"}function Si(i,t={slots:{},attrs:{}}){let{slots:e={},attrs:s={}}=t,r=i.content.cloneNode(!0).firstElementChild;return Object.entries(e).forEach(([a,n])=>{(a==="default"?r.querySelectorAll("slot:not([name])"):r.querySelectorAll(`slot[name="${a}"]`)).forEach(o=>o.replaceWith(typeof n=="string"?document.createTextNode(n):n))}),r.querySelectorAll("slot").forEach(a=>a.remove()),Object.entries(s).forEach(([a,n])=>{r.setAttribute(a,n)}),r.setAttribute("data-appended",""),r}function bt(i){return getComputedStyle(i).direction==="rtl"}function ha(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)&&!navigator.userAgent.includes("CriOS")&&!navigator.userAgent.includes("FxiOS")}function ca(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream}var Wt=class{constructor(){this.subscribers=[]}subscribe(t,e){this.subscribers.push({reason:t,callback:e})}notify(t,e){this.subscribers.forEach(({reason:s,callback:r})=>{t===s&&r(e)})}};var I=class extends HTMLElement{wasDisconnected=!1;constructor(){super(),this.boot?.()}connectedCallback(){if(this.wasDisconnected){this.wasDisconnected=!1;return}queueMicrotask(()=>{this.mount?.()})}disconnectedCallback(){this.wasDisconnected=!0,queueMicrotask(()=>{this.wasDisconnected&&this.unmount?.(),this.wasDisconnected=!1})}mixin(t,e={}){return new t(this,e)}appendMixin(t,e={}){return new t(this,e)}use(t){let e;return this.mixins.forEach(s=>{s instanceof t&&(e=s)}),e}uses(t){let e;return this.mixins.forEach(s=>{s instanceof t&&(e=!0)}),!!e}on(t,e){return y(this,t,e)}root(t,e={}){if(t===void 0)return this.__root;let s=document.createElement(t);for(let a in e)setAttribute(s,a,e[a]);let r=this.attachShadow({mode:"open"});return s.appendChild(document.createElement("slot")),r.appendChild(s),this.__root=s,this.__root}},Z=class extends I{};var X=class{constructor(t,e={}){this.el=t,this.grouped=e.grouped===void 0,this.el.mixins=this.el.mixins?this.el.mixins:new Map,this.el.mixins.set(this.constructor.name,this),this.el[this.constructor.name]=!0,this.el.use||(this.el.use=I.prototype.use.bind(this.el)),this.opts=e,this.boot?.({options:s=>{let r=s;Object.entries(this.opts).forEach(([a,n])=>{n!==void 0&&(r[a]=n)}),this.opts=r}}),queueMicrotask(()=>{this.mount?.()})}options(){return this.opts}hasGroup(){return!!this.group()}group(){if(this.grouped!==!1)return yi(this.el,t=>t[this.groupedByType.name])?.use(this.groupedByType)}on(t,e){return y(this.el,t,e)}},kt=class extends X{constructor(t,e={}){super(t,e)}walker(){return tt(this.el,(t,{skip:e,reject:s})=>{if(t[this.constructor.name]&&t!==this.el)return s();if(!t[this.groupOfType.name]||!t.mixins.get(this.groupOfType.name).grouped)return e()})}};var U=class extends X{boot({options:t}){t({bubbles:!1}),this.initialState=this.el.value,this.getterFunc=()=>{},this.setterFunc=e=>this.initialState=e,Object.defineProperty(this.el,"value",{get:()=>this.getterFunc(),set:e=>{this.setterFunc(e)}})}initial(t){t(this.initialState)}getter(t){this.getterFunc=t}setter(t){this.setterFunc=t}dispatch(){this.el.dispatchEvent(new Event("input",{bubbles:this.options().bubbles,cancelable:!0})),this.el.dispatchEvent(new Event("change",{bubbles:this.options().bubbles,cancelable:!0}))}};var $e=null;document.addEventListener("mousedown",i=>$e=i);var xe=class extends X{boot({options:t}){t({clickOutside:!0,triggers:[]}),this.onChanges=[],this.state=!1,this.stopDialogFromFocusingTheFirstElement();let e=this.options().triggers;new MutationObserver(r=>{r.forEach(a=>{a.attributeName==="open"&&(this.el.hasAttribute("open")?this.state=!0:this.state=!1)}),this.onChanges.forEach(a=>a())}).observe(this.el,{attributeFilter:["open"]}),this.options().clickOutside&&this.el.addEventListener("click",r=>{if(r.target!==this.el){$e=null;return}$e&&da(this.el,$e)&&da(this.el,r)&&(this.cancel(),r.preventDefault(),r.stopPropagation()),$e=null}),this.el.hasAttribute("open")&&(this.state=!0,this.hide(),this.show())}onChange(t){this.onChanges.push(t)}show(){this.el.isConnected&&this.el.showModal()}hide(){this.el.close()}toggle(){this.state?this.hide():this.show()}cancel(){let t=new Event("cancel",{bubbles:!1,cancelable:!0});this.el.dispatchEvent(t),t.defaultPrevented||this.hide()}getState(){return this.state}setState(t){t?this.show():this.hide()}stopDialogFromFocusingTheFirstElement(){let t=document.createElement("div");t.setAttribute("data-flux-focus-placeholder",""),t.setAttribute("data-appended",""),t.setAttribute("tabindex","0"),this.el.prepend(t),this.onChange(()=>{h(t,"style",this.state?"display: none":"display: block"),this.state&&ha()&&!this.el.hasAttribute("autofocus")&&this.el.querySelectorAll("[autofocus]").length===0&&setTimeout(()=>{this.el.setAttribute("tabindex","-1"),this.el.focus(),this.el.blur()})})}};function da(i,t){let e=i.getBoundingClientRect(),s=t.clientX,r=t.clientY;return!(s>=e.left&&s<=e.right&&r>=e.top&&r<=e.bottom)}var Lt=class extends X{boot(){this.onCloses=[]}onClose(t){this.onCloses.push(t)}close(){this.onCloses.forEach(t=>t())}};var bs=class extends I{boot(){this.querySelectorAll("[data-appended]").forEach(l=>l.remove()),this._controllable=new U(this,{disabled:this.hasAttribute("disabled")});let t=this.button(),e=this.dialog();if(!e)return;e._dialogable=new xe(e,{clickOutside:!this.hasAttribute("disable-click-outside")}),e._closeable=new Lt(e),e._closeable.onClose(()=>e._dialogable.hide()),this._controllable.initial(l=>l&&e._dialogable.show()),this._controllable.getter(()=>e._dialogable.getState());let s=G();this._controllable.setter(s(l=>{e._dialogable.setState(l)})),e._dialogable.onChange(s(()=>{this._controllable.dispatch()}));let r=()=>{e._dialogable.getState()?(h(this,"data-open",""),t?.setAttribute("data-open",""),h(e,"data-open","")):(x(this,"data-open"),t?.removeAttribute("data-open"),x(e,"data-open"))};e._dialogable.onChange(()=>r()),r();let{lock:a,unlock:n}=ot();e._dialogable.onChange(()=>{e._dialogable.getState()?a():n()}),t&&y(t,"click",l=>{e._dialogable.show()})}unmount(){if(this.dialog()?._dialogable?.getState()){let{unlock:t}=ot();t()}}button(){let t=this.querySelector("button,ui-button");if(!this.dialog()?.contains(t))return t}dialog(){return this.querySelector("dialog")}showModal(){let t=this.dialog();t&&t.showModal()}};Ve(({css:i})=>i`dialog, ::backdrop { margin: auto; }`);T("modal",bs);var Mt=class extends kt{groupOfType=et;boot({options:t}){t({wrap:!1,filter:!1}),this.onChanges=[]}onChange(t){this.onChanges.push(t)}activated(t){this.onChanges.forEach(e=>e())}activateFirst(){this.filterAwareWalker().first()?.use(et).activate()}activateBySearch(t){this.filterAwareWalker().find(s=>s.textContent.toLowerCase().trim().startsWith(t.toLowerCase()))?.use(et).activate()}activateSelectedOrFirst(t){if(!t||(s=>s.matches("ui-option, ui-option-create")?getComputedStyle(s).display==="none":!1)(t)){this.filterAwareWalker().first()?.use(et).activate();return}t?.use(et).activate()}activateActiveOrFirst(){let t=this.getActive();if(!t){this.filterAwareWalker().first()?.use(et).activate();return}t?.use(et).activate()}activateActiveOrLast(){let t=this.getActive();if(!t){this.filterAwareWalker().last()?.use(et).activate();return}t?.use(et).activate()}activatePrev(){let t=this.getActive();if(!t){this.filterAwareWalker().last()?.use(et).activate();return}let e;this.options.wrap?e=this.filterAwareWalker().prevOrLast(t):e=this.filterAwareWalker().prev(t),e?.use(et).activate()}activateNext(){let t=this.getActive();if(!t){this.filterAwareWalker().first()?.use(et).activate();return}let e;this.options.wrap?e=this.filterAwareWalker().nextOrFirst(t):e=this.filterAwareWalker().next(t),e?.use(et).activate()}getActive(){return this.walker().find(t=>t.use(et).isActive())}clearActive(){this.getActive()?.use(et).deactivate()}filterAwareWalker(){let t=e=>e.matches("ui-option, ui-option-create")?getComputedStyle(e).display==="none":!1;return tt(this.el,(e,{skip:s,reject:r})=>{if(e[this.constructor.name]&&e!==this.el)return r();if(!e[this.groupOfType.name])return s();if(e.hasAttribute("disabled")||t(e))return r()})}},et=class i extends X{groupedByType=Mt;mount(){this.el.addEventListener("mouseenter",()=>{this.activate()}),this.el.addEventListener("mouseleave",()=>{this.deactivate()})}activate(t=!1){this.group()&&this.group().walker().each(e=>e.use(i).deactivate(!1)),!(this.el.hasAttribute("disabled")&&!t)&&(h(this.el,"data-active",""),ee()&&this.el.scrollIntoView({block:"nearest"}),this.group()&&this.group().activated(this.el))}deactivate(t=!0){x(this.el,"data-active"),t&&this.group()&&this.group().activated(this.el)}isActive(){return this.el.hasAttribute("data-active")}};var ie=class extends kt{groupOfType=Ct;boot({options:t}){t({}),this.onChanges=[],this.lastSearch=""}onChange(t){this.onChanges.push(t)}filter(t){t===""?this.walker().each(e=>{e.use(Ct).unfilter()}):this.walker().each(e=>{this.matches(e,t)?e.use(Ct).unfilter():e.use(Ct).filter()}),this.lastSearch!==t&&this.onChanges.forEach(e=>e()),this.lastSearch=t}matches(t,e){return this.normalize(t.textContent).includes(this.normalize(e))}normalize(t){return t.normalize("NFD").replace(/\p{Diacritic}/gu,"").toLowerCase().trim()}hasResults(){return this.walker().some(t=>!t.use(Ct).isFiltered())}},Ct=class extends X{groupedByType=ie;boot({options:t}){t({mirror:null,keep:!1}),this.onChanges=[]}filter(){this.options().keep||(h(this.el,"data-hidden",""),this.options().mirror&&h(this.options().mirror,"data-hidden",""))}unfilter(){this.options().keep||(x(this.el,"data-hidden"),this.options().mirror&&x(this.options().mirror,"data-hidden",""))}isFiltered(){return this.el.hasAttribute("data-hidden")}};var Pt=new Map,rt=class extends X{boot({options:t}){t({triggers:[],scope:null});let e=this.options().scope||"global";h(this.el,"popover","manual"),this.triggers=this.options().triggers,this.onChanges=[],this.state=!1,y(this.el,"beforetoggle",s=>{let r=this.state;if(this.state=s.newState==="open",this.state){zn(this.el,e);let a=new AbortController,n=document.activeElement,l=[...this.triggers,n];setTimeout(()=>{Gn(this.el,l,a),Kn(this.el,l,a),Xn(this.el,l,a)}),this.el.addEventListener("beforetoggle",o=>{o.newState==="closed"&&(a.abort(),n?.focus())},{signal:a.signal})}r!==this.state&&this.onChanges.forEach(a=>a(this.state,r))}),y(this.el,"toggle",s=>{if(s.newState==="open")Pt.has(e)||Pt.set(e,new Set),Pt.get(e).add(this.el);else if(s.newState==="closed"){if(!Pt.has(e))return;Pt.get(e).delete(this.el),Pt.get(e).size===0&&Pt.delete(e)}})}onChange(t){this.onChanges.push(t)}setState(t){t?this.show():this.hide()}getState(){return this.state}toggle(){this.el.isConnected&&this.el.togglePopover()}show(){this.el.isConnected&&this.el.showPopover()}hide(){this.el.isConnected&&this.el.hidePopover()}};function zn(i,t){Pt.has(t)&&Pt.get(t).forEach(e=>{i.contains(e)||e.contains(i)||e.hidePopover()})}function Gn(i,t,e){document.addEventListener("click",s=>{i.contains(s.target)||t.includes(s.target)||i.hidePopover()},{signal:e.signal})}function Kn(i,t,e){document.addEventListener("focusin",s=>{i.contains(s.target)||t.includes(s.target)||(e.abort(),i.hidePopover())},{capture:!0,signal:e.signal})}function Xn(i,t,e){document.addEventListener("keydown",s=>{s.key==="Escape"&&i.hidePopover()},{signal:e.signal})}var V=class extends X{boot({options:t}){t({disableWithParent:!0}),this.onChanges=[],Object.defineProperty(this.el,"disabled",{get:()=>this.el.hasAttribute("disabled"),set:s=>{s?this.el.setAttribute("disabled",""):this.el.removeAttribute("disabled")}}),this.el.hasAttribute("disabled")?this.el.disabled=!0:this.options().disableWithParent&&this.el.parentElement?.closest("[disabled]")&&(this.el.disabled=!0),new MutationObserver(s=>{this.onChanges.forEach(r=>r(this.el.disabled))}).observe(this.el,{attributeFilter:["disabled"]})}onChange(t){this.onChanges.push(t)}onInitAndChange(t){t(this.el.disabled),this.onChanges.push(t)}enabled(t){return(...e)=>{if(!this.el.disabled)return t(...e)}}disabled(t){return(...e)=>{if(this.el.disabled)return t(...e)}}isDisabled(){return this.el.disabled}};var Ht=Math.min,ft=Math.max,We=Math.round,He=Math.floor,vt=i=>({x:i,y:i}),jn={left:"right",right:"left",bottom:"top",top:"bottom"},Jn={start:"end",end:"start"};function ms(i,t,e){return ft(i,Ht(t,e))}function Ae(i,t){return typeof i=="function"?i(t):i}function Ot(i){return i.split("-")[0]}function Se(i){return i.split("-")[1]}function gs(i){return i==="x"?"y":"x"}function vs(i){return i==="y"?"height":"width"}function Ut(i){return["top","bottom"].includes(Ot(i))?"y":"x"}function ys(i){return gs(Ut(i))}function fa(i,t,e){e===void 0&&(e=!1);let s=Se(i),r=ys(i),a=vs(r),n=r==="x"?s===(e?"end":"start")?"right":"left":s==="start"?"bottom":"top";return t.reference[a]>t.floating[a]&&(n=Be(n)),[n,Be(n)]}function pa(i){let t=Be(i);return[Ei(i),t,Ei(t)]}function Ei(i){return i.replace(/start|end/g,t=>Jn[t])}function Zn(i,t,e){let s=["left","right"],r=["right","left"],a=["top","bottom"],n=["bottom","top"];switch(i){case"top":case"bottom":return e?t?r:s:t?s:r;case"left":case"right":return t?a:n;default:return[]}}function ba(i,t,e,s){let r=Se(i),a=Zn(Ot(i),e==="start",s);return r&&(a=a.map(n=>n+"-"+r),t&&(a=a.concat(a.map(Ei)))),a}function Be(i){return i.replace(/left|right|bottom|top/g,t=>jn[t])}function Qn(i){return{top:0,right:0,bottom:0,left:0,...i}}function ma(i){return typeof i!="number"?Qn(i):{top:i,right:i,bottom:i,left:i}}function se(i){let{x:t,y:e,width:s,height:r}=i;return{width:s,height:r,top:e,left:t,right:t+s,bottom:e+r,x:t,y:e}}function ga(i,t,e){let{reference:s,floating:r}=i,a=Ut(t),n=ys(t),l=vs(n),o=Ot(t),u=a==="y",d=s.x+s.width/2-r.width/2,c=s.y+s.height/2-r.height/2,f=s[l]/2-r[l]/2,m;switch(o){case"top":m={x:d,y:s.y-r.height};break;case"bottom":m={x:d,y:s.y+s.height};break;case"right":m={x:s.x+s.width,y:c};break;case"left":m={x:s.x-r.width,y:c};break;default:m={x:s.x,y:s.y}}switch(Se(t)){case"start":m[n]-=f*(e&&u?-1:1);break;case"end":m[n]+=f*(e&&u?-1:1);break}return m}var va=async(i,t,e)=>{let{placement:s="bottom",strategy:r="absolute",middleware:a=[],platform:n}=e,l=a.filter(Boolean),o=await(n.isRTL==null?void 0:n.isRTL(t)),u=await n.getElementRects({reference:i,floating:t,strategy:r}),{x:d,y:c}=ga(u,s,o),f=s,m={},p=0;for(let w=0;wD<=0)){var M,k;let D=(((M=a.flip)==null?void 0:M.index)||0)+1,P=S[D];if(P)return{data:{index:D,overflows:v},reset:{placement:P}};let $=(k=v.filter(W=>W.overflows[0]<=0).sort((W,R)=>W.overflows[1]-R.overflows[1])[0])==null?void 0:k.placement;if(!$)switch(m){case"bestFit":{var C;let W=(C=v.filter(R=>{if(q){let H=Ut(R.placement);return H===L||H==="y"}return!0}).map(R=>[R.placement,R.overflows.filter(H=>H>0).reduce((H,z)=>H+z,0)]).sort((R,H)=>R[1]-H[1])[0])==null?void 0:C[0];W&&($=W);break}case"initialPlacement":$=l;break}if(r!==$)return{reset:{placement:$}}}return{}}}};async function to(i,t){let{placement:e,platform:s,elements:r}=i,a=await(s.isRTL==null?void 0:s.isRTL(r.floating)),n=Ot(e),l=Se(e),o=Ut(e)==="y",u=["left","top"].includes(n)?-1:1,d=a&&o?-1:1,c=Ae(t,i),{mainAxis:f,crossAxis:m,alignmentAxis:p}=typeof c=="number"?{mainAxis:c,crossAxis:0,alignmentAxis:null}:{mainAxis:c.mainAxis||0,crossAxis:c.crossAxis||0,alignmentAxis:c.alignmentAxis};return l&&typeof p=="number"&&(m=l==="end"?p*-1:p),o?{x:m*d,y:f*u}:{x:f*u,y:m*d}}var wa=function(i){return i===void 0&&(i=0),{name:"offset",options:i,async fn(t){var e,s;let{x:r,y:a,placement:n,middlewareData:l}=t,o=await to(t,i);return n===((e=l.offset)==null?void 0:e.placement)&&(s=l.arrow)!=null&&s.alignmentOffset?{}:{x:r+o.x,y:a+o.y,data:{...o,placement:n}}}}},xa=function(i){return i===void 0&&(i={}),{name:"shift",options:i,async fn(t){let{x:e,y:s,placement:r}=t,{mainAxis:a=!0,crossAxis:n=!1,limiter:l={fn:A=>{let{x:_,y:L}=A;return{x:_,y:L}}},...o}=Ae(i,t),u={x:e,y:s},d=await _i(t,o),c=Ut(Ot(r)),f=gs(c),m=u[f],p=u[c];if(a){let A=f==="y"?"top":"left",_=f==="y"?"bottom":"right",L=m+d[A],O=m-d[_];m=ms(L,m,O)}if(n){let A=c==="y"?"top":"left",_=c==="y"?"bottom":"right",L=p+d[A],O=p-d[_];p=ms(L,p,O)}let w=l.fn({...t,[f]:m,[c]:p});return{...w,data:{x:w.x-e,y:w.y-s,enabled:{[f]:a,[c]:n}}}}}};var Aa=function(i){return i===void 0&&(i={}),{name:"size",options:i,async fn(t){var e,s;let{placement:r,rects:a,platform:n,elements:l}=t,{apply:o=()=>{},...u}=Ae(i,t),d=await _i(t,u),c=Ot(r),f=Se(r),m=Ut(r)==="y",{width:p,height:w}=a.floating,A,_;c==="top"||c==="bottom"?(A=c,_=f===(await(n.isRTL==null?void 0:n.isRTL(l.floating))?"start":"end")?"left":"right"):(_=c,A=f==="end"?"top":"bottom");let L=w-d.top-d.bottom,O=p-d.left-d.right,E=Ht(w-d[A],L),b=Ht(p-d[_],O),q=!t.middlewareData.shift,S=E,N=b;if((e=t.middlewareData.shift)!=null&&e.enabled.x&&(N=O),(s=t.middlewareData.shift)!=null&&s.enabled.y&&(S=L),q&&!f){let v=ft(d.left,0),M=ft(d.right,0),k=ft(d.top,0),C=ft(d.bottom,0);m?N=p-2*(v!==0||M!==0?v+M:ft(d.left,d.right)):S=w-2*(k!==0||C!==0?k+C:ft(d.top,d.bottom))}await o({...t,availableWidth:N,availableHeight:S});let F=await n.getDimensions(l.floating);return p!==F.width||w!==F.height?{reset:{rects:!0}}:{}}}};function ki(){return typeof window<"u"}function re(i){return Ea(i)?(i.nodeName||"").toLowerCase():"#document"}function pt(i){var t;return(i==null||(t=i.ownerDocument)==null?void 0:t.defaultView)||window}function yt(i){var t;return(t=(Ea(i)?i.ownerDocument:i.document)||window.document)==null?void 0:t.documentElement}function Ea(i){return ki()?i instanceof Node||i instanceof pt(i).Node:!1}function mt(i){return ki()?i instanceof Element||i instanceof pt(i).Element:!1}function wt(i){return ki()?i instanceof HTMLElement||i instanceof pt(i).HTMLElement:!1}function Sa(i){return!ki()||typeof ShadowRoot>"u"?!1:i instanceof ShadowRoot||i instanceof pt(i).ShadowRoot}function _e(i){let{overflow:t,overflowX:e,overflowY:s,display:r}=gt(i);return/auto|scroll|overlay|hidden|clip/.test(t+s+e)&&!["inline","contents"].includes(r)}function _a(i){return["table","td","th"].includes(re(i))}function Ue(i){return[":popover-open",":modal"].some(t=>{try{return i.matches(t)}catch{return!1}})}function Ci(i){let t=Ti(),e=mt(i)?gt(i):i;return["transform","translate","scale","rotate","perspective"].some(s=>e[s]?e[s]!=="none":!1)||(e.containerType?e.containerType!=="normal":!1)||!t&&(e.backdropFilter?e.backdropFilter!=="none":!1)||!t&&(e.filter?e.filter!=="none":!1)||["transform","translate","scale","rotate","perspective","filter"].some(s=>(e.willChange||"").includes(s))||["paint","layout","strict","content"].some(s=>(e.contain||"").includes(s))}function ka(i){let t=Nt(i);for(;wt(t)&&!ae(t);){if(Ci(t))return t;if(Ue(t))return null;t=Nt(t)}return null}function Ti(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function ae(i){return["html","body","#document"].includes(re(i))}function gt(i){return pt(i).getComputedStyle(i)}function Ye(i){return mt(i)?{scrollLeft:i.scrollLeft,scrollTop:i.scrollTop}:{scrollLeft:i.scrollX,scrollTop:i.scrollY}}function Nt(i){if(re(i)==="html")return i;let t=i.assignedSlot||i.parentNode||Sa(i)&&i.host||yt(i);return Sa(t)?t.host:t}function Ca(i){let t=Nt(i);return ae(t)?i.ownerDocument?i.ownerDocument.body:i.body:wt(t)&&_e(t)?t:Ca(t)}function Ee(i,t,e){var s;t===void 0&&(t=[]),e===void 0&&(e=!0);let r=Ca(i),a=r===((s=i.ownerDocument)==null?void 0:s.body),n=pt(r);if(a){let l=Di(n);return t.concat(n,n.visualViewport||[],_e(r)?r:[],l&&e?Ee(l):[])}return t.concat(r,Ee(r,[],e))}function Di(i){return i.parent&&Object.getPrototypeOf(i.parent)?i.frameElement:null}function Ia(i){let t=gt(i),e=parseFloat(t.width)||0,s=parseFloat(t.height)||0,r=wt(i),a=r?i.offsetWidth:e,n=r?i.offsetHeight:s,l=We(e)!==a||We(s)!==n;return l&&(e=a,s=n),{width:e,height:s,$:l}}function xs(i){return mt(i)?i:i.contextElement}function ke(i){let t=xs(i);if(!wt(t))return vt(1);let e=t.getBoundingClientRect(),{width:s,height:r,$:a}=Ia(t),n=(a?We(e.width):e.width)/s,l=(a?We(e.height):e.height)/r;return(!n||!Number.isFinite(n))&&(n=1),(!l||!Number.isFinite(l))&&(l=1),{x:n,y:l}}var eo=vt(0);function La(i){let t=pt(i);return!Ti()||!t.visualViewport?eo:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function io(i,t,e){return t===void 0&&(t=!1),!e||t&&e!==pt(i)?!1:t}function ne(i,t,e,s){t===void 0&&(t=!1),e===void 0&&(e=!1);let r=i.getBoundingClientRect(),a=xs(i),n=vt(1);t&&(s?mt(s)&&(n=ke(s)):n=ke(i));let l=io(a,e,s)?La(a):vt(0),o=(r.left+l.x)/n.x,u=(r.top+l.y)/n.y,d=r.width/n.x,c=r.height/n.y;if(a){let f=pt(a),m=s&&mt(s)?pt(s):s,p=f,w=Di(p);for(;w&&s&&m!==p;){let A=ke(w),_=w.getBoundingClientRect(),L=gt(w),O=_.left+(w.clientLeft+parseFloat(L.paddingLeft))*A.x,E=_.top+(w.clientTop+parseFloat(L.paddingTop))*A.y;o*=A.x,u*=A.y,d*=A.x,c*=A.y,o+=O,u+=E,p=pt(w),w=Di(p)}}return se({width:d,height:c,x:o,y:u})}function As(i,t){let e=Ye(i).scrollLeft;return t?t.left+e:ne(yt(i)).left+e}function Ma(i,t,e){e===void 0&&(e=!1);let s=i.getBoundingClientRect(),r=s.left+t.scrollLeft-(e?0:As(i,s)),a=s.top+t.scrollTop;return{x:r,y:a}}function so(i){let{elements:t,rect:e,offsetParent:s,strategy:r}=i,a=r==="fixed",n=yt(s),l=t?Ue(t.floating):!1;if(s===n||l&&a)return e;let o={scrollLeft:0,scrollTop:0},u=vt(1),d=vt(0),c=wt(s);if((c||!c&&!a)&&((re(s)!=="body"||_e(n))&&(o=Ye(s)),wt(s))){let m=ne(s);u=ke(s),d.x=m.x+s.clientLeft,d.y=m.y+s.clientTop}let f=n&&!c&&!a?Ma(n,o,!0):vt(0);return{width:e.width*u.x,height:e.height*u.y,x:e.x*u.x-o.scrollLeft*u.x+d.x+f.x,y:e.y*u.y-o.scrollTop*u.y+d.y+f.y}}function ro(i){return Array.from(i.getClientRects())}function ao(i){let t=yt(i),e=Ye(i),s=i.ownerDocument.body,r=ft(t.scrollWidth,t.clientWidth,s.scrollWidth,s.clientWidth),a=ft(t.scrollHeight,t.clientHeight,s.scrollHeight,s.clientHeight),n=-e.scrollLeft+As(i),l=-e.scrollTop;return gt(s).direction==="rtl"&&(n+=ft(t.clientWidth,s.clientWidth)-r),{width:r,height:a,x:n,y:l}}function no(i,t){let e=pt(i),s=yt(i),r=e.visualViewport,a=s.clientWidth,n=s.clientHeight,l=0,o=0;if(r){a=r.width,n=r.height;let u=Ti();(!u||u&&t==="fixed")&&(l=r.offsetLeft,o=r.offsetTop)}return{width:a,height:n,x:l,y:o}}function oo(i,t){let e=ne(i,!0,t==="fixed"),s=e.top+i.clientTop,r=e.left+i.clientLeft,a=wt(i)?ke(i):vt(1),n=i.clientWidth*a.x,l=i.clientHeight*a.y,o=r*a.x,u=s*a.y;return{width:n,height:l,x:o,y:u}}function Ta(i,t,e){let s;if(t==="viewport")s=no(i,e);else if(t==="document")s=ao(yt(i));else if(mt(t))s=oo(t,e);else{let r=La(i);s={x:t.x-r.x,y:t.y-r.y,width:t.width,height:t.height}}return se(s)}function Pa(i,t){let e=Nt(i);return e===t||!mt(e)||ae(e)?!1:gt(e).position==="fixed"||Pa(e,t)}function lo(i,t){let e=t.get(i);if(e)return e;let s=Ee(i,[],!1).filter(l=>mt(l)&&re(l)!=="body"),r=null,a=gt(i).position==="fixed",n=a?Nt(i):i;for(;mt(n)&&!ae(n);){let l=gt(n),o=Ci(n);!o&&l.position==="fixed"&&(r=null),(a?!o&&!r:!o&&l.position==="static"&&!!r&&["absolute","fixed"].includes(r.position)||_e(n)&&!o&&Pa(i,n))?s=s.filter(d=>d!==n):r=l,n=Nt(n)}return t.set(i,s),s}function uo(i){let{element:t,boundary:e,rootBoundary:s,strategy:r}=i,n=[...e==="clippingAncestors"?Ue(t)?[]:lo(t,this._c):[].concat(e),s],l=n[0],o=n.reduce((u,d)=>{let c=Ta(t,d,r);return u.top=ft(c.top,u.top),u.right=Ht(c.right,u.right),u.bottom=Ht(c.bottom,u.bottom),u.left=ft(c.left,u.left),u},Ta(t,l,r));return{width:o.right-o.left,height:o.bottom-o.top,x:o.left,y:o.top}}function ho(i){let{width:t,height:e}=Ia(i);return{width:t,height:e}}function co(i,t,e){let s=wt(t),r=yt(t),a=e==="fixed",n=ne(i,!0,a,t),l={scrollLeft:0,scrollTop:0},o=vt(0);if(s||!s&&!a)if((re(t)!=="body"||_e(r))&&(l=Ye(t)),s){let f=ne(t,!0,a,t);o.x=f.x+t.clientLeft,o.y=f.y+t.clientTop}else r&&(o.x=As(r));let u=r&&!s&&!a?Ma(r,l):vt(0),d=n.left+l.scrollLeft-o.x-u.x,c=n.top+l.scrollTop-o.y-u.y;return{x:d,y:c,width:n.width,height:n.height}}function ws(i){return gt(i).position==="static"}function Da(i,t){if(!wt(i)||gt(i).position==="fixed")return null;if(t)return t(i);let e=i.offsetParent;return yt(i)===e&&(e=e.ownerDocument.body),e}function Oa(i,t){let e=pt(i);if(Ue(i))return e;if(!wt(i)){let r=Nt(i);for(;r&&!ae(r);){if(mt(r)&&!ws(r))return r;r=Nt(r)}return e}let s=Da(i,t);for(;s&&_a(s)&&ws(s);)s=Da(s,t);return s&&ae(s)&&ws(s)&&!Ci(s)?e:s||ka(i)||e}var fo=async function(i){let t=this.getOffsetParent||Oa,e=this.getDimensions,s=await e(i.floating);return{reference:co(i.reference,await t(i.floating),i.strategy),floating:{x:0,y:0,width:s.width,height:s.height}}};function po(i){return gt(i).direction==="rtl"}var bo={convertOffsetParentRelativeRectToViewportRelativeRect:so,getDocumentElement:yt,getClippingRect:uo,getOffsetParent:Oa,getElementRects:fo,getClientRects:ro,getDimensions:ho,getScale:ke,isElement:mt,isRTL:po};function Na(i,t){return i.x===t.x&&i.y===t.y&&i.width===t.width&&i.height===t.height}function mo(i,t){let e=null,s,r=yt(i);function a(){var l;clearTimeout(s),(l=e)==null||l.disconnect(),e=null}function n(l,o){l===void 0&&(l=!1),o===void 0&&(o=1),a();let u=i.getBoundingClientRect(),{left:d,top:c,width:f,height:m}=u;if(l||t(),!f||!m)return;let p=He(c),w=He(r.clientWidth-(d+f)),A=He(r.clientHeight-(c+m)),_=He(d),O={rootMargin:-p+"px "+-w+"px "+-A+"px "+-_+"px",threshold:ft(0,Ht(1,o))||1},E=!0;function b(q){let S=q[0].intersectionRatio;if(S!==o){if(!E)return n();S?n(!1,S):s=setTimeout(()=>{n(!1,1e-7)},1e3)}S===1&&!Na(u,i.getBoundingClientRect())&&n(),E=!1}try{e=new IntersectionObserver(b,{...O,root:r.ownerDocument})}catch{e=new IntersectionObserver(b,O)}e.observe(i)}return n(!0),a}function Ra(i,t,e,s){s===void 0&&(s={});let{ancestorScroll:r=!0,ancestorResize:a=!0,elementResize:n=typeof ResizeObserver=="function",layoutShift:l=typeof IntersectionObserver=="function",animationFrame:o=!1}=s,u=xs(i),d=r||a?[...u?Ee(u):[],...Ee(t)]:[];d.forEach(_=>{r&&_.addEventListener("scroll",e,{passive:!0}),a&&_.addEventListener("resize",e)});let c=u&&l?mo(u,e):null,f=-1,m=null;n&&(m=new ResizeObserver(_=>{let[L]=_;L&&L.target===u&&m&&(m.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var O;(O=m)==null||O.observe(t)})),e()}),u&&!o&&m.observe(u),m.observe(t));let p,w=o?ne(i):null;o&&A();function A(){let _=ne(i);w&&!Na(w,_)&&e(),w=_,p=requestAnimationFrame(A)}return e(),()=>{var _;d.forEach(L=>{r&&L.removeEventListener("scroll",e),a&&L.removeEventListener("resize",e)}),c?.(),(_=m)==null||_.disconnect(),m=null,o&&cancelAnimationFrame(p)}}var Fa=wa;var Va=xa,qa=ya,$a=Aa;var Ba=(i,t,e)=>{let s=new Map,r={platform:bo,...e},a={...r.platform,_c:s};return va(i,t,{...r,platform:a})};var Wa=!(CSS.supports?.("selector(:popover-open)")??!1),it=class extends X{boot({options:t}){if(t({reference:null,auto:!0,position:"bottom start",gap:"5",offset:"0",matchWidth:!1,crossAxis:!1,scrollY:!0}),this.options().reference===null||this.options().position===null)return;let[e,s]=yo(this.el,{scrollY:this.options().scrollY}),r=go(this.el,this.options().reference,e,{position:this.options().position,gap:this.options().gap,offset:this.options().offset,matchWidth:this.options().matchWidth,crossAxis:this.options().crossAxis,scrollY:this.options().scrollY}),a=()=>{};this.reposition=(...n)=>{this.options().auto?a=Ra(this.options().reference,this.el,r):r(null,...n)},this.cleanup=()=>{a(),s()}}};function go(i,t,e,{position:s,offset:r,gap:a,matchWidth:n,crossAxis:l,scrollY:o}){let u=window.getComputedStyle(i).maxHeight;return u=u==="none"?null:parseFloat(u),(d,c,f)=>{Ba(t,i,{strategy:Wa?"fixed":"absolute",placement:vo(s,i),middleware:[Fa({mainAxis:Number(a),alignmentAxis:Number(r)}),qa(),Va({padding:5,crossAxis:l}),$a({padding:5,apply({rects:m,elements:p,availableHeight:w}){n&&Object.assign(p.floating.style,{width:`${m.reference.width}px`});let A=u;A===null&&(A=o?p.floating.scrollHeight:p.floating.offsetHeight),p.floating.style.maxHeight=w>A?"":`${w}px`}})]}).then(({x:m,y:p})=>{e(c||m,f||p)})}}function vo(i,t){let e=i.split(" ");switch(e[0]){case"start":e[0]=bt(t)?"right":"left";break;case"end":e[0]=bt(t)?"left":"right";break}return e.join("-")}function yo(i,{scrollY:t=!0}){let e=(n,l)=>{Object.assign(i.style,{position:Wa?"fixed":"absolute",overflowY:t?"auto":"hidden",left:`${n}px`,top:`${l}px`,right:"auto",bottom:"auto"})},s,r,a=new MutationObserver(()=>e(s,r));return[(n,l)=>{s=n,r=l,a.disconnect(),e(s,r),a.observe(i,{attributeFilter:["style"]})},()=>{a.disconnect()}]}var Ii=class extends I{boot(){if(this.querySelectorAll("[data-appended]").forEach(t=>t.remove()),!this.querySelector("template")){let t=document.createElement("template");t.setAttribute("name","placeholder"),t.innerHTML=""+this.innerHTML+"",this.innerHTML="",this.appendChild(t)}if(!this.querySelector('template[name="options"]')){let t=document.createElement("template");t.setAttribute("name","options"),t.innerHTML="
",this.appendChild(t)}if(!this.querySelector('template[name="option"]')){let t=document.createElement("template");t.setAttribute("name","option"),t.innerHTML="
",this.appendChild(t)}this.templates={placeholder:this.querySelector('template[name="placeholder"]'),overflow:this.querySelector('template[name="overflow"]'),options:this.querySelector('template[name="options"]'),option:this.querySelector('template[name="option"]')},this.templates.options.elsByValue=new Map,this.max=this.templates.overflow?.getAttribute("max")?this.templates.overflow.getAttribute("max"):1/0,this.selecteds=new Map,this.picker=this.closest("ui-select,ui-pillbox"),this.multiple=this.picker.hasAttribute("multiple")}mount(){queueMicrotask(()=>{this.picker._selectable.onInitAndChange(()=>{this.render(!0)});let t=this.picker.list();t&&new MutationObserver(e=>{queueMicrotask(()=>this.render())}).observe(t,{childList:!0})})}render(t){if(this.multiple){let e=this.picker.value,s=Array.from(this.selecteds.keys()).filter(n=>!e.includes(n)),r=e.filter(n=>!this.selecteds.has(n));s.forEach(n=>this.selecteds.delete(n));let a=new Map;for(let n of r){let l=this.picker._selectable.findByValue(n);if(!l){if(t)return setTimeout(()=>this.render());throw`Could not find option for value "${n}"`}a.set(n,l)}a.forEach((n,l)=>this.selecteds.set(l,n)),this.templates.placeholder?.clearPlaceholder?.(),this.templates.overflow?.clearOverflow?.(),this.templates.options?.clearOptions?.(),this.selecteds.size>0?this.renderOptions({hasOverflowed:n=>{if(this.max==="auto"){let l=!1;if(this.renderOverflow(this.selecteds.size,this.selecteds.size-n),this.clientWidthparseInt(this.max)},renderOverflow:n=>{this.templates?.overflow?.getAttribute("mode")!=="append"&&this.templates.options?.clearOptions?.(),this.renderOverflow(this.selecteds.size,n)}}):this.renderPlaceholder()}else{let e=this.picker.value;if(Array.from(this.selecteds.keys()).includes(e))return;this.selecteds.clear();let s=this.picker._selectable.findByValue(e);if(s)this.selecteds.set(e,s);else if(!["",null,void 0].includes(e)){if(t)return setTimeout(()=>{this.render()});throw`Could not find option for value "${e}"`}this.templates.placeholder?.clearPlaceholder?.(),this.templates.option?.clearOption?.(),this.selecteds.size>0?this.renderOption():this.renderPlaceholder()}}renderOptions({hasOverflowed:t,renderOverflow:e}){let s=document.createElement("div");s.style.display="contents";let r=ze(this.templates.options,{default:s});this.templates.options.after(r),this.templates.options.clearOptions=()=>{r.remove(),this.templates.options.clearOptions=()=>{}};let a=0,n=!1;for(let[o,u]of this.selecteds){let d=new DocumentFragment;d.append(...u.el.cloneNode(!0).childNodes);let c=ze(this.templates.option,{text:u.getSelectedLabel()??u.getLabel(),default:u.getSelectedLabel()??d,value:o});if(c.setAttribute("data-value",o),c.setAttribute("data-appended",""),c.deselect=()=>u.deselect(),s.appendChild(c),a++,t(a)){n=!0,s.removeChild(c),a--;break}}let l=new DocumentFragment;l.append(...s.childNodes),s.replaceWith(l),n&&e(this.selecteds.size-a)}renderOption(){for(let[t,e]of this.selecteds){let s=new DocumentFragment;s.append(...e.el.cloneNode(!0).childNodes);let r=ze(this.templates.option,{text:e.getSelectedLabel()??e.getLabel(),default:e.getSelectedLabel()??s,value:t});r.setAttribute("data-value",t),r.setAttribute("data-appended",t),r.deselect=()=>e.deselect(),this.templates.option.after(r),this.templates.option.clearOption=()=>{r.remove(),this.templates.option.clearOption=()=>{}}}}renderPlaceholder(){if(!this.templates.placeholder)return;let t=ze(this.templates.placeholder);t.setAttribute("data-appended",""),this.templates.placeholder.after(t),this.templates.placeholder.clearPlaceholder=()=>{t.remove(),this.templates.placeholder.clearPlaceholder=()=>{}}}renderOverflow(t,e){if(!this.templates.overflow)return;let s=ze(this.templates.overflow,{remainder:e,count:this.selecteds.size});s.setAttribute("data-appended",""),this.templates.overflow.after(s),this.templates.overflow.clearOverflow=()=>{s.remove(),this.templates.placeholder.clearOverflow=()=>{}}}},Li=class extends I{boot(){this.addEventListener("click",t=>{t.stopPropagation();let e=this.closest("[data-value]")?.getAttribute("data-value");if(e===void 0)return;let s=this.closest("ui-pillbox")._selectable,r=s.selectableByValue(e);r?r.deselect():s.deselectByValue(e)})}};function ze(i,t={}){let e=i.content.cloneNode(!0);return Object.entries(t).forEach(([s,r])=>{(s==="default"?e.querySelectorAll("slot:not([name])"):e.querySelectorAll(`slot[name="${s}"]`)).forEach(n=>n.replaceWith(typeof r=="string"?document.createTextNode(r):r))}),e.firstElementChild}var ut=class extends kt{groupOfType=Y;boot({options:t}){t({multiple:!1}),this.state=this.options().multiple?new Set:null,this.onChanges=[]}onInitAndChange(t){t(),this.onChanges.push(t)}onChange(t){this.onChanges.push(t)}changed(t,e=!1){if(t.ungrouped)return;let s=t.value,r=t.isSelected(),a=this.options().multiple;r?a?this.state.add(s):this.state=s:a?this.state.delete(s):this.state=null,e||this.onChanges.forEach(n=>n(t))}deselectByValue(t,e=!1){this.options().multiple?this.state.delete(t):this.state=null,e||this.onChanges.forEach(s=>s())}getState(){return this.options().multiple?Array.from(this.state):this.state}hasValue(t){return this.options().multiple?this.state.has(t):this.state===t}setState(t){(t===null||t==="")&&(t=this.options().multiple?[]:""),this.options().multiple?(Array.isArray(t)||(t=[t]),t=t.map(s=>s+"")):t=t+"",this.state=this.options().multiple?new Set(t):t;let e=this.options().multiple?t:[t];this.walker().each(s=>{let r=s.use(Y);if(r.ungrouped)return;let a=e.includes(r.value);a&&!r.isSelected()?r.surgicallySelect():!a&&r.isSelected()&&r.surgicallyDeselect()}),this.onChanges.forEach(s=>s())}selected(){return this.walker().find(t=>t.use(Y).isSelected()).use(Y)}selecteds(){return this.walker().filter(t=>t.use(Y).isSelected()).map(t=>t.use(Y))}selectFirst(){this.walker().first()?.use(Y).select()}selectAll(){this.walker().filter(t=>!t.use(Y).isSelected()).map(t=>t.use(Y).select())}deselectAll(){this.walker().filter(t=>t.use(Y).isSelected()).map(t=>t.use(Y).deselect())}allAreSelected(){let t=this.walker().filter(e=>!0);return t.length>0&&this.walker().filter(e=>e.use(Y).isSelected()).length===t.length}noneAreSelected(){return this.state===null||this.state?.size===0}isEmpty(){return this.noneAreSelected()}isNotEmpty(){return!this.isEmpty()}selectableByValue(t){return this.walker().find(e=>e.use(Y).value===t)?.use(Y)}deselectOthers(t){this.walker().each(e=>{e!==t&&e.use(Y).surgicallyDeselect()})}selectedTextValue(){return this.options().multiple?Array.from(this.state).map(t=>this.convertValueStringToElementText(t)).join(", "):this.convertValueStringToElementText(this.state)}convertValueStringToElementText(t){let e=this.findByValue(t);return e?e.selectedLabel||e.label||e.value:t}findByValue(t){return this.selecteds().find(e=>e.value===t)}walker(){return tt(this.el,(t,{skip:e,reject:s})=>{if(t[this.constructor.name]&&t!==this.el)return s();if(!t[this.groupOfType.name]||t.mixins.get(this.groupOfType.name).ungrouped)return e()})}},Y=class extends X{boot({options:t}){this.groupedByType=ut,t({ungrouped:!1,togglable:!1,value:void 0,label:void 0,selectedLabel:void 0,selectedInitially:!1,dataAttr:"data-selected",ariaAttr:"aria-selected"}),this.ungrouped=this.options().ungrouped,this.value=this.options().value===void 0?this.el.value:this.options().value,this.value=this.value+"",this.label=this.options().label,this.selectedLabel=this.options().selectedLabel;let e=this.options().selectedInitially;this.onSelects=[],this.onUnselects=[],this.onChanges=[];let s=()=>{this.group()&&this.group().hasValue(this.value)&&(e=!0),this.multiple=this.hasGroup()?this.group().options().multiple:!1,this.toggleable=this.options().toggleable||this.multiple,e?this.select(!0):(this.state=e,this.surgicallyDeselect(!0))};s(),!this.hasGroup()&&!this.el.isConnected&&queueMicrotask(()=>{this.hasGroup()&&s()})}mount(){this.el.hasAttribute(this.options().ariaAttr)||h(this.el,this.options().ariaAttr,"false")}onInitAndChange(t){t(),this.onChanges.push(t)}onChange(t){this.onChanges.push(t)}onSelect(t){this.onSelects.push(t)}onUnselect(t){this.onUnselects.push(t)}setState(t){t?this.select():this.deselect()}getState(){return this.state}press(){this.toggleable?this.toggle():this.select()}trigger(){this.toggleable?this.toggle():this.select()}toggle(){this.isSelected()?this.deselect():this.select()}isSelected(){return this.state}select(t=!1){let e=!this.isSelected();this.toggleable||this.group()?.deselectOthers(this.el),this.state=!0,h(this.el,this.options().ariaAttr,"true"),h(this.el,this.options().dataAttr,""),e&&(t||(this.onSelects.forEach(s=>s()),this.onChanges.forEach(s=>s())),this.group()?.changed(this,t))}surgicallySelect(){let t=!this.isSelected();this.state=!0,h(this.el,this.options().ariaAttr,"true"),h(this.el,this.options().dataAttr,""),t&&(this.onSelects.forEach(e=>e()),this.onChanges.forEach(e=>e()))}deselect(t=!0){let e=this.isSelected();this.state=!1,h(this.el,this.options().ariaAttr,"false"),x(this.el,this.options().dataAttr),e&&(this.onUnselects.forEach(s=>s()),this.onChanges.forEach(s=>s()),t&&this.group()?.changed(this))}surgicallyDeselect(t=!1){let e=this.isSelected();this.state=!1,h(this.el,this.options().ariaAttr,"false"),x(this.el,this.options().dataAttr),e&&!t&&(this.onUnselects.forEach(s=>s()),this.onChanges.forEach(s=>s()))}getValue(){return this.value}getLabel(){return this.label}getSelectedLabel(){return this.selectedLabel}};var Q=class extends X{boot({options:t}){t({name:void 0,value:void 0,includeWhenEmpty:!0,shouldUpdateValue:!0}),this.name=this.options().name,this.value=this.options().value===void 0?this.el.value:this.options().value,this.state=!1,this.observer=new MutationObserver(()=>{this.renderHiddenInputs()}),this.observer.observe(this.el,{childList:!0})}mount(){this.renderHiddenInputs()}update(t){this.options().shouldUpdateValue?this.value=t:this.state=!!t,this.renderHiddenInputs()}valueIsEmpty(){return this.value===void 0||this.value===null||this.value===""}renderHiddenInputs(){if(this.observer.disconnect(),!this.name)return;let t=this.el.children,e=[];for(let r=0;rr.remove());let s;this.options().shouldUpdateValue?s=!this.valueIsEmpty()||this.options().includeWhenEmpty?this.generateInputs(this.name,this.value):[]:s=this.state||this.options().includeWhenEmpty?this.generateInputs(this.name,this.value):[],s.forEach(r=>{this.el.append(r)}),this.observer.observe(this.el,{childList:!0})}generateInputs(t,e,s=[]){if(this.isObjectOrArray(e))for(let r in e)s=s.concat(this.generateInputs(`${t}[${r}]`,e[r]));else{let r=document.createElement("input");return r.setAttribute("type","hidden"),r.setAttribute("name",t),r.setAttribute("value",e===null?"":""+e),r.setAttribute("data-flux-hidden",""),r.setAttribute("data-appended",""),[r]}return s}isObjectOrArray(t){return typeof t=="object"&&t!==null}submitEnclosingForm(){let t=this.getAssociatedForm();t&&t.requestSubmit()}getAssociatedForm(){let t=this.el.getAttribute("form");return t?document.getElementById(t)||null:this.el.closest("form")}};var ce=class extends Z{boot(){let t=this.list();this._controllable=new U(this,{bubbles:!0}),this._selectable=new ut(t,{multiple:this.hasAttribute("multiple")}),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this._selectable.getState()}),this._controllable.initial(s=>s&&this._selectable.setState(s)),this._controllable.getter(()=>this._selectable.getState());let e=G();this._controllable.setter(e(s=>{this._selectable.setState(s)})),this._selectable.onChange(e(()=>{this._controllable.dispatch(),this.dispatchEvent(new CustomEvent("select",{bubbles:!1}))})),this._selectable.onInitAndChange(()=>{this._submittable.update(this._selectable.getState())})}mount(){this._disableable=new V(this),queueMicrotask(()=>{this._submittable.update(this._selectable.getState())});let t=this.input(),e=this.button(),s=this.list(),r=this.hasAttribute("multiple"),a=this.hasAttribute("autocomplete"),n=this.hasAttribute("autocomplete")&&this.getAttribute("autocomplete").trim().split(" ").includes("strict"),l=this.querySelector("ui-options")||this,o=Ss(l,"options",r);this._activatable=new Mt(l,{filter:"data-hidden"}),!t&&!e&&this._disableable.onInitAndChange(p=>{p?this.removeAttribute("tabindex"):this.setAttribute("tabindex","0")}),this.hasAttribute("filter")&&this.getAttribute("filter")!=="manual"&&(this._filterable=new ie(s),this._filterable.onChange(()=>{this._activatable.clearActive(),this._filterable.hasResults()&&this._activatable.activateFirst()}),this.addEventListener("open",()=>{this._filterable&&this._filterable.filter("")}),this.addEventListener("close",()=>{this._filterable&&requestAnimationFrame(()=>{this._filterable.filter("")})}));let u=this.querySelector("[popover]:not(ui-tooltip > [popover])"),d=u?.querySelector('input:not([type="hidden"])'),c=this.querySelector('input:not([type="hidden"])');c=u?.contains(c)?null:c;let f=this.querySelector("button,ui-button");if(f=u?.contains(f)?null:f,!(u||c))xt(this,this._activatable),At(this,this,this._activatable),Ha(this,this._activatable,this._selectable);else if(!u&&c){let p=c;this._disableable.onInitAndChange(w=>{w?p&&h(p,"disabled",""):p&&x(p,"disabled")}),Ie(this,p,this._selectable,this._popoverable),Ha(p,this._activatable,this._selectable),Ua(a,n,this,p,this._selectable,this._popoverable,this._filterable),De(p),Te(p),this._filterable&&Ce(s,p,this._filterable),Gt(p,this._activatable,this._selectable),xt(p,this._activatable),At(this,p,this._activatable),Yt(this,this._activatable)}else if(u&&c){let p=c;h(p,"role","combobox"),h(p,"aria-controls",o);let w=u;this._popoverable=new rt(w),this._anchorable=new it(w,{reference:p,matchWidth:!0,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0}),Ua(a,n,this,p,this._selectable,this._popoverable,this._filterable),this._disableable.onInitAndChange(A=>{A?p&&h(p,"disabled",""):p&&x(p,"disabled")}),this.querySelectorAll("button,ui-button").forEach(A=>{w.contains(A)||(h(A,"tabindex","-1"),h(A,"aria-controls",o),h(A,"aria-haspopup","listbox"),zt(A,this._popoverable),y(A,"click",()=>{this._popoverable.toggle(),wi()||p.focus()}))}),Ie(this,p,this._selectable,this._popoverable),oe(this,p,w,this._popoverable,this._anchorable),he(this,this._popoverable,[p]),zt(p,this._popoverable),De(p),Te(p),this._filterable&&Ce(s,p,this._filterable),Gt(p,this._activatable,this._selectable),_s(p,this._popoverable),Ft(p,this._popoverable,this._activatable,this._selectable),Es(p,this._popoverable),Rt(this,this._popoverable),xt(p,this._activatable),At(this,p,this._activatable),Yt(this,this._activatable),le(this._popoverable,this._activatable,this._selectable),ue(this,this._selectable,this._popoverable,r)}else if(u&&d){let p=f,w=d,A=u;h(p,"role","combobox"),h(w,"role","combobox"),h(p,"aria-controls",o),this._disableable.onInitAndChange(_=>{_?(p&&h(p,"disabled",""),w&&h(w,"disabled","")):(p&&x(p,"disabled"),w&&x(w,"disabled"))}),this._popoverable=new rt(A),this._anchorable=new it(A,{reference:p,matchWidth:!0,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0,scrollY:!1}),De(w),Te(w),this._filterable&&Ce(s,w,this._filterable),Gt(w,this._activatable,this._selectable),Mi(w,this._popoverable),oe(this,p,A,this._popoverable,this._anchorable),he(this,this._popoverable,[w]),zt(p,this._popoverable),Ie(this,w,this._selectable,this._popoverable),Ft(p,this._popoverable,this._activatable,this._selectable),Ge(p,this._popoverable),Rt(this,this._popoverable),xt(w,this._activatable),Kt(p,this._activatable,this._popoverable),At(this,w,this._activatable),Yt(this,this._activatable),le(this._popoverable,this._activatable,this._selectable),ue(this,this._selectable,this._popoverable,r)}else if(u){let p=f,w=u;h(p,"role","combobox"),h(p,"aria-controls",o),this._disableable.onInitAndChange(A=>{A?(p&&h(p,"disabled",""),t&&h(t,"disabled","")):(p&&x(p,"disabled"),t&&x(t,"disabled"))}),this._popoverable=new rt(w),this._anchorable=new it(w,{reference:p,matchWidth:!0,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0}),oe(this,p,w,this._popoverable,this._anchorable),he(this,this._popoverable),zt(p,this._popoverable),Ft(p,this._popoverable,this._activatable,this._selectable),Ge(p,this._popoverable),Gt(p,this._activatable,this._selectable),Rt(this,this._popoverable),xt(p,this._activatable),Kt(p,this._activatable,this._popoverable),At(this,p,this._activatable),Yt(this,this._activatable),le(this._popoverable,this._activatable,this._selectable),ue(this,this._selectable,this._popoverable,r)}new MutationObserver(()=>{requestAnimationFrame(()=>{if(!this._popoverable||this._popoverable.getState()){let p=this._selectable.selecteds().find(w=>!w.el._disableable.isDisabled())?.el;this._activatable.activateSelectedOrFirst(p)}else this._activatable.clearActive()})}).observe(s,{childList:!0})}unmount(){if(this._popoverable?.getState()){let{unlock:t}=ot();t()}}trigger(){return this.button()||this.input()}button(){return Array.from(this.querySelectorAll("button,ui-button")).find(t=>t.nextElementSibling?.matches("[popover]"))||null}input(){return this.querySelector('input:not([type="hidden"])')}list(){return this.querySelector("ui-options")||this}clear(){this._selectable.setState(null),this.dispatchEvent(new CustomEvent("clear",{bubbles:!1}))}open(){this._popoverable.setState(!0)}close(){this._popoverable.setState(!1)}deselectLast(){!this.hasAttribute("multiple")&&this.value!==null&&(this.value=null,this.dispatchEvent(new Event("input",{bubbles:!1})),this.dispatchEvent(new Event("change",{bubbles:!1}))),this.hasAttribute("multiple")&&this.value.length!==0&&(this.value=this.value.slice(0,-1),this.dispatchEvent(new Event("input",{bubbles:!1})),this.dispatchEvent(new Event("change",{bubbles:!1})))}};T("selected-remove",Li);T("selected",Ii);T("select",ce);function xt(i,t){y(i,"keydown",e=>{["ArrowDown","ArrowUp"].includes(e.key)&&(e.key==="ArrowDown"?(t.activateNext(),e.preventDefault(),e.stopPropagation()):e.key==="ArrowUp"&&(t.activatePrev(),e.preventDefault(),e.stopPropagation()))})}function Kt(i,t,e){xi(i,s=>{t.activateBySearch(s),e.getState()||t.getActive()?.click()})}function At(i,t,e){y(t,"keydown",s=>{if(s.key==="Enter"){let r=e.getActive();if(s.preventDefault(),s.stopPropagation(),!r||r._disableable?.isDisabled())return;r.click(),i.dispatchEvent(new CustomEvent("interaction",{bubbles:!1,cancelable:!1,detail:{optionEl:r}})),r.hasAttribute("action")&&i.dispatchEvent(new CustomEvent("action",{bubbles:!1,cancelable:!1,detail:{optionEl:r}}))}})}function Yt(i,t,e=!1){y(i,e?"pointerdown":"click",s=>{if(s.target.closest("ui-option, ui-option-create")){let r=s.target.closest("ui-option, ui-option-create");if(r._disableable.isDisabled())return;r._selectable?.trigger(),i.dispatchEvent(new CustomEvent("interaction",{bubbles:!1,cancelable:!1,detail:{optionEl:r}})),r.hasAttribute("action")&&i.dispatchEvent(new CustomEvent("action",{bubbles:!1,cancelable:!1,detail:{optionEl:r}})),s.preventDefault(),s.stopPropagation()}})}function Ha(i,t,e){y(i,"focus",()=>{let s=e.selecteds().find(r=>!r.el._disableable.isDisabled())?.el;t.activateSelectedOrFirst(s)}),y(i,"blur",()=>{t.clearActive()})}function Ss(i,t){let e=K(i,"options");return h(i,"role","listbox"),h(i,"aria-multiselectable",t?"true":"false"),e}function zt(i,t){h(i,"aria-haspopup","listbox");let e=()=>{h(i,"aria-expanded",t.getState()?"true":"false"),t.getState()?h(i,"data-open",""):x(i,"data-open","")};t.onChange(()=>{e()}),e()}function oe(i,t,e,s,r){let a=()=>{Array.from([i,e]).forEach(n=>{s.getState()?h(n,"data-open",""):x(n,"data-open","")}),s.getState()?r.reposition():r.cleanup()};s.onChange(()=>a()),a(),s.onChange(()=>{s.getState()?i.dispatchEvent(new Event("open",{bubbles:!1,cancelable:!1})):i.dispatchEvent(new Event("close",{bubbles:!1,cancelable:!1}))})}function le(i,t,e){i.onChange(()=>{if(i.getState()){let s=e.selecteds().find(r=>!r.el._disableable.isDisabled())?.el;setTimeout(()=>{t.activateSelectedOrFirst(s)})}else t.clearActive()})}function Rt(i,t){y(i,"keydown",e=>{e.key==="Escape"&&t.getState()&&(t.setState(!1),e.preventDefault(),e.stopImmediatePropagation())})}function Ft(i,t){y(i,"keydown",e=>{["ArrowDown","ArrowUp"].includes(e.key)&&(e.key==="ArrowDown"||e.key==="ArrowUp")&&(t.getState()||(t.setState(!0),e.preventDefault(),e.stopImmediatePropagation()))})}function Es(i,t){y(i,"click",()=>{t.getState()||(t.setState(!0),i.focus())})}function Ge(i,t){y(i,"click",()=>{t.setState(!t.getState()),i.focus()})}function Mi(i,t){t.onChange(()=>{t.getState()&&!wi()&&setTimeout(()=>i.focus())})}function Ce(i,t,e){y(t,"input",r=>{e.filter(r.target.value)}),new MutationObserver(()=>{requestAnimationFrame(()=>{e.filter(t.value)})}).observe(i,{childList:!0})}function Te(i){y(i,"focus",()=>i.select())}function De(i){y(i,"change",t=>t.stopPropagation()),y(i,"input",t=>t.stopPropagation())}function _s(i,t){y(i,"keydown",e=>{(/^[a-zA-Z0-9]$/.test(e.key)||e.key==="Backspace")&&(t.getState()||t.setState(!0))})}function Ie(i,t,e,s){if(!i.hasAttribute("clear"))return;let a=c=>{t.value!==c&&(t.value=c,t.dispatchEvent(new Event("input",{bubbles:!1})))},n=i.getAttribute("clear"),l=n===""||n.split(" ").includes("action"),o=n===""||n.split(" ").includes("select"),u=n===""||n.split(" ").includes("close"),d=n===""||n.split(" ").includes("esc");n==="none"&&(l=o=u=d=!1),l?i.addEventListener("action",c=>{a("")}):o&&e.onChange(()=>{queueMicrotask(()=>a(""))}),u&&s.onChange(()=>{s.getState()||a("")}),d&&y(t,"keydown",c=>{c.key==="Escape"&&a("")})}function ue(i,t,e,s){let r=!s,a=!s,n=!s;if(i.hasAttribute("close")){let l=i.getAttribute("close");if(r=l==="",a=l.split(" ").includes("action"),n=l.split(" ").includes("select"),l==="none")return}r||a?i.addEventListener("interaction",l=>{let o=l.detail.optionEl;if(!o.hasAttribute("action")){e.setState(!1);return}setTimeout(()=>{if(!o.hasAttribute("data-flux-loading")&&!o.hasAttribute("data-loading")){e.setState(!1);return}let u=new MutationObserver(()=>{requestAnimationFrame(()=>{i.querySelector("input[data-invalid]")||e.setState(!1)}),u.disconnect()});u.observe(o,{attributes:!0,attributeFilter:["data-loading","data-flux-loading"]})},10)}):n&&t.onChange(()=>{e.setState(!1)})}function Gt(i,t,e){t.onChange(()=>{let s=t.getActive();s?h(i,"aria-activedescendant",s.id):x(i,"aria-activedescendant")}),e.onChange(s=>{if(!s)return;let r=s.el;r&&h(i,"aria-activedescendant",r.id)})}function Ua(i,t,e,s,r,a,n){if(!i){h(s,"autocomplete","off"),h(s,"aria-autocomplete","none");return}let l=u=>{s.value!==u&&(s.value=u,s.dispatchEvent(new Event("input",{bubbles:!1})))};h(s,"autocomplete","off"),h(s,"aria-autocomplete","list"),s.value!==""&&r.isEmpty()&&r.setState(s.value);let o=()=>{r.isNotEmpty()?requestAnimationFrame(()=>{l(r.selectedTextValue()),t&&h(s,"data-selected",r.selectedTextValue())}):(l(""),x(s,"data-selected"))};queueMicrotask(()=>{r.isEmpty()&&s.value!==""&&r.setState(s.value),r.onInitAndChange(()=>o())}),e.addEventListener("interaction",u=>{u.detail.optionEl._selectable?.isSelected()&&o()}),t&&a.onChange(()=>{a.getState()||requestAnimationFrame(()=>{l(s.getAttribute("data-selected"))})})}function he(i,t,e=[]){let{lock:s,unlock:r}=ot(t.el,!1,e);t.onChange(()=>{t.getState()?s():r()})}var ks=class extends ce{mount(){this._disableable=new V(this),queueMicrotask(()=>{this._submittable.update(this._selectable.getState())});let t=this.input(),e=this.list(),s=this.hasAttribute("multiple"),r=this.querySelector("ui-pillbox-trigger"),a=this.querySelector("ui-options")||this,n=Ss(a,"options",s);this._activatable=new Mt(a,{filter:"data-hidden"}),this.hasAttribute("filter")&&this.getAttribute("filter")!=="manual"&&(this._filterable=new ie(e),this._filterable.onChange(()=>{this._activatable.clearActive(),this._filterable.hasResults()&&this._activatable.activateFirst()}),this.addEventListener("close",()=>{this._filterable&&this._filterable.filter("")}));let l=this.querySelector("[popover]:not(ui-tooltip > [popover])"),o=l?.querySelector('input:not([type="hidden"])'),u=this.querySelector("ui-selected input");if(!l)throw new Error("Popover element not found");if(o){let c=r,f=o,m=l;h(c,"role","button"),h(f,"aria-autocomplete","list"),h(f,"aria-controls",n),h(f,"role","combobox"),this._disableable.onInitAndChange(p=>{p?(c&&h(c,"disabled",""),f&&h(f,"disabled","")):(c&&x(c,"disabled"),f&&x(f,"disabled"))}),this._popoverable=new rt(m),this._anchorable=new it(m,{reference:c,matchWidth:!0,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0,scrollY:!1}),Gt(f,this._activatable,this._selectable),De(f),Te(f),this._filterable&&Ce(e,f,this._filterable),Mi(f,this._popoverable),oe(this,c,m,this._popoverable,this._anchorable),he(this,this._popoverable,[f]),zt(c,this._popoverable),Ie(this,f,this._selectable,this._popoverable),Ft(c,this._popoverable,this._activatable,this._selectable),Ge(c,this._popoverable),Rt(this,this._popoverable),xt(f,this._activatable),Kt(c,this._activatable,this._popoverable),At(this,f,this._activatable),Yt(this,this._activatable),le(this._popoverable,this._activatable,this._selectable),ue(this,this._selectable,this._popoverable,s),Ya(c)}else if(u){let c=r,f=u,m=l;h(c,"role","button"),h(f,"aria-autocomplete","list"),h(f,"aria-controls",n),h(f,"role","combobox"),this._disableable.onInitAndChange(p=>{p?(c&&h(c,"disabled",""),f&&h(f,"disabled","")):(c&&x(c,"disabled"),f&&x(f,"disabled"))}),this._popoverable=new rt(m,{triggers:[f,c]}),this._anchorable=new it(m,{reference:c,matchWidth:!0,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0}),Gt(f,this._activatable,this._selectable),De(f),Te(f),this._filterable&&Ce(e,f,this._filterable),Mi(f,this._popoverable),oe(this,c,m,this._popoverable,this._anchorable),he(this,this._popoverable,[c]),zt(c,this._popoverable),Ie(this,f,this._selectable,this._popoverable),_s(f,this._popoverable),Ft(f,this._popoverable,this._activatable,this._selectable),Es(c,this._popoverable,f),Rt(this,this._popoverable),xt(f,this._activatable),Kt(c,this._activatable,this._popoverable),At(this,f,this._activatable),Yt(this,this._activatable),le(this._popoverable,this._activatable,this._selectable),ue(this,this._selectable,this._popoverable,s),wo(this,this._selectable,f),xo(this._selectable,f),Ao(this._selectable,f),So(this._popoverable,c,f)}else{let c=r,f=l;h(c,"role","combobox"),h(c,"aria-controls",n),h(c,"aria-autocomplete","none"),this._disableable.onInitAndChange(m=>{m?(c&&h(c,"disabled",""),t&&h(t,"disabled","")):(c&&x(c,"disabled"),t&&x(t,"disabled"))}),this._popoverable=new rt(f),this._anchorable=new it(f,{reference:c,matchWidth:!0,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0}),oe(this,c,f,this._popoverable,this._anchorable),he(this,this._popoverable),zt(c,this._popoverable),Ft(c,this._popoverable,this._activatable,this._selectable),Ge(c,this._popoverable),Gt(c,this._activatable,this._selectable),Rt(this,this._popoverable),xt(c,this._activatable),Kt(c,this._activatable,this._popoverable),At(this,c,this._activatable),Yt(this,this._activatable),le(this._popoverable,this._activatable,this._selectable),ue(this,this._selectable,this._popoverable,s),Ya(c)}new MutationObserver(()=>{requestAnimationFrame(()=>{if(!this._popoverable||this._popoverable.getState()){let c=this._selectable.selecteds().find(f=>!f.el._disableable.isDisabled())?.el;this._activatable.activateSelectedOrFirst(c)}else this._activatable.clearActive()})}).observe(e,{childList:!0})}list(){return this.querySelector("ui-options")||this}},Cs=class extends I{boot(){this.querySelector("input")?h(this,"tabindex","-1"):h(this,"tabindex","0"),this._disableable=new V(this);let t=e=>{e.preventDefault(),e.stopImmediatePropagation()};this._disableable.onInitAndChange(e=>{e?this.addEventListener("click",t,!0):this.removeEventListener("click",t,!0)})}mount(){}};T("pillbox-trigger",Cs);T("pillbox",ks);function Ya(i){y(i,"keydown",t=>{t.key===" "&&(t.preventDefault(),t.stopImmediatePropagation(),i.click())})}function wo(i,t,e){t.onChange(()=>{document.activeElement!==e&&document.activeElement.closest("ui-pillbox")===i&&e.focus()})}function xo(i,t){i.onInitAndChange(()=>{i.noneAreSelected()?h(t,"placeholder",t.getAttribute("data-placeholder")):h(t,"placeholder","")})}function Ao(i,t){y(t,"keydown",e=>{t.value==""&&e.key==="Backspace"&&i.findByValue(i.getState().at(-1))?.deselect()})}function So(i,t,e){y(t,"click",s=>{i.getState()&&(e.focus(),s.preventDefault(),s.stopImmediatePropagation())})}var Ke=class extends I{boot(){h(this,"tabindex","-1"),this.hasAttribute("popover")&&this.addEventListener("lofi-close-popovers",()=>{this.hidePopover()}),h(this,"role","listbox")}mount(){let t=this.closest("ui-autocomplete, ui-combobox, ui-select, ui-pillbox"),e=t?.input();e&&Eo(this,e,t._filterable)}},Ds=class extends I{mount(){let t=this;this._disableable=new V(t,{disableWithParent:!1}),this._disableable.onInitAndChange(r=>{r?h(t,"aria-disabled","true"):x(t,"aria-disabled")});let e=K(t,"option");h(t,"role","option"),this._filterable=new Ct(t,{mirror:this,keep:!!this.closest("ui-option-empty, ui-empty")||this.getAttribute("filter")==="manual"}),this._activatable=new et(t),this.hasAttribute("action")||(this._selectable=new Y(t,{value:this._pendingValue??this.getValue(),label:this.getLabel(),selectedLabel:this.getSelectedLabel(),selectedInitially:this.hasAttribute("selected")})),new MutationObserver(r=>{r.forEach(a=>{a.attributeName==="selected"&&(this.hasAttribute("selected")?this._selectable.setState(!0):this._selectable.setState(!1)),a.attributeName==="value"&&this._selectable&&(this._selectable.value=this.getValue())})}).observe(this,{attributeFilter:["selected","value"]})}get value(){return this._selectable?.value??this._pendingValue??this.getValue()}set value(t){if(!this._selectable){this._pendingValue=t+"";return}this._selectable.value=t+""}get selected(){return this?._selectable?this._selectable.isSelected():!1}set selected(t){if(!this?._selectable)return!1;this._selectable.setState(t)}getSelectedLabel(){return this.getAttribute("selected-label")}getLabel(){return this.hasAttribute("label")?this.getAttribute("label"):this.textContent.trim()}getValue(){return this.hasAttribute("value")?this.getAttribute("value"):this.textContent.trim()}},Is=class extends I{mount(){this._activatable=new et(this),this._filterable=new Ct(this,{keep:!0}),this._disableable=new V(this,{disableWithParent:!1}),this._disableable.onInitAndChange(t=>{t?h(this,"aria-disabled","true"):x(this,"aria-disabled")})}},Pi=class extends I{},Ls=class extends Pi{};T("option-create",Is);T("options",Ke);T("option",Ds);T("option-empty",Pi);T("empty",Ls);function Ts(i){return CSS.supports("selector(&)")?i:i.replace("&",":scope")}function Eo(i,t,e){let s=i.querySelector(Ts("& > ui-option-empty, & > ui-empty")),r=i.querySelector(Ts("& > ui-option-create")),a=r?.hasAttribute("min-length")?parseInt(r.getAttribute("min-length")):void 0;h(s,"data-hidden",""),r&&h(r,"data-hidden","");let n=m=>m.hasAttribute("data-hidden"),l=m=>m.textContent.toLowerCase().trim()!==t.value.toLowerCase().trim(),o=()=>Array.from(i.querySelectorAll(Ts("& > ui-option"))),u=()=>{if(s.hasAttribute("when-loading")){let m=s.textContent;s.textContent=s.getAttribute("when-loading"),s.__hideLoading=()=>{s.textContent=m,s.__hideLoading=void 0}}},d,c,f=()=>{if(clearTimeout(d),clearTimeout(c),t.hasAttribute("data-flux-loading")||t.hasAttribute("data-loading"))return;let m=o(),p=m.every(w=>n(w));if(r){a&&t.value.trim().lengthl(A))?x(r,"data-hidden"):h(r,"data-hidden",""),p&&r._activatable.activate(!0);let w=()=>{x(r,"disabled")};e?w():c=setTimeout(w,150)}p&&(!r||n(r))?x(s,"data-hidden"):h(s,"data-hidden",""),s.__hideLoading?.()};if(e)e.onChange(()=>f()),r&&y(t,"input",()=>{a&&t.value.trim().length{requestAnimationFrame(()=>f())});m.observe(i,{childList:!0}),m.observe(t,{attributes:!0,attributeFilter:["data-loading","data-flux-loading"]}),r&&y(t,"input",p=>{clearTimeout(d),clearTimeout(c);let w=o().every(A=>n(A));w&&t.value.trim()===""&&!n(r)?(u(),x(s,"data-hidden"),h(r,"data-hidden","")):t.value.trim()===""&&!n(r)&&h(r,"data-hidden",""),a&&t.value.trim().length>=a&&x(r,"data-hidden"),h(r,"disabled",""),d=setTimeout(()=>{x(r,"disabled"),w&&r._activatable.activate()},200)})}f()}var g=class i{constructor(t,e,s=1){this._date=new Date(Date.UTC(t,e-1,s))}isBetween(t,e){return!t&&!e?!0:t?e?this._date>=t._date&&this._date<=e._date:this._date>=t._date:this._date<=e._date}isSameDay(t){return t?this._date.getUTCDate()===t._date.getUTCDate()&&this._date.getUTCMonth()===t._date.getUTCMonth()&&this._date.getUTCFullYear()===t._date.getUTCFullYear():!1}isBefore(t){return t?this._datet._date:!1}incrementDays(t){let e=this.getCopy();return e._date.setUTCDate(e._date.getUTCDate()+t),e}addMonths(t){let e=this.getCopy();return e._date.setUTCMonth(e._date.getUTCMonth()+t),e}addDays(t){let e=this.getCopy();return e._date.setUTCDate(e._date.getUTCDate()+t),e}getYear(){return this._date.getUTCFullYear()}getMonth(){return this._date.getUTCMonth()+1}getPaddedMonth(){return String(this.getMonth()).padStart(2,"0")}getDay(){return this._date.getUTCDate()}getPaddedDay(){return String(this.getDay()).padStart(2,"0")}getDate(){return this._date}getCopy(){return new i(this.getYear(),this.getMonth(),this.getDay())}getDayOfWeek(){return this._date.getUTCDay()}getDaysInMonth(){return new i(this.getYear(),this.getMonth()+1,0).getDay()}getFirstDayOfMonth(){return new i(this.getYear(),this.getMonth(),1).getDayOfWeek()}getWeekNumber(){let t=new Date(Date.UTC(this._date.getUTCFullYear(),0,1)),e=new Date(t);e.setUTCDate(1+(11-t.getUTCDay())%7);let s=new Date(this._date);return s.setUTCDate(this._date.getUTCDate()+(11-this._date.getUTCDay())%7),Math.floor((s.getTime()-e.getTime())/(7*24*60*60*1e3))+1}setDay(t){this._date.setUTCDate(t)}setMonth(t){this._date.setUTCMonth(t-1)}setYear(t){this._date.setUTCFullYear(t)}static fromIsoDateString(t){if(!t)return null;let[e,s,r]=t.split("T")[0]?.split("-")?.map(Number);return new i(e,s,r)}static fromLocalDate(t){return t?new i(t.getUTCFullYear(),t.getUTCMonth()+1,t.getUTCDate()):null}static fromDate(t){return t?new i(t.getFullYear(),t.getMonth()+1,t.getDate()):null}static fromParts(t,e,s){return new i(t,e,s)}static today(){return i.fromDate(new Date)}static firstDayOfMonth(t){return new i(t.getYear(),t.getMonth(),1)}toIsoDateString(){return[this.getYear(),this.getPaddedMonth(),this.getPaddedDay()].join("-")}toParts(){return[this.getYear(),this.getMonth(),this.getDay()]}toDate(){return new Date(this.getYear(),this.getMonth()-1,this.getDay())}toFormattedString(t,e){return this.toDate().toLocaleDateString(t,e)}};function za(i,t,e,s){let r=i.querySelector('template[name="heading"]'),a=i.querySelector('template[name="weekday"]'),n=i.querySelector('template[name="week"]');r&&_o(r,t,e),a&&ko(a,t),n&&Co(n,t,e,s)}function _o(i,t,e){at(i,s=>s({slots:{default:new Intl.DateTimeFormat(t.locale,{month:i.hasAttribute("display")?i.getAttribute("display"):"long",year:"numeric",timeZone:"UTC"}).format(new g(e.year,e.month).getDate())}}))}function ko(i,t){let e=r=>i.hasAttribute("display")?new Intl.DateTimeFormat(t.locale,{weekday:i.getAttribute("display")}).format(r):["en","es","de","fr","it","pt"].includes(t.locale.split("-")[0])?new Intl.DateTimeFormat(t.locale,{weekday:"short"}).format(r).slice(0,2):new Intl.DateTimeFormat(t.locale,{weekday:"narrow"}).format(r),s=Array.from({length:7},(r,a)=>{let n=(a+t.startDay)%7,l=new Date(2024,0,n+7);return e(l)});at(i,r=>s.map(a=>r({slots:{default:a}})))}function Co(i,t,e,s){let r=e.month,a=e.year,n=(new g(a,r).getFirstDayOfMonth()-t.startDay+7)%7,l=new g(a,r).getDaysInMonth(),[o,u]=new g(a,r).addMonths(-1).toParts(),d=new g(o,u).getDaysInMonth(),[c,f]=[[],[]];for(let E=0;E0)for(let S=0;SArray.from({length:Math.ceil(E.length/7)},(b,q)=>E.slice(q*7,(q+1)*7)),L=_(c),O=_(f);at(i,E=>L.map((b,q)=>{let S=E(),N=O[q],F=S.querySelector('template[name="number"]');if(F){let v=(4-t.startDay+7)%7,M=g.fromIsoDateString(N[v]).getWeekNumber();at(F,k=>k({slots:{default:M}}))}return at(S.querySelector('template[name="day"]'),v=>b.map((M,k)=>{if(M===0){let H=g.fromIsoDateString(N[k]).getDay();return v({slots:{default:H},attrs:{"data-date":N[k],"data-outside":""}})}let C=g.fromIsoDateString(N[k]),D=v({slots:{default:M},attrs:{"data-date":N[k]}}),P=s.subtext(C),$=s.details(C),W=s.variant(C);if([!1,null,void 0].includes(W)||(D.dataset.dateVariant=W),![!1,null,void 0].includes(P)){let R=D.querySelector('template[name="subtext"]');R&&at(R,H=>H({slots:{default:P}}))}if(![!1,null,void 0].includes($)){let R=D.querySelector('template[name="details"]');R&&at(R,H=>H({slots:{default:$}}))}return D})),S}))}function Ga(i,t,e,s,r,a){let l=((o,u)=>r.lowerBound(()=>g.today().getMonth()===o&&g.today().getYear()===u?g.today():new g(u,o)))(s.month,s.year);i.querySelectorAll("[data-date]").forEach(o=>{h(o,"role","gridcell");let u=o.querySelector("button,ui-button"),d=To(o);d&&(u?h(u,"aria-label",d.toFormattedString(e.locale,{day:"numeric",month:"long",year:"numeric",weekday:"long"})):h(o,"aria-label",d.toFormattedString(e.locale,{day:"numeric",month:"long",year:"numeric",weekday:"long"})),a.isValid(d)?t?(h(o,"disabled",""),h(o,"aria-disabled","true"),u&&h(u,"disabled","")):(x(o,"disabled"),x(o,"data-unavailable"),x(o,"aria-disabled"),u&&x(u,"disabled")):(h(o,"disabled",""),h(o,"aria-disabled","true"),u&&h(u,"disabled",""),a.isUnavailable(d)&&h(o,"data-unavailable","")),g.today().isSameDay(d)?h(o,"data-today",""):x(o,"data-today",""),r.attributes(o,d),d.isSameDay(l)?u&&h(u,"tabindex","0"):u&&h(u,"tabindex","-1"))})}function at(i,t){if(!i)return;let e=()=>{let r=i.nextElementSibling;for(;r&&r.hasAttribute("data-appended");){let a=r;r=r.nextElementSibling,a.remove()}};e();let s=t(({slots:r={},attrs:a={}}={})=>{let n=i.content.cloneNode(!0).firstElementChild;return Object.entries(r).forEach(([l,o])=>{(l==="default"?n.querySelectorAll("slot:not([name])"):n.querySelectorAll(`slot[name="${l}"]`)).forEach(d=>d.replaceWith(typeof o=="string"?document.createTextNode(o):o))}),n.querySelectorAll("slot").forEach(l=>l.remove()),Object.entries(a).forEach(([l,o])=>{n.setAttribute(l,o)}),n});return s=Array.isArray(s)?s:[s],s.reverse().forEach(r=>{h(r,"data-appended",""),i.after(r)}),{cleanup:e}}function To(i){return!i||!i.hasAttribute("data-date")?null:g.fromIsoDateString(i.getAttribute("data-date"))}var Vt=class{static SINGLE="single";static MULTIPLE="multiple"},ht=class{static SELECTION="selection";static ACTIVATION="activation";static VIEW_CHANGE="view-change"},Oi=class i{constructor(t,e,s){this.config=e,this.observable=s,this.selection=t}select(t){let e=this.selection;this.selection=this.selection.select(t,this.config),this.selection.shouldNotify(e)?this.observable.notify(ht.SELECTION):this.observable.notify(ht.ACTIVATION)}setValue(t){let e=this.selection;this.selection=i.createSelectionFromValue(t,this.config),this.selection.shouldNotify(e)?this.observable.notify(ht.SELECTION):this.observable.notify(ht.ACTIVATION)}getValue(){return this.selection.value()}isSelectable(t){return this.selection.selectable(t,this.config)}contains(...t){return this.selection.contains(...t)}hasSelection(){return this.selection.hasSelection()}lowerBound(...t){return this.selection.lowerBound(...t)}upperBound(...t){return this.selection.upperBound(...t)}display(...t){return this.selection.display(this.config,...t)}attributes(...t){return this.selection.attributes(...t)}static createSelectionFromValue(t,e){return e.mode===Vt.MULTIPLE?(t??=[],new Ms(t)):t?new Ri(t):new Ni}static createFromValueStringAttribute(t,e,s){let r=i.createSelectionFromValueStringAttribute(t,e);return new i(r,e,s)}static createSelectionFromValueStringAttribute(t,e){return e.mode===Vt.MULTIPLE&&(t=t?t.split(",").map(s=>s.trim()):[]),i.createSelectionFromValue(t,e)}},Xe=class{contains(){}shouldNotify(t){return!0}hasSelection(){return!1}lowerBound(t){return Fi(t)}upperBound(t){return this.lowerBound(t)}selectable(t,e){return!0}display(t){}value(){}attributes(t,e){this.contains(e)?(h(t,"data-selected",""),h(t,"aria-selected","true")):(x(t,"data-selected"),h(t,"aria-selected","false"))}},Ni=class i extends Xe{contains(){return!1}shouldNotify(t){return!(t instanceof i)}hasSelection(){return!1}lowerBound(t){return Fi(t)}select(t){return new Ri(t)}display(t){return""}value(){return null}},Ri=class i extends Xe{constructor(t){super(),this._value=t}contains(t){return this._value===t}shouldNotify(t){return!(t instanceof i&&this._value===t._value)}hasSelection(){return!0}lowerBound(){return this._value}select(t){return this._value===t?new Ni:new i(t)}display(t){return Vi(this._value,t.timeFormat,t.locale)}value(){return this._value}},Ms=class i extends Xe{constructor(t){super(),this._values=t.sort((e,s)=>St(e)e===t)}shouldNotify(t){return!(t instanceof i&&this._values.every(e=>t._values.includes(e))&&t._values.every(e=>this._values.includes(e)))}hasSelection(){return this._values.length>0}lowerBound(t){return this._values.sort((s,r)=>St(s)St(s)s===t)?new i(this._values.filter(s=>s!==t)):new i([...this._values,t])}display(t){return this._values.sort((e,s)=>St(e)Vi(e,t.timeFormat,t.locale)).join(", ")}value(){return this._values}};function Fi(i=null){return typeof i=="function"?i():i}var qi=class extends I{boot(){this.picker=this.closest("ui-time-picker");let t=this.querySelectorAll("input");this._disableable=new V(this);let e=s=>{s.preventDefault(),s.stopImmediatePropagation()};if(this._disableable.onInitAndChange(s=>{s?this.addEventListener("click",e,!0):this.removeEventListener("click",e,!0)}),t.length!==0){if(t.length<2)throw new Error("Time picker inputs missing");this.hourInput=t[0],this.minuteInput=t[1],this.meridiemInput=t[2]||null,this.meridiemInput&&this.use24HourFormat()&&(this.meridiemInput.style.display="none",this.meridiemInput=null),this._disableable.onInitAndChange(s=>{s?(this.hourInput.setAttribute("disabled",""),this.minuteInput.setAttribute("disabled",""),this.meridiemInput?.setAttribute("disabled","")):(this.hourInput.removeAttribute("disabled"),this.minuteInput.removeAttribute("disabled"),this.meridiemInput?.removeAttribute("disabled"))}),this.clearInputs(),Ps(this.hourInput),Ps(this.minuteInput),this.meridiemInput&&Ps(this.meridiemInput),this.hourInput.addEventListener("keydown",s=>{if(s.key==="ArrowRight")return this.minuteInput.focus()}),this.minuteInput.addEventListener("keydown",s=>{if(s.key==="ArrowLeft")return this.hourInput.focus();if(s.key==="ArrowRight")return this.meridiemInput?.focus()}),this.meridiemInput?.addEventListener("keydown",s=>{if(s.key==="ArrowLeft")return this.minuteInput.focus()}),Os(this.hourInput),Os(this.minuteInput),this.meridiemInput&&Os(this.meridiemInput),this.initHourInputListeners(),this.initMinuteInputListeners(),this.meridiemInput&&this.initMeridiemInputListeners(),this.meridiemInput&&this.setMeridiemWidthBasedOnLocale(),this.picker.observable.subscribe(ht.SELECTION,()=>{this.updateInputsFromSelectable(this.picker.selectable)}),this.updateInputsFromSelectable(this.picker.selectable)}}focus(){if(this.hourInput)return this.hourInput.focus();this.querySelector("button,ui-button")?.focus()}use24HourFormat(){return this.picker.config.timeFormat==="24-hour"?!0:this.picker.config.timeFormat==="12-hour"?!1:Do(this.picker.config.locale)}processTime(){let t=Xa(this.hourInput.value,this.minuteInput.value,this.meridiemInput?.value);t&&(this.updateSelectable(t),this.updateInputsFromSelectable(this.picker.selectable))}updateSelectable(t){this.picker.selectable.setValue(t)}updateInputsFromSelectable(t){let e=t.getValue();this.updateInputs(e)}updateInputs(t){if(!t)return this.clearInputs();x(this.picker,"data-empty");let[e,s]=t.split(":"),r=null;this.meridiemInput&&(e=parseInt(e),r=Ka(e,this.picker.config.locale),e>12?e=e-12:e===0&&(e=12),e=e.toString()),this.hourInput.value=e.padStart(2,"0"),this.minuteInput.value=s.padStart(2,"0"),this.meridiemInput&&(this.meridiemInput.value=r)}clearInputs(){this.hourInput.value="--",this.minuteInput.value="--",this.meridiemInput&&(this.meridiemInput.value="--"),h(this.picker,"data-empty","")}initHourInputListeners(){let t=!1;this.hourInput.addEventListener("keydown",e=>{if(!["ArrowUp","ArrowDown"].includes(e.key))return;e.preventDefault(),e.stopPropagation();let s=parseInt(this.hourInput.value),r=this.picker.selectable.getValue(),[a,n]=r?.split(":")||["00","00"];a=parseInt(a),e.key==="ArrowUp"?r===null||a===23?a=0:a++:e.key==="ArrowDown"&&(r===null||a===0?a=23:a--);let l=Xa(a.toString(),n);this.updateSelectable(l),this.updateInputsFromSelectable(this.picker.selectable),Et(this.hourInput)}),this.hourInput.addEventListener("keydown",e=>{if(!/[0-9]/.test(e.key))return;let s=parseInt(e.key);if(this.hourInput.value===""||this.hourInput.value==="--"||!t){t=!0,this.hourInput.value=`0${s}`,s>2?this.minuteInput.focus():Et(this.hourInput);return}let r=parseInt(this.hourInput.value);if(r===2&&s>=0&&s<=3){this.hourInput.value=`${r}${s}`,this.minuteInput.focus();return}if(r===1||r===0){this.hourInput.value=`${r}${s}`,this.minuteInput.focus();return}this.hourInput.value=`0${s}`,s>2?this.minuteInput.focus():Et(this.hourInput)}),this.hourInput.addEventListener("blur",e=>{t=!1,this.processTime()})}initMinuteInputListeners(){let t=!1;this.minuteInput.addEventListener("keydown",e=>{if(!["ArrowUp","ArrowDown"].includes(e.key))return;e.preventDefault(),e.stopPropagation();let s=parseInt(this.minuteInput.value);e.key==="ArrowUp"?isNaN(s)||s===59?s=0:s=s+1:e.key==="ArrowDown"&&(isNaN(s)||s===0?s=59:s=s-1),this.minuteInput.value=s.toString().padStart(2,"0"),this.processTime(),Et(this.minuteInput)}),this.minuteInput.addEventListener("keydown",e=>{if(!/[0-9]/.test(e.key))return;let s=parseInt(e.key);if(this.minuteInput.value===""||this.minuteInput.value==="--"||!t){t=!0,this.minuteInput.value=`0${s}`,this.processTime(),s>5?this.meridiemInput?.focus():Et(this.minuteInput);return}let r=parseInt(this.minuteInput.value);if(r<=5){this.minuteInput.value=`${r}${s}`,this.processTime(),this.meridiemInput?.focus();return}this.minuteInput.value=`0${s}`,this.processTime(),s>5?this.meridiemInput?.focus():Et(this.minuteInput)}),this.minuteInput.addEventListener("blur",e=>{t=!1,this.processTime()})}initMeridiemInputListeners(){this.meridiemInput?.addEventListener("keydown",t=>{if(!["ArrowUp","ArrowDown"].includes(t.key))return;t.preventDefault(),t.stopPropagation();let e=this.meridiemInput.value;t.key==="ArrowUp"?e===""||e==="AM"?e="PM":e="AM":t.key==="ArrowDown"&&(e===""||e==="PM"?e="AM":e="PM"),this.meridiemInput.value=e,this.processTime(),Et(this.meridiemInput)}),this.meridiemInput?.addEventListener("keydown",t=>{["a","p","A","P"].includes(t.key)&&(t.key==="a"||t.key==="A"?this.meridiemInput.value="AM":(t.key==="p"||t.key==="P")&&(this.meridiemInput.value="PM"),this.processTime(),Et(this.meridiemInput))})}setMeridiemWidthBasedOnLocale(){let t=Ka(12,this.picker.config.locale);t&&(this.meridiemInput.style.width=`calc(${t.length}ch + 2px)`)}};function Ps(i){i.addEventListener("focus",t=>{Et(i)}),i.addEventListener("mousedown",t=>{Et(i)}),i.addEventListener("mouseup",t=>{t.preventDefault(),Et(i)})}function Os(i){i.addEventListener("keydown",t=>{t.ctrlKey||t.metaKey||t.altKey||["Tab"].includes(t.key)||t.preventDefault()})}function Et(i){i.setSelectionRange(0,i.value.length)}function Ka(i,t){let r=new Intl.DateTimeFormat(t,{hour:"numeric",hour12:!0}).formatToParts(new Date(2024,0,1,i,0)).find(a=>a.type==="dayPeriod")?.value;return r||(i>=12?"PM":"AM")}function Xa(i,t,e=null){if(i==="--"&&t==="--"&&(e===null||e==="--"))return null;e==="PM"&&i==="--"&&(i="12"),i==="--"&&(i="00"),t==="--"&&(t="00"),e==="--"&&(e=null),i=i.padStart(2,"0"),t=t.padStart(2,"0");let s=e?i+":"+t+" "+e:i+":"+t;return Io(s)}function Do(i){return new Intl.DateTimeFormat(i,{hour:"numeric"}).format(new Date(2024,0,1,0,0)).startsWith("00")}function Io(i){let t=i.trim().match(/^(\d{1,2}):(\d{2})(?:\s*(am|pm|AM|PM))?$/i);if(!t)throw new Error(`Invalid time string: ${i}`);let e=parseInt(t[1],10),s=parseInt(t[2],10),r=t[3]?.toUpperCase();if(s>59||e>23||r!=="AM"&&r!=="PM"&&r!==void 0)throw new Error(`Invalid time string: ${i}`);return e>=13||e===0?`${String(e).padStart(2,"0")}:${String(s).padStart(2,"0")}`:(r&&(e===12?e=r==="AM"?0:12:r==="PM"&&(e+=12)),`${String(e).padStart(2,"0")}:${String(s).padStart(2,"0")}`)}var Ns=class extends Z{boot(){this.config={timeFormat:this.hasAttribute("time-format")?this.getAttribute("time-format"):"auto",interval:this.interval(),min:this.min(),max:this.max(),unavailable:this.unavailable(),openTo:this.openTo(),locale:this.hasAttribute("locale")?this.getAttribute("locale"):navigator.language,mode:this.hasAttribute("multiple")?Vt.MULTIPLE:Vt.SINGLE,dropdown:!(this.hasAttribute("dropdown")&&this.getAttribute("dropdown")==="false")},this.observable=new Wt,this._controllable=new U(this,{bubbles:!0}),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.getAttribute("value"),includeWhenEmpty:!1}),this.selectable=Oi.createFromValueStringAttribute(this.getAttribute("value"),this.config,this.observable),this._controllable.getter(()=>this.selectable.getValue());let t=G();if(this._controllable.setter(t(l=>{this.selectable.setValue(l)})),this.observable.subscribe(ht.SELECTION,t(()=>{this._controllable.dispatch(),this.dispatchEvent(new CustomEvent("input",{bubbles:!1}))})),this.observable.subscribe(ht.SELECTION,()=>{this._submittable.update(this.selectable.getValue())}),this._disableable=new V(this),!this.config.dropdown)return;let e=this.querySelector("[popover]");if(!e)return;let s=this.trigger(),r=this.querySelector("ui-time-picker-options"),a=Lo(r,this.config.mode===Vt.MULTIPLE);this._popoverable=new rt(e,{triggers:[s]}),this._anchorable=new it(e,{reference:s,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0,matchWidth:!0}),this._activatable=new Mt(r,{filter:"data-hidden"}),this._disableable.onInitAndChange(l=>{l?(h(s,"disabled",""),s.querySelectorAll("button,ui-button").forEach(o=>h(o,"disabled",""))):(x(s,"disabled"),s.querySelectorAll("button,ui-button").forEach(o=>x(o,"disabled")))}),s.addEventListener("click",l=>{this._popoverable.toggle(),s.focus()}),s.querySelectorAll("button,ui-button").forEach(l=>{Mo(l,this._popoverable,a),Ro(l,this._activatable,this.observable)}),Po(this,e,this._popoverable,this._anchorable),Oo(this,this._popoverable),Ft(s,this._popoverable),Rt(this,this._popoverable),xt(s,this._activatable),Kt(s,this._activatable,this._popoverable),At(this,s,this._activatable),Bo(this._popoverable,this._activatable,this.selectable,this.config.openTo),Fo(this,this.config.mode,this.observable,this.selectable,this._popoverable),new MutationObserver(l=>{l.forEach(o=>{["interval","unavailable","max","min","open-to"].includes(o.attributeName)&&(this.config.interval=this.interval(),this.config.unavailable=this.unavailable(),this.config.min=this.min(),this.config.max=this.max(),this.config.openTo=this.openTo(),this.observable.notify(ht.VIEW_CHANGE))})}).observe(this,{attributes:!0})}trigger(){return this.querySelector("ui-time-picker-trigger")}list(){return this.querySelector("ui-options")||this}clear(){this.selectable.setValue(null),this.dispatchEvent(new CustomEvent("clear",{bubbles:!1}))}interval(){return this.hasAttribute("interval")?parseInt(this.getAttribute("interval")):30}min(){if(this.hasAttribute("min")){let t=this.getAttribute("min");return t==="now"?new Date().toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",hour12:!1}):je(t)?t:console.warn(`Invalid min attribute: ${t}`)}}max(){if(this.hasAttribute("max")){let t=this.getAttribute("max");return t==="now"?new Date().toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",hour12:!1}):je(t)?t:console.warn(`Invalid max attribute: ${t}`)}}unavailable(){if(this.hasAttribute("unavailable")){let t=this.getAttribute("unavailable").split(",").map(e=>e.trim());return t.every(e=>e.includes("-")?qo(e):je(e))?t:console.warn(`Invalid unavailable attribute: ${t}`)}return[]}openTo(){if(this.hasAttribute("open-to")){let t=this.getAttribute("open-to");return t==="now"?new Date().toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",hour12:!1}):je(t)?t:console.warn(`Invalid open-to attribute: ${t}`)}}},Rs=class extends I{boot(){if(this.picker=this.closest("ui-time-picker"),!this.querySelector('template[name="time"]')){let t=document.createElement("template");t.setAttribute("name","time"),t.innerHTML="
"}this.templates={placeholder:this.querySelector('template[name="placeholder"]'),time:this.querySelector('template[name="time"]')},this.picker.observable.subscribe(ht.SELECTION,()=>{this.render(this.picker)}),this.render(this.picker)}mount(){this.render(this.picker)}render(t){if(this.templates.placeholder?.clearPlaceholder?.(),this.templates.time?.clearTime?.(),t.selectable.hasSelection()){let{cleanup:e}=at(this.templates.time,s=>s({slots:{default:t.selectable.display(t.config.locale)}}));this.templates.time.clearTime=e}else{if(!this.templates.placeholder)return;let{cleanup:e}=at(this.templates.placeholder,s=>s({slots:{}}));this.templates.placeholder.clearPlaceholder=e}}},Fs=class extends I{boot(){this.picker=this.closest("ui-time-picker"),this.render(),this.picker.observable.subscribe(ht.SELECTION,()=>{this.render()}),this.picker.observable.subscribe(ht.VIEW_CHANGE,()=>{this.render()});let{enable:t,disable:e}=Vo(this,this.picker.selectable);this.picker._disableable.onInitAndChange(s=>{s?e():t()})}render(){let t=this.querySelector('template[name="option"]');t&&at(t,e=>Ho(this.picker.config).map(({value:r,label:a})=>{let n=this.picker.config.unavailable.some(u=>$o(r,u)),l={"data-time":r,role:"option"};n&&(l.disabled="");let o=e({attrs:l,slots:{default:a}});return this.picker.selectable.attributes(o,r),o._activatable=new et(o),K(o,"option"),o}))}};T("time-picker",Ns);T("time-picker-trigger",qi);T("selected-time",Rs);T("time-picker-options",Fs);function Lo(i,t){let e=K(i,"options");return h(i,"role","listbox"),h(i,"aria-multiselectable",t?"true":"false"),e}function Mo(i,t,e){h(i,"role","combobox"),h(i,"aria-controls",e),h(i,"aria-haspopup","listbox"),No(i,t),y(i,"click",s=>{s.stopPropagation(),t.setState(!t.getState()),i.focus()})}function Po(i,t,e,s){let r=()=>{Array.from([i,t]).forEach(a=>{e.getState()?h(a,"data-open",""):x(a,"data-open","")}),e.getState()?s.reposition():s.cleanup()};e.onChange(()=>r()),r(),e.onChange(()=>{e.getState()?i.dispatchEvent(new Event("open",{bubbles:!1,cancelable:!1})):i.dispatchEvent(new Event("close",{bubbles:!1,cancelable:!1}))})}function Oo(i,t){let{lock:e,unlock:s}=ot(t.el);t.onChange(()=>{t.getState()?e():s()})}function No(i,t){h(i,"aria-haspopup","listbox");let e=()=>{h(i,"aria-expanded",t.getState()?"true":"false"),t.getState()?h(i,"data-open",""):x(i,"data-open","")};t.onChange(()=>{e()}),e()}function Ro(i,t){t.onChange(()=>{let e=t.getActive();e?h(i,"aria-activedescendant",e.id):x(i,"aria-activedescendant")})}function Fo(i,t,e,s,r){t!==Vt.MULTIPLE&&e.subscribe(ht.SELECTION,()=>{s.hasSelection()&&r.setState(!1)})}function Vo(i,t){let e=!1,s=i.hasAttribute("readonly");return y(i,"click",r=>{if(e||s)return;let a=r.target.closest("[data-time]");if(!a)return;let n=a.getAttribute("data-time");setTimeout(()=>{je(n)&&t.select(n)})}),{enable:()=>{},disable:()=>{}}}function je(i){return new RegExp(`^${Vs()}$`).test(i)}function qo(i){return new RegExp(`^${Vs()}-${Vs()}$`).test(i)}function Vs(){return"([01]?[0-9]|2[0-3]):[0-5][0-9]"}function $o(i,t){let[e,s]=i.split("-").map(n=>{let[l,o]=n.split(":").map(Number);return l*60+o}),[r,a]=t.split("-").map(n=>{let[l,o]=n.split(":").map(Number);return l*60+o});return isNaN(s)&&(s=e),isNaN(a)&&(a=r),!(sa)}function Vi(i,t,e){let[s,r]=i.split(":").map(Number),a={"12-hour":!0,"24-hour":!1,auto:void 0};return new Intl.DateTimeFormat(e,{hour:"numeric",minute:"numeric",hour12:a[t]}).format(new Date(2024,0,1,s,r))}function St(i){if(!i)return null;let[t,e]=i.split(":");return isNaN(t)||isNaN(e)?null:parseInt(t)*60+parseInt(e)}function Bo(i,t,e,s=null){i.onChange(()=>{if(i.getState()){let r=e.getValue();Array.isArray(r)||(r=r===null?[]:[r]);let n=t.filterAwareWalker().find(o=>r.includes(o.getAttribute("data-time"))),l=null;!n&&s&&(l=Wo(t,s)),setTimeout(()=>{let o=n||l;t.activateSelectedOrFirst(o),o?.scrollIntoView({block:"nearest"})})}else t.clearActive()})}function Wo(i,t){let e=St(t),s=null,r=null;return i.filterAwareWalker().walk((a,n)=>{let l=a.getAttribute("data-time"),o=St(l);o>e||Math.abs(o-e)s())}};var qs=class extends I{boot(){let t=this.button(),e=this.details();if(t){if(!e)return console.warn("ui-disclosure: no panel element found",this)}else return console.warn("ui-disclosure: no trigger element found",this);this._disableable=new V(this),this._disableable.onInitAndChange(a=>{a?t.hasAttribute("disabled")||h(t,"disabled",""):t.hasAttribute("disabled")&&x(t,"disabled")}),this._controllable=new U(this,{disabled:this.disabled}),e._disclosable=new $i(e),this._controllable.initial(a=>a&&e._disclosable.setState(!0)),this._controllable.getter(()=>e._disclosable.getState()),this._controllable.setter(a=>e._disclosable.setState(a)),e._disclosable.onChange(()=>{this.dispatchEvent(new CustomEvent("lofi-disclosable-change",{bubbles:!0})),this._controllable.dispatch()});let s=()=>{e._disclosable.getState()?(h(this,"data-open",""),h(t,"data-open",""),h(e,"data-open","")):(x(this,"data-open"),x(t,"data-open"),x(e,"data-open"))};e._disclosable.onChange(()=>s()),s(),y(t,"click",a=>{this.disabled||e._disclosable.setState(!e._disclosable.getState())});let r=K(e,"disclosure");h(t,"aria-controls",r),h(t,"aria-expanded","false"),e._disclosable.onChange(()=>{e._disclosable.getState()?h(t,"aria-expanded","true"):h(t,"aria-expanded","false")}),this.hasAttribute("open")&&e._disclosable.setState(!0)}button(){return this.querySelector("button,ui-button")}details(){return this.lastElementChild}},$s=class i extends I{boot(){this.exclusive=this.hasAttribute("exclusive"),this.exclusive&&y(this,"lofi-disclosable-change",t=>{t.stopPropagation(),t.target.localName==="ui-disclosure"&&t.target.value&&this.disclosureWalker().each(e=>{e!==t.target&&(e.value=!1)})})}disclosureWalker(){return tt(this,(t,{skip:e,reject:s})=>{if(t instanceof i&&t!==this||t.localName!=="ui-disclosure")return s()})}};T("disclosure",qs);T("disclosure-group",$s);var Bs=class extends I{boot(){}},Ws=class extends I{boot(){let t=this.hasAttribute("resize")?this.getAttribute("resize"):"both",e=this.hasAttribute("shrink"),s=this.closest("ui-resizable"),r,a,n=!1;if(!s)throw"Resizable container not found";this.addEventListener("pointerdown",l=>{n||(r=s.offsetWidth,a=s.offsetHeight,n=!0);let o=l.clientX,u=l.clientY,d=parseInt(getComputedStyle(s).width,10),c=parseInt(getComputedStyle(s).height,10),f=m=>{let p=d+(m.clientX-o),w=c+(m.clientY-u);(t==="width"||t==="both")&&(e?s.style.width=`${Math.min(p,r)}px`:s.style.width=`${p}px`),(t==="height"||t==="both")&&(e?s.style.height=`${Math.min(w,a)}px`:s.style.height=`${w}px`)};document.addEventListener("pointermove",f),document.addEventListener("pointerup",()=>{this.releasePointerCapture(l.pointerId),document.removeEventListener("pointermove",f)},{once:!0}),this.setPointerCapture(l.pointerId)})}};T("resizable",Bs);T("grip",Ws);var Hs=class i extends Z{boot(){this._disableable=new V(this);let t=[];this._disableable.onInitAndChange(e=>{e?this.walker().each(s=>{s.hasAttribute("disabled")||(s.setAttribute("disabled",""),t.push(()=>s.removeAttribute("disabled")))}):(t.forEach(s=>s()),t=[])}),this._selectable=new ut(this,{multiple:!0}),this._controllable=new U(this,{disabled:this._disabled,bubbles:!0}),this.walker().each(e=>{e.addEventListener("input",s=>s.stopPropagation()),e.addEventListener("change",s=>s.stopPropagation())}),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.getAttribute("value"),includeWhenEmpty:!1}),this._controllable.initial(e=>e&&this._selectable.setState(e)),this._controllable.getter(()=>this._selectable.getState()),this._detangled=G(),this._controllable.setter(this._detangled(e=>{this._selectable.setState(e)})),this._selectable.onChange(this._detangled(()=>{this._controllable.dispatch()})),this._selectable.onInitAndChange(()=>{this._submittable.update(this._selectable.getState())}),h(this,"role","group"),queueMicrotask(()=>{this._submittable.update(this._selectable.getState())})}initCheckAll(t){let e=G();t._selectable.onChange(e(()=>{t.indeterminate?(this.selectAll(),t.checked=!0,t.indeterminate=!1):t.checked?(this.selectAll(),t.checked=!0,t.indeterminate=!1):(this.deselectAll(),t.checked=!1,t.indeterminate=!1)}));let s=()=>{this._selectable.allAreSelected()?(t.indeterminate=!1,t._selectable.select()):this._selectable.noneAreSelected()?(t.indeterminate=!1,t._selectable.deselect()):t.indeterminate=!0};this._selectable.onChange(e(()=>{s()})),s()}selectAll(){this.walker().filter(t=>!t.use(Y).isSelected()).map(t=>t.use(Y).select())}deselectAll(){this.walker().filter(t=>t.use(Y).isSelected()).map(t=>t.use(Y).deselect())}walker(){return tt(this,(t,{skip:e,reject:s})=>{if(t instanceof i)return s();if(t.localName!=="ui-checkbox")return e()})}},Us=class extends Z{boot(){let t=this;this.isIndeterminate=!1,this._disableable=new V(this),this.hasAttribute("all")?(this._selectable=new Y(t,{ungrouped:!0,toggleable:!0,value:this.hasAttribute("value")?this.getAttribute("value"):Math.random().toString(36).substring(2,10),label:this.hasAttribute("label")?this.getAttribute("label"):null,selectedInitially:this.hasAttribute("checked"),dataAttr:"data-checked",ariaAttr:"aria-checked"}),queueMicrotask(()=>{this.closest("ui-checkbox-group")?.initCheckAll(this)})):(this._selectable=new Y(t,{toggleable:!0,dataAttr:"data-checked",ariaAttr:"aria-checked",value:this.hasAttribute("value")?this.getAttribute("value"):Math.random().toString(36).substring(2,10),label:this.hasAttribute("label")?this.getAttribute("label"):null,selectedInitially:this.hasAttribute("checked")}),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.getAttribute("value")??"on",includeWhenEmpty:!1,shouldUpdateValue:!1}),this._selectable.onChange(()=>{this.indeterminate&&(this.indeterminate=!1)}),this._selectable.onInitAndChange(()=>{this._submittable.update(this._selectable.isSelected())}),queueMicrotask(()=>{this._submittable.update(this._selectable.isSelected())})),this._detangled=G(),this._selectable.onChange(this._detangled(()=>{this.dispatchEvent(new Event("input",{bubbles:!0,cancelable:!0})),this.dispatchEvent(new Event("change",{bubbles:!0,cancelable:!0}))})),h(t,"role","checkbox"),this._disableable.onInitAndChange(e=>{e?x(t,"tabindex","0"):h(t,"tabindex","0")}),y(t,"click",this._disableable.disabled(e=>{e.preventDefault(),e.stopPropagation()}),{capture:!0}),y(t,"click",this._disableable.enabled(e=>{this._selectable.press()})),y(t,"keydown",this._disableable.enabled(e=>{e.key==="Enter"&&this.closest("form")?.requestSubmit()})),y(t,"keydown",this._disableable.enabled(e=>{e.key===" "&&(e.preventDefault(),e.stopPropagation())})),y(t,"keyup",this._disableable.enabled(e=>{e.key===" "&&(this._selectable.press(),e.preventDefault(),e.stopPropagation())})),Uo(t)}get value(){return this._selectable?.getValue()}set value(t){this._selectable&&(this._selectable.value=t+"",this._submittable&&(this._submittable.value=t+""))}get checked(){return this._selectable.isSelected()}set checked(t){let e=this.closest("ui-checkbox-group")?._detangled||(s=>s);this._detangled(e(()=>{t?this._selectable.select():this._selectable.deselect()}))()}get indeterminate(){return this.isIndeterminate}set indeterminate(t){this.isIndeterminate=!!t,this.isIndeterminate?h(this,"data-indeterminate",""):x(this,"data-indeterminate")}};T("checkbox-group",Hs);T("checkbox",Us);function Uo(i){i.closest("label")?.addEventListener("click",t=>{i.contains(t.target)||i._selectable.press()})}var Ys=class extends I{boot(){let t=this.trigger(),e=this.overlay();if(t){if(!e)return console.warn("ui-dropdown: no [popover] overlay found",this)}else return console.warn("ui-dropdown: no trigger element found",this);if(this._disabled=this.hasAttribute("disabled"),this._controllable=new U(this),e._popoverable=new rt(e),e._anchorable=new it(e,{reference:t,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0}),e._popoverable.onChange(()=>{e._popoverable.getState()?e._anchorable.reposition():e._anchorable.cleanup()}),!this.hasAttribute("hover")){let{lock:a,unlock:n}=ot(e._popoverable.el);e._popoverable.onChange(()=>{e._popoverable.getState()?a():n()})}this._controllable.initial(a=>e._popoverable.setState(a)),this._controllable.getter(()=>e._popoverable.getState());let s=G();if(this._controllable.setter(a=>e._popoverable.setState(a)),e._popoverable.onChange(s(()=>this._controllable.dispatch())),this.hasAttribute("hover")){let a=()=>{};ye(t,e,{gain(){e._popoverable.setState(!0),a=y(document,"scroll",()=>{e._popoverable.getState()&&(e._popoverable.setState(!1),a())}).off},lose(){e._popoverable.setState(!1),a()},focusable:!1})}y(t,"click",()=>e._popoverable.toggle()),e._popoverable.getState()?(h(this,"data-open",""),h(t,"data-open",""),h(e,"data-open","")):(x(this,"data-open"),x(t,"data-open"),x(e,"data-open")),e._popoverable.onChange(()=>{e._popoverable.getState()?(h(this,"data-open",""),h(t,"data-open",""),h(e,"data-open","")):(x(this,"data-open"),x(t,"data-open"),x(e,"data-open"))});let r=K(e,"dropdown");h(t,"aria-haspopup","true"),h(t,"aria-controls",r),h(t,"aria-expanded",e._popoverable.getState()?"true":"false"),e._popoverable.onChange(()=>{h(t,"aria-expanded",e._popoverable.getState()?"true":"false")}),e._popoverable.onChange(()=>{setTimeout(()=>e._popoverable.getState()?e.onPopoverShow?.():e.onPopoverHide?.())})}unmount(){if(this.overlay()?._popoverable?.getState()&&!this.hasAttribute("hover")){let{unlock:t}=ot();t()}}trigger(){return this.querySelector("button,ui-button,a")}overlay(){return this.lastElementChild?.matches("[popover]")&&this.lastElementChild}};T("dropdown",Ys);var zs=class extends I{boot(){this.type="file"}mount(){this._disableable=new V(this),this._files=[],this.inputEl=this.querySelector('input[data-slot="receiver"]'),this.inputEl&&(this.forwardAcceptAttribute(),this.configureSRInput()),this.triggerEl=this.findTriggerElement(),this.rootEl=this.closest("ui-file-upload");let t=this.hasAttribute("multiple")||this.rootEl&&this.rootEl.hasAttribute("multiple");t&&h(this.inputEl,"multiple",""),Object.defineProperty(this,"multiple",{get(){return t}}),Object.defineProperty(this,"files",{get(){return this._files},set(e){e===null||e===""?this._files=[]:Array.isArray(e)?this._files=e:e instanceof FileList?this._files=Array.from(e):this._files=[e],this.dispatchEvent(new Event("change",{bubbles:!0}))}}),this.observer=new MutationObserver(()=>{this.ensureInputsExist()}),this.observer.observe(this,{childList:!0}),this.style.setProperty("--flux-file-upload-progress","0%"),this.style.setProperty("--flux-file-upload-progress-as-string","'0%'"),y(this,"livewire-upload-start",()=>{h(this,"data-loading",""),this.disabled=!0,this.style.setProperty("--flux-file-upload-progress","0"),this.style.setProperty("--flux-file-upload-progress-as-string","'0%'")}),y(this,"livewire-upload-finish",()=>{x(this,"data-loading"),this.disabled=!1,this.style.setProperty("--flux-file-upload-progress","100%"),this.style.setProperty("--flux-file-upload-progress-as-string","'100%'")}),y(this,"livewire-upload-cancel",()=>{x(this,"data-loading"),this.disabled=!1,this.style.setProperty("--flux-file-upload-progress","0%"),this.style.setProperty("--flux-file-upload-progress-as-string","'0%'")}),y(this,"livewire-upload-error",()=>{x(this,"data-loading"),this.disabled=!1,this.style.setProperty("--flux-file-upload-progress","0%"),this.style.setProperty("--flux-file-upload-progress-as-string","'0%'")}),y(this,"livewire-upload-progress",e=>{let s=e.detail.progress;this.style.setProperty("--flux-file-upload-progress",`${s}%`),this.style.setProperty("--flux-file-upload-progress-as-string",`'${s}%'`)}),this._disableable.onInitAndChange(e=>{this.inputEl.disabled=e,this.triggerEl&&(e?x(this.triggerEl,"tabindex"):h(this.triggerEl,"tabindex","0"))}),y(this.inputEl,"click",e=>{e.stopPropagation(),this.clear()}),this.initDragListeners(),this.initClickListeners()}addFiles(t){let e=Array.from(t);this.multiple?this._files=[...this._files,...e]:this._files=e.slice(0,1),this.dispatchEvent(new Event("change",{bubbles:!0}))}removeFile(t){this._files=this._files.filter((e,s)=>s!==t),this.dispatchEvent(new Event("change",{bubbles:!0}))}clear(){this.inputEl.value=null,this._files=[]}forwardAcceptAttribute(){this.hasAttribute("accept")&&this.inputEl.setAttribute("accept",this.getAttribute("accept"))}configureSRInput(){this.inputEl.tabIndex=-1,Object.assign(this.inputEl.style,{position:"absolute",width:"1px",height:"1px",padding:"0",margin:"-1px",overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",border:"0"})}findTriggerElement(){return Array.from(this.children).find(e=>!e.hasAttribute("data-slot"))}ensureInputsExist(){(!this.inputEl||!this.querySelector('input[data-slot="receiver"]'))&&(this.inputEl=this.querySelector('input[data-slot="receiver"]'),this.inputEl&&(this.configureSRInput(),(this.hasAttribute("multiple")||this.rootEl&&this.rootEl.hasAttribute("multiple"))&&h(this.inputEl,"multiple",""),this.inputEl.disabled=this.disabled)),(!this.triggerEl||!this.contains(this.triggerEl))&&(this.triggerEl=this.findTriggerElement(),this.triggerEl&&!this.disabled?h(this.triggerEl,"tabindex","0"):this.triggerEl&&this.disabled&&x(this.triggerEl,"tabindex"))}initDragListeners(){this.triggerEl&&(y(this.triggerEl,"dragenter",this._disableable.enabled(t=>{t.preventDefault(),h(this,"data-dragging",""),this.clear()})),y(this.triggerEl,"dragover",this._disableable.enabled(t=>{t.preventDefault(),h(this,"data-dragging","")})),y(this.triggerEl,"drop",this._disableable.enabled(t=>{t.preventDefault(),x(this,"data-dragging"),t.dataTransfer.files&&t.dataTransfer.files.length>0&&this.addFiles(t.dataTransfer.files)})),y(this.triggerEl,"dragleave",t=>{x(this,"data-dragging")}))}initClickListeners(){this.triggerEl&&(y(this.triggerEl,"click",this._disableable.disabled(t=>{t.preventDefault(),t.stopPropagation()}),{capture:!0}),y(this.triggerEl,"click",this._disableable.enabled(t=>{t.preventDefault(),this.inputEl.click()})),y(this.inputEl,"change",t=>{t.stopPropagation(),this.inputEl.files&&this.inputEl.files.length>0&&!this.disabled&&this.addFiles(this.inputEl.files)}),y(this.triggerEl,"keydown",this._disableable.enabled(t=>{["Enter"," "].includes(t.key)&&t.preventDefault(),["Enter"].includes(t.key)&&this.inputEl.click()})),y(this.triggerEl,"keyup",this._disableable.enabled(t=>{t.key===" "&&(t.preventDefault(),this.inputEl.click())})),y(this.triggerEl,"focus",this._disableable.enabled(()=>{h(this,"data-focus","")})),y(this.triggerEl,"blur",()=>{x(this,"data-focus")}))}};T("file-upload",zs);var B=class{static SELECTION=1;static ACTIVATION=2;static VIEW_CHANGE=3},Le=class{constructor(){this.subscribers=[],this.subscriberTypes=new WeakMap}subscribe(t,e){let s=Array.isArray(t)?t:[t];this.subscribers.push(e),this.subscriberTypes.has(e)||this.subscriberTypes.set(e,[]),this.subscriberTypes.get(e).push(...s)}notify(t){let e=Array.isArray(t)?t:[t];this.subscribers.forEach(s=>{e.length&&!this.subscriberTypes.get(s)?.some(r=>e.includes(r))||s()})}};var lt=class{static SINGLE="single";static MULTIPLE="multiple";static RANGE="range"},Bi=class i{constructor(t,e,s){this.config=e,this.observable=s,this.selection=t,this.active=null,this.displayResolver=r=>r}setDisplayResolver(t){this.displayResolver=t}select(t){let e=this.selection;this.selection=this.selection.select(t,this.config),this.selection.shouldNotify(e)?this.observable.notify(B.SELECTION):this.observable.notify(B.ACTIVATION)}activate(t){let e=this.active;t?this.active=t:this.active=null,this.selection.activate(t),e!==this.active&&this.observable.notify(B.ACTIVATION)}setValue(t){let e=this.selection;this.selection=this.createSelectionFromValue(t,this.config),this.selection.shouldNotify(e)?this.observable.notify(B.SELECTION):this.observable.notify(B.ACTIVATION)}getValue(){return this.selection.value()}isSelectable(t){return this.selection.selectable(t,this.config)}contains(...t){return this.selection.contains(...t)}hasSelection(){return this.selection.hasSelection()}lowerBound(...t){return this.selection.lowerBound(...t)}upperBound(...t){return this.selection.upperBound(...t)}display(...t){return this.displayResolver(this.selection.display(...t))}attributes(...t){return this.selection.attributes(...t)}createSelectionFromValue(t,e){if(e.mode===lt.MULTIPLE){let s=t?t.map(r=>g.fromIsoDateString(r)):[];return new Hi(s)}else if(e.mode===lt.RANGE){let{start:s,end:r,preset:a}=t||{};return a&&Yi[a]&&a!=="custom"?new Ui(a,e):!s&&!r?new Qe:r?new ti(g.fromIsoDateString(s),g.fromIsoDateString(r)):new Xt(g.fromIsoDateString(s))}else return t?new Ze(g.fromIsoDateString(t)):new Je}static createFromValueStringAttribute(t,e,s){let r=i.createSelectionFromValueStringAttribute(t,e);return new i(r,e,s)}static createSelectionFromValueStringAttribute(t,e){if(e.mode===lt.MULTIPLE){let s=t?t.split(",").map(r=>r.trim()).map(r=>g.fromIsoDateString(r)):[];return new Hi(s)}else if(e.mode===lt.RANGE){if(!t)return new Qe;let[s,r]=t.split("/").map(a=>a.trim());return!r&&s&&Yi[s]&&s!=="custom"?new Ui(s,e):(s=g.fromIsoDateString(s),r?(r=g.fromIsoDateString(r),new ti(s,r)):new Xt(s))}else return t?new Ze(g.fromIsoDateString(t)):new Je}},Wi=class{constructor(t,e){this.selectable=t,this.observable=e,this._selection=this.selectable.selection,this.selectable.observable.subscribe(B.SELECTION,()=>{this._blockSync()||this.sync()}),this._blockSync=()=>{}}blockSyncIf(t){this._blockSync=t}sync(){this._selection=this.selectable.selection,this.observable.notify(B.SELECTION)}setValue(t){return this.selectable.setValue(t)}getValue(){return this._selection.value()}isSelectable(t){return this._selection.selectable(t,this.config)}hasSelection(){return this._selection.hasSelection()}display(...t){return this.selectable.displayResolver(this._selection.display(...t))}},qt=class{contains(){}shouldNotify(t){return!0}hasSelection(){return!1}lowerBound(t){return ei(t)}upperBound(t){return this.lowerBound(t)}selectable(t,e){return!0}display(){}value(){}activate(){}attributes(t,e){this.contains(e)?(h(t,"data-selected",""),h(t,"aria-selected","true")):(x(t,"data-selected"),h(t,"aria-selected","false"))}},Je=class i extends qt{shouldNotify(t){return!(t instanceof i)}hasSelection(){return!1}contains(){return!1}select(t){return new Ze(t)}lowerBound(t){return ei(t)}display(t){return""}value(){return null}},Ze=class i extends qt{constructor(t){super(),this._date=t}hasSelection(){return!0}shouldNotify(t){return!(t instanceof i&&this._date.isSameDay(t._date))}select(t){return this._date.isSameDay(t)?new Je:new i(t)}contains(t){return this._date.isSameDay(t)}lowerBound(){return this._date}display(t){return this._date.toFormattedString(t,{day:"numeric",month:"short",year:"numeric"})}value(){return this._date.toIsoDateString()}},Hi=class i extends qt{constructor(t){super(),this._dates=t}hasSelection(){return this._dates.length>0}shouldNotify(t){return!(t instanceof i&&this._dates.every(e=>t._dates.includes(e))&&t._dates.every(e=>this._dates.includes(e)))}select(t){return this._dates.some(s=>s.isSameDay(t))?new i(this._dates.filter(s=>!s.isSameDay(t))):new i([...this._dates,t])}contains(t){return this._dates.some(e=>e.isSameDay(t))}lowerBound(t){return this._dates.sort((s,r)=>s.isBefore(r)?-1:1)[0]||ei(t)}upperBound(t){let e=this._dates.sort((s,r)=>s.isBefore(r)?-1:1);return e[e.length-1]||ei(t)}display(t){return this._dates.map(e=>e.toFormattedString(t,{day:"numeric",month:"short",year:"numeric"})).join(", ")}value(){return this._dates.map(t=>t.toIsoDateString())}},Qe=class i extends qt{constructor(){super()}hasSelection(){return!1}shouldNotify(t){return!(t instanceof i||t instanceof Xt)}select(t){return new Xt(t)}contains(){return!1}lowerBound(t){return ei(t)}display(t){return""}value(){return null}},Xt=class i extends qt{constructor(t){super(),this._start=t,this._endPreview=null}hasSelection(){return!1}shouldNotify(t){return!1}select(t,e){return t.isBefore(this._start)?new i(t):t.isSameDay(this._start)&&e.minRange>1?new Qe:new ti(this._start,t)}activate(t){this._endPreview=t}selectable(t,e){if(e.maxRange&&(t.isBefore(this._start)||this._start.addDays(e.maxRange-1).isBefore(t)))return!1;if(e.minRange){if(this._start.isSameDay(t))return!0;if(t.isBefore(this._start)||this._start.addDays(e.minRange-1).isAfter(t))return!1}let s=e.unavailable.filter(a=>a.isAfter(this._start)).sort((a,n)=>a.toDate()-n.toDate())[0],r=e.unavailable.filter(a=>a.isBefore(this._start)).sort((a,n)=>n.toDate()-a.toDate())[0];return t.isAfter(this._start)?!s||t.isBefore(s):t.isBefore(this._start)?!r||t.isAfter(r):!0}contains(t){return t.isSameDay(this._start)}lowerBound(){return this._start}display(t){return new Intl.DateTimeFormat(t,{day:"numeric",month:"short",year:"numeric",timeZone:"UTC"}).format(this._start.getDate())+" -"}value(){return null}attributes(t,e){this._endPreview&&e.isBetween(this._start,this._endPreview)?(h(t,"data-in-range",""),h(t,"aria-selected","true")):(x(t,"data-in-range"),x(t,"aria-selected")),e.isSameDay(this._start)?h(t,"data-selected",""):x(t,"data-selected"),e.isSameDay(this._start)?h(t,"aria-selected","true"):x(t,"aria-selected"),e.isSameDay(this._start)?h(t,"data-start",""):x(t,"data-start"),e.isSameDay(this._endPreview)?h(t,"data-end-preview",""):x(t,"data-end-preview")}},ti=class i extends qt{constructor(t,e){super(),this._start=t,this._end=e}hasSelection(){return!0}shouldNotify(t){return!(t instanceof i&&this._start.isSameDay(t._start)&&this._end.isSameDay(t._end))}select(t){return new Xt(t)}contains(t){return t.isBetween(this._start,this._end)}lowerBound(){return this._start}upperBound(){return this._end}display(t){return new Intl.DateTimeFormat(t,{day:"numeric",month:"short",year:"numeric",timeZone:"UTC"}).formatRange(this._start.getDate(),this._end.getDate()).replaceAll("\u2009"," ")}value(){return{start:this._start.toIsoDateString(),end:this._end.toIsoDateString()}}attributes(t,e){e.isSameDay(this._start)||e.isSameDay(this._end)?h(t,"data-selected",""):x(t,"data-selected"),e.isSameDay(this._start)?h(t,"data-start",""):x(t,"data-start"),e.isSameDay(this._end)?h(t,"data-end",""):x(t,"data-end"),this.contains(e)?(h(t,"data-in-range",""),h(t,"aria-selected","true")):(x(t,"data-in-range"),x(t,"aria-selected"))}},Ui=class i extends qt{constructor(t,e){super(),this._preset=t,this._config=e}get _start(){let[t]=Yi[this._preset](this._config);return this._config.min&&t.isBefore(this._config.min)?this._config.min:t}get _end(){let[,t]=Yi[this._preset](this._config);return this._config.max&&t.isAfter(this._config.max)?this._config.max:t}hasSelection(){return!0}shouldNotify(t){return!(t instanceof i&&this._preset===t._preset)}select(t){return new Xt(t,this._config)}contains(t){return t.isBetween(this._start,this._end)}lowerBound(){return this._preset==="allTime"?g.today():this._start}upperBound(){return this._preset==="allTime"?g.today():g.today()}display(t){return new Intl.DateTimeFormat(t,{day:"numeric",month:"short",year:"numeric",timeZone:"UTC"}).formatRange(this._start.getDate(),this._end.getDate()).replaceAll("\u2009"," ")}value(){return{start:this._start.toIsoDateString(),end:this._end.toIsoDateString(),preset:this._preset}}attributes(t,e){e.isSameDay(this._start)||e.isSameDay(this._end)?h(t,"data-selected",""):x(t,"data-selected"),e.isSameDay(this._start)?h(t,"data-start",""):x(t,"data-start"),e.isSameDay(this._end)?h(t,"data-end",""):x(t,"data-end"),this.contains(e)?(h(t,"data-in-range",""),h(t,"aria-selected","true")):(x(t,"data-in-range"),x(t,"aria-selected"))}};function ei(i=null){return typeof i=="function"?i():i}var Yi={today:()=>[g.today(),g.today()],yesterday:()=>{let i=g.today().incrementDays(-1);return[i,i]},thisWeek:i=>{let t=g.today().getCopy().incrementDays(i.startDay-g.today().getDayOfWeek()),e=t.incrementDays(6);return[t,e]},lastWeek:i=>{let t=g.today().incrementDays(i.startDay-(g.today().getDayOfWeek()+7)),e=t.incrementDays(6);return[t,e]},last7Days:()=>{let i=g.today();return[g.today().incrementDays(-6),i]},thisMonth:()=>{let i=g.fromParts(g.today().getYear(),g.today().getMonth(),1),t=g.fromParts(g.today().getYear(),g.today().getMonth(),g.today().getDaysInMonth());return[i,t]},lastMonth:()=>{let i=g.today().getMonth()-1,t=g.today().getYear();i<1&&(i+=12,t--);let e=g.fromParts(t,i,1),s=g.fromParts(t,i,e.getDaysInMonth());return[e,s]},thisQuarter:()=>{let t=Math.floor((g.today().getMonth()-1)/3)*3+1,e=t+2,s=g.fromParts(g.today().getYear(),t,1),r=g.fromParts(g.today().getYear(),e,1),a=g.fromParts(g.today().getYear(),e,r.getDaysInMonth());return[s,a]},lastQuarter:()=>{let t=Math.floor((g.today().getMonth()-4)/3)*3+1,e=t+2,s=g.today().getYear();t<1&&(t+=12,e+=12,s--);let r=g.fromParts(s,t,1),a=g.fromParts(s,e,1),n=g.fromParts(s,e,a.getDaysInMonth());return[r,n]},thisYear:()=>{let i=g.fromParts(g.today().getYear(),1,1),t=g.fromParts(g.today().getYear(),12,31);return[i,t]},lastYear:()=>{let i=g.today().getYear()-1,t=g.fromParts(i,1,1),e=g.fromParts(i,12,31);return[t,e]},last14Days:()=>{let i=g.today();return[g.today().incrementDays(-13),i]},last30Days:()=>{let i=g.today();return[g.today().incrementDays(-29),i]},last3Months:()=>{let i=g.today(),t=g.today().getDay()+1,e=g.today().getMonth()-3,s=g.today().getYear();return e<1&&(e+=12,s--),[g.fromParts(s,e,t),i]},last6Months:()=>{let i=g.today(),t=g.today().getDay()+1,e=g.today().getMonth()-6,s=g.today().getYear();return e<1&&(e+=12,s--),[g.fromParts(s,e,t),i]},yearToDate:()=>{let i=g.fromParts(g.today().getYear(),1,1),t=g.today();return[i,t]},tomorrow:()=>{let i=g.today().incrementDays(1);return[i,i]},nextWeek:i=>{let t=g.today().incrementDays(7+i.startDay-g.today().getDayOfWeek()),e=t.incrementDays(6);return[t,e]},next7Days:()=>{let i=g.today(),t=g.today().incrementDays(6);return[i,t]},nextMonth:()=>{let i=g.today().getMonth()+1,t=g.today().getYear();i>12&&(i-=12,t++);let e=g.fromParts(t,i,1),s=g.fromParts(t,i,e.getDaysInMonth());return[e,s]},nextQuarter:()=>{let t=(Math.floor((g.today().getMonth()-1)/3)+1)*3+1,e=g.today().getYear();t>12&&(t-=12,e++);let s=t+2;s>12&&(s-=12,e++);let r=g.fromParts(e,t,1),a=g.fromParts(e,s,1),n=g.fromParts(e,s,a.getDaysInMonth());return[r,n]},nextYear:()=>{let i=g.today().getYear()+1,t=g.fromParts(i,1,1),e=g.fromParts(i,12,31);return[t,e]},next14Days:()=>{let i=g.today(),t=g.today().incrementDays(13);return[i,t]},next30Days:()=>{let i=g.today(),t=g.today().incrementDays(29);return[i,t]},next3Months:()=>{let i=g.today(),t=g.today().getDay(),e=g.today().getMonth()+3,s=g.today().getYear();e>12&&(e-=12,s++);let r=g.fromParts(s,e,t).incrementDays(-1);return[i,r]},next6Months:()=>{let i=g.today(),t=g.today().getDay(),e=g.today().getMonth()+6,s=g.today().getYear();e>12&&(e-=12,s++);let r=g.fromParts(s,e,t).incrementDays(-1);return[i,r]},allTime:i=>{if(!i.min)throw new Error("Min date is required for allTime preset");let t=i.min,e=g.today();return[t,e]}};var zi=class{constructor(t,e,s,r){this.month=t,this.year=e,this.config=s,this.observable=r}generateOffsetState(t){return new Gs(this,t)}canNavigatePrevious(){let[t,e]=new g(this.year,this.month).addMonths(-1).toParts();return!(this.config.min&&g.fromParts(t,e).isBefore(g.firstDayOfMonth(this.config.min)))}canNavigateNext(){let[t,e]=new g(this.year,this.month).addMonths(this.config.months).toParts();return!(this.config.max&&g.fromParts(t,e).isAfter(this.config.max))}nextMonth(){this.canNavigateNext()&&this.adjustMonth(1)}previousMonth(){this.adjustMonth(-1)}setMonth(t){t&&(this.isWithinMinAndMax(t,this.year)&&(this.month=t),this.observable.notify(B.VIEW_CHANGE))}setYear(t){if(!t)return;let e=this.month;this.isWithinMinAndMax(e,t)||(this.config.min&&g.fromParts(t,e).isBefore(g.firstDayOfMonth(this.config.min))?e=this.config.min.getMonth():this.config.max&&g.fromParts(t,e).isAfter(this.config.max)&&(e=this.config.max.getMonth())),this.isWithinMinAndMax(e,t)&&(this.month=e,this.year=t),this.observable.notify(B.VIEW_CHANGE)}setDate(t){t&&(this.isWithinMinAndMax(t.getMonth(),t.getYear())&&(this.month=t.getMonth(),this.year=t.getYear()),this.observable.notify(B.VIEW_CHANGE))}isWithinMinAndMax(t,e){return!(this.config.min&&g.fromParts(e,t).isBefore(g.firstDayOfMonth(this.config.min))||this.config.max&&g.fromParts(e,t).isAfter(this.config.max))}adjustMonth(t){let[e,s]=new g(this.year,this.month).addMonths(t).toParts();this.config.min&&g.fromParts(e,s).isBefore(g.firstDayOfMonth(this.config.min))||this.config.max&&g.fromParts(e,s).isAfter(this.config.max)||([this.month,this.year]=[s,e],this.observable.notify(B.VIEW_CHANGE))}},Gs=class{constructor(t,e=0){this.offset=e,this.viewState=t}get month(){let[,t]=new g(this.viewState.year,this.viewState.month).addMonths(this.offset).toParts();return t}get year(){let[t]=new g(this.viewState.year,this.viewState.month).addMonths(this.offset).toParts();return t}};var Gi=class{constructor(t,e,s){this.min=s.min,this.max=s.max,this.unavailable=s.unavailable,this.selectable=t,this.metadata=e}isBetweenMinMax(t){return t.isBetween(this.min,this.max)}isUnavailable(t){return this.unavailable.some(e=>e.isSameDay(t))||this.metadata.unavailable(t)}isBlocked(t){return!this.selectable.isSelectable(t)}isValid(t){return this.isBetweenMinMax(t)&&!this.isUnavailable(t)&&!this.isBlocked(t)}};var Ki=class{constructor(t){this.metadata={},this.observable=t}resetFromJSON(t){this.reset(JSON.parse(t))}appendFromJSON(t){this.append(JSON.parse(t))}append(t){this.metadata={...this.metadata,...t},this.observable.notify(B.VIEW_CHANGE)}reset(t){this.metadata=t,this.observable.notify(B.VIEW_CHANGE)}get(t){return this.metadata[t.toIsoDateString()]}has(t){return this.metadata[t.toIsoDateString()]!==void 0}subtext(t){return this.metadata[t.toIsoDateString()]?.subtext}details(t){return this.metadata[t.toIsoDateString()]?.details}variant(t){return this.metadata[t.toIsoDateString()]?.variant}unavailable(t){return!!this.metadata[t.toIsoDateString()]?.unavailable}};var Ks=class extends I{boot(){let t=this.closest("ui-date-picker")||this;this.querySelectorAll("[data-appended]").forEach(o=>o.remove());let[e,s]=ua(t,"months",1);this.observable=new Le;let r=t.hasAttribute("locale")?t.getAttribute("locale"):Ai();this.config={mode:t.getAttribute("mode")==="range"?lt.RANGE:t.hasAttribute("multiple")?lt.MULTIPLE:lt.SINGLE,months:parseInt(e),min:this.getMinDate(t),max:this.getMaxDate(t),maxRange:t.hasAttribute("max-range")?parseInt(t.getAttribute("max-range")):null,minRange:t.hasAttribute("min-range")?parseInt(t.getAttribute("min-range")):null,startDay:t.hasAttribute("start-day")?parseInt(t.getAttribute("start-day")):(new Intl.Locale(r).getWeekInfo?.()?.firstDay??new Intl.Locale(r).weekInfo?.firstDay??7)%7,unavailable:this.getUnavailableDates(t),locale:r,fixedWeeks:t.hasAttribute("fixed-weeks")?6:null},s(o=>{this.config.months=parseInt(o),this.observable.notify(B.VIEW_CHANGE)}),this.selectable=Bi.createFromValueStringAttribute(t.getAttribute("value"),this.config,this.observable),this.metadata=new Ki(this.observable),this.validator=new Gi(this.selectable,this.metadata,this.config);let a=t.hasAttribute("open-to")&&(t.hasAttribute("force-open-to")||this.selectable.lowerBound()===null)?this.getOpenTo(t):this.selectable.lowerBound(()=>g.today());if(this.viewState=new zi(a.getMonth(),a.getYear(),this.config,this.observable),this._disableable=new V(this,{disableWithParent:!1}),!this.hasAttribute("static")){let{enable:o,disable:u}=Yo(this,this.selectable,this.viewState,this.validator);this._disableable.onInitAndChange(d=>{d?u():o()})}this._controllable=new U(this,{bubbles:!0}),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.selectable.getValue()});let n=G();this._controllable.initial(o=>o&&this.selectable.setValue(o)),this._controllable.getter(()=>this.selectable.getValue()),this._controllable.setter(n(o=>{this.selectable.setValue(o)})),this.observable.subscribe(B.SELECTION,n(()=>{this.dispatchEvent(new Event("select",{bubbles:!1,cancelable:!0})),this._controllable.dispatch()})),this.observable.subscribe(B.SELECTION,()=>{this._submittable.update(this.selectable.getValue())}),this.observable.subscribe(B.SELECTION,()=>{this.anchorSelection(t)}),this.observable.subscribe(B.VIEW_CHANGE,()=>{this.dispatchEvent(new Event("navigate",{bubbles:!1,cancelable:!0}))}),queueMicrotask(()=>{this.closest("ui-date-picker")?.bootWithCalendar(this)}),new MutationObserver(o=>{o.forEach(u=>{["unavailable","max","min"].includes(u.attributeName)&&(this.config.unavailable=this.getUnavailableDates(t),this.config.min=this.getMinDate(t),this.config.max=this.getMaxDate(t),this.validator.unavailable=this.config.unavailable,this.validator.min=this.config.min,this.validator.max=this.config.max,this.observable.notify(B.VIEW_CHANGE))})}).observe(t,{attributes:!0})}getOpenTo(t){if(!t.hasAttribute("open-to"))return;let e=t.getAttribute("open-to");return e=e==="today"?g.today():g.fromIsoDateString(e),this.validator.isBetweenMinMax(e)?e:this.config.min}navigateNext(){this.viewState.nextMonth()}navigatePrevious(){this.viewState.previousMonth()}anchorSelection(t){let e=document.activeElement;this.contains(e)&&e.closest("[data-date]")!==null||t.hasAttribute("force-open-to")||this.viewState.setDate(this.selectable.lowerBound(g.today()))}appendMetadata(t){this.metadata.append(t)}resetMetadata(t={}){this.metadata.reset(t)}visibleDateRange(){return[g.fromParts(this.viewState.year,this.viewState.month,1).toIsoDateString(),g.fromParts(this.viewState.year,this.viewState.month+1,0).toIsoDateString()]}getUnavailableDates(t){return t.hasAttribute("unavailable")?t.getAttribute("unavailable").split(",").map(e=>g.fromIsoDateString(e.trim())):[]}getMinDate(t){return t.hasAttribute("min")?t.getAttribute("min")==="today"?g.today():g.fromIsoDateString(t.getAttribute("min")):null}getMaxDate(t){return t.hasAttribute("max")?t.getAttribute("max")==="today"?g.today():g.fromIsoDateString(t.getAttribute("max")):null}},Xs=class extends I{boot(){let t=this.closest("ui-calendar");this._disableable=t._disableable,we(this,()=>this._disableable.isDisabled(),()=>t.navigatePrevious());let e=()=>{t.viewState.canNavigatePrevious()&&!this._disableable.isDisabled()?x(this,"disabled"):h(this,"disabled","")};t.observable.subscribe(B.VIEW_CHANGE,e),this._disableable.onInitAndChange(()=>{e()})}},js=class extends I{boot(){let t=this.closest("ui-calendar");this._disableable=t._disableable,we(this,()=>this._disableable.isDisabled(),()=>t.navigateNext());let e=()=>{t.viewState.canNavigateNext()&&!this._disableable.isDisabled()?x(this,"disabled"):h(this,"disabled","")};t.observable.subscribe(B.VIEW_CHANGE,e),this._disableable.onInitAndChange(()=>{e()})}},Js=class extends I{boot(){let t=this.closest("ui-calendar");this._disableable=t._disableable,this.offset=this.hasAttribute("offset")?parseInt(this.getAttribute("offset")):0,this.config=t.config,this.viewState=t.viewState,this.offsetState=this.viewState.generateOffsetState(this.offset),this.validator=t.validator;let e=this.querySelector("select"),s=this.hasAttribute("display")?this.getAttribute("display"):"long";if(e)this.renderSelectOptions(e,s),e.value=this.viewState.month,e.addEventListener("change",this._disableable.enabled(()=>{this.viewState.setMonth(parseInt(e.value))})),t.observable.subscribe(B.VIEW_CHANGE,()=>{this.renderSelectOptions(e,s),e.value=this.viewState.month}),this._disableable.onInitAndChange(r=>{r?h(e,"disabled",""):x(e,"disabled")});else{let r=()=>this.textContent=new Intl.DateTimeFormat(this.config.locale,{month:this.hasAttribute("display")?this.getAttribute("display"):"long",timeZone:"UTC"}).format(new g(this.offsetState.year,this.offsetState.month).getDate());r(),this.viewState.observable.subscribe(B.VIEW_CHANGE,()=>r())}}renderSelectOptions(t,e){let r=Array.from({length:12},(a,n)=>n+1).map(a=>{let n=new g(this.viewState.year,a),l=new g(this.viewState.year,a+1,0);return!this.validator.isBetweenMinMax(n)&&!this.validator.isBetweenMinMax(l)?null:{month:a,label:new Intl.DateTimeFormat(this.config.locale,{month:e,timeZone:"UTC"}).format(new g(2024,a).getDate())}}).filter(Boolean);at(t.querySelector("template"),a=>{if(r.length===0){let n=this.viewState.month,l=new Intl.DateTimeFormat(this.config.locale,{month:e,timeZone:"UTC"}).format(new g(2024,n).getDate()),o=a({slots:{default:l}});return o.setAttribute("value",n),o}return r.map(n=>{let l=a({slots:{default:n.label}});return l.setAttribute("value",n.month),l})})}},Zs=class extends I{boot(){let t=this.closest("ui-calendar");this._disableable=t._disableable,this.offset=this.hasAttribute("offset")?parseInt(this.getAttribute("offset")):0,this.config=t.config,this.viewState=t.viewState,this.offsetState=this.viewState.generateOffsetState(this.offset),this.numberOfPastYears=100,this.numberOfFutureYears=10,this.validator=t.validator;let e=this.querySelector("select");if(e)this.config.min&&(this.numberOfPastYears=this.viewState.year-this.config.min.getYear()),this.config.max&&(this.numberOfFutureYears=this.config.max.getYear()-this.viewState.year),this.renderSelectOptions(e),e.value=this.viewState.year,e.addEventListener("change",this._disableable.enabled(()=>{this.viewState.setYear(parseInt(e.value))})),t.observable.subscribe(B.VIEW_CHANGE,()=>{this.yearIsLessThanMinimum(this.viewState.year)&&(this.numberOfPastYears+=100,this.renderSelectOptions(e)),this.yearIsGreaterThanMaximum(this.viewState.year)&&(this.numberOfFutureYears+=10,this.renderSelectOptions(e)),e.value=this.viewState.year}),this._disableable.onInitAndChange(s=>{s?h(e,"disabled",""):x(e,"disabled")});else{let s=()=>this.textContent=new Intl.DateTimeFormat(this.config.locale,{year:this.hasAttribute("display")?this.getAttribute("display"):"numeric",timeZone:"UTC"}).format(new g(this.offsetState.year,this.offsetState.month).getDate());s(),this.viewState.observable.subscribe(B.VIEW_CHANGE,()=>s())}}yearIsLessThanMinimum(t){return tthis.maximumYear()}minimumYear(){return new Date().getFullYear()-this.numberOfPastYears}maximumYear(){return new Date().getFullYear()+this.numberOfFutureYears}renderSelectOptions(t){let e=new Date().getFullYear(),r=Array.from({length:this.numberOfPastYears+this.numberOfFutureYears+1},(a,n)=>e-this.numberOfPastYears+n).map(a=>{let n=new g(a,1),l=new g(a,12,31);return this.config.min&&l.isBefore(this.config.min)||this.config.max&&n.isAfter(this.config.max)?null:a}).filter(Boolean);at(t.querySelector("template"),a=>{if(r.length===0){let n=this.viewState.year;return a({slots:{default:n}})}return r.map(n=>a({slots:{default:n}}))})}},Qs=class extends I{boot(){let t=this.closest("ui-calendar");this._disableable=t._disableable,this.offset=this.hasAttribute("offset")?parseInt(this.getAttribute("offset")):0,this.config=t.config,this.selectable=t.selectable,this.observable=t.observable,this.metadata=t.metadata,this.validator=t.validator,this.viewState=t.viewState,this.offsetState=this.viewState.generateOffsetState(this.offset),this.monthEls=[],this.renderMonths();let e=()=>this.monthEls.forEach(a=>za(a,this.config,a.offsetState,this.metadata)),s=()=>this.monthEls.forEach(a=>Ga(a,this._disableable.isDisabled(),this.config,a.offsetState,this.selectable,this.validator));e(),s();let r=this.config.months;this.viewState.observable.subscribe(B.VIEW_CHANGE,()=>{r!==this.config.months&&(r=this.config.months,this.renderMonths()),e(),s()}),this.observable.subscribe([B.SELECTION,B.ACTIVATION],()=>{s()}),this._disableable.onChange(()=>s())}renderMonths(){let t=this.querySelector('template:not([name]), template[name="month"]');at(t,e=>{let s=Array.from({length:this.config.months}).map((r,a)=>a);return this.monthEls=s.map(r=>{let a=this.viewState.generateOffsetState(r),n=e({attrs:{"data-month":""}});n.offsetState=a;let l=n.querySelector("thead")?.set;return h(n,"role","grid"),l&&h(l,"aria-hidden","true"),n}),this.monthEls})}},tr=class extends I{boot(){let t=this.closest("ui-calendar, ui-date-picker");this._disableable=t._disableable,this.behavior=this.hasAttribute("behavior")?this.getAttribute("behavior"):"auto",t.hasAttribute("static")&&(this.behavior="none"),we(this,()=>this._disableable.isDisabled(),()=>this.navigateAndSelectToday()),this._disableable.onInitAndChange(s=>{s?h(this,"disabled",""):x(this,"disabled")});let e=this.querySelector("template");e&&at(e,s=>s({slots:{default:g.today().getDay()}}))}navigateAndSelectToday(){let t=this.closest("ui-calendar, ui-date-picker"),e=()=>{let r=t.viewState,a=g.today();return r.year===a.getYear()&&r.month===a.getMonth()};(this.behavior==="select"||this.behavior==="auto"&&e())&&(t.config.mode===lt.RANGE?t.selectable.setValue({start:g.today().toIsoDateString(),end:g.today().toIsoDateString()}):t.config.mode===lt.MULTIPLE?t.selectable.setValue([g.today().toIsoDateString()]):t.selectable.setValue(g.today().toIsoDateString())),t.viewState.setMonth(g.today().getMonth()),t.viewState.setYear(g.today().getYear())}},er=class extends I{boot(){let t=this.closest("ui-calendar");if(this._disableable=t._disableable,this.offset=this.hasAttribute("offset")?parseInt(this.getAttribute("offset")):0,this.selectable=t.selectable,this.observable=t.observable,this.config=t.config,this.viewState=t.viewState,this.offsetState=this.viewState.generateOffsetState(this.offset),this.config.mode!==lt.RANGE)throw"Presets can only be used with range calendars";let e=this.firstElementChild;if(e){let s=r=>{if(e._selectable instanceof ut){let a=e._selectable.findByValue(r);return a?a?.el?.textContent:null}else if(e instanceof HTMLSelectElement)return e.querySelector(`option[value="${r}"]`)?.textContent;return null};this.selectable.setDisplayResolver(r=>{let a=this.selectable.getValue()?.preset||"";if(a){let n=s(a);if(n)return n}return r}),e.value=this.selectable.getValue()?.preset||"custom",e.addEventListener("change",this._disableable.enabled(()=>{if(["","custom"].includes(e.value)){let{start:r,end:a}=this.selectable.getValue()||{};r&&a&&this.selectable.setValue({start:r,end:a})}else this.selectable.setValue({preset:e.value})})),this.observable.subscribe(B.SELECTION,()=>{let r=this.selectable.getValue();e.value=r?.preset||"custom"}),this._disableable.onInitAndChange(r=>{r?h(e,"disabled",""):x(e,"disabled")})}}},ir=class extends I{boot(){let t=this.closest("ui-calendar");this._disableable=t._disableable,this.offset=this.hasAttribute("offset")?parseInt(this.getAttribute("offset")):0,this.selectable=t.selectable,this.observable=t.observable,this.config=t.config,this.viewState=t.viewState,this.offsetState=this.viewState.generateOffsetState(this.offset);let[e,s]=this.querySelectorAll("input");this.config.mode===lt.RANGE?ar(e,s,t):rr(e,t)}};T("calendar",Ks);T("calendar-today",tr);T("calendar-presets",er);T("calendar-previous",Xs);T("calendar-inputs",ir);T("calendar-next",js);T("calendar-months",Qs);T("calendar-month",Js);T("calendar-year",Zs);function Yo(i,t,e,s){let r=!1,a=i.hasAttribute("readonly");return y(i,"click",n=>{if(r||a)return;let l=n.target.closest("[data-date]");if(!l)return;let o=Me(l);s.isValid(o)&&t.select(o)}),y(i,"mouseover",n=>{if(r||a)return;let l=n.target.closest("[data-date]");if(!l)return;let o=Me(l);s.isValid(o)&&t.activate(o)}),y(i,"mouseout",()=>{r||a||t.activate(null)}),y(i,"focusin",n=>{if(r||a)return;let l=n.target.closest("[data-date]");if(!l)return;let o=Me(l);s.isValid(o)&&t.activate(o)}),y(i,"keydown",n=>{if(r)return;let l=n.target.closest("[data-date]");if(!l)return;let o=!0,u,d=Me(l),c=f=>{let m=d.getCopy(),p=Math.sign(f),w=366;for(m.setDay(m.getDay()+f);!s.isValid(m)&&w>0;)m.setDay(m.getDay()+p),w--;d=m};switch(n.key){case"ArrowRight":u="forward",c(1);break;case"ArrowLeft":u="backward",c(-1);break;case"ArrowUp":u="backward",c(-7);break;case"ArrowDown":u="forward",c(7);break;case"Home":e.previousMonth();break;case"End":e.nextMonth();break;case"PageUp":n.shiftKey,e.previousMonth();break;case"PageDown":n.shiftKey,e.nextMonth();break;default:o=!1}if(o){n.preventDefault(),n.stopPropagation();let f=Array.from(i.querySelectorAll("[data-date]")).find(m=>Me(m).isSameDay(d));!f&&u&&(u==="forward"?e.nextMonth():e.previousMonth(),f=Array.from(i.querySelectorAll("[data-date]")).find(m=>Me(m).isSameDay(d))),f?.querySelector("button,ui-button")?.focus()}}),{enable(){r=!1},disable(){r=!0}}}function Me(i){return!i||!i.hasAttribute("data-date")?null:g.fromIsoDateString(i.getAttribute("data-date"))}function rr(i,t){sr(i);let e=G(),s=e(()=>{let r=t.selectable.getValue();i.value=r||""});t.observable.subscribe(B.SELECTION,s),s(),i.addEventListener("change",e(()=>{let r=i.valueAsDate;r?(t.selectable.setValue(g.fromLocalDate(r).toIsoDateString()),t.viewState.setDate(g.fromLocalDate(r))):t.selectable.setValue("")}))}function ar(i,t,e){sr(i),sr(t);let s=G(),r=s(()=>{let{start:n,end:l}=e.selectable.getValue()||{};i.value=n||"",t.value=l||""}),a=s(()=>{let n=i.valueAsDate,l=t.valueAsDate;n&&l?e.selectable.setValue({start:g.fromLocalDate(n).toIsoDateString(),end:g.fromLocalDate(l).toIsoDateString()}):n?e.selectable.setValue({start:g.fromLocalDate(n).toIsoDateString(),end:null}):e.selectable.setValue({start:null,end:null})});e.observable.subscribe(B.SELECTION,r),r(),i.addEventListener("change",a),t.addEventListener("change",a)}function sr(i){y(i,"change",t=>t.stopPropagation()),y(i,"input",t=>t.stopPropagation())}var or=class extends Z{bootWithCalendar(t){let e=t.config.mode===lt.RANGE;this.calendar=t,this._disableable=new V(this),this._disableable.onInitAndChange(u=>{this.calendar.disabled=u}),this.observable=new Le,this.selectable=new Wi(this.calendar.selectable,this.observable),this.viewState=this.calendar.viewState,this.querySelector("ui-selected-date")?.bootWithCalendar(),this.querySelector("ui-date-picker-select")?.bootWithCalendar();let s=this.querySelector("dialog");if(!s)return;let r=this.querySelector("input");r=s?.contains(r)?null:r;let a=Array.from(this.querySelectorAll("input")).find(u=>u!==r);a=s?.contains(a)?null:a,r&&r.addEventListener("click",u=>u.preventDefault()),a&&a.addEventListener("click",u=>u.preventDefault());let n=this.querySelector("button,ui-button");n=s?.contains(n)?null:n;let l=K(this.calendar,"calendar");if(this.triggerEl=r||n,!this.triggerEl)return;if(h(this.triggerEl,"role","combobox"),h(this.triggerEl,"aria-controls",l),this._disableable.onInitAndChange(u=>{u?h(this.triggerEl,"disabled",""):x(this.triggerEl,"disabled")}),this._dialogable=new xe(s,{clickOutside:!this.hasAttribute("disable-click-outside"),triggers:[n,r,a].filter(Boolean)}),this._closeable=new Lt(this),this._closeable.onClose(()=>this._dialogable.hide()),this._anchorable=new it(s,{reference:this.triggerEl,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0}),ca()&&(r&&this.showIOSOverlay(r),a&&this.showIOSOverlay(a)),this.querySelectorAll("button,ui-button").forEach(u=>{u!==this.triggerEl&&(s.contains(u)||(h(u,"aria-controls",l),h(u,"aria-haspopup","combobox"),ja(u,this._dialogable),y(u,"click",()=>this._dialogable.toggle())))}),zo(this,this.triggerEl,s,this._dialogable,this._anchorable),ja(this.triggerEl,this._dialogable),Xo(this,this._dialogable),Go(this.triggerEl,this._dialogable),jo(this,this.calendar.config.mode,this.observable,this.selectable,this._dialogable),e&&s&&r&&a)nr(r),nr(a),ar(r,a,this);else if(s&&r){let u=r;nr(u),rr(u,this)}else s&&Ko(n,this._dialogable);this._controllable=new U(this,{bubbles:!0}),this.calendar.addEventListener("change",u=>u.stopPropagation()),this.calendar.addEventListener("input",u=>u.stopPropagation()),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.selectable.getValue()});let o=G();this._controllable.initial(u=>u&&this.selectable.setValue(u)),this._controllable.getter(()=>this.selectable.getValue()),this._controllable.setter(o(u=>this.selectable.setValue(u))),this.observable.subscribe(B.SELECTION,o(()=>{this.dispatchEvent(new Event("select",{bubbles:!1,cancelable:!0})),this._controllable.dispatch()})),this.observable.subscribe(B.SELECTION,()=>{this._submittable.update(this.selectable.getValue())}),this.observable.subscribe(B.VIEW_CHANGE,()=>{this.dispatchEvent(new Event("navigate",{bubbles:!1,cancelable:!0}))})}unmount(){if(this._dialogable?.getState()){let{unlock:t}=ot();t()}}showIOSOverlay(t){let e=document.createElement("button");e.setAttribute("data-flux-ios-overlay",""),e.setAttribute("data-appended",""),e.classList.add("absolute","inset-0"),t.after(e)}input(){return this.querySelector("input")}clear(){this.selectable.setValue(null),this.dispatchEvent(new CustomEvent("clear",{bubbles:!1}))}open(){this._dialogable.setState(!0)}close(){this._dialogable.setState(!1)}trigger(){return this.triggerEl}},lr=class extends I{bootWithCalendar(){if(this.picker=this.closest("ui-date-picker"),this.querySelectorAll("[data-appended]").forEach(t=>t.remove()),!this.querySelector('template[name="date"]')){let t=document.createElement("template");t.setAttribute("name","date"),t.innerHTML="
",this.appendChild(t)}this.templates={placeholder:this.querySelector('template[name="placeholder"]'),date:this.querySelector('template[name="date"]')},this.picker.observable.subscribe(B.SELECTION,()=>{this.render(this.picker)}),this.render(this.picker)}render(t){if(this.templates.placeholder?.clearPlaceholder?.(),this.templates.date?.clearDate?.(),t.selectable.hasSelection()){let{cleanup:e}=at(this.templates.date,s=>s({slots:{default:t.selectable.display(this.picker.calendar.config.locale)}}));this.templates.date.clearDate=e}else{if(!this.templates.placeholder)return;let{cleanup:e}=at(this.templates.placeholder,s=>s({slots:{}}));this.templates.placeholder.clearPlaceholder=e}}},ur=class extends I{bootWithCalendar(){this.picker=this.closest("ui-date-picker"),this.picker.selectable.blockSyncIf(()=>this.getBoundingClientRect().width>0),we(this,()=>this.picker._disableable.isDisabled(),()=>{this.picker.selectable.sync(),this.picker._dialogable.setState(!1)})}};T("date-picker",or);T("date-picker-select",ur);T("selected-date",lr);Ve(({css:i})=>i` -/* For Chrome, Safari, Edge */ -ui-date-picker input[type="date"]::-webkit-calendar-picker-indicator { - display: none; - -webkit-appearance: none; -} -`);function ja(i,t){h(i,"aria-haspopup","listbox");let e=()=>{h(i,"aria-expanded",t.getState()?"true":"false"),t.getState()?h(i,"data-open",""):x(i,"data-open","")};t.onChange(()=>{e()}),e()}function zo(i,t,e,s,r){let a=()=>{Array.from([i,e]).forEach(n=>{s.getState()?h(n,"data-open",""):x(n,"data-open","")}),s.getState()&&r.reposition()};s.onChange(()=>a()),a(),s.onChange(()=>{s.getState()?i.dispatchEvent(new Event("open",{bubbles:!1,cancelable:!1})):i.dispatchEvent(new Event("close",{bubbles:!1,cancelable:!1}))})}function Go(i,t){y(i,"keydown",e=>{["ArrowDown","ArrowUp","Escape"].includes(e.key)&&(e.key==="ArrowDown"||e.key==="ArrowUp"?t.getState()||(t.setState(!0),e.preventDefault(),e.stopImmediatePropagation()):e.key==="Escape"&&t.getState()&&t.setState(!1))})}function Ko(i,t){y(i,"click",()=>{t.setState(!t.getState())})}function nr(i){y(i,"focus",()=>i.select())}function Xo(i,t){let{lock:e,unlock:s}=ot(t.el);t.onChange(()=>{t.getState()?e():s()})}function jo(i,t,e,s,r){let a=t!==lt.MULTIPLE;if(i.hasAttribute("close")){let n=i.getAttribute("close");a=n.split(" ").includes("auto"),n==="manual"&&(a=!1)}a&&e.subscribe(B.SELECTION,()=>{s.hasSelection()&&r.setState(!1)})}var hr=class extends Z{boot(){h(this,"role","group"),this.config={submit:this.getAttribute("submit")||"cmd-enter",rows:Number(this.getAttribute("rows"))||2,maxRows:Number(this.getAttribute("max-rows"))||10};let t=this.querySelector("textarea"),e=this.querySelector("ui-editor");t?(this._inputEl=t,this._initTextarea()):(this._inputEl=e,this._initEditor()),this.state={onChanges:[],getValue:()=>this._inputEl.value,setValue:r=>{this._inputEl.value=r,this.state.onChanges.forEach(a=>a(this.state.getValue()))},onChange:r=>{this.state.onChanges.push(r)}},this._controllable=new U(this),this._disableable=new V(this),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.state.getValue()}),this.state.onChange(r=>{this._submittable.update(r)}),this._controllable.initial(r=>r&&this.state.setValue(r)),this._controllable.getter(()=>this.state.getValue()),this._controllable.setter(r=>this.state.setValue(r));let s=()=>{};this._disableable.onInitAndChange(r=>{r?(s=this._disableActions(),h(this._inputEl,"disabled","")):(s(),s=()=>{},x(this._inputEl,"disabled"))}),y(this._inputEl,"input",r=>{this._controllable.dispatch(),r.stopPropagation()})}_resizeTextarea(){h(this._inputEl,"style","height: auto");let t=window.getComputedStyle(this._inputEl),e=this._inputEl.scrollHeight,s=parseFloat(t.lineHeight);isNaN(s)&&(s=parseFloat(t.fontSize)*1.2);let r=parseFloat(t.borderTopWidth),a=parseFloat(t.borderBottomWidth),n=parseFloat(t.paddingTop),l=parseFloat(t.paddingBottom),o=this.config.rows*s,u=this.config.maxRows*s;t.boxSizing==="border-box"?(e+=r+a,o+=n+l+r+a,u+=n+l+r+a):e-=n+l,eu&&(e=u,d="auto"),h(this._inputEl,"style",`height: ${e}px; overflow-y: ${d}`)}focusInput(){this._inputEl.focus()}_resizeEditor(){let t=this._inputEl.querySelector('[data-slot="content"]');if(!t)return;let e=window.getComputedStyle(t),s=parseFloat(e.lineHeight);isNaN(s)&&(s=parseFloat(e.fontSize)*1.2);let r=parseFloat(e.borderTopWidth),a=parseFloat(e.borderBottomWidth),n=parseFloat(e.paddingTop),l=parseFloat(e.paddingBottom),o=this.config.rows*s,u=this.config.maxRows*s;e.boxSizing==="border-box"&&(o+=n+l+r+a,u+=n+l+r+a),h(t,"style",`min-height: ${o}px; max-height: ${u}px; height: auto; overflow-y: auto;`)}_initTextarea(){this._inputEl.hasAttribute("rows")||h(this._inputEl,"rows",this.config.rows),this.hasAttribute("placeholder")&&h(this._inputEl,"placeholder",this.getAttribute("placeholder")),this._inputEl.addEventListener("input",()=>this._resizeTextarea()),this._resizeTextarea(),y(this._inputEl,"keydown",t=>this._handleSubmitKeydown(t))}_initEditor(){this.hasAttribute("placeholder")&&h(this._inputEl,"placeholder",this.getAttribute("placeholder")),this.addEventListener("flux:editor:ready",()=>{this._resizeEditor()}),y(this._inputEl,"keydown",t=>this._handleSubmitKeydown(t),{capture:!0})}_handleSubmitKeydown(t){["cmd-enter","super-enter","ctrl-enter"].includes(this.config.submit)&&(t.metaKey||t.ctrlKey)&&t.key==="Enter"?(t.preventDefault(),t.stopPropagation(),this._submittable.submitEnclosingForm()):this.config.submit==="enter"&&t.key==="Enter"&&!t.shiftKey?(t.preventDefault(),t.stopPropagation(),this._submittable.submitEnclosingForm()):this.config.submit==="shift-enter"&&t.key==="Enter"&&t.shiftKey&&(t.preventDefault(),t.stopPropagation(),this._submittable.submitEnclosingForm())}_disableActions(){let t=[];return this.querySelectorAll("button").forEach(s=>{s.hasAttribute("disabled")||(h(s,"disabled",""),t.push(()=>{dt(s,"disabled")}))}),()=>{t.forEach(s=>s()),t=[]}}};T("composer",hr);var cr=class extends I{boot(){this._controllable=new U(this),this._controllable.initial(t=>t!=null&&this.setValue(parseFloat(t))),this._controllable.getter(()=>this.currentValue),this._controllable.setter(t=>this.setValue(parseFloat(t))),h(this,"role","progressbar"),h(this,"aria-valuemin",0),this.currentValue===void 0&&this.setValue(this.hasAttribute("value")?parseFloat(this.getAttribute("value")):0),new MutationObserver(()=>this.updateVisual()).observe(this,{attributes:!0,attributeFilter:["max"]})}setValue(t){this.currentValue=t,this.updateVisual()}updateVisual(){let t=this.hasAttribute("max")?parseFloat(this.getAttribute("max")):100,e=Math.max(0,Math.min(100,this.currentValue/t*100));this.style.setProperty("--flux-progress",e),this.style.setProperty("--flux-progress-percentage",e+"%"),h(this,"aria-valuenow",this.currentValue),h(this,"aria-valuemax",t)}};T("progress",cr);var dr=class extends I{boot(){let t=this.trigger(),e=this.overlay();this._disabled=this.hasAttribute("disabled"),this._popoverable=new rt(e);let s={getBoundingClientRect:()=>({x:0,y:0,width:0,height:0,top:0,left:0,right:0,bottom:0})};this._anchorable=new it(e,{reference:s,auto:!1,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0});let{lock:r,unlock:a}=ot(this._popoverable.el);this._popoverable.onChange(()=>{this._popoverable.getState()?r():a()}),y(t,"contextmenu",n=>{n.preventDefault(),s.getBoundingClientRect=()=>({x:n.clientX,y:n.clientY,width:0,height:0,top:n.clientY,left:n.clientX,right:n.clientX,bottom:n.clientY}),this._anchorable.reposition(),this._popoverable.setState(!0),this.hasAttribute("detail")&&h(e,"data-detail",this.getAttribute("detail"))}),this.hasAttribute("detail")&&h(e,"data-detail","")}unmount(){if(this.overlay()?._popoverable?.getState()){let{unlock:t}=ot();t()}}trigger(){return this.firstElementChild}overlay(){if(this.hasAttribute("target")){let t=this.getAttribute("target");return document.getElementById(t)}else return this.lastElementChild.matches("[popover]")&&this.lastElementChild}};T("context",dr);var _t=class extends kt{groupOfType=st;boot({options:t}){t({wrap:!1,ensureTabbable:!0})}mount(){this.options().ensureTabbable&&this.ensureTabbable()}focusFirst(){let t;t=t||this.walker().find(e=>e.hasAttribute("autofocus")),t=t||this.walker().find(e=>e.getAttribute("tabindex")==="0"),t=t||this.walker().find(e=>e.getAttribute("tabindex")==="-1"),t=t||this.walker().find(e=>oa(e)),t?.focus()}focusPrev(){this.moveFocus(t=>this.options().wrap?this.walker().prevOrLast(t):this.walker().prev(t))}focusNext(){this.moveFocus(t=>this.options().wrap?this.walker().nextOrFirst(t):this.walker().next(t))}focusBySearch(t){let e=this.walker().find(s=>s.textContent.toLowerCase().trim().startsWith(t.toLowerCase()));e?.use(st).tabbable(),e?.use(st).focus()}moveFocus(t){let e=this.walker().find(r=>r.use(st).isTabbable());t(e)?.use(st).focus()}ensureTabbable(){this.walker().findOrFirst(t=>{t.use(st).isTabbable()})?.use(st).tabbable()}wipeTabbables(){this.walker().each(t=>{t.use(st).untabbable()})}untabbleOthers(t){this.walker().each(e=>{e!==t&&e.use(st).untabbable()})}walker(){return tt(this.el,(t,{skip:e,reject:s})=>{if(t[this.constructor.name]&&t!==this.el)return s();if(!t[this.groupOfType.name])return e();if(t.hasAttribute("disabled"))return s()})}},st=class extends X{groupedByType=_t;boot({options:t}){t({hover:!1,disableable:null,tabbable:!1,tabbableAttr:null})}mount(){let t=this.options().disableable;if(!t)throw"Focusable requires a Disableable instance...";this.el.hasAttribute("tabindex")||(this.options().tabbable?this.tabbable():this.untabbable()),this.pauseFocusListener=this.on("focus",t.enabled(()=>{this.focus(!1)})).pause,this.on("focus",t.enabled(()=>{ee()&&h(this.el,"data-focus","")})),this.on("blur",t.enabled(()=>{x(this.el,"data-focus")})),this.options().hover&&this.on("pointerenter",t.enabled(()=>{this.group()?.untabbleOthers(this.el),this.tabbable()})),this.options().hover&&this.on("pointerleave",t.enabled(e=>{this.untabbable()}))}focus(t=!0){this.group()?.untabbleOthers(this.el),this.tabbable(),t&&this.pauseFocusListener(()=>{this.el.focus({focusVisible:!1})})}tabbable(){h(this.el,"tabindex","0"),this.options().tabbableAttr&&h(this.el,this.options().tabbableAttr,"")}untabbable(){h(this.el,"tabindex","-1"),this.options().tabbableAttr&&x(this.el,this.options().tabbableAttr)}isTabbable(){return this.el.getAttribute("tabindex")==="0"}};var ii=class i extends I{boot(){if(this._focusable=new _t(this,{wrap:!1,ensureTabbable:!1}),y(this,"keydown",t=>{["ArrowDown"].includes(t.key)?(t.target===this?this._focusable.focusFirst():this._focusable.focusNext(),t.preventDefault(),t.stopPropagation()):["ArrowUp"].includes(t.key)&&(t.target===this?this._focusable.focusFirst():this._focusable.focusPrev(),t.preventDefault(),t.stopPropagation())}),xi(this,t=>this._focusable.focusBySearch(t)),this.hasAttribute("popover")&&this.addEventListener("lofi-close-popovers",t=>{this.hasAttribute("keep-open")||(t.detail?.immediate?this.hidePopover():setTimeout(()=>this.hidePopover(),50))}),this.parentElement.localName==="ui-dropdown"){let t=this.parentElement;y(t.trigger(),"keydown",e=>{e.key==="ArrowDown"&&(this.fromArrowDown=!0,this.showPopover(),e.preventDefault(),e.stopPropagation())})}h(this,"role","menu"),h(this,"tabindex","-1")}mount(){this.initializeMenuItems(),new MutationObserver(e=>{this.initializeMenuItems()}).observe(this,{childList:!0,subtree:!0})}onPopoverShow(){requestAnimationFrame(()=>{this.fromArrowDown?(this._focusable.focusFirst(),this.fromArrowDown=!1):this.focus()})}onPopoverHide(){this._focusable.wipeTabbables()}initializeMenuItems(){this.walker().each(t=>{t._disableable||Jo(t)})}walker(){return tt(this,(t,{skip:e,reject:s})=>{if(t instanceof i||t instanceof ce)return s();if(!["a","button"].includes(t.localName))return e()})}},fr=class extends I{boot(){}},pr=class extends I{boot(){let t=this;this._disableable=new V(this),this._disableable.onInitAndChange(s=>{s?h(t,"aria-disabled","true"):x(t,"aria-disabled")}),K(t,"menu-checkbox"),h(t,"role","menuitemcheckbox"),t._focusable=new st(t,{disableable:this._disableable,hover:!0,tabbableAttr:"data-active"}),t._selectable=new Y(t,{toggleable:!0,value:this.hasAttribute("value")?this.getAttribute("value"):t.textContent.trim(),label:this.hasAttribute("label")?this.getAttribute("label"):t.textContent.trim(),dataAttr:"data-checked",ariaAttr:"aria-checked",selectedInitially:this.hasAttribute("checked")}),this._controllable=new U(this),this._controllable.initial(s=>s&&t._selectable.setState(s)),this._controllable.getter(()=>t._selectable.getState());let e=G();this._controllable.setter(e(s=>{this._selectable.setState(s)})),this._selectable.onChange(e(()=>{this._controllable.dispatch()})),y(t,"click",this._disableable.enabled(()=>{this.hasAttribute("keep-open")||this.dispatchEvent(new CustomEvent("lofi-close-popovers",{bubbles:!0})),t._selectable.press()})),vr(t)}},br=class extends I{boot(){let t=this;this._disableable=new V(this),this._disableable.onInitAndChange(e=>{e?h(t,"aria-disabled","true"):x(t,"aria-disabled")}),K(t,"menu-radio"),h(t,"role","menuitemradio"),t._focusable=new st(t,{disableable:this._disableable,hover:!0,tabbableAttr:"data-active"}),t._selectable=new Y(t,{toggleable:!1,value:this.hasAttribute("value")?this.getAttribute("value"):t.textContent.trim(),label:this.hasAttribute("label")?this.getAttribute("label"):t.textContent.trim(),dataAttr:"data-checked",ariaAttr:"aria-checked",selectedInitially:this.hasAttribute("checked")}),y(t,"click",this._disableable.enabled(()=>{this.hasAttribute("keep-open")||this.dispatchEvent(new CustomEvent("lofi-close-popovers",{bubbles:!0})),t._selectable.press()})),vr(t)}},mr=class extends I{boot(){this._selectable=new ut(this),this._controllable=new U(this),h(this,"role","group"),this._controllable.initial(e=>e&&this._selectable.setState(e)),this._controllable.getter(()=>this._selectable.getState());let t=G();this._controllable.setter(t(e=>{this._selectable.setState(e)})),this._selectable.onChange(t(()=>{this._controllable.dispatch()})),y(this,"lofi-close-popovers",e=>{this.hasAttribute("keep-open")&&(e.preventDefault(),e.stopPropagation())})}},gr=class extends I{boot(){this._selectable=new ut(this,{multiple:!0}),this._controllable=new U(this),h(this,"role","group"),this._controllable.initial(e=>e&&this._selectable.setState(e)),this._controllable.getter(()=>this._selectable.getState());let t=G();this._controllable.setter(t(e=>{this._selectable.setState(e)})),this._selectable.onChange(t(()=>{this._controllable.dispatch()}))}};T("menu",ii);T("submenu",fr);T("menu-checkbox",pr);T("menu-radio",br);T("menu-radio-group",mr);T("menu-checkbox-group",gr);function vr(i){y(i,"keydown",t=>{t.key==="Enter"&&(i.click(),t.preventDefault(),t.stopPropagation())}),y(i,"keydown",t=>{t.key===" "&&(t.preventDefault(),t.stopPropagation())}),y(i,"keyup",t=>{t.key===" "&&(i.click(),t.preventDefault(),t.stopPropagation())})}function Jo(i){let t=i.querySelector("a"),e=i,s=i.parentElement.matches("ui-submenu")&&i.parentElement.querySelector("ui-menu[popover]"),r=t||e;if(i._disableable=new V(i),i._disableable.onInitAndChange(a=>{a?h(r,"aria-disabled","true"):x(r,"aria-disabled")}),K(r,"menu-item"),h(r,"role","menuitem"),r._focusable=new st(r,{disableable:i._disableable,hover:!0,tabbableAttr:"data-active"}),s){s._popoverable=new rt(s,{triggers:[e]}),s._anchorable=new it(s,{reference:e,position:s.hasAttribute("position")?s.getAttribute("position"):bt(s)?"left start":"right start",gap:s.hasAttribute("gap")?s.getAttribute("gap"):"-5",crossAxis:!0}),e.addEventListener("click",i._disableable.enabled(n=>{s._popoverable.setState(!0)}));let{clear:a}=ye(e,s,{gain(){s._popoverable.setState(!0)},lose(){s._popoverable.setState(!1)},focusable:!1,useSafeArea:!0});s._popoverable.onChange(()=>{s._popoverable.getState()||(a(),s._focusable.wipeTabbables()),s._popoverable.getState()?s._anchorable.reposition():s._anchorable.cleanup()}),y(e,"keydown",n=>{n.key==="Enter"&&(s._popoverable.setState(!0),setTimeout(()=>s._focusable.focusFirst()))}),y(e,"keydown",n=>{n.key==="ArrowRight"&&(s._popoverable.setState(!0),setTimeout(()=>s._focusable.focusFirst()))}),y(s,"keydown",n=>{n.key==="ArrowLeft"&&(s._popoverable.setState(!1),e.focus(),n.stopPropagation())})}else{let a=i._disableable.enabled(()=>{i.hasAttribute("keep-open")||i.dispatchEvent(new CustomEvent("lofi-close-popovers",{bubbles:!0,detail:{immediate:!0}}))});y(i,"mouseup",a),y(i,"click",n=>!n.isTrusted&&a()),vr(e)}}var yr=class i extends I{mount(){this._focusable=new _t(this,{wrap:!0}),this._disableable=new V(this);let t=[];this._disableable.onInitAndChange(e=>{e?(h(this,"aria-disabled","true"),this.walker().each(s=>{s.hasAttribute("disabled")||(h(s,"disabled","true"),h(s,"aria-disabled","true"),t.push(()=>{dt(s,"disabled"),dt(s,"aria-disabled")}))})):(dt(this,"aria-disabled"),t.forEach(s=>s()),t=[])}),y(this,"keydown",e=>{["ArrowRight"].includes(e.key)?(e.target===this?this._focusable.focusFirst():this._focusable.focusNext(),e.preventDefault(),e.stopPropagation()):["ArrowLeft"].includes(e.key)&&(e.target===this?this._focusable.focusFirst():this._focusable.focusPrev(),e.preventDefault(),e.stopPropagation())}),h(this,"role","toolbar"),this.initializeToolbarItems()}initializeToolbarItems(){this.walker().each(t=>{t._disableable||Zo(t)})}walker(){return tt(this,(t,{skip:e,reject:s})=>{if(t instanceof i||t.hasAttribute("popover")||t instanceof ii||t instanceof Ke)return s();if(!["a","button"].includes(t.localName))return e()})}};T("toolbar",yr);function Zo(i){i._disableable=new V(i),i._disabled=i.hasAttribute("disabled");let s=i.querySelector("a")||i;i._disabled&&(h(s,"disabled",""),h(s,"aria-disabled","true")),!i._disabled&&(s._focusable=new st(s,{disableable:i._disableable}))}var wr=class extends I{boot(){let t=this.hasAttribute("label")?"label":"description",e=this.button(),s=this.overlay();if(e){if(!s)return}else return console.warn("ui-tooltip: no trigger element found",this);s._popoverable=new rt(s,{scope:"tooltip"}),s._anchorable=new it(s,{reference:e,position:this.hasAttribute("position")?this.getAttribute("position"):void 0,gap:this.hasAttribute("gap")?this.getAttribute("gap"):void 0,offset:this.hasAttribute("offset")?this.getAttribute("offset"):void 0}),s._popoverable.onChange(()=>{s._popoverable.getState()?s._anchorable.reposition():s._anchorable.cleanup()}),this._disableable=new V(this);let r;this._disableable.onInitAndChange(u=>{r&&(r(),r=null),u||(r=ye(this,s,{gain(){s._popoverable.setState(!0)},lose(){s._popoverable.setState(!1)},focusable:!0,useSafeArea:!1}).remove)}),new MutationObserver(()=>{this.getAttribute("draggable")==="true"&&s._popoverable.setState(!1)}).observe(this,{attributeFilter:["draggable"]});let n=K(s,"tooltip"),l=this.hasAttribute("interactive"),o=this.hasAttribute("label")||e.textContent.trim()==="";l?(h(e,"aria-controls",n),h(e,"aria-expanded","false"),s._popoverable.onChange(()=>{s._popoverable.getState()?h(e,"aria-expanded","true"):h(e,"aria-expanded","false")})):(o?h(e,"aria-labelledby",n):h(e,"aria-describedby",n),h(s,"aria-hidden","true")),h(s,"role","tooltip")}button(){return this.firstElementChild}overlay(){return this.lastElementChild!==this.button()&&this.lastElementChild.tagName!=="TEMPLATE"&&this.lastElementChild}};T("tooltip",wr);var j={STATE_CHANGED:"stateChanged",DESKTOP_COLLAPSED:"desktopCollapsed",DESKTOP_EXPANDED:"desktopExpanded",MOBILE_COLLAPSED:"mobileCollapsed",MOBILE_EXPANDED:"mobileExpanded",VIEWPORT_ENTER_MOBILE:"viewportEnterMobile",VIEWPORT_ENTER_DESKTOP:"viewportEnterDesktop"},xr=class extends I{boot(){if(this.config={breakpoint:this.hasAttribute("breakpoint")?this.getAttribute("breakpoint"):1024,collapsible:!1,persist:this.hasAttribute("persist")?!["false","none"].includes(this.getAttribute("persist")):!0,sticky:!!this.hasAttribute("sticky")},this.observable=new Wt,this.state={active:!1,viewportDesktop:!0,viewportMobile:!1,collapsedMobile:!0,collapsedDesktop:!1},this.config.sticky&&this.setStickyPositionStyles(),this.hasAttribute("collapsible")){let t=this.getAttribute("collapsible");t==="true"?this.config.collapsible=!0:t==="false"?this.config.collapsible=!1:t==="mobile"&&(this.config.collapsible="mobile")}this.config.persist&&this.config.collapsible&&(this.state.collapsedDesktop=JSON.parse(localStorage.getItem("flux-sidebar-collapsed-desktop"))),this.removeAttribute("data-flux-sidebar-cloak"),this.observable.subscribe(j.VIEWPORT_ENTER_DESKTOP,()=>{let t=ps(this,"transition","none");setTimeout(t),this.state.viewportDesktop=!0,this.state.viewportMobile=!1,this.observable.notify(j.STATE_CHANGED)}),this.observable.subscribe(j.VIEWPORT_ENTER_MOBILE,()=>{let t=ps(this,"transition","none");setTimeout(t),this.state.viewportDesktop=!1,this.state.viewportMobile=!0,this.observable.notify(j.STATE_CHANGED)}),this.observable.subscribe(j.DESKTOP_COLLAPSED,()=>{this.state.collapsedDesktop=!0,this.observable.notify(j.STATE_CHANGED)}),this.observable.subscribe(j.DESKTOP_EXPANDED,()=>{this.state.collapsedDesktop=!1,this.observable.notify(j.STATE_CHANGED)}),this.observable.subscribe(j.MOBILE_COLLAPSED,()=>{this.state.collapsedMobile=!0,this.observable.notify(j.STATE_CHANGED)}),this.observable.subscribe(j.MOBILE_EXPANDED,()=>{this.state.collapsedMobile=!1,this.observable.notify(j.STATE_CHANGED)}),this.observable.subscribe(j.STATE_CHANGED,()=>{this.config.persist&&localStorage.setItem("flux-sidebar-collapsed-desktop",JSON.stringify(this.state.collapsedDesktop)),this.updateDataAttributes(this)}),new Ar(this.observable,this.config),document.addEventListener("flux-sidebar-toggle",()=>{this.state.viewportDesktop?this.state.collapsedDesktop?this.observable.notify(j.DESKTOP_EXPANDED):this.observable.notify(j.DESKTOP_COLLAPSED):this.state.collapsedMobile?this.observable.notify(j.MOBILE_EXPANDED):this.observable.notify(j.MOBILE_COLLAPSED)}),this.addEventListener("click",t=>{t.target===this&&this.state.collapsedDesktop&&this.observable.notify(j.DESKTOP_EXPANDED)}),this.addEventListener("mouseenter",t=>{this.state.active=!0,this.observable.notify(j.STATE_CHANGED)}),this.addEventListener("mouseleave",t=>{this.state.active=!1,this.observable.notify(j.STATE_CHANGED)}),this.addEventListener("focusin",t=>{this.state.active=!0,this.observable.notify(j.STATE_CHANGED)}),this.addEventListener("focusout",t=>{this.state.active=!1,this.observable.notify(j.STATE_CHANGED)})}setStickyPositionStyles(){let t=this.offsetTop,e=window.pageYOffset;e>0&&(window.scrollTo(window.scrollX,0),t=this.offsetTop,window.scrollTo(window.scrollX,e)),this.style.position="sticky",this.style.top=t+"px",this.style.maxHeight=`calc(100dvh - ${t}px)`}updateDataAttributes(t){let e=this.config.collapsible===!0;e&&(this.state.active?h(t,"data-flux-sidebar-active",""):dt(t,"data-flux-sidebar-active")),this.state.viewportDesktop?(dt(t,"data-flux-sidebar-on-mobile"),h(t,"data-flux-sidebar-on-desktop",""),dt(t,"data-flux-sidebar-collapsed-mobile"),this.state.collapsedDesktop?e&&h(t,"data-flux-sidebar-collapsed-desktop",""):dt(t,"data-flux-sidebar-collapsed-desktop")):(dt(t,"data-flux-sidebar-on-desktop"),h(t,"data-flux-sidebar-on-mobile",""),dt(t,"data-flux-sidebar-collapsed-desktop"),this.state.collapsedMobile?h(t,"data-flux-sidebar-collapsed-mobile",""):dt(t,"data-flux-sidebar-collapsed-mobile"))}},Ar=class{constructor(t,{breakpoint:e}){this.observable=t,this.breakpoint=e,this.watchForViewportChanges()}watchForViewportChanges(){let t=typeof this.breakpoint=="number"?`${this.breakpoint}px`:this.breakpoint,e=matchMedia(`(min-width: ${t})`);e.matches?this.observable.notify(j.VIEWPORT_ENTER_DESKTOP):this.observable.notify(j.VIEWPORT_ENTER_MOBILE),e.addEventListener("change",()=>{e.matches?this.observable.notify(j.VIEWPORT_ENTER_DESKTOP):this.observable.notify(j.VIEWPORT_ENTER_MOBILE)})}},Sr=class extends I{mount(){let t=this.querySelector("button,ui-button");y(t||this,"click",()=>{this.dispatchEvent(new CustomEvent("flux-sidebar-toggle",{bubbles:!0}))}),queueMicrotask(()=>{let e=document.querySelector("ui-sidebar");e.updateDataAttributes(this),e.observable.subscribe(j.STATE_CHANGED,()=>{e.updateDataAttributes(this)})})}};T("sidebar",xr);T("sidebar-toggle",Sr);var Er=class extends I{boot(){this.thumbs=this.querySelectorAll("[data-flux-slider-thumb]"),this.indicator=this.querySelector("[data-flux-slider-indicator]"),this.inputEls=this.querySelectorAll('input[type="range"]'),this.config={range:this.range(),min:this.min(),max:this.max(),step:this.step(),bigStep:this.bigStep(),minStepsBetween:this.minStepsBetween(),rangeStartString:this.rangeStartString(),rangeEndString:this.rangeEndString()},this.state={onChanges:[],getValue:()=>this.config.range?[parseFloat(this.inputEls[0].value),parseFloat(this.inputEls[1].value)]:parseFloat(this.inputEls[0].value),getValueAsArray:()=>this.config.range?this.state.getValue():[this.state.getValue()],setValue:t=>{this.config.range?(this.inputEls[0].value=t[0],this.inputEls[1].value=t[1]):this.inputEls[0].value=t,this.state.onChanges.forEach(e=>e(this.state.getValue()))},setValueInRange:(t,e)=>{let s=[...this.state.getValue()];s[t]=e,this.state.setValue(s)},setValueFromString:t=>{this.config.range?this.state.setValue(t.split(",")):this.state.setValue(t)},increment:(t,e)=>{let s=this.state.getValueAsArray();this.config.range?(s[t]=this.constrainRangeValue(t,s[t]+e),this.state.setValueInRange(t,s[t])):this.state.setValue(Xi(s[t]+e,this.config.min,this.config.max))},onChange:t=>{this.state.onChanges.push(t)}},this._controllable=new U(this),this._disableable=new V(this),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.state.getValue()}),this.state.onChange(t=>{this.repositionThumbsAndIndicator(),this.updateTicks(),this._submittable.update(t),this.config.range&&(this.inputEls[0].ariaValueText=`${t[0]} ${this.config.rangeStartString}`,this.inputEls[1].ariaValueText=`${t[1]} ${this.config.rangeEndString}`)}),this._controllable.initial(t=>t&&this.state.setValue(t)),this._controllable.getter(()=>this.state.getValue()),this._controllable.setter(t=>this.state.setValue(t)),this._disableable.onInitAndChange(t=>{t?this.inputEls.forEach(e=>e.setAttribute("disabled","")):this.inputEls.forEach(e=>e.removeAttribute("disabled"))}),this.setNativeInputAttributes(),this.setInitialValue(),this.setupExtraInputIfExists(),this.repositionTicks(),this.registerNativeInputListeners(),this.registerPointerListeners(),this.registerMutationObserver(),new ResizeObserver(()=>{this.repositionThumbsAndIndicator(),this.repositionTicks()}).observe(this)}mount(){this.setupFieldIfExists()}setNativeInputAttributes(){for(let t=0;t input");t&&(this.extraInput=t,this._disableable.onInitAndChange(e=>{e?h(t,"disabled",""):x(t,"disabled")}))}setupFieldIfExists(){let t=this.closest("ui-field");t&&queueMicrotask(()=>{t.label&&y(t.label,"click",()=>this.inputEls[0].focus()),t.label&&this.extraInput&&h(this.extraInput,"aria-labelledby",t.label.id),t.description&&this.extraInput&&h(this.extraInput,"aria-describedby",t.description.id);for(let e=0;e{e.stopPropagation()}),y(this.inputEls[t],"change",e=>{let s=parseFloat(e.target.value);this.config.range?(s=this.constrainRangeValue(t,s),this.state.setValueInRange(t,s)):this.state.setValue(s),this._controllable.dispatch(),e.stopPropagation()}),y(this.inputEls[t],"keydown",e=>{if(e.shiftKey){switch(e.key){case"ArrowUp":this.state.increment(t,this.config.bigStep);break;case"ArrowDown":this.state.increment(t,this.config.bigStep*-1);break;case"ArrowRight":this.state.increment(t,this.config.bigStep*(bt(this)?-1:1));break;case"ArrowLeft":this.state.increment(t,this.config.bigStep*(bt(this)?1:-1));break;default:return}this._controllable.dispatch(),e.preventDefault()}}),y(this.inputEls[t],"focus",()=>this.raiseThumb(t)),y(this.inputEls[t],"blur",()=>this.lowerThumb(t))}registerPointerListeners(){y(this,"pointerdown",t=>{if(this._disableable.isDisabled()||t.button!==0)return;let e=this.getThumbIndexFromX(t.clientX),s=this.thumbs[e].getBoundingClientRect(),r=s.left+s.width/2,a=0;Math.abs(t.clientX-r){let d=this.getValueFromX(u.clientX-a);this.config.range&&(d=this.constrainRangeValue(e,d));let c=[...l];c[e]=d,l.toString()!==c.toString()&&(l=c,this.config.range?this.state.setValueInRange(e,d):this.state.setValue(d),this.dispatchEvent(new Event("input",{bubbles:!1,cancelable:!0})))};o(t),this.setPointerCapture(t.pointerId),requestAnimationFrame(()=>{this.inputEls[e].focus()}),document.addEventListener("pointermove",o),document.addEventListener("pointerup",u=>{document.removeEventListener("pointermove",o),this.releasePointerCapture(u.pointerId),requestAnimationFrame(()=>{this.lowerThumb(e)}),n.toString()!==l.toString()&&this.dispatchEvent(new Event("change",{bubbles:!1,cancelable:!0}))},{once:!0})})}registerMutationObserver(){new MutationObserver(()=>{this.config.min=this.min(),this.config.max=this.max(),this.config.step=this.step(),this.config.bigStep=this.bigStep(),this.config.minStepsBetween=this.minStepsBetween(),this.setNativeInputAttributes(),this.repositionThumbsAndIndicator(),this.repositionTicks()}).observe(this,{attributes:!0,attributeFilter:["min","max","step","big-step","min-steps-between"]})}repositionThumbsAndIndicator(){if(this.config.range){let t=this.state.getValue(),e=this.getPercentageFromValue(t[0]),s=this.getPercentageFromValue(t[1]);this.thumbs[0].style.insetInlineStart=e+"%",this.thumbs[1].style.insetInlineStart=s+"%",this.indicator.style.insetInlineStart=e+"%",this.indicator.style.insetInlineEnd=100-s+"%"}else{let t=this.state.getValue(),e=this.getPercentageFromValue(t);this.thumbs[0].style.insetInlineStart=e+"%",this.indicator.style.insetInlineStart=0,this.indicator.style.insetInlineEnd=100-e+"%"}}repositionTicks(){this.querySelectorAll("[data-flux-slider-tick]").forEach(t=>{let e=parseFloat(t.getAttribute("data-value"));if(isNaN(e))return;let s=this.getPercentageFromValue(e);h(t,"style",`inset-inline-start: ${s}%`)})}updateTicks(){let t=this.state.getValueAsArray(),e=this.config.range?t:[this.state.min,t[0]];this.querySelectorAll("[data-flux-slider-tick]").forEach(s=>{let r=parseFloat(s.getAttribute("data-value"));if(!isNaN(r)){for(let a=0;a=e[0]||r<=e[1]?h(s,"data-active",""):x(s,"data-active")}})}raiseThumb(t){this.thumbs[t].style.zIndex=10}lowerThumb(t){this.thumbs[t].style.zIndex=null}getThumbIndexFromX(t){let e,s;for(let r=0;r=1)s=t.toString().split(".")[1]?.length||0;else{let a=t.toExponential().split("e-"),n=a[0].split(".")[1];s=(n?n.length:0)+parseInt(a[1],10)}let r=Math.round((i-e)/t)*t+e;return Number(r.toFixed(s))}T("slider",Er);var _r=class extends Z{boot(){let t=this;this._disableable=new V(this),this._selectable=new Y(t,{toggleable:!0,dataAttr:"data-checked",ariaAttr:"aria-checked",value:this.hasAttribute("value")?this.getAttribute("value"):null,label:this.hasAttribute("label")?this.getAttribute("label"):null,selectedInitially:this.hasAttribute("checked")}),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.getAttribute("value")??"on",includeWhenEmpty:!1,shouldUpdateValue:!1}),this.value=this._selectable.getValue(),this._detangled=G(),this._selectable.onChange(this._detangled(()=>{this.dispatchEvent(new Event("input",{bubbles:!1,cancelable:!0})),this.dispatchEvent(new Event("change",{bubbles:!1,cancelable:!0}))})),h(t,"role","switch"),this._selectable.onInitAndChange(()=>{this._submittable.update(this._selectable.getState())}),this._disableable.onInitAndChange(e=>{e?x(t,"tabindex","0"):h(t,"tabindex","0")}),y(t,"click",this._disableable.disabled(e=>{e.preventDefault(),e.stopPropagation()}),{capture:!0}),y(t,"click",this._disableable.enabled(e=>{this._selectable.press()})),y(t,"keydown",this._disableable.enabled(e=>{e.key==="Enter"&&(this._selectable.press(),e.preventDefault(),e.stopPropagation())})),y(t,"keydown",this._disableable.enabled(e=>{e.key===" "&&(e.preventDefault(),e.stopPropagation())})),y(t,"keyup",this._disableable.enabled(e=>{e.key===" "&&(this._selectable.press(),e.preventDefault(),e.stopPropagation())})),tl(t)}get checked(){return this._selectable.isSelected()}set checked(t){this._detangled(()=>{t?this._selectable.select():this._selectable.deselect()})()}};function tl(i){i.closest("label")?.addEventListener("click",t=>{i.contains(t.target)||i.click()})}T("switch",_r);var kr=class i extends I{mount(){this.control=this.fieldWalker().find(t=>this.isControl(t)),this.control}associateLabelWithControl(t){t&&this.label&&(this.control=t,!this.control.hasAttribute("aria-labelledby")&&(h(this.elOrButton(this.control),"aria-labelledby",this.label.id),this.control&&!(this.control instanceof Z)&&this.hasAttribute("disabled")&&this.control.setAttribute("disabled","")))}associateDescriptionWithControl(t){t&&this.description&&(this.control=t,!this.control.hasAttribute("aria-describedby")&&h(this.elOrButton(this.control),"aria-describedby",this.description.id))}associateLabel(t){this.label=t,y(t,"click",e=>{["a","button","ui-button"].includes(e.target.localName)||this.focusOrTogggle(this.control)}),this.control&&this.associateLabelWithControl(this.control)}associateDescription(t){this.description=t,this.control&&this.associateDescriptionWithControl(this.control)}fieldWalker(){return tt(this,(t,{skip:e,reject:s})=>{if(t instanceof i&&t!==this||t.parentElement.localName==="ui-editor"&&t!==this)return s()})}isControl(t){return!!(t instanceof Z||t.matches("input, textarea, select"))}focusOrTogggle(t){if(!t||t.disabled||t.hasAttribute("disabled"))return;t.localName==="input"&&["checkbox","radio"].includes(t.type)||["ui-switch","ui-radio","ui-checkbox"].includes(t.localName)?(t.click(),t.focus()):t.localName==="input"&&["file"].includes(t.type)?t.click():["ui-select","ui-date-picker","ui-time-picker","ui-otp"].includes(t.localName)?t.trigger()?.focus():["ui-editor"].includes(t.localName)?t.focus():["ui-composer"].includes(t.localName)?t.focusInput():t.focus()}elOrButton(t){return t instanceof I&&t.firstElementChild instanceof HTMLButtonElement?t.firstElementChild:t}},Cr=class extends I{mount(){K(this,"label"),h(this,"aria-hidden","true"),this.closest("ui-field")?.associateLabel(this)}},Tr=class extends I{mount(){K(this,"description"),h(this,"aria-hidden","true"),this.closest("ui-field")?.associateDescription(this)}};T("field",kr);T("label",Cr);T("description",Tr);var Dr=class extends I{mount(){let t=K(this,"legend"),e=this.closest("fieldset");e&&h(e,"aria-labelledby",t)}};T("legend",Dr);function en(i){let t={time:nl,linear:il,categorical:el},e=0,s=0,r={},a=(l,o,u)=>{let d=`${l}-${o}`;for(let c in r)c.startsWith(`${l}-`)&&!c.endsWith(String(o))&&delete r[c];return r[d]||(r[d]=u()),r[d]},n={locale:i.locale,data:[],stacksMetadata:i.stacksMetadata,groupsMetadata:i.groupsMetadata,width:i.width,height:i.height,inset:i.inset,axes:{x:{axis:"x",key:i.axes.x.key,format:i.axes.x.format,inset:{start:0,end:0},position:i.axes.x.position||"bottom",tickStart:i.axes.x.tickStart,tickEnd:i.axes.x.tickEnd,tickCount:i.axes.x.tickCount,tickStep:i.axes.x.tickStep,tickValues:i.axes.x.tickValues,tickSuffix:i.axes.x.tickSuffix,tickPrefix:i.axes.x.tickPrefix,asArea:i.axes.x.asArea,get rawValues(){return a("x.rawValues",e,()=>n.data.map(l=>l[this.key]))},get type(){return a("x.type",e,()=>i.axes.x.scale||(this.rawValues.every(l=>rl(l))?"time":"categorical"))},get interval(){return a("x.interval",e,()=>i.axes.x.interval||"auto")},get values(){return a("x.values",e,()=>this.rawValues.map(l=>this.type==="time"?Ji(l):this.type==="linear"?Number(l):l))},get points(){return a("x.points",e+s,()=>n.data.map(l=>{let{start:o,center:u,end:d,width:c}=this.scale(l[this.key],{area:this.asArea});return{start:o,center:u,end:d,width:c,datum:l}}))},get ticks(){return a("x.ticks",e,()=>{let l=Ja(n.data,this,ji(this.type,this.values)),o=Za(l,this.type,this.format,this.tickSuffix,this.tickPrefix,this.interval,n.locale);return l.map((u,d)=>({value:u,label:o[d]}))})},get domain(){return a("x.domain",e,()=>ji(this.type,[...this.ticks.map(l=>l.value),...this.values]))},get range(){return a("x.range",s,()=>[n.inset.left+this.inset.start,n.width-n.inset.right-this.inset.end])},get scale(){return a("x.scale",s+e,()=>t[this.type](this.domain,this.range,this.values))}},y:{axis:"y",keys:i.axes.y.keys,format:i.axes.y.format,inset:{start:0,end:0},position:i.axes.y.position||"left",tickStart:i.axes.y.tickStart,tickEnd:i.axes.y.tickEnd,tickCount:i.axes.y.tickCount,tickStep:i.axes.y.tickStep,tickValues:i.axes.y.tickValues,tickSuffix:i.axes.y.tickSuffix,tickPrefix:i.axes.y.tickPrefix,get values(){return a("y.values",e,()=>{let l=n.data.flatMap(d=>n.groupsMetadata.reduce((c,f)=>(f.children.forEach(m=>{if(m.type==="bar"){if(!m.field||d[m.field]===void 0)return;c.push(d[m.field])}if(m.type==="stack"){let p=Number(m.gap.replace("px","")),w=0,A=0,_=!1,L=!1;m.children.forEach(O=>{if(O.type==="bar"){if(!O.field||d[O.field]===void 0)return;let E=d[O.field];E>=0?(_&&(w+=p),w+=E,_=!0):(L&&(A-=p),A+=E,L=!0)}}),_&&c.push(w),L&&c.push(A)}}),c),[])),o=n.data.flatMap(d=>n.stacksMetadata.reduce((c,f)=>{let m=Number(f.gap.replace("px","")),p=0,w=0,A=!1,_=!1;return f.children.forEach(L=>{if(L.type==="bar"){if(!L.field||d[L.field]===void 0)return;let O=d[L.field];O>=0?(A&&(p+=m),p+=O,A=!0):(_&&(w-=m),w+=O,_=!0)}}),A&&c.push(p),_&&c.push(w),c},[])),u=n.data.flatMap(d=>this.keys.reduce((c,f)=>(d[f]===void 0||c.push(d[f]),c),[]));return[...l,...o,...u]})},get type(){return a("y.type",e,()=>i.axes.y.scale||"linear")},get interval(){return a("y.interval",e,()=>i.axes.y.interval||"auto")},get ticks(){return a("y.ticks",e,()=>{let l=Ja(n.data,this,ji(this.type,this.values)),o=Za(l,this.type,this.format,this.tickSuffix,this.tickPrefix,this.interval,n.locale);return l.map((u,d)=>({value:u,label:o[d]}))})},get domain(){return a("y.domain",e,()=>ji(this.type,[...this.ticks.map(l=>l.value),...this.values]))},get range(){return a("y.range",s,()=>[n.height-n.inset.bottom-this.inset.end,n.inset.top+this.inset.start])},get scale(){return a("y.scale",s+e,()=>t[this.type](this.domain,this.range,this.values))}}},get series(){return a("series",e+s,()=>this.axes.y.keys.reduce((l,o)=>{if(!n.data[0].hasOwnProperty(o))return console.warn(`ui-chart: series field "${o}" does not exist`),l;let u=n.data.map(c=>({x:n.axes.x.scale(c[n.axes.x.key],{area:n.axes.x.asArea}).center,y:n.axes.y.scale(c[o]).center,datum:c})),d={field:o,values:n.data.map(c=>c[o]),bars({barWidth:c,minHeight:f,radius:m}){let{start:p,center:w,width:A}=n.axes.x.scale(n.axes.x.domain[0],{area:n.axes.x.asArea}),_=m;c.match(/^(\d+)%$/)?c=A*Number(c.replace("%",""))/100:c=Number(c.replace("px",""));let L=(A-c)/2;return n.data.map(O=>{let E=O[o],{start:b}=n.axes.x.scale(O[n.axes.x.key],{area:n.axes.x.asArea}),q=b+L,S=E>=0?n.axes.y.scale(E).center:n.axes.y.scale(0).center,N=E>=0?n.axes.y.scale(0).center-S:n.axes.y.scale(E).center-S,F=c,v=_;return NPe(q,S,F,N,v)}})},linePath(c="smooth"){let f=this.points.map(m=>[m.x,m.y]);return{smooth:Qa,none:tn}[c](f)},areaPath(c="smooth"){let f={smooth:Qa,none:tn}[c](this.points.map(_=>[_.x,_.y])),m=this.points[0].x,p=this.points[this.points.length-1].x,w=n.axes.y.scale(n.axes.y.domain[0]).center;return`${f} L${p},${w} L${m},${w} Z`},points:u};return l[o]=d,l},{}))},get stackedSeries(){return a("stackedSeries",e+s,()=>{let l={},o=[];return n.stacksMetadata.map(u=>(u.children.forEach(c=>{if(c.type==="bar"){if(!c.field)return;if(!n.data[0].hasOwnProperty(c.field)){console.warn(`ui-chart: series field "${c.field}" does not exist`);return}l[c.field]=n.data.map(f=>f[c.field]),o.push(c)}}),{bars(){let{start:c,center:f,width:m}=n.axes.x.scale(n.axes.x.domain[0],{area:n.axes.x.asArea}),p=u.width??"90%";p.match(/^(\d+)%$/)?p=m*Number(p.replace("%",""))/100:p=Number(p.replace("px",""));let w=(m-p)/2,A=Number(u.gap.replace("px","")),_=[],L=[],O=u.radius,E=[],b=[];return O&&o.forEach(q=>{q.type==="bar"&&l[q.field].forEach((S,N)=>{S>=0?(E[N]=q.field,b[N]===void 0&&(b[N]=q.field)):(b[N]=q.field,E[N]===void 0&&(E[N]=q.field))})}),o.reduce((q,S)=>{if(S.type==="bar"){let N=[];l[S.field].forEach((F,v)=>{_[v]===void 0&&(_[v]=0,L[v]=0);let{start:M}=n.axes.x.scale(n.data[v][n.axes.x.key],{area:n.axes.x.asArea}),k=M+w,C=F>=0?n.axes.y.scale(F).center:n.axes.y.scale(0).center,D=F>=0?n.axes.y.scale(0).center-C:n.axes.y.scale(F).center-C,P=p,$=Number(S.minHeight.replace("px","")),W=S.radius;if(O){let H=S.field===E[v],z=S.field===b[v],J={topLeft:0,topRight:0,bottomLeft:0,bottomRight:0};H&&(J.topLeft=O.topLeft,J.topRight=O.topRight),z&&(J.bottomLeft=O.bottomLeft,J.bottomRight=O.bottomRight),F<0?W={topLeft:J.bottomLeft,topRight:J.bottomRight,bottomLeft:J.topLeft,bottomRight:J.topRight}:W=J}C=F>=0?C-_[v]:C+L[v],D<$&&(C-=$-D,D=$),F<0&&(W={topLeft:W.bottomLeft,topRight:W.bottomRight,bottomRight:W.topRight,bottomLeft:W.topLeft});let R={x:k,y:C,width:P,height:D,path:()=>Pe(k,C,P,D,W)};F>=0?_[v]+=D+A:L[v]+=D+A,N.push(R)}),q[S.field]=N}return q},{})}}))})},get groupedSeries(){return a("groupedSeries",e+s,()=>n.groupsMetadata.map(l=>{let o={},u=[];return l.children.forEach(c=>{if(c.type==="bar"){if(!c.field)return;if(!n.data[0].hasOwnProperty(c.field)){console.warn(`ui-chart: series field "${c.field}" does not exist`);return}o[c.field]=n.data.map(f=>f[c.field]),u.push(c)}else if(c.type==="stack"){let f=[];if(c.children.forEach(m=>{if(m.type==="bar"){if(!m.field)return;if(!n.data[0].hasOwnProperty(m.field)){console.warn(`ui-chart: series field "${m.field}" does not exist`);return}o[m.field]=n.data.map(p=>p[m.field]),f.push(m)}}),f.length>0){let m={...c,children:f};u.push(m)}}}),{keys:u,values:o,bars(){let{start:c,center:f,width:m}=n.axes.x.scale(n.axes.x.domain[0],{area:n.axes.x.asArea}),p=l.width??"90%";p.match(/^(\d+)%$/)?p=m*Number(p.replace("%",""))/100:p=Number(p.replace("px",""));let w=(m-p)/2,A=l.gap??"2%";A.match(/^(\d+)%$/)?A=p*Number(A.replace("%",""))/100:A=Number(A.replace("px",""));let _=u.length,L=A*(_-1),O=_,E=u.reduce((S,N)=>(N.width&&(N.width.match(/^(\d+)%$/)?S+=p*Number(N.width.replace("%",""))/100:S+=Number(N.width.replace("px","")),O--),S),0),b=O>0?(p-E-L)/O:0;b===0&&(w=(m-(E+L))/2);let q=w;return u.reduce((S,N,F)=>{let v=b;if(N.width&&(N.width.match(/^(\d+)%$/)?v=p*Number(N.width.replace("%",""))/100:v=Number(N.width.replace("px",""))),F>0&&(q+=A),N.type==="bar"){let M=[];o[N.field].forEach((k,C)=>{let{start:D}=n.axes.x.scale(n.data[C][n.axes.x.key],{area:n.axes.x.asArea}),P=D+q,$=k>=0?n.axes.y.scale(k).center:n.axes.y.scale(0).center,W=k>=0?n.axes.y.scale(0).center-$:n.axes.y.scale(k).center-$,R=Number(N.minHeight.replace("px","")),H=N.radius;WPe(P,$,v,W,H)};M.push(z)}),S[N.field]=M}if(N.type==="stack"){let M=[],k=Number(N.gap.replace("px","")),C=[],D=[],P=N.radius,$=[],W=[];P&&N.children.forEach(R=>{R.type==="bar"&&o[R.field].forEach((H,z)=>{H>=0?($[z]=R.field,W[z]===void 0&&(W[z]=R.field)):(W[z]=R.field,$[z]===void 0&&($[z]=R.field))})}),N.children.forEach(R=>{if(R.type==="bar"){let H=[];o[R.field].forEach((z,J)=>{C[J]===void 0&&(C[J]=0,D[J]=0);let{start:si}=n.axes.x.scale(n.data[J][n.axes.x.key],{area:n.axes.x.asArea}),$t=si+q,nt=z>=0?n.axes.y.scale(z).center:n.axes.y.scale(0).center,jt=z>=0?n.axes.y.scale(0).center-nt:n.axes.y.scale(z).center-nt,ts=Number(R.minHeight.replace("px","")),Bt=R.radius;if(P){let cn=R.field===$[J],dn=R.field===W[J],Tt={topLeft:0,topRight:0,bottomLeft:0,bottomRight:0};cn&&(Tt.topLeft=P.topLeft,Tt.topRight=P.topRight),dn&&(Tt.bottomLeft=P.bottomLeft,Tt.bottomRight=P.bottomRight),z<0?Bt={topLeft:Tt.bottomLeft,topRight:Tt.bottomRight,bottomLeft:Tt.topLeft,bottomRight:Tt.topRight}:Bt=Tt}jt=0?nt-C[J]:nt+D[J],z<0&&(Bt={topLeft:Bt.bottomLeft,topRight:Bt.bottomRight,bottomRight:Bt.topRight,bottomLeft:Bt.topLeft});let hn={x:$t,y:nt,width:v,height:jt,path:()=>Pe($t,nt,v,jt,Bt)};z>=0?C[J]+=jt+k:D[J]+=jt+k,H.push(hn)}),S[R.field]=H}})}return q+=v,S},{})}}}))},closestXPoint(l){return this.closestXPoints(l)[0]},closestXPoints(l){return a("closestXPoints",e+s+l,()=>{let o=[],u=1/0,d=null;return this.axes.x.points.forEach(c=>{let f=Math.abs(c.center-l);f({value:u}))),o.every(u=>u.index)||o.forEach((u,d)=>{u.index=d}),this.data=o,e++}};return n.updateData(i.data),n}function ji(i,t){let e=[...new Set(t)];return i==="time"?al(e):i==="linear"?(e.sort((s,r)=>Number(s)-Number(r)),e.length===1?e[0]===0?[Number(e[0]),1]:e[0]>0?[0,Number(e[0])]:[Number(e[0]),0]:[Number(e[0]),Number(e[e.length-1])]):[e[0],e[e.length-1]]}function Ja(i,t,e){let s=[];if(t.type==="linear"){if(t.tickValues)return t.tickValues;let[r,a]=e,n=t.tickCount?Number(t.tickCount):5,l=t.tickStart===0||t.tickStart==="0"?0:t.tickStart||"auto",o=t.tickEnd===0||t.tickEnd==="0"?0:t.tickEnd||"auto";l==="auto"&&r>0&&a>0&&(r=0),o!=="auto"&&o!=="max"&&!isNaN(Number(o))&&(a=Number(o));let u=Number(t.interval),d;if(t.interval==="auto"||Number.isNaN(u)){let p=(a-r)/(n-1),w=Math.pow(10,Math.floor(Math.log10(p))),A=p/w;A<1.5?d=1:A<3?d=2:A<7?d=5:d=10,d*=w}else d=u;let c;l==="auto"?c=Math.floor(r/d)*d:l==="min"?c=r:c=Number(l);let f=c;for(;f<=a+d*.1;)f>=r-d*.1&&s.push(f),f+=d;if(o==="max")Math.abs(s[s.length-1]-e[1])>d*.1&&s.push(e[1]);else if(o!=="auto"&&!isNaN(Number(o))){let m=Number(o),p=s.length;s=Array.from({length:p},(w,A)=>c+(m-c)*(A/(p-1)))}if(s.length>n*2){let m=Math.ceil(s.length/n);s=s.filter((p,w)=>w%m===0)}}else if(t.type==="time"){let[r,a]=sn(e[0],e[1],t.tickCount,t.interval,t.asArea);return a}else if(t.type==="categorical"&&(i.forEach(r=>{let a=r[t.key];s.push(a)}),t.tickCount&&s.length>t.tickCount)){let r=Math.ceil(s.length/t.tickCount);s=s.filter((a,n)=>n%r===0)}return s}function Za(i,t,e,s,r,a,n){let l=[];return t==="time"?(e||([e]=sn(i[0],i[i.length-1],null,a)),e={...e,timeZone:"UTC"},l=i.map(o=>new Date(o).toLocaleString(n,e))):t==="linear"?e?l=i.map(o=>o.toLocaleString(n,e)):l=i.map(o=>o.toLocaleString(n)):l=i.map(o=>o+""),r&&(l=l.map(o=>r+o)),s&&(l=l.map(o=>o+s)),l}function el(i,t,e){let s=[...new Set(e)],r=s.length,a=new Map(s.map((n,l)=>[n,l]));return function(n,{area:l=!1}={}){if(n==null)return;let o=a.get(n);if(o===void 0)return;if(l){let c=(t[1]-t[0])/(l?r:r-1),f=t[0]+o*c,m=f+c/2,p=f+c;return{start:f,center:m,end:p,width:c}}let u=(t[1]-t[0])/(r-1),d=t[0]+o*u;return{start:d,center:d,end:d,width:0}}}function il(i,t,e){let s=i[1]-i[0],r=t[1]-t[0];return function(a){let n=t[0]+(a-i[0])*(r/s);return{start:n,center:n,end:n,width:0}}}function Qa(i){if(i.length<2)return"";let t=o=>o<0?-1:1,e=(o,u,d,c,f,m)=>{let p=d-o,w=f-d,A=(c-u)/(p||w<0&&-0),_=(m-c)/(w||p<0&&-0),L=(A*w+_*p)/(p+w);return(t(A)+t(_))*Math.min(Math.abs(A),Math.abs(_),.5*Math.abs(L))||0},s=(o,u,d,c,f)=>{let m=d-o;return m?(3*(c-u)/m-f)/2:f},r=`M${i[0][0]},${i[0][1]}`;if(i.length===2)return r+`L${i[1][0]},${i[1][1]}`;for(let o=0;o0,m=n>0,p=l>0,w=o>0,A=i,_=i+e,L="";return f?(L+=`M${A},${d+a}`,L+=`A${a},${a} 0 0 1 ${A+a},${d}`):L+=`M${A},${d}`,m?(L+=`H${_-n}`,L+=`A${n},${n} 0 0 1 ${_},${d+n}`):L+=`H${_}`,p?(L+=`V${c-l}`,L+=`A${l},${l} 0 0 1 ${_-l},${c}`):L+=`V${c}`,w?(L+=`H${A+o}`,L+=`A${o},${o} 0 0 1 ${A},${c-o}`):L+=`H${A}`,L+=`V${d+(f?a:0)}`,L+="Z",L}function rl(i){return i instanceof Date||typeof i=="string"&&i.includes("-")&&!isNaN(Date.parse(i))}function al(i){return i.sort((t,e)=>typeof t=="string"?t.localeCompare(e):t-e),[Ji(i[0]),Ji(i[i.length-1])]}function nl(i,t,e){let s=new Date(i[0]).getTime(),a=new Date(i[1]).getTime()-s,n=t[1]-t[0],o=(e?[...new Set(e)]:[]).length;return function(u,{area:d=!1}={}){if(!u)return;let c=Ji(u);if(isNaN(c.getTime()))return;let f=(c.getTime()-s)/a;if(d){let p=Math.floor(f*o);p=Math.min(Math.max(0,p),o-1);let w=n/o,A=t[0]+p*w,_=A+w/2,L=A+w;return{start:A,center:_,end:L,width:w}}let m=t[0]+f*n;return{start:m,center:m,end:m,width:0}}}function sn(i,t,e,s,r=!1){let a=i,n=t,u=(n-a)/1e3/60,d=u/60,c=d/24,f=c/30,m=c/365,p,w,A;switch(s){case"second":p={hour:"numeric",minute:"numeric",second:"numeric"},w=E=>new Date(Date.UTC(E.getUTCFullYear(),E.getUTCMonth(),E.getUTCDate(),E.getUTCHours(),E.getUTCMinutes(),E.getUTCSeconds()+1)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate(),a.getUTCHours(),a.getUTCMinutes(),a.getUTCSeconds()));break;case"minute":p={hour:"numeric",minute:"numeric"},w=E=>new Date(Date.UTC(E.getUTCFullYear(),E.getUTCMonth(),E.getUTCDate(),E.getUTCHours(),E.getUTCMinutes()+1)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate(),a.getUTCHours(),a.getUTCMinutes()));break;case"hour":p={hour:"numeric",minute:"numeric"},w=E=>new Date(Date.UTC(E.getUTCFullYear(),E.getUTCMonth(),E.getUTCDate(),E.getUTCHours()+1)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate(),a.getUTCHours()));break;case"day":p={day:"numeric"},w=E=>new Date(Date.UTC(E.getUTCFullYear(),E.getUTCMonth(),E.getUTCDate()+1)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate()));break;case"week":p={day:"numeric",month:"short"},w=E=>new Date(Date.UTC(E.getUTCFullYear(),E.getUTCMonth(),E.getUTCDate()+7)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate()));break;case"month":p={month:"short",day:"numeric"},w=E=>new Date(Date.UTC(E.getUTCFullYear(),E.getUTCMonth()+1,1)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),1));break;case"year":p={year:"numeric"},w=E=>new Date(Date.UTC(E.getUTCFullYear()+1,0,1)),A=new Date(Date.UTC(a.getUTCFullYear(),0,1));break;default:}if(!w)if(d<1){p={hour:"numeric",minute:"numeric"};let E=e?Math.max(1,Math.floor(u/(e-1))):1;w=b=>new Date(Date.UTC(b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate(),b.getUTCHours(),b.getUTCMinutes()+E)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate(),a.getUTCHours()))}else if(c<1){p={hour:"numeric"};let E=e?Math.max(1,Math.floor(d/(e-1))):1;w=b=>new Date(Date.UTC(b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate(),b.getUTCHours()+E)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate(),0))}else if(c<=7){p={weekday:"short",hour:"numeric"};let E=e?Math.max(1,Math.floor(d/(e-1))):6;w=b=>new Date(Date.UTC(b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate(),b.getUTCHours()+E)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate(),0))}else if(c<=30){p={month:"short",day:"numeric"};let E=e?Math.max(1,Math.floor(c/(e-1))):1;w=b=>new Date(Date.UTC(b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()+E)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate()))}else if(f<=6){p={month:"short",day:"numeric"};let E=e?Math.max(1,Math.floor(c/(e-1))):7;w=b=>new Date(Date.UTC(b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()+E)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate()))}else if(m<2){p={month:"short"};let E=e?Math.max(1,Math.floor(f/(e-1))):1;w=b=>new Date(Date.UTC(b.getUTCFullYear(),b.getUTCMonth()+E,1)),A=new Date(Date.UTC(a.getUTCFullYear(),a.getUTCMonth()))}else{p={year:"numeric"};let E=e?Math.max(1,Math.floor(m/(e-1))):1;w=b=>new Date(Date.UTC(b.getUTCFullYear()+E,0,1)),A=new Date(Date.UTC(a.getUTCFullYear(),0,1))}let _=a;if(r){let E=w(A);for(;E<=a;)A=E,E=w(A);_=A}let L=[_],O=_;for(;O<=n;)O=w(O),O<=n&&L.push(new Date(O.getTime()));return[p,L]}function Ji(i){if(i instanceof Date)return i;let{year:t,month:e,day:s,hour:r,minute:a,second:n,millisecond:l}=ol(i);return new Date(Date.UTC(t,e-1,s,r,a,n,l))}function ol(i){let t=i.match(/^(\d{4})(?:-(\d{2}))?(?:-(\d{2}))?(?:T(\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(Z)?)?$/);if(!t)throw new Error("Invalid date format");return{year:t[1]?parseInt(t[1],10):null,month:t[2]?parseInt(t[2],10):null,day:t[3]?parseInt(t[3],10):null,hour:t[4]?parseInt(t[4],10):null,minute:t[5]?parseInt(t[5],10):null,second:t[6]?parseInt(t[6],10):null,millisecond:t[7]?parseInt(t[7].padEnd(3,"0"),10):null,utc:!!t[8]}}var Ir=class extends HTMLElement{constructor(){super(),this.querySelectorAll("[data-appended]").forEach(s=>s.remove());let t=this.querySelector('template[name="svg"]'),e=Si(t);t.after(e),this.init(t,e)}init(t,e){this._initialized||(this._data=this.hasAttribute("value")?JSON.parse(this.getAttribute("value")):[],this._observable=new Wt,this._selectable={getState:()=>this._data,setState:S=>{this._data=S,this._observable.notify("data",this._data)}},this._controllable=new U(this),this._controllable.initial(S=>S&&this._selectable.setState(S)),this._controllable.getter(()=>this._selectable.getState()),this._controllable.setter(S=>{this._selectable.setState(S)}),this._initialized=!0);let s=this.hasAttribute("locale")?this.getAttribute("locale"):Ai(),r=!1,a={svg:t,bars:{},lines:{},areas:{},points:{},groups:[],stacks:[],cursor:t.content.querySelector('template[name="cursor"]'),zeroLine:t.content.querySelector('template[name="zero-line"]'),axes:{x:{template:t.content.querySelector('template[name="axis"][axis="x"]'),axisLine:t.content.querySelector('template[name="axis"][axis="x"] template[name="axis-line"]'),gridLine:t.content.querySelector('template[name="axis"][axis="x"] template[name="grid-line"]'),tickMark:t.content.querySelector('template[name="axis"][axis="x"] template[name="tick-mark"]'),tickLabel:t.content.querySelector('template[name="axis"][axis="x"] template[name="tick-label"]')},y:{template:t.content.querySelector('template[name="axis"][axis="y"]'),axisLine:t.content.querySelector('template[name="axis"][axis="y"] template[name="axis-line"]'),gridLine:t.content.querySelector('template[name="axis"][axis="y"] template[name="grid-line"]'),tickMark:t.content.querySelector('template[name="axis"][axis="y"] template[name="tick-mark"]'),tickLabel:t.content.querySelector('template[name="axis"][axis="y"] template[name="tick-label"]')}},tooltip:this.querySelector('template[name="tooltip"]'),summary:this.querySelector('template[name="summary"]')};t.content.querySelectorAll('template[name="group"]').forEach(S=>{a.groups.push(S)}),t.content.querySelectorAll('template[name="stack"]:not(template[name="group"] template[name="stack"])').forEach(S=>{a.stacks.push(S)}),t.content.querySelectorAll('template[name="bar"]:not(template[name="stack"] template[name="bar"]):not(template[name="group"] template[name="bar"])').forEach(S=>{a.bars[S.getAttribute("field")]=S,r=!0}),t.content.querySelectorAll('template[name="line"]').forEach(S=>{a.lines[S.getAttribute("field")]=S}),t.content.querySelectorAll('template[name="area"]').forEach(S=>{a.areas[S.getAttribute("field")]=S}),t.content.querySelectorAll('template[name="point"]').forEach(S=>{a.points[S.getAttribute("field")]=S});let n=()=>{},l=()=>{},o=()=>{},u=()=>{},d=null,c="line",f=null,m=null,p=null,w=[];t.content.querySelectorAll('template[name="stack"]:not(template[name="group"] template[name="stack"])').forEach(S=>{let N={width:S.getAttribute("width")??"90%",gap:S.getAttribute("gap")??"0",radius:S.hasAttribute("radius")?de(S.getAttribute("radius")):null,children:[]};S.querySelectorAll('template[name="bar"]').forEach(F=>{let v={type:"bar",field:F.getAttribute("field"),width:F.getAttribute("width"),minHeight:F.getAttribute("min-height")??"0",radius:de(F.getAttribute("radius")??"0")};N.children.push(v),r=!0}),w.push(N)});let A=[];t.content.querySelectorAll('template[name="group"]').forEach(S=>{let N={width:S.getAttribute("width")??"90%",gap:S.getAttribute("gap")??"2%",children:[]};S.querySelectorAll('template[name="stack"], template[name="bar"]:not(template[name="stack"] template[name="bar"])').forEach(F=>{let v={};F.getAttribute("name")==="stack"?(v={type:"stack",width:F.getAttribute("width"),gap:F.getAttribute("gap")??"0",radius:F.hasAttribute("radius")?de(F.getAttribute("radius")):null,children:[]},F.querySelectorAll('template[name="bar"]').forEach(M=>{let k={type:"bar",field:M.getAttribute("field"),width:M.getAttribute("width"),minHeight:M.getAttribute("min-height")??"0",radius:de(M.getAttribute("radius")??"0")};v.children.push(k),r=!0})):F.getAttribute("name")==="bar"&&(v={type:"bar",field:F.getAttribute("field"),width:F.getAttribute("width"),minHeight:F.getAttribute("min-height")??"0",radius:de(F.getAttribute("radius")??"4 0")},r=!0),N.children.push(v)}),A.push(N)}),f=document.createElementNS("http://www.w3.org/2000/svg","rect"),f.setAttribute("data-overlay",""),f.setAttribute("fill","none"),f.setAttribute("pointer-events","all"),f.addEventListener("mousemove",ds(function(S){n(S),l(S),o(S),u(S)},1)),f.addEventListener("mouseleave",()=>{n(null),l(null),o(null),u(null)}),e.appendChild(f),a.cursor&&(d=ct(a.cursor),d.setAttribute("data-cursor",""),e.appendChild(d));let _={left:8,right:8,top:8,bottom:8};if(a.svg?.hasAttribute("gutter")){let S=a.svg?.getAttribute("gutter").split(" ").map(N=>N.replace("px","")).map(Number);S.length===1?(_.top=S[0],_.right=S[0],_.bottom=S[0],_.left=S[0]):S.length===2?(_.top=S[0],_.right=S[1],_.bottom=S[0],_.left=S[1]):S.length===3?(_.top=S[0],_.right=S[1],_.bottom=S[2],_.left=S[1]):S.length===4&&(_.top=S[0],_.right=S[1],_.bottom=S[2],_.left=S[3])}let[L,O]=ll(e,r),E=e.parentElement.getBoundingClientRect();if(E.width===0||E.height===0){let S=new ResizeObserver(N=>{let F=N[0];F.contentRect.width>0&&F.contentRect.height>0&&(S.disconnect(),this.init(t,e))});S.observe(e.parentElement);return}a.tooltip&&(m=Si(a.tooltip),a.tooltip.after(m)),a.summary&&(p=Si(a.summary),a.summary.after(p));let b=en({locale:s,data:this._data,stacksMetadata:w,groupsMetadata:A,width:E.width,height:E.height,inset:{left:0,right:0,top:0,bottom:0},axes:{x:{key:L,format:a.axes.x.template?.hasAttribute("format")?JSON.parse(a.axes.x.template?.getAttribute("format")):null,scale:a.axes.x.template?.getAttribute("scale"),interval:a.axes.x.template?.getAttribute("interval"),position:a.axes.x.template?.getAttribute("position"),tickCount:a.axes.x.template?.getAttribute("tick-count")||a.axes.x.tickLabel?.getAttribute("target-tick-count"),tickStart:a.axes.x.template?.getAttribute("tick-start"),tickEnd:a.axes.x.template?.getAttribute("tick-end"),tickStep:a.axes.x.template?.getAttribute("tick-step")?Number(a.axes.x.template?.getAttribute("tick-step")):null,tickSuffix:a.axes.x.template?.getAttribute("tick-suffix"),tickPrefix:a.axes.x.template?.getAttribute("tick-prefix"),tickValues:a.axes.x.template?.hasAttribute("tick-values")?JSON.parse(a.axes.x.template?.getAttribute("tick-values")):null,asArea:r||a.cursor?.innerHTML?.match(/type="([^"]+)"/)?.[1]==="area"},y:{keys:O,format:a.axes.y.template?.hasAttribute("format")?JSON.parse(a.axes.y.template?.getAttribute("format")):null,scale:a.axes.y.template?.getAttribute("scale"),interval:a.axes.y.template?.getAttribute("interval"),position:a.axes.y.template?.getAttribute("position"),tickCount:a.axes.y.template?.getAttribute("tick-count")||a.axes.y.tickLabel?.getAttribute("target-tick-count"),tickStart:a.axes.y.template?.getAttribute("tick-start"),tickEnd:a.axes.y.template?.getAttribute("tick-end"),tickStep:a.axes.y.template?.getAttribute("tick-step")?Number(a.axes.y.template?.getAttribute("tick-step")):null,tickSuffix:a.axes.y.template?.getAttribute("tick-suffix"),tickPrefix:a.axes.y.template?.getAttribute("tick-prefix"),tickValues:a.axes.y.template?.hasAttribute("tick-values")?JSON.parse(a.axes.y.template?.getAttribute("tick-values")):null}}}),q=(S=!0)=>{if(h(e,"viewBox",`0 0 ${b.width} ${b.height}`),b.data.length===0)return;if(b.data.length===1){console.warn("ui-chart: chart only has one data point so it cannot be rendered.");return}if(b.data[0][b.axes.x.key]===void 0){console.warn(`ui-chart: axis field "${b.axes.x.key}" does not exist`);return}if(Object.entries(b.series).forEach(([v,M])=>{let k=e.querySelector(`[data-bar-group][data-series="${v}"]`),C=a.bars[v];if(C){let D=C.hasAttribute("width")?C.getAttribute("width"):"90%",P=de(C.hasAttribute("radius")?C.getAttribute("radius"):"8 0"),$=C.hasAttribute("min-height")?Number(C.getAttribute("min-height")):0;k?.remove(),k=document.createElementNS("http://www.w3.org/2000/svg","g"),k.setAttribute("data-bar-group",""),k.setAttribute("data-series",v),M.bars({barWidth:D,minHeight:$,radius:P}).forEach(W=>{let R=ct(C);R.setAttribute("data-bar",""),R.setAttribute("data-series",v),R.setAttribute("d",W.path(P)),k.appendChild(R)}),e.appendChild(k)}}),Object.entries(b.stackedSeries).forEach(([v,M])=>{let k=e.querySelector(`[data-stack][data-stack-index="${v}"]`),C=a.stacks[v];if(!C)return;k?.remove(),k=document.createElementNS("http://www.w3.org/2000/svg","g"),k.setAttribute("data-stack",""),k.setAttribute("data-stack-index",v);let D={bars:{}};C.querySelectorAll('template[name="bar"]').forEach(P=>{D.bars[P.getAttribute("field")]=P}),Object.entries(M.bars()).forEach(([P,$])=>{let W=D.bars[P],R=document.createElementNS("http://www.w3.org/2000/svg","g");R.setAttribute("data-bar-group",""),R.setAttribute("data-series",P),$.forEach(H=>{let z=ct(W);z.setAttribute("data-bar",""),z.setAttribute("data-series",P),z.setAttribute("d",H.path()),R.appendChild(z)}),k.appendChild(R)}),e.appendChild(k)}),Object.entries(b.groupedSeries).forEach(([v,M])=>{let k=e.querySelector(`[data-group][data-group-index="${v}"]`),C=a.groups[v];if(!C)return;k?.remove(),k=document.createElementNS("http://www.w3.org/2000/svg","g"),k.setAttribute("data-group",""),k.setAttribute("data-group-index",v);let D={bars:{}};C.querySelectorAll('template[name="bar"]').forEach(P=>{D.bars[P.getAttribute("field")]=P}),Object.entries(M.bars()).forEach(([P,$])=>{let W=D.bars[P],R=document.createElementNS("http://www.w3.org/2000/svg","g");R.setAttribute("data-bar-group",""),R.setAttribute("data-series",P),$.forEach(H=>{let z=ct(W);z.setAttribute("data-bar",""),z.setAttribute("data-series",P),z.setAttribute("d",H.path()),R.appendChild(z)}),k.appendChild(R)}),e.appendChild(k)}),Object.entries(b.series).forEach(([v,M])=>{let k=e.querySelector(`[data-line][data-series="${v}"]`),C=a.lines[v];if(C){let D=C.getAttribute("curve")||"smooth";if(k)k.setAttribute("d",M.linePath(D));else{let P=ct(C);P.setAttribute("data-line",""),P.setAttribute("data-series",v),P.setAttribute("d",M.linePath(D)),e.appendChild(P)}}}),Object.entries(b.series).forEach(([v,M])=>{let k=e.querySelector(`[data-area][data-series="${v}"]`),C=a.areas[v];if(C){let D=C.getAttribute("curve")||"smooth";if(k)k.setAttribute("d",M.areaPath(D));else{let P=ct(C);P.setAttribute("data-area",""),P.setAttribute("data-series",v),P.setAttribute("d",M.areaPath(D)),e.appendChild(P)}}}),Object.entries(b.series).forEach(([v,M])=>{let k=e.querySelector(`[data-point-group][data-series="${v}"]`),C=a.points[v];C&&(e.querySelector(`[data-point-group][data-series="${v}"]`)?.remove(),k=document.createElementNS("http://www.w3.org/2000/svg","g"),k.setAttribute("data-point-group",""),k.setAttribute("data-series",v),M.points.forEach(D=>{let P=ct(C);P.setAttribute("data-point",""),P.setAttribute("data-series",v),P.setAttribute("cx",D.x),P.setAttribute("cy",D.y),k.appendChild(P)}),e.appendChild(k))}),u=v=>{e.querySelectorAll("[data-point-group]").forEach(M=>{if(M.querySelectorAll("[data-point]").forEach(k=>k.removeAttribute("data-active")),v){let k=v.clientX-e.getBoundingClientRect().left,C=v.clientY-e.getBoundingClientRect().top;k>=b.inset.left&&k<=b.width-b.inset.right&&C>=b.inset.top&&C<=b.height-b.inset.bottom&&b.closestXPoints(k).forEach(P=>{M.querySelectorAll(`[data-point][cx="${P.x}"]`).forEach($=>$.setAttribute("data-active",""))})}else M.querySelectorAll("[data-point]").forEach(k=>k.removeAttribute("data-active"))})},a.axes.x.template){if(a.axes.x.axisLine){e.querySelector('[data-axis-line][data-axis="x"]')?.remove();let v=ct(a.axes.x.axisLine);v.setAttribute("data-axis-line",""),v.setAttribute("data-axis","x"),v.setAttribute("x1",b.axes.x.scale(b.axes.x.domain[0]).center),v.setAttribute("x2",b.axes.x.scale(b.axes.x.domain[1]).center),v.setAttribute("y1",b.axes.y.scale(b.axes.y.domain[b.axes.x.position==="bottom"?0:1]).center),v.setAttribute("y2",b.axes.y.scale(b.axes.y.domain[b.axes.x.position==="bottom"?0:1]).center),e.appendChild(v)}if(a.axes.x.gridLine){e.querySelector('[data-grid-line-group][data-axis="x"]')?.remove();let v=document.createElementNS("http://www.w3.org/2000/svg","g");v.setAttribute("data-grid-line-group",""),v.setAttribute("data-axis","x"),b.axes.x.ticks.forEach(({value:M})=>{let k=ct(a.axes.x.gridLine);k.setAttribute("data-grid-line",""),k.setAttribute("data-axis","x"),k.setAttribute("x1",b.axes.x.scale(M).center),k.setAttribute("x2",b.axes.x.scale(M).center),k.setAttribute("y1",b.inset.top),k.setAttribute("y2",b.height-b.inset.bottom),v.appendChild(k)}),e.appendChild(v)}if(a.axes.x.tickMark){e.querySelector('[data-tick-mark-group][data-axis="x"]')?.remove();let v=document.createElementNS("http://www.w3.org/2000/svg","g");v.setAttribute("data-tick-mark-group",""),v.setAttribute("data-axis","x"),b.axes.x.ticks.forEach(({value:M,label:k})=>{let C={x:b.axes.x.scale(M,{area:b.axes.x.asArea}).center,y:b.axes.y.scale(b.axes.y.domain[b.axes.x.position==="bottom"?0:1]).center},D=ct(a.axes.x.tickMark);D.setAttribute("data-tick-mark",""),D.setAttribute("data-axis","x"),D.setAttribute("transform",`translate(${C.x}, ${C.y})`),v.appendChild(D)}),e.appendChild(v)}if(a.axes.x.tickLabel){e.querySelector('[data-tick-label-group][data-axis="x"]')?.remove();let v=document.createElementNS("http://www.w3.org/2000/svg","g");v.setAttribute("data-tick-label-group",""),v.setAttribute("data-axis","x"),b.axes.x.ticks.forEach(({value:M,label:k})=>{let C={x:b.axes.x.scale(M,{area:b.axes.x.asArea}).center,y:b.axes.y.scale(b.axes.y.domain[b.axes.x.position==="bottom"?0:1]).center},D=ct(a.axes.x.tickLabel);D.querySelectorAll("slot").forEach(P=>P.replaceWith(document.createTextNode(k))),D.setAttribute("data-tick-label",""),D.setAttribute("data-axis","x"),D.setAttribute("transform",`translate(${C.x}, ${C.y})`),v.appendChild(D)}),e.appendChild(v),rn(v,b.axes.x)}}if(a.axes.y.template){if(a.axes.y.axisLine){e.querySelector('[data-axis-line][data-axis="y"]')?.remove();let v=ct(a.axes.y.axisLine);v.setAttribute("data-axis-line",""),v.setAttribute("data-axis","y"),v.setAttribute("x1",b.axes.x.scale(b.axes.x.domain[b.axes.y.position==="left"?0:1]).center),v.setAttribute("x2",b.axes.x.scale(b.axes.x.domain[b.axes.y.position==="left"?0:1]).center),v.setAttribute("y1",b.axes.y.scale(b.axes.y.domain[0]).center),v.setAttribute("y2",b.axes.y.scale(b.axes.y.domain[1]).center),e.appendChild(v)}if(a.axes.y.gridLine){e.querySelector('[data-grid-line-group][data-axis="y"]')?.remove();let v=document.createElementNS("http://www.w3.org/2000/svg","g");v.setAttribute("data-grid-line-group",""),v.setAttribute("data-axis","y"),b.axes.y.ticks.forEach(({value:M,label:k})=>{let C={x:b.axes.x.scale(b.axes.x.domain[0]).center,y:b.axes.y.scale(M).center},D=ct(a.axes.y.gridLine);D.setAttribute("data-grid-line",""),D.setAttribute("data-axis","y"),D.setAttribute("x1",b.inset.left),D.setAttribute("x2",b.width-b.inset.right),D.setAttribute("y1",C.y),D.setAttribute("y2",C.y),v.appendChild(D)}),e.appendChild(v)}if(a.axes.y.tickMark){e.querySelector('[data-tick-mark-group][data-axis="y"]')?.remove();let v=document.createElementNS("http://www.w3.org/2000/svg","g");v.setAttribute("data-tick-mark-group",""),v.setAttribute("data-axis","y"),b.axes.y.ticks.forEach(({value:M,label:k})=>{let C={x:b.axes.x.scale(b.axes.x.domain[b.axes.y.position==="left"?0:1]).center,y:b.axes.y.scale(M).center},D=ct(a.axes.y.tickMark);D.setAttribute("data-tick-mark",""),D.setAttribute("data-axis","y"),D.setAttribute("transform",`translate(${C.x}, ${C.y})`),v.appendChild(D)}),e.appendChild(v)}if(a.axes.y.tickLabel){e.querySelector('[data-tick-label-group][data-axis="y"]')?.remove();let v=document.createElementNS("http://www.w3.org/2000/svg","g");v.setAttribute("data-tick-label-group",""),v.setAttribute("data-axis","y"),b.axes.y.ticks.forEach(({value:M,label:k})=>{let C={x:b.axes.x.scale(b.axes.x.domain[b.axes.y.position==="left"?0:1]).center,y:b.axes.y.scale(M).center},D=ct(a.axes.y.tickLabel);D.querySelectorAll("slot").forEach(P=>P.replaceWith(document.createTextNode(k))),D.setAttribute("data-tick-label",""),D.setAttribute("data-axis","y"),D.setAttribute("transform",`translate(${C.x}, ${C.y})`),v.appendChild(D)}),e.appendChild(v),rn(v,b.axes.y)}}if(a.zeroLine&&b.axes.y.domain[0]<0&&b.axes.y.domain[1]>0){e.querySelector('[data-zero-line][data-axis="y"]')?.remove();let v=ct(a.zeroLine);v.setAttribute("data-zero-line",""),v.setAttribute("data-axis","y"),v.setAttribute("x1",b.axes.x.scale(b.axes.x.domain[0]).center),v.setAttribute("x2",b.axes.x.scale(b.axes.x.domain[1]).center),v.setAttribute("y1",b.axes.y.scale(0).center),v.setAttribute("y2",b.axes.y.scale(0).center),e.appendChild(v)}if(f&&(f.setAttribute("width",b.width),f.setAttribute("height",b.height),f.setAttribute("x",0),f.setAttribute("y",0)),d){c=d.getAttribute("type")??"line";let v=M=>{if(c==="area"){d.setAttribute("opacity","0.1");let P=M.start,$=b.axes.y.scale(b.axes.y.domain[1]).center,W=M.width,R=b.axes.y.scale(b.axes.y.domain[0]).center-b.axes.y.scale(b.axes.y.domain[1]).center,H=de(d.getAttribute("radius")??"0");d.setAttribute("fill","currentColor"),d.setAttribute("stroke","none"),d.setAttribute("d",Pe(P,$,W,R,H));return}d.setAttribute("opacity","1");let k=M.center,C=b.axes.y.scale(b.axes.y.domain[0]).center,D=b.axes.y.scale(b.axes.y.domain[1]).center;d.setAttribute("d",`M ${k} ${C} L ${k} ${D}`)};n=M=>{if(M){let k=e.getBoundingClientRect(),C=M.clientX-k.left,D=M.clientY-k.top;if(C>=b.inset.left&&C<=b.width-b.inset.right&&D>=b.inset.top&&D<=b.height-b.inset.bottom){let P=b.closestXPoint(C);v(P)}else d.setAttribute("opacity","0")}else d.setAttribute("opacity","0")}}m&&(l=v=>{if(v===null)x(m,"data-active");else{let M=v.clientX-e.getBoundingClientRect().left,k=v.clientY-e.getBoundingClientRect().top;if(M>=b.inset.left&&M<=b.width-b.inset.right&&k>=b.inset.top&&k<=b.height-b.inset.bottom){let C=b.closestXPoint(M);if(C){h(m,"data-active","");let D=m.getBoundingClientRect(),P=e.getBoundingClientRect(),$=P.width-(C.center+D.width+15),W=P.height-(k+D.height+15),R=$<0?C.center-D.width-15:C.center+15,H=W<0?k-D.height-15:k+15;m.style.transform=`translate(${R}px, ${H}px)`;let z=a.tooltip.content.cloneNode(!0).firstElementChild;z.querySelectorAll("slot").forEach(J=>{let si=J.getAttribute("field");if(si){let $t=J.hasAttribute("format")?JSON.parse(J.getAttribute("format")):null,nt=C.datum[si];if($t===null)return J.textContent=nt;$t={...$t,timeZone:"UTC"},an(nt)?nt=Number(nt).toLocaleString(b.locale,$t):nn(nt)&&(nt=new Date(nt).toLocaleDateString(b.locale,$t)),J.textContent=nt}}),m.innerHTML=z.innerHTML}else x(m,"data-active")}else x(m,"data-active")}}),p&&(o=v=>{let M=null;if(v!==null){let k=v.clientX-e.getBoundingClientRect().left,C=v.clientY-e.getBoundingClientRect().top;k>=b.inset.left&&k<=b.width-b.inset.right&&C>=b.inset.top&&C<=b.height-b.inset.bottom&&(M=b.closestXPoint(k))}if(M=M||b.closestXPoint(b.axes.x.range[1]),M){let k=a.summary.content.cloneNode(!0).firstElementChild;k.querySelectorAll("slot").forEach(C=>{let D=C.getAttribute("field");if(D){let P=C.hasAttribute("format")?JSON.parse(C.getAttribute("format")):{};P={...P,timeZone:"UTC"};let $=C.hasAttribute("fallback")&&v===null?C.getAttribute("fallback"):M.datum[D];an($)?$=Number($).toLocaleString(b.locale,P):nn($)&&($=new Date($).toLocaleString(b.locale,P)),C.textContent=$}}),p.innerHTML=k.innerHTML}},o(null)),e.appendChild(f),e.querySelectorAll("[data-grid-line-group]").forEach(v=>f.before(v)),e.querySelectorAll("[data-axis-line]").forEach(v=>f.before(v)),c==="area"&&e.querySelectorAll("[data-cursor]").forEach(v=>f.before(v));let N=0,F=0;if(t.content.querySelectorAll('template[name="group"], template[name="stack"]:not(template[name="group"] template[name="stack"]), template[name="bar"]:not(template[name="stack"] template[name="bar"]):not(template[name="group"] template[name="bar"]), template[name="line"], template[name="area"], template[name="point"]').forEach(v=>{let M=v.getAttribute("name"),k=v.getAttribute("field"),C;M==="group"?(C=e.querySelector(`[data-group][data-group-index="${N}"]`),N++):M==="stack"?(C=e.querySelector(`[data-stack][data-stack-index="${F}"]`),F++):M==="bar"?C=e.querySelector(`[data-bar-group][data-series="${k}"]`):M==="point"?C=e.querySelector(`[data-point-group][data-series="${k}"]`):C=e.querySelector(`[data-${M}][data-series="${k}"]`),C&&f.before(C)}),e.querySelectorAll("[data-zero-line]").forEach(v=>f.before(v)),c==="line"&&e.querySelectorAll("[data-cursor]").forEach(v=>f.before(v)),S){let v=ln(e);ul(e,b,_,v),b.updateDimensions({width:b.width,height:b.height},{left:_.left+v.left,right:_.right+v.right,top:_.top+v.top,bottom:_.bottom+v.bottom}),q(!1)}};this._observable.subscribe("resize",()=>{let S=e.parentElement.getBoundingClientRect();S.width===0||S.height===0||(b.updateDimensions({width:S.width,height:S.height},{left:0,right:0,top:0,bottom:0}),q(),d&&d.setAttribute("opacity","0"))}),this._observable.subscribe("data",()=>{b.updateData(this._data),b.updateDimensions({width:b.width,height:b.height},{left:0,right:0,top:0,bottom:0}),q()}),new ResizeObserver(()=>{this._observable.notify("resize")}).observe(this),new MutationObserver(S=>{S.forEach(N=>{N.attributeName==="value"&&this._selectable.setState(this.hasAttribute("value")?JSON.parse(this.getAttribute("value")):[])})}).observe(this,{attributes:!0,attributeFilter:["value"]})}};customElements.define("ui-chart",Ir);function ll(i,t=!1){let e=null,s=[];return i.querySelectorAll('template[name="line"], template[name="area"], template[name="point"], template[name="bar"]:not(template[name="stack"] template[name="bar"]):not(template[name="group"] template[name="bar"])').forEach(r=>{s.push(r.getAttribute("field")||"value")}),i.querySelectorAll('template[name="axis"][axis="x"]').forEach(r=>{e=r.getAttribute("field")||"index"}),s=Array.from(new Set(s)),e===null&&(e="index"),s.length===0&&!t&&(s=["value"]),[e,s]}function ct(i){let t=document.createElementNS("http://www.w3.org/2000/svg","svg");return t.setAttribute("xmlns","http://www.w3.org/2000/svg"),t.setAttribute("version","1.1"),t.innerHTML=i.innerHTML,t.firstElementChild}function ul(i,t,e,s){let r=i.querySelector('[data-tick-label-group][data-axis="x"]');if(!r||t.axes.x.type!=="categorical"||Lr(r,t.axes.x))return;let a=e.left+s.left+e.right+s.right-(t.inset.left+t.inset.right);if(a<=0)return;let n=Array.from(r.children).filter(l=>l.style.display!=="none");for(let l=0;ls.style.display!="none");for(let s=0;sl.left)return!0}return!1}function on(i){let t=[];return Array.from(i.children).forEach((e,s)=>{let r=e.matches("text")?e:e.querySelector("text");Array.from(i.children).forEach((a,n)=>{let l=a.matches("text")?a:a.querySelector("text");l&&(l.style.transform="rotate(-45deg)",l.style.textAnchor="end",t.push(()=>{l.style.transform=null,l.style.textAnchor=null}))})}),()=>t.forEach(e=>e())}function hl(i){let t=Array.from(i.children);return t.forEach((e,s)=>{s%2===1&&(e.style.display="none")}),()=>t.forEach((e,s)=>{e.style.display="inline"})}function cl(i){let t=Array.from(i.children);t.forEach((n,l)=>{n.style.display="none"});let e=t[0],s=t[t.length-1],r=e.matches("text")?e:e.querySelector("text"),a=s.matches("text")?s:s.querySelector("text");return e.style.display="inline",r.style.textAnchor="start",s.style.display="inline",a.style.textAnchor="end",()=>t.forEach((n,l)=>{n.style.display="inline"})}function an(i){return typeof i=="number"||typeof i=="string"&&!isNaN(Number(i))}function nn(i){return i instanceof Date||typeof i=="string"&&!isNaN(Date.parse(i))}function ln(i){let t=i.getBoundingClientRect(),e={top:1/0,right:-1/0,bottom:-1/0,left:1/0};return Array.from(i.children).forEach(s=>{if(s.hasAttribute("data-overlay")||s.hasAttribute("data-cursor")||s.style.display==="none")return;let r=s.getBoundingClientRect();!r.width&&!r.height||(e.top=Math.min(e.top,r.top),e.right=Math.max(e.right,r.right),e.bottom=Math.max(e.bottom,r.bottom),e.left=Math.min(e.left,r.left))}),{top:Math.max(0,t.top-e.top),right:Math.max(0,e.right-t.right),bottom:Math.max(0,e.bottom-t.bottom),left:Math.max(0,t.left-e.left)}}function de(i){if(!i||i.trim()==="")throw new Error("Radius string cannot be empty");let t=i.trim().split(/\s+/).map(s=>{let r=s.replace(/px/,"");return Number(r)||0});if(t.length===0||t.every(s=>isNaN(s)))throw new Error(`Invalid radius string: "${i}"`);let e={topLeft:0,topRight:0,bottomRight:0,bottomLeft:0};if(t.length===1)e.topLeft=t[0],e.topRight=t[0],e.bottomRight=t[0],e.bottomLeft=t[0];else if(t.length===2)e.topLeft=t[0],e.topRight=t[0],e.bottomRight=t[1],e.bottomLeft=t[1];else if(t.length===4)e.topLeft=t[0],e.topRight=t[1],e.bottomRight=t[2],e.bottomLeft=t[3];else throw new Error(`Invalid radius string: "${i}". Must be 1, 2, or 4 numbers`);return e}var Mr=class extends I{boot(){h(this,"role","button"),this._disableable=new V(this),this._disableable.onInitAndChange(t=>{t?x(this,"tabindex","0"):h(this,"tabindex","0")}),this._buttonType=this.getAttribute("type")||"button"}mount(){y(this,"keydown",t=>{t.key==="Enter"&&(t.preventDefault(),this.disabled||this.click()),t.key===" "&&t.preventDefault()}),y(this,"keyup",t=>{t.key===" "&&(t.preventDefault(),t.stopPropagation(),this.disabled||this.click())}),y(this,"click",()=>{this.disabled||(this._buttonType==="submit"?this._handleSubmit():this._buttonType==="reset"&&this._handleReset())})}_handleSubmit(){let t=this.closest("form");t&&t.requestSubmit()}_handleReset(){let t=this.closest("form");t&&t.reset()}};T("button",Mr);var Pr=class extends I{mount(){let t=this.querySelector("button,ui-button");y(t,"click",()=>{yi(this,s=>!!s._closeable)?._closeable?.close()})}};T("close",Pr);var Or=class extends I{toasts=[];initiallyExpanded=!1;expanded=!1;mount(){this.initiallyExpanded=this.hasAttribute("expanded");let t=this.getAttribute("position")||"bottom right";this.verticalPosition=t.match(/\b(top|bottom)\b/)?.[0]||"bottom",this.horizontalPosition=t.match(/\b(left|start|center|right|end)\b/)?.[0]||"right",this.horizontalPosition==="left"?this.horizontalPosition="start":this.horizontalPosition==="right"&&(this.horizontalPosition="end"),h(this,"role","status")}showToast(t={}){let e=this.querySelector("ui-toast");if(!e)return console.warn("ui-toast-group: no ui-toast element found",this);this.matches(":popover-open")&&this.hidePopover(),this.showPopover();let s=Number(t.duration===void 0?5e3:t.duration),r=e.prepareToastTemplate(t),a=r.firstElementChild,n={timeout:null,el:r,height:null,contentEl:a,contentHeight:null},l=()=>{this.animateIn(n),this.updateList()},o=()=>{this.animateOut(n),this.updateList()};this.toasts.unshift(n),this.appendChild(r),l(),r.hideToast=o;let u=s!==0&&fs(()=>{n.timeout=null,o()},s);u&&(n.timeout=u),r.destroyToast=()=>{n.timeout&&(n.timeout.cancel(),n.timeout=null);let d=this.toasts.indexOf(n);d>-1&&this.toasts.splice(d,1),r.remove(),this.updateList()},r.addEventListener("mouseenter",()=>{this.pauseTimeouts(),this.initiallyExpanded||(this.expanded=!0,this.updateList())}),r.addEventListener("mouseleave",()=>{this.resumeTimeouts(),this.initiallyExpanded||(this.expanded=!1,this.updateList())}),r._closeable=new Lt(r),r._closeable.onClose(()=>r.destroyToast())}pauseTimeouts(){for(let t of this.toasts)t.timeout?.pause()}resumeTimeouts(){for(let t of this.toasts)t.timeout?.resume()}animateIn(t){let r=1.5*((this.verticalPosition==="top"?"bottom":"top")==="top"?1:-1);t.contentEl.style.opacity=0,t.contentEl.style.transform=`translateY(${r}rem)`,t.el.style.zIndex=5001,t.contentEl.offsetHeight,t.contentHeight=t.contentEl.offsetHeight,t.height=t.el.offsetHeight,t.contentEl.style.opacity=100,t.contentEl.style.transform="translateY(0)"}animateOut(t){let s=.5*(this.verticalPosition==="top"?1:-1);t.contentEl.style.transform=`translateY(${s}rem)`,t.contentEl.style.opacity=0;let r=this.toasts.indexOf(t);r>-1&&this.toasts.splice(r,1);let a=()=>{t.el.remove(),this.toasts.length===0&&(this.expanded=!1)};t.contentEl.getAnimations().length?t.contentEl.addEventListener("transitionend",()=>{a()},{once:!0}):a()}updateList(){this.initiallyExpanded||this.expanded?this.expand():this.collapse()}expand(){let t=0;for(let e of this.toasts){let s=this.verticalPosition==="top"?1:-1;e.el.style.transform=`translateY(${s*t}px)`,e.el.style.opacity=100,e.contentEl.style.height=`${e.contentHeight}px`,e.contentEl.style.overflow="auto",t+=e.height}}collapse(){let t=0,s=this.toasts[0]?.contentHeight||0;for(let r of this.toasts){let a=3,n=0,o=10*(this.verticalPosition==="top"?1:-1)*t;r.el.style.zIndex=5e3-t,t>=a?(n=1-.05*(a-1),r.el.style.opacity=0):(n=1-.05*t,r.el.style.opacity=100),r.contentEl.style.height=`${s}px`,r.contentEl.style.overflow="hidden",r.el.style.transform=`scaleX(${n}) translateY(${o}px)`,t++}}},Nr=class extends I{mount(){this.closest("ui-toast-group")||(h(this,"role","status"),document.addEventListener("keydown",t=>{t.key==="Escape"&&this.hideToast()}),this.defaultPosition=this.getAttribute("position")||"bottom end")}showToast(t={}){let e=this.template().nextElementSibling;e&&e.destroyToast();let s=Number(t.duration===void 0?5e3:t.duration),r=t.dataset?.position??this.defaultPosition;t.dataset?.position!==void 0&&delete t.dataset.position,this.setAttribute("position",r);let a=this.prepareToastTemplate(t),n=()=>{this.showPopover(),a.classList.add("showing")},l=()=>{a._hiding=!0,a.classList.remove("showing"),a.getAnimations().length?a.addEventListener("transitionend",()=>{a.remove(),this.hidePopover()},{once:!0}):(a.remove(),this.hidePopover())};this.appendChild(a),n(),a.hideToast=l;let o=s!==0&&fs(()=>{l()},s);a.destroyToast=()=>{o&&o.cancel(),a.remove(),this.hidePopover()},a.addEventListener("mouseenter",()=>{o&&o.pause()}),a.addEventListener("mouseleave",()=>{o&&o.resume()}),a._closeable=new Lt(a),a._closeable.onClose(()=>a.destroyToast())}hideToast(){let t=this.template().nextElementSibling;t&&t.destroyToast()}template(){return this.querySelector("template")}prepareToastTemplate(t){let e=t.slots||{},s=t.dataset||{},r=this.template();if(!r)return console.warn("ui-toast: no template element found",this);let a=r.content.cloneNode(!0).firstElementChild;return a.setAttribute("aria-atomic","true"),Object.entries(e).forEach(([n,l])=>{[null,void 0,!1].includes(l)||a.querySelectorAll(`slot[name="${n}"]`).forEach(o=>{o.replaceWith(document.createTextNode(l))})}),Object.entries(s).forEach(([n,l])=>{a.dataset[n]=l}),a.querySelectorAll("slot").forEach(n=>n.remove()),a}};T("toast-group",Or);T("toast",Nr);var Rr=class i extends Z{boot(){this._disableable=new V(this),this._disableable.onInitAndChange(t=>{this.walker().each(e=>{e.disabled=t})}),this._selectable=new ut(this),this._controllable=new U(this,{disabled:this._disabled,bubbles:!0}),this._focusable=new _t(this,{wrap:!0}),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this._selectable.getState(),includeWhenEmpty:!1}),this._controllable.initial(t=>t&&this._selectable.setState(t)),this._controllable.getter(()=>this._selectable.getState()),this._detangled=G(),this._controllable.setter(this._detangled(t=>{this._selectable.setState(t)})),this._selectable.onChange(this._detangled(()=>{this._controllable.dispatch()})),this._selectable.onInitAndChange(()=>{this._submittable.update(this._selectable.getState())}),y(this,"keydown",t=>{["ArrowDown","ArrowRight"].includes(t.key)?(this._focusable.focusNext(),t.preventDefault(),t.stopPropagation()):["ArrowUp","ArrowLeft"].includes(t.key)&&(this._focusable.focusPrev(),t.preventDefault(),t.stopPropagation())}),h(this,"role","radiogroup"),queueMicrotask(()=>{this._submittable.update(this._selectable.getState())})}walker(){return tt(this,(t,{skip:e,reject:s})=>{if(t instanceof i)return s();if(t.localName!=="ui-radio")return e()})}},Fr=class extends Z{boot(){let t=this;this._disableable=new V(this),this._selectable=new Y(t,{value:this.hasAttribute("value")?this.getAttribute("value"):Math.random().toString(36).substring(2,10),label:this.hasAttribute("label")?this.getAttribute("label"):null,selectedInitially:this.hasAttribute("checked"),dataAttr:"data-checked",ariaAttr:"aria-checked"}),this._selectable.onChange(()=>{this._selectable.isSelected()&&this._focusable.focus(!1)}),this._disableable.onChange(e=>{e?this._focusable.untabbable():this._selectable.isSelected()&&this._focusable.tabbable()}),h(t,"role","radio"),this._focusable=new st(t,{disableable:this._disableable,tabbableAttr:"data-active"}),y(t,"click",this._disableable.disabled(e=>{e.preventDefault(),e.stopPropagation()}),{capture:!0}),y(t,"click",this._disableable.enabled(e=>{this._selectable.press()})),y(t,"keydown",this._disableable.enabled(e=>{e.key==="Enter"&&this.closest("form")?.requestSubmit()})),y(t,"keydown",this._disableable.enabled(e=>{e.key===" "&&(e.preventDefault(),e.stopPropagation())})),y(t,"keyup",this._disableable.enabled(e=>{e.key===" "&&(this._selectable.press(),e.preventDefault(),e.stopPropagation())})),dl(t),y(t,"focus",e=>{ee()&&this._selectable.select()})}get value(){return this._selectable?.getValue()}set value(t){this._selectable&&(this._selectable.value=t+"")}get checked(){return this._selectable.isSelected()}set checked(t){(this.closest("ui-radio-group")?._detangled||(()=>{}))(()=>{t&&this._selectable.select()})()}};function dl(i){i.closest("label")?.addEventListener("click",t=>{i.contains(t.target)||i.click()})}T("radio-group",Rr);T("radio",Fr);var Vr=class extends I{boot(){y(this,"scroll",t=>{this.updateAttributes()},{passive:!0}),new ResizeObserver(()=>{this.updateAttributes()}).observe(this)}mount(){queueMicrotask(()=>{this.updateAttributes()})}updateAttributes(){this.scrollLeft>12?h(this,"data-scrolled-right",""):x(this,"data-scrolled-right"),this.scrollWidth-this.clientWidth-this.scrollLeft>12?h(this,"data-scrolled-left",""):x(this,"data-scrolled-left")}};T("table-scroll-area",Vr);var Zi=class i extends I{boot(){this._disabled=this.hasAttribute("disabled")}mount(){this.walkPanels(t=>un(t)),new MutationObserver(t=>{this.walkPanels(e=>un(e))}).observe(this,{childList:!0})}showPanel(t){this.walkPanels(e=>{e.getAttribute("name")===t?e.show():e.hide()})}getPanel(t){return this.walkPanels((e,s)=>{e.getAttribute("name")===t&&s(e)})}walkPanels(t){let e=!1,s;for(let r of this.children)if(!(r instanceof i)&&!(r instanceof Qi)&&(t(r,a=>{e=!0,s=a}),e))break;return s}},qr=class extends I{boot(){y(this,"scroll",t=>{this.updateScrollVariable()},{passive:!0}),new ResizeObserver(()=>{this.updateScrollVariable()}).observe(this)}updateScrollVariable(){let t=Math.abs(this.scrollLeft)/(this.scrollWidth-this.clientWidth)*100;this.style.setProperty("--flux-scroll-percentage",t+"%")}},Qi=class i extends Z{boot(){this._focusable=new _t(this,{wrap:!0}),this._selectableGroup=new ut(this),this._controllable=new U(this,{disabled:this._disabled}),this._controllable.initial(e=>e&&this._selectableGroup.setState(e)),this._controllable.getter(()=>this._selectableGroup.getState());let t=G();this._controllable.setter(t(e=>{this._selectableGroup.setState(e)})),this._selectableGroup.onChange(t(()=>{this._controllable.dispatch()})),y(this,"keydown",e=>{["ArrowDown","ArrowRight"].includes(e.key)?(this._focusable.focusNext(),e.preventDefault(),e.stopPropagation()):["ArrowUp","ArrowLeft"].includes(e.key)&&(this._focusable.focusPrev(),e.preventDefault(),e.stopPropagation())}),h(this,"role","tablist")}mount(){this.initializeTabs(),this._focusable.ensureTabbable(),this._selectableGroup.getState()||this._selectableGroup.selectFirst(),new MutationObserver(t=>{this.initializeTabs();let e=this._selectableGroup.selected();e.el.closest("ui-tab-group").showPanel(e.value)}).observe(this,{childList:!0})}initializeTabs(){this.walker().each(t=>{t._initialized||t._disableable||t.hasAttribute("action")||(fl(t),t._initialized=!0)})}walker(){return tt(this,(t,{skip:e,reject:s})=>{if(t instanceof Zi||t instanceof i)return s();if(!["a","button"].includes(t.localName))return e()})}};function fl(i){i._disableable=new V(i);let t=i.matches("a")?i:null,e=t||i;i._disableable.onInitAndChange(r=>{r?h(e,"aria-disabled","true"):x(e,"aria-disabled")});let s=K(e,"tab");if(h(e,"role","tab"),e._focusable=new st(e,{disableable:i._disableable,tabbableAttr:"data-active"}),!t){let r=i.getAttribute("name");i._selectable=new Y(i,{value:r||Math.random().toString(36).substring(2,10),label:i.hasAttribute("label")?i.getAttribute("label"):i.textContent.trim(),selectedInitially:i.hasAttribute("selected"),toggleable:!1}),y(i,"click",()=>i._selectable.press()),i._selectable.onInitAndChange(()=>{let n=i.closest("ui-tab-group")?.getPanel(r);i._selectable.getState()?n?.show():n?.hide(),i._selectable.getState()&&i._focusable.focus(!1)});let a=null;i.closest("ui-tab-group")?.hasAttribute("manual")||(y(i,"pointerdown",()=>{clearTimeout(a),a=setTimeout(()=>a=null)}),y(i,"focus",()=>{a||i._selectable.select()})),queueMicrotask(()=>{let n=i.closest("ui-tab-group");if(!n)return;let l=n.getPanel(r);if(!l)throw new Error("Could not find panel...");h(i,"aria-controls",l.id),h(l,"aria-labelledby",i.id)})}}function un(i){i._initialized||(K(i,"tab-panel"),h(i,"role","tabpanel"),i.hasAttribute("tabindex")||h(i,"tabindex","-1"),i.show=()=>{h(i,"data-selected",""),h(i,"tabindex","0")},i.hide=()=>{x(i,"data-selected"),h(i,"tabindex","-1")},i._initialized=!0)}T("tab-group",Zi);T("tabs-scroll-area",qr);T("tabs",Qi);var $r=class extends Z{mount(){this.inputEls=this.querySelectorAll("[data-flux-otp-input]"),this.length=this.inputEls.length,this.config={mode:this.getAttribute("mode")||"numeric",autocomplete:this.getAttribute("autocomplete")||"one-time-code",autoSubmit:this.getAttribute("submit")==="auto",inputAriaLabelTemplate:this.getAttribute("data-flux-input-aria-label")||"Character {current} of {total}"},this.state={length:0,onChanges:[],getValue:()=>Array.from(this.inputEls).map(e=>e.value).join(""),setValue:e=>{let s=(e??"").replace(/\s/g,"").replace(this.invalidCharacters(),"").toUpperCase();for(let r=0;rr(s))},notify:()=>{let e=this.state.getValue();this.state.length=e.length,this.state.onChanges.forEach(s=>s(e))},reapply:()=>{let e=this.state.getValue();this.state.setValue(e)},onChange:e=>{this.state.onChanges.push(e)}},this.hasAttribute("value")&&this.state.setValue(this.getAttribute("value")),this._controllable=new U(this),this._controllable.initial(e=>e&&this.state.setValue(e)),this._controllable.getter(()=>this.state.getValue());let t=G();this._controllable.setter(t(e=>this.state.setValue(e))),this.state.onChange(t(()=>this._controllable.dispatch())),this._submittable=new Q(this,{name:this.getAttribute("name"),value:this.state.getValue()}),this.state.onChange(e=>{this._submittable.update(e),e.length===this.length&&this.config.autoSubmit&&this.closest("form")?.requestSubmit(),Array.from(this.inputEls).findIndex(r=>r===document.activeElement)>this.nextIndex()&&this.focusIndex(this.nextIndex())}),this._disableable=new V(this),this._disableable.onInitAndChange(e=>{for(let s of this.inputEls)e?h(s,"disabled",e):x(s,"disabled")}),this.updateTabIndexes(this.nextIndex());for(let e=0;e{s=r.target.value}),y(this.inputEls[e],"input",r=>{r.stopPropagation();let a=r.target.value;if(a.length>1){this.state.setValue(a),this.focusIndex(this.nextIndex()),r.preventDefault();return}if(a==""){this.state.reapply(),e{["Backspace","Delete","Clear"].includes(r.key)?r.target.value===""&&requestAnimationFrame(()=>this.focusPrev(e)):r.key==="ArrowRight"?(bt(this)?this.focusPrev(e):this.focusNext(e),r.preventDefault()):r.key==="ArrowLeft"&&(bt(this)?this.focusNext(e):this.focusPrev(e),r.preventDefault())}),y(this.inputEls[e],"pointerdown",r=>{this.focusIndex(Math.min(e,this.nextIndex())),r.preventDefault()}),y(this.inputEls[e],"focus",r=>{r.target.setSelectionRange(0,1),this.updateTabIndexes(e)})}}trigger(){return this.inputEls[this.nextIndex()]}focusIndex(t){let e=this.inputEls[t];document.activeElement===e&&e.blur(),e.focus()}focusPrev(t){this.focusIndex(Math.max(0,t-1))}focusNext(t){this.focusIndex(Math.min(t+1,this.nextIndex()))}nextIndex(){return Math.min(this.state.length,this.length-1)}updateTabIndexes(t){for(let e=0;e{let i=window.Alpine,t=window.Flux?.applyAppearance;t||(t=()=>{window.Flux.appearance=null,window.localStorage.removeItem("flux.appearance")});let e=i.reactive({toast(...r){let a={slots:{},dataset:{}};typeof r[0]=="string"&&(a.slots.text=r.shift()),typeof r[0]=="string"&&(a.slots.heading=a.slots.text,a.slots.text=r.shift());let n=r.shift()||{};n.text&&(a.slots.text=n.text),n.heading&&(a.slots.heading=n.heading),n.variant&&(a.dataset.variant=n.variant),n.position&&(a.dataset.position=n.position),n.duration!==void 0&&(a.duration=n.duration),document.dispatchEvent(new CustomEvent("toast-show",{detail:a}))},modal(r){return{show(){document.dispatchEvent(new CustomEvent("modal-show",{detail:{name:r}}))},close(){document.dispatchEvent(new CustomEvent("modal-close",{detail:{name:r}}))}}},modals(){return{close(){document.dispatchEvent(new CustomEvent("modal-close",{detail:{}}))}}},appearance:window.localStorage.getItem("flux.appearance")||"system",systemAppearanceChanged:1,get dark(){return JSON.stringify(e.systemAppearanceChanged),e.appearance==="system"?window.matchMedia("(prefers-color-scheme: dark)").matches:e.appearance==="dark"},set dark(r){let a=this.dark;r!==a&&(r?e.appearance="dark":e.appearance="light")}});window.Flux=e,i.magic("flux",()=>e),i.effect(()=>{t(e.appearance)}),document.addEventListener("livewire:navigating",r=>{r.detail.onSwap(()=>{t(e.appearance)})}),window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",()=>{e.systemAppearanceChanged++,t(e.appearance)}),i.data("fluxInputClearable",()=>({clear(){let r=this.$el.closest("[data-flux-input]").querySelector("input");r.value="",r.dispatchEvent(new Event("input",{bubbles:!1})),r.dispatchEvent(new Event("change",{bubbles:!1})),r.dispatchEvent(new CustomEvent("clear",{bubbles:!1})),r.focus()}})),i.data("fluxInputViewable",()=>({open:!1,toggle(){this.open=!this.open,this.$el.closest("[data-flux-input]").querySelector("input").setAttribute("type",this.open?"text":"password")},init(){let r=this.$el.closest("[data-flux-input]")?.querySelector("input");if(!r)return;new MutationObserver(()=>{let n=this.open?"text":"password";r.getAttribute("type")!==n&&r.setAttribute("type",n)}).observe(r,{attributes:!0,attributeFilter:["type"]})}})),i.data("fluxInputCopyable",()=>({copied:!1,copy(){this.copied=!this.copied;let r=this.$el.closest("[data-flux-input]").querySelector("input");navigator.clipboard&&navigator.clipboard.writeText(r.value),r.dispatchEvent(new CustomEvent("copy",{bubbles:!1})),setTimeout(()=>this.copied=!1,2e3)}})),i.data("fluxInputFile",r=>({updateLabel(a){this.$refs.name.textContent=a.target.files[1]?a.target.files.length+" "+r.files:a.target.files[0]?.name||r.noFile},init(){Object.defineProperty(this.$refs.input,"value",{...Object.getOwnPropertyDescriptor(HTMLInputElement.prototype,"value"),set(a){Object.getOwnPropertyDescriptor(HTMLInputElement.prototype,"value").set.call(this,a),a||this.dispatchEvent(new Event("change",{bubbles:!0}))}})}})),i.data("fluxModal",(r,a)=>({handleShow(n){n.detail.name===r&&(a&&n.detail.scope===a?this.$el.showModal():n.detail.scope||this.$el.showModal())},handleClose(n){n.detail.name?n.detail.name===r&&(a&&n.detail.scope===a?this.$el.close():n.detail.scope||this.$el.close()):this.$el.close()}})),i.data("fluxCommandInputClearable",()=>({clear(){let r=this.$el.closest("[data-flux-command-input]").querySelector("input");r.value="",r.dispatchEvent(new Event("input",{bubbles:!1})),r.dispatchEvent(new CustomEvent("clear",{bubbles:!1})),r.focus()}})),i.data("fluxSelectSearchClearable",()=>({clear(){let r=this.$el.closest("[data-flux-select-search]").querySelector("input");r.value="",r.dispatchEvent(new Event("input",{bubbles:!1})),r.dispatchEvent(new CustomEvent("clear",{bubbles:!1})),r.focus()}})),i.data("fluxPillboxSearchClearable",()=>({clear(){let r=this.$el.closest("[data-flux-pillbox-search]").querySelector("input");r.value="",r.dispatchEvent(new Event("input",{bubbles:!1})),r.dispatchEvent(new CustomEvent("clear",{bubbles:!1})),r.focus()}}))});!sa()&&!ra()&&aa();})(); diff --git a/chrono.docs/Master of Ceremonies_files/js b/chrono.docs/Master of Ceremonies_files/js deleted file mode 100644 index 7d7524c..0000000 --- a/chrono.docs/Master of Ceremonies_files/js +++ /dev/null @@ -1,811 +0,0 @@ - -// Copyright 2012 Google Inc. All rights reserved. - -(function(){ - -var data = { -"resource": { - "version":"1", - - "macros":[{"function":"__e"}], - "tags":[{"function":"__ogt_1p_data_v2","priority":2,"vtp_isAutoEnabled":true,"vtp_autoPhoneEnabled":true,"vtp_autoCollectExclusionSelectors":["list",["map","exclusionSelector",""]],"vtp_isEnabled":true,"vtp_autoAddressEnabled":true,"vtp_autoEmailEnabled":true,"vtp_isAutoCollectPiiEnabledFlag":true,"tag_id":5},{"function":"__ccd_ads_first","priority":1,"vtp_instanceDestinationId":"AW-18117601294","tag_id":8},{"function":"__rep","vtp_containerId":"AW-18117601294","vtp_remoteConfig":["map"],"tag_id":2},{"function":"__ccd_ads_last","priority":0,"vtp_instanceDestinationId":"AW-18117601294","tag_id":7}], - "predicates":[{"function":"_eq","arg0":["macro",0],"arg1":"gtm.js"},{"function":"_eq","arg0":["macro",0],"arg1":"gtm.init"}], - "rules":[[["if",0],["add",2]],[["if",1],["add",0,3,1]]] -}, -"runtime":[ [50,"__ccd_ads_first",[46,"a"],[50,"f",[46,"g"],[2,[15,"c"],"A",[7,[15,"g"]]],[2,[15,"d"],"A",[7,[15,"g"]]],[2,[15,"e"],"A",[7,[15,"g"]]]],[52,"b",["require","internal.registerCcdCallback"]],[52,"c",[15,"__module_taskSetGppParams"]],[52,"d",[15,"__module_taskPlatformDetection"]],[52,"e",[15,"__module_taskSetTestHitParams"]],["b",[17,[15,"a"],"instanceDestinationId"],[51,"",[7,"g"],["f",[15,"g"]]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__ccd_ads_last",[46,"a"],[50,"g",[46,"h"],[2,[15,"f"],"A",[7,[15,"h"]]]],[52,"b",["require","internal.registerCcdCallback"]],[52,"c",[15,"__module_metadataSchema"]],[52,"d",[15,"__module_gtagSchema"]],[52,"e",[15,"__module_adwordsHitType"]],[52,"f",[15,"__module_taskEnableEncryption"]],["b",[17,[15,"a"],"instanceDestinationId"],[51,"",[7,"h"],["g",[15,"h"]],[52,"i",[2,[15,"h"],"getMetadata",[7,[17,[15,"c"],"AN"]]]],[22,[21,[15,"i"],[17,[15,"e"],"D"]],[46,[53,[2,[15,"h"],"setHitData",[7,[17,[15,"d"],"KK"],[44]]]]]],[22,[1,[20,[15,"i"],[17,[15,"e"],"D"]],[28,[2,[15,"h"],"getHitData",[7,[17,[15,"d"],"KI"]]]]],[46,[53,[2,[15,"h"],"abort",[7]]]]]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__e",[46,"a"],[36,[13,[41,"$0"],[3,"$0",["require","internal.getEventData"]],["$0","event"]]]] - ,[50,"__ogt_1p_data_v2",[46,"a"],[50,"r",[46,"w","x"],[52,"y",[7]],[52,"z",[2,[15,"b"],"keys",[7,[15,"w"]]]],[65,"aA",[15,"z"],[46,[53,[52,"aB",[30,[16,[15,"w"],[15,"aA"]],[7]]],[52,"aC",[39,[18,[17,[15,"aB"],"length"],0],"1","0"]],[52,"aD",[39,["s",[15,"x"],[15,"aA"]],"1","0"]],[2,[15,"y"],"push",[7,[0,[0,[0,[16,[15,"q"],[15,"aA"]],"-"],[15,"aC"]],[15,"aD"]]]]]]],[36,[2,[15,"y"],"join",[7,"~"]]]],[50,"s",[46,"w","x"],[22,[28,[15,"w"]],[46,[53,[36,false]]]],[38,[15,"x"],[46,"email","phone_number","first_name","last_name","street","city","region","postal_code","country"],[46,[5,[46,[36,[28,[28,[16,[15,"w"],"email"]]]]]],[5,[46,[36,[28,[28,[16,[15,"w"],"phone_number"]]]]]],[5,[46]],[5,[46]],[5,[46]],[5,[46]],[5,[46]],[5,[46]],[5,[46,[36,["t",[15,"w"],[15,"x"]]]]],[9,[46,[36,false]]]]]],[50,"t",[46,"w","x"],[36,[1,[28,[28,[16,[15,"w"],"address"]]],[28,[28,[16,[16,[15,"w"],"address"],[15,"x"]]]]]]],[50,"u",[46,"w","x","y","z"],[22,[20,[16,[15,"x"],"type"],[15,"y"]],[46,[53,[22,[28,[15,"w"]],[46,[53,[3,"w",[8]]]]],[22,[28,[16,[15,"w"],[15,"y"]]],[46,[53,[43,[15,"w"],[15,"y"],[16,[15,"x"],"userData"]],[52,"aA",[8,"mode","a"]],[22,[16,[15,"x"],"tagName"],[46,[53,[43,[15,"aA"],"location",[16,[15,"x"],"tagName"]]]]],[22,[16,[15,"x"],"querySelector"],[46,[53,[43,[15,"aA"],"selector",[16,[15,"x"],"querySelector"]]]]],[43,[15,"z"],[15,"y"],[15,"aA"]]]]]]]],[36,[15,"w"]]],[50,"v",[46,"w","x","y"],[22,[28,[16,[15,"a"],[15,"y"]]],[46,[36]]],[43,[15,"w"],[15,"x"],[8,"value",[16,[15,"a"],[15,"y"]]]]],[22,[28,[17,[15,"a"],"isEnabled"]],[46,[53,[2,[15,"a"],"gtmOnSuccess",[7]],[36]]]],[52,"b",["require","Object"]],[52,"c",["require","internal.isFeatureEnabled"]],[52,"d",[15,"__module_featureFlags"]],[52,"e",[15,"__module_features"]],[52,"f",["require","internal.getDestinationIds"]],[52,"g",["require","internal.getProductSettingsParameter"]],[52,"h",["require","internal.detectUserProvidedData"]],[52,"i",["require","queryPermission"]],[52,"j",["require","internal.setRemoteConfigParameter"]],[52,"k",["require","internal.registerCcdCallback"]],[52,"l",[15,"__module_metadataSchema"]],[52,"m","_z"],[52,"n",["c",[17,[15,"e"],"BG"]]],[52,"o",[30,["f"],[7]]],[52,"p",[8,"enable_code",true]],[52,"q",[8,"email","1","phone_number","2","first_name","3","last_name","4","country","5","postal_code","6","street","7","city","8","region","9"]],[22,[17,[15,"a"],"isAutoEnabled"],[46,[53,[52,"w",[7]],[22,[1,[17,[15,"a"],"autoCollectExclusionSelectors"],[17,[17,[15,"a"],"autoCollectExclusionSelectors"],"length"]],[46,[53,[53,[41,"z"],[3,"z",0],[63,[7,"z"],[23,[15,"z"],[17,[17,[15,"a"],"autoCollectExclusionSelectors"],"length"]],[33,[15,"z"],[3,"z",[0,[15,"z"],1]]],[46,[53,[52,"aA",[17,[16,[17,[15,"a"],"autoCollectExclusionSelectors"],[15,"z"]],"exclusionSelector"]],[22,[15,"aA"],[46,[53,[2,[15,"w"],"push",[7,[15,"aA"]]]]]]]]]]]]],[52,"x",[17,[15,"a"],"isAutoCollectPiiEnabledFlag"]],[52,"y",[39,[17,[15,"a"],"isAutoCollectPiiEnabledFlag"],[17,[15,"a"],"autoEmailEnabled"],true]],[43,[15,"p"],"auto_detect",[8,"email",[15,"y"],"phone",[1,[15,"x"],[17,[15,"a"],"autoPhoneEnabled"]],"address",[1,[15,"x"],[17,[15,"a"],"autoAddressEnabled"]],"exclude_element_selectors",[15,"w"]]]]]],[22,[17,[15,"a"],"isManualEnabled"],[46,[53,[52,"w",[8]],[22,[17,[15,"a"],"manualEmailEnabled"],[46,[53,["v",[15,"w"],"email","emailValue"]]]],[22,[17,[15,"a"],"manualPhoneEnabled"],[46,[53,["v",[15,"w"],"phone","phoneValue"]]]],[22,[17,[15,"a"],"manualAddressEnabled"],[46,[53,[52,"x",[8]],["v",[15,"x"],"first_name","firstNameValue"],["v",[15,"x"],"last_name","lastNameValue"],["v",[15,"x"],"street","streetValue"],["v",[15,"x"],"city","cityValue"],["v",[15,"x"],"region","regionValue"],["v",[15,"x"],"country","countryValue"],["v",[15,"x"],"postal_code","postalCodeValue"],[43,[15,"w"],"name_and_address",[7,[15,"x"]]]]]],[43,[15,"p"],"selectors",[15,"w"]]]]],[65,"w",[15,"o"],[46,[53,["j",[15,"w"],"user_data_settings",[15,"p"]],[52,"x",[16,[15,"p"],"auto_detect"]],[22,[28,[15,"x"]],[46,[53,[6]]]],[52,"y",[51,"",[7,"z"],[52,"aA",[2,[15,"z"],"getMetadata",[7,[17,[15,"l"],"CU"]]]],[22,[15,"aA"],[46,[53,[36,[15,"aA"]]]]],[52,"aB",[1,["c",[17,[15,"d"],"T"]],[20,[2,[15,"w"],"indexOf",[7,"G-"]],0]]],[52,"aC",["c",[17,[15,"e"],"CX"]]],[41,"aD"],[22,["i","detect_user_provided_data","auto"],[46,[53,[3,"aD",["h",[8,"excludeElementSelectors",[16,[15,"x"],"exclude_element_selectors"],"fieldFilters",[8,"email",[16,[15,"x"],"email"],"phone",[16,[15,"x"],"phone"],"address",[16,[15,"x"],"address"]],"performDataLayerSearch",[15,"aB"],"includeSelector",[15,"aC"]]]]]]],[52,"aE",[1,[15,"aD"],[16,[15,"aD"],"elements"]]],[52,"aF",[8]],[52,"aG",[8]],[22,[1,[15,"aE"],[18,[17,[15,"aE"],"length"],0]],[46,[53,[41,"aH"],[41,"aI"],[3,"aI",[8]],[53,[41,"aJ"],[3,"aJ",0],[63,[7,"aJ"],[23,[15,"aJ"],[17,[15,"aE"],"length"]],[33,[15,"aJ"],[3,"aJ",[0,[15,"aJ"],1]]],[46,[53,[52,"aK",[16,[15,"aE"],[15,"aJ"]]],["u",[15,"aF"],[15,"aK"],"email",[15,"aG"]],[22,["c",[17,[15,"e"],"CO"]],[46,[53,["u",[15,"aF"],[15,"aK"],"phone_number",[15,"aG"]],[3,"aH",["u",[15,"aH"],[15,"aK"],"first_name",[15,"aI"]]],[3,"aH",["u",[15,"aH"],[15,"aK"],"last_name",[15,"aI"]]],[3,"aH",["u",[15,"aH"],[15,"aK"],"country",[15,"aI"]]],[3,"aH",["u",[15,"aH"],[15,"aK"],"postal_code",[15,"aI"]]]]]]]]]],[22,[1,[15,"aH"],[28,[16,[15,"aF"],"address"]]],[46,[53,[43,[15,"aF"],"address",[15,"aH"]],[22,[15,"n"],[46,[53,[43,[16,[15,"aF"],"address"],"_tag_metadata",[15,"aI"]]]]]]]]]]],[22,[15,"aB"],[46,[53,[52,"aH",[1,[15,"aD"],[16,[15,"aD"],"dataLayerSearchResults"]]],[22,[15,"aH"],[46,[53,[52,"aI",["r",[15,"aH"],[15,"aF"]]],[22,[15,"aI"],[46,[53,[2,[15,"z"],"setHitData",[7,[15,"m"],[15,"aI"]]]]]]]]]]]],[22,[15,"n"],[46,[53,[22,[30,[16,[15,"aF"],"email"],[16,[15,"aF"],"phone_number"]],[46,[53,[43,[15,"aF"],"_tag_metadata",[15,"aG"]]]]]]]],[2,[15,"z"],"setMetadata",[7,[17,[15,"l"],"CU"],[15,"aF"]]],[36,[15,"aF"]]]],["k",[15,"w"],[51,"",[7,"z"],[2,[15,"z"],"setMetadata",[7,[17,[15,"l"],"CV"],[15,"y"]]]]]]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__rep",[46,"a"],[52,"b",["require","internal.registerDestination"]],[22,[28,["b",[17,[15,"a"],"containerId"],[17,[15,"a"],"remoteConfig"]]],[46,[53,[2,[15,"a"],"gtmOnFailure",[7]],[36]]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[52,"__module_adwordsHitType",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b","conversion"],[52,"c","floodlight"],[52,"d","ga_conversion"],[52,"e","page_view"],[52,"f","remarketing"],[52,"g","user_data_lead"],[52,"h","user_data_web"],[36,[8,"D",[15,"b"],"E",[15,"c"],"F",[15,"d"],"H",[15,"e"],"I",[15,"f"],"J",[15,"g"],"K",[15,"h"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_features",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b",425],[52,"c",435],[52,"d",488],[52,"e",489],[52,"f",498],[52,"g",502],[52,"h",503],[52,"i",504],[52,"j",506],[52,"k",523],[52,"l",532],[52,"m",553],[52,"n",568],[52,"o",577],[52,"p",581],[52,"q",583],[36,[8,"BJ",[15,"l"],"AL",[15,"d"],"AV",[15,"g"],"CX",[15,"o"],"CO",[15,"n"],"AW",[15,"h"],"DB",[15,"p"],"BG",[15,"k"],"AM",[15,"e"],"AX",[15,"i"],"O",[15,"c"],"BZ",[15,"m"],"AY",[15,"j"],"DD",[15,"q"],"AS",[15,"f"],"J",[15,"b"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_gtagSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b","ad_personalization"],[52,"c","ad_storage"],[52,"d","ad_user_data"],[52,"e","consent_updated"],[52,"f","app_remove"],[52,"g","app_store_refund"],[52,"h","app_store_subscription_cancel"],[52,"i","app_store_subscription_convert"],[52,"j","app_store_subscription_renew"],[52,"k","conversion"],[52,"l","purchase"],[52,"m","first_open"],[52,"n","first_visit"],[52,"o","gtag.config"],[52,"p","in_app_purchase"],[52,"q","page_view"],[52,"r","session_start"],[52,"s","user_engagement"],[52,"t","ads_data_redaction"],[52,"u","allow_ad_personalization_signals"],[52,"v","allow_custom_scripts"],[52,"w","allow_enhanced_conversions"],[52,"x","allow_google_signals"],[52,"y","auid"],[52,"z","aw_remarketing_only"],[52,"aA","discount"],[52,"aB","aw_feed_country"],[52,"aC","aw_feed_language"],[52,"aD","items"],[52,"aE","aw_merchant_id"],[52,"aF","aw_basket_type"],[52,"aG","client_id"],[52,"aH","conversion_cookie_prefix"],[52,"aI","conversion_id"],[52,"aJ","conversion_linker"],[52,"aK","conversion_api"],[52,"aL","cookie_deprecation"],[52,"aM","cookie_expires"],[52,"aN","cookie_prefix"],[52,"aO","cookie_update"],[52,"aP","country"],[52,"aQ","currency"],[52,"aR","customer_lifetime_value"],[52,"aS","customer_loyalty"],[52,"aT","customer_ltv_bucket"],[52,"aU","customer_type"],[52,"aV","debug_mode"],[52,"aW","shipping"],[52,"aX","engagement_time_msec"],[52,"aY","estimated_delivery_date"],[52,"aZ","event_developer_id_string"],[52,"bA","event_id"],[52,"bB","event"],[52,"bC","_&ae"],[52,"bD","event_timeout"],[52,"bE","ext_client_id"],[52,"bF","first_party_collection"],[52,"bG","match_id"],[52,"bH","gdpr_applies"],[52,"bI","_gt_metadata"],[52,"bJ","google_analysis_params"],[52,"bK","_google_ng"],[52,"bL","_ono"],[52,"bM","gpp_sid"],[52,"bN","gpp_string"],[52,"bO","gsa_experiment_id"],[52,"bP","gtag_event_feature_usage"],[52,"bQ","iframe_state"],[52,"bR","ignore_referrer"],[52,"bS","is_passthrough"],[52,"bT","language"],[52,"bU","merchant_feed_label"],[52,"bV","merchant_feed_language"],[52,"bW","merchant_id"],[52,"bX","new_customer"],[52,"bY","page_hostname"],[52,"bZ","page_path"],[52,"cA","page_referrer"],[52,"cB","page_title"],[52,"cC","_platinum_request_status"],[52,"cD","quantity"],[52,"cE","restricted_data_processing"],[52,"cF","screen_resolution"],[52,"cG","send_page_view"],[52,"cH","server_container_3p_enrichment"],[52,"cI","server_container_url"],[52,"cJ","session_duration"],[52,"cK","session_engaged_time"],[52,"cL","session_id"],[52,"cM","_shared_user_id"],[52,"cN","delivery_postal_code"],[52,"cO","testonly"],[52,"cP","topmost_url"],[52,"cQ","transaction_id"],[52,"cR","transaction_id_source"],[52,"cS","transport_url"],[52,"cT","update"],[52,"cU","_user_agent_architecture"],[52,"cV","_user_agent_bitness"],[52,"cW","_user_agent_full_version_list"],[52,"cX","_user_agent_mobile"],[52,"cY","_user_agent_model"],[52,"cZ","_user_agent_platform"],[52,"dA","_user_agent_platform_version"],[52,"dB","_user_agent_wow64"],[52,"dC","user_data"],[52,"dD","user_data_auto_latency"],[52,"dE","user_data_auto_meta"],[52,"dF","user_data_auto_multi"],[52,"dG","user_data_auto_selectors"],[52,"dH","user_data_auto_status"],[52,"dI","user_data_mode"],[52,"dJ","user_id"],[52,"dK","user_properties"],[52,"dL","us_privacy_string"],[52,"dM","value"],[52,"dN","_fpm_parameters"],[52,"dO","_host_name"],[52,"dP","_in_page_command"],[52,"dQ","_measurement_type"],[52,"dR","non_personalized_ads"],[52,"dS","conversion_label"],[52,"dT","page_location"],[52,"dU","_extracted_data"],[52,"dV","global_developer_id_string"],[52,"dW","tc_privacy_string"],[36,[8,"A",[15,"b"],"B",[15,"c"],"C",[15,"d"],"F",[15,"e"],"I",[15,"f"],"J",[15,"g"],"K",[15,"h"],"L",[15,"i"],"M",[15,"j"],"O",[15,"k"],"AA",[15,"l"],"AF",[15,"m"],"AG",[15,"n"],"AH",[15,"o"],"AJ",[15,"p"],"AK",[15,"q"],"AM",[15,"r"],"AQ",[15,"s"],"BC",[15,"t"],"BJ",[15,"u"],"BK",[15,"v"],"BM",[15,"w"],"BN",[15,"x"],"BT",[15,"y"],"BX",[15,"z"],"BY",[15,"aA"],"BZ",[15,"aB"],"CA",[15,"aC"],"CB",[15,"aD"],"CC",[15,"aE"],"CD",[15,"aF"],"CL",[15,"aG"],"CQ",[15,"aH"],"CR",[15,"aI"],"KI",[15,"dS"],"CS",[15,"aJ"],"CU",[15,"aK"],"CW",[15,"aL"],"CY",[15,"aM"],"DC",[15,"aN"],"DD",[15,"aO"],"DE",[15,"aP"],"DF",[15,"aQ"],"DG",[15,"aR"],"DH",[15,"aS"],"DI",[15,"aT"],"DJ",[15,"aU"],"DP",[15,"aV"],"EC",[15,"aW"],"EE",[15,"aX"],"EI",[15,"aY"],"EL",[15,"aZ"],"EM",[15,"bA"],"EP",[15,"bB"],"EQ",[15,"bC"],"ES",[15,"bD"],"KK",[15,"dU"],"EW",[15,"bE"],"EY",[15,"bF"],"FG",[15,"bG"],"FQ",[15,"bH"],"FR",[15,"bI"],"KL",[15,"dV"],"FV",[15,"bJ"],"FW",[15,"bK"],"FX",[15,"bL"],"GA",[15,"bM"],"GB",[15,"bN"],"GD",[15,"bO"],"GE",[15,"bP"],"GG",[15,"bQ"],"GH",[15,"bR"],"GM",[15,"bS"],"GO",[15,"bT"],"GV",[15,"bU"],"GW",[15,"bV"],"GX",[15,"bW"],"HB",[15,"bX"],"HE",[15,"bY"],"KJ",[15,"dT"],"HF",[15,"bZ"],"HG",[15,"cA"],"HH",[15,"cB"],"HP",[15,"cC"],"HR",[15,"cD"],"HV",[15,"cE"],"HZ",[15,"cF"],"IC",[15,"cG"],"IE",[15,"cH"],"IF",[15,"cI"],"IH",[15,"cJ"],"IJ",[15,"cK"],"IK",[15,"cL"],"IM",[15,"cM"],"IN",[15,"cN"],"KM",[15,"dW"],"IR",[15,"cO"],"IT",[15,"cP"],"IW",[15,"cQ"],"IX",[15,"cR"],"IY",[15,"cS"],"JA",[15,"cT"],"JD",[15,"cU"],"JE",[15,"cV"],"JF",[15,"cW"],"JG",[15,"cX"],"JH",[15,"cY"],"JI",[15,"cZ"],"JJ",[15,"dA"],"JK",[15,"dB"],"JL",[15,"dC"],"JM",[15,"dD"],"JN",[15,"dE"],"JO",[15,"dF"],"JP",[15,"dG"],"JQ",[15,"dH"],"JR",[15,"dI"],"JT",[15,"dJ"],"JU",[15,"dK"],"JW",[15,"dL"],"JX",[15,"dM"],"JZ",[15,"dN"],"KA",[15,"dO"],"KB",[15,"dP"],"KE",[15,"dQ"],"KF",[15,"dR"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_metadataSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b","abort_without_fail"],[52,"c","accept_by_default"],[52,"d","allow_ad_personalization"],[52,"e","consent_state"],[52,"f","consent_updated"],[52,"g","conversion_linker_enabled"],[52,"h","conversion_marking_called"],[52,"i","cookie_options"],[52,"j","em_event"],[52,"k","event_provenance"],[52,"l","event_source"],[52,"m","event_start_timestamp_ms"],[52,"n","event_usage"],[52,"o","extra_tag_experiment_ids"],[52,"p","ga4_collection_subdomain"],[52,"q","gtm_extracted_data"],[52,"r","handle_internally"],[52,"s","has_ga_conversion_consents"],[52,"t","hit_type"],[52,"u","hit_type_override"],[52,"v","ignore_dupe_config"],[52,"w","is_conversion"],[52,"x","is_external_event"],[52,"y","is_first_visit"],[52,"z","is_first_visit_conversion"],[52,"aA","is_fpm_encryption"],[52,"aB","is_fpm_split"],[52,"aC","is_gcp_browser"],[52,"aD","is_google_measurement_allowed"],[52,"aE","is_server_side_destination"],[52,"aF","is_session_start"],[52,"aG","is_session_start_conversion"],[52,"aH","is_sgtm_ga_ads_conversion_study_control_group"],[52,"aI","is_sgtm_prehit"],[52,"aJ","is_split_conversion"],[52,"aK","is_syn"],[52,"aL","is_test_event"],[52,"aM","prehit_for_retry"],[52,"aN","redact_ads_data"],[52,"aO","redact_click_ids"],[52,"aP","send_ccm_parallel_ping"],[52,"aQ","send_user_data_hit"],[52,"aR","speculative"],[52,"aS","syn_or_mod"],[52,"aT","transient_ecsid"],[52,"aU","transmission_type"],[52,"aV","user_data"],[52,"aW","user_data_from_automatic"],[52,"aX","user_data_from_automatic_getter"],[52,"aY","user_data_from_code"],[52,"aZ","user_data_from_manual"],[36,[8,"A",[15,"b"],"B",[15,"c"],"E",[15,"d"],"L",[15,"e"],"M",[15,"f"],"N",[15,"g"],"O",[15,"h"],"P",[15,"i"],"R",[15,"j"],"X",[15,"k"],"Y",[15,"l"],"Z",[15,"m"],"AA",[15,"n"],"AB",[15,"o"],"AH",[15,"p"],"AK",[15,"q"],"AL",[15,"r"],"AM",[15,"s"],"AN",[15,"t"],"AO",[15,"u"],"AP",[15,"v"],"AS",[15,"w"],"AV",[15,"x"],"AW",[15,"y"],"AX",[15,"z"],"AZ",[15,"aA"],"BA",[15,"aB"],"BB",[15,"aC"],"BC",[15,"aD"],"BH",[15,"aE"],"BI",[15,"aF"],"BJ",[15,"aG"],"BK",[15,"aH"],"BL",[15,"aI"],"BN",[15,"aJ"],"BO",[15,"aK"],"BP",[15,"aL"],"BV",[15,"aM"],"BY",[15,"aN"],"BZ",[15,"aO"],"CB",[15,"aP"],"CK",[15,"aQ"],"CN",[15,"aR"],"CQ",[15,"aS"],"CR",[15,"aT"],"CS",[15,"aU"],"CT",[15,"aV"],"CU",[15,"aW"],"CV",[15,"aX"],"CW",[15,"aY"],"CX",[15,"aZ"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_featureFlags",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b",44],[52,"c",45],[52,"d",46],[52,"e",47],[52,"f",129],[52,"g",174],[52,"h",276],[36,[8,"F",[15,"b"],"G",[15,"c"],"H",[15,"d"],"I",[15,"e"],"Y",[15,"g"],"AG",[15,"h"],"T",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_crossContainerSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b","cookie_deprecation_label"],[52,"c","pld"],[52,"d","shared_user_id"],[52,"e","shared_user_id_requested"],[52,"f","shared_user_id_source"],[36,[8,"B",[15,"b"],"N",[15,"c"],"S",[15,"d"],"T",[15,"e"],"U",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_platformSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b",1],[52,"c",2],[52,"d",3],[52,"e",4],[52,"f",5],[52,"g",6],[36,[8,"A",[15,"b"],"F",[15,"g"],"B",[15,"c"],"C",[15,"d"],"D",[15,"e"],"E",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_platformDetection",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"o",[46],[68,"w",[53,[22,[1,[28,["e",[17,[15,"h"],"AS"]]],[28,["e",[17,[15,"h"],"J"]]]],[46,[53,[36,[7]]]]],[52,"w",["b",[17,[15,"g"],"N"]]],[22,["n",[15,"w"]],[46,[53,[36,[15,"w"]]]]],[52,"x",[7]],[22,["p"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"A"]]]]],[22,["q"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"B"]]]]],[22,["r"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"F"]]]]],[22,["u"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"D"]]]]],[22,["s"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"E"]]]]],[22,["t"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"C"]]]]],[22,["l"],[46,[53,["f",[17,[15,"g"],"N"],[15,"x"],true]]]],[36,[15,"x"]]],[46]],[36,[7]]],[50,"p",[46],[68,"w",[53,[36,[28,[28,["c","script[data-requiremodule^=\"mage/\"]"]]]]],[46]],[36,false]],[50,"q",[46],[68,"w",[53,[52,"w",["m","YXNzZXRzLnNxdWFyZXNwYWNlLmNvbS8="]],[22,[28,[15,"w"]],[46,[36,false]]],[36,[28,[28,["c",[0,[0,"script[src^=\"//",[15,"w"]],"\"]"]]]]]],[46]],[36,false]],[50,"r",[46],[22,[28,["e",[17,[15,"h"],"J"]]],[46,[53,[36,false]]]],[68,"w",[53,[52,"w",["m","c2hvcGlmeS5jb20="]],[52,"x",["m","c2hvcGlmeWNkbi5jb20="]],[22,[30,[28,[15,"w"]],[28,[15,"x"]]],[46,[36,false]]],[36,[28,[28,["c",[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,"script[src*=\"cdn.",[15,"w"]],"\"],"],"meta[property=\"og:image\"][content*=\"cdn."],[15,"w"]],"\"],"],"link[rel=\"preconnect\"][href*=\"cdn."],[15,"w"]],"\"],"],"link[rel=\"preconnect\"][href*=\"fonts."],[15,"x"]],"\"],"],"link[rel=\"preconnect\"][href*=\"iterable-shopify\"],"],"link[rel=\"preconnect\"][href*=\"v."],[15,"w"]],"\"]"]]]]]],[46]],[36,false]],[50,"s",[46],[68,"w",[53,[52,"w",["d","protocol"]],[52,"x",["d","host"]],[52,"y",[39,[1,[15,"w"],[15,"x"]],[0,[0,[0,[0,"[src^=\"",[15,"w"]],"://"],[15,"x"]],"/wp-content\"],"],""]],[52,"z",["m","LndvcmRwcmVzcy5jb20="]],[52,"aA",["m","Ly9zLncub3Jn"]],[22,[30,[28,[15,"z"]],[28,[15,"aA"]]],[46,[36,false]]],[36,[30,["v",[15,"x"],[15,"z"]],[28,[28,["c",[0,[0,[0,[0,[15,"y"],"meta[name=\"generator\"][content^=\"WordPress \"],"],"link[rel=\"dns-prefetch\"][href=\""],[15,"aA"]],"\"]"]]]]]]],[46]],[36,false]],[50,"t",[46],[68,"w",[53,[52,"w",[28,[28,["c",[0,"[class*=\"woocommerce\"],","meta[name=\"generator\"][content^=\"WooCommerce \"]"]]]]],[22,[15,"w"],[46,[53]]],[36,[15,"w"]]],[46]],[36,false]],[50,"u",[46],[68,"w",[53,[52,"w",[28,[28,["c",[0,[0,"script[src*=\"woocommerce\"],","link[href*=\"woocommerce\"],"],"[class|=\"woocommerce\"]"]]]]],[22,[15,"w"],[46,[53]]],[36,[15,"w"]]],[46]],[36,false]],[50,"v",[46,"w","x"],[36,[1,[19,[17,[15,"w"],"length"],[17,[15,"x"],"length"]],[20,[2,[15,"w"],"substring",[7,[37,[17,[15,"w"],"length"],[17,[15,"x"],"length"]],[17,[15,"w"],"length"]]],[15,"x"]]]]],[52,"b",["require","internal.copyFromCrossContainerData"]],[52,"c",["require","internal.getFirstElementByCssSelector"]],[52,"d",["require","getUrl"]],[52,"e",["require","internal.isFeatureEnabled"]],[52,"f",["require","internal.setInCrossContainerData"]],[52,"g",[15,"__module_crossContainerSchema"]],[52,"h",[15,"__module_features"]],[52,"i",[15,"__module_featureFlags"]],[52,"j",[15,"__module_platformSchema"]],[52,"k",["require","getType"]],[52,"l",["require","internal.isDomReady"]],[52,"m",["require","fromBase64"]],[52,"n",[51,"",[7,"w"],[36,[20,["k",[15,"w"]],"array"]]]],[36,[8,"A",[15,"o"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_taskSetGppParams",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"d",[46,"e"],[52,"f",["b"]],[22,[16,[15,"f"],[17,[15,"c"],"GB"]],[46,[53,[2,[15,"e"],"setHitData",[7,[17,[15,"c"],"GB"],[16,[15,"f"],[17,[15,"c"],"GB"]]]]]]],[22,[16,[15,"f"],[17,[15,"c"],"GA"]],[46,[53,[2,[15,"e"],"setHitData",[7,[17,[15,"c"],"GA"],[16,[15,"f"],[17,[15,"c"],"GA"]]]]]]]],[52,"b",["require","internal.getPrivacyStrings"]],[52,"c",[15,"__module_gtagSchema"]],[36,[8,"A",[15,"d"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_taskSetTestHitParams",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"f",[46,"g"],[22,[2,[15,"g"],"getMetadata",[7,[17,[15,"e"],"BP"]]],[46,[53,[2,[15,"g"],"setHitData",[7,[17,[15,"d"],"IR"],"1"]]]]]],[52,"b",["require","internal.isFeatureEnabled"]],[52,"c",[15,"__module_features"]],[52,"d",[15,"__module_gtagSchema"]],[52,"e",[15,"__module_metadataSchema"]],[36,[8,"A",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_taskEnableEncryption",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"h",[46,"j"],[52,"k",[2,[15,"j"],"getMetadata",[7,[17,[15,"g"],"AN"]]]],[22,[1,[30,[20,[15,"k"],[17,[15,"b"],"K"]],[20,[15,"k"],[17,[15,"b"],"J"]]],["i",[15,"j"]]],[46,[53,[2,[15,"j"],"setMetadata",[7,[17,[15,"g"],"AZ"],true]]]]]],[50,"i",[46,"j"],[22,[28,[2,[15,"j"],"getMetadata",[7,[17,[15,"g"],"CT"]]]],[46,[53,[36,false]]]],[36,["c"]]],[52,"b",[15,"__module_adwordsHitType"]],[52,"c",["require","internal.isFpfe"]],[52,"d",["require","internal.isFeatureEnabled"]],[52,"e",[15,"__module_features"]],[52,"f",[15,"__module_featureFlags"]],[52,"g",[15,"__module_metadataSchema"]],[36,[8,"A",[15,"h"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_taskPlatformDetection",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"d",[46,"e"],[52,"f",[2,[15,"c"],"A",[7]]],[22,[1,[15,"f"],[18,[17,[15,"f"],"length"],0]],[46,[53,[2,[15,"e"],"mergeHitDataForKey",[7,[17,[15,"b"],"FV"],[8,"plf",[2,[15,"f"],"join",[7,"."]]]]]]]]],[52,"b",[15,"__module_gtagSchema"]],[52,"c",[15,"__module_platformDetection"]],[36,[8,"A",[15,"d"]]]],[36,["a"]]]],["$0"]]] - -] -,"entities":{ -"__ccd_ads_first":{"2":true,"5":true,"6":true} -, -"__ccd_ads_last":{"2":true,"5":true,"6":true} -, -"__e":{"2":true,"5":true,"6":true} -, -"__ogt_1p_data_v2":{"2":true,"5":true,"6":true} -, -"__rep":{"5":true,"6":true} - - -} -,"blob":{"1":"1","10":"AW-18117601294|GT-5NT68BPW","11":true,"14":"66f1","15":"0","16":"ChEI8OjD0QYQmpL0ur6UwLTdARIfAAHk+oQfUNYbKKp1W41xSnpopsPEKLu790b9pOoxJxoC/tQ=","17":"c","19":"dataLayer","2":true,"20":"","21":"www.googletagmanager.com","22":"eyIwIjoiQ0EiLCIxIjoiQ0EtT04iLCIyIjpmYWxzZSwiMyI6Imdvb2dsZS5jYSIsIjQiOiIiLCI1Ijp0cnVlLCI2IjpmYWxzZSwiNyI6ImFkX3N0b3JhZ2V8YW5hbHl0aWNzX3N0b3JhZ2V8YWRfdXNlcl9kYXRhfGFkX3BlcnNvbmFsaXphdGlvbiIsIjkiOmZhbHNlfQ","23":"google.tagmanager.debugui2.queue","24":"tagassistant.google.com","27":0.005,"3":"www.googletagmanager.com","30":"CA","31":"CA-ON","32":true,"34":"AW-18117601294","35":"AW","36":"https://adservice.google.com/pagead/regclk","37":"__TAGGY_INSTALLED","38":"cct.google","39":"googTaggyReferrer","40":"https://cct.google/taggy/agent.js","41":"google.tagmanager.ta.prodqueue","42":0.01,"43":"{\"keys\":[{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BKwvCVU1nkf3Kh67Io0y4x8dKYIfbz8F/3jMMZZNgmpA9bNdXFrG1p3FCSOp/wgDDfLcAEx0qI5S9pMqeZZ4vao=\",\"version\":0},\"id\":\"f702dfbe-927c-41e2-859f-a5c8d5a9efb9\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BP0/1RW705G75ayO/WNJSUbErS99Yi9pEmNa1e8iGsssn3sxxxFubg1FbVlXKk5FNZ51Pl0+s2fvtQUvAywyyD4=\",\"version\":0},\"id\":\"f4283ab4-a786-47cc-aefa-7da334c9f0fd\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BCIkELYk4eXiA2TioxWll4/0ixiIrjbERMHuVluMNuqhsnLYU+cNw5wTgbdTNL5GXY4h7gM6teG0YvvIxY9KCqM=\",\"version\":0},\"id\":\"af12363c-ecdb-420e-ac39-3b7bdafbf1d5\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BJPo2GUjocPJf/S8TTpTM8wrDUc6iaDD6Drs6BLNdhHXqT60Q9S0i2UKcEzWkiCF6ewTS6yBjp8GVoxA7Tz/Rs8=\",\"version\":0},\"id\":\"a66c0cde-069d-43fb-b74f-1273c7c3070d\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BLrIZDO5tKBbaJ3QmpUPWQgAMVVtPFYAKf+jShOppUWLgh+uMRZDHAOJXorTIO5uHdVPVZccSfencGkkJ3+XXt4=\",\"version\":0},\"id\":\"70cc4ebf-e955-4082-96f9-256a8ddfec38\"}]}","44":"119392696~119392704~119456239~119456247","45":true,"46":{"1":"1000","10":"66g0","11":"6631","14":"1000","16":"US-CO~US-CT~US-MT~US-NE~US-NH~US-TX~US-MN~US-NJ~US-MD~US-OR~US-DE","17":"US-CO~US-CT~US-MT~US-NE~US-NH~US-TX~US-MN~US-NJ~US-MD~US-OR~US-DE","2":"9","20":"5000","21":"5000","22":"4.3.0","23":"0.0.0","25":"1","26":"4000","27":"100","3":"5","4":"ad_storage|analytics_storage|ad_user_data|ad_personalization","44":"15000","48":"30000","5":"ad_storage|analytics_storage|ad_user_data","6":"1","61":"1000","62":"A6ONHRY7/bvBro+IMZd/a6LNjn7SSv999SkN/hFAE9L6vMr34dNgfdSVdYmv4U+NHZg1sxd38RtciRpRUtIRPgQAAACCeyJvcmlnaW4iOiJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbTo0NDMiLCJmZWF0dXJlIjoiU2hhcmVkV29ya2VyRXh0ZW5kZWRMaWZldGltZSIsImV4cGlyeSI6MTc3NjcyOTYwMCwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==","63":"1000","66":"100","7":"10"},"48":true,"5":"AW-18117601294","51":true,"55":["AW-18117601294"],"56":[{"1":403,"3":0.5,"4":115938465,"5":115938466,"6":0,"7":2},{"1":404,"3":0.5,"4":115938468,"5":115938469,"6":0,"7":1},{"1":569,"2":true},{"1":475,"3":0.1,"4":117776793,"5":117776794,"6":0,"7":1},{"1":502,"2":true},{"1":490,"2":true},{"1":491,"3":0.01,"4":118012007,"5":118012008,"6":118012009,"7":1},{"1":480,"2":true},{"1":580,"3":0.01,"4":119527020,"5":119527019,"6":0,"7":1},{"1":523,"2":true},{"1":581,"3":0.01,"4":119348851,"5":119348849,"6":119348850,"7":1},{"1":548,"2":true},{"1":504,"2":true},{"1":462,"3":0.05,"4":118806524,"5":118806525,"6":118806526,"7":1},{"1":413,"2":true},{"1":549,"2":true},{"1":500,"2":true},{"1":552,"2":true},{"1":533,"2":true},{"1":450,"3":0.01,"4":117227714,"5":117227715,"6":117227716,"7":3},{"1":458,"2":true},{"1":582,"3":0.01,"4":119381664,"5":119381662,"6":119381663,"7":1},{"1":443,"3":0.001,"4":117628654,"5":117628655,"6":117628656,"7":3},{"1":498,"3":0.2,"4":115616985,"5":115616986,"6":0,"7":1},{"1":518,"2":true},{"1":572,"2":true},{"1":495,"3":0.05,"4":118131810,"5":118131808,"6":118131809,"7":3},{"1":584,"3":0.1,"4":119534189,"5":119534187,"6":119534188,"7":1},{"1":428,"3":0.01,"4":119588920,"5":119588918,"6":119588919,"7":1},{"1":419,"2":true},{"1":564,"3":0.0001,"4":119205317,"5":119205315,"6":119205316,"7":1},{"1":557,"2":true},{"1":571,"2":true},{"1":573,"2":true},{"1":499,"2":true},{"1":516,"3":0.1,"4":118395335,"5":118395333,"6":118395334,"7":1},{"1":535,"2":true},{"1":446,"2":true},{"1":524,"2":true}],"59":["AW-18117601294"],"6":"250495957","63":0.005} -,"permissions":{ -"__ccd_ads_first":{"read_dom_elements":{"allowedCssSelectors":"any"},"get_url":{"urlParts":"specific","protocol":true,"host":true}} -, -"__ccd_ads_last":{} -, -"__e":{"read_event_data":{"eventDataAccess":"specific","keyPatterns":["event"]}} -, -"__ogt_1p_data_v2":{"detect_user_provided_data":{"limitDataSources":true,"allowAutoDataSources":true,"allowManualDataSources":false,"allowCodeDataSources":false}} -, -"__rep":{} - - -} - - - -,"security_groups":{ -"google":[ -"__ccd_ads_first" -, -"__ccd_ads_last" -, -"__e" -, -"__ogt_1p_data_v2" -, -"__rep" - -] - - -} - - - - - -}; - - - - -var k,aa=typeof Object.create=="function"?Object.create:function(a){var b=function(){};b.prototype=a;return new b},ca=typeof Object.defineProperties=="function"?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a},ea=function(a){for(var b=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global],c=0;c>>0;la[n]=ha?fa.Symbol(n):"$jscp$"+r+"$"+n}ca(g,la[n],{configurable:!0,writable:!0,value:q})}}},ra;if(ha&&typeof Object.setPrototypeOf=="function")ra=Object.setPrototypeOf;else{var sa;a:{var ta={a:!0},ua={};try{ua.__proto__=ta;sa=ua.a;break a}catch(a){}sa=!1}ra=sa?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} -var va=ra,wa=function(a,b){a.prototype=aa(b.prototype);a.prototype.constructor=a;if(va)va(a,b);else for(var c in b)if(c!="prototype")if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.Pt=b.prototype},xa=function(a){var b=0;return function(){return b0;){var a=this.H.pop();if(a in this.K)return a}return null}; -Ia.prototype.getNext=Ia.prototype.qo; -var Ja=function(a){this.H=new Fa;this.K=a},Ma=function(a,b){Ga(a.H);var c=a.H.T;if(c)return Ka(a,"return"in c?c["return"]:function(d){return{value:d,done:!0}},b,a.H.return);a.H.return(b);return La(a)},Ka=function(a,b,c,d){try{var e=b.call(a.H.T,c);Ea(e);if(!e.done)return a.H.ia=!1,e;var f=e.value}catch(g){return a.H.T=null,Ha(a.H,g),La(a)}a.H.T=null;d.call(a.H,f);return La(a)},La=function(a){for(;a.H.H;)try{var b=a.K(a.H);if(b)return a.H.ia=!1,{value:b.value,done:!1}}catch(d){a.H.ma=void 0,Ha(a.H, -d)}a.H.ia=!1;if(a.H.K){var c=a.H.K;a.H.K=null;if(c.isException)throw c.ko;return{value:c.return,done:!0}}return{value:void 0,done:!0}},Na=function(a){this.next=function(b){var c;Ga(a.H);a.H.T?c=Ka(a,a.H.T.next,b,a.H.Da):(a.H.Da(b),c=La(a));return c};this.throw=function(b){var c;Ga(a.H);a.H.T?c=Ka(a,a.H.T["throw"],b,a.H.Da):(Ha(a.H,b),c=La(a));return c};this.return=function(b){return Ma(a,b)};this[Symbol.iterator]=function(){return this}},Pa=function(a,b){var c=new Na(new Ja(b));va&&a.prototype&&va(c, -a.prototype);return c},Qa=function(){for(var a=Number(this),b=[],c=a;c-1};var bb=function(a,b){this.ia=a;this.parent=b;this.T=this.K=void 0;this.Db=!1;this.O=function(d,e,f){return d.apply(e,f)};this.H=Za();var c;a:{try{if(Set){c=new Set;break a}}catch(d){}c=new ab}this.Z=c};bb.prototype.add=function(a,b){cb(this,a,b,!1)};bb.prototype.Yh=function(a,b){cb(this,a,b,!0)};var cb=function(a,b,c,d){a.Db||a.Z.has(b)||(d&&a.Z.add(b),a.H.set(b,c))};k=bb.prototype; -k.set=function(a,b){this.Db||(!this.H.has(a)&&this.parent&&this.parent.has(a)?this.parent.set(a,b):this.Z.has(a)||this.H.set(a,b))};k.get=function(a){return this.H.has(a)?this.H.get(a):this.parent?this.parent.get(a):void 0};k.has=function(a){return!!this.H.has(a)||!(!this.parent||!this.parent.has(a))};k.ub=function(){var a=new bb(this.ia,this);this.K&&a.Lb(this.K);a.nd(this.O);a.qe(this.T);return a};k.de=function(){return this.ia};k.Lb=function(a){this.K=a};k.oo=function(){return this.K}; -k.nd=function(a){this.O=a};k.Yj=function(){return this.O};k.Wa=function(){this.Db=!0};k.qe=function(a){this.T=a};k.wb=function(){return this.T};var db=function(a,b,c){var d;d=Error.call(this,a.message);this.message=d.message;"stack"in d&&(this.stack=d.stack);this.Fo=a;this.ao=c===void 0?!1:c;this.debugInfo=[];this.H=b};wa(db,Error);var eb=function(a){return a instanceof db?a:new db(a,void 0,!0)};var fb=Za();function gb(a,b){for(var c,d=m(b),e=d.next();!e.done&&!(c=hb(a,e.value),c instanceof Ua);e=d.next());return c}function hb(a,b){try{var c=b[0],d=b.slice(1),e=String(c),f=fb.has(e)?fb.get(e):a.get(e);if(!f||typeof f.invoke!=="function")throw eb(Error("Attempting to execute non-function "+b[0]+"."));return f.apply(a,d)}catch(h){var g=a.oo();g&&g(h,b.context?{id:b[0],line:b.context.line}:null);throw h;}};var ib=function(){this.K=new Xa;this.H=new bb(this.K)};k=ib.prototype;k.de=function(){return this.K};k.Lb=function(a){this.H.Lb(a)};k.nd=function(a){this.H.nd(a)};k.execute=function(a){return this.Ck([a].concat(za(Qa.apply(1,arguments))))};k.Ck=function(){for(var a,b=m(Qa.apply(0,arguments)),c=b.next();!c.done;c=b.next())a=hb(this.H,c.value);return a};k.Uq=function(a){var b=Qa.apply(1,arguments),c=this.H.ub();c.qe(a);for(var d,e=m(b),f=e.next();!f.done;f=e.next())d=hb(c,f.value);return d};k.Wa=function(){this.H.Wa()};var jb=function(a,b){this.T=a;this.parent=b;this.O=this.H=void 0;this.Db=!1;this.K=function(c,d,e){return c.apply(d,e)};this.values=new Va};jb.prototype.add=function(a,b){lb(this,a,b,!1)};jb.prototype.Yh=function(a,b){lb(this,a,b,!0)};var lb=function(a,b,c,d){if(!a.Db)if(d){var e=a.values;e.set(b,c);e.H["dust."+b]=!0}else a.values.set(b,c)};k=jb.prototype;k.set=function(a,b){this.Db||(!this.values.has(a)&&this.parent&&this.parent.has(a)?this.parent.set(a,b):this.values.set(a,b))}; -k.get=function(a){return this.values.has(a)?this.values.get(a):this.parent?this.parent.get(a):void 0};k.has=function(a){return!!this.values.has(a)||!(!this.parent||!this.parent.has(a))};k.ub=function(){var a=new jb(this.T,this);this.H&&a.Lb(this.H);a.nd(this.K);a.qe(this.O);return a};k.de=function(){return this.T};k.Lb=function(a){this.H=a};k.oo=function(){return this.H};k.nd=function(a){this.K=a};k.Yj=function(){return this.K};k.Wa=function(){this.Db=!0};k.qe=function(a){this.O=a};k.wb=function(){return this.O};var mb=function(){this.Na=!1;this.la=new Va};k=mb.prototype;k.get=function(a){return this.la.get(a)};k.set=function(a,b){this.Na||this.la.set(a,b)};k.has=function(a){return this.la.has(a)};k.remove=function(a){this.Na||this.la.remove(a)};k.Ea=function(){return this.la.Ea()};k.Dc=function(){return this.la.Dc()};k.Xb=function(){return this.la.Xb()};k.Wa=function(){this.Na=!0};k.Db=function(){return this.Na};function nb(){for(var a=ob,b={},c=0;c>2,n=(f&3)<<4|g>>4,p=(g&15)<<2|h>>6,q=h&63;e||(q=64,d||(p=64));b.push(ob[l],ob[n],ob[p],ob[q])}return b.join("")} -function tb(a){function b(l){for(;d>4);g!==64&&(c+=String.fromCharCode(f<<4&240|g>>2),h!==64&&(c+=String.fromCharCode(g<<6&192|h)))}};var ub={};function vb(a,b){var c=ub[a];c||(c=ub[a]=[]);c[b]=!0}function wb(){delete ub.GA4_EVENT}function xb(){var a=yb.H.slice();ub.GTAG_EVENT_FEATURE_CHANNEL=a}function zb(a){for(var b=[],c=0,d=0;d0&&(b.push(String.fromCharCode(c)),c=0),a[d]&&(c|=1<0&&b.push(String.fromCharCode(c));return sb(b.join("")).replace(/\.+$/,"")};function Ab(){}function Bb(a){return typeof a==="function"}function Cb(a){return typeof a==="string"}function Db(a){return typeof a==="number"&&!isNaN(a)}function Eb(a){return Array.isArray(a)?a:[a]}function Fb(a,b){if(a&&Array.isArray(a))for(var c=0;cb)a=0,b=2147483647;return Math.floor(Math.random()*(b-a+1)+a)} -function Hb(a,b){for(var c=new Ib,d=0;d=b.length&&a.substring(0,b.length)===b}function Xb(a,b){return a.length>=b.length&&a.substring(a.length-b.length,a.length)===b} -function Yb(a,b,c){c=c||[];for(var d=a,e=0;e=0)return}return d}function Zb(a,b){for(var c={},d=c,e=a.split("."),f=0;f>6,128|d&63):d<55296||d>=57344?b.push(224|d>>12,128|d>>6&63,128|d&63):(d=65536+((d&1023)<<10|a.charCodeAt(++c)&1023),b.push(240|d>>18,128|d>>12&63,128|d>>6&63,128|d&63))}return new Uint8Array(b)}function cc(a,b){function c(){e&&++d===b&&(e(),e=null,c.done=!0)}var d=0,e=a;c.done=!1;return c} -function dc(a){if(!a)return a;var b=a;try{b=decodeURIComponent(a)}catch(d){}var c=b.split(",");return c.length===2&&c[0]===c[1]?c[0]:a} -function ec(a,b,c){function d(n){var p=n.split("=")[0];if(a.indexOf(p)<0)return n;if(c!==void 0)return p+"="+c}function e(n){return n.split("&").map(d).filter(function(p){return p!==void 0}).join("&")}var f=b.href.split(/[?#]/)[0],g=b.search,h=b.hash;g[0]==="?"&&(g=g.substring(1));h[0]==="#"&&(h=h.substring(1));g=e(g);h=e(h);g!==""&&(g="?"+g);h!==""&&(h="#"+h);var l=""+f+g+h;l[l.length-1]==="/"&&(l=l.substring(0,l.length-1));return l} -function fc(a){for(var b=0;b<3;++b)try{var c=decodeURIComponent(a).replace(/\+/g," ");if(c===a)break;a=c}catch(d){return""}return a}function hc(){var a=w,b;a:{var c=a.crypto||a.msCrypto;if(c&&c.getRandomValues)try{var d=new Uint8Array(25);c.getRandomValues(d);b=btoa(String.fromCharCode.apply(String,za(d))).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"");break a}catch(e){}b=void 0}return b};/* - - Copyright Google LLC - SPDX-License-Identifier: Apache-2.0 -*/ -var ic=globalThis.trustedTypes,kc;function lc(){var a=null;if(!ic)return a;try{var b=function(c){return c};a=ic.createPolicy("goog#html",{createHTML:b,createScript:b,createScriptURL:b})}catch(c){}return a}function mc(){kc===void 0&&(kc=lc());return kc};var nc=function(a){this.H=a};nc.prototype.toString=function(){return this.H+""};function oc(a){var b=a,c=mc(),d=c?c.createScriptURL(b):b;return new nc(d)}function pc(a){if(a instanceof nc)return a.H;throw Error("");};var qc=Ca([""]),rc=Aa(["\x00"],["\\0"]),sc=Aa(["\n"],["\\n"]),tc=Aa(["\x00"],["\\u0000"]);function uc(a){return a.toString().indexOf("`")===-1}uc(function(a){return a(qc)})||uc(function(a){return a(rc)})||uc(function(a){return a(sc)})||uc(function(a){return a(tc)});var vc=function(a){this.H=a};vc.prototype.toString=function(){return this.H};var wc=function(a){this.Us=a};function xc(a){return new wc(function(b){return b.substr(0,a.length+1).toLowerCase()===a+":"})}var yc=[xc("data"),xc("http"),xc("https"),xc("mailto"),xc("ftp"),new wc(function(a){return/^[^:]*([/?#]|$)/.test(a)})];function zc(a){var b;b=b===void 0?yc:b;if(a instanceof vc)return a;for(var c=0;c"+a+"
"),f=mc(),g=f?f.createHTML(e):e;d=new Fc(g);if(c.nodeType===1&&/^(script|style)$/i.test(c.tagName))throw Error("");var h;if(d instanceof Fc)h=d.H;else throw Error("");c.innerHTML=h;b=b.lastChild;for(var l=[];b&&b.firstChild;)l.push(b.removeChild(b.firstChild));return l} -function md(a,b,c){c=c||100;for(var d={},e=0;e0&&(a=c[0].type)}catch(d){return"e"}if(!a)return"u";switch(a){case "navigate":return"n";case "back_forward":return"h";case "reload":return"r";case "prerender":return"p";default:return"x"}}function xd(){return w.performance||void 0}function yd(){var a=w.webPixelsManager;return a?a.createShopifyExtend!==void 0:!1} -var dd=function(a,b,c,d){var e=new Image(1,1);Zc(e,d,{});e.onload=function(){e.onload=null;b&&b()};e.onerror=function(){e.onerror=null;c&&c()};e.src=a;return e},td=nd;function zd(a,b){return this.evaluate(a)&&this.evaluate(b)}function Ad(a,b){return this.evaluate(a)===this.evaluate(b)}function Bd(a,b){return this.evaluate(a)||this.evaluate(b)}function Cd(a,b){var c=this.evaluate(a),d=this.evaluate(b);return String(c).indexOf(String(d))>-1}function Dd(a,b){var c=String(this.evaluate(a)),d=String(this.evaluate(b));return c.substring(0,d.length)===d} -function Ed(a,b){var c=this.evaluate(a),d=this.evaluate(b);switch(c){case "pageLocation":var e=w.location.href;d instanceof mb&&d.get("stripProtocol")&&(e=e.replace(/^https?:\/\//,""));return e}};/* - jQuery (c) 2005, 2012 jQuery Foundation, Inc. jquery.org/license. -*/ -var Fd=/\[object (Boolean|Number|String|Function|Array|Date|RegExp)\]/,Gd=function(a){if(a==null)return String(a);var b=Fd.exec(Object.prototype.toString.call(Object(a)));return b?b[1].toLowerCase():"object"},Hd=function(a,b){return Object.prototype.hasOwnProperty.call(Object(a),b)},Id=function(a){if(!a||Gd(a)!="object"||a.nodeType||a==a.window)return!1;try{if(a.constructor&&!Hd(a,"constructor")&&!Hd(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}for(var b in a);return b===void 0|| -Hd(a,b)},Jd=function(a,b){var c=b||(Gd(a)=="array"?[]:{}),d;for(d in a)if(Hd(a,d)){var e=a[d];Gd(e)=="array"?(Gd(c[d])!="array"&&(c[d]=[]),c[d]=Jd(e,c[d])):Id(e)?(Id(c[d])||(c[d]={}),c[d]=Jd(e,c[d])):c[d]=e}return c};function Kd(a){return typeof a==="number"&&a>=0&&isFinite(a)&&a%1===0||typeof a==="string"&&a[0]!=="-"&&a===""+parseInt(a)};var Ld=function(a){a=a===void 0?[]:a;this.la=new Va;this.values=[];this.Na=!1;for(var b in a)a.hasOwnProperty(b)&&(Kd(b)?this.values[Number(b)]=a[Number(b)]:this.la.set(b,a[b]))};k=Ld.prototype;k.toString=function(a){if(a&&a.indexOf(this)>=0)return"";for(var b=[],c=0;c-1)return this.values[b]};function Td(){try{return Map?new Rd:new Sd}catch(a){return new Sd}};var Ud=function(a){if(a instanceof Ud)return a;var b;a:if(a==void 0||Array.isArray(a)||Id(a))b=!0;else{switch(typeof a){case "boolean":case "number":case "string":case "function":b=!0;break a}b=!1}if(b)throw Error("Type of given value has an equivalent Pixie type.");this.value=a};Ud.prototype.getValue=function(){return this.value};Ud.prototype.toString=function(){return String(this.value)};var Wd=function(a){this.promise=a;this.Na=!1;this.la=new Va;this.la.set("then",Vd(this));this.la.set("catch",Vd(this,!0));this.la.set("finally",Vd(this,!1,!0))};k=Wd.prototype;k.get=function(a){return this.la.get(a)};k.set=function(a,b){this.Na||this.la.set(a,b)};k.has=function(a){return this.la.has(a)};k.remove=function(a){this.Na||this.la.remove(a)};k.Ea=function(){return this.la.Ea()};k.Dc=function(){return this.la.Dc()};k.Xb=function(){return this.la.Xb()}; -var Vd=function(a,b,c){b=b===void 0?!1:b;c=c===void 0?!1:c;return new Pd("",function(d,e){b&&(e=d,d=void 0);c&&(e=d);d instanceof Pd||(d=void 0);e instanceof Pd||(e=void 0);var f=this.R.ub(),g=function(l){return function(n){try{return c?(l.invoke(f),a.promise):l.invoke(f,n)}catch(p){return Promise.reject(p instanceof Error?new Ud(p):String(p))}}},h=a.promise.then(d&&g(d),e&&g(e));return new Wd(h)})};Wd.prototype.Wa=function(){this.Na=!0};Wd.prototype.Db=function(){return this.Na};function B(a,b,c){var d=Td(),e=function(g,h){for(var l=g.Ea(),n=0;n=0;f--)if(this.has(f)&&this.get(f)===b)return f;return-1},map:function(a,b){for(var c=this.length(),d=[],e=0;ed)throw eb(Error("TypeError: ReduceRight on List with no elements."));}for(var h=f;h>=0;h--)this.has(h)&&(e=b.invoke(a,e,this.get(h),h,this));return e},reverse:function(){for(var a=Md(this),b=a.length-1,c=0;b>=0;b--,c++)a.hasOwnProperty(b)?this.set(c,a[b]):this.remove(c);return this},shift:function(){return this.shift()},slice:function(a,b,c){var d=this.length();b===void 0&&(b=0);b=b<0?Math.max(d+b,0):Math.min(b,d);c=c=== -void 0?d:c<0?Math.max(d+c,0):Math.min(c,d);c=Math.max(b,c);for(var e=[],f=b;f=0){var q=Md(f);return Yd[e].call.apply(Yd[e],[d,this.R].concat(za(q)))}}if(d instanceof Pd||d instanceof mb||d instanceof Wd){if(d.has(e)){var r=d.get(e); -if(r instanceof Pd){var t=Md(f);return r.apply(this.R,t)}throw eb(Error("TypeError: "+e+" is not a function"));}if(e==="toString")return d instanceof Pd?d.getName():d.toString();if(e==="hasOwnProperty")return d.has(f.get(0))}if(d instanceof Ud&&e==="toString")return d.toString();throw eb(Error("TypeError: Object has no '"+e+"' property."));} -function ee(a,b){a=this.evaluate(a);if(typeof a!=="string")throw Error("Invalid key name given for assignment.");var c=this.R;if(!c.has(a))throw Error("Attempting to assign to undefined value "+b);var d=this.evaluate(b);c.set(a,d);return d}function fe(){var a=Qa.apply(0,arguments),b=this.R.ub(),c=gb(b,a);if(c instanceof Ua)return c}function ge(){return $d}function he(a){for(var b=this.evaluate(a),c=0;cthis.evaluate(b)}function Fe(a,b){return this.evaluate(a)>=this.evaluate(b)} -function Ge(a,b){var c=this.evaluate(a),d=this.evaluate(b);c instanceof Ud&&(c=c.getValue());d instanceof Ud&&(d=d.getValue());return c===d}function He(a,b){return!Ge.call(this,a,b)}function Ie(a,b,c){var d=[];this.evaluate(a)?d=this.evaluate(b):c&&(d=this.evaluate(c));var e=gb(this.R,d);if(e instanceof Ua)return e}var Ce=!1; -function Je(a,b){return this.evaluate(a)>Number(this.evaluate(b))} -function hf(a,b){return Number(this.evaluate(a))>>>Number(this.evaluate(b))}function jf(a,b){return Number(this.evaluate(a))&Number(this.evaluate(b))}function kf(a,b){return Number(this.evaluate(a))^Number(this.evaluate(b))}function lf(a,b){return Number(this.evaluate(a))|Number(this.evaluate(b))}function mf(){} -function nf(a,b,c){try{var d=this.evaluate(b);if(d instanceof Ua)return d}catch(h){if(!(h instanceof db&&h.ao))throw h;var e=this.R.ub();a!==""&&(h instanceof db&&(h=h.Fo),e.add(a,new Ud(h)));var f=this.evaluate(c),g=gb(e,f);if(g instanceof Ua)return g}}function of(a,b){var c,d;try{d=this.evaluate(a)}catch(f){if(!(f instanceof db&&f.ao))throw f;c=f}var e=this.evaluate(b);if(e instanceof Ua)return e;if(c)throw c;if(d instanceof Ua)return d};var qf=function(){this.H=new ib;pf(this)};qf.prototype.execute=function(a){return this.H.Ck(a)};var pf=function(a){var b=function(c,d){var e=new Qd(String(c),d);e.Wa();var f=String(c);a.H.H.set(f,e);fb.set(f,e)};b("map",Me);b("and",zd);b("contains",Cd);b("equals",Ad);b("or",Bd);b("startsWith",Dd);b("variable",Ed)};qf.prototype.Lb=function(a){this.H.Lb(a)};var sf=function(){this.K=!1;this.H=new ib;rf(this);this.K=!0};sf.prototype.execute=function(a){return tf(this.H.Ck(a))};var uf=function(a,b,c){return tf(a.H.Uq(b,c))};sf.prototype.Wa=function(){this.H.Wa()}; -var rf=function(a){var b=function(c,d){var e=String(c),f=new Qd(e,d);f.Wa();a.H.H.set(e,f);fb.set(e,f)};b(0,be);b(1,ce);b(2,de);b(3,ee);b(56,jf);b(57,ff);b(58,ef);b(59,lf);b(60,gf);b(61,hf);b(62,kf);b(53,fe);b(4,ge);b(5,he);b(68,nf);b(52,ie);b(6,je);b(49,ke);b(7,Le);b(8,Me);b(9,he);b(50,le);b(10,me);b(12,ne);b(13,oe);b(67,of);b(51,Ae);b(47,re);b(54,se);b(55,te);b(63,ze);b(64,ue);b(65,xe);b(66,ye);b(15,Be);b(16,De);b(17,De);b(18,Ee);b(19,Fe);b(20,Ge);b(21,He);b(22,Ie);b(23,Je);b(24,Ke);b(25,Ne);b(26, -Oe);b(27,Pe);b(28,Qe);b(29,Re);b(45,Se);b(30,Te);b(32,Ue);b(33,Ue);b(34,Ve);b(35,Ve);b(46,We);b(36,Xe);b(43,Ye);b(37,Ze);b(38,$e);b(39,af);b(40,bf);b(44,mf);b(41,cf);b(42,df)};sf.prototype.de=function(){return this.H.de()};sf.prototype.Lb=function(a){this.H.Lb(a)};sf.prototype.nd=function(a){this.H.nd(a)}; -function tf(a){if(a instanceof Ua||a instanceof Pd||a instanceof Ld||a instanceof mb||a instanceof Wd||a instanceof Ud||a===null||a===void 0||typeof a==="string"||typeof a==="number"||typeof a==="boolean")return a};var vf=function(a){this.message=a};function wf(a){a.yv=!0;return a};var xf=wf(function(a){return typeof a==="number"}),yf=wf(function(a){return typeof a==="string"}),zf=wf(function(a){return typeof a==="boolean"});function Af(a){var b="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[a];return b===void 0?new vf("Value "+a+" can not be encoded in web-safe base64 dictionary."):b};function Bf(a){switch(a){case 1:return"1";case 2:case 4:return"0";default:return"-"}};var Cf=/^[1-9a-zA-Z_-][1-9a-c][1-9a-v]\d$/;function Df(a,b){for(var c="",d=!0;a>7;){var e=a&31;a>>=5;d?d=!1:e|=32;c=""+Af(e)+c}a<<=2;d||(a|=32);return c=""+Af(a|b)+c} -function Ef(a,b){var c;var d=a.ri,e=a.nk;d===void 0?c="":(e||(e=0),c=""+Df(1,1)+Af(d<<2|e));var f=a.Fr,g="4"+c+(f?""+Df(2,1)+Af(f):""),h,l=a.So;h=l&&Cf.test(l)?""+Df(3,2)+l:"";var n,p=a.Oo;n=p?""+Df(4,1)+Af(p):"";var q;var r=a.ctid;if(r&&b){var t=Df(5,3),u=r.split("-"),v=u[0].toUpperCase();if(v!=="GTM"&&v!=="OPT")q="";else{var x=u[1];q=""+t+Af(1+x.length)+(a.Ws||0)+x}}else q="";var y=a.Nt,z=a.canonicalId,C=a.ac,D=a.Gv,H=g+h+n+q+(y?""+Df(6,1)+Af(y):"")+(z?""+Df(7,3)+Af(z.length)+z:"")+(C?""+Df(8,3)+ -Af(C.length)+C:"")+(D?""+Df(9,3)+Af(D.length)+D:""),G;var J=a.Mr;J=J===void 0?{}:J;for(var S=[],V=m(Object.keys(J)),da=V.next();!da.done;da=V.next()){var pa=da.value;S[Number(pa)]=J[pa]}if(S.length){var ka=Df(10,3),na;if(S.length===0)na=Af(0);else{for(var ba=[],ia=0,Oa=!1,Ba=0;Ba>6|192:((e&64512)==55296&&d+1>18|240,b[c++]=e>>12&63|128):b[c++]=e>>12|224,b[c++]=e>>6&63|128),b[c++]=e&63|128)}return b};function Gf(a,b){for(var c=tb(b),d=new Uint8Array(c.length),e=0;e0;b--)Db(a[b].id)&&a.splice(b++,1);for(var c=a.length-1;c>0;c--)a[c].line=a[c-1].line;a.splice(0,1);return a};var Uf=RegExp("[^0-9\\.+-]","g"),Vf=RegExp("[^0-9\\,+-]","g"),Wf=RegExp("[^0-9+-]","g"); -function Xf(a,b){if(typeof a==="number")return a;var c=String(a),d;if(b==="AUTOMATIC"){var e=(c.match(/\./g)||[]).length,f=(c.match(/,/g)||[]).length,g="NONE";if(e>0&&f>0){var h=c.lastIndexOf(".")>c.lastIndexOf(",");h&&e===1?g="PERIOD":h||f!==1||(g="COMMA")}else e===1?g=(c.split(".")[1].match(/[0-9]/g)||[]).length!==3?"PERIOD":"NONE":f===1&&(g=(c.split(",")[1].match(/[0-9]/g)||[]).length!==3?"COMMA":"NONE");d=g}else d=b==="COMMA"?"COMMA":"PERIOD";var l,n;d==="PERIOD"?(l=".",n=Uf):d==="COMMA"?(l=",", -n=Vf):(l="",n=Wf);var p=c.replace(n,"");if(l!==""&&p.split(l).length>2)return a;var q=p.replace(/,/g,".");if(q==="")return a;var r=Number(q);return isNaN(r)?a:r};var Yf=[],Zf={};function $f(a){return Yf[a]===void 0?!1:Yf[a]};var ag=function(){this.H={}},bg=function(a,b,c){var d;(d=a.H)[b]!=null||(d[b]=[]);a.H[b].push(function(){return c.apply(null,za(Qa.apply(0,arguments)))})};function cg(a,b,c,d){if(a)for(var e=0;e=0;d--)e=a.charCodeAt(d),b=(b<<6&268435455)+e+(e<<14),c=b&266338304,b=c!==0?b^c>>21:b;return b};var qg=function(a){this.cache=a};qg.prototype.get=function(a){var b=pg(a),c=this.cache.get(b);if(c)if(Date.now()>=c.timestamp+9E5)this.cache.delete(b);else return c.resolvedValue?Promise.resolve(c.resolvedValue):c.promise};qg.prototype.set=function(a,b){var c={promise:b,resolvedValue:void 0,timestamp:Date.now()};this.cache.set(pg(a),c);b.then(function(d){c.resolvedValue=d})};function rg(a){switch(a){case 0:break;case 9:return"e4";case 6:return"e5";case 14:return"e6";default:return"e7"}};var F={D:{Ta:"ad_personalization",ja:"ad_storage",ka:"ad_user_data",sa:"analytics_storage",fc:"region",wa:"consent_updated",hh:"wait_for_update",xf:"endpoint_type",Bp:"app_remove",Cp:"app_store_refund",Dp:"app_store_subscription_cancel",Ep:"app_store_subscription_convert",Fp:"app_store_subscription_renew",Gp:"consent_update",Hp:"conversion",Fl:"add_payment_info",Gl:"add_shipping_info",ve:"add_to_cart",we:"remove_from_cart",Hl:"view_cart",vd:"begin_checkout",mu:"generate_lead",xe:"select_item",hc:"view_item_list", -Mc:"select_promotion",jc:"view_promotion",Eb:"purchase",ye:"refund",kc:"view_item",Il:"add_to_wishlist",Ip:"exception",Jp:"first_open",Kp:"first_visit",xa:"gtag.config",Fb:"gtag.get",Lp:"in_app_purchase",mc:"page_view",Mp:"screen_view",Np:"session_start",Op:"source_update",Pp:"timing_complete",Qp:"track_social",yf:"user_engagement",Rp:"user_id_update",mh:"braid_link_decoration_source",nh:"braid_storage_source",wd:"gclid_link_decoration_source",xd:"gclid_storage_source",Ob:"gclgb",jb:"gclid",Jl:"gclid_len", -ze:"gclgs",Ae:"gcllp",Be:"gclst",kb:"ads_data_redaction",zf:"gad_source",Af:"gad_source_src",yd:"gclid_url",Kl:"gclsrc",Bf:"gbraid",Ce:"wbraid",Nc:"allow_ad_personalization_signals",Ci:"allow_custom_scripts",oh:"allow_display_features",Di:"allow_enhanced_conversions",Oc:"allow_google_signals",Ei:"allow_interest_groups",Sp:"app_id",Tp:"app_installer_id",Up:"app_name",Vp:"app_version",zd:"auid",nu:"auto_detection_enabled",Ll:"auto_event",Ml:"aw_remarketing",ph:"aw_remarketing_only",Cf:"discount",Df:"aw_feed_country", -Ef:"aw_feed_language",Ga:"items",Ff:"aw_merchant_id",Fi:"aw_basket_type",Gf:"campaign_content",Hf:"campaign_id",If:"campaign_medium",Jf:"campaign_name",Kf:"campaign",Lf:"campaign_source",Mf:"campaign_term",Gb:"client_id",Nl:"rnd",Gi:"consent_update_type",Wp:"content_group",Xp:"content_type",Bd:"conversion_cookie_prefix",qh:"conversion_id",nc:"conversion_linker",Nf:"conversion_linker_disabled",De:"conversion_api",Hi:"_&rcb",rh:"cookie_deprecation",Hb:"cookie_domain",zb:"cookie_expires",Pb:"cookie_flags", -Dd:"cookie_name",oc:"cookie_path",lb:"cookie_prefix",Ed:"cookie_update",Pc:"country",Ya:"currency",Ee:"customer_lifetime_value",sh:"customer_loyalty",th:"customer_ltv_bucket",uh:"customer_type",Fe:"custom_map",Ii:"gcldc_link_decoration_source",Ji:"gcldc_storage_source",Of:"gcldc",Fd:"dclid",Ol:"debug_mode",Ua:"developer_id",Yp:"disable_merchant_reported_purchases",Qc:"dc_custom_params",Zp:"dc_natural_search",aq:"dynamic_event_settings",Pl:"affiliation",wh:"checkout_option",Ki:"checkout_step",Ql:"coupon", -Pf:"item_list_name",Li:"list_name",bq:"promotions",Gd:"shipping",Rl:"tax",xh:"engagement_time_msec",yh:"enhanced_client_id",cq:"enhanced_conversions",ou:"enhanced_conversions_automatic_settings",Ge:"estimated_delivery_date",Qf:"event_callback",fq:"event_category",Rc:"event_developer_id_string",Hd:"event_id",Mi:"_event_join_id",gq:"event_label",qc:"event",Sl:"_&ae",Ni:"event_settings",zh:"event_timeout",hq:"description",iq:"fatal",jq:"experiments",Id:"ext_client_id",Oi:"firebase_id",Rf:"first_party_collection", -Sf:"_x_20",Qb:"_x_19",kq:"flight_error_code",lq:"flight_error_message",Pi:"fl_activity_category",Qi:"fl_activity_group",Ah:"fl_advertiser_id",Ri:"match_id",Tl:"fl_random_number",Ul:"tran",Vl:"u",Bh:"gac_gclid",He:"gac_wbraid",Wl:"gac_wbraid_multiple_conversions",mq:"ga_restrict_domain",Xl:"ga_temp_client_id",nq:"ga_temp_ecid",Ie:"gdpr_applies",Ch:"_gt_metadata",Yl:"geo_granularity",Tf:"value_callback",Uf:"value_key",Va:"google_analysis_params",Je:"_google_ng",oq:"_ono",Vf:"google_signals",qq:"google_tld", -Dh:"gpp_sid",Eh:"gpp_string",Fh:"groups",Zl:"gsa_experiment_id",Wf:"gtag_event_feature_usage",am:"gtm_up",Ke:"iframe_state",Xf:"ignore_referrer",bm:"internal_traffic_results",dm:"_is_fpm",Uc:"is_legacy_converted",Vc:"is_legacy_loaded",Si:"is_passthrough",Le:"_lps",rb:"language",Ti:"legacy_developer_id_string",Ab:"linker",Yf:"accept_incoming",rc:"decorate_forms",ya:"domains",Wc:"url_position",Jd:"merchant_feed_label",Kd:"merchant_feed_language",Ld:"merchant_id",fm:"method",rq:"name",gm:"navigation_type", -Me:"new_customer",Ui:"non_interaction",sq:"optimize_id",hm:"page_hostname",Zf:"page_path",Za:"page_referrer",Ib:"page_title",tq:"passengers",im:"phone_conversion_callback",uq:"phone_conversion_country_code",jm:"phone_conversion_css_class",wq:"phone_conversion_ids",km:"phone_conversion_number",lm:"phone_conversion_options",xq:"_platinum_request_status",yq:"_protected_audience_enabled",Gh:"quantity",Hh:"redact_device_info",om:"referral_exclusion_definition",pu:"_request_start_time",Rb:"restricted_data_processing", -zq:"retoken",Aq:"sample_rate",Vi:"screen_name",Xc:"screen_resolution",qm:"_script_source",Bq:"search_term",Md:"send_page_view",Nd:"send_to",Wi:"server_container_3p_enrichment",Od:"server_container_url",Cq:"session_attributes_encoded",Ih:"session_duration",Jh:"session_engaged",Xi:"session_engaged_time",sc:"session_id",Kh:"session_number",cg:"_shared_user_id",Pd:"delivery_postal_code",qu:"_tag_firing_delay",ru:"_tag_firing_time",su:"temporary_client_id",Yi:"testonly",Dq:"_timezone",dg:"topmost_url", -eg:"tracking_id",Zi:"traffic_type",Oa:"transaction_id",rm:"transaction_id_source",Yc:"transport_url",Eq:"trip_type",Qd:"update",uc:"url_passthrough",sm:"uptgs",fg:"_user_agent_architecture",gg:"_user_agent_bitness",hg:"_user_agent_full_version_list",ig:"_user_agent_mobile",jg:"_user_agent_model",kg:"_user_agent_platform",lg:"_user_agent_platform_version",mg:"_user_agent_wow64",vc:"user_data",tm:"user_data_auto_latency",vm:"user_data_auto_meta",wm:"user_data_auto_multi",xm:"user_data_auto_selectors", -ym:"user_data_auto_status",wc:"user_data_mode",zm:"user_data_settings",ab:"user_id",Rd:"user_properties",Am:"_user_region",ng:"us_privacy_string",Pa:"value",Bm:"wbraid_multiple_conversions",Zc:"_fpm_parameters",ej:"_host_name",jn:"_in_page_command",gj:"_ip_override",nn:"_is_passthrough_cid",Sh:"_measurement_type",Xd:"non_personalized_ads",wj:"_sst_parameters",nr:"sgtm_geo_user_country",Cd:"conversion_label",Ca:"page_location",Sc:"_extracted_data",Tc:"global_developer_id_string",Ne:"tc_privacy_string"}};var I={J:{ep:"abort_without_fail",ui:"accept_by_default",Mk:"add_tag_timing",ue:"ads_event_page_view",pd:"allow_ad_personalization",Zt:"auto_event",Uk:"batch_on_navigation",wi:"biscotti_join_id",Yk:"client_id_source",tf:"consent_event_id",uf:"consent_priority_id",bu:"consent_state",wa:"consent_updated",vf:"conversion_linker_enabled",du:"conversion_marking_called",Fa:"cookie_options",zl:"dc_random",Lc:"em_event",ku:"endpoint_for_debug",El:"enhanced_client_id_source",Ap:"enhanced_match_result",Cm:"euid_logged_in_state", -og:"euid_mode_enabled",Fq:"event_provenance",uu:"event_source",sb:"event_start_timestamp_ms",Gm:"event_usage",Mh:"extra_tag_experiment_ids",xu:"add_parameter",cj:"counting_method",Nh:"send_as_iframe",yu:"parameter_order",Oh:"parsed_target",Lq:"ga4_collection_subdomain",dj:"ga4_request_flags",Xm:"gbraid_cookie_marked",bn:"gtm_extracted_data",yc:"handle_internally",Bu:"has_ga_conversion_consents",ba:"hit_type",zc:"hit_type_override",Sq:"ignore_dupe_config",Vu:"is_config_command",Qh:"is_consent_update", -pg:"is_conversion",kn:"is_ecommerce",ln:"is_ec_cm_split",Ud:"is_external_event",qg:"is_first_visit",mn:"is_first_visit_conversion",ij:"is_fl_fallback_conversion_flow_allowed",bd:"is_fpm_encryption",jj:"is_fpm_split",Ha:"is_gcp_browser",kj:"is_google_measurement_allowed",lj:"is_google_signals_enabled",Vd:"is_merchant_center",Rh:"is_new_to_site",Ac:"is_personalization",mj:"is_server_side_destination",Qe:"is_session_start",on:"is_session_start_conversion",Wu:"is_sgtm_ga_ads_conversion_study_control_group", -Xu:"is_sgtm_prehit",pn:"is_sgtm_service_worker",rg:"is_split_conversion",Tq:"is_syn",Tb:"is_test_event",sg:"join_id",nj:"join_elapsed",tg:"join_timer_sec",rn:"local_storage_aw_conversion_counters",Te:"tunnel_updated",dv:"prehit_for_retry",gv:"promises",hv:"record_aw_latency",Ue:"redact_ads_data",Ve:"redact_click_ids",zn:"remarketing_only",tj:"send_ccm_parallel_ping",Zd:"send_doubleclick_join",Vh:"send_fpm_geo_join",Wh:"send_fpm_google_join",kv:"send_ccm_parallel_test_ping",Bn:"send_google_measurement", -vg:"send_tld_join",wg:"send_to_destinations",uj:"send_to_targets",Cn:"send_user_data_hit",xj:"service_worker_context",Jb:"source_canonical_id",Ja:"speculative",Jn:"speculative_in_message",Ln:"suppress_script_load",Mn:"syn_or_mod",Hj:"transient_ecsid",xg:"transmission_type",cb:"user_data",ov:"user_data_from_automatic",pv:"user_data_from_automatic_getter",Qn:"user_data_from_code",xr:"user_data_from_manual",qv:"user_data_mode",yg:"user_id_updated"}};var K={V:{vp:1,xp:2,Pn:3,xn:4,Bl:5,Cl:6,Pq:7,yp:8,Oq:9,up:10,tp:11,In:12,Gn:13,Xk:14,hp:15,kp:16,sn:17,Dl:18,qn:19,wp:20,ar:21,np:22,jp:23,lp:24,yl:25,Vk:26,ur:27,Tm:28,hn:29,gn:30,fn:31,Wm:32,Um:33,Vm:34,Qm:35,Pm:36,Rm:37,Sm:38,Mq:39,Nq:40,jr:41}};K.V[K.V.vp]="CREATE_EVENT_SOURCE";K.V[K.V.xp]="EDIT_EVENT";K.V[K.V.Pn]="TRAFFIC_TYPE";K.V[K.V.xn]="REFERRAL_EXCLUSION";K.V[K.V.Bl]="ECOMMERCE_FROM_GTM_TAG";K.V[K.V.Cl]="ECOMMERCE_FROM_GTM_UA_SCHEMA";K.V[K.V.Pq]="GA_SEND";K.V[K.V.yp]="EM_FORM"; -K.V[K.V.Oq]="GA_GAM_LINK";K.V[K.V.up]="CREATE_EVENT_AUTO_PAGE_PATH";K.V[K.V.tp]="CREATED_EVENT";K.V[K.V.In]="SIDELOADED";K.V[K.V.Gn]="SGTM_LEGACY_CONFIGURATION";K.V[K.V.Xk]="CCD_EM_EVENT";K.V[K.V.hp]="AUTO_REDACT_EMAIL";K.V[K.V.kp]="AUTO_REDACT_QUERY_PARAM";K.V[K.V.sn]="MULTIPLE_PAGEVIEW_FROM_CONFIG";K.V[K.V.Dl]="EM_EVENT_SENT_BEFORE_CONFIG";K.V[K.V.qn]="LOADED_VIA_CST_OR_SIDELOADING";K.V[K.V.wp]="DECODED_PARAM_MATCH";K.V[K.V.ar]="NON_DECODED_PARAM_MATCH";K.V[K.V.np]="CCD_EVENT_SGTM"; -K.V[K.V.jp]="AUTO_REDACT_EMAIL_SGTM";K.V[K.V.lp]="AUTO_REDACT_QUERY_PARAM_SGTM";K.V[K.V.yl]="DAILY_LIMIT_REACHED";K.V[K.V.Vk]="BURST_LIMIT_REACHED";K.V[K.V.ur]="SHARED_USER_ID_SET_AFTER_REQUEST";K.V[K.V.Tm]="GA4_MULTIPLE_SESSION_COOKIES";K.V[K.V.hn]="INVALID_GA4_SESSION_COUNT";K.V[K.V.gn]="INVALID_GA4_LAST_EVENT_TIMESTAMP";K.V[K.V.fn]="INVALID_GA4_JOIN_TIMER";K.V[K.V.Wm]="GA4_STALE_SESSION_COOKIE_SELECTED";K.V[K.V.Um]="GA4_SESSION_COOKIE_GS1_READ";K.V[K.V.Vm]="GA4_SESSION_COOKIE_GS2_READ"; -K.V[K.V.Qm]="GA4_DL_PARAM_RECOVERY_AVAILABLE";K.V[K.V.Pm]="GA4_DL_PARAM_RECOVERY_APPLIED";K.V[K.V.Rm]="GA4_GOOGLE_MEASUREMENT_ALLOWED";K.V[K.V.Sm]="GA4_GOOGLE_SIGNALS_ENABLED";K.V[K.V.Mq]="GA4_FALLBACK_REQUEST";K.V[K.V.Nq]="GA_ADS_LINK_BEFORE_CONVERSION_MARKING";K.V[K.V.jr]="PLATINUM_ELIGIBLE";var zg={},Ag=(zg.uaa=!0,zg.uab=!0,zg.uafvl=!0,zg.uamb=!0,zg.uam=!0,zg.uap=!0,zg.uapv=!0,zg.uaw=!0,zg); -var Gg=function(a,b){for(var c=0;cd.length||!g&&d.length!==e.length?0:g?Wb(d,h)&&(d===h||d.charAt(h.length)==="."):d===h)return!0}return!1},Fg=/^[a-z$_][\w-$]*$/i,Eg=/^(?:[a-z_$][a-z-_$0-9]*\.)*[a-z_$][a-z-_$0-9]*(?:\.\*)?$/i; -var Hg=["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector"];function Ig(a,b){if(!a)return!1;try{for(var c=0;c=0&&c.indexOf(d,e)===e}function Kg(a,b){return String(a).split(",").indexOf(String(b))>=0} -function Lg(a,b,c,d){var e=c?"i":void 0;try{var f=String(b)+String(e),g=d==null?void 0:d.get(f);g||(g=new RegExp(b,e),d==null||d.set(f,g));return g.test(a)}catch(h){return!1}}function Mg(a,b){return String(a).indexOf(String(b))>=0}function Ng(a,b){return String(a)===String(b)}function Og(a,b){return Number(a)>=Number(b)}function Pg(a,b){return Number(a)<=Number(b)}function Qg(a,b){return Number(a)>Number(b)}function Rg(a,b){return Number(a)0){for(var d=Array(c),e=0;e>>7|g<<25)^(g>>>18|g<<14)^g>>>3)|0)+((c[f-7]|0)+((h>>>17|h<<15)^(h>>>19|h<<13)^h>>>10)|0)|0}for(var l=a.H[0]|0,n=a.H[1]|0,p=a.H[2]|0,q=a.H[3]|0,r=a.H[4]|0,t=a.H[5]|0,u=a.H[6]|0,v=a.H[7]|0,x=0;x<64;x++){var y=((l>>>2|l<<30)^(l>>>13|l<<19)^(l>>>22|l<<10))+(l&n^l&p^n&p)|0,z=(v+((r>>>6|r<<26)^(r>>>11|r<<21)^(r>>>25|r<<7))| -0)+(((r&t^~r&u)+(ri[x]|0)|0)+(c[x]|0)|0)|0;v=u;u=t;t=r;r=q+z|0;q=p;p=n;n=l;l=z+y|0}a.H[0]=a.H[0]+l|0;a.H[1]=a.H[1]+n|0;a.H[2]=a.H[2]+p|0;a.H[3]=a.H[3]+q|0;a.H[4]=a.H[4]+r|0;a.H[5]=a.H[5]+t|0;a.H[6]=a.H[6]+u|0;a.H[7]=a.H[7]+v|0}; -qi.prototype.update=function(a,b){b===void 0&&(b=a.length);var c=0,d=this.K;if(typeof a==="string")for(;c=g&&g==(g|0)))throw Error("message must be a byte array");this.O[d++]=g;d==this.blockSize&&(wi(this),d=0)}else throw Error("message must be string or array"); -}this.K=d;this.T+=b};qi.prototype.digest=function(){var a=[],b=this.T*8;this.K<56?this.update(vi,56-this.K):this.update(vi,this.blockSize-(this.K-56));for(var c=63;c>=56;c--)this.O[c]=b&255,b/=256;wi(this);for(var d=0,e=0;e=0;f-=8)a[d++]=this.H[e]>>f&255;return a}; -var si=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804, -4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],ri;function xi(){qi.call(this,8,yi)}Ta(xi,qi);var yi=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225];var zi=/^[0-9A-Fa-f]{64}$/;function Ai(a){try{return(new TextEncoder).encode(a)}catch(b){return bc(a)}}function Bi(a){var b=w;if(a===""||a==="e0")return Promise.resolve(a);var c;if((c=b.crypto)==null?0:c.subtle){if(zi.test(a))return Promise.resolve(a);try{var d=Ai(a);return b.crypto.subtle.digest("SHA-256",d).then(function(e){return Ci(e,b)}).catch(function(){return"e2"})}catch(e){return Promise.resolve("e2")}}else return Promise.resolve("e1")} -function Di(a){try{var b=new xi;b.update(Ai(a));return b.digest()}catch(c){return"e2"}}function Ei(a){var b=w;if(a===""||a==="e0"||zi.test(a))return a;var c=Di(a);if(c==="e2")return"e2";try{return Ci(c,b)}catch(d){return"e2"}}function Ci(a,b){var c=Array.from(new Uint8Array(a)).map(function(d){return String.fromCharCode(d)}).join("");return b.btoa(c).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")};function Fi(){for(var a=!1,b=!1,c=0;a===b;)if(a=Gb(0,1)===0,b=Gb(0,1)===0,c++,c>30)return;return a}var Hi={Dk:function(a,b,c){return Gi.Dk(a,b,c)}},Ii=function(){this.studies={};this.H=Fi}; -Ii.prototype.Dk=function(a,b,c){var d=this.studies[b];if(!((c===void 0?Gb(0,9999):c%1E4)>1)%2===0:this.H();if(p===void 0)break a;n|=(p?0:1)<<1}n===0?Ji(a,f,e):n===1?Ji(a,g,e):n===2&&Ji(a,h,e)}}}return a}; -var Li=function(a,b){var c=Gi;return c.studies[b]?Ki(c,b)||!!(a.exp||{})[c.studies[b].experimentId]:!1},Mi=function(a,b){var c=Gi;return c.studies[b]&&c.studies[b].controlId&&!Ki(c,b)?!!(a.exp||{})[c.studies[b].controlId]:!1},Ni=function(a,b){var c=Gi;return c.studies[b]&&c.studies[b].controlId2&&!Ki(c,b)?!!(a.exp||{})[c.studies[b].controlId2]:!1},Ki=function(a,b){return!!a.studies[b].active||a.studies[b].probability>.5},Ji=function(a,b,c){var d=a.exp||{};d[b]=c;a.exp=d},Gi=new Ii;var Oi=function(a){switch(a){case 1:return 0;case 502:return 15;case 491:return 13;case 480:return 12;case 499:return 11;case 500:return 6;case 421:return 10;case 513:return 9;case 561:return 18;case 482:return 16;case 570:return 20;case 495:return 14;case 514:return 17;case 573:return 19;case 235:return 8;case 53:return 1;case 54:return 2;case 52:return 4;case 75:return 3;case 109:return 9}},Pi=function(a,b){a.O[b]=!0;var c=Oi(b);c!==void 0&&(Yf[c]=!0)},P=function(a){return!!Qi.O[a]},Qi=new function(){this.O= -[];this.K=[];this.H=[]; -Pi(this,132); -var a=Pf(6,6E4);Zf[1]=a;var b=Pf(7,1);Zf[3]=b;var c=Pf(35,50);Zf[2]=c;var d=Pf(69,1776448920);Zf[4]=d; - -Pi(this,435);Pi(this,141); -};var Ri=function(){this.H=new Set;this.K=new Set},Ti=function(a){var b=Si.H;a=a===void 0?[]:a;var c=[].concat(za(b.H)).concat([].concat(za(b.K))).concat(a);c.sort(function(d,e){return d-e});return c},Ui=function(){var a=[].concat(za(Si.H.H));a.sort(function(b,c){return b-c});return a},Wi=function(){var a=Si.H,b=E(44);a.H=new Set;if(b!=="")for(var c=m(b.split("~")),d=c.next();!d.done;d=c.next()){var e=Number(d.value);isNaN(e)||a.H.add(e)}};var Xi={},Yi={__cl:1,__ecl:1,__ehl:1,__evl:1,__fal:1,__fil:1,__fsl:1,__hl:1,__jel:1,__lcl:1,__sdl:1,__tl:1,__ytl:1},Zi=oa(Object,"assign").call(Object,{},{__paused:1,__tg:1},Yi),$i,aj=!1;$i=aj;var bj="";Xi.yj=bj;var Si=new function(){this.H=new Ri};var cj=/:[0-9]+$/,dj=/^\d+\.fls\.doubleclick\.net$/;function ej(a,b,c,d){var e=fj(a,!!d,b),f,g;return c?(g=e[b])!=null?g:[]:(f=e[b])==null?void 0:f[0]}function fj(a,b,c){for(var d={},e=m(a.split("&")),f=e.next();!f.done;f=e.next()){var g=m(f.value.split("=")),h=g.next().value,l=ya(g),n=decodeURIComponent(h.replace(/\+/g," "));if(c===void 0||n===c){var p=l.join("=");d[n]||(d[n]=[]);d[n].push(b?p:decodeURIComponent(p.replace(/\+/g," ")))}}return d} -function gj(a){try{return decodeURIComponent(a)}catch(b){}}function hj(a,b,c,d,e){b&&(b=String(b).toLowerCase());if(b==="protocol"||b==="port")a.protocol=ij(a.protocol)||ij(w.location.protocol);b==="port"?a.port=String(Number(a.hostname?a.port:w.location.port)||(a.protocol==="http"?80:a.protocol==="https"?443:"")):b==="host"&&(a.hostname=(a.hostname||w.location.hostname).replace(cj,"").toLowerCase());return jj(a,b,c,d,e)} -function jj(a,b,c,d,e){var f,g=ij(a.protocol);b&&(b=String(b).toLowerCase());switch(b){case "url_no_fragment":f=kj(a);break;case "protocol":f=g;break;case "host":f=a.hostname.replace(cj,"").toLowerCase();if(c){var h=/^www\d*\./.exec(f);h&&h[0]&&(f=f.substring(h[0].length))}break;case "port":f=String(Number(a.port)||(g==="http"?80:g==="https"?443:""));break;case "path":a.pathname||a.hostname||vb("TAGGING",1);f=a.pathname.substring(0,1)==="/"?a.pathname:"/"+a.pathname;var l=f.split("/");(d||[]).indexOf(l[l.length- -1])>=0&&(l[l.length-1]="");f=l.join("/");break;case "query":f=a.search.replace("?","");e&&(f=ej(f,e,!1));break;case "extension":var n=a.pathname.split(".");f=n.length>1?n[n.length-1]:"";f=f.split("/")[0];break;case "fragment":f=a.hash.replace("#","");break;default:f=a&&a.href}return f}function ij(a){return a?a.replace(":","").toLowerCase():""}function kj(a){var b="";if(a&&a.href){var c=a.href.indexOf("#");b=c<0?a.href:a.href.substring(0,c)}return b}var lj={},mj=0; -function nj(a){var b=lj[a];if(!b){var c=A.createElement("a");a&&(c.href=a);var d=c.pathname;d[0]!=="/"&&(a||vb("TAGGING",1),d="/"+d);var e=c.hostname.replace(cj,"");b={href:c.href,protocol:c.protocol,host:c.host,hostname:e,pathname:d,search:c.search,hash:c.hash,port:c.port};mj<5&&(lj[a]=b,mj++)}return b}function oj(a,b,c){var d=nj(a);return ec(b,d,c)} -function pj(a){var b=nj(w.location.href),c=hj(b,"host",!1);if(c&&c.match(dj)){var d=hj(b,"path");if(d){var e=d.split(a+"=");if(e.length>1)return e[1].split(";")[0].split("?")[0]}}};var qj={"https://www.google.com":"/g","https://www.googleadservices.com":"/as","https://pagead2.googlesyndication.com":"/gs"},rj=["/as/d/ccm/conversion","/g/d/ccm/conversion","/gs/ccm/conversion","/d/ccm/form-data"];function sj(){return Kf(47)?Lf(54)!==1:!1}function tj(){var a=E(18),b=a.length;return a[b-1]==="/"?a.substring(0,b-1):a} -function uj(a,b){if(a){var c=""+a;c.indexOf("http://")!==0&&c.indexOf("https://")!==0&&(c="https://"+c);c[c.length-1]==="/"&&(c=c.substring(0,c.length-1));return nj(""+c+b).href}}function vj(a,b){if(wj())return uj(a,b)}function xj(a){return a===2||a===3}function yj(a){return P(588)&&a===3}function wj(){return sj()||Kf(50)}function zj(){return!!Xi.yj&&Xi.yj.split("@@").join("")!=="SGTM_TOKEN"} -function Aj(a){for(var b=m([F.D.Od,F.D.Yc]),c=b.next();!c.done;c=b.next()){var d=Q(a,c.value);if(d)return d}}function Bj(a,b,c){c=c===void 0?"":c;if(!sj())return a;var d=b?qj[a]||"":"";d==="/gs"&&(c="");return""+tj()+d+c}function Cj(a){if(sj())for(var b=m(rj),c=b.next();!c.done;c=b.next()){var d=c.value;if(Wb(a,""+tj()+d))return"::"}};function Dj(a,b,c){var d="https://"+a+b;return c?function(){return sj()?tj()+c+b:d}:function(){return d}};var Ej={},Fj=(Ej[22]=Dj("www.googleadservices.com","/ccm/conversion","/as/d"),Ej[60]=Dj("pagead2.googlesyndication.com","/ccm/conversion","/gs"),Ej[23]=Dj("www.google.com","/ccm/conversion","/g/d"),Ej);var Gj={},Hj=(Gj[5]=Dj("www.googleadservices.com","/pagead/conversion"),Gj[6]=Dj("pagead2.googlesyndication.com","/pagead/conversion","/gs"),Gj[8]=Dj("www.google.com","/pagead/1p-conversion"),Gj[66]=Dj("www.google.com","/pagead/uconversion"),Gj[63]=Dj("www.googleadservices.com","/pagead/conversion"),Gj[64]=Dj("pagead2.googlesyndication.com","/pagead/conversion","/gs"),Gj[65]=Dj("www.google.com","/pagead/1p-conversion"),Gj[74]=function(){return tj()+"/as/p/c"},Gj),Ij={},Jj=(Ij[5]=function(){return tj()+ -"/as/d/pagead/conversion"},Ij[6]=function(){return tj()+"/gs/pagead/conversion"},Ij[8]=function(){return tj()+"/g/d/pagead/1p-conversion"},Ij[63]=function(){return tj()+"/as/d/pagead/conversion"},Ij[65]=function(){return tj()+"/g/d/pagead/1p-conversion"},Ij);function Kj(a){return a===5||a===6||a===8||a===63||a===65};var Lj={},Mj=(Lj[45]=Dj("www.google.com","/ccm/collect"),Lj[46]=Dj("pagead2.googlesyndication.com","/ccm/collect","/gs"),Lj[69]=Dj("ad.doubleclick.net","/ccm/s/collect"),Lj[58]=Dj("www.google.com","/pagead/set_partitioned_cookie"),Lj[57]=Dj("www.googleadservices.com","/pagead/set_partitioned_cookie"),Lj);var Nj={},Oj=(Nj[9]=Dj("googleads.g.doubleclick.net","/pagead/viewthroughconversion"),Nj[68]=Dj("www.google.com","/rmkt/collect"),Nj);var Pj={},Qj=(Pj[11]=Dj("www.google.com","/pagead/form-data","/d"),Pj[21]=Dj("www.google.com","/ccm/form-data","/d"),Pj[72]=Dj("google.com","/pagead/form-data","/d"),Pj[73]=Dj("google.com","/ccm/form-data","/d"),Pj);var Rj={},Sj=(Rj[51]=Dj("www.google.com","/travel/flights/click/conversion"),Rj);var Tj={},Uj=(Tj[1]=function(){return"https://ad.doubleclick.net/activity;"},Tj[2]=function(){return(sj()?tj():"https://ade.googlesyndication.com")+"/ddm/activity"+(P(467)?";":"/")},Tj[3]=function(a){return"https://"+a.Br+".fls.doubleclick.net/activityi;"},Tj);function Vj(a){vb("HEALTH",a)};function R(a){vb("GTM",a)};var Wj={da:{Yt:"aw_user_data_cache",Ai:"cookie_deprecation_label",kh:"diagnostics_page_id",zp:"ememo",lu:"em_registry",aj:"eab",zu:"fl_user_data_cache",Au:"ga4_user_data_cache",Su:"idc_pv_claim",Pe:"ip_geo_data_cache",fj:"ip_geo_fetch_in_progress",tn:"nb_data",ir:"page_experiment_ids",vn:"pld",Se:"pt_data",wn:"pt_listener_set",sj:"retry_containers",Xh:"service_worker_endpoint",qr:"shared_user_id",rr:"shared_user_id_requested",Aj:"shared_user_id_source",lv:"awh",wr:"universal_claim_registry"}};var Xj=function(a){return wf(function(b){for(var c in a)if(b===a[c]&&!/^[0-9]+$/.test(c))return!0;return!1})}(Wj.da); -function Yj(a,b){b=b===void 0?!1:b;if(Xj(a)){var c,d,e=(d=(c=Rc("google_tag_data",{})).xcd)!=null?d:c.xcd={};if(e[a])return e[a];if(b){var f=void 0,g=1,h={},l={set:function(n){f=n;l.notify()},get:function(){return f},subscribe:function(n){h[String(g)]=n;return g++},unsubscribe:function(n){var p=String(n);return h.hasOwnProperty(p)?(delete h[p],!0):!1},notify:function(){for(var n=m(Object.keys(h)),p=n.next();!p.done;p=n.next()){var q=p.value;try{h[q](a,f)}catch(r){}}}};return e[a]=l}}} -function Zj(a,b){var c=Yj(a,!0);c&&c.set(b)}function ak(a){var b;return(b=Yj(a))==null?void 0:b.get()}function bk(a,b){var c=Yj(a);if(!c){c=Yj(a,!0);if(!c)return;c.set(b)}return c.get()}function ck(a,b){if(typeof b==="function"){var c;return(c=Yj(a,!0))==null?void 0:c.subscribe(b)}}function dk(a,b){var c=Yj(a);return c?c.unsubscribe(b):!1};var ek=function(){this.H={};this.K=!1};ek.prototype.bind=function(){this.K||(this.H=fk(),this.H["0"]&&bk(Wj.da.Pe,JSON.stringify(this.H)))}; -var jk=function(){var a=gk,b=hk,c=void 0,d=function(){c!==void 0&&dk(Wj.da.Pe,c);try{var f=ak(Wj.da.Pe);b.H=JSON.parse(f)}catch(g){R(123),Vj(2),b.H={}}b.K=!0;a()},e=ak(Wj.da.Pe);e?d(e):(c=ck(Wj.da.Pe,d),ik())},ik=function(){if(!ak(Wj.da.fj)){Zj(Wj.da.fj,!0);var a=function(b){Zj(Wj.da.Pe,b||"{}");Zj(Wj.da.fj,!1)};try{w.fetch("https://www.google.com/ccm/geo",{method:"GET",cache:"no-store",mode:"cors",credentials:"omit"}).then(function(b){b.ok?b.text().then(function(c){a(c)},function(){a()}):a()},function(){a()})}catch(b){a()}}}, -fk=function(){var a=E(22);try{return JSON.parse(tb(a))}catch(b){return R(123),Vj(2),{}}},kk=function(){return hk.H["0"]||""},lk=function(){return hk.H["1"]||""},mk=function(){var a=hk,b=!1;return b},nk=function(){return hk.H["6"]!==!1},ok=function(){var a=hk,b="";return b},pk=function(){var a=hk,b="";return b},hk=new ek;function qk(a){a=a===void 0?"g/collect":a;return"https://"+(ok()||"www")+".google-analytics.com/"+a}function rk(a){a=a===void 0?"g/collect":a;var b=ok();return"https://"+(b?b+".":"")+"analytics.google.com/"+a}var sk={},tk=(sk[17]=function(){return sj()&&!ok()?tj()+"/ag/g/c":rk()},sk[16]=function(){return sj()&&!ok()?tj()+"/ga/g/c":qk()},sk[67]=function(){var a;a=a===void 0?"g/collect":a;return ok()?"":"https://www.google.com/"+a},sk);function uk(a,b,c){var d=Dj(b,"/measurement/conversion",c);return function(){return ok()?a("measurement/conversion"):d()}}var vk={},wk=(vk[55]=uk(qk,"pagead2.googlesyndication.com","/gs"),vk[54]=uk(rk,"www.google.com","/g"),vk);var xk=oa(Object,"assign").call(Object,{},Fj,Hj,Mj,Oj,Qj,Sj,Uj,wk,tk);var yk=function(a){return decodeURIComponent(a.replace(/\+/g," "))};var zk=RegExp("^(?:([^:/?#.]+):)?(?://(?:([^\\\\/?#]*)@)?([^\\\\/?#]*?)(?::([0-9]+))?(?=[\\\\/?#]|$))?([^?#]+)?(?:\\?([^#]*))?(?:#([\\s\\S]*))?$");function Ak(a,b,c,d){for(var e=b,f=c.length;(e=a.indexOf(c,e))>=0&&ec)e=c;d+=b.length+1;return yk(a.slice(d,e!==-1?e:0))}var Dk=/[?&]($|#)/; -function Ek(a,b,c){for(var d,e=a.search(Bk),f=0,g,h=[];(g=Ak(a,f,b,e))>=0;)h.push(a.substring(f,g)),f=Math.min(a.indexOf("&",g)+1||e,e);h.push(a.slice(f));d=h.join("").replace(Dk,"$1");var l,n=c!=null?"="+encodeURIComponent(String(c)):"";var p=b+n;if(p){var q,r=d.indexOf("#");r<0&&(r=d.length);var t=d.indexOf("?"),u;t<0||t>r?(t=r,u=""):u=d.substring(t+1,r);q=[d.slice(0,t),u,d.slice(r)];var v=q[1];q[1]=p?v?v+"&"+p:p:v;l=q[0]+(q[1]?"?"+q[1]:"")+q[2]}else l=d;return l};var Fk=Object.freeze({gcp:"1",sscte:"1",ct_cookie_present:"1"});function Gk(a,b){return a.replace(RegExp("([?&])fmt=[^&]*(&|$)"),"$1fmt="+b+"$2")}function Hk(a){return Wb(a,"https://")?a.substring(8):Wb(a,"http://")?a.substring(7):a};var Ik=function(){this.storage=Za()};Ik.prototype.set=function(a,b){this.storage.set(String(a),b)};Ik.prototype.get=function(a){return this.storage.get(String(a))};var Jk;function Kk(a,b){Jk||(Jk=new Ik);Jk.set(a,b)}function Lk(a){Jk||(Jk=new Ik);return Jk.get(a)}function Mk(a,b){Jk||(Jk=new Ik);var c=Jk;c.storage.has(String(a))||c.storage.set(String(a),b());return c.storage.get(String(a))};var Nk={},Ok=(Nk.tdp=1,Nk.exp=1,Nk.gtm=1,Nk.pid=1,Nk.dl=1,Nk.seq=1,Nk.t=1,Nk.v=1,Nk),Qk=function(){var a=Pk;return Object.keys(a.H).filter(function(b){return a.H[b]})},Rk=function(a,b,c){if(a.H[b]===void 0||(c===void 0?0:c))a.H[b]=!0},Sk=function(a){a.forEach(function(b){Ok[b]||(Pk.H[b]=!1)})},Pk=new function(){this.H={};this.K={}};function Tk(a,b,c){var d=c===void 0?!0:c,e=Pk;e.K[a]=b;(d===void 0||d)&&Rk(e,a)}function Uk(a,b){Rk(Pk,a,b===void 0?!1:b)};function Vk(a){var b=0;a.Bc.forEach(function(c){b|=1<=0||w.location.search.indexOf(">m_latency=")>=0;var fl=function(){var a=el;return P(533)?a.T:P(109)||P(513)},el=new function(a){this.O=a();var b=Lf(27);this.K=dl||this.O=1-c;var d=Lf(27),e=Lf(63);this.T=dl||e===1||this.O>=d&&this.O0:!1}function yl(){return xl()?!1:wl("Opera")}function zl(){return wl("Firefox")||wl("FxiOS")}function Al(){return xl()?vl("Chromium"):(wl("Chrome")||wl("CriOS"))&&!(xl()?0:wl("Edge"))||wl("Silk")};function Bl(){return ml?!!tl&&!!tl.platform:!1}function Cl(){return wl("iPhone")&&!wl("iPod")&&!wl("iPad")}function Dl(){Cl()||wl("iPad")||wl("iPod")};var El=function(a){El[" "](a);return a};El[" "]=function(){};yl();xl()||wl("Trident")||wl("MSIE");wl("Edge");!wl("Gecko")||sl().toLowerCase().indexOf("webkit")!=-1&&!wl("Edge")||wl("Trident")||wl("MSIE")||wl("Edge");sl().toLowerCase().indexOf("webkit")!=-1&&!wl("Edge")&&wl("Mobile");Bl()||wl("Macintosh");Bl()||wl("Windows");(Bl()?tl.platform==="Linux":wl("Linux"))||Bl()||wl("CrOS");Bl()||wl("Android");Cl();wl("iPad");wl("iPod");Dl();sl().toLowerCase().indexOf("kaios");zl();Cl()||wl("iPod");wl("iPad");!wl("Android")||Al()||zl()||yl()||wl("Silk");Al();!wl("Safari")||Al()||(xl()?0:wl("Coast"))||yl()||(xl()?0:wl("Edge"))||(xl()?vl("Microsoft Edge"):wl("Edg/"))||(xl()?vl("Opera"):wl("OPR"))||zl()||wl("Silk")||wl("Android")||Dl();var Fl={},Gl=null; -function Hl(a){for(var b=[],c=0,d=0;d255&&(b[c++]=e&255,e>>=8);b[c++]=e}var f=4;f===void 0&&(f=0);if(!Gl){Gl={};for(var g="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),h=["+/=","+/","-_=","-_.","-_"],l=0;l<5;l++){var n=g.concat(h[l].split(""));Fl[l]=n;for(var p=0;p>2],H=r[(y&3)<<4|z>>4],G=r[(z&15)<<2|C>>6],J=r[C&63];t[x++]=""+D+H+G+J}var S=0,V=u;switch(b.length-v){case 2:S=b[v+1],V=r[(S&15)<<2]||u;case 1:var da=b[v];t[x]=""+r[da>>2]+r[(da&3)<<4|S>>4]+V+u}return t.join("")};function Il(a,b,c,d,e,f,g,h){var l=Ck(c,"fmt");if(d){var n=Ck(c,"random"),p=Ck(c,"label")||"";if(!n)return;var q=Hl(yk(p)+":"+yk(n));if(!ll(a,q,d))return}l&&Number(l)!==4?(c=Ek(c,"rfmt",l),c=Ek(c,"fmt",4)):l||(c=Ek(c,"fmt",4));$c(c,function(){g==null||Jl(g);h==null||Kl(h,c);a.google_noFurtherRedirects&&d&&(a.google_noFurtherRedirects=null,d())},function(){g==null||Jl(g);h==null||Kl(h,c);e==null||e()},f,b.getElementsByTagName("script")[0].parentElement||void 0);return c};function Ll(a){var b=Qa.apply(1,arguments);il.register(a,2,b[0]);nd.apply(null,za(b))}function Ml(a){var b=Qa.apply(1,arguments);il.register(a,2,b[0]);return od.apply(null,za(b))}function Nl(a){var b=Qa.apply(1,arguments);il.register(a,3,b[0]);cd.apply(null,za(b))}function Ol(a){var b=Qa.apply(1,arguments);il.register(a,2,b[0]);return rd.apply(null,za(b))}function Pl(a){var b=Qa.apply(1,arguments);il.register(a,1,b[0]);$c.apply(null,za(b))} -function Ql(a){var b=Qa.apply(1,arguments);b[0]&&il.register(a,4,b[0]);bd.apply(null,za(b))}function Rl(a){var b=Il.apply(null,za(Qa.apply(1,arguments)));b&&il.register(a,1,b);return b};var Sl=/gtag[.\/]js/,Tl=/gtm[.\/]js/,Vl=function(a){var b=Ul;if((a.scriptContainerId||"").indexOf("GTM-")>=0){var c;a:{var d,e=(d=a.scriptElement)==null?void 0:d.src;if(e){for(var f=Kf(47),g=nj(e),h=f?g.pathname:""+g.hostname+g.pathname,l=A.scripts,n="",p=0;p=0){c=String(p);break a}n=String(p)}}if(n){c= -n;break a}}c=void 0}var r=c;if(r)return b.H=!0,r}var t=[].slice.call(A.scripts);return a.scriptElement?String(t.indexOf(a.scriptElement)):"-1"},Wl=function(a){if(Ul.H)return"1";var b,c=(b=a.scriptElement)==null?void 0:b.src;if(c){if(Sl.test(c))return"3";if(Tl.test(c))return"2"}return"0"},Ul=new function(){this.H=!1};function Xl(a){var b=Yl().destinationArray[a],c=Yl().destination[a];return b&&b.length>0?b[0]:c}function Zl(a,b){var c=Yl();c.pending||(c.pending=[]);Fb(c.pending,function(d){return d.target.ctid===a.ctid&&d.target.isDestination===a.isDestination})||c.pending.push({target:a,onLoad:b})}function $l(){var a=w.google_tags_first_party;Array.isArray(a)||(a=[]);for(var b={},c=m(a),d=c.next();!d.done;d=c.next())b[d.value]=!0;return Object.freeze(b)} -var am=function(){this.container={};this.destination={};this.destinationArray={};this.canonical={};this.pending=[];this.injectedFirstPartyContainers={};this.injectedFirstPartyContainers=$l()}; -function Yl(){var a=Rc("google_tag_data",{}),b=a.tidr;b&&typeof b==="object"||(b=new am,a.tidr=b);var c=b;c.container||(c.container={});c.destination||(c.destination={});c.destinationArray||(c.destinationArray={});c.canonical||(c.canonical={});c.pending||(c.pending=[]);c.injectedFirstPartyContainers||(c.injectedFirstPartyContainers=$l());return c};function bm(){return Kf(7)&&cm().some(function(a){return a===E(5)})}function dm(){var a;return(a=Mf(55))!=null?a:[]}function em(){return E(6)||"_"+E(5)}function fm(){var a=E(10);return a?a.split("|"):[E(5)]}function cm(){var a=Mf(59);return Array.isArray(a)?a.filter(function(b){return typeof b==="string"}).filter(function(b){return b.indexOf("GTM-")!==0}):[]}function gm(){var a=hm(im()),b=a&&a.parent;if(b)return hm(b)} -function jm(){var a=hm(im());if(a){for(;a.parent;){var b=hm(a.parent);if(!b)break;a=b}return a}}function hm(a){var b=Yl();return a.isDestination?Xl(a.ctid):b.container[a.ctid]}function km(){var a=Yl();if(a.pending){for(var b,c=[],d=!1,e=fm(),f=cm(),g={},h=0;h0&&n.update===void 0),t={region:q,declare_region:n.declare_region,implicit:n.implicit,default:c!==void 0?c:n.default,declare:n.declare,update:n.update,quiet:r};if(e!==""||n.default!==!1)l[b]=t;r&&w.setTimeout(function(){l[b]===t&&t.quiet&&(vb("TAGGING",2),a.waitPeriodTimedOut=!0,a.clearTimeout(b,void 0,h), -a.notifyListeners())},g)}};k=Bm.prototype;k.clearTimeout=function(a,b,c){var d=[a],e=c.delegatedConsentTypes,f;for(f in e)e.hasOwnProperty(f)&&e[f]===a&&d.push(f);var g=this.entries[a]||{},h=this.getConsentState(a,c);if(g.quiet){g.quiet=!1;for(var l=m(d),n=l.next();!n.done;n=l.next())Dm(this,n.value)}else if(b!==void 0&&h!==b)for(var p=m(d),q=p.next();!q.done;q=p.next())Dm(this,q.value)}; -k.update=function(a,b,c){this.usedDefault||this.usedDeclare||this.usedUpdate||!this.accessedAny||(this.wasSetLate=!0);this.usedUpdate=this.active=!0;if(b!=null){var d=this.getConsentState(a,c),e=this.entries;(e[a]=e[a]||{}).update=b==="granted";this.clearTimeout(a,d,c)}}; -k.declare=function(a,b,c,d,e){this.usedDeclare=this.active=!0;var f=this.entries,g=f[a]||{},h=g.declare_region,l=c&&Cb(c)?c.toUpperCase():void 0;d=d.toUpperCase();e=e.toUpperCase();if(d===""||l===e||(l===d?h!==e:!l&&!h)){var n={region:g.region,declare_region:l,declare:b==="granted",implicit:g.implicit,default:g.default,update:g.update,quiet:g.quiet};if(d!==""||g.declare!==!1)f[a]=n}}; -k.implicit=function(a,b){this.usedImplicit=!0;var c=this.entries,d=c[a]=c[a]||{};d.implicit!==!1&&(d.implicit=b==="granted")}; -k.getConsentState=function(a,b){var c=this.entries,d=c[a]||{},e=d.update;if(e!==void 0)return e?1:2;if(b.usedContainerScopedDefaults){var f=b.containerScopedDefaults[a];if(f===3)return 1;if(f===2)return 2}else if(e=d.default,e!==void 0)return e?1:2;if(b==null?0:b.delegatedConsentTypes.hasOwnProperty(a)){var g=b.delegatedConsentTypes[a],h=c[g]||{};e=h.update;if(e!==void 0)return e?1:2;if(b.usedContainerScopedDefaults){var l=b.containerScopedDefaults[g];if(l===3)return 1;if(l===2)return 2}else if(e= -h.default,e!==void 0)return e?1:2}e=d.declare;if(e!==void 0)return e?1:2;e=d.implicit;return e!==void 0?e?3:4:0};k.addListener=function(a,b){this.H.push({consentTypes:a,ce:b})};var Dm=function(a,b){for(var c=0;c=c.length?l(n):w.setTimeout(function(){l(e())},500)}})}};var Qm=function(a,b){this.H=a;this.consentTypes=b};Qm.prototype.isConsentGranted=function(){switch(this.H){case 0:return this.consentTypes.every(function(a){return Im(a)});case 1:return this.consentTypes.some(function(a){return Im(a)});default:Ec(this.H,"consentsRequired had an unknown type")}}; -var Rm=new function(){var a={};this.H=(a[zm.fa.dd]=ym.La.Oe,a[zm.fa.Xa]=ym.La.Oe,a[zm.fa.rd]=ym.La.Oe,a[zm.fa.Ub]=ym.La.Oe,a);var b={};this.K=(b[zm.fa.dd]=new Qm(0,[]),b[zm.fa.Xa]=new Qm(0,["ad_storage"]),b[zm.fa.rd]=new Qm(0,["analytics_storage"]),b[zm.fa.Ub]=new Qm(1,["ad_storage","analytics_storage"]),b)};var Tm=function(a){var b=this;this.type=a;this.H=[];Mm(Rm.K[a].consentTypes,function(){Sm(b)||b.flush()})};Tm.prototype.flush=function(){for(var a=m(this.H),b=a.next();!b.done;b=a.next()){var c=b.value;c()}this.H=[]};var Sm=function(a){return Rm.H[a.type]===ym.La.Uh&&!Rm.K[a.type].isConsentGranted()},Um=function(a,b){Sm(a)?a.H.push(b):b()},Vm=function(){this.H=new Map},Xm=function(a){var b=Wm;b.H.has(a)||b.H.set(a,new Tm(a));return b.H.get(a)};Vm.prototype.reset=function(){this.H.clear()}; -var Wm=new Vm;var Ym=["fin","fs","mcc","ncc"],Zm=function(a){a=a===void 0?!1:a;var b=Qk(),c=Pk.K,d=b.filter(function(e){return c[e]!==void 0&&(a||!Ym.includes(e))});Sk(d);return d.map(function(e){var f=c[e];typeof f==="function"&&(f=f());return f?"&"+e+"="+f:""}).join("")+"&z=0"},$m=function(a){var b="https://"+E(21),c="/td?id="+E(5);return""+Bj(b)+c+a},an=function(a,b){b=b===void 0?!1:b;if(Lk(26)&&el.H&&E(5)){var c=Xm(zm.fa.Ub);if(Sm(c))a.H||(a.H=!0,Um(c,function(){return an(a)}));else{b&&Tk("fin","1");var d= -Zm(b),e=$m(d),f={destinationId:E(5),endpoint:61};b?Ol(f,e,void 0,{ff:!0},void 0,function(){dd(e+"&img=1")}):Nl(f,e);a.H=!1;bn(d)}}},bn=function(a){if(Qc&&(Wb(Qc,"https://www.googletagmanager.com/")||Kf(47))&&!(a.indexOf("&csp=")<0&&a.indexOf("&mde=")<0)){var b;a:{try{if(Qc){b=new URL(Qc);break a}}catch(c){}b=void 0}b&&$c(""+Qc+(Qc.indexOf("?")>=0?"&":"?")+"is_td=1"+a)}},cn=function(a){Qk().some(function(b){return!Ok[b]})&&an(a,!0)},dn=new function(){var a=this;this.H=!1;ed(w,"pagehide",function(){cn(a)})}; -function en(a){an(dn,a===void 0?!1:a)};var fn=["ad_storage","analytics_storage","ad_user_data","ad_personalization"],gn=[F.D.Od,F.D.Yc,F.D.Rf,F.D.Gb,F.D.sc,F.D.ab,F.D.Ab,F.D.lb,F.D.Hb,F.D.oc],kn=function(){var a=hn;!a.T&&a.H&&(fn.some(function(b){return Hm.containerScopedDefaults[b]!==1})||jn("mbc"));a.T=!0},jn=function(a){el.H&&(Tk(a,"1"),en())},ln=function(a,b){var c=hn;if(!c.O[b]&&(c.O[b]=!0,c.K[b]))for(var d=m(gn),e=d.next();!e.done;e=d.next())if(Q(a,e.value)){jn("erc");break}},hn=new function(){this.T=this.H=!1;this.O={};this.K={}};var mn={},nn=Object.freeze((mn[F.D.Nc]=1,mn[F.D.oh]=1,mn[F.D.Di]=1,mn[F.D.Oc]=1,mn[F.D.Ga]=1,mn[F.D.Hb]=1,mn[F.D.zb]=1,mn[F.D.Pb]=1,mn[F.D.Dd]=1,mn[F.D.oc]=1,mn[F.D.lb]=1,mn[F.D.Ed]=1,mn[F.D.Fe]=1,mn[F.D.Ua]=1,mn[F.D.aq]=1,mn[F.D.Qf]=1,mn[F.D.Ni]=1,mn[F.D.zh]=1,mn[F.D.Sc]=1,mn[F.D.Rf]=1,mn[F.D.mq]=1,mn[F.D.Va]=1,mn[F.D.Vf]=1,mn[F.D.qq]=1,mn[F.D.Fh]=1,mn[F.D.bm]=1,mn[F.D.Uc]=1,mn[F.D.Vc]=1,mn[F.D.Ab]=1,mn[F.D.om]=1,mn[F.D.Rb]=1,mn[F.D.Md]=1,mn[F.D.Nd]=1,mn[F.D.Wi]=1,mn[F.D.Od]=1,mn[F.D.Ih]=1,mn[F.D.Xi]= -1,mn[F.D.Pd]=1,mn[F.D.Yc]=1,mn[F.D.Qd]=1,mn[F.D.zm]=1,mn[F.D.Rd]=1,mn[F.D.Zc]=1,mn[F.D.wj]=1,mn));Object.freeze([F.D.Ca,F.D.Za,F.D.Ib,F.D.rb,F.D.Vi,F.D.ab,F.D.Oi,F.D.Wp]); -var on={},pn=Object.freeze((on[F.D.Bp]=1,on[F.D.Cp]=1,on[F.D.Dp]=1,on[F.D.Ep]=1,on[F.D.Fp]=1,on[F.D.Jp]=1,on[F.D.Kp]=1,on[F.D.Lp]=1,on[F.D.Np]=1,on[F.D.yf]=1,on)),qn={},rn=Object.freeze((qn[F.D.Fl]=1,qn[F.D.Gl]=1,qn[F.D.ve]=1,qn[F.D.we]=1,qn[F.D.Hl]=1,qn[F.D.vd]=1,qn[F.D.xe]=1,qn[F.D.hc]=1,qn[F.D.Mc]=1,qn[F.D.jc]=1,qn[F.D.Eb]=1,qn[F.D.ye]=1,qn[F.D.kc]=1,qn[F.D.Il]=1,qn)),sn=Object.freeze([F.D.Nc,F.D.Oc,F.D.Ed,F.D.Rf,F.D.Xf,F.D.Md,F.D.Wi,F.D.Qd]),tn=Object.freeze([].concat(za(sn))),un=Object.freeze([F.D.zb, -F.D.zh,F.D.Ih,F.D.Xi,F.D.xh]),vn=Object.freeze([].concat(za(un))),wn={},xn=(wn[F.D.ja]="1",wn[F.D.sa]="2",wn[F.D.ka]="3",wn[F.D.Ta]="4",wn),yn={},zn=Object.freeze((yn.search="s",yn.youtube="y",yn.playstore="p",yn.shopping="h",yn.ads="a",yn.maps="m",yn));function An(a){return typeof a!=="object"||a===null?{}:a}function Bn(a){return a===void 0||a===null?"":typeof a==="object"?a.toString():String(a)}function Cn(a){if(a!==void 0&&a!==null)return Bn(a)};var Yn=function(){this.H=w.google_tag_manager=w.google_tag_manager||{}},Zn;function $n(a,b){ao();var c=Zn;return c.H[a]=c.H[a]||b()}function bo(a){ao();return Zn.H[a]}function co(a,b){ao();Zn.H[a]=b}function eo(a){var b=E(5);ao();var c=Zn;c.H[b]=c.H[b]||a}function fo(){var a=E(19);ao();var b=Zn;return b.H[a]=b.H[a]||{}}function go(){var a=E(19);ao();return Zn.H[a]}function ho(){ao();var a=Zn,b=a.H.sequence||1;a.H.sequence=b+1;return b}function ao(){Zn||(Zn=new Yn)};var io=function(){};io.prototype.toString=function(){return"undefined"};var jo=new io;function ro(a,b){function c(g){var h=nj(g),l=hj(h,"protocol"),n=hj(h,"host",!0),p=hj(h,"port"),q=hj(h,"path").toLowerCase().replace(/\/$/,"");if(l===void 0||l==="http"&&p==="80"||l==="https"&&p==="443")l="web",p="default";return[l,n,p,q]}for(var d=c(String(a)),e=c(String(b)),f=0;fc-9E5};var xo=!1,yo=!1,zo=!1,Ao=0,Bo=!1,Co=[];function Do(a){if(Ao===0)Bo&&Co&&(Co.length>=100&&Co.shift(),Co.push(a));else if(Eo()){var b=E(41),c=Rc(b,[]);c.length>=50&&c.shift();c.push(a)}}function Fo(){Go();fd(A,"TAProdDebugSignal",Fo)}function Go(){if(!yo){yo=!0;Ho();var a=Co;Co=void 0;a==null||a.forEach(function(b){Do(b)})}} -function Ho(){var a=A.documentElement.getAttribute("data-tag-assistant-prod-present");wo(a)?Ao=1:!vo(a)||xo||zo?Ao=2:(zo=!0,ed(A,"TAProdDebugSignal",Fo,!1),w.setTimeout(function(){Go();xo=!0},200))}function Eo(){if(!Bo)return!1;switch(Ao){case 1:case 0:return!0;case 2:return!1;default:return!1}};var Io=!1;function Jo(a,b){var c=fm(),d=cm();E(26);var e=Kf(47)?0:Kf(50)?1:3,f=tj();if(Eo()){var g=Ko("INIT");g.containerLoadSource=a!=null?a:0;b&&(g.parentTargetReference=b);g.aliases=c;g.destinations=d;e!==void 0&&(g.gtg={source:e,mPath:f!=null?f:""});Do(g)}} -function Lo(a){var b,c,d,e;b=a.targetId;c=a.request;d=a.nb;e=a.isBatched;var f;if(f=Eo()){var g;a:switch(c.endpoint){case 68:case 69:case 19:case 62:case 47:g=!0;break a;default:g=!1}f=!g}if(f){var h=Ko("GTAG_HIT",{eventId:d.eventId,priorityId:d.priorityId});h.target=b;h.url=c.url;c.postBody&&(h.postBody=c.postBody);h.parameterEncoding=c.parameterEncoding;h.endpoint=c.endpoint;e!==void 0&&(h.isBatched=e);Do(h)}}function Mo(a){Eo()&&Lo(a())} -function Ko(a,b){b=b===void 0?{}:b;b.groupId=No;var c,d=b,e=Oo,f={publicId:Po};d.eventId!=null&&(f.eventId=d.eventId);d.priorityId!=null&&(f.priorityId=d.priorityId);d.eventName&&(f.eventName=d.eventName);d.groupId&&(f.groupId=d.groupId);d.tagName&&(f.tagName=d.tagName);c={containerProduct:"GTM",key:f,version:e,messageType:a};c.containerProduct=Io?"OGT":"GTM";c.key.targetRef=Qo;return c}var Po="",Oo="",Qo={ctid:"",isDestination:!1},No; -function Ro(a){var b=E(5),c=Kf(45),d=bm(),e=E(6),f=E(1);E(23);Ao=0;Bo=!0;Ho();No=a;Po=b;Oo=f;Io=c;Qo={ctid:b,isDestination:d,canonicalId:e}};var So=[F.D.ja,F.D.sa,F.D.ka,F.D.Ta];function To(a){for(var b=m(a[F.D.fc]||[""]),c=b.next(),d={};!c.done;d={region:void 0},c=b.next())d.region=c.value,Jb(a,function(e){return function(f,g){if(f!==F.D.fc){var h=Bn(g),l=e.region,n=kk(),p=lk();Fm=!0;Em&&vb("TAGGING",20);Am().declare(f,h,l,n,p)}}}(d))} -function Uo(a){kn();var b=Mk(17,function(){return!1}),c=Mk(16,function(){return!1});!b&&c&&jn("crc");Kk(17,!0);var d=a[F.D.hh];d&&R(41);var e=a[F.D.fc];e?R(40):e=[""];for(var f=m(e),g=f.next(),h={};!g.done;h={Mo:void 0},g=f.next())h.Mo=g.value,Jb(a,function(l){return function(n,p){if(n!==F.D.fc&&n!==F.D.hh){var q=Cn(p),r=l.Mo,t=Number(d),u=kk(),v=lk();t=t===void 0?0:t;Em=!0;Fm&&vb("TAGGING",20);Am().default(n,q,r,u,v,t,Hm)}}}(h))} -function Vo(a){Hm.usedContainerScopedDefaults=!0;var b=a[F.D.fc];if(b){var c=Array.isArray(b)?b:[b];if(!c.includes(lk())&&!c.includes(kk()))return}Jb(a,function(d,e){switch(d){case "ad_storage":case "analytics_storage":case "ad_user_data":case "ad_personalization":break;default:return}Hm.usedContainerScopedDefaults=!0;Hm.containerScopedDefaults[d]=e==="granted"?3:2})} -function Wo(a,b){kn();Kk(16,!0);Jb(a,function(c,d){var e=Bn(d);Em=!0;Fm&&vb("TAGGING",20);Am().update(c,e,Hm)});Nm(b.eventId,b.priorityId)}function Xo(a){a.hasOwnProperty("all")&&(Hm.selectedAllCorePlatformServices=!0,Jb(zn,function(b){Hm.corePlatformServices[b]=a.all==="granted";Hm.usedCorePlatformServices=!0}));Jb(a,function(b,c){b!=="all"&&(Hm.corePlatformServices[b]=c==="granted",Hm.usedCorePlatformServices=!0)})} -function Yo(a){Array.isArray(a)||(a=[a]);return a.every(function(b){return Im(b)})}function Zo(){var a=$o;Array.isArray(a)||(a=[a]);return a.some(function(b){return Im(b)})}function ap(a,b){Mm(a,b)}function bp(a,b){Pm(a,b)}function cp(a,b){Om(a,b)}function dp(){var a=[F.D.ja,F.D.Ta,F.D.ka];Am().waitForUpdate(a,500,Hm)}function ep(a){for(var b=m(a),c=b.next();!c.done;c=b.next()){var d=c.value;Am().clearTimeout(d,void 0,Hm)}Nm()} -function fp(a){for(var b={},c=m(a.split("|")),d=c.next();!d.done;d=c.next())b[d.value]=!0;return b};var gp=function(a,b,c,d,e){this.endpoint=a;this.Z=d;this.parameterEncoding=e;this.O=b.slice()};gp.prototype.isSupported=function(){return!0};gp.prototype.K=function(){return Hk(xk[this.endpoint](void 0))};var hp=function(a,b,c){gp.call(this,a,b,!0,c===void 0?!1:c,3,void 0)};wa(hp,gp);var jp=function(a,b){var c=ip(a,F.D.qh);return b+"/"+c+"/"};hp.prototype.K=function(a){return jp(a,gp.prototype.K.call(this,a))};function kp(a,b){var c=ip(a,F.D.Ch);if(P(502)&&c)for(var d=m(Object.keys(c)),e=d.next();!e.done;e=d.next()){var f=e.value,g=c[f];g!==void 0&&g!==null&&(b["gtmd."+f]=String(g))}};var T={U:{Wk:"call_conversion",ud:"ccm_conversion",Zk:"common_aw",ra:"conversion",Hq:"floodlight",Td:"ga_conversion",xc:"gcp_remarketing",Ka:"page_view",tb:"remarketing",Bb:"user_data_lead",Cb:"user_data_web"}};function lp(a){a=a===void 0?[]:a;return Ti(a).join("~")};function mp(){var a=[],b=Number('')||0,c=Number('')||0;c||(c=b/100);var d=function(){var t=!1;return t}();a.push({Fk:228,studyId:228,experimentId:105177154,controlId:105177155,controlId2:105255245,probability:c,active:d,We:0});var e=Number('')|| -0,f=Number('')||0;f||(f=e/100);var g=function(){var t=!1;return t}();a.push({Fk:235,studyId:235,experimentId:105357150,controlId:105357151,controlId2:0,probability:f,active:g,We:1});var h=Number('')||0,l=Number('')|| -0;l||(l=h/100);var n=function(){var t=!1;return t}();a.push({Fk:266,studyId:266,experimentId:115718529,controlId:115718530,controlId2:115718531,probability:l,active:n,We:0});var p=Number('')||0,q=Number('')|| -0;q||(q=p/100);var r=function(){var t=!1;return t}();a.push({Fk:267,studyId:267,experimentId:115718526,controlId:115718527,controlId2:115718528,probability:q,active:r,We:0});return a};var np=function(){this.K={};this.H={};this.O={};this.T=new Set},tp=function(a,b){var c=b,d=b=a.O[c.studyId]?oa(Object,"assign").call(Object,{},c,{active:!0}):c,e=Gi;d.controlId2&&d.probability<=.25||(d=oa(Object,"assign").call(Object,{},d,{controlId2:0}));e.studies[d.studyId]=d;b.focused&&(a.K[b.studyId]=!0);if(b.We===1){var f=b.studyId;op(a,pp(),f);qp(a,f)?Pi(Qi,f):rp(a,f)?Qi.K[f]=!0:sp(a,f)&&(Qi.H[f]=!0)}else if(b.We===0){var g=b.studyId;op(a,a.H,g);qp(a,g)?Pi(Qi,g):rp(a,g)?Qi.K[g]=!0:sp(a,g)&& -(Qi.H[g]=!0)}},op=function(a,b,c,d){var e=Gi;if(e.studies[c]){var f=e.studies[c],g=f.experimentId,h=f.probability;if(!(b.studies||{})[c]){var l=b.studies||{};l[c]=!0;b.studies=l;if(!e.studies[c].active)if(e.studies[c].probability>.5)Ji(b,g,c);else if(!(h<=0||h>1)){var n=void 0;if(d){var p=Di(d+"~"+c);if(p==="e2")n=-1;else{for(var q=new Uint8Array(p),r=BigInt(0),t=m(q),u=t.next();!u.done;u=t.next())r=r<3&&(g.labels=f.slice(3));d[c[e].te].push(g)}}return d};function Pp(a){return a.origin!=="null"};var Qp={},Rp=(Qp.k={na:/^[\w-]+$/},Qp.b={na:/^[\w-]+$/,zk:!0},Qp.i={na:/^[1-9]\d*$/},Qp.h={na:/^\d+$/},Qp.t={na:/^[1-9]\d*$/},Qp.d={na:/^[A-Za-z0-9_-]+$/},Qp.j={na:/^\d+$/},Qp.u={na:/^[1-9]\d*$/},Qp.l={na:/^[01]$/},Qp.o={na:/^[1-9]\d*$/},Qp.g={na:/^[01]$/},Qp.s={na:/^.+$/},Qp.m={na:/^[01]$/},Qp);var Sp={},Wp=(Sp[5]={si:{2:Tp},mk:"2",Zh:["k","i","b","u"]},Sp[4]={si:{2:Tp,GCL:Up},mk:"2",Zh:["k","i","b","m"]},Sp[2]={si:{GS2:Tp,GS1:Vp},mk:"GS2",Zh:"sogtjlhd".split("")},Sp);function Xp(a,b,c){var d=Wp[b];if(d){var e=a.split(".")[0];c==null||c(e);if(e){var f=d.si[e];if(f)return f(a,b)}}} -function Tp(a,b){var c=a.split(".");if(c.length===3){var d=c[2];if(d.indexOf("$")===-1&&d.indexOf("%24")!==-1)try{d=decodeURIComponent(d)}catch(t){}var e={},f=Wp[b];if(f){for(var g=f.Zh,h=m(d.split("$")),l=h.next();!l.done;l=h.next()){var n=l.value,p=n[0];if(g.indexOf(p)!==-1)try{var q=decodeURIComponent(n.substring(1)),r=Rp[p];r&&(r.zk?(e[p]=e[p]||[],e[p].push(q)):e[p]=q)}catch(t){}}return e}}}function Yp(a,b,c){var d=Wp[b];if(d)return[d.mk,c||"1",Zp(a,b)].join(".")} -function Zp(a,b){var c=Wp[b];if(c){for(var d=[],e=m(c.Zh),f=e.next();!f.done;f=e.next()){var g=f.value,h=Rp[g];if(h){var l=a[g];if(l!==void 0)if(h.zk&&Array.isArray(l))for(var n=m(l),p=n.next();!p.done;p=n.next())d.push(encodeURIComponent(""+g+p.value));else d.push(encodeURIComponent(""+g+l))}}return d.join("$")}}function Up(a){var b=a.split(".");b.shift();var c=b.shift(),d=b.shift(),e={};return e.k=d,e.i=c,e.b=b,e} -function Vp(a){var b=a.split(".").slice(2);if(!(b.length<5||b.length>7)){var c={};return c.s=b[0],c.o=b[1],c.g=b[2],c.t=b[3],c.j=b[4],c.l=b[5],c.h=b[6],c}};var $p={W:{lr:0,Ok:1,ih:2,ml:3,yi:4,jl:5,kl:6,nl:7,zi:8,Em:9,Dm:10,bj:11,Fm:12,Lh:13,Om:14,qj:15,hr:16,ed:17,Cj:18,Dj:19,Ej:20,Nn:21,Fj:22,Bi:23,xl:24}};$p.W[$p.W.lr]="RESERVED_ZERO";$p.W[$p.W.Ok]="ADS_CONVERSION_HIT";$p.W[$p.W.ih]="CONTAINER_EXECUTE_START";$p.W[$p.W.ml]="CONTAINER_SETUP_END";$p.W[$p.W.yi]="CONTAINER_SETUP_START";$p.W[$p.W.jl]="CONTAINER_BLOCKING_END";$p.W[$p.W.kl]="CONTAINER_EXECUTE_END";$p.W[$p.W.nl]="CONTAINER_YIELD_END";$p.W[$p.W.zi]="CONTAINER_YIELD_START";$p.W[$p.W.Em]="EVENT_EXECUTE_END"; -$p.W[$p.W.Dm]="EVENT_EVALUATION_END";$p.W[$p.W.bj]="EVENT_EVALUATION_START";$p.W[$p.W.Fm]="EVENT_SETUP_END";$p.W[$p.W.Lh]="EVENT_SETUP_START";$p.W[$p.W.Om]="GA4_CONVERSION_HIT";$p.W[$p.W.qj]="PAGE_LOAD";$p.W[$p.W.hr]="PAGEVIEW";$p.W[$p.W.ed]="SNIPPET_LOAD";$p.W[$p.W.Cj]="TAG_CALLBACK_ERROR";$p.W[$p.W.Dj]="TAG_CALLBACK_FAILURE";$p.W[$p.W.Ej]="TAG_CALLBACK_SUCCESS";$p.W[$p.W.Nn]="TAG_EXECUTE_END";$p.W[$p.W.Fj]="TAG_EXECUTE_START";$p.W[$p.W.Bi]="CUSTOM_PERFORMANCE_START";$p.W[$p.W.xl]="CUSTOM_PERFORMANCE_END";var aq=[],bq={},cq={};function dq(a){if($f(9)&&aq.includes(a)){var b;(b=xd())==null||b.mark(a+"-"+$p.W.Bi+"-"+(cq[a]||0))}}function eq(a){if($f(9)&&aq.includes(a)){var b=a+"-"+$p.W.xl+"-"+(cq[a]||0),c={start:a+"-"+$p.W.Bi+"-"+(cq[a]||0),end:b},d;(d=xd())==null||d.mark(b);var e,f,g=(f=(e=xd())==null?void 0:e.measure(b,c))==null?void 0:f.duration;g!==void 0&&(cq[a]=(cq[a]||0)+1,bq[a]=g+(bq[a]||0))}};var fq=["3","4"];function gq(a,b,c,d){try{dq("3");var e;return(e=hq(function(f){return f===a},b,c,d)[a])!=null?e:[]}finally{eq("3")}}function hq(a,b,c,d){var e;if(iq(d)){for(var f={},g=String(b||jq()).split(";"),h=0;h=0} -function oq(a,b,c,d){function e(x,y,z){if(z==null)return delete h[y],x;h[y]=z;return x+"; "+y+"="+z}function f(x,y){if(y==null)return x;h[y]=!0;return x+"; "+y}if(!iq(c.Ic))return 2;var g;b==null?g=a+"=deleted; expires="+(new Date(0)).toUTCString():(c.encode&&(b=encodeURIComponent(b)),b=pq(b),g=a+"="+b);var h={};g=e(g,"path",c.path);var l;c.expires instanceof Date?l=c.expires.toUTCString():c.expires!=null&&(l=""+c.expires);g=e(g,"expires",l);g=e(g,"max-age",c.bt);g=e(g,"samesite",c.Gt);c.secure&& -(g=f(g,"secure"));var n=c.domain;if(n&&n.toLowerCase()==="auto"){for(var p=qq(),q=void 0,r=!1,t=0;t0?d:e} -function lq(a,b,c){for(var d=[],e=gq(a,void 0,void 0,c),f=0;f1200&&(a=a.substring(0,1200));return a}var tq=/^(www\.)?google(\.com?)?(\.[a-z]{2})?$/,uq=/(^|\.)doubleclick\.net$/i; -function rq(a,b){return a!==void 0&&(uq.test(w.document.location.hostname)||b==="/"&&tq.test(a))}function vq(a){if(!a)return 1;var b=a;$f(4)&&a==="none"&&(b=w.document.location.hostname);b=b.indexOf(".")===0?b.substring(1):b;return b.split(".").length}function wq(a){if(!a||a==="/")return 1;a[0]!=="/"&&(a="/"+a);a[a.length-1]!=="/"&&(a+="/");return a.split("/").length-1}function xq(a,b){var c=""+vq(a),d=wq(b);d>1&&(c+="-"+d);return c} -var jq=function(){var a=w;return Pp(a)?a.document.cookie:""},iq=function(a){return a&&$f(5)?(Array.isArray(a)?a:[a]).every(function(b){return Km(b)&&Im(b)}):!0},qq=function(){var a=[],b=w.document.location.hostname.split(".");if(b.length===4){var c=b[b.length-1];if(Number(c).toString()===c)return["none"]}for(var d=b.length-2;d>=0;d--)a.push(b.slice(d).join("."));var e=w.document.location.hostname;uq.test(e)||tq.test(e)||a.push("none");return a};function yq(a,b,c,d){var e,f=Number(a.kd!=null?a.kd:void 0);f!==0&&(e=new Date((b||Qb())+1E3*(f||7776E3)));return{path:a.path,domain:a.domain,flags:a.flags,encode:!!c,expires:e,Ic:d}};var zq=new Map([[5,"ad_storage"],[4,["ad_storage","ad_user_data"]],[2,"analytics_storage"]]);function Aq(a,b,c){if(Wp[b]){for(var d=[],e=gq(a,void 0,void 0,zq.get(b)),f=m(e),g=f.next();!g.done;g=f.next()){var h=Xp(g.value,b,c);h&&d.push(Bq(h))}return d}} -function Cq(a){var b=Dq;if(Wp[2]){for(var c={},d=hq(a,void 0,void 0,zq.get(2)),e=Object.keys(d).sort(),f=m(e),g=f.next();!g.done;g=f.next())for(var h=g.value,l=m(d[h]),n=l.next();!n.done;n=l.next()){var p=Xp(n.value,2,b);p&&(c[h]||(c[h]=[]),c[h].push(Bq(p)))}return c}}function Eq(a,b,c,d,e){d=d||{};var f=xq(d.domain,d.path),g=Yp(b,c,f);if(!g)return 1;var h=yq(d,e,void 0,zq.get(c));return sq(a,g,h)}function Fq(a,b){var c=b.na;return typeof c==="function"?c(a):c.test(a)} -function Bq(a){for(var b=m(Object.keys(a)),c=b.next(),d={};!c.done;d={Fg:void 0},c=b.next()){var e=c.value,f=a[e];d.Fg=Rp[e];d.Fg?d.Fg.zk?a[e]=Array.isArray(f)?f.filter(function(g){return function(h){return Fq(h,g.Fg)}}(d)):void 0:typeof f==="string"&&Fq(f,d.Fg)||(a[e]=void 0):a[e]=void 0}return a};var Gq;function Hq(){function a(g){c(g.target||g.srcElement||{})}function b(g){d(g.target||g.srcElement||{})}var c=Iq,d=Jq,e=Kq();if(!e.init){ed(A,"mousedown",a);ed(A,"keyup",a);ed(A,"submit",b);var f=HTMLFormElement.prototype.submit;HTMLFormElement.prototype.submit=function(){d(this);f.call(this)};e.init=!0}}function Lq(a,b,c,d,e){var f={callback:a,domains:b,fragment:c===2,placement:c,forms:d,sameHost:e};Kq().decorators.push(f)} -function Mq(a,b,c){for(var d=Kq().decorators,e={},f=0;f=0||p&&l[q].indexOf(n)>=0){h=!0;break a}h=!1}if(h){var r=g.placement;r===void 0&&(r=g.fragment?2:1);r===b&&Ub(e,g.callback())}}return e} -function Kq(){var a=Rc("google_tag_data",{}),b=a.gl;b&&b.decorators||(b={decorators:[]},a.gl=b);return b};var Nq=/(.*?)\*(.*?)\*(.*)/,Oq=/^https?:\/\/([^\/]*?)\.?cdn\.ampproject\.org\/?(.*)/,Pq=/^(?:www\.|m\.|amp\.)+/,Qq=/([^?#]+)(\?[^#]*)?(#.*)?/;function Rq(a){var b=Qq.exec(a);if(b)return{tk:b[1],query:b[2],fragment:b[3]}}function Sq(a){return new RegExp("(.*?)(^|&)"+a+"=([^&]*)&?(.*)")} -function Tq(a,b){var c=[Nc.userAgent,(new Date).getTimezoneOffset(),Nc.userLanguage||Nc.language,Math.floor(Qb()/60/1E3)-(b===void 0?0:b),a].join("*"),d;if(!(d=Gq)){for(var e=Array(256),f=0;f<256;f++){for(var g=f,h=0;h<8;h++)g=g&1?g>>>1^3988292384:g>>>1;e[f]=g}d=e}Gq=d;for(var l=4294967295,n=0;n>>8^Gq[(l^c.charCodeAt(n))&255];return((l^-1)>>>0).toString(36)} -function Uq(a){return function(b){var c=nj(w.location.href),d=c.search.replace("?",""),e=ej(d,"_gl",!1,!0)||"";b.query=Vq(e)||{};var f=hj(c,"fragment"),g;var h=-1;if(Wb(f,"_gl="))h=4;else{var l=f.indexOf("&_gl=");l>0&&(h=l+3+2)}if(h<0)g=void 0;else{var n=f.indexOf("&",h);g=n<0?f.substring(h):f.substring(h,n)}b.fragment=Vq(g||"")||{};a&&Wq(c,d,f)}}function Xq(a,b){var c=Sq(a).exec(b),d=b;if(c){var e=c[2],f=c[4];d=c[1];f&&(d=d+e+f)}return d} -function Wq(a,b,c){function d(g,h){var l=Xq("_gl",g);l.length&&(l=h+l);return l}if(Mc&&Mc.replaceState){var e=Sq("_gl");if(e.test(b)||e.test(c)){var f=hj(a,"path");b=d(b,"?");c=d(c,"#");Mc.replaceState({},"",""+f+b+c)}}}function Yq(a,b){var c=Uq(!!b),d=Kq();d.data||(d.data={query:{},fragment:{}},c(d.data));var e={},f=d.data;f&&(Ub(e,f.query),a&&Ub(e,f.fragment));return e} -var Vq=function(a){try{var b=Zq(a,3);if(b!==void 0){for(var c={},d=b?b.split("*"):[],e=0;e+10;){if(c.href&&c.nodeName.match(/^a(?:rea)?$/i)){b=c;break a}c=c.parentNode;d--}b=null}var e=b;if(e){var f=e.protocol;f!=="http:"&&f!=="https:"||ar(e,e.hostname)}}catch(g){}}function Jq(a){try{var b=a.getAttribute("action");if(b){var c=hj(nj(b),"host");ar(a,c)}}catch(d){}}function er(a,b,c,d){Hq();var e=c==="fragment"?2:1;d=!!d;Lq(a,b,e,d,!1);e===2&&vb("TAGGING",23);d&&vb("TAGGING",24)} -function fr(a,b){Hq();Lq(a,[jj(w.location,"host",!0)],b,!0,!0)}function gr(){var a=A.location.hostname,b=Oq.exec(A.referrer);if(!b)return!1;var c=b[2],d=b[1],e="";if(c){var f=c.split("/"),g=f[1];e=g==="s"?gj(f[2])||"":gj(g)||""}else if(d){if(d.indexOf("xn--")===0)return!1;e=d.replace(/-/g,".").replace(/\.\./g,"-")}var h=a.replace(Pq,""),l=e.replace(Pq,"");return h===l||Xb(h,"."+l)}function hr(a,b){return a===!1?!1:a||b||gr()};var ir=function(a){this.value=0;this.value=a===void 0?0:a};ir.prototype.set=function(a){return this.value|=1<=a.length)return;e=a[f++];c|=(e&127)<2&&(d=d.replace(/^(www[0-9]*|web|ftp|wap|home|m|w|amp|mobile)\./,""));b=d;c=fc(c);var e=c.split(";")[0];e=e.replace(/\/(ar|slp|web|index)?\/?$/,"");return a(pg((""+b+e).toLowerCase()))};var nr=["ad_storage","ad_user_data"];function or(a,b){if(!a)return vb("TAGGING",32),10;if(b===null||b===void 0||b==="")return vb("TAGGING",33),11;var c=pr(!1);if(c.error!==0)return vb("TAGGING",34),c.error;if(!c.value)return vb("TAGGING",35),2;c.value[a]=b;var d=qr(c);d!==0&&vb("TAGGING",36);return d} -function rr(a){if(!a)return vb("TAGGING",27),{error:10};var b=pr();if(b.error!==0)return vb("TAGGING",29),b;if(!b.value)return vb("TAGGING",30),{error:2};if(!(a in b.value))return vb("TAGGING",31),{value:void 0,error:15};var c=b.value[a];return c===null||c===void 0||c===""?(vb("TAGGING",28),{value:void 0,error:11}):{value:c,error:0}} -function sr(a){if(a){var b=pr(!1);b.error!==0?vb("TAGGING",38):b.value?a in b.value?(delete b.value[a],qr(b)!==0&&vb("TAGGING",41)):vb("TAGGING",40):vb("TAGGING",39)}else vb("TAGGING",37)} -function pr(a){a=a===void 0?!0:a;if(!Im(nr))return vb("TAGGING",43),{error:3};try{if(!w.localStorage)return vb("TAGGING",44),{error:1}}catch(f){return vb("TAGGING",45),{error:14}}var b={schema:"gcl",version:1},c=void 0;try{c=w.localStorage.getItem("_gcl_ls")}catch(f){return vb("TAGGING",46),{error:13}}try{if(c){var d=JSON.parse(c);if(d&&typeof d==="object")b=d;else return vb("TAGGING",47),{error:12}}}catch(f){return vb("TAGGING",48),{error:8}}if(b.schema!=="gcl")return vb("TAGGING",49),{error:4}; -if(b.version!==1)return vb("TAGGING",50),{error:5};try{var e=tr(b);a&&e&&qr({value:b,error:0})}catch(f){return vb("TAGGING",48),{error:8}}return{value:b,error:0}} -function tr(a){if(!a||typeof a!=="object")return!1;if("expires"in a&&"value"in a){var b;typeof a.expires==="number"?b=a.expires:b=typeof a.expires==="string"?Number(a.expires):NaN;if(isNaN(b)||!(Date.now()<=b))return a.value=null,a.error=9,vb("TAGGING",54),!0}else{for(var c=!1,d=m(Object.keys(a)),e=d.next();!e.done;e=d.next())c=tr(a[e.value])||c;return c}return!1} -function qr(a){if(a.error)return a.error;if(!a.value)return vb("TAGGING",42),2;var b=a.value,c;try{c=JSON.stringify(b)}catch(d){return vb("TAGGING",52),6}try{w.localStorage.setItem("_gcl_ls",c)}catch(d){return vb("TAGGING",53),7}return 0};var ur={},vr=(ur.gclid=!0,ur.dclid=!0,ur.gbraid=!0,ur.wbraid=!0,ur),wr=/^\w+$/,xr=/^[\w-]+$/,yr={},zr=(yr.aw="FPGCLAW",yr),Ar={},Br=(Ar.ag="_ag",Ar.gb="_gb",Ar.aw="_aw",Ar.dc="_dc",Ar.gf="_gf",Ar.ha="_ha",Ar.gp="_gp",Ar.gs="_gs",Ar),Cr=/^(?:www\.)?google(?:\.com?)?(?:\.[a-z]{2}t?)?$/,Dr=/^www\.googleadservices\.com$/;function Er(){return["ad_storage","ad_user_data"]}function Fr(a){return!$f(5)||Im(a)}function Gr(a,b){function c(){var d=Fr(b);d&&a();return d}Om(function(){c()||Pm(c,b)},b)} -function Hr(a){return Ir(a).map(function(b){return b.gclid})}function Jr(a){return Kr(a).filter(function(b){return b.gclid}).map(function(b){return b.gclid})}function Kr(a,b){b=b===void 0?!1:b;var c=Mr(a.prefix),d=Nr("gb",c),e=Nr("ag",c);if(!e||!d)return[];var f=function(l){return function(n){n.Eg=l;return n}},g=Ir(d,b).map(f("gb")),h=Or(e).map(f("ag"));return g.concat(h).sort(function(l,n){return n.timestamp-l.timestamp})} -function Pr(a,b,c,d,e){var f=Fb(a,function(g){return g.gclid===b});f?(f.timestamp200)n=!1;else{var p=kr(l),q;if(p)c:{var r=p;if(r&&r.length!==0){var t=0;try{for(var u=10;t>3===16382){if(H!== -0)break;var G=lr(r,D);if(G===void 0)break;q=m(G).next().value===1;break c}var J;d:{var S=void 0,V=r,da=D;switch(H){case 0:J=(S=lr(V,da))==null?void 0:S[1];break d;case 1:J=da+8;break d;case 2:var pa=lr(V,da);if(pa===void 0)break;var ka=m(pa),na=ka.next().value;J=ka.next().value+na;break d;case 5:J=da+4;break d}J=void 0}if(J===void 0||J>r.length||J<=t)break;t=J}}catch(ia){}}q=!1}else q=!1;n=q}if(n){c=l;break a}}}c=void 0}var ba=c;ba&&ns("gcl_aw",ba,7,a)}} -function ns(a,b,c,d){os(a,[{version:"",gclid:b,timestamp:Qb(),qa:Yr(c)}],d)} -function os(a,b,c){c=c||{};var d=Er(),e=function(){if(Fr(d)&&b.length>0){var f=Zr(a)||[];b.forEach(function(g){var h=yq(c,g.timestamp,!0);h.expires!==void 0&&Vr(f,{version:"",gclid:g.gclid,timestamp:g.timestamp,expires:Number(h.expires),qa:g.qa,labels:g.labels},!0)});f.length&&or(a,f.map(function(g){var h={value:g.gclid,creationTimeMs:g.timestamp,linkDecorationSources:g.qa?g.qa.get():0},l;if((l=g.labels)==null?0:l.length)h.labels=g.labels;return{value:h,expires:Number(g.expires)}}))}};Om(function(){Fr(d)? -e():Pm(e,d)},d)} -function js(a,b,c,d,e){c=c||{};e=e||[];var f=Mr(c.prefix),g=d||Qb(),h=Math.round(g/1E3),l=Er(),n=!1,p=!1,q=$f(10),r=function(){if(Fr(l)){var t=yq(c,g,!0);t.Ic=l;for(var u=function(V,da){var pa=Nr(V,f);pa&&(sq(pa,da,t),V!=="gb"&&(n=!0))},v=function(V){var da=["GCL",h,V];e.length>0&&da.push(e.join("."));return da.join(".")},x=m(["aw","dc","gf","ha","gp"]),y=x.next();!y.done;y=x.next()){var z=y.value;a[z]&&u(z,v(a[z][0]))}if((!n||q)&&a.gb){var C=a.gb[0],D=Nr("gb",f);!b&&Ir(D).some(function(V){return V.gclid===C&& -V.labels&&V.labels.length>0})||u("gb",v(C))}}if(!p&&a.gbraid&&Fr("ad_storage")&&(p=!0,!n||q)){var H=a.gbraid,G=Nr("ag",f);if(b||!Or(G).some(function(V){return V.gclid===H&&V.labels&&V.labels.length>0})){var J={},S=(J.k=H,J.i=""+h,J.b=e,J);Eq(G,S,5,c,g)}}ps(a,f,g,c)};Om(function(){r();Fr(l)||Pm(r,l)},l)} -function ps(a,b,c,d){if(a.gad_source!==void 0&&Fr("ad_storage")){var e=wd();if(e!=="r"&&e!=="h"){var f=a.gad_source,g=Nr("gs",b);if(g){var h=Math.floor((Qb()-(vd()||0))/1E3),l,n=mr(),p={};l=(p.k=f,p.i=""+h,p.u=n,p);Eq(g,l,5,d,c)}}}}function qs(a,b,c){for(var d=Aq(b,c),e=0;ea)return!0;return!1} -function rs(a){var b=ss,c=ts(a.prefix);Gr(function(){for(var d=Mr(a.prefix),e=m(b),f=e.next();!f.done;f=e.next()){var g=f.value,h=c[g];if(h){var l=Math.min(us(h),Qb()),n=yq(a,l,!0);n.Ic=Er();var p=Nr(g,d);p&&sq(p,h,n)}}var q=Yq(!0);js(es(q.gclid,q.gclsrc),!1,a)},Er())} -function ts(a){var b=Yq(!0),c=Mr(a),d={},e;for(e in Br)if(Br.hasOwnProperty(e)){var f=e,g=Nr(f,c);if(g!==void 0){var h=b[g];if(h){var l=us(h),n;a:{for(var p=Math.min(l,Qb())||Qb(),q=gq(g,A.cookie,void 0,Er()),r=0;rp){n=!0;break a}n=!1}n||(d[f]=h)}}}return d} -function vs(a){var b=["ag"],c=Yq(!0),d=Mr(a.prefix);Gr(function(){for(var e=0;e=p&&(p=v,n=t)}}n&&(f[h]=n)}}}return f};Gr(function(){er(e,a,b,c)},Er())}} -function ys(a,b,c,d){if(Array.isArray(a)&&Pp(w)){var e=["ag"],f=Mr(d),g=function(){for(var h={},l=0;lb};var Ls=RegExp("^UA-\\d+-\\d+%3A[\\w-]+(?:%2C[\\w-]+)*(?:%3BUA-\\d+-\\d+%3A[\\w-]+(?:%2C[\\w-]+)*)*$"),Ms=/^~?[\w-]+(?:\.~?[\w-]+)*$/,Ns=/^\d+\.fls\.doubleclick\.net$/,Os=/;gac=([^;?]+)/,Ps=/;gacgb=([^;?]+)/; -function Qs(a,b){if(Ns.test(A.location.host)){var c=A.location.href.match(b);return c&&c.length===2&&c[1].match(Ls)?gj(c[1])||"":""}for(var d=[],e=m(Object.keys(a)),f=e.next();!f.done;f=e.next()){for(var g=f.value,h=[],l=a[g],n=0;n0?d.join(";"):""} -function Rs(a,b,c){for(var d=Fr(Er())?Op("_gac_gb",!0):{},e=[],f=!1,g=m(Object.keys(d)),h=g.next();!h.done;h=g.next()){var l=h.value,n=Gs("_gac_gb_"+l,a,b,c);f=f||n.length!==0&&n.some(function(p){return p===1});e.push(l+":"+n.join(","))}return{ks:f?e.join(";"):"",hs:Qs(d,Ps)}}function Ss(a){var b=A.location.href.match(new RegExp(";"+a+"=([^;?]+)"));return b&&b.length===2&&b[1].match(Ms)?b[1]:void 0} -function Ts(a){var b={},c,d,e;Ns.test(A.location.host)&&(c=Ss("gclgs"),d=Ss("gclst"),e=Ss("gcllp"));if(c&&d&&e)b.Kg=c,b.fi=d,b.di=e;else{var f=Qb(),g=Rr((a||"_gcl")+"_gs"),h=g.map(function(p){return p.gclid}),l=g.map(function(p){return f-p.timestamp}),n=g.map(function(p){return p.jd});h.length>0&&l.length>0&&n.length>0&&(b.Kg=h.join("."),b.fi=l.join("."),b.di=n.join("."))}return b} -function Us(a,b){var c=a.split("."),d=b?b.split("."):[],e=d.length===c.length?d:void 0;return c.map(function(f,g){var h={gclid:f};if(e){var l=e[g].split("_");if(l.length===2){h.qa=new ir(Number(l[0]));var n;var p=Number(l[1]);if(p===0)n=[0];else{var q=[];p&1&&q.push(1);p&2&&q.push(2);p&4&&q.push(3);p&8&&q.push(4);p&16&&q.push(5);n=q}h.oa=n}}return h})} -function Vs(a,b,c,d){d=d===void 0?!1:d;if(Ns.test(A.location.host)){var e=Ss(c);if(e){if($f(18)){var f=Ss(c+"_src");return Us(e,f)}if(d){var g=new ir;jr(g,2);jr(g,3);return e.split(".").map(function(r){return{gclid:r,qa:g,oa:[1]}})}return e.split(".").map(function(r){return{gclid:r,qa:new ir,oa:[1]}})}}else{if(b==="gclid"){for(var h=Ir((a||"_gcl")+"_aw",d),l=Number(Zf[4]===void 0?0:Zf[4]),n=m(Ws()),p=n.next();!p.done;p=n.next()){var q=p.value;q.timestamp>l&&Vr(h,q)}return h}if(b==="wbraid")return Ir((a|| -"_gcl")+"_gb",d);if(b==="braids")return Kr({prefix:a},d)}return[]}function Ws(){return(Aq(zr.aw,4)||[]).filter(function(a){return a.m==="1"}).map(function(a){return{gclid:a.k,timestamp:Number(a.i),version:"",oa:[5]}})}function Xs(a){for(var b=0,c=m(a),d=c.next();!d.done;d=c.next()){var e=d.value;e>0&&(b|=1<0)return f?["0"]:g}var h=Nr(a,e);return h?Hr(h):[]},ht=function(a,b,c){if(!ip(a,b)||!ip(a,c))return"";var d=ip(a,b).split("."),e=ip(a,c).split(".");return d.length&&e.length&&d.length===e.length&&d[0]&&e[0]?d.map(function(f,g){return f+"_"+e[g]}).join("."):""},bt=/^gad_source[_=](\d+)$/;function it(a,b,c){var d=ip(a,F.D.Va);if(d&&typeof d==="object")for(var e=m(Object.keys(d)),f=e.next();!f.done;f=e.next()){var g=f.value,h=d[g];if(h!==void 0){h===null&&(h="");var l="gap."+g,n=String(h);c?c(l,n):b[l]=n}}};var jt=!1,kt=[];function lt(){if(!jt){jt=!0;for(var a=kt.length-1;a>=0;a--)kt[a]();kt=[]}};function mt(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b};function nt(a,b,c){return typeof a.addEventListener==="function"?(a.addEventListener(b,c,!1),!0):!1}function ot(a,b,c){typeof a.removeEventListener==="function"&&a.removeEventListener(b,c,!1)};function pt(a,b,c,d){d=d===void 0?!1:d;a.google_image_requests||(a.google_image_requests=[]);var e=Mp(a.document);if(c){var f=function(){if(c){var g=a.google_image_requests,h=Jc(g,e);h>=0&&Array.prototype.splice.call(g,h,1)}ot(e,"load",f);ot(e,"error",f)};nt(e,"load",f);nt(e,"error",f)}d&&(e.attributionSrc="");e.src=b;a.google_image_requests.push(e)} -function qt(a){var b;b=b===void 0?!1:b;var c="https://pagead2.googlesyndication.com/pagead/gen_204?id=tcfe";Fp(a,function(d,e){if(d||d===0)c+="&"+e+"="+encodeURIComponent(String(d))});rt(c,b)} -function rt(a,b){var c=window,d;b=b===void 0?!1:b;d=d===void 0?!1:d;if(c.fetch){var e={keepalive:!0,credentials:"include",redirect:"follow",method:"get",mode:"no-cors"};d&&(e.mode="cors","setAttributionReporting"in XMLHttpRequest.prototype?e.attributionReporting={eventSourceEligible:"true",triggerEligible:"false"}:e.headers={"Attribution-Reporting-Eligible":"event-source"});c.fetch(a,e)}else pt(c,a,b===void 0?!1:b,d===void 0?!1:d)};function st(){this.ia=this.ia;this.T=this.T}st.prototype.ia=!1;st.prototype.dispose=function(){this.ia||(this.ia=!0,this.O())};st.prototype[Symbol.dispose]=function(){this.dispose()};st.prototype.addOnDisposeCallback=function(a,b){this.ia?b!==void 0?a.call(b):a():(this.T||(this.T=[]),b&&(a=a.bind(b)),this.T.push(a))};st.prototype.O=function(){if(this.T)for(;this.T.length;)this.T.shift()()};function tt(a){a.addtlConsent===void 0||yf(a.addtlConsent)||(a.addtlConsent=void 0);a.gdprApplies===void 0||zf(a.gdprApplies)||(a.gdprApplies=void 0);return a.tcString!==void 0&&!yf(a.tcString)||a.listenerId!==void 0&&!xf(a.listenerId)?2:a.cmpStatus&&a.cmpStatus!=="error"?0:3}var ut=function(a,b){b=b===void 0?{}:b;st.call(this);this.H=null;this.ma={};this.Da=0;this.Z=null;this.K=a;var c;this.timeoutMs=(c=b.timeoutMs)!=null?c:500;var d;this.Nj=(d=b.Nj)!=null?d:!1};wa(ut,st); -ut.prototype.O=function(){this.ma={};this.Z&&(ot(this.K,"message",this.Z),delete this.Z);delete this.ma;delete this.K;delete this.H;st.prototype.O.call(this)};var wt=function(a){return typeof a.K.__tcfapi==="function"||vt(a)!=null}; -ut.prototype.addEventListener=function(a){var b=this,c={internalBlockOnErrors:this.Nj},d=Ep(function(){a(c)}),e=0;this.timeoutMs!==-1&&(e=setTimeout(function(){c.tcString="tcunavailable";c.internalErrorState=1;d()},this.timeoutMs));var f=function(g,h){clearTimeout(e);g?(c=g,c.internalErrorState=tt(c),c.internalBlockOnErrors=b.Nj,h&&c.internalErrorState===0||(c.tcString="tcunavailable",h||(c.internalErrorState=3))):(c.tcString="tcunavailable",c.internalErrorState=3);a(c)};try{xt(this,"addEventListener", -f)}catch(g){c.tcString="tcunavailable",c.internalErrorState=3,e&&(clearTimeout(e),e=0),d()}};ut.prototype.removeEventListener=function(a){a&&a.listenerId&&xt(this,"removeEventListener",null,a.listenerId)}; -var At=function(a,b,c){var d;d=d===void 0?"755":d;var e;a:{if(a.publisher&&a.publisher.restrictions){var f=a.publisher.restrictions[b];if(f!==void 0){e=f[d===void 0?"755":d];break a}}e=void 0}var g=e;if(g===0)return!1;var h=c;c===2?(h=0,g===2&&(h=1)):c===3&&(h=1,g===1&&(h=0));var l;if(h===0)if(a.purpose&&a.vendor){var n=zt(a.vendor.consents,d===void 0?"755":d);l=n&&b==="1"&&a.purposeOneTreatment&&a.publisherCC==="CH"?!0:n&&zt(a.purpose.consents,b)}else l=!0;else l=h===1?a.purpose&&a.vendor?zt(a.purpose.legitimateInterests, -b)&&zt(a.vendor.legitimateInterests,d===void 0?"755":d):!0:!0;return l},zt=function(a,b){return!(!a||!a[b])},xt=function(a,b,c,d){c||(c=function(){});var e=a.K;if(typeof e.__tcfapi==="function"){var f=e.__tcfapi;f(b,2,c,d)}else if(vt(a)){Bt(a);var g=++a.Da;a.ma[g]=c;if(a.H){var h={};a.H.postMessage((h.__tcfapiCall={command:b,version:2,callId:g,parameter:d},h),"*")}}else c({},!1)},vt=function(a){if(a.H)return a.H;a.H=Kp(a.K,"__tcfapiLocator");return a.H},Bt=function(a){if(!a.Z){var b=function(c){if(c.source=== -a.H)try{var d;d=(yf(c.data)?JSON.parse(c.data):c.data).__tcfapiReturn;a.ma[d.callId](d.returnValue,d.success)}catch(e){}};a.Z=b;nt(a.K,"message",b)}},Ct=function(a){if(a.gdprApplies===!1)return!0;a.internalErrorState===void 0&&(a.internalErrorState=tt(a));return a.cmpStatus==="error"||a.internalErrorState!==0?a.internalBlockOnErrors?(qt({e:String(a.internalErrorState)}),!1):!0:a.cmpStatus!=="loaded"||a.eventStatus!=="tcloaded"&&a.eventStatus!=="useractioncomplete"?!1:!0};var Dt={1:0,3:0,4:0,7:3,9:3,10:3};function Et(){return $n("tcf",function(){return{}})}var Ft=function(){return new ut(w,{timeoutMs:-1})}; -function Gt(){var a=Et(),b=Ft();wt(b)&&!Ht()&&!It()&&R(124);if(!a.active&&wt(b)){Ht()&&(a.active=!0,a.purposes={},a.cmpId=0,a.tcfPolicyVersion=0,Am().active=!0,a.tcString="tcunavailable");dp();try{b.addEventListener(function(c){if(c.internalErrorState!==0)Jt(a),ep([F.D.ja,F.D.Ta,F.D.ka]),Am().active=!0;else if(a.gdprApplies=c.gdprApplies,a.cmpId=c.cmpId,a.enableAdvertiserConsentMode=c.enableAdvertiserConsentMode,It()&&(a.active=!0),!Kt(c)||Ht()||It()){a.tcfPolicyVersion=c.tcfPolicyVersion;var d;if(c.gdprApplies=== -!1){var e={},f;for(f in Dt)Dt.hasOwnProperty(f)&&(e[f]=!0);d=e;b.removeEventListener(c)}else if(Kt(c)){var g={},h;for(h in Dt)if(Dt.hasOwnProperty(h))if(h==="1"){var l,n=c,p={qs:!0};p=p===void 0?{}:p;l=Ct(n)?n.gdprApplies===!1?!0:n.tcString==="tcunavailable"?!p.idpcApplies:(p.idpcApplies||n.gdprApplies!==void 0||p.qs)&&(p.idpcApplies||yf(n.tcString)&&n.tcString.length)?At(n,"1",0):!0:!1;g["1"]=l}else g[h]=At(c,h,Dt[h]);d=g}if(d){a.tcString=c.tcString||"tcempty";a.purposes=d;var q={},r=(q[F.D.ja]= -a.purposes["1"]?"granted":"denied",q);a.gdprApplies!==!0?(ep([F.D.ja,F.D.Ta,F.D.ka]),Am().active=!0):(r[F.D.Ta]=a.purposes["3"]&&a.purposes["4"]?"granted":"denied",typeof a.tcfPolicyVersion==="number"&&a.tcfPolicyVersion>=4?r[F.D.ka]=a.purposes["1"]&&a.purposes["7"]?"granted":"denied":ep([F.D.ka]),Wo(r,{eventId:0},{gdprApplies:a?a.gdprApplies:void 0,tcString:Lt()||""}))}}else ep([F.D.ja,F.D.Ta,F.D.ka])})}catch(c){Jt(a),ep([F.D.ja,F.D.Ta,F.D.ka]),Am().active=!0}}} -function Jt(a){a.type="e";a.tcString="tcunavailable"}function Kt(a){return a.eventStatus==="tcloaded"||a.eventStatus==="useractioncomplete"||a.eventStatus==="cmpuishown"}function Ht(){return w.gtag_enable_tcf_support===!0}function It(){return Et().enableAdvertiserConsentMode===!0}function Lt(){var a=Et();if(a.active)return a.tcString}function Mt(){var a=Et();if(a.active&&a.gdprApplies!==void 0)return a.gdprApplies?"1":"0"} -function Nt(a){if(!Dt.hasOwnProperty(String(a)))return!0;var b=Et();return b.active&&b.purposes?!!b.purposes[String(a)]:!0};var Ot=[F.D.ja,F.D.sa,F.D.ka,F.D.Ta],Pt={},Qt=(Pt[F.D.ja]=1,Pt[F.D.sa]=2,Pt);function Rt(a){if(a===void 0)return 0;switch(Q(a,F.D.Nc)){case void 0:return 1;case !1:return 3;default:return 2}}function St(){return(P(183)?Nf(16).split("~"):Nf(17).split("~")).indexOf(lk())!==-1&&Nc.globalPrivacyControl===!0}function Tt(a){if(St())return!1;var b=Rt(a);if(b===3)return!1;switch(Jm(F.D.Ta)){case 1:case 3:return!0;case 2:return!1;case 4:return b===2;case 0:return!0;default:return!1}} -function Ut(){return Lm()||!Im(F.D.ja)||!Im(F.D.sa)}function Vt(){var a={},b;for(b in Qt)Qt.hasOwnProperty(b)&&(a[Qt[b]]=Jm(b));return"G1"+Bf(a[1]||0)+Bf(a[2]||0)}var Wt={},Xt=(Wt[F.D.ja]=0,Wt[F.D.sa]=1,Wt[F.D.ka]=2,Wt[F.D.Ta]=3,Wt);function Yt(a){switch(a){case void 0:return 1;case !0:return 3;case !1:return 2;default:return 0}} -function Zt(a){for(var b="1",c=0;c=0&&c<=4095&&(a="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[c>>6&63],b="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[c&63]);var e="0",f;var g=Et();f=g.active?g.tcfPolicyVersion:void 0;typeof f==="number"&&f>=0&&f<=63&&(e="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[f]);var h=0;nk()&&(h|=1);Mt()==="1"&&(h|=2);Ht()&&(h|=4);var l;var n=Et();l=n.enableAdvertiserConsentMode!== -void 0?n.enableAdvertiserConsentMode?"1":"0":void 0;l==="1"&&(h|=8);Am().waitPeriodTimedOut&&(h|=16);return"1"+a+b+e+"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[h]};var du={UA:1,AW:2,DC:3,G:4,GF:5,GT:12,GTM:14,HA:6,MC:7}; -function eu(a){a=a===void 0?{}:a;var b=E(5).split("-")[0].toUpperCase(),c,d={ctid:E(5),Oo:Lf(15),So:E(14),Ws:Kf(7)?2:1,Nt:a.pe,canonicalId:E(6),Et:(c=jm())==null?void 0:c.canonicalContainerId,Ot:a.ah===void 0?void 0:a.ah?10:12};d.canonicalId!==a.ac&&(d.ac=a.ac);var e=gm();d.kt=e?e.canonicalContainerId:void 0;Kf(45)?(d.ri=du[b],d.ri||(d.ri=0)):d.ri=$i?13:10;Kf(47)?(d.nk=0,d.Fr=2):Kf(50)?d.nk=1:d.nk=3;var f=a,g={6:!1};Lf(54)===2?g[7]=!0:Lf(54)===1&&(g[2]=!0);if(Qc){var h=hj(nj(Qc),"host");h&&(g[8]= -h.match(/^(www\.)?googletagmanager\.com$/)===null)}var l;g[9]=(l=f.cf)!=null?l:!1;var n=om(),p;g[10]=(p=n==null?void 0:n.fromContainerExecution)!=null?p:!1;d.Mr=g;return Ef(d,a.Yn)}; -var iu=function(a){var b=fu(a);if(b.length){var c=gu(a).eo,d=hu(c)||"";return b.map(function(e){var f=hu(e);return""+d+(d&&f?";":"")+f})}},fu=function(a){for(var b=ju(a),c={},d=m(b),e=d.next();!e.done;e=d.next()){var f=e.value,g=void 0;if(f.hasOwnProperty("google_business_vertical")){g=f.google_business_vertical;var h={};c[g]=c[g]||(h.google_business_vertical=g,h)}else g="",c.hasOwnProperty(g)||(c[g]={});var l=c[g],n;for(n in f)n!=="google_business_vertical"&&(n in l||(l[n]=[]),l[n].push(f[n]))}return Object.keys(c).map(function(p){return c[p]})}, -ju=function(a){var b=ip(a,F.D.Ga);return b&&b.length?b.filter(function(c){return!!c}).map(function(c){var d={};return d.id=ji(c),d.origin=c.origin,d.destination=c.destination,d.start_date=c.start_date,d.end_date=c.end_date,d.location_id=c.location_id,d.google_business_vertical=c.google_business_vertical,d}):[]},ji=function(a){a.item_id!=null&&(a.id!=null?(R(138),a.id!==a.item_id&&R(148)):R(153));return ki(a)},hu=function(a){if(a&&typeof a==="object"&&!Array.isArray(a))return Object.keys(a).map(function(b){var c= -ku(b);if(c){var d=a[b],e=Array.isArray(d)?lu(d):ku(d);if(e!==void 0)return c+"="+e}}).filter(function(b){return b!==void 0}).join(";")},lu=function(a){var b=a.map(ku).filter(function(c){return c!==void 0});return b.length?b.join(","):void 0},ku=function(a){if(a!=null){var b=typeof a;if(b!=="object"&&b!=="function")return String(a).replace(/,/g,"\\,").replace(/;/g,"\\;").replace(/=/g,"\\=")}},mu=function(a){return Object.keys(a).map(function(b){var c=a[b];if(c!=null&&(c!==""||Ag[b]))return c===!0|| -c===!1?b+"="+(c?1:0):b+"="+encodeURIComponent(c)}).filter(function(b){return!!b}).join("&")},nu=function(a){var b=U(a,I.J.ba),c={},d=U(a,I.J.sb);if(b===T.U.ra||b===T.U.tb||b===T.U.Td||b===T.U.ud||b===T.U.xc)c.random=""+d;b===T.U.ra||b===T.U.tb||b===T.U.ud||b===T.U.xc?(c.cv="11",c.fst=""+d,c.fmt="3",c.bg="ffffff",c.guid="ON",c.async="1",c.en=a.eventName):b===T.U.Td&&(c.cv="11",c.tid=a.target.destinationId,c.fst=""+d,c.fmt="8",c.en=a.eventName);var e=Ds(["aw","dc"]);e!=null&&(c.gad_source=e);c.gtm= -eu({ac:U(a,I.J.Jb),ah:a.M.isGtmEvent,cf:U(a,I.J.yc)});b!==T.U.tb&&Ut()&&(c.gcs=Vt());c.gcd=Zt(a.M);bu()&&(c.dma_cps=$t());c.dma=au();wt(Ft())&&(c.tcfd=cu());var f=xp(a);f&&(c.tag_exp=f);Rm.H[zm.fa.Xa]!==ym.La.Re||Rm.K[zm.fa.Xa].isConsentGranted()||(c.limited_ads="1");ip(a,F.D.Xc)&&gi(ip(a,F.D.Xc),c);if(ip(a,F.D.rb)){var g=ip(a,F.D.rb);g&&(g.length===2?hi(c,"hl",g):g.length===5&&(hi(c,"hl",g.substring(0,2)),hi(c,"gl",g.substring(3,5))))}var h=U(a,I.J.Ve),l=function(H,G){var J=ip(a,G);J&&(c[H]=h?at(J): -J)};l("url",F.D.Ca);l("ref",F.D.Za);l("top",F.D.dg);var n=ht(a,F.D.wd,F.D.xd);n&&(c.gclaw_src=n);var p=ht(a,F.D.mh,F.D.nh);p&&(c.gclgb_src=p);var q=function(H,G){for(var J=m(Object.keys(H)),S=J.next();!S.done;S=J.next()){var V=S.value;fi[V]&&typeof H[V]==="string"&&(G["ext."+fi[V]]=H[V])}},r=ip(a,F.D.Sc);r&&q(r,c);var t=gu(a),u=t.eo;oa(Object,"assign").call(Object,c,t.ee);yp(c,ip(a,F.D.Zc));var v=ip(a,F.D.Me);v!==void 0&&v!==""&&(c.vdnc=String(v));var x=ip(a,F.D.Gd);x!==void 0&&(c.shf=x);var y=ip(a, -F.D.Pc);y!==void 0&&(c.delc=y);if(b!==T.U.Td){var z=hu(u);z&&(c.data=z)}var C=ip(a,F.D.Ga);if(C&&(b===T.U.ra||b===T.U.Td||b===T.U.xc||b===T.U.ud)){var D=oi(C);D!==void 0&&(c.iedeld=D);c.item=ii(C)}it(a,c);kp(a,c);U(a,I.J.rg)&&(c.aecs="1");b!==T.U.ra||U(a,I.J.Ac)||U(a,I.J.Ha)||(c.category="acrcp_v1_512");return c},gu=function(a){for(var b={},c={},d=m(ou(a)),e=d.next();!e.done;e=d.next()){var f=e.value,g=ip(a,f);if(g!==void 0)if(Wb(f,"_&"))b[f.substring(2)]=g;else if(fi.hasOwnProperty(f)){var h=fi[f]; -h&&(f!==F.D.Id&&f!==F.D.Hd||P(504)?b[h]=g:c[f]=g)}else c[f]=g}return{ee:b,eo:c}};var pu={Ug:"value",mb:"conversionCount",Vg:1},qu={Ug:"timeouts",mb:"timeouts",Vg:0},ru={Ug:"eopCount",mb:"endOfPageCount",Vg:0},su={Ug:"errors",mb:"errors",Vg:0},tu=[pu,qu,su,ru];function uu(a,b){b=b===void 0?1:b;if(!vu(a))return{};var c=wu(tu),d=c[a.mb];if(d===void 0||d===-1)return c;var e={},f=oa(Object,"assign").call(Object,{},c,(e[a.mb]=d+b,e));return xu(f)?f:c} -function wu(a){var b;a:{var c=rr("gcl_ctr");if(c.error===0&&c.value&&typeof c.value==="object"){var d=c.value;try{b="value"in d&&typeof d.value==="object"?d.value:void 0;break a}catch(p){}}b=void 0}for(var e=b,f={},g=m(a),h=g.next();!h.done;h=g.next()){var l=h.value;if(e&&vu(l)){var n=e[l.Ug];n===void 0||Number.isNaN(n)?f[l.mb]=-1:f[l.mb]=Number(n)}else f[l.mb]=-1}return f} -function xu(a,b){b=b||{};for(var c=Qb(),d=yq(b,c,!0),e={},f=m(tu),g=f.next();!g.done;g=f.next()){var h=g.value,l=a[h.mb];l!==void 0&&l!==-1&&(e[h.Ug]=l)}e.creationTimeMs=c;return or("gcl_ctr",{value:e,expires:Number(d.expires)})===0?!0:!1}function vu(a){return Im(["ad_storage","ad_user_data"])?!a.zt||$f(a.zt):!1}function yu(a){return Im(["ad_storage","ad_user_data"])?!a.Ms||$f(a.Ms):!1};function zu(){if(Au()){var a=rr("last_convs");if(a.error===0&&a.value&&typeof a.value==="object"){var b=a.value;if(b.value&&Array.isArray(b.value)){var c=b.value;if(!(c.length>1)){for(var d=[],e=m(c),f=e.next();!f.done;f=e.next()){var g=f.value;if(typeof g!=="object"||g===null||typeof g.random!=="number"||typeof g.label!=="string"||g.label.length>200)return;d.push({random:g.random,label:g.label})}return d}}}}} -function Bu(a,b){!Au()||a.length>1||a.length===1&&a[0].label.length>200||(b=b||{},or("last_convs",{value:a,expires:Number(yq(b).expires)}))}function Au(){return Im(["ad_storage","ad_user_data"])&&$f(12)};function Cu(a){var b=Math.round(Math.random()*2147483647);return a?String(b^pg(a)&2147483647):String(b)}function Du(a){return[Cu(a),Math.round(Qb()/1E3)].join(".")}function Eu(a,b,c,d,e){var f=vq(b),g;return(g=kq(a,f,wq(c),d,e))==null?void 0:g.Pr};var Fu=["1"],Gu={},Hu={};function Iu(a){return Hu[Ju(a)]}function Ku(a,b){b=b===void 0?!0:b;var c=Ju(a.prefix);if(Gu[c])Lu(a),Mu(a);else if(Nu(c,a.path,a.domain)){var d=Iu(a.prefix)||{id:void 0,Zb:void 0};b&&Ou(a,d);Lu(a);Mu(a)}else{var e=pj("auiddc");if(e)vb("TAGGING",17),Gu[c]=e;else if(b){var f=Ju(a.prefix),g=Du();Pu(f,g,a);Nu(c,a.path,a.domain);Lu(a,!0);Mu(a,!0)}}} -function Lu(a,b){(b===void 0?0:b)&&vu(pu)&&sr("gcl_ctr");if(yu(pu)&&wu([pu])[pu.mb]===-1){for(var c={},d=(c[pu.mb]=0,c),e=m(tu),f=e.next();!f.done;f=e.next()){var g=f.value;g!==pu&&yu(g)&&(d[g.mb]=0)}xu(d,a)}}function Mu(a,b){(b===void 0?0:b)&&Au()&&sr("last_convs");!Im(["ad_storage","ad_user_data"])||!$f(13)||zu()||Bu([],a)} -function Ou(a,b){var c=Ju(a.prefix),d=Gu[c];if(d){var e=d.split(".");if(e.length===2){var f=Number(e[1])||0;if(f){var g=d;$f(20)&&b.mi?g=d+"."+(b.sessionId||"-.-")+"."+(b.Zb?b.Zb:Math.floor(Qb()/1E3))+"."+b.mi+"."+(b.Hc?b.Hc:Math.floor(Qb()/1E3)):b.sessionId&&(g=d+"."+b.sessionId+"."+(b.Zb?b.Zb:Math.floor(Qb()/1E3)));Pu(c,g,a,f*1E3)}}}}function Pu(a,b,c,d){var e;e=["1",xq(c.domain,c.path),b].join(".");var f=yq(c,d);f.Ic=Qu();sq(a,e,f)} -function Nu(a,b,c){var d=Eu(a,b,c,Fu,Qu());if(!d)return!1;Ru(a,d);return!0}function Ru(a,b){var c=b.split(".");if(c.length===3)Hu[a]={sessionId:c[0]+"."+c[1],Zb:Number(c[2])||0,Hc:0};else if(c.length>=2&&(Gu[a]=c[0]+"."+c[1],c.shift(),c.shift(),c.length>=3)){var d={sessionId:c[0]==="-"?void 0:c[0]+"."+c[1],Zb:Number(c[2])||0,Hc:0};if($f(20)&&c.length>=6){var e=c[3]+"."+c[4],f=Number(c[5])||0;e&&f!==0&&(d.mi=e,d.Hc=f)}Hu[a]=d}}function Ju(a){return(a||"_gcl")+"_au"} -function Su(a){function b(){Im(c)&&a()}var c=Qu();Om(function(){b();Im(c)||Pm(b,c)},c)}function Tu(a){var b=Yq(!0),c=Ju(a.prefix);Su(function(){var d=b[c];if(d){Ru(c,d);var e=Number(Gu[c].split(".")[1])*1E3;if(e){vb("TAGGING",16);var f=yq(a,e);f.Ic=Qu();var g=["1",xq(a.domain,a.path),d].join(".");sq(c,g,f)}}})}function Uu(a,b,c,d,e){e=e||{};var f=function(){var g={},h=Eu(a,e.path,e.domain,Fu,Qu());h&&(g[a]=h);return g};Su(function(){er(f,b,c,d)})} -function Qu(){return["ad_storage","ad_user_data"]}; -var Wu=function(a){return Vu(a,{Xj:!0}).ai},Vu=function(a,b){a=a||{};if(!Yo(F.D.ja))return{};var c=Xu(a),d=c.ai,e=c.uk;b.Xj&&!d&&(d=Du());b.gi&&!e&&(e=Du());var f={};d&&(f.sessionId=d);e&&(f.mi=e);var g=Iu(Mr(a.prefix));g&&(b.Xj&&!b.gi?g.Hc&&(f.Hc=g.Hc):b.gi&&!b.Xj&&g.Zb&&(f.Zb=g.Zb));if(d||e){var h=a,l=Ju(h.prefix);Ou(h,f);delete Gu[l];delete Hu[l];Nu(l,h.path,h.domain)}return Xu(a)},Xu=function(a){if(!Yo(F.D.ja))return{};a=a||{};Ku(a,!1);var b=Iu(Mr(a.prefix));if(!b)return{};var c=Qb(),d={};if(c- -b.Zb*1E3<=(P(450)||P(443)?864E5:18E5)){var e=b.sessionId;if(e){var f=e.split(".");f.length===2&&c-(Number(f[1])||0)*1E3<=864E5&&(d.ai=e)}}if(b.Hc&&c-b.Hc*1E3<=864E5){var g=b.mi;if(g){var h=g.split(".");h.length===2&&c-(Number(h[1])||0)*1E3<=864E5&&(d.uk=g)}}return d};var Yu="email email_address sha256_email_address phone_number sha256_phone_number first_name last_name".split(" "),Zu="first_name sha256_first_name last_name sha256_last_name street sha256_street city region country postal_code".split(" ");function $u(a,b){if(!b._tag_metadata){for(var c={},d=0,e=0;e0&&(b._tag_metadata=c)}} -function av(a,b,c){var d=b[a];if(d===void 0||d===null)return!1;c[a]=Array.isArray(d)?d.map(function(){return{mode:"c"}}):{mode:"c"};return!0}function bv(a){if(P(523)&&a){$u(Yu,a);for(var b=Eb(a.address),c=0;c0))return!1; -var b=rv(a);return pv(b,function(){}).hasUpd},pv=function(a,b){b=b===void 0?function(){}:b;for(var c=!1,d=!1,e=m(a),f=e.next();!f.done;f=e.next()){var g=f.value;if(g.value){var h=tv[g.name];if(h){var l=uv(g);l&&(c=!0);d=!0;b(g,h,l)}}}return{hasUpd:d,hasUpdToHash:c}},uv=function(a){var b=vv(a.name),c=/^e\d+$/.test(a.value),d;if(d=b&&!c){var e=a.value;d=!(wv.test(e)||zi.test(e))}return d},vv=function(a){return xv.indexOf(a)!==-1},Dv=function(a,b,c){if(Bb(w.Promise))try{var d=rv(a),e=yv(d).then(zv); -return e}catch(g){}},Bv=function(a){var b=void 0;return b},zv=function(a){var b=P(523),c=a.md,d=["tv.1"],e=["tvd.1"],f=ov(c);if(f)return d.push(f),{param:d.join("~"),hasUpdToHash:!1,hasUpd:!1,hadError:!0,metadataParam:b?e.join("~"):void 0};var g=c.filter(function(q){return!uv(q)}), -h=0,l=pv(g,function(q,r){h++;var t=q.value,u=q.index;u!==void 0&&(r+=u);d.push(r+"."+t);if(b){var v=cv(h,r,q.metadata);v&&e.push(v)}}),n=l.hasUpdToHash,p=l.hasUpd;return{param:encodeURIComponent(d.join("~")),hasUpdToHash:n,hasUpd:p,hadError:!1,metadataParam:b?e.join("~"):void 0}},ov=function(a){if(a.length===1&&a[0].name==="error_code")return tv.error_code+"."+a[0].value},Av=function(a){if(a.length===1&&a[0].name==="error_code")return!1;for(var b=m(a),c=b.next();!c.done;c=b.next()){var d=c.value; -if(tv[d.name]&&d.value)return!0}return!1},rv=function(a){function b(t,u,v,x,y){var z=Ev(t);if(z!=="")if(zi.test(z)){y&&(y.isPreHashed=!0);var C={name:u,value:z,index:x};y&&(C.metadata=y);l.push(C)}else{var D=v(z),H={name:u,value:D,index:x};y&&(H.metadata=y,D&&(y.rawLength=String(z).length,y.normalizedLength=D.length));l.push(H)}}function c(t,u){var v=t;if(Cb(v)||Array.isArray(v)){v=Eb(t);for(var x=0;x0&&Bb(w.Promise)?rv(a).some(function(b){return b.value&&vv(b.name)&&!zi.test(b.value)}):!1},Ev=function(a){return a==null?"":Cb(a)?Ob(String(a)):"e0"},Kv=function(a){return a.replace(Nv,"")},Iv=function(a){return Jv(a.replace(/\s/g,""))},Jv=function(a){return Ob(a.replace(Ov,"").toLowerCase())},Hv=function(a){a=a.replace(/[\s-()/.]/g,"");a.charAt(0)!=="+"&& -(a="+"+a);return Pv.test(a)?a:"e0"},Gv=function(a){var b=a.toLowerCase().split("@");if(b.length===2){var c=b[0];/^(gmail|googlemail)\./.test(b[1])&&(c=c.replace(/\./g,""));c=c+"@"+b[1];if(Qv.test(c))return c}return"e0"},Rv=function(a){try{return a.forEach(function(b){b.value&&vv(b.name)&&(b.value=Ei(b.value))}),{md:a}}catch(b){return{md:[]}}},yv=function(a){return a.some(function(b){return b.value&&vv(b.name)})?Bb(w.Promise)?Promise.all(a.map(function(b){return b.value&&vv(b.name)?Bi(b.value).then(function(c){b.value= -c}):Promise.resolve()})).then(function(){return{md:a}}).catch(function(){return{md:[]}}):{then:function(b){b({md:[]})}}:Promise.resolve({md:a})},Ov=/[0-9`~!@#$%^&*()_\-+=:;<>,.?|/\\[\]]/g,Qv=/^\S+@\S+\.\S+$/,Pv=/^\+\d{10,15}$/,Nv=/[.~]/g,wv=/^[0-9A-Za-z_-]{43}$/,Sv={},tv=(Sv.email="em",Sv.phone_number="pn",Sv.first_name="fn",Sv.last_name="ln",Sv.street="sa",Sv.city="ct",Sv.region="rg",Sv.country="co",Sv.postal_code="pc",Sv.error_code="ec",Sv),Tv={},Fv=(Tv.email="sha256_email_address",Tv.phone_number= -"sha256_phone_number",Tv.first_name="sha256_first_name",Tv.last_name="sha256_last_name",Tv.street="sha256_street",Tv);var xv=Object.freeze(["email","phone_number","first_name","last_name","street"]); -var Xv=function(a,b){var c=nu(a),d=function(p){var q=xp(a);q&&(c.tag_exp=q);b(p)},e=U(a,I.J.ba),f=U(a,I.J.cb),g=Yo([F.D.ka,F.D.ja]),h;a:switch(e){case T.U.ra:case T.U.ud:case T.U.xc:case T.U.Bb:case T.U.Cb:h=!0;break a;default:h=!1}if(h&&f&&g)if(U(a,I.J.bd))if(Uv(a))d(c);else{var l=Dv(f,!0);Vv(l,a,c,d)}else{var n;a:{try{n=zv(Rv(rv(f)));break a}catch(p){}n=void 0}if(n)try{Wv(c,a)(n)}catch(p){}d(c)}else delete c.ec_mode,d(c)},Uv=function(a){var b=U(a,I.J.ba);return b===T.U.Cb||b===T.U.Bb},Yv=function(a, -b){return a!==1||U(b,I.J.ba)===T.U.Bb&&!P(445)?!1:!!U(b,I.J.bd)},Wv=function(a,b){return function(c){Yv(c.encryptionResult?1:0,b)||(a.em=c.param);if(c.hasUpd){var d=Zv(b);d&&(a.ecsid=d)}P(523)&&c.metadataParam&&(a.emd=c.metadataParam);}},Zv=function(a){if(U(a,I.J.ba)===T.U.Cb&&!P(443)){var b=U(a,I.J.Fa);return U(a,I.J.Hj)||Wu(b)}},Vv=function(a,b,c,d){if(a)try{a.then(Wv(c, -b)).then(function(){d(c)});return}catch(e){}d(c)};var $v=function(a){this.methodName=a};$v.prototype.getName=function(){return this.methodName};$v.prototype.sendRequest=function(a,b,c){if(this.isSupported())if((c==null?void 0:c.body)===void 0||this.H())try{this.K(a,b,c)}catch(d){a.ld(d)}else a.ld("Request method "+this.getName()+" does not support a request body.");else a.ld("Request method "+this.getName()+" is not supported.")};var aw=function(){this.methodName="ImagePixel"};wa(aw,$v);aw.prototype.isSupported=function(){return!0}; -aw.prototype.H=function(){return!1};aw.prototype.K=function(a,b,c){Nl(a.nf,b,function(){a.hf()},function(){a.onFailure(void 0)},c==null?void 0:c.Xe)};var bw=function(){this.methodName="SendBeacon"};wa(bw,$v);bw.prototype.isSupported=function(){return pd()};bw.prototype.H=function(){return!0};bw.prototype.K=function(a,b,c){Ml(a.nf,b,c==null?void 0:c.body)?a.hf():a.ld(void 0)};var cw=function(){this.methodName="Fetch"};wa(cw,$v);cw.prototype.isSupported=function(){return Bb(w.fetch)}; -cw.prototype.H=function(){return!0};cw.prototype.K=function(a,b,c){il.register(a.nf,2,b);w.fetch(b,c==null?void 0:c.Cc).then(function(d){if(d.ok)a.ke(d);else if(d.status===0)a.hf();else a.onFailure("Fetch failed with status code "+d.status+".")}).catch(function(d){a.ld(d)})};var dw=new aw,ew=new bw,fw=new cw;var gw=function(){};gw.prototype.K=function(){return[]};var hw=function(a,b){hp.call(this,a,b,!1)};wa(hw,hp);hw.prototype.H=function(a,b,c){Xv(a,function(d){U(a,I.J.jj)&&delete d.item;U(a,I.J.Ha)&&oa(Object,"assign").call(Object,d,Fk);var e=Cj(b.Fc);e&&(d._uip=e);var f="?"+mu(d);c(f)})};var iw=new hw(22,["ad_storage","ad_user_data"]),jw=new hw(23,["ad_storage","ad_user_data"]),kw=new hw(60,[]),lw=function(){};wa(lw,gw);lw.prototype.H=function(a){return U(a,I.J.ba)===T.U.ud&&U(a,I.J.tj)?[{endpoint:Yo(zp)?U(a,I.J.Ha)?jw:iw:kw,method:dw}]:[]};var mw=new lw; -var nw=function(a){if(Lp()===2)return!1;var b=U(a,I.J.ba);return b!==T.U.ra&&b!==T.U.tb?!1:!0},ow=function(a){return P(500)&&Lp()!==2&&U(a,I.J.ba)===T.U.ra},pw=function(a){var b=Mr(a.prefix);b==="_gcl"&&(b="");return b},qw=function(a){if(ip(a,F.D.Ob)||ip(a,F.D.He)){var b=ip(a,F.D.Cd),c=Jd(U(a,I.J.Fa),null),d=Mr(c.prefix);c.prefix=d==="_gcl"?"":d;if(ip(a,F.D.Ob)){var e=Zs(b,c,!U(a,I.J.Xm),ow(a));W(a,I.J.Xm,!0);e&&X(a,F.D.Bm,e)}if(ip(a,F.D.He)){var f=Rs(b,c).ks;f&&X(a,F.D.Wl,f)}}},ww=function(a){var b= -new rw;switch(U(a,I.J.ba)){case T.U.ra:X(a,F.D.sm,Yq(!1)._gs);sw(a);tw(a,b);uw(a,b);if(!b.so()||P(421)){var c=ak(Wj.da.Se),d=Yo(F.D.ja)&&Yo(F.D.ka);if(c&&c.gclid&&!d&&!U(a,I.J.Ue)){var e=String(c.gclid),f=new ir;jr(f,6);b.Lj({version:"GCL",timestamp:0,gclid:e,qa:f,oa:[4]})}}break;case T.U.Bb:case T.U.Cb:sw(a);tw(a,b);break;case T.U.tb:if(P(458)&&Yo(F.D.ja)&&U(a,I.J.vf)){var g=U(a,I.J.Fa);vw(a,b,pw(g))}break;case T.U.Td:sw(a),tw(a,b),uw(a,b)}b.Xt(a)},tw=function(a,b){if(Yo(F.D.ja)&&U(a,I.J.vf)){var c= -U(a,I.J.Fa),d=pw(c),e=Ts(d);X(a,F.D.ze,e.Kg);X(a,F.D.Be,e.fi);X(a,F.D.Ae,e.di);P(421)?(xw(a,b,c,d),vw(a,b,d)):Ys(d)?xw(a,b,c,d):vw(a,b,d)}},vw=function(a,b,c){var d=nw(a);Vs(c,"gclid","gclaw",d).forEach(function(f){b.Lj(f)});b.Vo();if(!c){var e=Qs(Fr(Er())?Op():{},Os);e&&X(a,F.D.Bh,e)}},xw=function(a,b,c,d){Vs(d,"braids","gclgb",ow(a)).forEach(function(g){b.yr(g)});if(!d){var e=ip(a,F.D.Cd);c=Jd(c,null);c.prefix=d;var f=Rs(e,c,!0).hs;f&&X(a,F.D.He,f)}},sw=function(a){if(P(16)){var b=Q(a.M,F.D.Ca); -b||(b=Lp(!1)===1?w.top.location.href:w.location.href);var c,d=nj(b),e=hj(d,"query",!1,void 0,"gclid");if(!e){var f=d.hash.replace("#","");e=e||ej(f,"gclid",!1)}(c=e?e.length:void 0)&&X(a,F.D.Jl,c)}},uw=function(a,b){var c=Yo(F.D.ja)&&Yo(F.D.ka);if(!b.so()||P(421)){var d;var e;b:{var f,g=w,h=[];try{g.navigation&&g.navigation.entries&&(h=g.navigation.entries())}catch(C){}f=h;var l={};try{for(var n=f.length-1;n>=0;n--){var p=f[n]&&f[n].url;if(p){var q=(new URL(p)).searchParams,r=q.get("gclid")||void 0, -t=q.get("gclsrc")||void 0;if(r){l.gclid=r;t&&(l.ei=t);e=l;break b}}}}catch(C){}e=l}var u=e,v=u.gclid,x=u.ei,y;if(v&&(x===void 0||x==="aw"||x==="aw.ds"||$f(8)&&x==="aw.dv"))if(v!==void 0){var z=new ir;jr(z,2);jr(z,3);y={version:"GCL",timestamp:0,gclid:v,qa:z,oa:[3]}}else y=void 0;else y=void 0;d=y;d&&(!c&&U(a,I.J.Ue)&&(d.gclid="0"),b.Lj(d),b.Vo())}},rw=function(){this.H=[];this.K=[];this.O=void 0};k=rw.prototype;k.Lj=function(a){Vr(this.H,a)};k.yr=function(a){Vr(this.K,a)};k.so=function(){return this.K.length> -0};k.Vo=function(){this.O!==!1&&(this.O=!1)};k.Jo=function(a,b,c,d){d=d===void 0?!1:d;if(a.length){var e=[],f=[],g=[];a.forEach(function(h){e.push(h.gclid);var l,n;f.push((n=(l=h.qa)==null?void 0:l.get())!=null?n:0);g.push(Xs(h.oa||[0]))});e.length&&X(b,c.id,e.join("."));d||(f.length&&X(b,c.qa,f.join(".")),g.length&&X(b,c.oa,g.join(".")))}};k.Xt=function(a){this.H.length>0&&this.Jo(this.H,a,{id:F.D.jb,qa:F.D.wd,oa:F.D.xd},this.O);(this.H.length===0||P(421))&&this.Jo(this.K,a,{id:F.D.Ob,qa:F.D.mh, -oa:F.D.nh})};var yw=function(){this.methodName="InjectAdsScript"};wa(yw,$v);yw.prototype.isSupported=function(){return!0};yw.prototype.H=function(){return!1};yw.prototype.K=function(a,b,c){Rl(a.nf,w,A,b,function(){return void a.hf()},function(){return void a.ld(void 0)},c==null?void 0:c.Xe)||Nl(a.nf,b.replace("&fmt=4&","&fmt=3&"),function(){return void a.hf()},function(){return void a.ld(void 0)},c==null?void 0:c.Xe)};var zw=new yw;var Aw=Object.freeze({attributionsrc:""}),Bw=Object.freeze({eventSourceEligible:!1,triggerEligible:!0});function Cw(){var a=XMLHttpRequest.prototype;return a&&Bb(a.setAttributionReporting)};var Dw=Object.freeze({cache:"no-store",credentials:"include",method:"GET",keepalive:!0,redirect:"follow"}); -function Ew(a,b,c,d,e,f,g,h,l){if(w.fetch){a&&il.register(a,2,b);var n=oa(Object,"assign").call(Object,{},Dw);c&&(n.body=c,n.method="POST");oa(Object,"assign").call(Object,n,e);var p=function(){h==null||Jl(h);l==null||Kl(l,b)};w.fetch(b,n).then(function(q){p();if(q.ok){if(q.body){var r=q.body.getReader(),t=new TextDecoder;return new Promise(function(u){function v(){r.read().then(function(x){var y;y=x.done;var z=t.decode(x.value,{stream:!y});z=d.T+z;for(var C=z.indexOf("\n\n");C!==-1;){var D=ch,H; -a:{var G=m(z.substring(0,C).split("\n")),J=G.next().value,S=G.next().value;if(Wb(J,"event: message")&&Wb(S,"data: ")){var V=S.substring(6);try{H=JSON.parse(V);break a}catch(da){}}H=void 0}D(d,H);z=z.substring(C+2);C=z.indexOf("\n\n")}d.T=z;y?(f==null||f(q),u()):v()}).catch(function(){f==null||f(q);u()})}v()})}f==null||f(q)}else g==null||g(q,void 0)}).catch(function(q){p();g==null||g(void 0,q)})}else g==null||g(void 0,void 0)};var Fw=function(a){this.methodName="FetchRichResponse";this.O=a};wa(Fw,$v);Fw.prototype.isSupported=function(){return Bb(w.fetch)};Fw.prototype.H=function(){return!0};Fw.prototype.K=function(a,b,c){Ew(a.nf,b,c==null?void 0:c.body,this.O,c==null?void 0:c.Cc,a.ke,function(d,e){a.onFailure(e)})};function Gw(a,b,c,d,e){e=e===void 0?!1:e;var f=b.method;Xv(a,function(g){var h=U(a,I.J.Ha),l=Yo(zp),n=f instanceof aw?3:f instanceof yw?c===5||c===8?3:4:f instanceof cw?!h&&l?3:8:f instanceof Fw?7:-1;f instanceof yw&&n===3?(g.fmt=4,g.rfmt=3):g.fmt=n;oa(Object,"assign").call(Object,g,c===66?{gcp:"4"}:h||c===8||c===65?Fk:{});if(P(548)){var p=fi[F.D.xf];p&&(g[p]=c)}if(P(569)){var q=b.Mt,r=[q.yk[0].endpoint.endpoint];r.push.apply(r,za(q.vk.filter(function(x){return x[0]!==void 0}).map(function(x){return x[0].endpoint.endpoint}))); -g.epp=r.sort(function(x,y){return x-y}).join("~")}e&&(g["gap.1pfb"]="1");var t="?"+mu(g),u=Hw(f,l),v;v=(f instanceof aw||f instanceof yw)&&Yo("ad_user_data")?Aw:void 0;d(t,{Cc:u,Xe:v})})}function Hw(a,b){var c=void 0;a instanceof cw?c=oa(Object,"assign").call(Object,{},qd):a instanceof Fw&&(c={},Cw()&&(c.attributionReporting=Bw));!b&&c&&(c.credentials="omit",c.mode="cors");return c};var Iw=function(a,b,c){c=c===void 0?!1:c;hp.call(this,a,b);this.T=c};wa(Iw,hp);Iw.prototype.K=function(a){var b=this.T&&Kj(this.endpoint)?Jj[this.endpoint]():xk[this.endpoint](void 0);return jp(a,Hk(b))};Iw.prototype.H=function(a,b,c){Gw(a,b,this.endpoint,c,this.T)}; -var Jw=new Iw(5,["ad_storage","ad_user_data"]),Kw=new Iw(6,[]),Lw=new Iw(63,["ad_storage","ad_user_data"]),Mw=new Iw(65,["ad_storage","ad_user_data"]),Nw=new Iw(8,["ad_storage","ad_user_data"]),Ow=new Iw(66,[]),Pw=new Iw(74,["ad_storage","ad_user_data"]);var Qw=function(){bh.apply(this,arguments)};wa(Qw,bh);Qw.prototype.K=function(a,b){dd(a,void 0,dh(this,b),b.attribution_reporting&&Cw()?Aw:{})};Qw.prototype.H=function(a,b){var c=b.attribution_reporting&&Cw()?{attributionReporting:Bw}:{},d=dh(this,b);b.process_response?Ew(void 0,a,void 0,this,c,void 0,d):rd(a,void 0,c,void 0,d)};var Rw=function(){Qw.apply(this,arguments)};wa(Rw,Qw);Rw.prototype.H=function(a,b){Qw.prototype.H.call(this,a,oa(Object,"assign").call(Object,{},b,{process_response:!1}))};var Sw=function(){};wa(Sw,gw);Sw.prototype.H=function(a){if(U(a,I.J.ba)!==T.U.ra)return[];var b=Yo(zp),c=!!U(a,I.J.Ha),d=!!U(a,I.J.Ac),e=b?d?c?Mw:Lw:c?Nw:Jw:Kw,f=[{endpoint:e,method:sd()?b?P(490)?c?fw:new Fw(new Rw):zw:fw:dw}],g=b?c?void 0:Nw:Ow;g&&f.push({endpoint:g,method:fw});if(P(496)){var h;h=e.T?e:sj()&&Kj(e.endpoint)?new Iw(e.endpoint,e.O,!0):void 0;h&&f.push({endpoint:h,method:fw})}return f}; -Sw.prototype.K=function(a){return U(a,I.J.ba)===T.U.ra&&sj()&&!U(a,I.J.Ac)&&P(569)&&Yo(zp)?[[{endpoint:Pw,method:fw}]]:[]};var Tw=new Sw;var Uw=function(a,b){gp.call(this,a,b,!0,!1,3)};wa(Uw,gp);Uw.prototype.H=function(a,b,c){var d=nu(a),e="?"+mu(d);c(e,{Cc:qd})};var Vw=new Uw(54,["ad_storage","ad_user_data"]),Ww=new Uw(55,[]),Xw=function(){};wa(Xw,gw);Xw.prototype.H=function(){return[{endpoint:Yo(Vw.O)?Vw:Ww,method:fw}]};var Yw=new Xw;var Zw=function(){hp.call(this,9,["ad_storage","ad_user_data"])};wa(Zw,hp);Zw.prototype.isSupported=function(a){return U(a,I.J.ba)===T.U.xc};Zw.prototype.H=function(a,b,c){var d=this;Xv(a,function(e){if(P(548)){var f=fi[F.D.xf];f&&(e[f]=d.endpoint)}e.gcp=1;e.ct_cookie_present=1;e.fmt=b.method instanceof cw?8:3;var g="?"+mu(e);c(g,{Cc:qd})})};var $w=new Zw,ax=function(){};wa(ax,gw);ax.prototype.H=function(){return[{endpoint:$w,method:fw},{endpoint:$w,method:dw}]};var bx=new ax;var cx=[68];function dx(a,b,c){if(!cx.includes(c)){var d=b.M;Lo({targetId:b.target.destinationId,request:{url:a,parameterEncoding:3,endpoint:c},nb:{eventId:d.eventId,priorityId:d.priorityId},Oj:{eventId:U(b,I.J.tf),priorityId:U(b,I.J.uf)}});U(b,I.J.ba)}};var ex={},fx=(ex[T.U.ra]=function(a,b){var c=Yo(zp),d=U(a,I.J.Ha)?oa(Object,"assign").call(Object,{},Fk):{},e={},f;c&&!U(a,I.J.Ha)?(f=8,oa(Object,"assign").call(Object,e,Fk)):c||(f=66,e.gcp="4");var g;g=Yo(zp)?U(a,I.J.Ac)?U(a,I.J.Ha)?65:63:U(a,I.J.Ha)?8:5:6;var h;h=xk[g](void 0)+"/"+b+"/";var l;if(c)if(P(490)){var n=!U(a,I.J.Ha);l=sd()?n?4:3:1}else l=2;else l=sd()?3:1;var p={baseUrl:h,Mg:d,format:l,endpoint:g};Yo(F.D.ka)&&(p.attributes=Aw);var q=p;if(f!==void 0){var r=q,t=Object,u=t.assign,v;v=xk[f](void 0)+ -"/"+b+"/";r.Ye=u.call(t,{},p,{baseUrl:v,Mg:e,format:3,endpoint:f});q=q.Ye}var x;a:if(sj()&&P(496))switch(g){case 5:case 63:case 8:case 65:x=!0;break a;default:x=!1}else x=!1;if(x){var y={};q.Ye=oa(Object,"assign").call(Object,{},q,{baseUrl:Jj[g]()+"/"+b+"/",Mg:oa(Object,"assign").call(Object,{},d,(y["gap.1pfb"]="1",y)),format:3,endpoint:g})}return p},ex[T.U.Td]=function(){var a=Yo(zp)?54:55;return{baseUrl:xk[a](void 0),Mg:{},format:3,endpoint:a}},ex); -function gx(a){var b=U(a,I.J.ba),c=ip(a,F.D.qh),d=U(a,I.J.sb),e,f=(e=fx[b])==null?void 0:e.call(fx,a,c,d);return(Array.isArray(f)?f:[f]).filter(function(g){return g!==void 0})};var hx=function(a,b){this.jt=a;this.timeoutMs=b;this.Mb=void 0},ix=function(a){a.Mb||(a.Mb=setTimeout(function(){a.jt();a.Mb=void 0},a.timeoutMs))},Jl=function(a){a.Mb&&(clearTimeout(a.Mb),a.Mb=void 0)};var jx=function(){var a=Pf(66,0);this.Co=[];this.Zs=a;this.od=Za()},lx=function(a){var b=kx;b.Co.push(a);b.Go||(b.Go=function(){for(var c=m(b.Co),d=c.next();!d.done;d=c.next()){var e=d.value;try{e()}catch(l){}}for(var f=m(b.od.values()),g=f.next();!g.done;g=f.next()){var h=void 0;(h=g.value.bc)==null||Jl(h)}b.od.clear()},ed(w,"pagehide",b.Go))},mx=function(a){var b=a.match(zk)[3]||null,c=(b?decodeURI(b):b)||"",d=Ck(a,"label")||"",e=Ck(a,"random")||"";return c+":"+yk(d)+":"+yk(e)}; -jx.prototype.Bg=function(a,b,c){var d=mx(a);if(!(this.od.has(d)||this.od.size>=this.Zs)){var e={};b&&b>0&&c&&(e.bc=new hx(c,b));this.od.set(d,e);var f;(f=e.bc)==null||ix(f)}};var Kl=function(a,b){var c=mx(b),d,e;(d=a.od.get(c))==null||(e=d.bc)==null||Jl(e);a.od.delete(c)};jx.prototype.getSize=function(){return this.od.size}; -var nx=function(a,b){var c,d=(c=U(a,I.J.rn))==null?void 0:c[b.mb];return d!==void 0&&d>=b.Vg},ox=function(a,b){if(U(a,I.J.ba)===T.U.ra&&!U(a,I.J.Ac)&&nx(a,qu)&&!(b<=0))return new hx(function(){uu(qu)},b)},px=function(a,b,c){U(b,I.J.ba)!==T.U.ra||U(b,I.J.Ac)||(kx||(kx=new jx,nx(b,ru)&&lx(function(){var d;uu(ru,(d=kx)==null?void 0:d.getSize())})),nx(b,qu)?kx.Bg(a,c,function(){uu(qu);var d;(d=kx)==null||Kl(d,a)}):kx.Bg(a))},kx;var qx=function(a){this.H=1;this.H>0||(this.H=1);this.onSuccess=a.M.onSuccess},rx=function(a,b){return cc(function(){a.H--;if(Bb(a.onSuccess)&&a.H===0)a.onSuccess()},b>0?b:1)};var sx=function(a,b,c,d){hp.call(this,a,b,c);this.T=d};wa(sx,hp);sx.prototype.isSupported=function(a){return this.endpoint===68&&U(a,I.J.Ha)?!1:!0}; -sx.prototype.H=function(a,b,c){var d=nu(a);this.T&&oa(Object,"assign").call(Object,d,this.T);if(P(548)){var e=fi[F.D.xf];e&&(d[e]=this.endpoint)}this.endpoint!==68&&(delete d.gclaw,delete d.gclaw_src);var f=void 0;U(a,I.J.Ha)?(d.gcp=1,d.ct_cookie_present=1):this.endpoint===68&&(d.gcp=5,b.method instanceof cw&&(d.fmt=8,f=qd));var g="?"+mu(d);c(g,f?{Cc:f}:{})};var tx=new sx(9,["ad_storage","ad_user_data"],!0),ux=new sx(68,["ad_storage","ad_user_data"],!1); -function vx(a,b,c,d,e){e=e===void 0?0:e;if(d){var f=U(a,I.J.sb),g=b;b=new sx(g.endpoint,g.O,g.Z,{random:f+e,data:d})}return[{endpoint:b,method:c},{endpoint:b,method:dw}]}var wx=function(){};wa(wx,gw);wx.prototype.H=function(a){var b=iu(a);return vx(a,tx,U(a,I.J.Ha)?fw:zw,b==null?void 0:b[0])};wx.prototype.K=function(a){var b=iu(a),c=[];P(458)&&!U(a,I.J.Ha)&&c.push(vx(a,ux,fw,b==null?void 0:b[0]));if(b&&b.length>1)for(var d=U(a,I.J.Ha)?fw:zw,e=1;e0}),e=[].concat(za(d),["_","service_worker",b,"sw.js"]),f=m(e),g=f.next();!g.done;g=f.next())c=Jp(c,g.value);return c};function Lx(a){var b=ak(Wj.da.Xh),c=b==null?void 0:b[a];c||a!=="lite"||(c=b==null?void 0:b.full);return c}var Mx=function(a,b,c){var d=Lx("full");d?d.delegate(a,b,c):c({failureType:16})};function Nx(a,b,c,d,e){Mx({commandType:0,params:{url:a,method:1,templates:b,body:"",processResponse:!1,encryptionKeyString:e,soReferrer:w.location.href}},c,function(f){d(f.failureType,f.data)})};var Ox=function(a){this.methodName="ServiceWorkerFrameless";this.O=a};wa(Ox,$v);Ox.prototype.isSupported=function(){return!0};Ox.prototype.H=function(){return!1};Ox.prototype.K=function(a,b){var c=this;Nx(b,this.O.eh,function(){a.hf()},function(d){c.O.pe=d;a.ld(void 0)},this.O.encryptionKeyString)};var Px=function(a){hp.call(this,a,["ad_user_data","ad_storage"],!1)};wa(Px,hp);Px.prototype.H=function(a,b,c){var d=this;Xv(a,function(e){var f=U(a,I.J.xj),g=function(){var n=mu(e);f&&b.method instanceof Ox&&(n+=f.Zo.join(""));c(n,{Cc:qd})};if(d.endpoint===21||d.endpoint===73){var h=Cj(b.Fc);h&&(e._uip=h)}if(f&&(oa(Object,"assign").call(Object,e,Bx(a,f)),!(b.method instanceof Ox))){var l;f.pe=(l=f.pe)!=null?l:17;f.po(function(n){oa(Object,"assign").call(Object,e,n);g()});return}g()})}; -Px.prototype.K=function(a){return hp.prototype.K.call(this,a).slice(0,-1)};var Qx=new Px(11),Rx=new Px(72),Sx=function(a,b,c){this.T=a;this.O=b;this.Z=c};wa(Sx,gw);Sx.prototype.H=function(a){var b=P(563)?[this.T,this.O]:P(141)?[this.T]:[this.O],c=b.flatMap(function(e){return(fw.isSupported()?[fw]:[ew,dw]).map(function(f){return{endpoint:e,method:f}})});if(this.Z){var d=U(a,I.J.xj);d&&c.unshift({endpoint:b[0],method:new Ox(d)})}return c}; -var Tx=new Sx(Qx,Rx,!0),Ux=new Px(21),Vx=new Px(73),Wx=new Sx(Ux,Vx,!1);var Xx=function(){var a=this;this.H=0;this.K=!1;P(462)&&Tk("fs",function(){return a.H>0&&a.H<5?String(a.H):void 0},!1)},Yx;function Zx(a,b){Yx||(Yx=new Xx);var c=Yx;P(462)&&el.H&&(b==="gtm.formSubmit"||b==="form_submit"&&Kf(45))&&(a===1||c.K)&&(c.K=!0,c.H=a,a!==5?Uk("fs"):Pk.H.fs=!1)};function $x(a,b,c,d){if(Eo()){var e=b.M;Lo({targetId:d||[b.target.destinationId],request:{url:a,parameterEncoding:2,endpoint:c},nb:{eventId:e.eventId,priorityId:e.priorityId},Oj:{eventId:U(b,I.J.tf),priorityId:U(b,I.J.uf)}})}};function ay(a,b,c,d){d=d===void 0?!1:d;var e=Cp(),f=Ap(e);if(f.url)if(d){var g=c(f.url);b!==g&&X(a,F.D.dg,g)}else{var h=f.url;b!==h&&X(a,F.D.dg,c(h))}}function by(a,b){var c=Object.keys(b).filter(function(d){return b[d]!=null}).map(function(d){return d+"="+b[d]}).join("&");return xk[a](void 0)+"?"+c}; -var cy=function(a,b){if(P(517)&&Kf(47)&&a===45)return tj()+"/g/d/ccm/collect?"+b.split("?")[1]+"&gap.1pfb=1"},fy=function(){var a=Mk(30,function(){return[]});if(a.length){for(var b={},c=m(a),d=c.next();!d.done;d=c.next()){var e=d.value,f=dy(e.ee,"apvc"),g=dy(e.ee,"tft"),h=dy(e.ee,"tfd"),l=dy(e.ee,"tid"),n=by(e.endpoint,e.ee),p=b[n]=b[n]||{Ik:[],bk:[]};p.bk.push(e);l?(p.Ik.push(l),p.te||(p.te=l)):p.Ik.push("");f==="1"&&(p.Er=!0);if(g||h)p.Ar=!0}a.length=0;for(var q=m(Object.keys(b)),r=q.next(),t={};!r.done;t= -{Jk:void 0},r=q.next()){var u=r.value,v=b[u];t.Jk=v.Ik;var x=t.Jk.filter(function(D){return function(H,G){return D.Jk.indexOf(H)===G}}(t)),y=x.filter(function(D){return!!D}),z=u+"&apvc="+(v.Er?"1":"0");y.length&&(z+="&tids="+y.join("~"));v.te&&(z+="&tid="+v.te);if(v.Ar){z+="&tft="+String(Qb());var C=vd();C!==void 0&&(z+="&tfd="+String(Math.round(C)))}ey(v.bk[0].event,z,v.bk[0].endpoint,x)}}},dy=function(a,b){var c=a[b];if(c!==void 0)return a[b]=void 0,c},ey=function(a,b,c,d){var e={destinationId:a.target.destinationId, -endpoint:c,eventId:a.M.eventId,priorityId:a.M.priorityId},f=function(l,n){var p=b+gy(l);$x(p,a,c,d);return n(p)};if(sd()){var g=function(){},h=cy(c,b);h!==void 0&&(g=function(){Ol(e,h+gy(8),void 0,{ff:!0},function(){},function(){})});f(8,function(l){Ol(e,l,void 0,{ff:!0},function(){},function(){cd(b+gy(3),function(){},g)})})}else f(5,function(l){return Ml(e,l)})||dd(b+gy(3))},gy=function(a){if(P(517))switch(a){case 8:case 5:case 3:return"&fmt="+a}return""},hy=function(a){return Yo(zp)&&!U(a,I.J.Tb)? -45:46},iy=function(a,b){var c=hy(a),d=function(){var f=by(c,b);ey(a,f,c,[b.tid])};if(typeof w.queueMicrotask!=="function")jv(dv.X.oj),d();else{var e=Mk(30,function(){return[]});if(e.length===0)try{w.queueMicrotask(fy)}catch(f){jv(dv.X.oj);d();return}b=oa(Object,"assign").call(Object,{},b);e.push({event:a,ee:b,endpoint:c})}}; -var jy={},ky=(jy[F.D.wa]="gcu",jy[F.D.Ob]="gclgb",jy[F.D.jb]="gclaw",jy[F.D.zf]="gad_source",jy[F.D.Af]="gad_source_src",jy[F.D.yd]="gclid",jy[F.D.Kl]="gclsrc",jy[F.D.Bf]="gbraid",jy[F.D.Ce]="wbraid",jy[F.D.zd]="auid",jy[F.D.Ll]="ae",jy[F.D.Ga]=null,jy[F.D.Nl]="rnd",jy[F.D.Nf]="ncl",jy[F.D.Of]="gcldc",jy[F.D.Fd]="dclid",jy[F.D.Rc]="edid",jy[F.D.qc]="en",jy[F.D.Ie]="gdpr",jy[F.D.Tc]="gdid",jy[F.D.Va]=null,jy[F.D.Je]="_ng",jy[F.D.Dh]="gpp_sid",jy[F.D.Eh]="gpp",jy[F.D.Wf]="_tu",jy[F.D.am]="gtm_up",jy[F.D.Ke]= -"frm",jy[F.D.Le]="lps",jy[F.D.Ti]="did",jy[F.D.gm]="navt",jy[F.D.Ca]="dl",jy[F.D.Za]="dr",jy[F.D.Ib]="dt",jy[F.D.qm]="scrsrc",jy[F.D.cg]="ga_uid",jy[F.D.Ne]="gdpr_consent",jy[F.D.Yi]="testonly",jy[F.D.Dq]="u_tz",jy[F.D.dg]="top",jy[F.D.eg]="tid",jy[F.D.ab]="uid",jy[F.D.ng]="us_privacy",jy[F.D.Zc]=null,jy[F.D.Xd]="npa",jy);function ly(a,b){if(b!=null&&b!==""){var c=b===!0?"1":b===!1?"0":encodeURIComponent(String(b));if(Wb(a,"_&"))return{key:a.substring(2),value:c};var d=ky[a];if(d!==null)return d?{key:d,value:c}:{key:Db(b)?"epn."+a:"ep."+a,value:c}}}; -var my=function(a){for(var b={},c=m(ou(a)),d=c.next();!d.done;d=c.next()){var e=d.value,f=ly(e,ip(a,e));f&&(!U(a,I.J.Ve)||e!==F.D.yd&&e!==F.D.Fd&&e!==F.D.Ce&&e!==F.D.Bf||(f.value="0"),P(504)&&(e===F.D.Hd?f.key="evnid":e===F.D.Id&&(f.key="excid")),b[f.key]=f.value)}b.gtm=eu({ac:U(a,I.J.Jb),ah:a.M.isGtmEvent,cf:U(a,I.J.yc)});Ut()&&(b.gcs=Vt());b.gcd=Zt(a.M);bu()&&(b.dma_cps=$t());b.dma=au();wt(Ft())&&(b.tcfd=cu());var g=xp(a);g&&(b.tag_exp=g);if(U(a,I.J.Mk)){b.tft=String(Qb());var h=vd();h!==void 0&& -(b.tfd=String(Math.round(h)))}b.apve="1";b.apvf=sd()?"f":"nf";Rm.H[zm.fa.Xa]!==ym.La.Re||Rm.K[zm.fa.Xa].isConsentGranted()||(b.limited_ads="1");var l=U(a,I.J.wi);P(474)&&l!=null&&l!==""&&(b._gsid=l);it(a,b,function(n,p){b[n]=encodeURIComponent(p)});return b}; -var ny=function(a,b){var c={},d=function(e){b[e]!=null&&b[e]!==""&&(c[e]=b[e])};P(474)&&d("_gsid");P(475)&&ip(a,F.D.Nf)!=="1"&&(d("gclid"),d("dclid"),d("gclsrc"),d("auid"));if(Object.keys(c).length)return d("gtm"),by(69,c)},qy=function(a,b){if(oy(a)){var c=Wc()||Tc()?58:57,d=by(c,py(b));$x(d,a,c);Ol({destinationId:a.target.destinationId,endpoint:c,eventId:a.M.eventId,priorityId:a.M.priorityId},d,void 0,{ff:!0,method:"GET"},function(){},function(){dd(d+"&img=1")})}},oy=function(a){return U(a,I.J.ue)&& -ip(a,F.D.Le)==="1"&&ip(a,F.D.Nf)!=="1"&&Yo(zp)&&(sd()||P(428))?!0:!1},py=function(a){for(var b={},c=m(Object.keys(a)),d=c.next();!d.done;d=c.next()){var e=d.value,f=a[e];e==="dl"?b.url=f:e==="dr"?b.ref=f:e==="uid"?b.userId=f:b[e]=f}return b},ry=function(a){if(U(a,I.J.ba)===T.U.Ka){var b=my(a);qy(a,b);if((U(a,I.J.Zd)||oy(a))&&(P(474)||P(475))&&Yo(zp)){var c=ny(a,b);c&&($x(c,a,69),Ol({destinationId:a.target.destinationId,endpoint:69,eventId:a.M.eventId,priorityId:a.M.priorityId},c))}var d=Bb(a.M.onSuccess)? -a.M.onSuccess:Ab;iy(a,b);d()}};var sy={};sy.W=$p.W;var ty={Yu:"L",mr:"S",sv:"Y",au:"B",vu:"E",Uu:"I",nv:"TC",Cu:"HTC",wu:"F",Tu:"C"},uy={mr:"S",tu:"V",ju:"E",mv:"tag"},vy={},wy=(vy[sy.W.Dj]="6",vy[sy.W.Ej]="5",vy[sy.W.Cj]="7",vy);function xy(a){var b=E(5),c=Number(a.eventId),d=Number(a.tagId);return(Wb(b,"GTM-")?b:"GTM-"+b)+":"+(Db(c)?c+":":"")+(Db(d)?d+":":"")+a.stage};function yy(){var a=xd();return!!(a&&a.mark instanceof Function&&a.measure instanceof Function&&a.clearMeasures instanceof Function&&a.clearMarks instanceof Function)};var zy=function(){this.H={}},Ay;function By(){Ay||(Ay=new zy);return Ay}function Cy(a){var b=By(),c=xy(a);return b.H[c]}function Dy(a,b){var c;a:{var d=By();if(yy()){var e=xy(a),f,g;if(f=(g=xd())==null?void 0:g.mark(e,b)){c=d.H[e]=f;break a}}c=void 0}return c};function Ey(a,b){if(yy()){a.entry=xy(a);var c=oa(Object,"assign").call(Object,{},a);c.stage=b;delete c.sent;var d=Cy(b===sy.W.ed?{stage:sy.W.ed}:c),e=Cy(a);if(d&&e&&!(d.startTime>e.startTime)){c.stage=b+":"+a.stage;var f=xy(c),g={start:d.name,end:e.name},h,l;return(l=(h=xd())==null?void 0:h.measure(f,g))==null?void 0:l.duration}}};var Gy=function(){var a=5;Fy.cp>0&&(a=Fy.cp);this.K=a;this.H=0;this.O=[]},Hy=function(a){return a.H=2022&&My(b))},Oy;function Qy(a){Ry();Jy(Oy,a)}function Sy(){var a;a=a===void 0?!1:a;Ry();var b=a,c=Oy;b=b===void 0?!1:b;if(el.K&&Lk(26)){var d=Ly(c,!0,!0);b?Ll({destinationId:E(5),endpoint:56,eventId:c.H},d):Nl({destinationId:E(5),endpoint:56,eventId:c.H},d)}}function Ry(){Oy||(Oy=new Ky)};function Ty(){function a(c,d){var e=zb(ub[d]||[]);e&&b.push([c,e])}var b=[];a("u","GTM");a("ut","TAGGING");a("h","HEALTH");return b};var Uy="https://"+E(21),Vy=function(){this.O=!1;this.T=[];this.Z=[];this.H={TC:0,HTC:0};this.K={}},Wy=function(a,b,c,d){a.K[b]||(a.K[b]={});a.K[b][c]=d},Zy=function(a){var b="",c="",d=Xy();Db(d)&&(a.H.I=Math.floor(d));c=Yy(a.H,ty).toString();for(var e=m(Object.keys(a.K)),f=e.next();!f.done;f=e.next()){var g=f.value,h=a.K[g].name,l="",n=Yy(a.K[g],uy);n&&(l=h+"."+n.toString(),b+="~"+l)}var p="~AWCT"+a.T.join("."),q="~GA"+a.Z.join("."),r="&ccid="+em().toString()+"&cid="+E(5).toString()+"&l="+c+b+(a.T.length? -p:"")+(a.Z.length?q:"");if(P(214)){var t,u=(t=xd())==null?void 0:t.getEntriesByName(Qc).map(function(v){return String(v.duration)}).join(".");u&&(r+="~SS"+u)}return r},$y=function(a,b){if(!b.stage||a.O||!yy()||Cy(b))return!1;var c,d=(c=xd())==null?void 0:c.timeOrigin;if(!Db(d))a.O=!0;else if(Db(Lk(25))&&!Cy({stage:sy.W.ed})&&!a.O&&yy())try{var e=Number(Lk(25));Dy({stage:sy.W.ed},{startTime:Math.max(e-d,0)});Dy({stage:sy.W.qj},{startTime:0});var f=Ey({stage:sy.W.ed},sy.W.qj);f&&(a.H.L=Math.floor(f)); -var g=fq.length,h=[];if(g<=2)h=fq;else{var l=Gb(0,g-1);h.push(fq[l]);var n=0,p;do p=Gb(0,g-1),n++;while(l===p&&n<30);h.push(fq[p])}aq=h}catch(q){a.O=!0}if(a.O)return!1;try{if(!Dy(b))return!1}catch(q){return a.O=!0,!1}return!0},az=function(a,b,c){if($y(a,b))try{var d=Ey(b,c);if(d)return Math.floor(d)}catch(e){a.O=!0}},cz=function(){var a=bz();$y(a,{stage:sy.W.yi})},dz=function(){var a=bz(),b=az(a,{stage:sy.W.ml},sy.W.yi);b!==void 0&&(a.H.S=b)},ez=function(){var a=bz();$y(a,{stage:sy.W.zi})},fz=function(a, -b){var c=bz();$y(c,{stage:sy.W.Lh,eventId:a});Wy(c,a,"name",Wb(b,"gtm.")?b:"*")},gz=function(a){var b=bz(),c=az(b,{stage:sy.W.Fm,eventId:a},sy.W.Lh);c!==void 0&&Wy(b,a,"S",c)},iz=function(a,b){var c=bz(),d=az(c,{stage:sy.W.Em,eventId:a},sy.W.Lh);d!==void 0&&Wy(c,a,"E",d);if(b==="gtm.load"){var e=az(c,{stage:sy.W.kl},sy.W.ih);e!==void 0&&(c.H.E=e);Um(Xm(zm.fa.Ub),function(){if(!c.O&&yy()&&E(5)){var f=hz();f!==void 0&&(c.H.F=Math.floor(f));try{for(var g,h=Ty({eventId:0,rf:!1}),l=[],n=m(h),p=n.next();!p.done;p= -n.next()){var q=m(p.value),r=q.next().value,t=q.next().value;l.push("&"+r+"="+t)}var u=xp();g=[Bj(Uy),"/a?v=3&t=l","&pid="+Gb().toString(),"&rv="+E(14),u?"&tag_exp="+u:"",l.join("")].join("");for(var v=eu(),x=[],y=m(Object.keys(bq)),z=y.next();!z.done;z=y.next()){var C=z.value,D=Math.floor(bq[C]),H=cq[C];D!==void 0&&H!==void 0&&x.push(""+C+"."+H+"."+D)}var G=x.join("~"),J=[g,">m=",v,G?"&cl="+G:"",Zy(c)].join("");if(J.length>2022){var S=Math.max(J.lastIndexOf(".TS",2022),J.lastIndexOf("~",2022)); -J=J.slice(0,S)}Nl({destinationId:E(5),endpoint:56},J)}catch(V){}}})}},jz;function bz(){jz||(jz=new Vy);return jz}function Xy(){try{var a;return((a=xd())==null?void 0:a.getEntriesByType("navigation")[0]).domInteractive}catch(b){}}function Yy(a,b){return Object.keys(b).map(function(c){return b[c]}).filter(function(c){return a[c]!==void 0}).map(function(c){return(""+(c==="tag"?"":c)).concat(a[c].toString())}).join(".")} -function kz(a){var b=bz(),c=az(b,{stage:sy.W.Om,eventId:a},sy.W.ed);c!==void 0&&b.Z.push(c)}function lz(a){var b=bz(),c=az(b,{stage:sy.W.Ok,eventId:a},sy.W.ed);c!==void 0&&b.T.push(c)}function mz(a){var b=bz();$y(b,{stage:sy.W.bj,eventId:a})}function nz(a){var b=bz(),c=az(b,{stage:sy.W.Dm,eventId:a},sy.W.bj);c!==void 0&&Wy(b,a,"V",c)} -function hz(){try{var a,b;return(b=(a=xd())==null?void 0:a.getEntriesByType("paint").find(function(c){return c.name==="first-contentful-paint"}))==null?void 0:b.startTime}catch(c){}}function oz(a,b){var c=bz();$y(c,{stage:sy.W.Fj,eventId:a.id,tagId:Number(b[If.Gj])})} -function pz(a,b,c){var d=bz(),e=cl(b),f=Number(b[If.Gj]),g=az(d,{stage:c,eventId:a.id,tagId:f},sy.W.Fj);if(g!==void 0&&d.K[a.id]){var h=d.K[a.id].tag||"",l,n=(l=wy[c])!=null?l:"1",p=new RegExp("TS\\d"+e+".TI"+f),q="TS"+n+e+".TI"+f+".TE"+g;h.search(p)>=0?n!=="1"&&Wy(d,a.id,"tag",h.replace(p,q.replace(".TE"+g,""))):(Wy(d,a.id,"tag",(h?h+".":"")+q),e==="html"&&(d.H.HTC+=1),d.H.TC+=1)}};function qz(a,b,c,d,e,f){var g=c.slice(),h;d==null||(h=d.Bv)==null||h.call(d,a,b,c,e);var l=Ax(),n=l.promise,p=l.resolve,q=[],r=function(){p(q);var u;d==null||(u=d.ft)==null||u.call(d,a,b,c,e,q)},t=function(){var u=g.shift();u?u.method.isSupported()?rz(a,b,u.endpoint,d,q,u.method,e,f,t,r):t():r()};t();return n} -function rz(a,b,c,d,e,f,g,h,l,n){var p=c.K(a),q={Ek:b,endpoint:c,isPrimary:g,pb:void 0,Ak:f,Ct:{}},r=!1,t=function(z,C){if(r)R(187);else if(r=!0,!u){var D=C||{},H=D.body,G=D.Cc,J=D.Xe;C=Object.freeze(oa(Object,"assign").call(Object,{},H?{body:H}:{},G?{Cc:G}:{},J?{Xe:J}:{}));if(H&&!f.H())x(),l();else{var S=sz(z),V=p[0]==="/"?""+p+S:"https://"+p+S;q.pb=V;q.Ct=C;var da;d==null||(da=d.ht)==null||da.call(d,a,oa(Object,"assign").call(Object,{},q));var pa=function(na,ba){x();if(q.status!==void 0)return R(192), -!1;q.status=na;e.push(q);var ia;d==null||(ia=d.Eo)==null||ia.call(d,a,oa(Object,"assign").call(Object,{},q),ba);return!0},ka={nf:{destinationId:a.target.destinationId,endpoint:c.endpoint,eventId:a.M.eventId,priorityId:a.M.priorityId},ld:function(){pa(2)&&l()},onFailure:function(){pa(3)&&l()},ke:function(na){pa(na.status===0?1:na.ok?0:3,na)&&n()},hf:function(){pa(1)&&n()}};tz(c,a,V,H);f.sendRequest(ka,V,oa(Object,"assign").call(Object,{},H&&{body:H},G&&{Cc:G},J&&{Xe:J}))}}},u=!1,v,x=function(){v!== -void 0&&(w.clearTimeout(v),v=void 0)};P(574)&&(v=w.setTimeout(function(){v=void 0;u=!0;if(q.status===void 0){q.status=4;q.pb===void 0&&(q.pb="[failed to build] "+p);e.push(q);var z;d==null||(z=d.Eo)==null||z.call(d,a,oa(Object,"assign").call(Object,{},q),void 0);l()}},5E3));var y={Fc:p,method:f,Fv:e,isPrimary:g,Mt:h};try{c.H(a,y,t)}catch(z){x(),R(188),l()}} -function tz(a,b,c,d){a.Z&&Lo({targetId:b.target.destinationId,request:oa(Object,"assign").call(Object,{},{url:c,parameterEncoding:a.parameterEncoding,endpoint:a.endpoint},d?{postBody:d}:{}),nb:{eventId:b.M.eventId,priorityId:b.M.priorityId},Oj:{eventId:U(b,I.J.tf),priorityId:U(b,I.J.uf)}})}function sz(a){return a&&a!=="?"?a[0]!=="?"?"?".concat(a):a:""};function uz(a,b,c,d,e){var f;e==null||(f=e.Cv)==null||f.call(e,a,b);if(!c.length){var g;e==null||(g=e.it)==null||g.call(e,a,b,[]);return Promise.resolve([])}var h=[],l={Ek:b,yk:c,vk:d};h.push(qz(a,b,c,e,!0,l));for(var n=m(d),p=n.next();!p.done;p=n.next())h.push(qz(a,b,p.value,e,!1,l));return zx(h).then(function(q){for(var r=[],t=m(q),u=t.next();!u.done;u=t.next())r.push.apply(r,za(u.value));var v;e==null||(v=e.it)==null||v.call(e,a,b,r);return r})};function vz(a,b){var c=Qa.apply(2,arguments),d;b==null||(d=b.Dv)==null||d.call(b,a,c);for(var e=[],f=m(c),g=f.next();!g.done;g=f.next())e.push(wz(a,g.value));for(var h=[],l=m(e),n=l.next();!n.done;n=l.next()){var p=n.value;h.push(uz(a,p.Ek,p.yk,p.vk,b))}zx(h).then(function(q){for(var r=[],t=m(q),u=t.next();!u.done;u=t.next())r.push.apply(r,za(u.value));var v;b==null||(v=b.et)==null||v.call(b,a,c,r)})} -function wz(a,b){var c=function(f){return f.method.isSupported()&&f.endpoint.isSupported(a)&&Yo(f.endpoint.O)},d=(b.H(a)||[]).filter(c),e=[];d.length&&(e=(b.K(a)||[]).map(function(f){return f.filter(c)}).filter(function(f){return f.length>0}));return{Ek:b,yk:d,vk:e}}; -var zz=function(a,b,c,d,e,f){var g=U(a,I.J.ba),h=Yo(zp),l=oa(Object,"assign").call(Object,{},c,b.Mg);xz(l,g,b.endpoint);var n=b.baseUrl+"?"+mu(l),p=function(da){d==null||d();dx(da,a,b.endpoint)},q=function(da){e==null||e();b.Ye||dx(da,a,b.endpoint)},r={destinationId:a.target.destinationId,endpoint:b.endpoint,priorityId:a.M.priorityId,eventId:a.M.eventId};switch(b.format){case 1:Nl(r,n,function(){return void p(n)},function(){return void q(n)},b.attributes);break;case 2:var t=yz(n,a,b.endpoint,b.format), -u=t.bc,v=t.oi;u==null||ix(u);var x=void 0;try{x=Rl(r,w,A,n,function(){return void p(x)},function(){return void q(x)},b.attributes,u,v)}catch(da){}x||(u==null||Jl(u),v==null||Kl(v,n),b.format=1,zz(a,b,c,d,e,!0));break;case 3:var y=n,z={ff:!0},C=g===T.U.ra&&U(a,I.J.Ha),D=g===T.U.ra&&!h;if(C||g===T.U.xc||D)y=Gk(n,8),h||(z.credentials="omit",z.mode="cors");var H=yz(y,a,b.endpoint,b.format),G=H.bc,J=H.oi;Ol(r,y,void 0,z,function(){G==null||Jl(G);J==null||Kl(J,y);p(y)},function(){G==null||Jl(G);J==null|| -Kl(J,y);q(y)})||f||Ll(r,n,function(){return void p(n)},function(){return void q(n)});break;case 4:var S=Gk(n,7),V=yz(S,a,b.endpoint,b.format);Ew(r,S,void 0,new Rw,Cw()?{attributionReporting:Bw}:{},function(){return void p(S)},function(){return void q(S)},V.bc,V.oi)}},Az=function(a){U(a,I.J.ba)===T.U.ra&&!U(a,I.J.Ac)&&nx(a,su)&&uu(su)},xz=function(a,b,c){if(P(548)&&(b===T.U.ra||b===T.U.xc)){var d=fi[F.D.xf];d&&(a[d]=c)}},Bz=function(a,b,c,d,e){if(!a)return e;var f=Bz(a.Ye,b,c,d,e);return function(){zz(b, -a,c,d,f,!0)}},Cz=function(a){var b=void 0;switch(U(a,I.J.ba)){case T.U.ud:b=[mw];break;case T.U.ra:P(538)&&(b=[Tw]);break;case T.U.Td:b=[Yw];break;case T.U.xc:b=[bx];break;case T.U.tb:b=[xx];break;case T.U.Bb:b=[Tx];break;case T.U.Cb:b=[Wx]}if(!b)return!1;var c={},d={};vz.apply(null,[a,{et:function(e,f,g){if(g.find(function(h){return h.isPrimary&&(h.status===0||h.status===1)}))e.M.onSuccess();else Az(e),e.M.onFailure()},ht:function(e,f){var g=yz(f.pb,e,f.endpoint.endpoint,f.Ak instanceof yw?2:f.Ak instanceof -Fw?4:f.Ak instanceof cw?3:1),h=g.bc,l=g.oi;h&&(c[f.pb]=h);l&&(d[f.pb]=l)},Eo:function(e,f){c[f.pb]&&(Jl(c[f.pb]),delete c[f.pb]);d[f.pb]&&(Kl(d[f.pb],f.pb),delete d[f.pb])},ft:function(e,f,g,h,l){if(l.length&&U(e,I.J.ba)!==T.U.tb){var n=l[l.length-1];dx(n.pb,e,n.endpoint.endpoint)}}}].concat(za(b)));return!0},yz=function(a,b,c,d){var e;switch(d){case 2:e=21;break;case 3:U(b,I.J.ba)===T.U.ra&&U(b,I.J.Ha)&&c!==9&&(e=20);break;case 4:e=20}if(!e)return{};var f;var g=Pf(e,-1);nx(b,ru)?(px(a,b,g),f={Vt:kx}): -f={bc:ox(b,g)};var h=f,l=h.bc,n=h.Vt;l==null||ix(l);return{bc:l,oi:n}},Dz=function(a,b,c,d,e){var f=function(t){d.pe=t;d.po(function(u){zz(a,b,oa(Object,"assign").call(Object,{},c,u),e)})},g=U(a,I.J.ba);if(g!==T.U.Bb)f(17);else{var h=d.Zo,l=d.eh,n=d.encryptionKeyString,p=oa(Object,"assign").call(Object,{},c,b.Mg);xz(p,g,b.endpoint);var q=mu(p),r=b.baseUrl+"?"+q+h.join("");Nx(r,l,function(){dx(r,a,b.endpoint);e==null||e()},f,n)}},Ez=function(a){var b=U(a,I.J.ba);b===T.U.Ka?ry(a):(fl()&&b===T.U.ra&& -lz(a.M.eventId),Xv(a,function(c){var d=Cx(a);W(a,I.J.xj,d);d&&oa(Object,"assign").call(Object,c,Bx(a,d));Zx(3,a.eventName);if(!Cz(a))for(var e=new qx(a),f=gx(a),g=rx(e,f.length),h=Tb(a.M.onFailure),l=m(f),n=l.next();!n.done;n=l.next()){var p=n.value;d?Dz(a,p,c,d,g):zz(a,p,c,g,Bz(p.Ye,a,c,g,function(){Az(a);h==null||h()}),!!p.Ye)}}))};var Fz={pj:{op:"1",Gq:"2",kr:"3"}}; -var Gz={},Hz=Object.freeze((Gz[F.D.mh]=1,Gz[F.D.nh]=1,Gz[F.D.wd]=1,Gz[F.D.xd]=1,Gz[F.D.Nc]=1,Gz[F.D.Di]=1,Gz[F.D.Ei]=1,Gz[F.D.Ml]=1,Gz[F.D.ph]=1,Gz[F.D.Cf]=1,Gz[F.D.Df]=1,Gz[F.D.Ef]=1,Gz[F.D.Ga]=1,Gz[F.D.Ff]=1,Gz[F.D.Bd]=1,Gz[F.D.nc]=1,Gz[F.D.Nf]=1,Gz[F.D.Hb]=1,Gz[F.D.zb]=1,Gz[F.D.Pb]=1,Gz[F.D.lb]=1,Gz[F.D.Ya]=1,Gz[F.D.Ee]=1,Gz[F.D.sh]=1,Gz[F.D.th]=1,Gz[F.D.uh]=1,Gz[F.D.Ua]=1,Gz[F.D.Yp]=1,Gz[F.D.cq]=1,Gz[F.D.Ge]=1,Gz[F.D.Oi]=1,Gz[F.D.Rf]=1,Gz[F.D.Va]=1,Gz[F.D.Uc]=1,Gz[F.D.Vc]=1,Gz[F.D.rb]=1,Gz[F.D.Jd]= -1,Gz[F.D.Kd]=1,Gz[F.D.Ld]=1,Gz[F.D.Me]=1,Gz[F.D.Ca]=1,Gz[F.D.Za]=1,Gz[F.D.im]=1,Gz[F.D.jm]=1,Gz[F.D.km]=1,Gz[F.D.lm]=1,Gz[F.D.Rb]=1,Gz[F.D.Md]=1,Gz[F.D.Nd]=1,Gz[F.D.Od]=1,Gz[F.D.Pd]=1,Gz[F.D.eg]=1,Gz[F.D.Oa]=1,Gz[F.D.Yc]=1,Gz[F.D.Qd]=1,Gz[F.D.uc]=1,Gz[F.D.vc]=1,Gz[F.D.ab]=1,Gz[F.D.Pa]=1,Gz)),Iz={},Jz=(Iz[F.D.Qc]=1,Iz[F.D.Zp]=1,Iz[F.D.Fe]=1,Iz[F.D.Ci]=1,Iz.oref=1,Iz);var Kz,Lz; -function Mz(a,b){var c=a[If.Sb],d=b&&b.event;if(!c)throw Error("Error: No function name given for function call.");var e=Lz[c],f={},g;for(g in a)a.hasOwnProperty(g)&&(Wb(g,"vtp_")?f[e!==void 0?g:g.substring(4)]=a[g]:$f(15)&&g===If.Qq.toString()&&(f[e!==void 0?"vtp_gtmGeneratedTaggingMetadata":g]=a[g]));Kf(61)&&e&&(f.vtp_extraExperimentIds=!0);e&&d&&d.cachedModelValues&&(f.vtp_gtmCachedValues=d.cachedModelValues);b&&e&&(f.vtp_gtmEntityIndex=b.index,f.vtp_gtmEntityName=b.name);return e!==void 0?e(f): -Kz(c,f,b)}var Oz=function(){var a=Nz;P(585)&&el.H&&!a.H&&(a.H=!0,Tk("abl","1"),en())},Nz=new function(){this.H=!1};var Pz=function(a,b,c,d){this.H=a;this.index=b;this.tags=c;this.macros=d;this.name=String(this.H[If.dn]||"")}; -Pz.prototype.evaluate=function(a,b){if(!b[this.index]&&!a.isBlocked(this.H)){b[this.index]=!0;this.H[If.Al.toString()]&&Oz();var c=this.name,d;try{var e={},f;for(f in this.H)this.H.hasOwnProperty(f)&&(e[f]=uo(this.H[f],a,this.tags,this.macros,b));e.vtp_gtmEventId=a.id;a.priorityId&&(e.vtp_gtmPriorityId=a.priorityId);var g=d=Mz(e,{event:a,index:this.index,type:2,name:c});e[If.ol]&&typeof g==="string"&&(g=e[If.ol]===1?g.toLowerCase():g.toUpperCase());e.hasOwnProperty(If.jh)&&(g=$f(19)?e[If.jh]===1? -Xf(g,"PERIOD"):e[If.jh]===2?Xf(g,"COMMA"):Xf(g,"AUTOMATIC"):e[If.jh]===1?Xf(g,"PERIOD"):Xf(g,"COMMA"));e.hasOwnProperty(If.ql)&&g===null&&(g=e[If.ql]);e.hasOwnProperty(If.sl)&&g===void 0&&(g=e[If.sl]);e.hasOwnProperty(If.qp)&&(g=Mb(g));e.hasOwnProperty(If.rl)&&g===!0&&(g=e[If.rl]);e.hasOwnProperty(If.pl)&&g===!1&&(g=e[If.pl]);d=g}catch(h){a.logMacroError&&a.logMacroError(h,Number(this.index),c),d=!1}b[this.index]=!1;return d}};Pz.prototype.Lg=function(){return oa(Object,"assign").call(Object,{},this.H)};var Qz=function(a,b,c){this.H=a;this.tags=b;this.macros=c};Qz.prototype.evaluate=function(a,b){try{for(var c={},d=m(Object.keys(this.H)),e=d.next();!e.done;e=d.next()){var f=e.value;c[f]=f==="function"?this.H[f]:uo(this.H[f],a,this.tags,this.macros,b)}return so(c)}catch(g){JSON.stringify(this.H)}return 2};Qz.prototype.Lg=function(){return oa(Object,"assign").call(Object,{},this.H)};var Rz=function(a,b){this.index=b;this.O=[];this.T=[];this.K=[];this.H=[];this.name="";for(var c=m(a),d=c.next();!d.done;d=c.next()){var e=m(d.value),f=e.next().value,g=ya(e),h=f,l=g;h==="if"?this.O=l:h==="unless"?this.T=l:h==="add"?this.K=l:h==="block"?this.H=l:h==="ruleName"&&(this.name=l[0])}}; -Rz.prototype.evaluate=function(a,b){var c=Sz(this,b),d=[],e=[];c?(d.push.apply(d,za(this.K)),e.push.apply(e,za(this.H))):c===null&&e.push.apply(e,za(this.H));return{firingTags:d,blockingTags:e}}; -var Sz=function(a,b){for(var c=m(a.O),d=c.next();!d.done;d=c.next()){var e=b(d.value);if(e===0)return!1;if(e===2)return null}for(var f=m(a.T),g=f.next();!g.done;g=f.next()){var h=b(g.value);if(h===2)return null;if(h===1)return!1}return!0};Rz.prototype.getName=function(){return this.name};var Tz=function(a,b,c,d){this.Ia=a;this.index=b;this.tags=c;this.macros=d;this.N=String(this.Ia[If.Sb]);this.name=String(this.Ia[If.dn]||"");this.tagId=Number(this.Ia[If.Gj])}; -Tz.prototype.evaluate=function(a,b,c){c=c===void 0?{}:c;var d,e=c;e=e===void 0?{}:e;var f={},g;for(g in this.Ia)this.Ia.hasOwnProperty(g)&&(f[g]=uo(this.Ia[g],a,this.tags,this.macros,[]));d=oa(Object,"assign").call(Object,{},f,e);d.vtp_gtmTagId=this.tagId;this.Ia[If.Al.toString()]&&Oz();Mz(d,{event:a,index:this.index,type:1,name:this.name})};Tz.prototype.Lg=function(){return oa(Object,"assign").call(Object,{},this.Ia)}; -var Uz=function(a,b){if(a.Ia[If.Dn])return uo(a.Ia[If.Dn],b,a.tags,a.macros,[])},Vz=function(a,b){if(a.Ia[If.On])return uo(a.Ia[If.On],b,a.tags,a.macros,[])},Wz=function(a,b){var c=a.Ia[If.pp];if(c)return uo(c,b,a.tags,a.macros,[])};Tz.prototype.getMetadata=function(a){return uo(this.Ia[If.METADATA],a,this.tags,this.macros,[])};Tz.prototype.getName=function(){return this.name};var Xz=function(){this.macros=[];this.rules=[];this.predicates=[];this.tags=[];this.Gk=[]};Xz.prototype.getRules=function(){return this.rules};var Yz=new Xz;function Zz(a,b,c,d){var e=ad(),f;if(e===1)a:{var g=E(3);g=g.toLowerCase();for(var h="https://"+g,l="http://"+g,n=1,p=A.getElementsByTagName("script"),q=0;q0&&g.push(["bcs",c.join(".")]);e.length>0&&g.push(["bet",e.join(".")]);return g})},aA;function bA(){aA||(aA=new $z)};function cA(a,b,c,d,e){if(!nm(a)){d.loadExperiments=Ui();rm(a,d,e);var f=dA(a),g=function(){Yl().container[a]&&(Yl().container[a].state=3);eA()},h={destinationId:a,endpoint:0};if(sj()){var l=tj(),n=l+"/"+fA(f,a);Pl(h,n,void 0,function(){gA(a,n,l+"/"+f,h,g)})}else{var p=Wb(a,"GTM-"),q=zj(),r=c?"/gtag/js":"/gtm.js",t=hA(b,r+f,a);if(!t){var u=E(3)+r;q&&Qc&&p&&(u=Qc.replace(/^(?:https?:\/\/)?/i,"").split(/[?#]/)[0]);t=Zz("https://","http://",u+f)}Pl(h,t,void 0,g)}}} -function eA(){um()||Jb(vm(),function(a,b){iA(a,b.transportUrl,b.context);R(92)})}function iA(a,b,c,d){if(!pm(a))if(c.loadExperiments||(c.loadExperiments=Ui()),um())tm(a,b,c,d);else{sm(a,c,d);var e={destinationId:a,endpoint:0};if(sj()){var f=tj(),g="gtd"+dA(a,!0),h=f+"/"+fA(g,a);Pl(e,h,void 0,function(){gA(a,h,f+"/"+g,e)})}else{var l="/gtag/destination"+dA(a,!0),n=hA(b,l,a);n||(n=Zz("https://","http://",E(3)+l));Pl(e,n)}}} -function gA(a,b,c,d,e){if(P(413)){bA();var f=aA;if(el.K){var g=w.performance,h=-1;if(g&&g.getEntriesByType){var l=nj(b).href,n=g.getEntriesByName(l).pop();if(!n)for(var p=g.getEntriesByType("resource"),q=0;q=0&&R(2);var e=d&&Vb(Nb(d),tA),f={};return function(g){var h=g&&g[If.Sb];if(!h||typeof h!=="string")return!0;h=h.replace(/^_*/,"");if(f[h]!==void 0)return f[h];var l=Mk(27,function(){return{}})[h]||[],n=!0;a&&(n=n&&wA(h,l,c));var p=!1;d&&(p=xA(h,l,e));var q=!n||p;!q&&(l.indexOf("sandboxedScripts")===-1||c&&c.indexOf("sandboxedScripts")!==-1?0:Hb(e,uA))&&(q=!0);return f[h]=q}} -function wA(a,b,c){if(c.indexOf(a)<0)if(b&&b.length>0)for(var d=0;d=0;if(d)return d;var e=Hb(c,b||[]);e&&R(10);return e};function yA(a){for(var b=[],c=[],d=zA(a),e=m(Yz.getRules()),f=e.next();!f.done;f=e.next()){for(var g=f.value.evaluate(a,d),h=g.firingTags,l=g.blockingTags,n=0;n=0)&&c.push(e.listener)});return c};function DA(a,b,c){return{entityType:a,indexInOriginContainer:b,nameInOriginContainer:c,originContainerId:E(5),originCId:em()}};function EA(a,b){if(data.entities){var c=data.entities[a];if(c)return c[b]}};var GA=function(a,b){this.H=!1;this.T=[];this.eventData={tags:[]};this.Z=!1;this.K=this.O=0;FA(this,a,b)},HA=function(a,b,c,d){if(Zi.hasOwnProperty(b)||b==="__zone")return-1;var e={};Id(d)&&(e=Jd(d,e));e.id=c;e.status="timeout";return a.eventData.tags.push(e)-1},IA=function(a,b,c,d){var e=a.eventData.tags[b];e&&(e.status=c,e.executionTime=d)},JA=function(a){if(!a.H){for(var b=a.T,c=0;c=a.O&&JA(a)})},LA=function(a){a.Z=!0;a.K>=a.O&&JA(a)};function MA(){return w[NA()]} -function NA(){return w.GoogleAnalyticsObject||"ga"}var QA=new function(){this.H={}};function RA(){a:{var a=E(5);}} -function SA(a,b){return function(){var c=MA(),d=c&&c.getByName&&c.getByName(a);if(d){var e=d.get("sendHitTask");d.set("sendHitTask",function(f){var g=f.get("hitPayload"),h=f.get("hitCallback"),l=g.indexOf("&tid="+b)<0;l&&(f.set("hitPayload",g.replace(/&tid=UA-[0-9]+-[0-9]+/,"&tid="+b),!0),f.set("hitCallback",void 0,!0));e(f);l&&(f.set("hitPayload",g,!0),f.set("hitCallback",h,!0),f.set("_x_19",void 0,!0),e(f))})}}};var VA=["es","1"],WA=function(){var a=this;this.eventData={};this.H={};Qy(function(b){var c;var d=b.eventId,e=b.rf;if(a.eventData[d]){var f=[];a.H[d]||f.push(VA);f.push.apply(f,za(a.eventData[d]));e&&(a.H[d]=!0);c=f}else c=[];return c})},XA;function YA(a,b){var c;if((c=XA)!=null&&el.K){var d=c.eventData,e;e=b.match(/^(gtm|gtag)\./)?encodeURIComponent(b):"*";d[a]=[["e",e],["eid",String(a)]];Ry();Py(a)}};var ZA=function(){var a=this;this.H={};this.K={};Qy(function(b){var c=b.eventId,d=b.rf,e=[],f=a.H[c]||[];f.length&&e.push(["tr",f.join(".")]);var g=a.K[c]||[];g.length&&e.push(["ti",g.join(".")]);d&&(delete a.H[c],delete a.K[c]);return e})},$A; -function aB(a,b,c){$A||($A=new ZA);var d=$A;if(el.K&&b){var e=cl(b);d.H[a]=d.H[a]||[];d.H[a].push(c+e);var f=b[If.Sb];if(!f)throw Error("Error: No function name given for function call.");var g=(Lz[f]?"1":"2")+e;d.K[a]=d.K[a]||[];d.K[a].push(g);Ry();Py(a)}};function bB(a,b,c){c=c===void 0?!1:c;cB().addRestriction(0,a,b,c)}function dB(){var a=em();return cB().getRestrictions(0,a)}function eB(a,b,c){c=c===void 0?!1:c;cB().addRestriction(1,a,b,c)}function fB(){var a=em();return cB().getRestrictions(1,a)}var gB=function(){this.container={};this.H={}},hB=function(a,b){var c=a.container[b];c||(c={_entity:{internal:[],external:[]},_event:{internal:[],external:[]}},a.container[b]=c);return c}; -gB.prototype.addRestriction=function(a,b,c,d){d=d===void 0?!1:d;if(!d||!this.H[b]){var e=hB(this,b);a===0?d?e._entity.external.push(c):e._entity.internal.push(c):a===1&&(d?e._event.external.push(c):e._event.internal.push(c))}}; -gB.prototype.getRestrictions=function(a,b){var c=hB(this,b);if(a===0){var d,e;return[].concat(za((c==null?void 0:(d=c._entity)==null?void 0:d.internal)||[]),za((c==null?void 0:(e=c._entity)==null?void 0:e.external)||[]))}if(a===1){var f,g;return[].concat(za((c==null?void 0:(f=c._event)==null?void 0:f.internal)||[]),za((c==null?void 0:(g=c._event)==null?void 0:g.external)||[]))}return[]}; -gB.prototype.getExternalRestrictions=function(a,b){var c=hB(this,b),d,e;return a===0?(c==null?void 0:(d=c._entity)==null?void 0:d.external)||[]:(c==null?void 0:(e=c._event)==null?void 0:e.external)||[]};gB.prototype.removeExternalRestrictions=function(a){var b=hB(this,a);b._event&&(b._event.external=[]);b._entity&&(b._entity.external=[]);this.H[a]=!0};function cB(){return $n("r",function(){return new gB})};function iB(a,b,c,d){var e=Yz.tags[a],f=jB(a,b,c,d);if(!f)return null;var g=Uz(e,c);if(g&&g.length){var h=g[0];f=iB(h.index,{onSuccess:f,onFailure:h.lo===1?b.terminate:f,terminate:b.terminate},c,d)}return f} -function jB(a,b,c,d){function e(){function y(){Vj(3);var S=Qb()-J;DA(1,a,f.getName());aB(c.id,g,"7");IA(c.gd,D,"exception",S);fl()&&pz(c,g,sy.W.Cj);H||(H=!0,l())}if(f.Ia[If.Zq])l();else{var z=Wz(f,c);if(z!=null)for(var C=0;C0}; -function rB(a,b){if(!BA)return!1;var c=a["gtm.triggers"]&&String(a["gtm.triggers"]),d=CA(a.event,c?String(c).split(","):[]);if(!d.length)return!1;for(var e=0;ee?1:dh?1:g0?2:1,g,h,l=(c==null?void 0:(h=c.originatingEntity)==null?void 0:h.originContainerId)||"";g=l?Wb(l,"GTM-")?3:2:1;if(!a)d.H={type:f,source:g,params:b};else if(d.H){R(184);var n=!1;d.H.source===g||d.H.source!==3&&g!==3||(Tk("idcs","1"),n=!0);d.H.type!==2&&f!==2||R(186);var p;if(p=d.H.type===2&&f===2)a:{var q=d.H.params,r=Object.keys(q),t=Object.keys(b);if(r.length!==t.length)p=!0;else{for(var u=m(r),v=u.next();!v.done;v= -u.next()){var x=v.value;if(!b.hasOwnProperty(x)||q[x]!==b[x]){p=!0;break a}}p=!1}}p&&(Tk("idcc","1"),n=!0);n&&(en(),d.H.ds=!0)}}},OB=new function(){this.H=void 0};var RB=function(a){var b=QB;(!el.H||Wb(E(5),"GTM-")?0:a===void 0)&&b.H===0&&(Tk("mcc","1"),b.H=1)},QB=new function(){var a=this;this.H=0;Tk("ncc",function(){if(Kf(45)&&a.H!==2)return"1"})};var SB=/^(?:AW|DC|G|GF|GT|HA|MC|UA)$/,TB=/\s/; -function UB(a,b){if(Cb(a)){a=Ob(a);var c=a.indexOf("-");if(!(c<0)){var d=a.substring(0,c);if(SB.test(d)){var e=a.substring(c+1),f;if(b){var g=function(n){var p=n.indexOf("/");return p<0?[n]:[n.substring(0,p),n.substring(p+1)]};f=g(e);if(d==="DC"&&f.length===2){var h=g(f[1]);h.length===2&&(f[1]=h[0],f.push(h[1]))}}else{f=e.split("/");for(var l=0;l0&&(Uk("tdc",!0),a.K=w.setTimeout(function(){en();a.H={};a.K=void 0},a.T))}}; -aC.prototype.bind=function(){var a=this;Tk("tdc",function(){a.K&&(w.clearTimeout(a.K),a.K=void 0);var b=[],c;for(c in a.H)a.H.hasOwnProperty(c)&&b.push(c+"*"+a.H[c].join("."));return b.length?b.join("!"):void 0},!1)}; -var cC=function(a,b){var c={},d;for(d in b)b.hasOwnProperty(d)&&(c[d]=!0);for(var e in a)a.hasOwnProperty(e)&&(c[e]=!0);return c},dC=function(a,b,c,d,e){d=d===void 0?{}:d;e=e===void 0?"":e;if(b===c)return[];var f=function(t,u){var v;Gd(u)==="object"?v=u[t]:Gd(u)==="array"&&(v=u[t]);return v===void 0?$B[t]:v},g=cC(b,c),h;for(h in g)if(g.hasOwnProperty(h)){var l=(e?e+".":"")+h,n=f(h,b),p=f(h,c),q=Gd(n)==="object"||Gd(n)==="array",r=Gd(p)==="object"||Gd(p)==="array";if(q&&r)dC(a,n,p,d,l);else if(q|| -r||n!==p)d[l]=!0}return Object.keys(d)},eC=new aC;var fC=function(a,b,c,d){this.K=Qb();this.H=b;this.args=c;this.messageContext=d;this.type=a},gC=function(){this.qb={};this.fb={};this.K={};this.O=null;this.eb={};this.H=!1;this.status=1};function hC(a,b){return arguments.length===1?iC("set",a):iC("set",a,b)}function jC(a,b){return arguments.length===1?iC("config",a):iC("config",a,b)}function kC(a,b,c){c=c||{};c[F.D.Nd]=a;return iC("event",b,c)}function iC(){return arguments};var lC=function(a,b,c,d,e,f,g,h,l,n,p,q){this.eventId=a;this.priorityId=b;this.Ma=c;this.qb=d;this.eb=e;this.Ec=f;this.Hg=g;this.fb=h;this.eventMetadata=l;this.onSuccess=n;this.onFailure=p;this.isGtmEvent=q},mC=function(a){var b={onSuccess:Ab,onFailure:Ab};b=b===void 0?{}:b;var c,d,e,f,g,h,l,n,p,q,r,t,u,v,x,y,z,C,D,H,G,J,S,V;return new lC((u=(c=b)==null?void 0:c.eventId)!=null?u:a.eventId,(v=(d=b)==null?void 0:d.priorityId)!=null?v:a.priorityId,(x=(e=b)==null?void 0:e.Ma)!=null?x:a.Ma,(y=(f=b)==null? -void 0:f.qb)!=null?y:a.qb,(z=(g=b)==null?void 0:g.eb)!=null?z:a.eb,(C=(h=b)==null?void 0:h.Ec)!=null?C:a.Ec,(D=(l=b)==null?void 0:l.Hg)!=null?D:a.Hg,(H=(n=b)==null?void 0:n.fb)!=null?H:a.fb,(G=(p=b)==null?void 0:p.eventMetadata)!=null?G:a.eventMetadata,(J=(q=b)==null?void 0:q.onSuccess)!=null?J:a.onSuccess,(S=(r=b)==null?void 0:r.onFailure)!=null?S:a.onFailure,(V=(t=b)==null?void 0:t.isGtmEvent)!=null?V:a.isGtmEvent)},nC=function(a,b){var c=[];switch(b){case 3:c.push(a.Ma);c.push(a.qb);c.push(a.eb); -c.push(a.Ec);c.push(a.fb);break;case 2:c.push(a.Ma);break;case 1:c.push(a.qb);c.push(a.eb);c.push(a.Ec);c.push(a.fb);break;case 4:c.push(a.Ma),c.push(a.qb),c.push(a.eb),c.push(a.Ec)}return c},Q=function(a,b,c,d){for(var e=m(nC(a,d===void 0?3:d)),f=e.next();!f.done;f=e.next()){var g=f.value;if(g[b]!==void 0)return g[b]}return c},oC=function(a){for(var b={},c=nC(a,4),d=m(c),e=d.next();!e.done;e=d.next())for(var f=Object.keys(e.value),g=m(f),h=g.next();!h.done;h=g.next())b[h.value]=1;return Object.keys(b)}; -lC.prototype.getMergedValues=function(a,b,c){b=b===void 0?3:b;var d={},e=!1,f=function(n){Id(n)&&Jb(n,function(p,q){e=!0;d[p]=q})};c&&f(c);var g=nC(this,b);g.reverse();for(var h=m(g),l=h.next();!l.done;l=h.next())f(l.value[a]);return e?d:void 0}; -var pC=function(a){for(var b=[F.D.Kf,F.D.Gf,F.D.Hf,F.D.If,F.D.Jf,F.D.Lf,F.D.Mf],c=nC(a,3),d=m(c),e=d.next();!e.done;e=d.next()){for(var f=e.value,g={},h=!1,l=m(b),n=l.next();!n.done;n=l.next()){var p=n.value;f[p]!==void 0&&(g[p]=f[p],h=!0)}var q=h?g:void 0;if(q)return q}return{}},qC=function(a,b){this.eventId=a;this.priorityId=b;this.Ma={};this.qb={};this.eb={};this.Ec={};this.Hg={};this.fb={};this.eventMetadata={};this.isGtmEvent=!1;this.onSuccess=function(){};this.onFailure=function(){}},rC=function(a, -b){a.Ma=b;return a},sC=function(a,b){a.qb=b;return a},tC=function(a,b){a.eb=b;return a},uC=function(a,b){a.Ec=b;return a},vC=function(a,b){a.Hg=b;return a},wC=function(a,b){a.fb=b;return a},xC=function(a,b){a.eventMetadata=b||{};return a},yC=function(a,b){a.onSuccess=b;return a},zC=function(a,b){a.onFailure=b;return a},AC=function(a,b){a.isGtmEvent=b;return a},BC=function(a){return new lC(a.eventId,a.priorityId,a.Ma,a.qb,a.eb,a.Ec,a.Hg,a.fb,a.eventMetadata,a.onSuccess,a.onFailure,a.isGtmEvent)};function CC(a,b){Jb(a,function(c){var d;if(d=c.charAt(0)==="_"){var e;a:switch(c){case F.D.Qb:case F.D.Sf:case F.D.Ch:e=!0;break a;default:e=!1}d=!e}d&&(b&&b(c),delete a[c])})};var DC=function(){var a=this;this.H={};Qy(function(b){var c=b.eventId,d=b.rf,e=[],f=a.H[c]||[];f.length&&e.push(["epr",f.join(".")]);d&&delete a.H[c];return e})},FC=function(a,b,c){var d=EC;el.K&&a!==void 0&&(d.H[a]=d.H[a]||[],d.H[a].push(c+b),Ry(),Py(a))},EC;function GC(){EC||(EC=new DC)};var HC=function(){this.destinations={};this.H={};this.commands=[]},IC=function(a,b){return a.destinations[b.destinationId]=a.destinations[b.destinationId]||new gC},JC=function(a,b,c,d){if(d.H){var e=IC(a,d.H),f=e.O;if(f){var g=Jd(c,null),h=Jd(e.qb[d.H.destinationId],null),l=Jd(e.eb,null),n=Jd(e.fb,null),p=Jd(a.H,null),q={};if(el.K)try{q=Jd(mA.H,null)}catch(x){R(72)}var r=d.H.prefix,t=function(x){var y=d.messageContext.eventId;GC();FC(y,r,x)},u=BC(AC(zC(yC(xC(vC(uC(wC(tC(sC(rC(new qC(d.messageContext.eventId, -d.messageContext.priorityId),g),h),l),n),p),q),d.messageContext.eventMetadata),function(){if(t){var x=t;t=void 0;x("2");if(d.messageContext.onSuccess)d.messageContext.onSuccess()}}),function(){if(t){var x=t;t=void 0;x("3");if(d.messageContext.onFailure)d.messageContext.onFailure()}}),!!d.messageContext.isGtmEvent)),v=function(){try{var x=d.messageContext.eventId;GC();FC(x,r,"1");var y=d.H.id,z=eC;if(el.H&&b===F.D.xa){var C,D=(C=UB(y))==null?void 0:C.ids;if(!(D&&D.length>1)){var H,G=Rc("google_tag_data", -{});G.td||(G.td={});H=G.td;var J=Jd(u.Ec);Jd(u.Ma,J);var S=[],V;for(V in H)H.hasOwnProperty(V)&&dC(z,H[V],J).length&&S.push(V);S.length&&(bC(z,y,S),vb("TAGGING",YB[A.readyState]||14));H[y]=J}}f(d.H.id,b,d.K,u)}catch(pa){var da=d.messageContext.eventId;GC();FC(da,r,"4")}};b==="gtag.get"?v():Um(e.T,v)}}},KC=function(a,b){if(b.type!=="require"){var c=void 0;b.type==="event"&&(c=b.args[1]);if(b.H)for(var d=IC(a,b.H).K[b.type]||[],e=0;e=0){if(f.xk=UB(h,b),f.xk){var l=cm();Fb(l,function(t){return function(u){return t.xk.destinationId===u}}(f))?d.push(h):e.push(h)}}else{var n=c.H[h]||[];f.Zj={};n.forEach(function(t){return function(u){t.Zj[u]=!0}}(f));for(var p=fm(),q=0;q=0&&c.splice(d,1)})},hD=function(a){Jb(eD.K,function(b,c){var d=c.indexOf(a);d>=0&&c.splice(d,1)})},eD=new function(){this.H={};this.K={}};function iD(a,b,c){var d=Jd(a,null);d.eventId=void 0;d.inheritParentConfig=void 0;Object.keys(b).some(function(f){return b[f]!==void 0})&&R(136);var e=Jd(b,null);Jd(c,e);cD(jC(fm()[0],e),a.eventId,d)}function jD(a,b,c){if(Kf(11)&&!c&&!a[F.D.Qd]){var d=Mk(10,function(){return!1});Kk(10,!0);PB(d,a,b);if(d)return!0}return!1};function kD(a,b){var c={},d=(c.event=a,c);b&&(d.eventModel=Jd(b,null),b[F.D.Qf]&&(d.eventCallback=b[F.D.Qf]),b[F.D.zh]&&(d.eventTimeout=b[F.D.zh]));return d} -function lD(a,b){var c=a&&a[F.D.Nd];c===void 0&&(c=pA(F.D.Nd,2),c===void 0&&(c="default"));if(Cb(c)||Array.isArray(c)){var d;d=b.isGtmEvent?Cb(c)?[c]:c:c.toString().replace(/\s+/g,"").split(",");var e=fD(d,b.isGtmEvent),f=e.qk,g=e.ct;if(g.length)for(var h=ZC(a),l=0;l2){if(a[2]!==void 0&&!Id(a[2])||a.length>3){d=void 0;break a}e=a[2]}var f=UB(a[1],b.isGtmEvent);if(f){d={target:f,params:e};break a}}d=void 0}var g=d;if(g){var h=g.target,l=g.params,n;a:{if(!Kf(7)){var p=hm(im());if(wm(p)){var q=p.parent,r=q.isDestination;n={mt:hm(q),Xs:r};break a}}n=void 0}var t=n,u=t==null?void 0:t.mt,v=t==null?void 0:t.Xs;YA(c.eventId,"gtag.config");var x=h.destinationId;if(h.he()? -cm().indexOf(x)!==-1:fm().indexOf(x)!==-1)a:{if(u&&(R(128),v&&R(130),b.inheritParentConfig)){var y;var z=Lk(12);if(z)iD(b,z,l),y=!1;else{var C=Lk(11);!l[F.D.Qd]&&Kf(11)&&C||Kk(11,Jd(l,null));y=!0}y&&u.containers&&u.containers.join(",");break a}if(P(571)){var D=!Kf(45),H=!Wb(h.id,"GTM-");D&&H&&(Object.keys(l).length===0?jv(dv.X.bl):jv(dv.X.fl),Lm()&&jv(dv.X.al),Lk(31)&&jv(dv.X.il))}var G=QB;el.H&&(G.H===1&&(Pk.H.mcc=!1),G.H=2);if(!jD(l,b,h.he())){aD.H||R(43);if(!b.noTargetGroup){var J=h.id;if(h.he()){hD(J); -var S=l[F.D.Fh]||"default",V=eD;S=String(S).split(",");for(var da=0;da2){if(!Id(a[2])&&a[2]!==void 0||a.length>3)return;d=a[2]}var e=kD(c,d),f=YC(a,b),g=f.eventId,h=f.priorityId;e["gtm.uniqueEventId"]=g;h&&(e["gtm.priorityId"]=h);if(c=== -"optimize.callback")return e.eventModel=e.eventModel||{},e;var l=lD(d,b);if(l){for(var n=l.qk,p=l.Cr,q=p.map(function(J){return J.id}),r=p.map(function(J){return J.destinationId}),t=n.map(function(J){return J.id}),u=m(cm()),v=u.next();!v.done;v=u.next()){var x=v.value;r.indexOf(x)<0&&t.push(x)}YA(g,c);for(var y=m(t),z=y.next();!z.done;z=y.next()){var C=z.value,D=Jd(b,null),H=Jd(d,null);delete H[F.D.Qf];var G=D.eventMetadata||{};G.hasOwnProperty(I.J.Ud)||(G[I.J.Ud]=!D.fromContainerExecution);G[I.J.uj]= -q.slice();G[I.J.wg]=r.slice();D.eventMetadata=G;QC(c,H,C,D)}e.eventModel=e.eventModel||{};q.length>0?e.eventModel[F.D.Nd]=q.join(","):delete e.eventModel[F.D.Nd];aD.H||R(43);b.noGtmEvent===void 0&&b.eventMetadata&&b.eventMetadata[I.J.Mn]&&(b.noGtmEvent=!0);e.eventModel[F.D.Uc]&&(b.noGtmEvent=!0);return b.noGtmEvent?void 0:e}}},mD.get=function(a,b){R(53);if(a.length===4&&Cb(a[1])&&Cb(a[2])&&Bb(a[3])){var c=UB(a[1],b.isGtmEvent),d=String(a[2]),e=a[3];if(c){aD.H||R(43);var f=ZC();if(Fb(cm(),function(h){return c.destinationId=== -h})){YC(a,b);var g={};Jd((g[F.D.Uf]=d,g[F.D.Tf]=e,g),null);RC(d,function(h){gd(function(){e(h)})},c.id,b)}else iA(c.destinationId,f,{source:4,fromContainerExecution:b.fromContainerExecution})}}},mD.js=function(a,b){var c;if(a.length===2&&a[1].getTime){aD.H=!0;var d=YC(a,b),e=d.eventId,f=d.priorityId,g={};c=(g.event="gtm.js",g["gtm.start"]=a[1].getTime(),g["gtm.uniqueEventId"]=e,g["gtm.priorityId"]=f,g)}else c=void 0;return c},mD.policy=function(a){if(a.length===3&&Cb(a[1])&&Bb(a[2])){if(Dx(a[1],a[2]), -R(74),a[1]==="all"){R(75);var b=!1;try{b=a[2](E(5),"unknown",{})}catch(c){}b||R(76)}}else R(73)},mD.reset_target_config=function(a,b){if($C(b)&&a.length===2&&Cb(a[1])){var c=UB(a[1],!0);c&&VC(c.destinationId)}},mD.set=function(a,b){var c=void 0;a.length===2&&Id(a[1])?c=Jd(a[1],null):a.length===3&&Cb(a[1])&&(c={},Id(a[2])||Array.isArray(a[2])?c[a[1]]=Jd(a[2],null):c[a[1]]=a[2]);if(c){Kk(31,!0);var d=YC(a,b),e=d.eventId,f=d.priorityId;Jd(c,null);E(5);var g=Jd(c,null);PC().H.push("set",[g],void 0,b); -c["gtm.uniqueEventId"]=e;f&&(c["gtm.priorityId"]=f);delete c.event;b.overwriteModelFields=!0;return c}},mD),oD={},pD=(oD.policy=!0,oD);var rD=function(a){if(qD(a))return a;this.value=a};rD.prototype.getUntrustedMessageValue=function(){return this.value};var qD=function(a){return!a||Gd(a)!=="object"||Id(a)?!1:"getUntrustedMessageValue"in a};rD.prototype.getUntrustedMessageValue=rD.prototype.getUntrustedMessageValue;var sD=function(){var a=this;this.loaded=!1;this.H=[];if(A.readyState==="complete")this.onLoad();else ed(w,"load",function(){return void a.onLoad()})};sD.prototype.onLoad=function(){if(!this.loaded){this.loaded=!0;for(var a=0;aa.Z&&(a.Z=D)}a.T=!1}}}return!b},ED= -function(){var a=wD;a.ia&&R(195);a.ia=!0;if(fl()){var b=!Kf(51),c=bz();$y(c,{stage:sy.W.ih});if(b){var d=az(c,{stage:sy.W.nl},sy.W.zi);d!==void 0&&(c.H.Y=d)}var e=a.H.length;bz().H.C=e}DD(a);if(fl()){var f=bz(),g=az(f,{stage:sy.W.jl},sy.W.ih);g!==void 0&&(f.H.B=g)}try{var h=w[E(19)],l=E(5),n=h.hide;if(n&&n[l]!==void 0&&n.end){n[l]=!1;var p=!0,q;for(q in n)if(n.hasOwnProperty(q)&&n[q]===!0){p=!1;break}p&&(n.end(),n.end=null)}}catch(r){E(5)}},FD=function(a,b){if(a.Z0){h=[];for(var l=0;lq)for(R(4),d.pruned=!0;this.length>q;)this.shift();var r=typeof p!=="boolean"||p;return DD(f)&&r};var g=c.slice(0).map(function(h){return a(h)});this.H.push.apply(this.H,g);Kf(51)||(fl()&&ez(),gd(GD));NB(function(){if(!d.gtmDom){d.gtmDom=!0;var h={};c.push((h.event="gtm.dom",h))}});uD(function(){if(!d.gtmLoad){d.gtmLoad=!0;var h={};c.push((h.event="gtm.load",h))}})}; -vD.prototype.push=function(a){return w[E(19)].push(a)};var wD=new vD;function CD(a,b){return a.messageContext.eventId-b.messageContext.eventId||a.messageContext.priorityId-b.messageContext.priorityId}function zD(a){if(a==null||typeof a!=="object")return!1;if(a.event)return!0;if(Kb(a)){var b=a[0];if(b==="config"||b==="event"||b==="js"||b==="get")return!0}return!1}function BD(a){return{message:a.message,messageContext:a.messageContext}}function HD(a,b,c){return xD(a,b,c)} -function ID(a,b){return yD(a,b)}function GD(){ED()}function JD(a){return wD.push(a)};var KD=function(){};KD.prototype.bind=function(){var a,b=nj(w.location.href);(a=b.hostname+b.pathname)&&Tk("dl",encodeURIComponent(a));var c;var d=E(5);if(d){var e=Kf(7)?1:0,f=om(),g=f&&f.fromContainerExecution?1:0,h=f&&f.source||0,l=E(6);c=d+";"+l+";"+g+";"+h+";"+e}else c=void 0;var n=c;n&&Tk("tdp",n);var p=Lp(!0);p!==void 0&&Tk("frm",String(p))};var LD=new KD;var MD=function(){this.H=Wk();this.K=void 0},ND=function(a,b){return Yk(a,function(c){return c.hb>0?b?c.hb+"_"+Vk(c):String(c.hb):void 0})}; -MD.prototype.bind=function(){var a=this;if(Eo()||el.H)Tk("csp",function(){var b=ND(a.H,!0);Zk(a.H);return b},!1),Tk("mde",function(){var b=bl.H,c=ND(b,!1);Zk(b);return c},!1),w.addEventListener("securitypolicyviolation",function(b){if(b.disposition==="enforce"){R(179);var c=kl(b.effectiveDirective);if(c){var d=c.Zg,e=c.Gg,f;a:{var g=b.blockedURI,h=il;if(el.H&&g){var l=hl(d,g);if(l){f=h.H[d][l];break a}}f=void 0}var n=f;if(n){var p;a:{try{var q=new URL(b.blockedURI),r=q.pathname.indexOf(";");p=r>= -0?q.origin+q.pathname.substring(0,r):q.origin+q.pathname;break a}catch(H){}p=void 0}var t=p;if(t){for(var u=m(n),v=u.next();!v.done;v=u.next()){var x=v.value;if(!x.Po){x.Po=!0;var y={eventId:x.eventId,priorityId:x.priorityId};if(Eo()){var z=y,C={type:1,blockedUrl:t,endpoint:x.endpoint,violation:b.effectiveDirective};if(Eo()){var D=Ko("TAG_DIAGNOSTICS",{eventId:z==null?void 0:z.eventId,priorityId:z==null?void 0:z.priorityId});D.tagDiagnostics=C;Do(D)}}OD(a,x.destinationId,x.endpoint,e)}}jl(d,b.blockedURI)}}}}})}; -var OD=function(a,b,c,d){$k(a.H,b,c,1,d);Uk("csp",!0);Uk("mde",!0);c!==61&&c!==56&&a.K===void 0&&(a.K=w.setTimeout(function(){a.H.hb>0&&en(!1);a.K=void 0},500))},PD=new MD;var QD=function(){this.sequenceNumber=0};QD.prototype.bind=function(){var a=this;RD(this);Tk("v","3");Tk("t","t");Tk("pid",function(){return String(ak(Wj.da.kh))});Tk("gtm",function(){return eu()});Tk("seq",function(){return String(++a.sequenceNumber)});Tk("exp",function(){return xp()})};var RD=function(a){if(ak(Wj.da.kh)===void 0){var b=function(){Zj(Wj.da.kh,Gb());a.sequenceNumber=0};b();hd(b,864E5)}else ck(Wj.da.kh,function(){a.sequenceNumber=0});a.sequenceNumber=0},SD=new QD;function TD(a){return function(){return w[a]}} -var UD={},VD=(UD[14]=function(){var a;return(a=w.crypto)==null?void 0:a.getRandomValues},UD[15]=function(){var a,b;return(a=w.crypto)==null?void 0:(b=a.subtle)==null?void 0:b.digest},UD[1]=TD("fetch"),UD[6]=TD("Map"),UD[2]=function(){return Math.random},UD[8]=function(){return oa(Object,"assign")},UD[9]=function(){return Object.entries},UD[10]=function(){return Object.fromEntries},UD[5]=TD("Promise"),UD[13]=TD("RegExp"),UD[3]=function(){return Nc.sendBeacon},UD[7]=TD("Set"),UD[12]=function(){return String.prototype.endsWith}, -UD[11]=function(){return String.prototype.startsWith},UD[4]=TD("XMLHttpRequest"),UD),WD={},XD=(WD[15]=!0,WD);var YD=/^(https?:)?\/\//; -function sE(){};function tE(){var a=Of(62)===void 0;if(Kf(62)||a&&E(5).indexOf("GTM-")!==0)Dx("detect_link_click_events",function(b,c,d){var e;return((e=d.options)==null?void 0:e.waitForTags)!==!0}),Dx("detect_form_submit_events",function(b,c,d){var e;return((e=d.options)==null?void 0:e.waitForTags)!==!0}),Dx("detect_youtube_activity_events",function(b,c,d){var e;return((e=d.options)==null?void 0:e.fixMissingApi)!==!0});a&&Kf(45)&&bB(em(),function(b){var c;c=b.entityId;if(c==="fls"||c==="flc"||c==="dest_dc")return!1; -var d="__"+c;return EA(d,5)||EA(d,6)||!(!Lz[d]||!Lz[d][5]&&!Lz[d][6])})};var uE=function(){this.H=this.gppString=void 0};uE.prototype.reset=function(){this.H=this.gppString=void 0};var vE=new uE;[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});mt({Nu:0,Mu:1,Ju:2,Eu:3,Ku:4,Fu:5,Lu:6,Hu:7,Iu:8,Du:9,Gu:10,Ou:11}).map(function(a){return Number(a)});mt({Qu:0,Ru:1,Pu:2}).map(function(a){return Number(a)});var wE=function(a,b,c,d){st.call(this);this.ae=b;this.fd=c;this.Vb=d;this.Ra=new Map;this.be=0;this.ma=new Map;this.Da=new Map;this.Z=void 0;this.K=a};wa(wE,st);wE.prototype.O=function(){delete this.H;this.Ra.clear();this.ma.clear();this.Da.clear();this.Z&&(ot(this.K,"message",this.Z),delete this.Z);delete this.K;delete this.Vb;st.prototype.O.call(this)}; -var xE=function(a){if(a.H)return a.H;a.fd&&a.fd(a.K)?a.H=a.K:a.H=Kp(a.K,a.ae);var b;return(b=a.H)!=null?b:null},zE=function(a,b,c){if(xE(a))if(a.H===a.K){var d=a.Ra.get(b);d&&d(a.H,c)}else{var e=a.ma.get(b);if(e&&e.pk){yE(a);var f=++a.be;a.Da.set(f,{ke:e.ke,Ur:e.xo(c),persistent:b==="addEventListener"});a.H.postMessage(e.pk(c,f),"*")}}},yE=function(a){a.Z||(a.Z=function(b){if(b.source===a.H)try{var c;c=a.Vb?a.Vb(b):void 0;if(c){var d=c.rt,e=a.Da.get(d);if(e){e.persistent||a.Da.delete(d);var f;(f= -e.ke)==null||f.call(e,e.Ur,c.payload)}}}catch(g){}},nt(a.K,"message",a.Z))};var DE=function(a,b){var c=b.listener,d=(0,a.__gpp)("addEventListener",c);d&&c(d,!0)},EE=function(a,b){(0,a.__gpp)("removeEventListener",b.listener,b.listenerId)},FE={xo:function(a){return a.listener},pk:function(a,b){var c={};return c.__gppCall={callId:b,command:"addEventListener",version:"1.1"},c},ke:function(a,b){var c=b.__gppReturn;a(c.returnValue,c.success)}},GE={xo:function(a){return a.listener},pk:function(a,b){var c={};return c.__gppCall={callId:b,command:"removeEventListener",version:"1.1", -parameter:a.listenerId},c},ke:function(a,b){var c=b.__gppReturn,d=c.returnValue.data;a==null||a(d,c.success)}};function HE(a){var b={};yf(a.data)?b=JSON.parse(a.data):b=a.data;return{payload:b,rt:b.__gppReturn.callId}} -var IE=function(a,b){var c;c=(b===void 0?{}:b).timeoutMs;st.call(this);this.caller=new wE(a,"__gppLocator",function(d){return typeof d.__gpp==="function"},HE);this.caller.Ra.set("addEventListener",DE);this.caller.ma.set("addEventListener",FE);this.caller.Ra.set("removeEventListener",EE);this.caller.ma.set("removeEventListener",GE);this.timeoutMs=c!=null?c:500};wa(IE,st);IE.prototype.O=function(){this.caller.dispose();st.prototype.O.call(this)}; -IE.prototype.addEventListener=function(a){var b=this,c=Ep(function(){a(JE,!0)}),d=this.timeoutMs===-1?void 0:setTimeout(function(){c()},this.timeoutMs);zE(this.caller,"addEventListener",{listener:function(e,f){clearTimeout(d);try{var g;var h;((h=e.pingData)==null?void 0:h.gppVersion)===void 0||e.pingData.gppVersion==="1"||e.pingData.gppVersion==="1.0"?(b.removeEventListener(e.listenerId),g={eventName:"signalStatus",data:"ready",pingData:{internalErrorState:1,gppString:"GPP_ERROR_STRING_IS_DEPRECATED_SPEC", -applicableSections:[-1]}}):Array.isArray(e.pingData.applicableSections)?g=e:(b.removeEventListener(e.listenerId),g={eventName:"signalStatus",data:"ready",pingData:{internalErrorState:2,gppString:"GPP_ERROR_STRING_EXPECTED_APPLICATION_SECTION_ARRAY",applicableSections:[-1]}});a(g,f)}catch(l){if(e==null?0:e.listenerId)try{b.removeEventListener(e.listenerId)}catch(n){a(KE,!0);return}a(LE,!0)}}})}; -IE.prototype.removeEventListener=function(a){zE(this.caller,"removeEventListener",{listener:function(){},listenerId:a})}; -var LE={eventName:"signalStatus",data:"ready",pingData:{internalErrorState:2,gppString:"GPP_ERROR_STRING_UNAVAILABLE",applicableSections:[-1]},listenerId:-1},JE={eventName:"signalStatus",data:"ready",pingData:{gppString:"GPP_ERROR_STRING_LISTENER_REGISTRATION_TIMEOUT",internalErrorState:2,applicableSections:[-1]},listenerId:-1},KE={eventName:"signalStatus",data:"ready",pingData:{gppString:"GPP_ERROR_STRING_REMOVE_EVENT_LISTENER_ERROR",internalErrorState:2,applicableSections:[-1]},listenerId:-1};function ME(a){var b;if(!(b=a.pingData.signalStatus==="ready")){var c=a.pingData.applicableSections;b=!c||c.length===1&&c[0]===-1}if(b){vE.gppString=a.pingData.gppString;var d=a.pingData.applicableSections.join(",");vE.H=d}}function NE(){try{var a=new IE(w,{timeoutMs:-1});xE(a.caller)&&a.addEventListener(ME)}catch(b){}};function OE(){var a=[["cv",E(1)],["rv",E(14)],["tc",Yz.tags.filter(function(d){return d}).length]],b=Lf(15);b&&a.push(["x",b]);var c=xp();c&&a.push(["tag_exp",c]);return a};var PE=function(){var a=this;this.H={};this.K={};Qy(function(b){var c=b.eventId,d=b.rf,e=[],f=a.H[c]||[];f.length&&e.push(["hf",f.join(".")]);var g=a.K[c]||[];g.length&&e.push(["ht",g.join(".")]);d&&(delete a.H[c],delete a.K[c]);return e})},QE=function(){var a=0;return function(b){switch(b){case 1:a|=1;break;case 2:a|=2;break;case 3:a|=4}return a}},RE;var SE=function(){var a=this;this.H="";el.K&&P(516)&&Qy(function(){var b=[];a.H&&b.push(["psd",a.H]);return b})},TE;function UE(){return!1} -function VE(){var a={};return function(b,c,d){}};function WE(){var a=XE;return function(b,c,d){var e=d&&d.event;YE(c);var f=Dh(b)?void 0:1,g=new mb;Jb(c,function(r,t){var u=Xd(t,void 0,f);u===void 0&&t!==void 0&&R(44);g.set(r,u)});a.Lb(Sf());var h={Zn:jg(b),eventId:e==null?void 0:e.id,priorityId:e!==void 0?e.priorityId:void 0,Ag:e!==void 0?function(r){e.gd.Ag(r)}:void 0,Kb:function(){return b},log:function(){},Zr:{index:d==null?void 0:d.index,type:d==null?void 0:d.type,name:d==null?void 0:d.name},Bt:!!EA(b,3),originalEventData:e==null?void 0:e.originalEventData}; -e&&e.cachedModelValues&&(h.cachedModelValues={gtm:e.cachedModelValues.gtm,ecommerce:e.cachedModelValues.ecommerce});if(UE()){var l=VE(),n,p;h.yb={Hk:[],Dg:{},Yb:function(r,t,u){t===1&&(n=r);t===7&&(p=u);l(r,t,u)},li:Xh()};h.log=function(r){var t=Qa.apply(1,arguments);n&&l(n,4,{level:r,source:p,message:t})}}var q=uf(a,h,[b,g]);a.Lb();q instanceof Ua&&(q.type==="return"?q=q.data:q=void 0);return B(q,void 0,f)}}function YE(a){var b=a.gtmOnSuccess,c=a.gtmOnFailure;Bb(b)&&(a.gtmOnSuccess=function(){gd(b)});Bb(c)&&(a.gtmOnFailure=function(){gd(c)})};function ZE(){return Math.floor(Math.random()*20)};var $E=[F.D.Hi].map(function(a){return a.slice(2)});var aF=function(a){X(a,F.D.Hi,Mk(8,ZE))};function bF(a){}bF.P="internal.addAdsClickIds";function cF(a,b){var c=this;}cF.publicName="addConsentListener";var dF=!1;function eF(a){for(var b=0;b=0&&(g=g.substring(h+8,g.indexOf(")",h)),g.charAt(g.length-1)==="%"&&(g=g.substring(0,g.length-1)),f=String(Math.min(Number(g),Number(f))))}if(f!==void 0&&Number(f)<=0)return!0;(d=d.parentElement)&& -(e=w.getComputedStyle(d,null))}return!1} -var XH=function(a){var b,c=(b=a==null?void 0:a.ek)!=null?b:!0,d,e=(d=a==null?void 0:a.fk)!=null?d:!0,f,g=(f=a==null?void 0:a.Ht)!=null?f:!1,h=(a==null?void 0:a.Uj)||[],l=(a==null?void 0:a.Wj)||{email:!0,phone:!1,address:!1},n=Mk(6,function(){return{}}),p=MH({ek:c,fk:e,Uj:h,Wj:l}),q=n[p];if(q&&Qb()-q.timestamp<200){var r=q.result,t;(r.elements.some(function(ma){return ma.ki})||((t=r.ni)==null?0:t.ki))&&jv(dv.X.zj);return r}var u=NH(),v=u.status,x=[],y,z,C=[];if(P(568)){}else{if(l.email){var ba=VH(u.elements); -x=RH(ba,h);y=WH(x);ba.length>10&&(v="3")}!g&&y&&(x=[y]);for(var ia=0;ia"+e:e}var f=a.parentNode;if(f instanceof ShadowRoot){var g=fI(a,f);return gI(a)+":nth-child("+g+")"}return a.tagName?a.tagName.toLowerCase(): -""},gI=function(a){if(a.classList&&a.classList.length>0){var b=Array.from(a.classList,function(c){return CSS.escape(c)}).filter(function(c){return c.length>0});if(b.length>0)return"."+b.join(".")}return""},fI=function(a,b){for(var c=b.children,d=0;d=0}else n=!1;n||b.push({element:e,Aa:l,Ba:TH.Nb,Kc:f})}}}return b},NH=function(){var a=[],b=A.body;if(!b)return{elements:a,status:"4"};var c=iI(b,0,"",a);return{elements:a,status:c}},iI=function(a,b,c,d){for(var e=a.querySelectorAll("*"),f=e.length>1E4?"2":"1",g=0;g=0)&&h.children instanceof HTMLCollection){var l=!1;if(P(582)&&h.shadowRoot&&b<1){var n=bI(h);iI(h.shadowRoot, -b+1,c?c+"|"+n:n,d)==="2"&&(f="2");l=!0}var p=!1;if(!l)for(var q=0;q=0)){p=!0;break}(!p&&!l||P(568)&&lI.indexOf(h.tagName)!==-1)&&d.push({element:h,Kc:b>0?c:void 0})}}return f},hI=/[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}/i,eI=/support|noreply/i,jI="SCRIPT STYLE IMG SVG PATH BR NOSCRIPT TEXTAREA".split(" "),kI=["BR"],mI=Pf(36,2),cI=Pf(70,50),TH={Nb:"1",Yd:"2",Sd:"3",Wd:"4",wf:"5",ug:"6",Th:"7",Bj:"8",xi:"9",rj:"10"}, -lI=["INPUT","SELECT"],nI=aI(/^([^\x00-\x40\x5b-\x60\x7b-\xff]|[.-]|\s)+$/),ZH=RegExp("^(?:[A-Z]{1,2}\\d[A-Z\\d]?[ -]?\\d[A-Z]{2}|[A-Z]\\d[A-Z][ -]?\\d[A-Z]\\d|\\d{4} ?[A-Z]{2}|[A-Z]\\d{4}[A-Z]{3}|\\d{5}(?:-\\d{4})?|\\d{5}-\\d{3}|\\d{4}-\\d{3}|\\d{3}-\\d{4}|\\d{2}-\\d{3}|\\d{3} ?\\d{2}|\\d{4,7})$","i"); -function MI(a){var b;N(this,"detect_user_provided_data","auto");var c=B(a)||{},d=XH({ek:!!c.includeSelector,fk:!!c.includeVisibility,Uj:c.excludeElementSelectors,Wj:c.fieldFilters,Ht:!!c.selectMultipleElements});b=new mb;var e=new Ld;b.set("elements",e);for(var f=d.elements,g=0;g=a.limit)a.ii&&w.clearInterval(a.ii);else{a.sk++;var b=Qb();JD({event:a.eventName,"gtm.timerId":a.ii,"gtm.timerEventNumber":a.sk,"gtm.timerInterval":a.interval,"gtm.timerLimit":a.limit,"gtm.timerStartTime":a.Wo,"gtm.timerCurrentTime":b,"gtm.timerElapsedTime":b-a.Wo,"gtm.triggers":a.Ut})}}} -function NJ(a,b){ -return f}NJ.P="internal.enableAutoEventOnTimer";var Gc=Ca(["data-gtm-yt-inspected-"]),PJ=["www.youtube.com","www.youtube-nocookie.com"],QJ; -function $J(a,b){var c=this;return e}$J.P="internal.enableAutoEventOnYouTubeActivity";function aK(a,b){if(!M(a)||!jh(b))throw L(this.getName(),["string","Object|undefined"],arguments);var c=b?B(b):{};c.regexCache=Mk(3,function(){return new Map});return Ih(a,c)}aK.P="internal.evaluateBooleanExpression";function bK(a){var b=!1;return b}bK.P="internal.evaluateMatchingRules";var cK=new Map([["aw",4]]);function dK(a){var b=zr[a],c=cK.get(a);return c?(Aq(b,c)||[]).some(function(d){return d.m==="0"||d.m===void 0}):!1} -function eK(a,b){if(P(495)){for(var c=new Map,d=m(cK),e=d.next();!e.done;e=d.next()){var f=m(e.value),g=f.next().value,h=f.next().value,l=g,n=a[l],p=Array.isArray(n)?n[0]:n;if(p!==void 0){var q={},r=(q.k=p,q.i=String(Math.floor(Date.now()/1E3)),q.b=[],q.m="1",q),t=Yp(r,h);t&&(dK(l)||c.set(l,t))}}if(c.size){var u,v=new URLSearchParams;b.path?v.set("p",b.path):v.set("p","/");b.Nr&&v.set("ce",String(b.Nr));b.domain&&b.domain!=="auto"?v.set("d",b.domain):v.set("d","auto:"+w.location.hostname);for(var x= -m(c),y=x.next();!y.done;y=x.next()){var z=m(y.value),C=z.next().value,D=z.next().value;v.set(C,D)}u="_/set_cookie?"+v.toString();var H,G=E(58);H=Gf(u,G);var J=tj()+"/"+H;rd(J)}}};function fK(a){return"CWVWebViewMessage"in a}function gK(a){var b=w,c=b.webkit;delete b.webkit;a(b.webkit);b.webkit=c}function hK(a,b){var c={action:"gcl_setup"};if(fK(a.messageHandlers))return a.messageHandlers.CWVWebViewMessage.postMessage({command:b,payload:c}),!0;var d=a.messageHandlers[b];return d?(d.postMessage(c),!0):!1};var iK={},jK=(iK.awb={notFound:178},iK.ytb={notFound:194},iK);function kK(a){var b,c=(b=jK[a])==null?void 0:b.notFound;c&&R(c)} -function lK(a){if(!ak(Wj.da.tn)&&"webkit"in w&&w.webkit.messageHandlers){var b=function(){try{gK(function(c){if(c){var d;d=fK(c.messageHandlers)||"awb"in c.messageHandlers?{command:"awb",source:5}:(fK(c.messageHandlers)||"ytb"in c.messageHandlers)&&P(499)?{command:"ytb",source:8}:void 0;d&&(Zj(Wj.da.tn,function(e){var f=d.source;e.gclid&&ns("gcl_aw",e.gclid,f,a);e.wbraid&&ns("gcl_gb",e.wbraid,f,a)}),hK(c,d.command)||kK(d.command))}})}catch(c){R(193)}};Om(function(){Fr(zp)?b():Pm(b,zp)},zp)}};var mK=["https://www.google.com","https://www.youtube.com","https://m.youtube.com"];function nK(a){return a.data.action!=="gcl_transfer"?(R(173),!0):a.data.gadSource?a.data.gclid?!1:(R(181),!0):(R(180),!0)} -function oK(a,b){if(!a||P(a)){if(ak(Wj.da.Se))return R(176),Wj.da.Se;if(ak(Wj.da.wn))return R(170),Wj.da.Se;var c=Cp();if(!c)R(171);else if(c.opener){var d=function(g){if(!mK.includes(g.origin))R(172);else if(!nK(g)){var h={gadSource:g.data.gadSource};h.gclid=g.data.gclid;Zj(Wj.da.Se,h);b&&g.data.gclid&&ns("gcl_aw",String(g.data.gclid),6,b);var l;(l=g.stopImmediatePropagation)==null||l.call(g);ot(c,"message",d)}};if(nt(c,"message",d)){Zj(Wj.da.wn,!0);for(var e=m(mK),f=e.next();!f.done;f=e.next())c.opener.postMessage({action:"gcl_setup"}, -f.value);R(174);return Wj.da.Se}R(175)}}}; -var pK=function(a){var b={prefix:Q(a.M,F.D.Bd)||Q(a.M,F.D.lb),domain:Q(a.M,F.D.Hb),kd:Q(a.M,F.D.zb),flags:Q(a.M,F.D.Pb)};a.M.isGtmEvent&&(b.path=Q(a.M,F.D.oc));return b},qK=function(a,b){if(!U(a,I.J.Te)){var c=oK(119);if(c){var d=ak(c),e=function(g){W(a,I.J.Te,!0);var h=ip(a,F.D.zf),l=ip(a,F.D.Af);X(a,F.D.zf,String(g.gadSource));X(a,F.D.Af,6);W(a,I.J.wa);W(a,I.J.yg);X(a,F.D.wa);b();X(a,F.D.zf,h);X(a,F.D.Af,l);W(a,I.J.Te,!1)};if(d)e(d);else{var f=void 0;f=ck(c,function(g,h){e(h);dk(c,f)})}}}},tK=function(a){var b, -c,d,e;b=a.bo;c=a.wo;d=a.bp;e=a.co;if(b){if(hr(c[F.D.Yf],!!c[F.D.ya])){if(sj()&&Fr(Er())){for(var f=Yq(!0),g={},h=m(Object.keys(zr)),l=h.next();!l.done;l=h.next()){var n=l.value,p=zr[n],q=f[p];if(q){var r=Xp(q,4);r&&(qs(Math.min(Sr(r),Qb())||Qb(),p,4)||(g[n]=q))}}for(var t={},u=m(Object.keys(g)),v=u.next();!v.done;v=u.next()){var x=v.value,y=g[x];if(y!==void 0){var z=Xp(y,4);z&&z.m==="1"&&(t[x]=z.k)}}eK(t,e)}rs(e);vs(e);Tu(e)}if(Lp()!==2){is(e);ks(e);if($f(16)){var C=e,D=fs(w.location.href,!0,!1); -D.length||(D=fs(w.document.referrer,!1,!0));if(D.length){C=C||{};var H=D[0];H.value&&os("gcl_dc",[{version:"",gclid:H.value,timestamp:Qb(),qa:H.qa}],C)}}lK(e);oK(void 0,e)}else is(e);if(sj()&&Fr(Er())){var G=hs();eK(G,e)}zs(ss,e);As(e)}c[F.D.ya]&&(xs(c[F.D.ya],c[F.D.Wc],!!c[F.D.rc]),ws(c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e.prefix),ys(c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e.prefix),Uu(Ju(e.prefix),c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e),Uu("FPAU",c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e));d&&Cs(rK);Es(sK)},ss=["aw","dc", -"gb"],sK=["aw","dc","gb","ag"],rK=["aw","dc","gb","ag","gad_source"];var uK=function(a){ww(a)}; -var vK=function(a){var b=U(a,I.J.Fa),c=U(a,I.J.Cn),d=P(443)&&c?Wu(b):Xu(b).ai,e=void 0;P(570)&&c&&(e=Vu(b,{gi:!0}).uk);var f;a:{if(Kf(47)&&Yo(zp)){var g=pH(a,"ccd_enable_cm",!1),h=U(a,I.J.cb);W(a,I.J.jj,!0);W(a,I.J.bd,!0);if(sv(h)){W(a,I.J.rg,!0);var l=d||Du(),n={},p={eventMetadata:(n[I.J.zc]=T.U.Cb,n[I.J.cb]=h,n[I.J.Hj]=l,n[I.J.bd]=!0,n[I.J.jj]=!0,n[I.J.rg]=!0,n[I.J.ln]=g&&Kf(47),n),noGtmEvent:!0},q=kC(a.target.destinationId,a.eventName,a.M.Ma);cD(q,a.M.eventId,p);g&&U(a,I.J.pd)||W(a,I.J.cb);f=l; -break a}}f=void 0}var r=d||f;if(r||e){var t,u;t=ip(a,F.D.Oa);u=Fz.pj.op;var v=ip(a,F.D.Sc);!t&&v&&(t=v[F.D.Oa],u=Fz.pj.Gq);t||(t=Du(ip(a,F.D.Cd)),vb("GTAG_EVENT_FEATURE_CHANNEL",dv.X.Ph),u=Fz.pj.kr);X(a,F.D.Oa,t);X(a,F.D.rm,u);r&&X(a,F.D.sc,r);e&&X(a,"_&ecsid2",e);W(a,I.J.tj,!0)}}; -var wK=function(a){U(a,I.J.Jn)||W(a,I.J.Ja,!1)},xK=function(a){var b=U(a,I.J.ba),c=Yo(zp),d=U(a,I.J.wa),e=ip(a,F.D.Cd),f=U(a,I.J.zn);switch(b){case T.U.ra:!f&&e&&wK(a);a.eventName===F.D.xa&&W(a,I.J.Ja,!0);break;case T.U.Bb:case T.U.Cb:if(!c||d||!f&&e)a.isAborted=!0;break;case T.U.tb:c||(a.isAborted=!0);!f&&e||wK(a);U(a,I.J.pd)||(a.isAborted=!0);a.eventName!==F.D.xa||Q(a.M,F.D.Ml)!==!1&&Q(a.M,F.D.Md)!==!1||W(a,I.J.Ja,!0);break;case T.U.Ka:a.eventName!==F.D.mc&&U(a,I.J.Lc)&&(a.isAborted=!0),a.target.ids[WB[1]]&& -Q(a.M,F.D.ph)!==!0&&(a.isAborted=!0)}};var yK=function(a){var b,c=P(576);if(U(a,I.J.Cn))switch(U(a,I.J.ba)){case T.U.Cb:if(a.eventName===F.D.xa&&!c)break;b=97;P(488)?W(a,I.J.Ja,!1):wK(a);break;case T.U.Bb:if(a.eventName===F.D.xa)break;b=98;P(488)?W(a,I.J.Ja,!1):wK(a);break;case T.U.ra:b=99}!U(a,I.J.Ja)&&b&&R(b);U(a,I.J.Ja)===!0&&(a.isAborted=!0)}; -var zK=function(a){if(P(569)&&U(a,I.J.ba)===T.U.ra&&!U(a,I.J.Ac)&&!ip(a,F.D.Mi)){var b=Math.floor(Date.now()/1E3),c=new Uint8Array([b&255,b>>8&255]),d,e=kk()||"XX",f=lk()||"00";d=new Uint8Array([e.charCodeAt(0),e.charCodeAt(1),f.charCodeAt(0),f.charCodeAt(1)]);var g=new Uint8Array(7),h;if((h=w.crypto)==null||!h.getRandomValues(g))for(var l=0;l<7;l++)g[l]=Math.floor(Math.random()*256);var n=new Uint8Array([].concat(za(c),za(d),za(g))),p;try{p=btoa(String.fromCharCode.apply(String,za(n))).replace(/\+/g, -"-").replace(/\//g,"_").replace(/=+$/,"")}catch(q){p=""}X(a,F.D.Mi,p)}};function AK(){return Nt(7)&&Nt(9)&&Nt(10)}; -var GK=function(a,b){a&&(FK("sid",a.targetId,b),FK("cc",a.clientCount,b),FK("tl",a.totalLifeMs,b),FK("hc",a.heartbeatCount,b),FK("cl",a.clientLifeMs,b))},FK=function(a,b,c){b!=null&&c.push(a+"="+b)},HK=function(){var a=A.referrer;if(a){var b;return hj(nj(a),"host")===((b=w.location)==null?void 0:b.host)?1:2}return 0},JK=function(){this.ma=IK;this.O=0;this.Da=Pf(57,5);this.T=Pf(58,50);this.ia=Gb();this.Ra="https://"+E(21)+"/a?"};JK.prototype.K=function(a,b,c,d){ -var e=HK(),f,g=[];f=w===w.top&&e!==0&&b?(b==null?void 0:b.clientCount)>1?e===2?1:2:e===2?0:3:4;a&&FK("si",a.Qg,g);FK("m",0,g);FK("iss",f,g);FK("if",c,g);GK(b,g);d&&FK("fm",encodeURIComponent(d.substring(0,this.T)),g);this.Z(g);};JK.prototype.H=function(a,b,c,d,e){var f=[];FK("m",1,f);FK("s",a,f);FK("po",HK(),f);b&&(FK("st",b.state,f),FK("si",b.Qg,f),FK("sm",b.bh,f));GK(c,f);FK("c",d,f);e&&FK("fm",encodeURIComponent(e.substring(0, -this.T)),f);this.Z(f);};JK.prototype.Z=function(a){a=a===void 0?[]:a;!el.K||this.O>=this.Da||(FK("pid",this.ia,a),FK("bc",++this.O,a),a.unshift("ctid="+E(5)+"&t=s"),this.ma(""+this.Ra+a.join("&")))};function KK(a){return a.performance&&a.performance.now()||Date.now()} -var LK=function(a,b){var c=w,d=Pf(53,500),e=Pf(54,5E3),f=Pf(8,20),g=Pf(55,5E3),h;var l=function(n,p,q){q=q===void 0?{Ao:function(){},Do:function(){},zo:function(){},onFailure:function(){}}:q;this.Mj=n;this.H=p;this.O=q;this.ia=this.ma=this.heartbeatCount=this.Jj=0;this.fd=!1;this.K={};this.id=String(Math.floor(Number.MAX_SAFE_INTEGER*Math.random()));this.state=0;this.Qg=KK(this.H);this.bh=KK(this.H);this.Z=10};l.prototype.init=function(){this.T(1); -this.Da()};l.prototype.getState=function(){return{state:this.state,Qg:Math.round(KK(this.H)-this.Qg),bh:Math.round(KK(this.H)-this.bh)}};l.prototype.T=function(n){this.state!==n&&(this.state=n,this.bh=KK(this.H))};l.prototype.be=function(){return String(this.Jj++)};l.prototype.Da=function(){var n=this;this.heartbeatCount++;this.Bg({type:0,clientId:this.id,requestId:this.be(),maxDelay:this.ae()},function(p){if(p.type===0){var q;if(((q=p.failure)==null?void 0:q.failureType)!=null)if(p.stats&&(n.stats= -p.stats),n.ia++,p.isDead||n.ia>f){var r=p.isDead&&p.failure.failureType;n.Z=r||10;n.T(4);n.Ij();var t,u;(u=(t=n.O).zo)==null||u.call(t,{failureType:r||10,data:p.failure.data})}else n.T(3),n.zg();else{if(n.heartbeatCount>p.stats.heartbeatCount+f){n.heartbeatCount=p.stats.heartbeatCount;var v,x;(x=(v=n.O).onFailure)==null||x.call(v,{failureType:13})}n.stats=p.stats;var y=n.state;n.T(2);if(y!==2)if(n.fd){var z,C;(C=(z=n.O).Do)==null||C.call(z)}else{n.fd=!0;var D,H;(H=(D=n.O).Ao)==null||H.call(D)}n.ia= -0;n.Rj();n.zg()}}})};l.prototype.ae=function(){return this.state===2?e:d};l.prototype.zg=function(){var n=this;this.H.setTimeout(function(){n.Da()},Math.max(0,this.ae()-(KK(this.H)-this.ma)))};l.prototype.zr=function(n,p,q){var r=this;this.Bg({type:1,clientId:this.id,requestId:this.be(),command:n},function(t){if(t.type===1)if(t.result)p(t.result);else{var u,v,x,y={failureType:(x=(u=t.failure)==null?void 0:u.failureType)!=null?x:12,data:(v=t.failure)==null?void 0:v.data},z,C;(C=(z=r.O).onFailure)== -null||C.call(z,y);q(y)}})};l.prototype.Bg=function(n,p){var q=this;if(this.state===4)n.failure={failureType:this.Z},p(n);else{var r=this.state!==2&&n.type!==0,t=n.requestId,u,v=this.H.setTimeout(function(){var y=q.K[t];y&&(Vj(6),q.Vb(y,7))},(u=n.maxDelay)!=null?u:g),x={request:n,Ro:p,Ko:r,Ys:v};this.K[t]=x;r||this.sendRequest(x)}};l.prototype.sendRequest=function(n){this.ma=KK(this.H);n.Ko=!1;this.Mj(n.request)};l.prototype.Rj=function(){for(var n=m(Object.keys(this.K)),p=n.next();!p.done;p=n.next()){var q= -this.K[p.value];q.Ko&&this.sendRequest(q)}};l.prototype.Ij=function(){for(var n=m(Object.keys(this.K)),p=n.next();!p.done;p=n.next())this.Vb(this.K[p.value],this.Z)};l.prototype.Vb=function(n,p){this.Ra(n);var q=n.request;q.failure={failureType:p};n.Ro(q)};l.prototype.Ra=function(n){delete this.K[n.request.requestId];this.H.clearTimeout(n.Ys)};l.prototype.Bs=function(n){this.ma=KK(this.H);var p=this.K[n.requestId];if(p)this.Ra(p),p.Ro(n);else{var q,r;(r=(q=this.O).onFailure)==null||r.call(q,{failureType:14})}}; -h=new l(a,c,b);return h}; -var MK=function(){return Mk(18,function(){return new JK})},IK=function(a){Um(Xm(zm.fa.Ub),function(){dd(a)})},NK=function(a){var b=a.substring(0,a.indexOf("/_/service_worker"));return"&1p=1"+(b?"&path="+encodeURIComponent(b):"")},OK=function(a){var b=w.location.origin;if(!b)return null;(P(432)?sj():sj()&&!a)&&(a=""+b+tj()+"/_/service_worker");var c=a,d,e=Nf(11);d=e;c?(c.charAt(c.length-1)!=="/"&& -(c+="/"),a=c+d):a="https://www.googletagmanager.com/static/service_worker/"+d+"/";var f;try{f=new URL(a)}catch(g){return null}return f.protocol!=="https:"?null:f},PK=function(a){var b=ak(Wj.da.Xh);return b&&b[a]},QK=function(a){var b=this;this.K=MK();this.Z=this.T=!1;this.ia=null;this.initTime=Math.round(Qb());this.H=15;this.O=this.Rr(a);w.setTimeout(function(){b.initialize()},1E3);gd(function(){b.Ls(a)})};k=QK.prototype;k.delegate=function(a,b,c){this.getState()!==2?(this.K.H(this.H,{state:this.getState(), -Qg:this.initTime,bh:Math.round(Qb())-this.initTime},void 0,a.commandType),c({failureType:this.H})):this.O.zr(a,b,c)};k.getState=function(){return this.O.getState().state};k.Ls=function(a){var b=w.location.origin,c=this,d=bd();try{var e=d.contentDocument.createElement("iframe"),f=a.pathname,g=f[f.length-1]==="/"?a.toString():a.toString()+"/",h=a.origin!=="https://www.googletagmanager.com"?NK(f):"",l;P(133)&&(l={sandbox:"allow-same-origin allow-scripts"});bd(g+"sw_iframe.html?origin="+encodeURIComponent(b)+ -h,void 0,l,void 0,e);var n=function(){d.contentDocument.body.appendChild(e);e.addEventListener("load",function(){c.ia=e.contentWindow;d.contentWindow.addEventListener("message",function(p){p.origin===a.origin&&c.O.Bs(p.data)});c.initialize()})};d.contentDocument.readyState==="complete"?n():d.contentWindow.addEventListener("load",function(){n()})}catch(p){d.parentElement.removeChild(d),this.H=11,this.K.K(void 0,void 0,this.H,p.toString())}};k.Rr=function(a){var b=this,c=LK(function(d){var e;(e=b.ia)== -null||e.postMessage(d,a.origin)},{Ao:function(){b.T=!0;b.K.K(c.getState(),c.stats)},Do:function(){},zo:function(d){b.T?(b.H=(d==null?void 0:d.failureType)||10,b.K.H(b.H,c.getState(),c.stats,void 0,d==null?void 0:d.data)):(b.H=(d==null?void 0:d.failureType)||4,b.K.K(c.getState(),c.stats,b.H,d==null?void 0:d.data))},onFailure:function(d){b.H=d.failureType;b.K.H(b.H,c.getState(),c.stats,d.command,d.data)}});return c};k.initialize=function(){this.Z||this.O.init();this.Z=!0}; -var RK=function(a,b,c,d){var e;if((e=PK(a))==null||!e.delegate){var f=Oc()?16:6;MK().H(f,void 0,void 0,b.commandType);d({failureType:f});return}PK(a).delegate(b,c,d);}; -function SK(a,b,c,d){var e=OK(a);if(e===null){d("_is_sw=f"+(Oc()?16:6)+"te");return}var f=b?1:0,g=Math.round(Qb()),h,l=(h=PK(e.origin))==null?void 0:h.initTime,n=l?g-l:void 0,p;P(432)?p=sj()?void 0:w.location.href:p=w.location.href;RK(e.origin,{commandType:0,params:{url:a,method:f,templates:c,body:b||"",processResponse:!0,sinceInit:n,attributionReporting:!0,referer:p,strict:P(584)}},function(){},function(q){var r="_is_sw=f"+q.failureType,t,u=(t=PK(e.origin))== -null?void 0:t.getState();u!==void 0&&(r+="s"+u);d(n?r+("t"+n):r+"te")});};function TK(a){if(Kf(47)&&pH(a,"ccd_add_1p_data",!1)&&sj()){var b=a.M;if(Oc()&&dg("internal_sw_allowed","")){var c=Aj(b),d=sj()?tj():void 0,e;e=d?{path:d,no:"full"}:c?{path:c,no:"lite"}:void 0;if(e){var f=e.no,g=new URL(e.path,w.location.origin);if(g.origin===w.location.origin&&Lx(f)===void 0){var h=bk(Wj.da.Xh,{});h[f]||(h[f]=new Jx(g))}}}}};var UK=function(a){TK(a)}; -var VK=function(a){if(!U(a,I.J.Ja)&&!a.isAborted)if(U(a,I.J.ba)!==T.U.ra)(U(a,I.J.ln)||U(a,I.J.rg)&&P(469))&&X(a,F.D.Sh,"1"),Ez(a);else{var b=U(a,I.J.cb),c=ip(a,F.D.wc),d=U(a,I.J.bd),e=Kf(47)&&pH(a,"ccd_enable_cm",!1),f=Yo(zp)&&U(a,I.J.pd)&&(e||P(469));f&&(X(a,F.D.Sh,"1"),U(a,I.J.rg)&&(W(a,I.J.cb),X(a,F.D.wc),W(a,I.J.bd,!1)));var g=uu(pu);W(a,I.J.rn,g);for(var h,l=[],n=m(tu),p=n.next();!p.done;p=n.next()){var q=p.value,r=g[q.mb];if(r===void 0||rNumber(c[e])}return d.length>=c.length};function YK(){var a;a=a===void 0?document:a;var b;return!((b=a.featurePolicy)==null||!b.allowedFeatures().includes("attribution-reporting"))};var ZK=function(a){Yo(F.D.ka)&&(w._gtmpcm===!0||XK()?X(a,F.D.De,"2"):YK()&&X(a,F.D.De,"1"));(Tc()||Wc())&&W(a,I.J.Ha,!0);W(a,I.J.Ve,U(a,I.J.Ue)&&!Yo(zp));U(a,I.J.wa)&&X(a,F.D.wa,!0);a.M.eventMetadata[I.J.Ud]&&X(a,F.D.jn,!0)};var $K=function(a){a.copyToHitData(F.D.Oa);a.copyToHitData(F.D.Pa);a.copyToHitData(F.D.Ya);U(a,I.J.Ha)?X(a,F.D.ej,"www.google.com"):X(a,F.D.ej,"www.googleadservices.com");var b=Q(a.M,F.D.Rb);b!==!0&&b!==!1||X(a,F.D.Rb,b)};var aL=function(a){var b=a.target.ids[WB[0]];if(b){X(a,F.D.qh,b);var c=a.target.ids[WB[1]];c&&X(a,F.D.Cd,c);Q(a.M,F.D.ph)===!0&&W(a,I.J.zn,!0)}else a.isAborted=!0}; -var bL=function(a){if(a!=null){var b=String(a).substring(0,512),c=b.indexOf("#");return c===-1?b:b.substring(0,c)}return""},dL=function(a){if(!U(a,I.J.wa)){var b=ip(a,F.D.Ke),c=Q(a.M,F.D.Ca),d=c;d||(d=b===1?w.top.location.href:w.location.href);X(a,F.D.Ca,bL(d));a.copyToHitData(F.D.Za,A.referrer);X(a,F.D.Ib,cL());a.copyToHitData(F.D.rb);var e=DH();X(a,F.D.Xc,e.width+"x"+e.height);var f=P(583)&&!!c;ay(a,d,function(g){var h=bL(g);f&&(h=h.split("?")[0]);return h})}}; -var cL=function(){var a=A.title;if(a===void 0||a==="")return"";a=encodeURIComponent(a);for(var b=256;b>0&&gj(a.substring(0,b))===void 0;)b--;return gj(a.substring(0,b))||""};function eL(a){W(a,I.J.Ja,!0);W(a,I.J.sb,Qb());W(a,I.J.Jn,a.M.eventMetadata[I.J.Ja])};var fL=function(a){P(47)&&(a.copyToHitData(F.D.sh),a.copyToHitData(F.D.th),a.copyToHitData(F.D.uh))};var gL=function(a){var b=P(443),c=P(570);if((b||c)&&Yo(zp)){var d=U(a,I.J.cb);if(sv(d)){var e=U(a,I.J.Fa);if(b){var f=U(a,I.J.Hj)||Wu(e);X(a,F.D.sc,f)}if(c){var g=Vu(e,{gi:!0}).uk;g&&X(a,"_&ecsid2",g)}}}};var hL=function(a){var b=U(a,I.J.bn);b&&X(a,F.D.Sc,b)};var iL=function(a){var b=w;if(b.__gsaExp&&b.__gsaExp.id){var c=b.__gsaExp.id;if(Bb(c))try{var d=Number(c());isNaN(d)||X(a,F.D.Zl,d)}catch(e){}}};var jL=function(a){a.copyToHitData(F.D.Me);a.copyToHitData(F.D.Ee);a.copyToHitData(F.D.Pd);a.copyToHitData(F.D.Ge);a.copyToHitData(F.D.Pc);a.copyToHitData(F.D.Gd)};var kL=function(a){if(Yo(F.D.ka)){a.copyToHitData(F.D.ab);var b=ak(Wj.da.qr);if(b===void 0)Zj(Wj.da.rr,!0);else{var c=ak(Wj.da.Aj);X(a,F.D.cg,c+"."+b)}}}; -var qL=function(a,b){if(a&&(Cb(a)&&(a=UB(a)),a)){var c=void 0,d=!1,e=Q(b,F.D.wq);if(e&&Array.isArray(e)){c=[];for(var f=0;f=2?(f.adData={ak:l.ids[WB[0]],cl:l.ids[WB[1]]},oL(f.adData,d),g[l.id]=!0):l&&l.prefix==="UA"&&!f.gaData&&(f.gaData={gaWpid:l.destinationId},g[l.id]=!0))}(f.gaData||f.adData)&&mL(rL,e,void 0,d)(e.je,f,e.options)}},oL=function(a,b){a.dma=au();bu()&&(a.dmaCps=$t());Tt(b)?a.npa="0":a.npa="1"},mL=function(a,b,c,d){var e=w;if(e[a.functionName])return b.Bo&&gd(b.Bo),e[a.functionName]; -var f=sL();e[a.functionName]=f;if(a.additionalQueues)for(var g=0;g=0,f=!0;U(a,I.J.yc)&&(f=U(a,I.J.Jb)===em());e&&f?W(a,I.J.ui,!0):(W(a,I.J.ui,!1),d||(a.isAborted=!0));if(a.canBeAccepted()){var g=dm().indexOf(a.target.destinationId)>=0,h=!1;if(!g){var l,n=(l=Xl(a.target.destinationId))==null?void 0:l.canonicalContainerId;n&&(h=em()===n)}g||h?U(a,I.J.ui)&&a.accept():a.isAborted=!0}else a.isAborted=!0}};var mM=function(a){var b=Q(a.M,F.D.Vc),c=Q(a.M,F.D.Uc);b&&!c?(a.eventName!==F.D.xa&&a.eventName!==F.D.yf&&R(131),a.isAborted=!0):!b&&c&&(R(132),a.isAborted=!0)};var nM=function(a){if(a.eventName===F.D.xa){var b=Kf(11),c=U(a,I.J.Sq);!b&&!c||a.target.he()||jG("idc_config_pv",a.target.destinationId)||(a.isAborted=!0)}};var pM=function(a,b){oM.O(a,b)},qM=function(){this.H={}};qM.prototype.O=function(a,b){var c=this.H[a];c||(c=this.H[a]=[]);c.push(b)};qM.prototype.K=function(a){var b=this.H[a.target.destinationId];if(!a.isAborted&&b)for(var c=sH(a),d=0;d0&&X(a,F.D.Ob,x.join("."));var y=Hr(f+"_aw");y.length>0&&X(a,F.D.jb,y.join("."))}else if(!ip(a,F.D.yd)&&!ip(a,F.D.Fd)&&Ys(f)){var z=Jr(e);z.length>0&&X(a,F.D.Ob,z.join("."))}else if(!ip(a, -F.D.Ce)&&b){var C=Hr(f+"_aw");C.length>0&&X(a,F.D.jb,C.join("."))}X(a,F.D.gm,wd());a.M.isGtmEvent&&(a.M.Ma[F.D.Nc]=XC(F.D.Nc));Tt(a.M)?X(a,F.D.Xd,!1):X(a,F.D.Xd,!0);W(a,I.J.Mk,!0);var D=zM();D!==void 0&&X(a,F.D.ng,D||"error");var H=Mt();H&&X(a,F.D.Ie,H);var G=Lt();G&&X(a,F.D.Ne,G);U(a,I.J.Lc)||W(a,I.J.Ja,!1)}}; -var BM=function(a,b,c){b=b===void 0?!0:b;c=c===void 0?{}:c;if(a.eventName===F.D.Fb&&!a.M.isGtmEvent){var d=Q(a.M,F.D.Tf);if(typeof d==="function"&&!U(a,I.J.wa)){var e=String(Q(a.M,F.D.Uf)),f=e;c[e]&&(f=c[e]);var g=ip(a,f)||Q(a.M,e);if(b){if(typeof d==="function")if(e===F.D.jb&&g!==void 0){var h=g.split(".");h.length===0?d(void 0):h.length===1?d(h[0]):d(h)}else if(e===F.D.Cq&&P(258)){var l,n={};Yo(zp)&&(n.auid=ip(a,F.D.zd));var p=yM();if(xM(p))n.gad_source=p.Jg,n.gad_campaignid=p.bi,n.session_start_time_usec= -(Date.now()*1E3).toString(),n.landing_page_url=w.location.href,n.landing_page_referrer=A.referrer,n.landing_page_user_agent=Nc.userAgent;else{var q=U(a,I.J.Fa);n.gad_source=Ts(q.prefix).Kg}l=btoa(JSON.stringify(n)).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"");d(l)}else d(g)}else d(g)}a.isAborted=!0}};var CM=function(a){if(P(425)&&U(a,I.J.Tb)){for(var b=["_&apvc","tids",F.D.Va,F.D.Yi,F.D.qc,F.D.eg,F.D.Rc,F.D.Tc],c=m(ou(a)),d=c.next();!d.done;d=c.next()){var e=d.value;if(e===F.D.Ca){var f=ip(a,e);f&&(f=f.replace(/[\?#].*$/,""));X(a,e,f)}else b.includes(e)||X(a,e)}W(a,I.J.wi);W(a,I.J.Zd)}};function DM(a){if(el.H)if(hn.H=!0,a.eventName===F.D.xa)ln(a.M,a.target.id);else{U(a,I.J.Lc)||(hn.K[a.target.id]=!0);var b=U(a,I.J.Jb);RB(b)}};var EM=function(a,b){var c,d,e,f=b===void 0?{}:b;c=f.dk===void 0?!1:f.dk;d=f.Vj===void 0?!1:f.Vj;e=f.uo===void 0?!1:f.uo;d||(a.M.isGtmEvent?U(a,I.J.ba)!==T.U.ra&&a.eventName&&X(a,F.D.qc,a.eventName):X(a,F.D.qc,a.eventName));Jb(a.M.Ma,function(g,h){Hz[g]||c&&nn[g]||e&&Jz[g]||X(a,g,h)})};var FM=function(a){for(var b=m([F.D.Oa,F.D.Pa,F.D.Ya,F.D.Me,F.D.Ee,F.D.Pd,F.D.Ge,F.D.Pc,F.D.Gd,F.D.sh,F.D.th,F.D.uh,F.D.Ff,F.D.Df,F.D.Ef,F.D.Cf,F.D.Fi,F.D.Ld,F.D.Jd,F.D.Kd,F.D.rb]),c=b.next();!c.done;c=b.next())a.copyToHitData(c.value)};var GM=function(a){W(a,I.J.xg,zm.fa.Xa)};function HM(a,b){return or("gsid_dc",{value:{joinId:a,lastJoinedTimeMs:b},expires:b+3E5})===0?!0:!1}; -var IM=function(a){if((P(474)||P(475))&&Yo(zp)){var b;a:{var c=rr("gsid_dc");if(c.error===0&&c.value&&typeof c.value==="object"){var d=c.value;if(d.value&&typeof d.value==="object"){var e=d.value;if(e.joinId&&e.lastJoinedTimeMs&&typeof e.joinId==="string"&&typeof e.lastJoinedTimeMs==="number"){b=e;break a}}}b=void 0}var f=b,g=f==null?void 0:f.joinId,h=Qb();if(!f||!g||f.lastJoinedTimeMs0){f=[];for(var t=0;t-1&&(a[I.J.yc]=!0)}function SR(a,b,c){var d=this;}SR.P="internal.gtagConfig";function TR(a,b,c){var d=this;}TR.P="internal.gtagDestinationConfig"; -function VR(a,b){} -VR.publicName="gtagSet";function WR(){var a={};return a};function YR(a){}YR.P="internal.initializeServiceWorker";function ZR(a,b){}ZR.publicName="injectHiddenIframe";function $R(a,b,c,d,e){}$R.P="internal.injectHtml";var eS={dl:1,id:1}; -function fS(a,b,c,d){}fS.publicName="injectScript";function gS(){var a=hk,b=!1;b=!!a.H["5"];return b}gS.P="internal.isAutoPiiEligible";function hS(a){var b=!0;return b}hS.publicName="isConsentGranted";function iS(a){var b=!1;return b}iS.P="internal.isDebugMode";function jS(){return nk()}jS.P="internal.isDmaRegion";function kS(){return MB()}kS.P="internal.isDomReady";function lS(a){var b=!1;return b}lS.P="internal.isEntityInfrastructure";function mS(a){var b=!1;if(!th(a))throw L(this.getName(),["number"],[a]);b=P(a);return b}mS.P="internal.isFeatureEnabled";function nS(){var a=!1;a=Kf(47);return a}nS.P="internal.isFpfe";function oS(){var a=!1;return a}oS.P="internal.isGcpBrowser";function pS(){var a=!1;return a}pS.P="internal.isLandingPage";function qS(){var a=!1;return a}qS.P="internal.isOgt";function rS(){var a;return a}rS.P="internal.isSafariPcmEligibleBrowser";function sS(){var a=Sh(function(b){iF(this).log("error",b)});a.publicName="JSON";return a};function tS(a){var b=void 0;return Xd(b)}tS.P="internal.legacyParseUrl";function uS(){return!1} -var vS={getItem:function(a){var b=null;return b},setItem:function(a,b){return!1},removeItem:function(a){}};function wS(){}wS.publicName="logToConsole";function xS(a,b){}xS.P="internal.mergeRemoteConfig";function yS(a,b,c){c=c===void 0?!0:c;var d=[];return Xd(d)}yS.P="internal.parseCookieValuesFromString";function zS(a){var b=void 0;return b}zS.publicName="parseUrl";function AS(a){}AS.P="internal.processAsNewEvent";function BS(a,b,c){var d;return d}BS.P="internal.pushToDataLayer";function CS(a){var b=Qa.apply(1,arguments),c=!1;if(!M(a))throw L(this.getName(),["string"],arguments);for(var d=[this,a],e=m(b),f=e.next();!f.done;f=e.next())d.push(B(f.value,this.R,1));try{N.apply(null,d),c=!0}catch(g){return!1}return c}CS.publicName="queryPermission";function DS(a){var b=this;}DS.P="internal.queueAdsTransmission";function ES(a){var b=void 0;return b}ES.publicName="readAnalyticsStorage";function FS(){var a="";return a}FS.publicName="readCharacterSet";function GS(){return E(19)}GS.P="internal.readDataLayerName";function HS(){var a="";return a}HS.publicName="readTitle";function IS(a,b){var c=this;if(!M(a)||!lh(b))throw L(this.getName(),["string","function"],arguments);pM(a,function(d){b.invoke(c.R,Xd(d,c.R,1))});}IS.P="internal.registerCcdCallback";function JS(a,b){if(!M(a)||!ih(b)&&!kh(b))throw L(this.getName(),["string","Object|undefined"],arguments);if(Dh(iF(this).Kb()))return!1;var c,d,e=UB(a,!0);if(!e)return!1;switch(e.prefix){case "AW":c=ZM;d=zm.fa.Xa;break;case "DC":c=nN;d=zm.fa.Xa;break;case "GF":c=sN;d=zm.fa.dd;break;case "HA":c=uN;d=zm.fa.dd;break;case "UA":c=LN;d=zm.fa.dd;break;case "MC":c=MR(e);d=zm.fa.rd;break;case "G":return LR(a),!0;default:return!1}var f=a,g= -c,h=d,l=B(b,this.R,1),n=PC(),p=UB(f,!0);p&&n.H.register(p,g,h,l);return!0}JS.P="internal.registerDestination";var KS=["event"];function LS(a,b,c){}LS.P="internal.registerGtagCommandListener";function MS(a,b){var c=!1;return c}MS.P="internal.removeDataLayerEventListener";function NS(a,b){} -NS.P="internal.removeFormData";function OS(){}OS.publicName="resetDataLayer";function PS(a,b,c){var d=void 0;return d}PS.P="internal.scrubUrlParams";function QS(a){}QS.P="internal.sendAdsHit";function RS(a,b,c,d){} -RS.P="internal.sendGtagEvent";function SS(a,b,c){}SS.publicName="sendPixel";function TS(a,b){}TS.P="internal.setAnchorHref";function US(a){}US.P="internal.setContainerConsentDefaults";function VS(a,b,c,d){var e=this;d=d===void 0?!0:d;var f=!1; -return f}VS.publicName="setCookie";function WS(a){}WS.P="internal.setCorePlatformServices";function XS(a,b){}XS.P="internal.setDataLayerValue";function YS(a){}YS.publicName="setDefaultConsentState";function ZS(a,b){}ZS.P="internal.setDelegatedConsentType";function $S(a,b){}$S.P="internal.setFormAction";function aT(a,b,c){c=c===void 0?!1:c;if(!M(a)||!rh(c))throw L(this.getName(),["string","any","boolean|undefined"],arguments);if(!Xj(a))throw Error("setInCrossContainerData requires valid CrossContainerSchema key.");(c||ak(a)===void 0)&&Zj(a,B(b,this.R,1));}aT.P="internal.setInCrossContainerData";function bT(a,b,c){return!1}bT.publicName="setInWindow";function cT(a,b,c){}cT.P="internal.setProductSettingsParameter";function dT(a,b,c){if(!M(a)||!M(b)||arguments.length!==3)throw L(this.getName(),["string","string","any"],arguments);for(var d=b.split("."),e=WC(a),f=0;f0&&e.charAt(0)!=="."&&(f--,e="."+e);if(f>=0&&c.indexOf(e,f)===f)return!0}}return!1} -function FT(a,b,c){for(var d={},e=!1,f=0;a&&f-1)return;break;case "css":if(d==="none")break;if(d==="any"||f.indexOf(n)>-1)return;break;default:throw g(h,{},"Unknown selector type "+l+".");}throw g(h,{},"Prohibited selector value "+n+" for selector type "+l+".");},aa:a}})}(); - - - -function NT(){var a={},b={dataLayer:oA,callback:function(c){a.hasOwnProperty(c)&&Bb(a[c])&&a[c]();delete a[c]},bootstrap:0};return b} -function OT(){var a=NT();eo(a);lm();eA();var b=Mk(27,function(){return{}});Ub(b,Z.securityGroups);var c=hm(im()),d,e=c==null?void 0:(d=c.context)==null?void 0:d.source;Jo(e,c==null?void 0:c.parent);e!==2&&e!==4&&e!==3||R(142);return a}function PT(){var a=E(60);if(a)for(var b=a.split("."),c=0;c0&&Tk("jsm",ah.join("~"));Vi.length>0&&Tk("jsp",Vi.join("~"));Yx||(Yx=new Xx)}sE();Vj(1);QF();return H} -function gk(){try{if(Kf(47)||!xm()){Kf(64)&&Si.H.K.add(118517917);Wi();fl()&&cz();Yf[5]=!0;var a=$n("debugGroupId",function(){return String(Math.floor(Number.MAX_SAFE_INTEGER*Math.random()))});Ro(a);lt();NE();Gt();HB();if(mm()){E(5);PF();cB().removeExternalRestrictions(em());}else{jM.T();QT().bootstrap=Qb();Kf(51)&&ED();fl()&&dz(); -typeof w.name==="string"&&Wb(w.name,"web-pixel-sandbox-CUSTOM")&&yd()?BT("dMDg0Yz"):w.Shopify&&(BT("dN2ZkMj"),yd()&&BT("dNTU0Yz"));PT()}}}catch(b){Vj(5),Sy()}} -(function(a){function b(){n=A.documentElement.getAttribute("data-tag-assistant-present");wo(n)&&(l=h.Hm)}function c(){l&&Qc?g(l):a()}if(!w[E(37)]){var d=!1;if(A.referrer){var e=nj(A.referrer);d=jj(e,"host")===E(38)}if(!d){var f=gq(E(39));d=!(!f.length||!f[0].length)}d&&(w[E(37)]=!0,$c(E(40)))}var g=function(u){var v="GTM",x="GTM";Kf(45)&&(v="OGT",x="GTAG");var y=E(23),z=w[y];z||(z=[],w[y]=z,$c("https://"+E(3)+"/debug/bootstrap?id="+E(5)+"&src="+x+"&cond="+String(u)+">m="+eu()));var C={messageType:"CONTAINER_STARTING", -data:{scriptSource:Qc,containerProduct:v,debug:!1,id:E(5),targetRef:{ctid:E(5),isDestination:bm(),canonicalId:E(6)},aliases:fm(),destinations:cm()}};C.data.resume=function(){a()};Kf(2)&&(C.data.initialPublish=!0);z.push(C)},h={Rq:1,Zm:2,yn:3,tl:4,Hm:5};h[h.Rq]="GTM_DEBUG_LEGACY_PARAM";h[h.Zm]="GTM_DEBUG_PARAM";h[h.yn]="REFERRER";h[h.tl]="COOKIE";h[h.Hm]="EXTENSION_PARAM";var l=void 0,n=void 0,p=hj(w.location,"query",!1,void 0,"gtm_debug");wo(p)&&(l=h.Zm);if(!l&&A.referrer){var q=nj(A.referrer);jj(q, -"host")===E(24)&&(l=h.yn)}if(!l){var r=gq("__TAG_ASSISTANT");r.length&&r[0].length&&(l=h.tl)}l||b();if(!l&&vo(n)){var t=!1;ed(A,"TADebugSignal",function(){t||(t=!0,b(),c())},!1);w.setTimeout(function(){t||(t=!0,b(),c())},200)}else c()})(function(){!Kf(47)||fk()["0"]?gk():jk()}); - -})() - diff --git a/chrono.docs/Master of Ceremonies_files/js(1) b/chrono.docs/Master of Ceremonies_files/js(1) deleted file mode 100644 index 97d2e37..0000000 --- a/chrono.docs/Master of Ceremonies_files/js(1) +++ /dev/null @@ -1,872 +0,0 @@ - -// Copyright 2012 Google Inc. All rights reserved. - -(function(){ - -var data = { -"resource": { - "version":"1", - - "macros":[{"function":"__e"},{"function":"__c","vtp_value":"google.ca"},{"function":"__c","vtp_value":0}], - "tags":[{"function":"__ogt_1p_data_v2","priority":6,"vtp_isAutoEnabled":true,"vtp_autoCollectExclusionSelectors":["list",["map","exclusionSelector",""]],"vtp_isEnabled":true,"vtp_cityType":"CSS_SELECTOR","vtp_manualEmailEnabled":false,"vtp_firstNameType":"CSS_SELECTOR","vtp_countryType":"CSS_SELECTOR","vtp_cityValue":"","vtp_emailType":"CSS_SELECTOR","vtp_regionType":"CSS_SELECTOR","vtp_autoEmailEnabled":true,"vtp_postalCodeValue":"","vtp_lastNameValue":"","vtp_phoneType":"CSS_SELECTOR","vtp_phoneValue":"","vtp_streetType":"CSS_SELECTOR","vtp_autoPhoneEnabled":false,"vtp_postalCodeType":"CSS_SELECTOR","vtp_emailValue":"","vtp_firstNameValue":"","vtp_streetValue":"","vtp_lastNameType":"CSS_SELECTOR","vtp_autoAddressEnabled":false,"vtp_regionValue":"","vtp_countryValue":"","vtp_isAutoCollectPiiEnabledFlag":false,"tag_id":4},{"function":"__ccd_ga_first","priority":5,"vtp_instanceDestinationId":"G-TSZ99N8S23","tag_id":11},{"function":"__set_product_settings","priority":4,"vtp_instanceDestinationId":"G-TSZ99N8S23","vtp_foreignTldMacroResult":["macro",1],"vtp_isChinaVipRegionMacroResult":["macro",2],"tag_id":10},{"function":"__ccd_ga_regscope","priority":3,"vtp_settingsTable":["list",["map","redactFieldGroup","DEVICE_AND_GEO","disallowAllRegions",false,"disallowedRegions",""],["map","redactFieldGroup","GOOGLE_SIGNALS","disallowAllRegions",true,"disallowedRegions",""]],"vtp_instanceDestinationId":"G-TSZ99N8S23","tag_id":9},{"function":"__ccd_conversion_marking","priority":2,"vtp_conversionRules":["list",["map","matchingRules","{\"type\":5,\"args\":[{\"stringValue\":\"purchase\"},{\"contextValue\":{\"namespaceType\":1,\"keyParts\":[\"eventName\"]}}]}"]],"vtp_instanceDestinationId":"G-TSZ99N8S23","tag_id":8},{"function":"__ccd_auto_redact","priority":1,"vtp_redactEmail":true,"vtp_instanceDestinationId":"G-TSZ99N8S23","tag_id":7},{"function":"__gct","vtp_trackingId":"G-TSZ99N8S23","vtp_sessionDuration":0,"tag_id":1},{"function":"__ccd_ga_last","priority":0,"vtp_instanceDestinationId":"G-TSZ99N8S23","tag_id":6}], - "predicates":[{"function":"_eq","arg0":["macro",0],"arg1":"gtm.js"},{"function":"_eq","arg0":["macro",0],"arg1":"gtm.init"}], - "rules":[[["if",0],["add",6]],[["if",1],["add",0,7,5,4,3,2,1]]] -}, -"runtime":[ [50,"__c",[46,"a"],[36,[17,[15,"a"],"value"]]] - ,[50,"__ccd_auto_redact",[46,"a"],[50,"v",[46,"aF"],[36,[2,[15,"aF"],"replace",[7,[15,"u"],"\\$1"]]]],[50,"w",[46,"aF"],[52,"aG",[30,["c",[15,"aF"]],[15,"aF"]]],[52,"aH",[7]],[65,"aI",[2,[15,"aG"],"split",[7,""]],[46,[53,[52,"aJ",[7,["v",[15,"aI"]]]],[52,"aK",["d",[15,"aI"]]],[22,[12,[15,"aK"],[45]],[46,[53,[36,["d",["v",[15,"aF"]]]]]]],[22,[21,[15,"aK"],[15,"aI"]],[46,[53,[2,[15,"aJ"],"push",[7,[15,"aK"]]],[22,[21,[15,"aI"],[2,[15,"aI"],"toLowerCase",[7]]],[46,[53,[2,[15,"aJ"],"push",[7,["d",[2,[15,"aI"],"toLowerCase",[7]]]]]]],[46,[22,[21,[15,"aI"],[2,[15,"aI"],"toUpperCase",[7]]],[46,[53,[2,[15,"aJ"],"push",[7,["d",[2,[15,"aI"],"toUpperCase",[7]]]]]]]]]]]]],[22,[18,[17,[15,"aJ"],"length"],1],[46,[53,[2,[15,"aH"],"push",[7,[0,[0,"(?:",[2,[15,"aJ"],"join",[7,"|"]]],")"]]]]],[46,[53,[2,[15,"aH"],"push",[7,[16,[15,"aJ"],0]]]]]]]]],[36,[2,[15,"aH"],"join",[7,""]]]],[50,"x",[46,"aF","aG","aH"],[52,"aI",["z",[15,"aF"],[15,"aH"]]],[22,[28,[15,"aI"]],[46,[36,[15,"aF"]]]],[22,[28,[17,[15,"aI"],"search"]],[46,[36,[15,"aF"]]]],[41,"aJ"],[3,"aJ",[17,[15,"aI"],"search"]],[65,"aK",[15,"aG"],[46,[53,[52,"aL",[7,["v",[15,"aK"]],["w",[15,"aK"]]]],[65,"aM",[15,"aL"],[46,[53,[52,"aN",[30,[16,[15,"t"],[15,"aM"]],[43,[15,"t"],[15,"aM"],["b",[0,[0,"([?&]",[15,"aM"]],"=)([^&]*)"],"gi"]]]],[3,"aJ",[2,[15,"aJ"],"replace",[7,[15,"aN"],[0,"$1",[15,"r"]]]]]]]]]]],[22,[20,[15,"aJ"],[17,[15,"aI"],"search"]],[46,[36,[15,"aF"]]]],[22,[20,[16,[15,"aJ"],0],"&"],[46,[3,"aJ",[2,[15,"aJ"],"substring",[7,1]]]]],[22,[21,[16,[15,"aJ"],0],"?"],[46,[3,"aJ",[0,"?",[15,"aJ"]]]]],[22,[20,[15,"aJ"],"?"],[46,[3,"aJ",""]]],[43,[15,"aI"],"search",[15,"aJ"]],[36,["aA",[15,"aI"],[15,"aH"]]]],[50,"z",[46,"aF","aG"],[22,[20,[15,"aG"],[17,[15,"s"],"PATH"]],[46,[53,[3,"aF",[0,[15,"y"],[15,"aF"]]]]]],[36,["f",[15,"aF"]]]],[50,"aA",[46,"aF","aG"],[41,"aH"],[3,"aH",""],[22,[20,[15,"aG"],[17,[15,"s"],"URL"]],[46,[53,[41,"aI"],[3,"aI",""],[22,[30,[17,[15,"aF"],"username"],[17,[15,"aF"],"password"]],[46,[53,[3,"aI",[0,[15,"aI"],[0,[0,[0,[17,[15,"aF"],"username"],[39,[17,[15,"aF"],"password"],":",""]],[17,[15,"aF"],"password"]],"@"]]]]]],[3,"aH",[0,[0,[0,[17,[15,"aF"],"protocol"],"//"],[15,"aI"]],[17,[15,"aF"],"host"]]]]]],[36,[0,[0,[0,[15,"aH"],[17,[15,"aF"],"pathname"]],[17,[15,"aF"],"search"]],[17,[15,"aF"],"hash"]]]],[50,"aB",[46,"aF","aG"],[41,"aH"],[3,"aH",[2,[15,"aF"],"replace",[7,[15,"n"],[15,"r"]]]],[22,[30,[20,[15,"aG"],[17,[15,"s"],"URL"]],[20,[15,"aG"],[17,[15,"s"],"PATH"]]],[46,[53,[52,"aI",["z",[15,"aH"],[15,"aG"]]],[22,[20,[15,"aI"],[44]],[46,[36,[15,"aH"]]]],[52,"aJ",[17,[15,"aI"],"search"]],[52,"aK",[2,[15,"aJ"],"replace",[7,[15,"o"],[15,"r"]]]],[22,[20,[15,"aJ"],[15,"aK"]],[46,[36,[15,"aH"]]]],[43,[15,"aI"],"search",[15,"aK"]],[3,"aH",["aA",[15,"aI"],[15,"aG"]]]]]],[36,[15,"aH"]]],[50,"aC",[46,"aF"],[22,[20,[15,"aF"],[15,"q"]],[46,[53,[36,[17,[15,"s"],"PATH"]]]],[46,[22,[21,[2,[15,"p"],"indexOf",[7,[15,"aF"]]],[27,1]],[46,[53,[36,[17,[15,"s"],"URL"]]]],[46,[53,[36,[17,[15,"s"],"TEXT"]]]]]]]],[50,"aD",[46,"aF","aG"],[41,"aH"],[3,"aH",false],[52,"aI",["e",[15,"aF"]]],[38,[15,"aI"],[46,"string","array","object"],[46,[5,[46,[52,"aJ",["aB",[15,"aF"],[15,"aG"]]],[22,[21,[15,"aF"],[15,"aJ"]],[46,[53,[36,[15,"aJ"]]]]],[4]]],[5,[46,[53,[41,"aK"],[3,"aK",0],[63,[7,"aK"],[23,[15,"aK"],[17,[15,"aF"],"length"]],[33,[15,"aK"],[3,"aK",[0,[15,"aK"],1]]],[46,[53,[52,"aL",["aD",[16,[15,"aF"],[15,"aK"]],[17,[15,"s"],"TEXT"]]],[22,[21,[15,"aL"],[44]],[46,[53,[43,[15,"aF"],[15,"aK"],[15,"aL"]],[3,"aH",true]]]]]]]],[4]]],[5,[46,[54,"aK",[15,"aF"],[46,[53,[52,"aL",["aD",[16,[15,"aF"],[15,"aK"]],[17,[15,"s"],"TEXT"]]],[22,[21,[15,"aL"],[44]],[46,[53,[43,[15,"aF"],[15,"aK"],[15,"aL"]],[3,"aH",true]]]]]]],[4]]]]],[36,[39,[15,"aH"],[15,"aF"],[44]]]],[50,"aE",[46,"aF","aG"],[52,"aH",[30,[2,[15,"aF"],"getMetadata",[7,[17,[15,"h"],"AA"]]],[7]]],[22,[20,[2,[15,"aH"],"indexOf",[7,[15,"aG"]]],[27,1]],[46,[53,[2,[15,"aH"],"push",[7,[15,"aG"]]]]]],[2,[15,"aF"],"setMetadata",[7,[17,[15,"h"],"AA"],[15,"aH"]]]],[52,"b",["require","internal.createRegex"]],[52,"c",["require","decodeUriComponent"]],[52,"d",["require","encodeUriComponent"]],[52,"e",["require","getType"]],[52,"f",["require","parseUrl"]],[52,"g",["require","internal.registerCcdCallback"]],[52,"h",[15,"__module_metadataSchema"]],[52,"i",[15,"__module_goldEventUsageId"]],[52,"j",[17,[15,"a"],"instanceDestinationId"]],[52,"k",[17,[15,"a"],"redactEmail"]],[52,"l",[17,[15,"a"],"redactQueryParams"]],[52,"m",[39,[15,"l"],[2,[15,"l"],"split",[7,","]],[7]]],[22,[1,[28,[17,[15,"m"],"length"]],[28,[15,"k"]]],[46,[53,[2,[15,"a"],"gtmOnSuccess",[7]],[36]]]],[52,"n",["b","[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,}","gi"]],[52,"o",["b",[0,"([A-Z0-9._-]|%25|%2B)+%40[A-Z0-9.-]","+\\.[A-Z]{2,}"],"gi"]],[52,"p",[7,"page_location","page_referrer","page_path","link_url","video_url","form_destination"]],[52,"q","page_path"],[52,"r","(redacted)"],[52,"s",[8,"TEXT",0,"URL",1,"PATH",2]],[52,"t",[8]],[52,"u",["b","([\\\\^$.|?*+(){}]|\\[|\\[)","g"]],[52,"y","http://."],["g",[15,"j"],[51,"",[7,"aF"],[22,[15,"k"],[46,[53,[52,"aG",[2,[15,"aF"],"getHitKeys",[7]]],[65,"aH",[15,"aG"],[46,[53,[22,[20,[15,"aH"],"_sst_parameters"],[46,[6]]],[52,"aI",[2,[15,"aF"],"getHitData",[7,[15,"aH"]]]],[22,[28,[15,"aI"]],[46,[6]]],[52,"aJ",["aC",[15,"aH"]]],[52,"aK",["aD",[15,"aI"],[15,"aJ"]]],[22,[21,[15,"aK"],[44]],[46,[53,[2,[15,"aF"],"setHitData",[7,[15,"aH"],[15,"aK"]]],["aE",[15,"aF"],[39,[2,[15,"aF"],"getMetadata",[7,[17,[15,"h"],"BL"]]],[17,[15,"i"],"W"],[17,[15,"i"],"O"]]]]]]]]]]]],[22,[17,[15,"m"],"length"],[46,[53,[65,"aG",[15,"p"],[46,[53,[52,"aH",[2,[15,"aF"],"getHitData",[7,[15,"aG"]]]],[22,[28,[15,"aH"]],[46,[6]]],[52,"aI",[39,[20,[15,"aG"],[15,"q"]],[17,[15,"s"],"PATH"],[17,[15,"s"],"URL"]]],[52,"aJ",["x",[15,"aH"],[15,"m"],[15,"aI"]]],[22,[21,[15,"aJ"],[15,"aH"]],[46,[53,[2,[15,"aF"],"setHitData",[7,[15,"aG"],[15,"aJ"]]],["aE",[15,"aF"],[39,[2,[15,"aF"],"getMetadata",[7,[17,[15,"h"],"BL"]]],[17,[15,"i"],"X"],[17,[15,"i"],"P"]]]]]]]]]]]]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__ccd_conversion_marking",[46,"a"],[22,[30,[28,[17,[15,"a"],"conversionRules"]],[20,[17,[17,[15,"a"],"conversionRules"],"length"],0]],[46,[53,[2,[15,"a"],"gtmOnSuccess",[7]],[36]]]],[52,"b",["require","internal.copyPreHit"]],[52,"c",["require","internal.evaluateBooleanExpression"]],[52,"d",["require","internal.registerCcdCallback"]],[52,"e",[15,"__module_metadataSchema"]],[52,"f","first_visit"],[52,"g","session_start"],[41,"h"],[41,"i"],["d",[17,[15,"a"],"instanceDestinationId"],[51,"",[7,"j"],[52,"k",[8,"preHit",[15,"j"]]],[2,[15,"j"],"setMetadata",[7,[17,[15,"e"],"O"],true]],[65,"l",[17,[15,"a"],"conversionRules"],[46,[53,[22,["c",[17,[15,"l"],"matchingRules"],[15,"k"]],[46,[53,[2,[15,"j"],"setMetadata",[7,[17,[15,"e"],"AS"],true]],[4]]]]]]],[22,[2,[15,"j"],"getMetadata",[7,[17,[15,"e"],"AW"]]],[46,[53,[22,[28,[15,"h"]],[46,[53,[52,"l",["b",[15,"j"],[8,"omitHitData",true,"omitMetadata",true]]],[2,[15,"l"],"setEventName",[7,[15,"f"]]],[3,"h",[8,"preHit",[15,"l"]]]]]],[65,"l",[17,[15,"a"],"conversionRules"],[46,[53,[22,["c",[17,[15,"l"],"matchingRules"],[15,"h"]],[46,[53,[2,[15,"j"],"setMetadata",[7,[17,[15,"e"],"AX"],true]],[4]]]]]]]]]],[22,[2,[15,"j"],"getMetadata",[7,[17,[15,"e"],"BI"]]],[46,[53,[22,[28,[15,"i"]],[46,[53,[52,"l",["b",[15,"j"],[8,"omitHitData",true,"omitMetadata",true]]],[2,[15,"l"],"setEventName",[7,[15,"g"]]],[3,"i",[8,"preHit",[15,"l"]]]]]],[65,"l",[17,[15,"a"],"conversionRules"],[46,[53,[22,["c",[17,[15,"l"],"matchingRules"],[15,"i"]],[46,[53,[2,[15,"j"],"setMetadata",[7,[17,[15,"e"],"BJ"],true]],[4]]]]]]]]]]]],[2,[15,"a"],"gtmOnSuccess",[7]],[36]] - ,[50,"__ccd_ga_first",[46,"a"],[50,"e",[46,"f"],[2,[15,"c"],"A",[7,[15,"f"]]],[2,[15,"d"],"A",[7,[15,"f"]]]],[52,"b",["require","internal.registerCcdCallback"]],[52,"c",[15,"__module_taskPlatformDetection"]],[52,"d",[15,"__module_taskSetTestHitParams"]],["b",[17,[15,"a"],"instanceDestinationId"],[51,"",[7,"f"],["e",[15,"f"]]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__ccd_ga_last",[46,"a"],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__ccd_ga_regscope",[46,"a"],[52,"b",[15,"__module_ccdGaRegionScopedSettings"]],[52,"c",[2,[15,"b"],"B",[7,[15,"a"]]]],[2,[15,"b"],"A",[7,[15,"a"],[15,"c"]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__e",[46,"a"],[36,[13,[41,"$0"],[3,"$0",["require","internal.getEventData"]],["$0","event"]]]] - ,[50,"__gct",[46,"a"],[50,"g",[46,"m"],[52,"n",[7]],[65,"o",[15,"m"],[46,[53,[52,"p",["b",[15,"o"]]],[22,[21,[15,"p"],[45]],[46,[2,[15,"n"],"push",[7,[15,"p"]]]]]]]],[36,[15,"n"]]],[50,"h",[46,"m"],[52,"n",[17,[15,"m"],"linker"]],[22,[1,[15,"n"],[16,[15,"n"],"domains"]],[46,[53,[43,[15,"n"],"domains",["g",[16,[15,"n"],"domains"]]]]]],[36,[15,"n"]]],[50,"i",[46,"m"],[52,"n",[17,[15,"m"],"referralExclusionDefinition"]],[22,[1,[15,"n"],[16,[15,"n"],"include_conditions"]],[46,[53,[43,[15,"n"],"include_conditions",["g",[16,[15,"n"],"include_conditions"]]]]]],[36,[15,"n"]]],[52,"b",["require","internal.createRegex"]],[52,"c",["require","getType"]],[52,"d",["require","internal.mergeRemoteConfig"]],[52,"e",["require","internal.registerDestination"]],[52,"f",["require","templateStorage"]],[52,"j",[30,[2,[15,"f"],"getItem",[7,"regex"]],["b","[.*+\\-?^${}()|[\\]\\\\]","g"]]],[2,[15,"f"],"setItem",[7,"regex",[15,"j"]]],[52,"k",[8]],[52,"l",[17,[15,"a"],"sessionDuration"]],[22,[18,[15,"l"],0],[46,[53,[43,[15,"k"],"session_duration",[15,"l"]]]]],[43,[15,"k"],"event_settings",[17,[15,"a"],"eventSettings"]],[43,[15,"k"],"dynamic_event_settings",[17,[15,"a"],"dynamicEventSettings"]],[43,[15,"k"],"google_signals",[20,[17,[15,"a"],"googleSignals"],1]],[43,[15,"k"],"google_tld",[17,[15,"a"],"foreignTld"]],[43,[15,"k"],"ga_restrict_domain",[20,[17,[15,"a"],"restrictDomain"],1]],[43,[15,"k"],"internal_traffic_results",[17,[15,"a"],"internalTrafficResults"]],[43,[15,"k"],"linker",["h",[15,"a"]]],[43,[15,"k"],"referral_exclusion_definition",["i",[15,"a"]]],["d",[17,[15,"a"],"trackingId"],[15,"k"]],["e",[17,[15,"a"],"trackingId"]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__ogt_1p_data_v2",[46,"a"],[50,"r",[46,"w","x"],[52,"y",[7]],[52,"z",[2,[15,"b"],"keys",[7,[15,"w"]]]],[65,"aA",[15,"z"],[46,[53,[52,"aB",[30,[16,[15,"w"],[15,"aA"]],[7]]],[52,"aC",[39,[18,[17,[15,"aB"],"length"],0],"1","0"]],[52,"aD",[39,["s",[15,"x"],[15,"aA"]],"1","0"]],[2,[15,"y"],"push",[7,[0,[0,[0,[16,[15,"q"],[15,"aA"]],"-"],[15,"aC"]],[15,"aD"]]]]]]],[36,[2,[15,"y"],"join",[7,"~"]]]],[50,"s",[46,"w","x"],[22,[28,[15,"w"]],[46,[53,[36,false]]]],[38,[15,"x"],[46,"email","phone_number","first_name","last_name","street","city","region","postal_code","country"],[46,[5,[46,[36,[28,[28,[16,[15,"w"],"email"]]]]]],[5,[46,[36,[28,[28,[16,[15,"w"],"phone_number"]]]]]],[5,[46]],[5,[46]],[5,[46]],[5,[46]],[5,[46]],[5,[46]],[5,[46,[36,["t",[15,"w"],[15,"x"]]]]],[9,[46,[36,false]]]]]],[50,"t",[46,"w","x"],[36,[1,[28,[28,[16,[15,"w"],"address"]]],[28,[28,[16,[16,[15,"w"],"address"],[15,"x"]]]]]]],[50,"u",[46,"w","x","y","z"],[22,[20,[16,[15,"x"],"type"],[15,"y"]],[46,[53,[22,[28,[15,"w"]],[46,[53,[3,"w",[8]]]]],[22,[28,[16,[15,"w"],[15,"y"]]],[46,[53,[43,[15,"w"],[15,"y"],[16,[15,"x"],"userData"]],[52,"aA",[8,"mode","a"]],[22,[16,[15,"x"],"tagName"],[46,[53,[43,[15,"aA"],"location",[16,[15,"x"],"tagName"]]]]],[22,[16,[15,"x"],"querySelector"],[46,[53,[43,[15,"aA"],"selector",[16,[15,"x"],"querySelector"]]]]],[43,[15,"z"],[15,"y"],[15,"aA"]]]]]]]],[36,[15,"w"]]],[50,"v",[46,"w","x","y"],[22,[28,[16,[15,"a"],[15,"y"]]],[46,[36]]],[43,[15,"w"],[15,"x"],[8,"value",[16,[15,"a"],[15,"y"]]]]],[22,[28,[17,[15,"a"],"isEnabled"]],[46,[53,[2,[15,"a"],"gtmOnSuccess",[7]],[36]]]],[52,"b",["require","Object"]],[52,"c",["require","internal.isFeatureEnabled"]],[52,"d",[15,"__module_featureFlags"]],[52,"e",[15,"__module_features"]],[52,"f",["require","internal.getDestinationIds"]],[52,"g",["require","internal.getProductSettingsParameter"]],[52,"h",["require","internal.detectUserProvidedData"]],[52,"i",["require","queryPermission"]],[52,"j",["require","internal.setRemoteConfigParameter"]],[52,"k",["require","internal.registerCcdCallback"]],[52,"l",[15,"__module_metadataSchema"]],[52,"m","_z"],[52,"n",["c",[17,[15,"e"],"BG"]]],[52,"o",[30,["f"],[7]]],[52,"p",[8,"enable_code",true]],[52,"q",[8,"email","1","phone_number","2","first_name","3","last_name","4","country","5","postal_code","6","street","7","city","8","region","9"]],[22,[17,[15,"a"],"isAutoEnabled"],[46,[53,[52,"w",[7]],[22,[1,[17,[15,"a"],"autoCollectExclusionSelectors"],[17,[17,[15,"a"],"autoCollectExclusionSelectors"],"length"]],[46,[53,[53,[41,"z"],[3,"z",0],[63,[7,"z"],[23,[15,"z"],[17,[17,[15,"a"],"autoCollectExclusionSelectors"],"length"]],[33,[15,"z"],[3,"z",[0,[15,"z"],1]]],[46,[53,[52,"aA",[17,[16,[17,[15,"a"],"autoCollectExclusionSelectors"],[15,"z"]],"exclusionSelector"]],[22,[15,"aA"],[46,[53,[2,[15,"w"],"push",[7,[15,"aA"]]]]]]]]]]]]],[52,"x",[17,[15,"a"],"isAutoCollectPiiEnabledFlag"]],[52,"y",[39,[17,[15,"a"],"isAutoCollectPiiEnabledFlag"],[17,[15,"a"],"autoEmailEnabled"],true]],[43,[15,"p"],"auto_detect",[8,"email",[15,"y"],"phone",[1,[15,"x"],[17,[15,"a"],"autoPhoneEnabled"]],"address",[1,[15,"x"],[17,[15,"a"],"autoAddressEnabled"]],"exclude_element_selectors",[15,"w"]]]]]],[22,[17,[15,"a"],"isManualEnabled"],[46,[53,[52,"w",[8]],[22,[17,[15,"a"],"manualEmailEnabled"],[46,[53,["v",[15,"w"],"email","emailValue"]]]],[22,[17,[15,"a"],"manualPhoneEnabled"],[46,[53,["v",[15,"w"],"phone","phoneValue"]]]],[22,[17,[15,"a"],"manualAddressEnabled"],[46,[53,[52,"x",[8]],["v",[15,"x"],"first_name","firstNameValue"],["v",[15,"x"],"last_name","lastNameValue"],["v",[15,"x"],"street","streetValue"],["v",[15,"x"],"city","cityValue"],["v",[15,"x"],"region","regionValue"],["v",[15,"x"],"country","countryValue"],["v",[15,"x"],"postal_code","postalCodeValue"],[43,[15,"w"],"name_and_address",[7,[15,"x"]]]]]],[43,[15,"p"],"selectors",[15,"w"]]]]],[65,"w",[15,"o"],[46,[53,["j",[15,"w"],"user_data_settings",[15,"p"]],[52,"x",[16,[15,"p"],"auto_detect"]],[22,[28,[15,"x"]],[46,[53,[6]]]],[52,"y",[51,"",[7,"z"],[52,"aA",[2,[15,"z"],"getMetadata",[7,[17,[15,"l"],"CU"]]]],[22,[15,"aA"],[46,[53,[36,[15,"aA"]]]]],[52,"aB",[1,["c",[17,[15,"d"],"T"]],[20,[2,[15,"w"],"indexOf",[7,"G-"]],0]]],[52,"aC",["c",[17,[15,"e"],"CX"]]],[41,"aD"],[22,["i","detect_user_provided_data","auto"],[46,[53,[3,"aD",["h",[8,"excludeElementSelectors",[16,[15,"x"],"exclude_element_selectors"],"fieldFilters",[8,"email",[16,[15,"x"],"email"],"phone",[16,[15,"x"],"phone"],"address",[16,[15,"x"],"address"]],"performDataLayerSearch",[15,"aB"],"includeSelector",[15,"aC"]]]]]]],[52,"aE",[1,[15,"aD"],[16,[15,"aD"],"elements"]]],[52,"aF",[8]],[52,"aG",[8]],[22,[1,[15,"aE"],[18,[17,[15,"aE"],"length"],0]],[46,[53,[41,"aH"],[41,"aI"],[3,"aI",[8]],[53,[41,"aJ"],[3,"aJ",0],[63,[7,"aJ"],[23,[15,"aJ"],[17,[15,"aE"],"length"]],[33,[15,"aJ"],[3,"aJ",[0,[15,"aJ"],1]]],[46,[53,[52,"aK",[16,[15,"aE"],[15,"aJ"]]],["u",[15,"aF"],[15,"aK"],"email",[15,"aG"]],[22,["c",[17,[15,"e"],"CO"]],[46,[53,["u",[15,"aF"],[15,"aK"],"phone_number",[15,"aG"]],[3,"aH",["u",[15,"aH"],[15,"aK"],"first_name",[15,"aI"]]],[3,"aH",["u",[15,"aH"],[15,"aK"],"last_name",[15,"aI"]]],[3,"aH",["u",[15,"aH"],[15,"aK"],"country",[15,"aI"]]],[3,"aH",["u",[15,"aH"],[15,"aK"],"postal_code",[15,"aI"]]]]]]]]]],[22,[1,[15,"aH"],[28,[16,[15,"aF"],"address"]]],[46,[53,[43,[15,"aF"],"address",[15,"aH"]],[22,[15,"n"],[46,[53,[43,[16,[15,"aF"],"address"],"_tag_metadata",[15,"aI"]]]]]]]]]]],[22,[15,"aB"],[46,[53,[52,"aH",[1,[15,"aD"],[16,[15,"aD"],"dataLayerSearchResults"]]],[22,[15,"aH"],[46,[53,[52,"aI",["r",[15,"aH"],[15,"aF"]]],[22,[15,"aI"],[46,[53,[2,[15,"z"],"setHitData",[7,[15,"m"],[15,"aI"]]]]]]]]]]]],[22,[15,"n"],[46,[53,[22,[30,[16,[15,"aF"],"email"],[16,[15,"aF"],"phone_number"]],[46,[53,[43,[15,"aF"],"_tag_metadata",[15,"aG"]]]]]]]],[2,[15,"z"],"setMetadata",[7,[17,[15,"l"],"CU"],[15,"aF"]]],[36,[15,"aF"]]]],["k",[15,"w"],[51,"",[7,"z"],[2,[15,"z"],"setMetadata",[7,[17,[15,"l"],"CV"],[15,"y"]]]]]]]],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[50,"__set_product_settings",[46,"a"],[2,[15,"a"],"gtmOnSuccess",[7]]] - ,[52,"__module_features",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b",425],[52,"c",435],[52,"d",488],[52,"e",489],[52,"f",498],[52,"g",502],[52,"h",503],[52,"i",504],[52,"j",506],[52,"k",523],[52,"l",532],[52,"m",553],[52,"n",568],[52,"o",577],[52,"p",581],[52,"q",583],[36,[8,"BJ",[15,"l"],"AL",[15,"d"],"AV",[15,"g"],"CX",[15,"o"],"CO",[15,"n"],"AW",[15,"h"],"DB",[15,"p"],"BG",[15,"k"],"AM",[15,"e"],"AX",[15,"i"],"O",[15,"c"],"BZ",[15,"m"],"AY",[15,"j"],"DD",[15,"q"],"AS",[15,"f"],"J",[15,"b"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_gtagSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b","ad_personalization"],[52,"c","ad_storage"],[52,"d","ad_user_data"],[52,"e","consent_updated"],[52,"f","app_remove"],[52,"g","app_store_refund"],[52,"h","app_store_subscription_cancel"],[52,"i","app_store_subscription_convert"],[52,"j","app_store_subscription_renew"],[52,"k","conversion"],[52,"l","purchase"],[52,"m","first_open"],[52,"n","first_visit"],[52,"o","gtag.config"],[52,"p","in_app_purchase"],[52,"q","page_view"],[52,"r","session_start"],[52,"s","user_engagement"],[52,"t","ads_data_redaction"],[52,"u","allow_ad_personalization_signals"],[52,"v","allow_custom_scripts"],[52,"w","allow_enhanced_conversions"],[52,"x","allow_google_signals"],[52,"y","auid"],[52,"z","aw_remarketing_only"],[52,"aA","discount"],[52,"aB","aw_feed_country"],[52,"aC","aw_feed_language"],[52,"aD","items"],[52,"aE","aw_merchant_id"],[52,"aF","aw_basket_type"],[52,"aG","client_id"],[52,"aH","conversion_cookie_prefix"],[52,"aI","conversion_id"],[52,"aJ","conversion_linker"],[52,"aK","conversion_api"],[52,"aL","cookie_deprecation"],[52,"aM","cookie_expires"],[52,"aN","cookie_prefix"],[52,"aO","cookie_update"],[52,"aP","country"],[52,"aQ","currency"],[52,"aR","customer_lifetime_value"],[52,"aS","customer_loyalty"],[52,"aT","customer_ltv_bucket"],[52,"aU","customer_type"],[52,"aV","debug_mode"],[52,"aW","shipping"],[52,"aX","engagement_time_msec"],[52,"aY","estimated_delivery_date"],[52,"aZ","event_developer_id_string"],[52,"bA","event_id"],[52,"bB","event"],[52,"bC","_&ae"],[52,"bD","event_timeout"],[52,"bE","ext_client_id"],[52,"bF","first_party_collection"],[52,"bG","match_id"],[52,"bH","gdpr_applies"],[52,"bI","_gt_metadata"],[52,"bJ","google_analysis_params"],[52,"bK","_google_ng"],[52,"bL","_ono"],[52,"bM","gpp_sid"],[52,"bN","gpp_string"],[52,"bO","gsa_experiment_id"],[52,"bP","gtag_event_feature_usage"],[52,"bQ","iframe_state"],[52,"bR","ignore_referrer"],[52,"bS","is_passthrough"],[52,"bT","language"],[52,"bU","merchant_feed_label"],[52,"bV","merchant_feed_language"],[52,"bW","merchant_id"],[52,"bX","new_customer"],[52,"bY","page_hostname"],[52,"bZ","page_path"],[52,"cA","page_referrer"],[52,"cB","page_title"],[52,"cC","_platinum_request_status"],[52,"cD","quantity"],[52,"cE","restricted_data_processing"],[52,"cF","screen_resolution"],[52,"cG","send_page_view"],[52,"cH","server_container_3p_enrichment"],[52,"cI","server_container_url"],[52,"cJ","session_duration"],[52,"cK","session_engaged_time"],[52,"cL","session_id"],[52,"cM","_shared_user_id"],[52,"cN","delivery_postal_code"],[52,"cO","testonly"],[52,"cP","topmost_url"],[52,"cQ","transaction_id"],[52,"cR","transaction_id_source"],[52,"cS","transport_url"],[52,"cT","update"],[52,"cU","_user_agent_architecture"],[52,"cV","_user_agent_bitness"],[52,"cW","_user_agent_full_version_list"],[52,"cX","_user_agent_mobile"],[52,"cY","_user_agent_model"],[52,"cZ","_user_agent_platform"],[52,"dA","_user_agent_platform_version"],[52,"dB","_user_agent_wow64"],[52,"dC","user_data"],[52,"dD","user_data_auto_latency"],[52,"dE","user_data_auto_meta"],[52,"dF","user_data_auto_multi"],[52,"dG","user_data_auto_selectors"],[52,"dH","user_data_auto_status"],[52,"dI","user_data_mode"],[52,"dJ","user_id"],[52,"dK","user_properties"],[52,"dL","us_privacy_string"],[52,"dM","value"],[52,"dN","_fpm_parameters"],[52,"dO","_host_name"],[52,"dP","_in_page_command"],[52,"dQ","_measurement_type"],[52,"dR","non_personalized_ads"],[52,"dS","conversion_label"],[52,"dT","page_location"],[52,"dU","_extracted_data"],[52,"dV","global_developer_id_string"],[52,"dW","tc_privacy_string"],[36,[8,"A",[15,"b"],"B",[15,"c"],"C",[15,"d"],"F",[15,"e"],"I",[15,"f"],"J",[15,"g"],"K",[15,"h"],"L",[15,"i"],"M",[15,"j"],"O",[15,"k"],"AA",[15,"l"],"AF",[15,"m"],"AG",[15,"n"],"AH",[15,"o"],"AJ",[15,"p"],"AK",[15,"q"],"AM",[15,"r"],"AQ",[15,"s"],"BC",[15,"t"],"BJ",[15,"u"],"BK",[15,"v"],"BM",[15,"w"],"BN",[15,"x"],"BT",[15,"y"],"BX",[15,"z"],"BY",[15,"aA"],"BZ",[15,"aB"],"CA",[15,"aC"],"CB",[15,"aD"],"CC",[15,"aE"],"CD",[15,"aF"],"CL",[15,"aG"],"CQ",[15,"aH"],"CR",[15,"aI"],"KI",[15,"dS"],"CS",[15,"aJ"],"CU",[15,"aK"],"CW",[15,"aL"],"CY",[15,"aM"],"DC",[15,"aN"],"DD",[15,"aO"],"DE",[15,"aP"],"DF",[15,"aQ"],"DG",[15,"aR"],"DH",[15,"aS"],"DI",[15,"aT"],"DJ",[15,"aU"],"DP",[15,"aV"],"EC",[15,"aW"],"EE",[15,"aX"],"EI",[15,"aY"],"EL",[15,"aZ"],"EM",[15,"bA"],"EP",[15,"bB"],"EQ",[15,"bC"],"ES",[15,"bD"],"KK",[15,"dU"],"EW",[15,"bE"],"EY",[15,"bF"],"FG",[15,"bG"],"FQ",[15,"bH"],"FR",[15,"bI"],"KL",[15,"dV"],"FV",[15,"bJ"],"FW",[15,"bK"],"FX",[15,"bL"],"GA",[15,"bM"],"GB",[15,"bN"],"GD",[15,"bO"],"GE",[15,"bP"],"GG",[15,"bQ"],"GH",[15,"bR"],"GM",[15,"bS"],"GO",[15,"bT"],"GV",[15,"bU"],"GW",[15,"bV"],"GX",[15,"bW"],"HB",[15,"bX"],"HE",[15,"bY"],"KJ",[15,"dT"],"HF",[15,"bZ"],"HG",[15,"cA"],"HH",[15,"cB"],"HP",[15,"cC"],"HR",[15,"cD"],"HV",[15,"cE"],"HZ",[15,"cF"],"IC",[15,"cG"],"IE",[15,"cH"],"IF",[15,"cI"],"IH",[15,"cJ"],"IJ",[15,"cK"],"IK",[15,"cL"],"IM",[15,"cM"],"IN",[15,"cN"],"KM",[15,"dW"],"IR",[15,"cO"],"IT",[15,"cP"],"IW",[15,"cQ"],"IX",[15,"cR"],"IY",[15,"cS"],"JA",[15,"cT"],"JD",[15,"cU"],"JE",[15,"cV"],"JF",[15,"cW"],"JG",[15,"cX"],"JH",[15,"cY"],"JI",[15,"cZ"],"JJ",[15,"dA"],"JK",[15,"dB"],"JL",[15,"dC"],"JM",[15,"dD"],"JN",[15,"dE"],"JO",[15,"dF"],"JP",[15,"dG"],"JQ",[15,"dH"],"JR",[15,"dI"],"JT",[15,"dJ"],"JU",[15,"dK"],"JW",[15,"dL"],"JX",[15,"dM"],"JZ",[15,"dN"],"KA",[15,"dO"],"KB",[15,"dP"],"KE",[15,"dQ"],"KF",[15,"dR"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_metadataSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b","abort_without_fail"],[52,"c","accept_by_default"],[52,"d","allow_ad_personalization"],[52,"e","consent_state"],[52,"f","consent_updated"],[52,"g","conversion_linker_enabled"],[52,"h","conversion_marking_called"],[52,"i","cookie_options"],[52,"j","em_event"],[52,"k","event_provenance"],[52,"l","event_source"],[52,"m","event_start_timestamp_ms"],[52,"n","event_usage"],[52,"o","extra_tag_experiment_ids"],[52,"p","ga4_collection_subdomain"],[52,"q","gtm_extracted_data"],[52,"r","handle_internally"],[52,"s","has_ga_conversion_consents"],[52,"t","hit_type"],[52,"u","hit_type_override"],[52,"v","ignore_dupe_config"],[52,"w","is_conversion"],[52,"x","is_external_event"],[52,"y","is_first_visit"],[52,"z","is_first_visit_conversion"],[52,"aA","is_fpm_encryption"],[52,"aB","is_fpm_split"],[52,"aC","is_gcp_browser"],[52,"aD","is_google_measurement_allowed"],[52,"aE","is_server_side_destination"],[52,"aF","is_session_start"],[52,"aG","is_session_start_conversion"],[52,"aH","is_sgtm_ga_ads_conversion_study_control_group"],[52,"aI","is_sgtm_prehit"],[52,"aJ","is_split_conversion"],[52,"aK","is_syn"],[52,"aL","is_test_event"],[52,"aM","prehit_for_retry"],[52,"aN","redact_ads_data"],[52,"aO","redact_click_ids"],[52,"aP","send_ccm_parallel_ping"],[52,"aQ","send_user_data_hit"],[52,"aR","speculative"],[52,"aS","syn_or_mod"],[52,"aT","transient_ecsid"],[52,"aU","transmission_type"],[52,"aV","user_data"],[52,"aW","user_data_from_automatic"],[52,"aX","user_data_from_automatic_getter"],[52,"aY","user_data_from_code"],[52,"aZ","user_data_from_manual"],[36,[8,"A",[15,"b"],"B",[15,"c"],"E",[15,"d"],"L",[15,"e"],"M",[15,"f"],"N",[15,"g"],"O",[15,"h"],"P",[15,"i"],"R",[15,"j"],"X",[15,"k"],"Y",[15,"l"],"Z",[15,"m"],"AA",[15,"n"],"AB",[15,"o"],"AH",[15,"p"],"AK",[15,"q"],"AL",[15,"r"],"AM",[15,"s"],"AN",[15,"t"],"AO",[15,"u"],"AP",[15,"v"],"AS",[15,"w"],"AV",[15,"x"],"AW",[15,"y"],"AX",[15,"z"],"AZ",[15,"aA"],"BA",[15,"aB"],"BB",[15,"aC"],"BC",[15,"aD"],"BH",[15,"aE"],"BI",[15,"aF"],"BJ",[15,"aG"],"BK",[15,"aH"],"BL",[15,"aI"],"BN",[15,"aJ"],"BO",[15,"aK"],"BP",[15,"aL"],"BV",[15,"aM"],"BY",[15,"aN"],"BZ",[15,"aO"],"CB",[15,"aP"],"CK",[15,"aQ"],"CN",[15,"aR"],"CQ",[15,"aS"],"CR",[15,"aT"],"CS",[15,"aU"],"CT",[15,"aV"],"CU",[15,"aW"],"CV",[15,"aX"],"CW",[15,"aY"],"CX",[15,"aZ"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_featureFlags",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b",44],[52,"c",45],[52,"d",46],[52,"e",47],[52,"f",129],[52,"g",174],[52,"h",276],[36,[8,"F",[15,"b"],"G",[15,"c"],"H",[15,"d"],"I",[15,"e"],"Y",[15,"g"],"AG",[15,"h"],"T",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_crossContainerSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b","cookie_deprecation_label"],[52,"c","pld"],[52,"d","shared_user_id"],[52,"e","shared_user_id_requested"],[52,"f","shared_user_id_source"],[36,[8,"B",[15,"b"],"N",[15,"c"],"S",[15,"d"],"T",[15,"e"],"U",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_platformSchema",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b",1],[52,"c",2],[52,"d",3],[52,"e",4],[52,"f",5],[52,"g",6],[36,[8,"A",[15,"b"],"F",[15,"g"],"B",[15,"c"],"C",[15,"d"],"D",[15,"e"],"E",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_goldEventUsageId",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[52,"b",1],[52,"c",2],[52,"d",5],[52,"e",6],[52,"f",7],[52,"g",8],[52,"h",9],[52,"i",11],[52,"j",15],[52,"k",16],[52,"l",20],[52,"m",21],[52,"n",23],[52,"o",24],[52,"p",27],[52,"q",40],[52,"r",41],[36,[8,"O",[15,"j"],"W",[15,"n"],"P",[15,"k"],"X",[15,"o"],"K",[15,"i"],"A",[15,"b"],"T",[15,"l"],"E",[15,"d"],"F",[15,"e"],"B",[15,"c"],"H",[15,"g"],"AN",[15,"q"],"I",[15,"h"],"G",[15,"f"],"U",[15,"m"],"AO",[15,"r"],"AA",[15,"p"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_activities",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"b",[46,"c","d"],[36,[39,[15,"d"],["d",[15,"c"]],[15,"c"]]]],[36,[8,"A",[15,"b"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_platformDetection",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"o",[46],[68,"w",[53,[22,[1,[28,["e",[17,[15,"h"],"AS"]]],[28,["e",[17,[15,"h"],"J"]]]],[46,[53,[36,[7]]]]],[52,"w",["b",[17,[15,"g"],"N"]]],[22,["n",[15,"w"]],[46,[53,[36,[15,"w"]]]]],[52,"x",[7]],[22,["p"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"A"]]]]],[22,["q"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"B"]]]]],[22,["r"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"F"]]]]],[22,["u"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"D"]]]]],[22,["s"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"E"]]]]],[22,["t"],[46,[2,[15,"x"],"push",[7,[17,[15,"j"],"C"]]]]],[22,["l"],[46,[53,["f",[17,[15,"g"],"N"],[15,"x"],true]]]],[36,[15,"x"]]],[46]],[36,[7]]],[50,"p",[46],[68,"w",[53,[36,[28,[28,["c","script[data-requiremodule^=\"mage/\"]"]]]]],[46]],[36,false]],[50,"q",[46],[68,"w",[53,[52,"w",["m","YXNzZXRzLnNxdWFyZXNwYWNlLmNvbS8="]],[22,[28,[15,"w"]],[46,[36,false]]],[36,[28,[28,["c",[0,[0,"script[src^=\"//",[15,"w"]],"\"]"]]]]]],[46]],[36,false]],[50,"r",[46],[22,[28,["e",[17,[15,"h"],"J"]]],[46,[53,[36,false]]]],[68,"w",[53,[52,"w",["m","c2hvcGlmeS5jb20="]],[52,"x",["m","c2hvcGlmeWNkbi5jb20="]],[22,[30,[28,[15,"w"]],[28,[15,"x"]]],[46,[36,false]]],[36,[28,[28,["c",[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,[0,"script[src*=\"cdn.",[15,"w"]],"\"],"],"meta[property=\"og:image\"][content*=\"cdn."],[15,"w"]],"\"],"],"link[rel=\"preconnect\"][href*=\"cdn."],[15,"w"]],"\"],"],"link[rel=\"preconnect\"][href*=\"fonts."],[15,"x"]],"\"],"],"link[rel=\"preconnect\"][href*=\"iterable-shopify\"],"],"link[rel=\"preconnect\"][href*=\"v."],[15,"w"]],"\"]"]]]]]],[46]],[36,false]],[50,"s",[46],[68,"w",[53,[52,"w",["d","protocol"]],[52,"x",["d","host"]],[52,"y",[39,[1,[15,"w"],[15,"x"]],[0,[0,[0,[0,"[src^=\"",[15,"w"]],"://"],[15,"x"]],"/wp-content\"],"],""]],[52,"z",["m","LndvcmRwcmVzcy5jb20="]],[52,"aA",["m","Ly9zLncub3Jn"]],[22,[30,[28,[15,"z"]],[28,[15,"aA"]]],[46,[36,false]]],[36,[30,["v",[15,"x"],[15,"z"]],[28,[28,["c",[0,[0,[0,[0,[15,"y"],"meta[name=\"generator\"][content^=\"WordPress \"],"],"link[rel=\"dns-prefetch\"][href=\""],[15,"aA"]],"\"]"]]]]]]],[46]],[36,false]],[50,"t",[46],[68,"w",[53,[52,"w",[28,[28,["c",[0,"[class*=\"woocommerce\"],","meta[name=\"generator\"][content^=\"WooCommerce \"]"]]]]],[22,[15,"w"],[46,[53]]],[36,[15,"w"]]],[46]],[36,false]],[50,"u",[46],[68,"w",[53,[52,"w",[28,[28,["c",[0,[0,"script[src*=\"woocommerce\"],","link[href*=\"woocommerce\"],"],"[class|=\"woocommerce\"]"]]]]],[22,[15,"w"],[46,[53]]],[36,[15,"w"]]],[46]],[36,false]],[50,"v",[46,"w","x"],[36,[1,[19,[17,[15,"w"],"length"],[17,[15,"x"],"length"]],[20,[2,[15,"w"],"substring",[7,[37,[17,[15,"w"],"length"],[17,[15,"x"],"length"]],[17,[15,"w"],"length"]]],[15,"x"]]]]],[52,"b",["require","internal.copyFromCrossContainerData"]],[52,"c",["require","internal.getFirstElementByCssSelector"]],[52,"d",["require","getUrl"]],[52,"e",["require","internal.isFeatureEnabled"]],[52,"f",["require","internal.setInCrossContainerData"]],[52,"g",[15,"__module_crossContainerSchema"]],[52,"h",[15,"__module_features"]],[52,"i",[15,"__module_featureFlags"]],[52,"j",[15,"__module_platformSchema"]],[52,"k",["require","getType"]],[52,"l",["require","internal.isDomReady"]],[52,"m",["require","fromBase64"]],[52,"n",[51,"",[7,"w"],[36,[20,["k",[15,"w"]],"array"]]]],[36,[8,"A",[15,"o"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_taskSetTestHitParams",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"f",[46,"g"],[22,[2,[15,"g"],"getMetadata",[7,[17,[15,"e"],"BP"]]],[46,[53,[2,[15,"g"],"setHitData",[7,[17,[15,"d"],"IR"],"1"]]]]]],[52,"b",["require","internal.isFeatureEnabled"]],[52,"c",[15,"__module_features"]],[52,"d",[15,"__module_gtagSchema"]],[52,"e",[15,"__module_metadataSchema"]],[36,[8,"A",[15,"f"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_ccdGaRegionScopedSettings",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"j",[46,"m","n","o"],[50,"t",[46,"v"],[52,"w",[16,[15,"i"],[15,"v"]]],[22,[28,[15,"w"]],[46,[36]]],[53,[41,"x"],[3,"x",0],[63,[7,"x"],[23,[15,"x"],[17,[15,"w"],"length"]],[33,[15,"x"],[3,"x",[0,[15,"x"],1]]],[46,[53,[52,"y",[16,[15,"w"],[15,"x"]]],["q",[15,"p"],[17,[15,"y"],"name"],[17,[15,"y"],"value"]]]]]]],[50,"u",[46,"v"],[22,[30,[28,[15,"r"]],[21,[17,[15,"r"],"length"],2]],[46,[53,[36,false]]]],[41,"w"],[3,"w",[16,[15,"v"],[15,"s"]]],[22,[20,[15,"w"],[44]],[46,[53,[3,"w",[16,[15,"v"],[15,"r"]]]]]],[36,[28,[28,[15,"w"]]]]],[22,[28,[15,"n"]],[46,[36]]],[52,"p",[30,[17,[15,"m"],"instanceDestinationId"],[17,["c"],"containerId"]]],[52,"q",["h",[15,"f"],[15,"o"]]],[52,"r",[13,[41,"$0"],[3,"$0",["h",[15,"d"],[15,"o"]]],["$0"]]],[52,"s",[13,[41,"$0"],[3,"$0",["h",[15,"e"],[15,"o"]]],["$0"]]],[53,[41,"v"],[3,"v",0],[63,[7,"v"],[23,[15,"v"],[17,[15,"n"],"length"]],[33,[15,"v"],[3,"v",[0,[15,"v"],1]]],[46,[53,[52,"w",[16,[15,"n"],[15,"v"]]],[22,[30,[17,[15,"w"],"disallowAllRegions"],["u",[17,[15,"w"],"disallowedRegions"]]],[46,[53,["t",[17,[15,"w"],"redactFieldGroup"]]]]]]]]]],[50,"k",[46,"m"],[52,"n",[8]],[22,[28,[15,"m"]],[46,[36,[15,"n"]]]],[52,"o",[2,[15,"m"],"split",[7,","]]],[53,[41,"p"],[3,"p",0],[63,[7,"p"],[23,[15,"p"],[17,[15,"o"],"length"]],[33,[15,"p"],[3,"p",[0,[15,"p"],1]]],[46,[53,[52,"q",[2,[16,[15,"o"],[15,"p"]],"trim",[7]]],[22,[28,[15,"q"]],[46,[6]]],[52,"r",[2,[15,"q"],"split",[7,"-"]]],[52,"s",[16,[15,"r"],0]],[52,"t",[39,[20,[17,[15,"r"],"length"],2],[15,"q"],[44]]],[22,[30,[28,[15,"s"]],[21,[17,[15,"s"],"length"],2]],[46,[53,[6]]]],[22,[1,[21,[15,"t"],[44]],[30,[23,[17,[15,"t"],"length"],4],[18,[17,[15,"t"],"length"],6]]],[46,[53,[6]]]],[43,[15,"n"],[15,"q"],true]]]]],[36,[15,"n"]]],[50,"l",[46,"m"],[22,[28,[17,[15,"m"],"settingsTable"]],[46,[36,[7]]]],[52,"n",[8]],[53,[41,"o"],[3,"o",0],[63,[7,"o"],[23,[15,"o"],[17,[17,[15,"m"],"settingsTable"],"length"]],[33,[15,"o"],[3,"o",[0,[15,"o"],1]]],[46,[53,[52,"p",[16,[17,[15,"m"],"settingsTable"],[15,"o"]]],[52,"q",[17,[15,"p"],"redactFieldGroup"]],[22,[28,[16,[15,"i"],[15,"q"]]],[46,[6]]],[43,[15,"n"],[15,"q"],[8,"redactFieldGroup",[15,"q"],"disallowAllRegions",false,"disallowedRegions",[8]]],[52,"r",[16,[15,"n"],[15,"q"]]],[22,[17,[15,"p"],"disallowAllRegions"],[46,[53,[43,[15,"r"],"disallowAllRegions",true],[6]]]],[43,[15,"r"],"disallowedRegions",["k",[17,[15,"p"],"disallowedRegions"]]]]]]],[36,[2,[15,"b"],"values",[7,[15,"n"]]]]],[52,"b",["require","Object"]],[52,"c",["require","getContainerVersion"]],[52,"d",["require","internal.getCountryCode"]],[52,"e",["require","internal.getRegionCode"]],[52,"f",["require","internal.setRemoteConfigParameter"]],[52,"g",[15,"__module_activities"]],[52,"h",[17,[15,"g"],"A"]],[52,"i",[8,"GOOGLE_SIGNALS",[7,[8,"name","allow_google_signals","value",false]],"DEVICE_AND_GEO",[7,[8,"name","geo_granularity","value",true],[8,"name","redact_device_info","value",true]]]],[36,[8,"A",[15,"j"],"B",[15,"l"]]]],[36,["a"]]]],["$0"]]] - ,[52,"__module_taskPlatformDetection",[13,[41,"$0"],[3,"$0",[51,"",[7],[50,"a",[46],[50,"d",[46,"e"],[52,"f",[2,[15,"c"],"A",[7]]],[22,[1,[15,"f"],[18,[17,[15,"f"],"length"],0]],[46,[53,[2,[15,"e"],"mergeHitDataForKey",[7,[17,[15,"b"],"FV"],[8,"plf",[2,[15,"f"],"join",[7,"."]]]]]]]]],[52,"b",[15,"__module_gtagSchema"]],[52,"c",[15,"__module_platformDetection"]],[36,[8,"A",[15,"d"]]]],[36,["a"]]]],["$0"]]] - -] -,"entities":{ -"__c":{"2":true,"5":true,"6":true} -, -"__ccd_auto_redact":{"2":true,"5":true,"6":true} -, -"__ccd_conversion_marking":{"2":true,"5":true,"6":true} -, -"__ccd_ga_first":{"2":true,"5":true,"6":true} -, -"__ccd_ga_last":{"2":true,"5":true,"6":true} -, -"__ccd_ga_regscope":{"2":true,"5":true,"6":true} -, -"__e":{"2":true,"5":true,"6":true} -, -"__gct":{"5":true,"6":true} -, -"__ogt_1p_data_v2":{"2":true,"5":true,"6":true} -, -"__set_product_settings":{"2":true,"5":true,"6":true} - - -} -,"blob":{"1":"1","10":"G-TSZ99N8S23|GT-5N2B8HFP","11":true,"14":"66f1","15":"0","16":"ChEI8OjD0QYQmpL0ur6UwLTdARIdAAHk+oRwyfAEq071XHRxC4PaHIgtRj2yaCRYrIgaAs3i","17":"","19":"dataLayer","2":true,"20":"","21":"www.googletagmanager.com","22":"eyIwIjoiQ0EiLCIxIjoiQ0EtT04iLCIyIjpmYWxzZSwiMyI6Imdvb2dsZS5jYSIsIjQiOiIiLCI1Ijp0cnVlLCI2IjpmYWxzZSwiNyI6ImFkX3N0b3JhZ2V8YW5hbHl0aWNzX3N0b3JhZ2V8YWRfdXNlcl9kYXRhfGFkX3BlcnNvbmFsaXphdGlvbiIsIjkiOmZhbHNlfQ","23":"google.tagmanager.debugui2.queue","24":"tagassistant.google.com","27":0.005,"3":"www.googletagmanager.com","30":"CA","31":"CA-ON","32":true,"34":"G-TSZ99N8S23","35":"G","36":"https://adservice.google.com/pagead/regclk","37":"__TAGGY_INSTALLED","38":"cct.google","39":"googTaggyReferrer","40":"https://cct.google/taggy/agent.js","41":"google.tagmanager.ta.prodqueue","42":0.01,"43":"{\"keys\":[{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BKwvCVU1nkf3Kh67Io0y4x8dKYIfbz8F/3jMMZZNgmpA9bNdXFrG1p3FCSOp/wgDDfLcAEx0qI5S9pMqeZZ4vao=\",\"version\":0},\"id\":\"f702dfbe-927c-41e2-859f-a5c8d5a9efb9\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BP0/1RW705G75ayO/WNJSUbErS99Yi9pEmNa1e8iGsssn3sxxxFubg1FbVlXKk5FNZ51Pl0+s2fvtQUvAywyyD4=\",\"version\":0},\"id\":\"f4283ab4-a786-47cc-aefa-7da334c9f0fd\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BCIkELYk4eXiA2TioxWll4/0ixiIrjbERMHuVluMNuqhsnLYU+cNw5wTgbdTNL5GXY4h7gM6teG0YvvIxY9KCqM=\",\"version\":0},\"id\":\"af12363c-ecdb-420e-ac39-3b7bdafbf1d5\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BJPo2GUjocPJf/S8TTpTM8wrDUc6iaDD6Drs6BLNdhHXqT60Q9S0i2UKcEzWkiCF6ewTS6yBjp8GVoxA7Tz/Rs8=\",\"version\":0},\"id\":\"a66c0cde-069d-43fb-b74f-1273c7c3070d\"},{\"hpkePublicKey\":{\"params\":{\"aead\":\"AES_128_GCM\",\"kdf\":\"HKDF_SHA256\",\"kem\":\"DHKEM_P256_HKDF_SHA256\"},\"publicKey\":\"BLrIZDO5tKBbaJ3QmpUPWQgAMVVtPFYAKf+jShOppUWLgh+uMRZDHAOJXorTIO5uHdVPVZccSfencGkkJ3+XXt4=\",\"version\":0},\"id\":\"70cc4ebf-e955-4082-96f9-256a8ddfec38\"}]}","44":"119392696~119392704~119456239~119456247","45":true,"46":{"1":"1000","10":"66g0","11":"6631","14":"1000","16":"US-CO~US-CT~US-MT~US-NE~US-NH~US-TX~US-MN~US-NJ~US-MD~US-OR~US-DE","17":"US-CO~US-CT~US-MT~US-NE~US-NH~US-TX~US-MN~US-NJ~US-MD~US-OR~US-DE","2":"9","20":"5000","21":"5000","22":"4.3.0","23":"0.0.0","25":"1","26":"4000","27":"100","3":"5","4":"ad_storage|analytics_storage|ad_user_data|ad_personalization","44":"15000","48":"30000","5":"ad_storage|analytics_storage|ad_user_data","6":"1","61":"1000","62":"A6ONHRY7/bvBro+IMZd/a6LNjn7SSv999SkN/hFAE9L6vMr34dNgfdSVdYmv4U+NHZg1sxd38RtciRpRUtIRPgQAAACCeyJvcmlnaW4iOiJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbTo0NDMiLCJmZWF0dXJlIjoiU2hhcmVkV29ya2VyRXh0ZW5kZWRMaWZldGltZSIsImV4cGlyeSI6MTc3NjcyOTYwMCwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==","63":"1000","66":"100","7":"10"},"48":true,"5":"G-TSZ99N8S23","55":["G-TSZ99N8S23"],"56":[{"1":403,"3":0.5,"4":115938465,"5":115938466,"6":0,"7":2},{"1":404,"3":0.5,"4":115938468,"5":115938469,"6":0,"7":1},{"1":569,"2":true},{"1":475,"3":0.1,"4":117776793,"5":117776794,"6":0,"7":1},{"1":502,"2":true},{"1":490,"2":true},{"1":491,"3":0.01,"4":118012007,"5":118012008,"6":118012009,"7":1},{"1":480,"2":true},{"1":580,"3":0.01,"4":119527020,"5":119527019,"6":0,"7":1},{"1":523,"2":true},{"1":581,"3":0.01,"4":119348851,"5":119348849,"6":119348850,"7":1},{"1":548,"2":true},{"1":504,"2":true},{"1":462,"3":0.05,"4":118806524,"5":118806525,"6":118806526,"7":1},{"1":413,"2":true},{"1":549,"2":true},{"1":500,"2":true},{"1":552,"2":true},{"1":533,"2":true},{"1":450,"3":0.01,"4":117227714,"5":117227715,"6":117227716,"7":3},{"1":458,"2":true},{"1":582,"3":0.01,"4":119381664,"5":119381662,"6":119381663,"7":1},{"1":443,"3":0.001,"4":117628654,"5":117628655,"6":117628656,"7":3},{"1":498,"3":0.2,"4":115616985,"5":115616986,"6":0,"7":1},{"1":518,"2":true},{"1":572,"2":true},{"1":495,"3":0.05,"4":118131810,"5":118131808,"6":118131809,"7":3},{"1":584,"3":0.1,"4":119534189,"5":119534187,"6":119534188,"7":1},{"1":428,"3":0.01,"4":119588920,"5":119588918,"6":119588919,"7":1},{"1":419,"2":true},{"1":564,"3":0.0001,"4":119205317,"5":119205315,"6":119205316,"7":1},{"1":557,"2":true},{"1":571,"2":true},{"1":573,"2":true},{"1":499,"2":true},{"1":516,"3":0.1,"4":118395335,"5":118395333,"6":118395334,"7":1},{"1":535,"2":true},{"1":446,"2":true},{"1":524,"2":true}],"59":["G-TSZ99N8S23"],"6":"181476185","63":0.005} -,"permissions":{ -"__c":{} -, -"__ccd_auto_redact":{} -, -"__ccd_conversion_marking":{} -, -"__ccd_ga_first":{"read_dom_elements":{"allowedCssSelectors":"any"},"get_url":{"urlParts":"specific","protocol":true,"host":true}} -, -"__ccd_ga_last":{} -, -"__ccd_ga_regscope":{"read_container_data":{}} -, -"__e":{"read_event_data":{"eventDataAccess":"specific","keyPatterns":["event"]}} -, -"__gct":{"access_template_storage":{}} -, -"__ogt_1p_data_v2":{"detect_user_provided_data":{"limitDataSources":true,"allowAutoDataSources":true,"allowManualDataSources":false,"allowCodeDataSources":false}} -, -"__set_product_settings":{} - - -} - - - -,"security_groups":{ -"google":[ -"__c" -, -"__ccd_auto_redact" -, -"__ccd_conversion_marking" -, -"__ccd_ga_first" -, -"__ccd_ga_last" -, -"__ccd_ga_regscope" -, -"__e" -, -"__gct" -, -"__ogt_1p_data_v2" -, -"__set_product_settings" - -] - - -} - - - - - -}; - - - - -var k,aa=typeof Object.create=="function"?Object.create:function(a){var b=function(){};b.prototype=a;return new b},ca=typeof Object.defineProperties=="function"?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a},ea=function(a){for(var b=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global],c=0;c>>0;la[n]=ha?fa.Symbol(n):"$jscp$"+r+"$"+n}ca(g,la[n],{configurable:!0,writable:!0,value:q})}}},ra;if(ha&&typeof Object.setPrototypeOf=="function")ra=Object.setPrototypeOf;else{var sa;a:{var ta={a:!0},ua={};try{ua.__proto__=ta;sa=ua.a;break a}catch(a){}sa=!1}ra=sa?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} -var va=ra,wa=function(a,b){a.prototype=aa(b.prototype);a.prototype.constructor=a;if(va)va(a,b);else for(var c in b)if(c!="prototype")if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.Pt=b.prototype},xa=function(a){var b=0;return function(){return b0;){var a=this.H.pop();if(a in this.K)return a}return null}; -Ia.prototype.getNext=Ia.prototype.qo; -var Ja=function(a){this.H=new Fa;this.K=a},Ma=function(a,b){Ga(a.H);var c=a.H.T;if(c)return Ka(a,"return"in c?c["return"]:function(d){return{value:d,done:!0}},b,a.H.return);a.H.return(b);return La(a)},Ka=function(a,b,c,d){try{var e=b.call(a.H.T,c);Ea(e);if(!e.done)return a.H.ia=!1,e;var f=e.value}catch(g){return a.H.T=null,Ha(a.H,g),La(a)}a.H.T=null;d.call(a.H,f);return La(a)},La=function(a){for(;a.H.H;)try{var b=a.K(a.H);if(b)return a.H.ia=!1,{value:b.value,done:!1}}catch(d){a.H.ma=void 0,Ha(a.H, -d)}a.H.ia=!1;if(a.H.K){var c=a.H.K;a.H.K=null;if(c.isException)throw c.ko;return{value:c.return,done:!0}}return{value:void 0,done:!0}},Na=function(a){this.next=function(b){var c;Ga(a.H);a.H.T?c=Ka(a,a.H.T.next,b,a.H.Da):(a.H.Da(b),c=La(a));return c};this.throw=function(b){var c;Ga(a.H);a.H.T?c=Ka(a,a.H.T["throw"],b,a.H.Da):(Ha(a.H,b),c=La(a));return c};this.return=function(b){return Ma(a,b)};this[Symbol.iterator]=function(){return this}},Pa=function(a,b){var c=new Na(new Ja(b));va&&a.prototype&&va(c, -a.prototype);return c},Qa=function(){for(var a=Number(this),b=[],c=a;c-1};var bb=function(a,b){this.ia=a;this.parent=b;this.T=this.K=void 0;this.Db=!1;this.O=function(d,e,f){return d.apply(e,f)};this.H=Za();var c;a:{try{if(Set){c=new Set;break a}}catch(d){}c=new ab}this.Z=c};bb.prototype.add=function(a,b){cb(this,a,b,!1)};bb.prototype.Yh=function(a,b){cb(this,a,b,!0)};var cb=function(a,b,c,d){a.Db||a.Z.has(b)||(d&&a.Z.add(b),a.H.set(b,c))};k=bb.prototype; -k.set=function(a,b){this.Db||(!this.H.has(a)&&this.parent&&this.parent.has(a)?this.parent.set(a,b):this.Z.has(a)||this.H.set(a,b))};k.get=function(a){return this.H.has(a)?this.H.get(a):this.parent?this.parent.get(a):void 0};k.has=function(a){return!!this.H.has(a)||!(!this.parent||!this.parent.has(a))};k.ub=function(){var a=new bb(this.ia,this);this.K&&a.Lb(this.K);a.nd(this.O);a.qe(this.T);return a};k.de=function(){return this.ia};k.Lb=function(a){this.K=a};k.oo=function(){return this.K}; -k.nd=function(a){this.O=a};k.Yj=function(){return this.O};k.Wa=function(){this.Db=!0};k.qe=function(a){this.T=a};k.wb=function(){return this.T};var db=function(a,b,c){var d;d=Error.call(this,a.message);this.message=d.message;"stack"in d&&(this.stack=d.stack);this.Fo=a;this.ao=c===void 0?!1:c;this.debugInfo=[];this.H=b};wa(db,Error);var eb=function(a){return a instanceof db?a:new db(a,void 0,!0)};var fb=Za();function gb(a,b){for(var c,d=m(b),e=d.next();!e.done&&!(c=hb(a,e.value),c instanceof Ua);e=d.next());return c}function hb(a,b){try{var c=b[0],d=b.slice(1),e=String(c),f=fb.has(e)?fb.get(e):a.get(e);if(!f||typeof f.invoke!=="function")throw eb(Error("Attempting to execute non-function "+b[0]+"."));return f.apply(a,d)}catch(h){var g=a.oo();g&&g(h,b.context?{id:b[0],line:b.context.line}:null);throw h;}};var ib=function(){this.K=new Xa;this.H=new bb(this.K)};k=ib.prototype;k.de=function(){return this.K};k.Lb=function(a){this.H.Lb(a)};k.nd=function(a){this.H.nd(a)};k.execute=function(a){return this.Ck([a].concat(za(Qa.apply(1,arguments))))};k.Ck=function(){for(var a,b=m(Qa.apply(0,arguments)),c=b.next();!c.done;c=b.next())a=hb(this.H,c.value);return a};k.Uq=function(a){var b=Qa.apply(1,arguments),c=this.H.ub();c.qe(a);for(var d,e=m(b),f=e.next();!f.done;f=e.next())d=hb(c,f.value);return d};k.Wa=function(){this.H.Wa()};var jb=function(a,b){this.T=a;this.parent=b;this.O=this.H=void 0;this.Db=!1;this.K=function(c,d,e){return c.apply(d,e)};this.values=new Va};jb.prototype.add=function(a,b){lb(this,a,b,!1)};jb.prototype.Yh=function(a,b){lb(this,a,b,!0)};var lb=function(a,b,c,d){if(!a.Db)if(d){var e=a.values;e.set(b,c);e.H["dust."+b]=!0}else a.values.set(b,c)};k=jb.prototype;k.set=function(a,b){this.Db||(!this.values.has(a)&&this.parent&&this.parent.has(a)?this.parent.set(a,b):this.values.set(a,b))}; -k.get=function(a){return this.values.has(a)?this.values.get(a):this.parent?this.parent.get(a):void 0};k.has=function(a){return!!this.values.has(a)||!(!this.parent||!this.parent.has(a))};k.ub=function(){var a=new jb(this.T,this);this.H&&a.Lb(this.H);a.nd(this.K);a.qe(this.O);return a};k.de=function(){return this.T};k.Lb=function(a){this.H=a};k.oo=function(){return this.H};k.nd=function(a){this.K=a};k.Yj=function(){return this.K};k.Wa=function(){this.Db=!0};k.qe=function(a){this.O=a};k.wb=function(){return this.O};var mb=function(){this.Na=!1;this.la=new Va};k=mb.prototype;k.get=function(a){return this.la.get(a)};k.set=function(a,b){this.Na||this.la.set(a,b)};k.has=function(a){return this.la.has(a)};k.remove=function(a){this.Na||this.la.remove(a)};k.Ea=function(){return this.la.Ea()};k.Dc=function(){return this.la.Dc()};k.Xb=function(){return this.la.Xb()};k.Wa=function(){this.Na=!0};k.Db=function(){return this.Na};function nb(){for(var a=ob,b={},c=0;c>2,n=(f&3)<<4|g>>4,p=(g&15)<<2|h>>6,q=h&63;e||(q=64,d||(p=64));b.push(ob[l],ob[n],ob[p],ob[q])}return b.join("")} -function tb(a){function b(l){for(;d>4);g!==64&&(c+=String.fromCharCode(f<<4&240|g>>2),h!==64&&(c+=String.fromCharCode(g<<6&192|h)))}};var ub={};function vb(a,b){var c=ub[a];c||(c=ub[a]=[]);c[b]=!0}function wb(){delete ub.GA4_EVENT}function xb(){var a=yb.H.slice();ub.GTAG_EVENT_FEATURE_CHANNEL=a}function zb(a){for(var b=[],c=0,d=0;d0&&(b.push(String.fromCharCode(c)),c=0),a[d]&&(c|=1<0&&b.push(String.fromCharCode(c));return sb(b.join("")).replace(/\.+$/,"")};function Ab(){}function Bb(a){return typeof a==="function"}function Cb(a){return typeof a==="string"}function Db(a){return typeof a==="number"&&!isNaN(a)}function Eb(a){return Array.isArray(a)?a:[a]}function Fb(a,b){if(a&&Array.isArray(a))for(var c=0;cb)a=0,b=2147483647;return Math.floor(Math.random()*(b-a+1)+a)} -function Hb(a,b){for(var c=new Ib,d=0;d=b.length&&a.substring(0,b.length)===b}function Xb(a,b){return a.length>=b.length&&a.substring(a.length-b.length,a.length)===b} -function Yb(a,b,c){c=c||[];for(var d=a,e=0;e=0)return}return d}function Zb(a,b){for(var c={},d=c,e=a.split("."),f=0;f>6,128|d&63):d<55296||d>=57344?b.push(224|d>>12,128|d>>6&63,128|d&63):(d=65536+((d&1023)<<10|a.charCodeAt(++c)&1023),b.push(240|d>>18,128|d>>12&63,128|d>>6&63,128|d&63))}return new Uint8Array(b)}function cc(a,b){function c(){e&&++d===b&&(e(),e=null,c.done=!0)}var d=0,e=a;c.done=!1;return c} -function dc(a){if(!a)return a;var b=a;try{b=decodeURIComponent(a)}catch(d){}var c=b.split(",");return c.length===2&&c[0]===c[1]?c[0]:a} -function ec(a,b,c){function d(n){var p=n.split("=")[0];if(a.indexOf(p)<0)return n;if(c!==void 0)return p+"="+c}function e(n){return n.split("&").map(d).filter(function(p){return p!==void 0}).join("&")}var f=b.href.split(/[?#]/)[0],g=b.search,h=b.hash;g[0]==="?"&&(g=g.substring(1));h[0]==="#"&&(h=h.substring(1));g=e(g);h=e(h);g!==""&&(g="?"+g);h!==""&&(h="#"+h);var l=""+f+g+h;l[l.length-1]==="/"&&(l=l.substring(0,l.length-1));return l} -function fc(a){for(var b=0;b<3;++b)try{var c=decodeURIComponent(a).replace(/\+/g," ");if(c===a)break;a=c}catch(d){return""}return a}function hc(){var a=w,b;a:{var c=a.crypto||a.msCrypto;if(c&&c.getRandomValues)try{var d=new Uint8Array(25);c.getRandomValues(d);b=btoa(String.fromCharCode.apply(String,za(d))).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"");break a}catch(e){}b=void 0}return b};/* - - Copyright Google LLC - SPDX-License-Identifier: Apache-2.0 -*/ -var ic=globalThis.trustedTypes,kc;function lc(){var a=null;if(!ic)return a;try{var b=function(c){return c};a=ic.createPolicy("goog#html",{createHTML:b,createScript:b,createScriptURL:b})}catch(c){}return a}function mc(){kc===void 0&&(kc=lc());return kc};var nc=function(a){this.H=a};nc.prototype.toString=function(){return this.H+""};function oc(a){var b=a,c=mc(),d=c?c.createScriptURL(b):b;return new nc(d)}function pc(a){if(a instanceof nc)return a.H;throw Error("");};var qc=Ca([""]),rc=Aa(["\x00"],["\\0"]),sc=Aa(["\n"],["\\n"]),tc=Aa(["\x00"],["\\u0000"]);function uc(a){return a.toString().indexOf("`")===-1}uc(function(a){return a(qc)})||uc(function(a){return a(rc)})||uc(function(a){return a(sc)})||uc(function(a){return a(tc)});var vc=function(a){this.H=a};vc.prototype.toString=function(){return this.H};var wc=function(a){this.Us=a};function xc(a){return new wc(function(b){return b.substr(0,a.length+1).toLowerCase()===a+":"})}var yc=[xc("data"),xc("http"),xc("https"),xc("mailto"),xc("ftp"),new wc(function(a){return/^[^:]*([/?#]|$)/.test(a)})];function zc(a){var b;b=b===void 0?yc:b;if(a instanceof vc)return a;for(var c=0;c"+a+""),f=mc(),g=f?f.createHTML(e):e;d=new Fc(g);if(c.nodeType===1&&/^(script|style)$/i.test(c.tagName))throw Error("");var h;if(d instanceof Fc)h=d.H;else throw Error("");c.innerHTML=h;b=b.lastChild;for(var l=[];b&&b.firstChild;)l.push(b.removeChild(b.firstChild));return l} -function md(a,b,c){c=c||100;for(var d={},e=0;e0&&(a=c[0].type)}catch(d){return"e"}if(!a)return"u";switch(a){case "navigate":return"n";case "back_forward":return"h";case "reload":return"r";case "prerender":return"p";default:return"x"}}function xd(){return w.performance||void 0}function yd(){var a=w.webPixelsManager;return a?a.createShopifyExtend!==void 0:!1} -var dd=function(a,b,c,d){var e=new Image(1,1);Zc(e,d,{});e.onload=function(){e.onload=null;b&&b()};e.onerror=function(){e.onerror=null;c&&c()};e.src=a;return e},td=nd;function zd(a,b){return this.evaluate(a)&&this.evaluate(b)}function Ad(a,b){return this.evaluate(a)===this.evaluate(b)}function Bd(a,b){return this.evaluate(a)||this.evaluate(b)}function Cd(a,b){var c=this.evaluate(a),d=this.evaluate(b);return String(c).indexOf(String(d))>-1}function Dd(a,b){var c=String(this.evaluate(a)),d=String(this.evaluate(b));return c.substring(0,d.length)===d} -function Ed(a,b){var c=this.evaluate(a),d=this.evaluate(b);switch(c){case "pageLocation":var e=w.location.href;d instanceof mb&&d.get("stripProtocol")&&(e=e.replace(/^https?:\/\//,""));return e}};/* - jQuery (c) 2005, 2012 jQuery Foundation, Inc. jquery.org/license. -*/ -var Fd=/\[object (Boolean|Number|String|Function|Array|Date|RegExp)\]/,Gd=function(a){if(a==null)return String(a);var b=Fd.exec(Object.prototype.toString.call(Object(a)));return b?b[1].toLowerCase():"object"},Hd=function(a,b){return Object.prototype.hasOwnProperty.call(Object(a),b)},Id=function(a){if(!a||Gd(a)!="object"||a.nodeType||a==a.window)return!1;try{if(a.constructor&&!Hd(a,"constructor")&&!Hd(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}for(var b in a);return b===void 0|| -Hd(a,b)},Jd=function(a,b){var c=b||(Gd(a)=="array"?[]:{}),d;for(d in a)if(Hd(a,d)){var e=a[d];Gd(e)=="array"?(Gd(c[d])!="array"&&(c[d]=[]),c[d]=Jd(e,c[d])):Id(e)?(Id(c[d])||(c[d]={}),c[d]=Jd(e,c[d])):c[d]=e}return c};function Kd(a){return typeof a==="number"&&a>=0&&isFinite(a)&&a%1===0||typeof a==="string"&&a[0]!=="-"&&a===""+parseInt(a)};var Ld=function(a){a=a===void 0?[]:a;this.la=new Va;this.values=[];this.Na=!1;for(var b in a)a.hasOwnProperty(b)&&(Kd(b)?this.values[Number(b)]=a[Number(b)]:this.la.set(b,a[b]))};k=Ld.prototype;k.toString=function(a){if(a&&a.indexOf(this)>=0)return"";for(var b=[],c=0;c-1)return this.values[b]};function Td(){try{return Map?new Rd:new Sd}catch(a){return new Sd}};var Ud=function(a){if(a instanceof Ud)return a;var b;a:if(a==void 0||Array.isArray(a)||Id(a))b=!0;else{switch(typeof a){case "boolean":case "number":case "string":case "function":b=!0;break a}b=!1}if(b)throw Error("Type of given value has an equivalent Pixie type.");this.value=a};Ud.prototype.getValue=function(){return this.value};Ud.prototype.toString=function(){return String(this.value)};var Wd=function(a){this.promise=a;this.Na=!1;this.la=new Va;this.la.set("then",Vd(this));this.la.set("catch",Vd(this,!0));this.la.set("finally",Vd(this,!1,!0))};k=Wd.prototype;k.get=function(a){return this.la.get(a)};k.set=function(a,b){this.Na||this.la.set(a,b)};k.has=function(a){return this.la.has(a)};k.remove=function(a){this.Na||this.la.remove(a)};k.Ea=function(){return this.la.Ea()};k.Dc=function(){return this.la.Dc()};k.Xb=function(){return this.la.Xb()}; -var Vd=function(a,b,c){b=b===void 0?!1:b;c=c===void 0?!1:c;return new Pd("",function(d,e){b&&(e=d,d=void 0);c&&(e=d);d instanceof Pd||(d=void 0);e instanceof Pd||(e=void 0);var f=this.R.ub(),g=function(l){return function(n){try{return c?(l.invoke(f),a.promise):l.invoke(f,n)}catch(p){return Promise.reject(p instanceof Error?new Ud(p):String(p))}}},h=a.promise.then(d&&g(d),e&&g(e));return new Wd(h)})};Wd.prototype.Wa=function(){this.Na=!0};Wd.prototype.Db=function(){return this.Na};function B(a,b,c){var d=Td(),e=function(g,h){for(var l=g.Ea(),n=0;n=0;f--)if(this.has(f)&&this.get(f)===b)return f;return-1},map:function(a,b){for(var c=this.length(),d=[],e=0;ed)throw eb(Error("TypeError: ReduceRight on List with no elements."));}for(var h=f;h>=0;h--)this.has(h)&&(e=b.invoke(a,e,this.get(h),h,this));return e},reverse:function(){for(var a=Md(this),b=a.length-1,c=0;b>=0;b--,c++)a.hasOwnProperty(b)?this.set(c,a[b]):this.remove(c);return this},shift:function(){return this.shift()},slice:function(a,b,c){var d=this.length();b===void 0&&(b=0);b=b<0?Math.max(d+b,0):Math.min(b,d);c=c=== -void 0?d:c<0?Math.max(d+c,0):Math.min(c,d);c=Math.max(b,c);for(var e=[],f=b;f=0){var q=Md(f);return Yd[e].call.apply(Yd[e],[d,this.R].concat(za(q)))}}if(d instanceof Pd||d instanceof mb||d instanceof Wd){if(d.has(e)){var r=d.get(e); -if(r instanceof Pd){var t=Md(f);return r.apply(this.R,t)}throw eb(Error("TypeError: "+e+" is not a function"));}if(e==="toString")return d instanceof Pd?d.getName():d.toString();if(e==="hasOwnProperty")return d.has(f.get(0))}if(d instanceof Ud&&e==="toString")return d.toString();throw eb(Error("TypeError: Object has no '"+e+"' property."));} -function ee(a,b){a=this.evaluate(a);if(typeof a!=="string")throw Error("Invalid key name given for assignment.");var c=this.R;if(!c.has(a))throw Error("Attempting to assign to undefined value "+b);var d=this.evaluate(b);c.set(a,d);return d}function fe(){var a=Qa.apply(0,arguments),b=this.R.ub(),c=gb(b,a);if(c instanceof Ua)return c}function ge(){return $d}function he(a){for(var b=this.evaluate(a),c=0;cthis.evaluate(b)}function Fe(a,b){return this.evaluate(a)>=this.evaluate(b)} -function Ge(a,b){var c=this.evaluate(a),d=this.evaluate(b);c instanceof Ud&&(c=c.getValue());d instanceof Ud&&(d=d.getValue());return c===d}function He(a,b){return!Ge.call(this,a,b)}function Ie(a,b,c){var d=[];this.evaluate(a)?d=this.evaluate(b):c&&(d=this.evaluate(c));var e=gb(this.R,d);if(e instanceof Ua)return e}var Ce=!1; -function Je(a,b){return this.evaluate(a)>Number(this.evaluate(b))} -function hf(a,b){return Number(this.evaluate(a))>>>Number(this.evaluate(b))}function jf(a,b){return Number(this.evaluate(a))&Number(this.evaluate(b))}function kf(a,b){return Number(this.evaluate(a))^Number(this.evaluate(b))}function lf(a,b){return Number(this.evaluate(a))|Number(this.evaluate(b))}function mf(){} -function nf(a,b,c){try{var d=this.evaluate(b);if(d instanceof Ua)return d}catch(h){if(!(h instanceof db&&h.ao))throw h;var e=this.R.ub();a!==""&&(h instanceof db&&(h=h.Fo),e.add(a,new Ud(h)));var f=this.evaluate(c),g=gb(e,f);if(g instanceof Ua)return g}}function of(a,b){var c,d;try{d=this.evaluate(a)}catch(f){if(!(f instanceof db&&f.ao))throw f;c=f}var e=this.evaluate(b);if(e instanceof Ua)return e;if(c)throw c;if(d instanceof Ua)return d};var qf=function(){this.H=new ib;pf(this)};qf.prototype.execute=function(a){return this.H.Ck(a)};var pf=function(a){var b=function(c,d){var e=new Qd(String(c),d);e.Wa();var f=String(c);a.H.H.set(f,e);fb.set(f,e)};b("map",Me);b("and",zd);b("contains",Cd);b("equals",Ad);b("or",Bd);b("startsWith",Dd);b("variable",Ed)};qf.prototype.Lb=function(a){this.H.Lb(a)};var sf=function(){this.K=!1;this.H=new ib;rf(this);this.K=!0};sf.prototype.execute=function(a){return tf(this.H.Ck(a))};var uf=function(a,b,c){return tf(a.H.Uq(b,c))};sf.prototype.Wa=function(){this.H.Wa()}; -var rf=function(a){var b=function(c,d){var e=String(c),f=new Qd(e,d);f.Wa();a.H.H.set(e,f);fb.set(e,f)};b(0,be);b(1,ce);b(2,de);b(3,ee);b(56,jf);b(57,ff);b(58,ef);b(59,lf);b(60,gf);b(61,hf);b(62,kf);b(53,fe);b(4,ge);b(5,he);b(68,nf);b(52,ie);b(6,je);b(49,ke);b(7,Le);b(8,Me);b(9,he);b(50,le);b(10,me);b(12,ne);b(13,oe);b(67,of);b(51,Ae);b(47,re);b(54,se);b(55,te);b(63,ze);b(64,ue);b(65,xe);b(66,ye);b(15,Be);b(16,De);b(17,De);b(18,Ee);b(19,Fe);b(20,Ge);b(21,He);b(22,Ie);b(23,Je);b(24,Ke);b(25,Ne);b(26, -Oe);b(27,Pe);b(28,Qe);b(29,Re);b(45,Se);b(30,Te);b(32,Ue);b(33,Ue);b(34,Ve);b(35,Ve);b(46,We);b(36,Xe);b(43,Ye);b(37,Ze);b(38,$e);b(39,af);b(40,bf);b(44,mf);b(41,cf);b(42,df)};sf.prototype.de=function(){return this.H.de()};sf.prototype.Lb=function(a){this.H.Lb(a)};sf.prototype.nd=function(a){this.H.nd(a)}; -function tf(a){if(a instanceof Ua||a instanceof Pd||a instanceof Ld||a instanceof mb||a instanceof Wd||a instanceof Ud||a===null||a===void 0||typeof a==="string"||typeof a==="number"||typeof a==="boolean")return a};var vf=function(a){this.message=a};function wf(a){a.yv=!0;return a};var xf=wf(function(a){return typeof a==="number"}),yf=wf(function(a){return typeof a==="string"}),zf=wf(function(a){return typeof a==="boolean"});function Af(a){var b="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[a];return b===void 0?new vf("Value "+a+" can not be encoded in web-safe base64 dictionary."):b};function Bf(a){switch(a){case 1:return"1";case 2:case 4:return"0";default:return"-"}};var Cf=/^[1-9a-zA-Z_-][1-9a-c][1-9a-v]\d$/;function Df(a,b){for(var c="",d=!0;a>7;){var e=a&31;a>>=5;d?d=!1:e|=32;c=""+Af(e)+c}a<<=2;d||(a|=32);return c=""+Af(a|b)+c} -function Ef(a,b){var c;var d=a.ri,e=a.nk;d===void 0?c="":(e||(e=0),c=""+Df(1,1)+Af(d<<2|e));var f=a.Fr,g="4"+c+(f?""+Df(2,1)+Af(f):""),h,l=a.So;h=l&&Cf.test(l)?""+Df(3,2)+l:"";var n,p=a.Oo;n=p?""+Df(4,1)+Af(p):"";var q;var r=a.ctid;if(r&&b){var t=Df(5,3),u=r.split("-"),v=u[0].toUpperCase();if(v!=="GTM"&&v!=="OPT")q="";else{var x=u[1];q=""+t+Af(1+x.length)+(a.Ws||0)+x}}else q="";var y=a.Nt,z=a.canonicalId,C=a.ac,D=a.Gv,H=g+h+n+q+(y?""+Df(6,1)+Af(y):"")+(z?""+Df(7,3)+Af(z.length)+z:"")+(C?""+Df(8,3)+ -Af(C.length)+C:"")+(D?""+Df(9,3)+Af(D.length)+D:""),G;var J=a.Mr;J=J===void 0?{}:J;for(var S=[],V=m(Object.keys(J)),da=V.next();!da.done;da=V.next()){var pa=da.value;S[Number(pa)]=J[pa]}if(S.length){var ka=Df(10,3),na;if(S.length===0)na=Af(0);else{for(var ba=[],ia=0,Oa=!1,Ba=0;Ba>6|192:((e&64512)==55296&&d+1>18|240,b[c++]=e>>12&63|128):b[c++]=e>>12|224,b[c++]=e>>6&63|128),b[c++]=e&63|128)}return b};function Gf(a,b){for(var c=tb(b),d=new Uint8Array(c.length),e=0;e0;b--)Db(a[b].id)&&a.splice(b++,1);for(var c=a.length-1;c>0;c--)a[c].line=a[c-1].line;a.splice(0,1);return a};var Uf=RegExp("[^0-9\\.+-]","g"),Vf=RegExp("[^0-9\\,+-]","g"),Wf=RegExp("[^0-9+-]","g"); -function Xf(a,b){if(typeof a==="number")return a;var c=String(a),d;if(b==="AUTOMATIC"){var e=(c.match(/\./g)||[]).length,f=(c.match(/,/g)||[]).length,g="NONE";if(e>0&&f>0){var h=c.lastIndexOf(".")>c.lastIndexOf(",");h&&e===1?g="PERIOD":h||f!==1||(g="COMMA")}else e===1?g=(c.split(".")[1].match(/[0-9]/g)||[]).length!==3?"PERIOD":"NONE":f===1&&(g=(c.split(",")[1].match(/[0-9]/g)||[]).length!==3?"COMMA":"NONE");d=g}else d=b==="COMMA"?"COMMA":"PERIOD";var l,n;d==="PERIOD"?(l=".",n=Uf):d==="COMMA"?(l=",", -n=Vf):(l="",n=Wf);var p=c.replace(n,"");if(l!==""&&p.split(l).length>2)return a;var q=p.replace(/,/g,".");if(q==="")return a;var r=Number(q);return isNaN(r)?a:r};var Yf=[],Zf={};function $f(a){return Yf[a]===void 0?!1:Yf[a]};var ag=function(){this.H={}},bg=function(a,b,c){var d;(d=a.H)[b]!=null||(d[b]=[]);a.H[b].push(function(){return c.apply(null,za(Qa.apply(0,arguments)))})};function cg(a,b,c,d){if(a)for(var e=0;e=0;d--)e=a.charCodeAt(d),b=(b<<6&268435455)+e+(e<<14),c=b&266338304,b=c!==0?b^c>>21:b;return b};var qg=function(a){this.cache=a};qg.prototype.get=function(a){var b=pg(a),c=this.cache.get(b);if(c)if(Date.now()>=c.timestamp+9E5)this.cache.delete(b);else return c.resolvedValue?Promise.resolve(c.resolvedValue):c.promise};qg.prototype.set=function(a,b){var c={promise:b,resolvedValue:void 0,timestamp:Date.now()};this.cache.set(pg(a),c);b.then(function(d){c.resolvedValue=d})};function rg(a){switch(a){case 0:break;case 9:return"e4";case 6:return"e5";case 14:return"e6";default:return"e7"}};var F={D:{Ta:"ad_personalization",ja:"ad_storage",ka:"ad_user_data",sa:"analytics_storage",fc:"region",wa:"consent_updated",hh:"wait_for_update",xf:"endpoint_type",Bp:"app_remove",Cp:"app_store_refund",Dp:"app_store_subscription_cancel",Ep:"app_store_subscription_convert",Fp:"app_store_subscription_renew",Gp:"consent_update",Hp:"conversion",Fl:"add_payment_info",Gl:"add_shipping_info",ve:"add_to_cart",we:"remove_from_cart",Hl:"view_cart",vd:"begin_checkout",mu:"generate_lead",xe:"select_item",hc:"view_item_list", -Mc:"select_promotion",jc:"view_promotion",Eb:"purchase",ye:"refund",kc:"view_item",Il:"add_to_wishlist",Ip:"exception",Jp:"first_open",Kp:"first_visit",xa:"gtag.config",Fb:"gtag.get",Lp:"in_app_purchase",mc:"page_view",Mp:"screen_view",Np:"session_start",Op:"source_update",Pp:"timing_complete",Qp:"track_social",yf:"user_engagement",Rp:"user_id_update",mh:"braid_link_decoration_source",nh:"braid_storage_source",wd:"gclid_link_decoration_source",xd:"gclid_storage_source",Ob:"gclgb",jb:"gclid",Jl:"gclid_len", -ze:"gclgs",Ae:"gcllp",Be:"gclst",kb:"ads_data_redaction",zf:"gad_source",Af:"gad_source_src",yd:"gclid_url",Kl:"gclsrc",Bf:"gbraid",Ce:"wbraid",Nc:"allow_ad_personalization_signals",Ci:"allow_custom_scripts",oh:"allow_display_features",Di:"allow_enhanced_conversions",Oc:"allow_google_signals",Ei:"allow_interest_groups",Sp:"app_id",Tp:"app_installer_id",Up:"app_name",Vp:"app_version",zd:"auid",nu:"auto_detection_enabled",Ll:"auto_event",Ml:"aw_remarketing",ph:"aw_remarketing_only",Cf:"discount",Df:"aw_feed_country", -Ef:"aw_feed_language",Ga:"items",Ff:"aw_merchant_id",Fi:"aw_basket_type",Gf:"campaign_content",Hf:"campaign_id",If:"campaign_medium",Jf:"campaign_name",Kf:"campaign",Lf:"campaign_source",Mf:"campaign_term",Gb:"client_id",Nl:"rnd",Gi:"consent_update_type",Wp:"content_group",Xp:"content_type",Bd:"conversion_cookie_prefix",qh:"conversion_id",nc:"conversion_linker",Nf:"conversion_linker_disabled",De:"conversion_api",Hi:"_&rcb",rh:"cookie_deprecation",Hb:"cookie_domain",zb:"cookie_expires",Pb:"cookie_flags", -Dd:"cookie_name",oc:"cookie_path",lb:"cookie_prefix",Ed:"cookie_update",Pc:"country",Ya:"currency",Ee:"customer_lifetime_value",sh:"customer_loyalty",th:"customer_ltv_bucket",uh:"customer_type",Fe:"custom_map",Ii:"gcldc_link_decoration_source",Ji:"gcldc_storage_source",Of:"gcldc",Fd:"dclid",Ol:"debug_mode",Ua:"developer_id",Yp:"disable_merchant_reported_purchases",Qc:"dc_custom_params",Zp:"dc_natural_search",aq:"dynamic_event_settings",Pl:"affiliation",wh:"checkout_option",Ki:"checkout_step",Ql:"coupon", -Pf:"item_list_name",Li:"list_name",bq:"promotions",Gd:"shipping",Rl:"tax",xh:"engagement_time_msec",yh:"enhanced_client_id",cq:"enhanced_conversions",ou:"enhanced_conversions_automatic_settings",Ge:"estimated_delivery_date",Qf:"event_callback",fq:"event_category",Rc:"event_developer_id_string",Hd:"event_id",Mi:"_event_join_id",gq:"event_label",qc:"event",Sl:"_&ae",Ni:"event_settings",zh:"event_timeout",hq:"description",iq:"fatal",jq:"experiments",Id:"ext_client_id",Oi:"firebase_id",Rf:"first_party_collection", -Sf:"_x_20",Qb:"_x_19",kq:"flight_error_code",lq:"flight_error_message",Pi:"fl_activity_category",Qi:"fl_activity_group",Ah:"fl_advertiser_id",Ri:"match_id",Tl:"fl_random_number",Ul:"tran",Vl:"u",Bh:"gac_gclid",He:"gac_wbraid",Wl:"gac_wbraid_multiple_conversions",mq:"ga_restrict_domain",Xl:"ga_temp_client_id",nq:"ga_temp_ecid",Ie:"gdpr_applies",Ch:"_gt_metadata",Yl:"geo_granularity",Tf:"value_callback",Uf:"value_key",Va:"google_analysis_params",Je:"_google_ng",oq:"_ono",Vf:"google_signals",qq:"google_tld", -Dh:"gpp_sid",Eh:"gpp_string",Fh:"groups",Zl:"gsa_experiment_id",Wf:"gtag_event_feature_usage",am:"gtm_up",Ke:"iframe_state",Xf:"ignore_referrer",bm:"internal_traffic_results",dm:"_is_fpm",Uc:"is_legacy_converted",Vc:"is_legacy_loaded",Si:"is_passthrough",Le:"_lps",rb:"language",Ti:"legacy_developer_id_string",Ab:"linker",Yf:"accept_incoming",rc:"decorate_forms",ya:"domains",Wc:"url_position",Jd:"merchant_feed_label",Kd:"merchant_feed_language",Ld:"merchant_id",fm:"method",rq:"name",gm:"navigation_type", -Me:"new_customer",Ui:"non_interaction",sq:"optimize_id",hm:"page_hostname",Zf:"page_path",Za:"page_referrer",Ib:"page_title",tq:"passengers",im:"phone_conversion_callback",uq:"phone_conversion_country_code",jm:"phone_conversion_css_class",wq:"phone_conversion_ids",km:"phone_conversion_number",lm:"phone_conversion_options",xq:"_platinum_request_status",yq:"_protected_audience_enabled",Gh:"quantity",Hh:"redact_device_info",om:"referral_exclusion_definition",pu:"_request_start_time",Rb:"restricted_data_processing", -zq:"retoken",Aq:"sample_rate",Vi:"screen_name",Xc:"screen_resolution",qm:"_script_source",Bq:"search_term",Md:"send_page_view",Nd:"send_to",Wi:"server_container_3p_enrichment",Od:"server_container_url",Cq:"session_attributes_encoded",Ih:"session_duration",Jh:"session_engaged",Xi:"session_engaged_time",sc:"session_id",Kh:"session_number",cg:"_shared_user_id",Pd:"delivery_postal_code",qu:"_tag_firing_delay",ru:"_tag_firing_time",su:"temporary_client_id",Yi:"testonly",Dq:"_timezone",dg:"topmost_url", -eg:"tracking_id",Zi:"traffic_type",Oa:"transaction_id",rm:"transaction_id_source",Yc:"transport_url",Eq:"trip_type",Qd:"update",uc:"url_passthrough",sm:"uptgs",fg:"_user_agent_architecture",gg:"_user_agent_bitness",hg:"_user_agent_full_version_list",ig:"_user_agent_mobile",jg:"_user_agent_model",kg:"_user_agent_platform",lg:"_user_agent_platform_version",mg:"_user_agent_wow64",vc:"user_data",tm:"user_data_auto_latency",vm:"user_data_auto_meta",wm:"user_data_auto_multi",xm:"user_data_auto_selectors", -ym:"user_data_auto_status",wc:"user_data_mode",zm:"user_data_settings",ab:"user_id",Rd:"user_properties",Am:"_user_region",ng:"us_privacy_string",Pa:"value",Bm:"wbraid_multiple_conversions",Zc:"_fpm_parameters",ej:"_host_name",jn:"_in_page_command",gj:"_ip_override",nn:"_is_passthrough_cid",Sh:"_measurement_type",Xd:"non_personalized_ads",wj:"_sst_parameters",nr:"sgtm_geo_user_country",Cd:"conversion_label",Ca:"page_location",Sc:"_extracted_data",Tc:"global_developer_id_string",Ne:"tc_privacy_string"}};var I={J:{ep:"abort_without_fail",ui:"accept_by_default",Mk:"add_tag_timing",ue:"ads_event_page_view",pd:"allow_ad_personalization",Zt:"auto_event",Uk:"batch_on_navigation",wi:"biscotti_join_id",Yk:"client_id_source",tf:"consent_event_id",uf:"consent_priority_id",bu:"consent_state",wa:"consent_updated",vf:"conversion_linker_enabled",du:"conversion_marking_called",Fa:"cookie_options",zl:"dc_random",Lc:"em_event",ku:"endpoint_for_debug",El:"enhanced_client_id_source",Ap:"enhanced_match_result",Cm:"euid_logged_in_state", -og:"euid_mode_enabled",Fq:"event_provenance",uu:"event_source",sb:"event_start_timestamp_ms",Gm:"event_usage",Mh:"extra_tag_experiment_ids",xu:"add_parameter",cj:"counting_method",Nh:"send_as_iframe",yu:"parameter_order",Oh:"parsed_target",Lq:"ga4_collection_subdomain",dj:"ga4_request_flags",Xm:"gbraid_cookie_marked",bn:"gtm_extracted_data",yc:"handle_internally",Bu:"has_ga_conversion_consents",ba:"hit_type",zc:"hit_type_override",Sq:"ignore_dupe_config",Vu:"is_config_command",Qh:"is_consent_update", -pg:"is_conversion",kn:"is_ecommerce",ln:"is_ec_cm_split",Ud:"is_external_event",qg:"is_first_visit",mn:"is_first_visit_conversion",ij:"is_fl_fallback_conversion_flow_allowed",bd:"is_fpm_encryption",jj:"is_fpm_split",Ha:"is_gcp_browser",kj:"is_google_measurement_allowed",lj:"is_google_signals_enabled",Vd:"is_merchant_center",Rh:"is_new_to_site",Ac:"is_personalization",mj:"is_server_side_destination",Qe:"is_session_start",on:"is_session_start_conversion",Wu:"is_sgtm_ga_ads_conversion_study_control_group", -Xu:"is_sgtm_prehit",pn:"is_sgtm_service_worker",rg:"is_split_conversion",Tq:"is_syn",Tb:"is_test_event",sg:"join_id",nj:"join_elapsed",tg:"join_timer_sec",rn:"local_storage_aw_conversion_counters",Te:"tunnel_updated",dv:"prehit_for_retry",gv:"promises",hv:"record_aw_latency",Ue:"redact_ads_data",Ve:"redact_click_ids",zn:"remarketing_only",tj:"send_ccm_parallel_ping",Zd:"send_doubleclick_join",Vh:"send_fpm_geo_join",Wh:"send_fpm_google_join",kv:"send_ccm_parallel_test_ping",Bn:"send_google_measurement", -vg:"send_tld_join",wg:"send_to_destinations",uj:"send_to_targets",Cn:"send_user_data_hit",xj:"service_worker_context",Jb:"source_canonical_id",Ja:"speculative",Jn:"speculative_in_message",Ln:"suppress_script_load",Mn:"syn_or_mod",Hj:"transient_ecsid",xg:"transmission_type",cb:"user_data",ov:"user_data_from_automatic",pv:"user_data_from_automatic_getter",Qn:"user_data_from_code",xr:"user_data_from_manual",qv:"user_data_mode",yg:"user_id_updated"}}; -var vg=function(a){var b={},c=0;Jb(a,function(e,f){if(f!=null){var g=(""+f).replace(/~/g,"~~");if(sg.hasOwnProperty(e))b[sg[e]]=g;else if(tg.hasOwnProperty(e)){var h=tg[e];b.hasOwnProperty(h)||(b[h]=g)}else if(e==="category")for(var l=g.split("/",5),n=0;n16384)throw Error("EVENT_TOO_LARGE");}; -var yg=function(){this.events=[];this.H="";this.za={};this.baseUrl="";this.O=0;this.K=1;this.endpoint=0};yg.prototype.add=function(a){return this.T(a)?(this.events.push(a),this.H=a.K,this.za=a.za,this.baseUrl=a.baseUrl,this.O+=a.T,this.K=a.O,this.endpoint=a.endpoint,this.destinationId=a.destinationId,this.Z=a.eventId,this.ia=a.priorityId,!0):!1};yg.prototype.T=function(a){return this.events.length?this.events.length>=20||a.T+this.O>=16384?!1:this.baseUrl===a.baseUrl&&this.K===a.O&&this.ma(a):!0}; -yg.prototype.ma=function(a){return this.H===a.K};var K={V:{vp:1,xp:2,Pn:3,xn:4,Bl:5,Cl:6,Pq:7,yp:8,Oq:9,up:10,tp:11,In:12,Gn:13,Xk:14,hp:15,kp:16,sn:17,Dl:18,qn:19,wp:20,ar:21,np:22,jp:23,lp:24,yl:25,Vk:26,ur:27,Tm:28,hn:29,gn:30,fn:31,Wm:32,Um:33,Vm:34,Qm:35,Pm:36,Rm:37,Sm:38,Mq:39,Nq:40,jr:41}};K.V[K.V.vp]="CREATE_EVENT_SOURCE";K.V[K.V.xp]="EDIT_EVENT";K.V[K.V.Pn]="TRAFFIC_TYPE";K.V[K.V.xn]="REFERRAL_EXCLUSION";K.V[K.V.Bl]="ECOMMERCE_FROM_GTM_TAG";K.V[K.V.Cl]="ECOMMERCE_FROM_GTM_UA_SCHEMA";K.V[K.V.Pq]="GA_SEND";K.V[K.V.yp]="EM_FORM"; -K.V[K.V.Oq]="GA_GAM_LINK";K.V[K.V.up]="CREATE_EVENT_AUTO_PAGE_PATH";K.V[K.V.tp]="CREATED_EVENT";K.V[K.V.In]="SIDELOADED";K.V[K.V.Gn]="SGTM_LEGACY_CONFIGURATION";K.V[K.V.Xk]="CCD_EM_EVENT";K.V[K.V.hp]="AUTO_REDACT_EMAIL";K.V[K.V.kp]="AUTO_REDACT_QUERY_PARAM";K.V[K.V.sn]="MULTIPLE_PAGEVIEW_FROM_CONFIG";K.V[K.V.Dl]="EM_EVENT_SENT_BEFORE_CONFIG";K.V[K.V.qn]="LOADED_VIA_CST_OR_SIDELOADING";K.V[K.V.wp]="DECODED_PARAM_MATCH";K.V[K.V.ar]="NON_DECODED_PARAM_MATCH";K.V[K.V.np]="CCD_EVENT_SGTM"; -K.V[K.V.jp]="AUTO_REDACT_EMAIL_SGTM";K.V[K.V.lp]="AUTO_REDACT_QUERY_PARAM_SGTM";K.V[K.V.yl]="DAILY_LIMIT_REACHED";K.V[K.V.Vk]="BURST_LIMIT_REACHED";K.V[K.V.ur]="SHARED_USER_ID_SET_AFTER_REQUEST";K.V[K.V.Tm]="GA4_MULTIPLE_SESSION_COOKIES";K.V[K.V.hn]="INVALID_GA4_SESSION_COUNT";K.V[K.V.gn]="INVALID_GA4_LAST_EVENT_TIMESTAMP";K.V[K.V.fn]="INVALID_GA4_JOIN_TIMER";K.V[K.V.Wm]="GA4_STALE_SESSION_COOKIE_SELECTED";K.V[K.V.Um]="GA4_SESSION_COOKIE_GS1_READ";K.V[K.V.Vm]="GA4_SESSION_COOKIE_GS2_READ"; -K.V[K.V.Qm]="GA4_DL_PARAM_RECOVERY_AVAILABLE";K.V[K.V.Pm]="GA4_DL_PARAM_RECOVERY_APPLIED";K.V[K.V.Rm]="GA4_GOOGLE_MEASUREMENT_ALLOWED";K.V[K.V.Sm]="GA4_GOOGLE_SIGNALS_ENABLED";K.V[K.V.Mq]="GA4_FALLBACK_REQUEST";K.V[K.V.Nq]="GA_ADS_LINK_BEFORE_CONVERSION_MARKING";K.V[K.V.jr]="PLATINUM_ELIGIBLE";var zg={},Ag=(zg.uaa=!0,zg.uab=!0,zg.uafvl=!0,zg.uamb=!0,zg.uam=!0,zg.uap=!0,zg.uapv=!0,zg.uaw=!0,zg); -var Dg=function(a,b){var c=a.events;if(c.length===1)return Bg(c[0],b);var d=[];a.H&&d.push(a.H);for(var e={},f=0;fx&&(v=z,x=D)});y===c.length&&(g[t]=v)});Cg(g,d);b&&d.push("_s="+b);for(var h=d.join("&"),l=[],n={},p=0;p2048&&(f=c.pop(),e=c.join("&"));return{params:e,body:f}},Cg=function(a,b){Jb(a,function(c,d){d!=null&&b.push(encodeURIComponent(c)+"="+encodeURIComponent(d))})}; -var Gg=function(a,b){for(var c=0;cd.length||!g&&d.length!==e.length?0:g?Wb(d,h)&&(d===h||d.charAt(h.length)==="."):d===h)return!0}return!1},Fg=/^[a-z$_][\w-$]*$/i,Eg=/^(?:[a-z_$][a-z-_$0-9]*\.)*[a-z_$][a-z-_$0-9]*(?:\.\*)?$/i; -var Hg=["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector"];function Ig(a,b){if(!a)return!1;try{for(var c=0;c=0&&c.indexOf(d,e)===e}function Kg(a,b){return String(a).split(",").indexOf(String(b))>=0} -function Lg(a,b,c,d){var e=c?"i":void 0;try{var f=String(b)+String(e),g=d==null?void 0:d.get(f);g||(g=new RegExp(b,e),d==null||d.set(f,g));return g.test(a)}catch(h){return!1}}function Mg(a,b){return String(a).indexOf(String(b))>=0}function Ng(a,b){return String(a)===String(b)}function Og(a,b){return Number(a)>=Number(b)}function Pg(a,b){return Number(a)<=Number(b)}function Qg(a,b){return Number(a)>Number(b)}function Rg(a,b){return Number(a)0;case 3:return!d(c[0]); -case 4:return Lg(d(c[0]),d(c[1]),!1,b.regexCache);case 5:return Ng(d(c[0]),d(c[1]));case 6:return Sg(d(c[0]),d(c[1]));case 7:return Jg(d(c[0]),d(c[1]));case 8:return Mg(d(c[0]),d(c[1]));case 9:return Rg(d(c[0]),d(c[1]));case 10:return Pg(d(c[0]),d(c[1]));case 11:return Qg(d(c[0]),d(c[1]));case 12:return Og(d(c[0]),d(c[1]));case 13:return Kg(d(c[0]),String(d(c[1])));default:throw Error('Invalid boolean expression format. Expected "type" property tobe a positive integer which is less than 14.');}}; -function Nh(a){if(!ph(a))throw L(this.getName(),["string|undefined"],arguments);};function Oh(a){var b=B(a);return pg(b?""+b:"")};function Ph(a,b){if(!th(a)||!th(b))throw L(this.getName(),["number","number"],arguments);return Gb(a,b)};function Qh(){return(new Date).getTime()};function Rh(a){if(a===null)return"null";if(a instanceof Ld)return"array";if(a instanceof Pd)return"function";if(a instanceof Ud){var b=a.getValue();if((b==null?void 0:b.constructor)===void 0||b.constructor.name===void 0){var c=String(b);return c.substring(8,c.length-1)}return String(b.constructor.name)}return typeof a};function Sh(a){function b(c){return function(d){try{return c(d)}catch(e){(ng||og.ap)&&a.call(this,e.message)}}}return{parse:b(function(c){return Xd(JSON.parse(c))}),stringify:b(function(c){return JSON.stringify(B(c))}),publicName:"JSON"}};function Th(a){return Lb(B(a,this.R))};function Uh(a){return Number(B(a,this.R))};function Vh(a){return a===null?"null":a===void 0?"undefined":a.toString()};function Wh(a,b,c){var d=null,e=!1;return e?d:null};var Ch="floor ceil round max min abs pow sqrt".split(" ");function Xh(){var a={};return{rs:function(b){return a.hasOwnProperty(b)?a[b]:void 0},Uo:function(b,c){a[b]=c},reset:function(){a={}}}}function Yh(a,b){return function(){return Pd.prototype.invoke.apply(a,[b].concat(za(Qa.apply(0,arguments))))}} -function Zh(a,b){if(!M(a))throw L(this.getName(),["string","any"],arguments);} -function $h(a,b){if(!M(a)||!ih(b))throw L(this.getName(),["string","PixieMap"],arguments);};var ai={};var bi=function(a){var b=new mb;if(a instanceof Ld)for(var c=a.Ea(),d=0;d0){for(var d=Array(c),e=0;e>>7|g<<25)^(g>>>18|g<<14)^g>>>3)|0)+((c[f-7]|0)+((h>>>17|h<<15)^(h>>>19|h<<13)^h>>>10)|0)|0}for(var l=a.H[0]|0,n=a.H[1]|0,p=a.H[2]|0,q=a.H[3]|0,r=a.H[4]|0,t=a.H[5]|0,u=a.H[6]|0,v=a.H[7]|0,x=0;x<64;x++){var y=((l>>>2|l<<30)^(l>>>13|l<<19)^(l>>>22|l<<10))+(l&n^l&p^n&p)|0,z=(v+((r>>>6|r<<26)^(r>>>11|r<<21)^(r>>>25|r<<7))| -0)+(((r&t^~r&u)+(ri[x]|0)|0)+(c[x]|0)|0)|0;v=u;u=t;t=r;r=q+z|0;q=p;p=n;n=l;l=z+y|0}a.H[0]=a.H[0]+l|0;a.H[1]=a.H[1]+n|0;a.H[2]=a.H[2]+p|0;a.H[3]=a.H[3]+q|0;a.H[4]=a.H[4]+r|0;a.H[5]=a.H[5]+t|0;a.H[6]=a.H[6]+u|0;a.H[7]=a.H[7]+v|0}; -qi.prototype.update=function(a,b){b===void 0&&(b=a.length);var c=0,d=this.K;if(typeof a==="string")for(;c=g&&g==(g|0)))throw Error("message must be a byte array");this.O[d++]=g;d==this.blockSize&&(wi(this),d=0)}else throw Error("message must be string or array"); -}this.K=d;this.T+=b};qi.prototype.digest=function(){var a=[],b=this.T*8;this.K<56?this.update(vi,56-this.K):this.update(vi,this.blockSize-(this.K-56));for(var c=63;c>=56;c--)this.O[c]=b&255,b/=256;wi(this);for(var d=0,e=0;e=0;f-=8)a[d++]=this.H[e]>>f&255;return a}; -var si=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804, -4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],ri;function xi(){qi.call(this,8,yi)}Ta(xi,qi);var yi=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225];var zi=/^[0-9A-Fa-f]{64}$/;function Ai(a){try{return(new TextEncoder).encode(a)}catch(b){return bc(a)}}function Bi(a){var b=w;if(a===""||a==="e0")return Promise.resolve(a);var c;if((c=b.crypto)==null?0:c.subtle){if(zi.test(a))return Promise.resolve(a);try{var d=Ai(a);return b.crypto.subtle.digest("SHA-256",d).then(function(e){return Ci(e,b)}).catch(function(){return"e2"})}catch(e){return Promise.resolve("e2")}}else return Promise.resolve("e1")} -function Di(a){try{var b=new xi;b.update(Ai(a));return b.digest()}catch(c){return"e2"}}function Ei(a){var b=w;if(a===""||a==="e0"||zi.test(a))return a;var c=Di(a);if(c==="e2")return"e2";try{return Ci(c,b)}catch(d){return"e2"}}function Ci(a,b){var c=Array.from(new Uint8Array(a)).map(function(d){return String.fromCharCode(d)}).join("");return b.btoa(c).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")};function Fi(){for(var a=!1,b=!1,c=0;a===b;)if(a=Gb(0,1)===0,b=Gb(0,1)===0,c++,c>30)return;return a}var Hi={Dk:function(a,b,c){return Gi.Dk(a,b,c)}},Ii=function(){this.studies={};this.H=Fi}; -Ii.prototype.Dk=function(a,b,c){var d=this.studies[b];if(!((c===void 0?Gb(0,9999):c%1E4)>1)%2===0:this.H();if(p===void 0)break a;n|=(p?0:1)<<1}n===0?Ji(a,f,e):n===1?Ji(a,g,e):n===2&&Ji(a,h,e)}}}return a}; -var Li=function(a,b){var c=Gi;return c.studies[b]?Ki(c,b)||!!(a.exp||{})[c.studies[b].experimentId]:!1},Mi=function(a,b){var c=Gi;return c.studies[b]&&c.studies[b].controlId&&!Ki(c,b)?!!(a.exp||{})[c.studies[b].controlId]:!1},Ni=function(a,b){var c=Gi;return c.studies[b]&&c.studies[b].controlId2&&!Ki(c,b)?!!(a.exp||{})[c.studies[b].controlId2]:!1},Ki=function(a,b){return!!a.studies[b].active||a.studies[b].probability>.5},Ji=function(a,b,c){var d=a.exp||{};d[b]=c;a.exp=d},Gi=new Ii;var Oi=function(a){switch(a){case 1:return 0;case 502:return 15;case 491:return 13;case 480:return 12;case 499:return 11;case 500:return 6;case 421:return 10;case 513:return 9;case 561:return 18;case 482:return 16;case 570:return 20;case 495:return 14;case 514:return 17;case 573:return 19;case 235:return 8;case 53:return 1;case 54:return 2;case 52:return 4;case 75:return 3;case 109:return 9}},Pi=function(a,b){a.O[b]=!0;var c=Oi(b);c!==void 0&&(Yf[c]=!0)},P=function(a){return!!Qi.O[a]},Qi=new function(){this.O= -[];this.K=[];this.H=[]; -Pi(this,132); -var a=Pf(6,6E4);Zf[1]=a;var b=Pf(7,1);Zf[3]=b;var c=Pf(35,50);Zf[2]=c;var d=Pf(69,1776448920);Zf[4]=d; - -Pi(this,435);Pi(this,141); -};var Ri=function(){this.H=new Set;this.K=new Set},Ti=function(a){var b=Si.H;a=a===void 0?[]:a;var c=[].concat(za(b.H)).concat([].concat(za(b.K))).concat(a);c.sort(function(d,e){return d-e});return c},Ui=function(){var a=[].concat(za(Si.H.H));a.sort(function(b,c){return b-c});return a},Wi=function(){var a=Si.H,b=E(44);a.H=new Set;if(b!=="")for(var c=m(b.split("~")),d=c.next();!d.done;d=c.next()){var e=Number(d.value);isNaN(e)||a.H.add(e)}};var Xi={},Yi={__cl:1,__ecl:1,__ehl:1,__evl:1,__fal:1,__fil:1,__fsl:1,__hl:1,__jel:1,__lcl:1,__sdl:1,__tl:1,__ytl:1},Zi=oa(Object,"assign").call(Object,{},{__paused:1,__tg:1},Yi),$i,aj=!1;$i=aj;var bj="";Xi.yj=bj;var Si=new function(){this.H=new Ri};var cj=/:[0-9]+$/,dj=/^\d+\.fls\.doubleclick\.net$/;function ej(a,b,c,d){var e=fj(a,!!d,b),f,g;return c?(g=e[b])!=null?g:[]:(f=e[b])==null?void 0:f[0]}function fj(a,b,c){for(var d={},e=m(a.split("&")),f=e.next();!f.done;f=e.next()){var g=m(f.value.split("=")),h=g.next().value,l=ya(g),n=decodeURIComponent(h.replace(/\+/g," "));if(c===void 0||n===c){var p=l.join("=");d[n]||(d[n]=[]);d[n].push(b?p:decodeURIComponent(p.replace(/\+/g," ")))}}return d} -function gj(a){try{return decodeURIComponent(a)}catch(b){}}function hj(a,b,c,d,e){b&&(b=String(b).toLowerCase());if(b==="protocol"||b==="port")a.protocol=ij(a.protocol)||ij(w.location.protocol);b==="port"?a.port=String(Number(a.hostname?a.port:w.location.port)||(a.protocol==="http"?80:a.protocol==="https"?443:"")):b==="host"&&(a.hostname=(a.hostname||w.location.hostname).replace(cj,"").toLowerCase());return jj(a,b,c,d,e)} -function jj(a,b,c,d,e){var f,g=ij(a.protocol);b&&(b=String(b).toLowerCase());switch(b){case "url_no_fragment":f=kj(a);break;case "protocol":f=g;break;case "host":f=a.hostname.replace(cj,"").toLowerCase();if(c){var h=/^www\d*\./.exec(f);h&&h[0]&&(f=f.substring(h[0].length))}break;case "port":f=String(Number(a.port)||(g==="http"?80:g==="https"?443:""));break;case "path":a.pathname||a.hostname||vb("TAGGING",1);f=a.pathname.substring(0,1)==="/"?a.pathname:"/"+a.pathname;var l=f.split("/");(d||[]).indexOf(l[l.length- -1])>=0&&(l[l.length-1]="");f=l.join("/");break;case "query":f=a.search.replace("?","");e&&(f=ej(f,e,!1));break;case "extension":var n=a.pathname.split(".");f=n.length>1?n[n.length-1]:"";f=f.split("/")[0];break;case "fragment":f=a.hash.replace("#","");break;default:f=a&&a.href}return f}function ij(a){return a?a.replace(":","").toLowerCase():""}function kj(a){var b="";if(a&&a.href){var c=a.href.indexOf("#");b=c<0?a.href:a.href.substring(0,c)}return b}var lj={},mj=0; -function nj(a){var b=lj[a];if(!b){var c=A.createElement("a");a&&(c.href=a);var d=c.pathname;d[0]!=="/"&&(a||vb("TAGGING",1),d="/"+d);var e=c.hostname.replace(cj,"");b={href:c.href,protocol:c.protocol,host:c.host,hostname:e,pathname:d,search:c.search,hash:c.hash,port:c.port};mj<5&&(lj[a]=b,mj++)}return b}function oj(a,b,c){var d=nj(a);return ec(b,d,c)} -function pj(a){var b=nj(w.location.href),c=hj(b,"host",!1);if(c&&c.match(dj)){var d=hj(b,"path");if(d){var e=d.split(a+"=");if(e.length>1)return e[1].split(";")[0].split("?")[0]}}};var qj={"https://www.google.com":"/g","https://www.googleadservices.com":"/as","https://pagead2.googlesyndication.com":"/gs"},rj=["/as/d/ccm/conversion","/g/d/ccm/conversion","/gs/ccm/conversion","/d/ccm/form-data"];function sj(){return Kf(47)?Lf(54)!==1:!1}function tj(){var a=E(18),b=a.length;return a[b-1]==="/"?a.substring(0,b-1):a} -function uj(a,b){if(a){var c=""+a;c.indexOf("http://")!==0&&c.indexOf("https://")!==0&&(c="https://"+c);c[c.length-1]==="/"&&(c=c.substring(0,c.length-1));return nj(""+c+b).href}}function vj(a,b){if(wj())return uj(a,b)}function xj(a){return a===2||a===3}function yj(a){return P(588)&&a===3}function wj(){return sj()||Kf(50)}function zj(){return!!Xi.yj&&Xi.yj.split("@@").join("")!=="SGTM_TOKEN"} -function Aj(a){for(var b=m([F.D.Od,F.D.Yc]),c=b.next();!c.done;c=b.next()){var d=Q(a,c.value);if(d)return d}}function Bj(a,b,c){c=c===void 0?"":c;if(!sj())return a;var d=b?qj[a]||"":"";d==="/gs"&&(c="");return""+tj()+d+c}function Cj(a){if(sj())for(var b=m(rj),c=b.next();!c.done;c=b.next()){var d=c.value;if(Wb(a,""+tj()+d))return"::"}};function Dj(a,b,c){var d="https://"+a+b;return c?function(){return sj()?tj()+c+b:d}:function(){return d}};var Ej={},Fj=(Ej[22]=Dj("www.googleadservices.com","/ccm/conversion","/as/d"),Ej[60]=Dj("pagead2.googlesyndication.com","/ccm/conversion","/gs"),Ej[23]=Dj("www.google.com","/ccm/conversion","/g/d"),Ej);var Gj={},Hj=(Gj[5]=Dj("www.googleadservices.com","/pagead/conversion"),Gj[6]=Dj("pagead2.googlesyndication.com","/pagead/conversion","/gs"),Gj[8]=Dj("www.google.com","/pagead/1p-conversion"),Gj[66]=Dj("www.google.com","/pagead/uconversion"),Gj[63]=Dj("www.googleadservices.com","/pagead/conversion"),Gj[64]=Dj("pagead2.googlesyndication.com","/pagead/conversion","/gs"),Gj[65]=Dj("www.google.com","/pagead/1p-conversion"),Gj[74]=function(){return tj()+"/as/p/c"},Gj),Ij={},Jj=(Ij[5]=function(){return tj()+ -"/as/d/pagead/conversion"},Ij[6]=function(){return tj()+"/gs/pagead/conversion"},Ij[8]=function(){return tj()+"/g/d/pagead/1p-conversion"},Ij[63]=function(){return tj()+"/as/d/pagead/conversion"},Ij[65]=function(){return tj()+"/g/d/pagead/1p-conversion"},Ij);function Kj(a){return a===5||a===6||a===8||a===63||a===65};var Lj={},Mj=(Lj[45]=Dj("www.google.com","/ccm/collect"),Lj[46]=Dj("pagead2.googlesyndication.com","/ccm/collect","/gs"),Lj[69]=Dj("ad.doubleclick.net","/ccm/s/collect"),Lj[58]=Dj("www.google.com","/pagead/set_partitioned_cookie"),Lj[57]=Dj("www.googleadservices.com","/pagead/set_partitioned_cookie"),Lj);var Nj={},Oj=(Nj[9]=Dj("googleads.g.doubleclick.net","/pagead/viewthroughconversion"),Nj[68]=Dj("www.google.com","/rmkt/collect"),Nj);var Pj={},Qj=(Pj[11]=Dj("www.google.com","/pagead/form-data","/d"),Pj[21]=Dj("www.google.com","/ccm/form-data","/d"),Pj[72]=Dj("google.com","/pagead/form-data","/d"),Pj[73]=Dj("google.com","/ccm/form-data","/d"),Pj);var Rj={},Sj=(Rj[51]=Dj("www.google.com","/travel/flights/click/conversion"),Rj);var Tj={},Uj=(Tj[1]=function(){return"https://ad.doubleclick.net/activity;"},Tj[2]=function(){return(sj()?tj():"https://ade.googlesyndication.com")+"/ddm/activity"+(P(467)?";":"/")},Tj[3]=function(a){return"https://"+a.Br+".fls.doubleclick.net/activityi;"},Tj);function Vj(a){vb("HEALTH",a)};function R(a){vb("GTM",a)};var Wj={da:{Yt:"aw_user_data_cache",Ai:"cookie_deprecation_label",kh:"diagnostics_page_id",zp:"ememo",lu:"em_registry",aj:"eab",zu:"fl_user_data_cache",Au:"ga4_user_data_cache",Su:"idc_pv_claim",Pe:"ip_geo_data_cache",fj:"ip_geo_fetch_in_progress",tn:"nb_data",ir:"page_experiment_ids",vn:"pld",Se:"pt_data",wn:"pt_listener_set",sj:"retry_containers",Xh:"service_worker_endpoint",qr:"shared_user_id",rr:"shared_user_id_requested",Aj:"shared_user_id_source",lv:"awh",wr:"universal_claim_registry"}};var Xj=function(a){return wf(function(b){for(var c in a)if(b===a[c]&&!/^[0-9]+$/.test(c))return!0;return!1})}(Wj.da); -function Yj(a,b){b=b===void 0?!1:b;if(Xj(a)){var c,d,e=(d=(c=Rc("google_tag_data",{})).xcd)!=null?d:c.xcd={};if(e[a])return e[a];if(b){var f=void 0,g=1,h={},l={set:function(n){f=n;l.notify()},get:function(){return f},subscribe:function(n){h[String(g)]=n;return g++},unsubscribe:function(n){var p=String(n);return h.hasOwnProperty(p)?(delete h[p],!0):!1},notify:function(){for(var n=m(Object.keys(h)),p=n.next();!p.done;p=n.next()){var q=p.value;try{h[q](a,f)}catch(r){}}}};return e[a]=l}}} -function Zj(a,b){var c=Yj(a,!0);c&&c.set(b)}function ak(a){var b;return(b=Yj(a))==null?void 0:b.get()}function bk(a,b){var c=Yj(a);if(!c){c=Yj(a,!0);if(!c)return;c.set(b)}return c.get()}function ck(a,b){if(typeof b==="function"){var c;return(c=Yj(a,!0))==null?void 0:c.subscribe(b)}}function dk(a,b){var c=Yj(a);return c?c.unsubscribe(b):!1};var ek=function(){this.H={};this.K=!1};ek.prototype.bind=function(){this.K||(this.H=fk(),this.H["0"]&&bk(Wj.da.Pe,JSON.stringify(this.H)))}; -var jk=function(){var a=gk,b=hk,c=void 0,d=function(){c!==void 0&&dk(Wj.da.Pe,c);try{var f=ak(Wj.da.Pe);b.H=JSON.parse(f)}catch(g){R(123),Vj(2),b.H={}}b.K=!0;a()},e=ak(Wj.da.Pe);e?d(e):(c=ck(Wj.da.Pe,d),ik())},ik=function(){if(!ak(Wj.da.fj)){Zj(Wj.da.fj,!0);var a=function(b){Zj(Wj.da.Pe,b||"{}");Zj(Wj.da.fj,!1)};try{w.fetch("https://www.google.com/ccm/geo",{method:"GET",cache:"no-store",mode:"cors",credentials:"omit"}).then(function(b){b.ok?b.text().then(function(c){a(c)},function(){a()}):a()},function(){a()})}catch(b){a()}}}, -fk=function(){var a=E(22);try{return JSON.parse(tb(a))}catch(b){return R(123),Vj(2),{}}},kk=function(){return hk.H["0"]||""},lk=function(){return hk.H["1"]||""},mk=function(){var a=hk,b=!1;b=!!a.H["2"];return b},nk=function(){return hk.H["6"]!==!1},ok=function(){var a=hk,b="";b=a.H["4"]||"";return b},pk=function(){var a=hk,b="";b=a.H["3"]||""; -return b},hk=new ek;function qk(a){a=a===void 0?"g/collect":a;return"https://"+(ok()||"www")+".google-analytics.com/"+a}function rk(a){a=a===void 0?"g/collect":a;var b=ok();return"https://"+(b?b+".":"")+"analytics.google.com/"+a}var sk={},tk=(sk[17]=function(){return sj()&&!ok()?tj()+"/ag/g/c":rk()},sk[16]=function(){return sj()&&!ok()?tj()+"/ga/g/c":qk()},sk[67]=function(){var a;a=a===void 0?"g/collect":a;return ok()?"":"https://www.google.com/"+a},sk);function uk(a,b,c){var d=Dj(b,"/measurement/conversion",c);return function(){return ok()?a("measurement/conversion"):d()}}var vk={},wk=(vk[55]=uk(qk,"pagead2.googlesyndication.com","/gs"),vk[54]=uk(rk,"www.google.com","/g"),vk);var xk=oa(Object,"assign").call(Object,{},Fj,Hj,Mj,Oj,Qj,Sj,Uj,wk,tk);var yk=function(a){return decodeURIComponent(a.replace(/\+/g," "))};var zk=RegExp("^(?:([^:/?#.]+):)?(?://(?:([^\\\\/?#]*)@)?([^\\\\/?#]*?)(?::([0-9]+))?(?=[\\\\/?#]|$))?([^?#]+)?(?:\\?([^#]*))?(?:#([\\s\\S]*))?$");function Ak(a,b,c,d){for(var e=b,f=c.length;(e=a.indexOf(c,e))>=0&&ec)e=c;d+=b.length+1;return yk(a.slice(d,e!==-1?e:0))}var Dk=/[?&]($|#)/; -function Ek(a,b,c){for(var d,e=a.search(Bk),f=0,g,h=[];(g=Ak(a,f,b,e))>=0;)h.push(a.substring(f,g)),f=Math.min(a.indexOf("&",g)+1||e,e);h.push(a.slice(f));d=h.join("").replace(Dk,"$1");var l,n=c!=null?"="+encodeURIComponent(String(c)):"";var p=b+n;if(p){var q,r=d.indexOf("#");r<0&&(r=d.length);var t=d.indexOf("?"),u;t<0||t>r?(t=r,u=""):u=d.substring(t+1,r);q=[d.slice(0,t),u,d.slice(r)];var v=q[1];q[1]=p?v?v+"&"+p:p:v;l=q[0]+(q[1]?"?"+q[1]:"")+q[2]}else l=d;return l};var Fk=Object.freeze({gcp:"1",sscte:"1",ct_cookie_present:"1"});function Gk(a,b){return a.replace(RegExp("([?&])fmt=[^&]*(&|$)"),"$1fmt="+b+"$2")}function Hk(a){return Wb(a,"https://")?a.substring(8):Wb(a,"http://")?a.substring(7):a};var Ik=function(){this.storage=Za()};Ik.prototype.set=function(a,b){this.storage.set(String(a),b)};Ik.prototype.get=function(a){return this.storage.get(String(a))};var Jk;function Kk(a,b){Jk||(Jk=new Ik);Jk.set(a,b)}function Lk(a){Jk||(Jk=new Ik);return Jk.get(a)}function Mk(a,b){Jk||(Jk=new Ik);var c=Jk;c.storage.has(String(a))||c.storage.set(String(a),b());return c.storage.get(String(a))};var Nk={},Ok=(Nk.tdp=1,Nk.exp=1,Nk.gtm=1,Nk.pid=1,Nk.dl=1,Nk.seq=1,Nk.t=1,Nk.v=1,Nk),Qk=function(){var a=Pk;return Object.keys(a.H).filter(function(b){return a.H[b]})},Rk=function(a,b,c){if(a.H[b]===void 0||(c===void 0?0:c))a.H[b]=!0},Sk=function(a){a.forEach(function(b){Ok[b]||(Pk.H[b]=!1)})},Pk=new function(){this.H={};this.K={}};function Tk(a,b,c){var d=c===void 0?!0:c,e=Pk;e.K[a]=b;(d===void 0||d)&&Rk(e,a)}function Uk(a,b){Rk(Pk,a,b===void 0?!1:b)};function Vk(a){var b=0;a.Bc.forEach(function(c){b|=1<=0||w.location.search.indexOf(">m_latency=")>=0;var fl=function(){var a=el;return P(533)?a.T:P(109)||P(513)},el=new function(a){this.O=a();var b=Lf(27);this.K=dl||this.O=1-c;var d=Lf(27),e=Lf(63);this.T=dl||e===1||this.O>=d&&this.O0:!1}function yl(){return xl()?!1:wl("Opera")}function zl(){return wl("Firefox")||wl("FxiOS")}function Al(){return xl()?vl("Chromium"):(wl("Chrome")||wl("CriOS"))&&!(xl()?0:wl("Edge"))||wl("Silk")};function Bl(){return ml?!!tl&&!!tl.platform:!1}function Cl(){return wl("iPhone")&&!wl("iPod")&&!wl("iPad")}function Dl(){Cl()||wl("iPad")||wl("iPod")};var El=function(a){El[" "](a);return a};El[" "]=function(){};yl();xl()||wl("Trident")||wl("MSIE");wl("Edge");!wl("Gecko")||sl().toLowerCase().indexOf("webkit")!=-1&&!wl("Edge")||wl("Trident")||wl("MSIE")||wl("Edge");sl().toLowerCase().indexOf("webkit")!=-1&&!wl("Edge")&&wl("Mobile");Bl()||wl("Macintosh");Bl()||wl("Windows");(Bl()?tl.platform==="Linux":wl("Linux"))||Bl()||wl("CrOS");Bl()||wl("Android");Cl();wl("iPad");wl("iPod");Dl();sl().toLowerCase().indexOf("kaios");zl();Cl()||wl("iPod");wl("iPad");!wl("Android")||Al()||zl()||yl()||wl("Silk");Al();!wl("Safari")||Al()||(xl()?0:wl("Coast"))||yl()||(xl()?0:wl("Edge"))||(xl()?vl("Microsoft Edge"):wl("Edg/"))||(xl()?vl("Opera"):wl("OPR"))||zl()||wl("Silk")||wl("Android")||Dl();var Fl={},Gl=null; -function Hl(a){for(var b=[],c=0,d=0;d255&&(b[c++]=e&255,e>>=8);b[c++]=e}var f=4;f===void 0&&(f=0);if(!Gl){Gl={};for(var g="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),h=["+/=","+/","-_=","-_.","-_"],l=0;l<5;l++){var n=g.concat(h[l].split(""));Fl[l]=n;for(var p=0;p>2],H=r[(y&3)<<4|z>>4],G=r[(z&15)<<2|C>>6],J=r[C&63];t[x++]=""+D+H+G+J}var S=0,V=u;switch(b.length-v){case 2:S=b[v+1],V=r[(S&15)<<2]||u;case 1:var da=b[v];t[x]=""+r[da>>2]+r[(da&3)<<4|S>>4]+V+u}return t.join("")};function Il(a,b,c,d,e,f,g,h){var l=Ck(c,"fmt");if(d){var n=Ck(c,"random"),p=Ck(c,"label")||"";if(!n)return;var q=Hl(yk(p)+":"+yk(n));if(!ll(a,q,d))return}l&&Number(l)!==4?(c=Ek(c,"rfmt",l),c=Ek(c,"fmt",4)):l||(c=Ek(c,"fmt",4));$c(c,function(){g==null||Jl(g);h==null||Kl(h,c);a.google_noFurtherRedirects&&d&&(a.google_noFurtherRedirects=null,d())},function(){g==null||Jl(g);h==null||Kl(h,c);e==null||e()},f,b.getElementsByTagName("script")[0].parentElement||void 0);return c};function Ll(a){var b=Qa.apply(1,arguments);il.register(a,2,b[0]);nd.apply(null,za(b))}function Ml(a){var b=Qa.apply(1,arguments);il.register(a,2,b[0]);return od.apply(null,za(b))}function Nl(a){var b=Qa.apply(1,arguments);il.register(a,3,b[0]);cd.apply(null,za(b))}function Ol(a){var b=Qa.apply(1,arguments);il.register(a,2,b[0]);return rd.apply(null,za(b))}function Pl(a){var b=Qa.apply(1,arguments);il.register(a,1,b[0]);$c.apply(null,za(b))} -function Ql(a){var b=Qa.apply(1,arguments);b[0]&&il.register(a,4,b[0]);bd.apply(null,za(b))}function Rl(a){var b=Il.apply(null,za(Qa.apply(1,arguments)));b&&il.register(a,1,b);return b};var Sl=/gtag[.\/]js/,Tl=/gtm[.\/]js/,Vl=function(a){var b=Ul;if((a.scriptContainerId||"").indexOf("GTM-")>=0){var c;a:{var d,e=(d=a.scriptElement)==null?void 0:d.src;if(e){for(var f=Kf(47),g=nj(e),h=f?g.pathname:""+g.hostname+g.pathname,l=A.scripts,n="",p=0;p=0){c=String(p);break a}n=String(p)}}if(n){c= -n;break a}}c=void 0}var r=c;if(r)return b.H=!0,r}var t=[].slice.call(A.scripts);return a.scriptElement?String(t.indexOf(a.scriptElement)):"-1"},Wl=function(a){if(Ul.H)return"1";var b,c=(b=a.scriptElement)==null?void 0:b.src;if(c){if(Sl.test(c))return"3";if(Tl.test(c))return"2"}return"0"},Ul=new function(){this.H=!1};function Xl(a){var b=Yl().destinationArray[a],c=Yl().destination[a];return b&&b.length>0?b[0]:c}function Zl(a,b){var c=Yl();c.pending||(c.pending=[]);Fb(c.pending,function(d){return d.target.ctid===a.ctid&&d.target.isDestination===a.isDestination})||c.pending.push({target:a,onLoad:b})}function $l(){var a=w.google_tags_first_party;Array.isArray(a)||(a=[]);for(var b={},c=m(a),d=c.next();!d.done;d=c.next())b[d.value]=!0;return Object.freeze(b)} -var am=function(){this.container={};this.destination={};this.destinationArray={};this.canonical={};this.pending=[];this.injectedFirstPartyContainers={};this.injectedFirstPartyContainers=$l()}; -function Yl(){var a=Rc("google_tag_data",{}),b=a.tidr;b&&typeof b==="object"||(b=new am,a.tidr=b);var c=b;c.container||(c.container={});c.destination||(c.destination={});c.destinationArray||(c.destinationArray={});c.canonical||(c.canonical={});c.pending||(c.pending=[]);c.injectedFirstPartyContainers||(c.injectedFirstPartyContainers=$l());return c};function bm(){return Kf(7)&&cm().some(function(a){return a===E(5)})}function dm(){var a;return(a=Mf(55))!=null?a:[]}function em(){return E(6)||"_"+E(5)}function fm(){var a=E(10);return a?a.split("|"):[E(5)]}function cm(){var a=Mf(59);return Array.isArray(a)?a.filter(function(b){return typeof b==="string"}).filter(function(b){return b.indexOf("GTM-")!==0}):[]}function gm(){var a=hm(im()),b=a&&a.parent;if(b)return hm(b)} -function jm(){var a=hm(im());if(a){for(;a.parent;){var b=hm(a.parent);if(!b)break;a=b}return a}}function hm(a){var b=Yl();return a.isDestination?Xl(a.ctid):b.container[a.ctid]}function km(){var a=Yl();if(a.pending){for(var b,c=[],d=!1,e=fm(),f=cm(),g={},h=0;h0&&n.update===void 0),t={region:q,declare_region:n.declare_region,implicit:n.implicit,default:c!==void 0?c:n.default,declare:n.declare,update:n.update,quiet:r};if(e!==""||n.default!==!1)l[b]=t;r&&w.setTimeout(function(){l[b]===t&&t.quiet&&(vb("TAGGING",2),a.waitPeriodTimedOut=!0,a.clearTimeout(b,void 0,h), -a.notifyListeners())},g)}};k=Bm.prototype;k.clearTimeout=function(a,b,c){var d=[a],e=c.delegatedConsentTypes,f;for(f in e)e.hasOwnProperty(f)&&e[f]===a&&d.push(f);var g=this.entries[a]||{},h=this.getConsentState(a,c);if(g.quiet){g.quiet=!1;for(var l=m(d),n=l.next();!n.done;n=l.next())Dm(this,n.value)}else if(b!==void 0&&h!==b)for(var p=m(d),q=p.next();!q.done;q=p.next())Dm(this,q.value)}; -k.update=function(a,b,c){this.usedDefault||this.usedDeclare||this.usedUpdate||!this.accessedAny||(this.wasSetLate=!0);this.usedUpdate=this.active=!0;if(b!=null){var d=this.getConsentState(a,c),e=this.entries;(e[a]=e[a]||{}).update=b==="granted";this.clearTimeout(a,d,c)}}; -k.declare=function(a,b,c,d,e){this.usedDeclare=this.active=!0;var f=this.entries,g=f[a]||{},h=g.declare_region,l=c&&Cb(c)?c.toUpperCase():void 0;d=d.toUpperCase();e=e.toUpperCase();if(d===""||l===e||(l===d?h!==e:!l&&!h)){var n={region:g.region,declare_region:l,declare:b==="granted",implicit:g.implicit,default:g.default,update:g.update,quiet:g.quiet};if(d!==""||g.declare!==!1)f[a]=n}}; -k.implicit=function(a,b){this.usedImplicit=!0;var c=this.entries,d=c[a]=c[a]||{};d.implicit!==!1&&(d.implicit=b==="granted")}; -k.getConsentState=function(a,b){var c=this.entries,d=c[a]||{},e=d.update;if(e!==void 0)return e?1:2;if(b.usedContainerScopedDefaults){var f=b.containerScopedDefaults[a];if(f===3)return 1;if(f===2)return 2}else if(e=d.default,e!==void 0)return e?1:2;if(b==null?0:b.delegatedConsentTypes.hasOwnProperty(a)){var g=b.delegatedConsentTypes[a],h=c[g]||{};e=h.update;if(e!==void 0)return e?1:2;if(b.usedContainerScopedDefaults){var l=b.containerScopedDefaults[g];if(l===3)return 1;if(l===2)return 2}else if(e= -h.default,e!==void 0)return e?1:2}e=d.declare;if(e!==void 0)return e?1:2;e=d.implicit;return e!==void 0?e?3:4:0};k.addListener=function(a,b){this.H.push({consentTypes:a,ce:b})};var Dm=function(a,b){for(var c=0;c=c.length?l(n):w.setTimeout(function(){l(e())},500)}})}};var Qm=function(a,b){this.H=a;this.consentTypes=b};Qm.prototype.isConsentGranted=function(){switch(this.H){case 0:return this.consentTypes.every(function(a){return Im(a)});case 1:return this.consentTypes.some(function(a){return Im(a)});default:Ec(this.H,"consentsRequired had an unknown type")}}; -var Rm=new function(){var a={};this.H=(a[zm.fa.dd]=ym.La.Oe,a[zm.fa.Xa]=ym.La.Oe,a[zm.fa.rd]=ym.La.Oe,a[zm.fa.Ub]=ym.La.Oe,a);var b={};this.K=(b[zm.fa.dd]=new Qm(0,[]),b[zm.fa.Xa]=new Qm(0,["ad_storage"]),b[zm.fa.rd]=new Qm(0,["analytics_storage"]),b[zm.fa.Ub]=new Qm(1,["ad_storage","analytics_storage"]),b)};var Tm=function(a){var b=this;this.type=a;this.H=[];Mm(Rm.K[a].consentTypes,function(){Sm(b)||b.flush()})};Tm.prototype.flush=function(){for(var a=m(this.H),b=a.next();!b.done;b=a.next()){var c=b.value;c()}this.H=[]};var Sm=function(a){return Rm.H[a.type]===ym.La.Uh&&!Rm.K[a.type].isConsentGranted()},Um=function(a,b){Sm(a)?a.H.push(b):b()},Vm=function(){this.H=new Map},Xm=function(a){var b=Wm;b.H.has(a)||b.H.set(a,new Tm(a));return b.H.get(a)};Vm.prototype.reset=function(){this.H.clear()}; -var Wm=new Vm;var Ym=["fin","fs","mcc","ncc"],Zm=function(a){a=a===void 0?!1:a;var b=Qk(),c=Pk.K,d=b.filter(function(e){return c[e]!==void 0&&(a||!Ym.includes(e))});Sk(d);return d.map(function(e){var f=c[e];typeof f==="function"&&(f=f());return f?"&"+e+"="+f:""}).join("")+"&z=0"},$m=function(a){var b="https://"+E(21),c="/td?id="+E(5);return""+Bj(b)+c+a},an=function(a,b){b=b===void 0?!1:b;if(Lk(26)&&el.H&&E(5)){var c=Xm(zm.fa.Ub);if(Sm(c))a.H||(a.H=!0,Um(c,function(){return an(a)}));else{b&&Tk("fin","1");var d= -Zm(b),e=$m(d),f={destinationId:E(5),endpoint:61};b?Ol(f,e,void 0,{ff:!0},void 0,function(){dd(e+"&img=1")}):Nl(f,e);a.H=!1;bn(d)}}},bn=function(a){if(Qc&&(Wb(Qc,"https://www.googletagmanager.com/")||Kf(47))&&!(a.indexOf("&csp=")<0&&a.indexOf("&mde=")<0)){var b;a:{try{if(Qc){b=new URL(Qc);break a}}catch(c){}b=void 0}b&&$c(""+Qc+(Qc.indexOf("?")>=0?"&":"?")+"is_td=1"+a)}},cn=function(a){Qk().some(function(b){return!Ok[b]})&&an(a,!0)},dn=new function(){var a=this;this.H=!1;ed(w,"pagehide",function(){cn(a)})}; -function en(a){an(dn,a===void 0?!1:a)};var fn=["ad_storage","analytics_storage","ad_user_data","ad_personalization"],gn=[F.D.Od,F.D.Yc,F.D.Rf,F.D.Gb,F.D.sc,F.D.ab,F.D.Ab,F.D.lb,F.D.Hb,F.D.oc],kn=function(){var a=hn;!a.T&&a.H&&(fn.some(function(b){return Hm.containerScopedDefaults[b]!==1})||jn("mbc"));a.T=!0},jn=function(a){el.H&&(Tk(a,"1"),en())},ln=function(a,b){var c=hn;if(!c.O[b]&&(c.O[b]=!0,c.K[b]))for(var d=m(gn),e=d.next();!e.done;e=d.next())if(Q(a,e.value)){jn("erc");break}},hn=new function(){this.T=this.H=!1;this.O={};this.K={}};var mn={},nn=Object.freeze((mn[F.D.Nc]=1,mn[F.D.oh]=1,mn[F.D.Di]=1,mn[F.D.Oc]=1,mn[F.D.Ga]=1,mn[F.D.Hb]=1,mn[F.D.zb]=1,mn[F.D.Pb]=1,mn[F.D.Dd]=1,mn[F.D.oc]=1,mn[F.D.lb]=1,mn[F.D.Ed]=1,mn[F.D.Fe]=1,mn[F.D.Ua]=1,mn[F.D.aq]=1,mn[F.D.Qf]=1,mn[F.D.Ni]=1,mn[F.D.zh]=1,mn[F.D.Sc]=1,mn[F.D.Rf]=1,mn[F.D.mq]=1,mn[F.D.Va]=1,mn[F.D.Vf]=1,mn[F.D.qq]=1,mn[F.D.Fh]=1,mn[F.D.bm]=1,mn[F.D.Uc]=1,mn[F.D.Vc]=1,mn[F.D.Ab]=1,mn[F.D.om]=1,mn[F.D.Rb]=1,mn[F.D.Md]=1,mn[F.D.Nd]=1,mn[F.D.Wi]=1,mn[F.D.Od]=1,mn[F.D.Ih]=1,mn[F.D.Xi]= -1,mn[F.D.Pd]=1,mn[F.D.Yc]=1,mn[F.D.Qd]=1,mn[F.D.zm]=1,mn[F.D.Rd]=1,mn[F.D.Zc]=1,mn[F.D.wj]=1,mn));Object.freeze([F.D.Ca,F.D.Za,F.D.Ib,F.D.rb,F.D.Vi,F.D.ab,F.D.Oi,F.D.Wp]); -var on={},pn=Object.freeze((on[F.D.Bp]=1,on[F.D.Cp]=1,on[F.D.Dp]=1,on[F.D.Ep]=1,on[F.D.Fp]=1,on[F.D.Jp]=1,on[F.D.Kp]=1,on[F.D.Lp]=1,on[F.D.Np]=1,on[F.D.yf]=1,on)),qn={},rn=Object.freeze((qn[F.D.Fl]=1,qn[F.D.Gl]=1,qn[F.D.ve]=1,qn[F.D.we]=1,qn[F.D.Hl]=1,qn[F.D.vd]=1,qn[F.D.xe]=1,qn[F.D.hc]=1,qn[F.D.Mc]=1,qn[F.D.jc]=1,qn[F.D.Eb]=1,qn[F.D.ye]=1,qn[F.D.kc]=1,qn[F.D.Il]=1,qn)),sn=Object.freeze([F.D.Nc,F.D.Oc,F.D.Ed,F.D.Rf,F.D.Xf,F.D.Md,F.D.Wi,F.D.Qd]),tn=Object.freeze([].concat(za(sn))),un=Object.freeze([F.D.zb, -F.D.zh,F.D.Ih,F.D.Xi,F.D.xh]),vn=Object.freeze([].concat(za(un))),wn={},xn=(wn[F.D.ja]="1",wn[F.D.sa]="2",wn[F.D.ka]="3",wn[F.D.Ta]="4",wn),yn={},zn=Object.freeze((yn.search="s",yn.youtube="y",yn.playstore="p",yn.shopping="h",yn.ads="a",yn.maps="m",yn));function An(a){return typeof a!=="object"||a===null?{}:a}function Bn(a){return a===void 0||a===null?"":typeof a==="object"?a.toString():String(a)}function Cn(a){if(a!==void 0&&a!==null)return Bn(a)};var Yn=function(){this.H=w.google_tag_manager=w.google_tag_manager||{}},Zn;function $n(a,b){ao();var c=Zn;return c.H[a]=c.H[a]||b()}function bo(a){ao();return Zn.H[a]}function co(a,b){ao();Zn.H[a]=b}function eo(a){var b=E(5);ao();var c=Zn;c.H[b]=c.H[b]||a}function fo(){var a=E(19);ao();var b=Zn;return b.H[a]=b.H[a]||{}}function go(){var a=E(19);ao();return Zn.H[a]}function ho(){ao();var a=Zn,b=a.H.sequence||1;a.H.sequence=b+1;return b}function ao(){Zn||(Zn=new Yn)};var io=function(){};io.prototype.toString=function(){return"undefined"};var jo=new io;function ro(a,b){function c(g){var h=nj(g),l=hj(h,"protocol"),n=hj(h,"host",!0),p=hj(h,"port"),q=hj(h,"path").toLowerCase().replace(/\/$/,"");if(l===void 0||l==="http"&&p==="80"||l==="https"&&p==="443")l="web",p="default";return[l,n,p,q]}for(var d=c(String(a)),e=c(String(b)),f=0;fc-9E5};var xo=!1,yo=!1,zo=!1,Ao=0,Bo=!1,Co=[];function Do(a){if(Ao===0)Bo&&Co&&(Co.length>=100&&Co.shift(),Co.push(a));else if(Eo()){var b=E(41),c=Rc(b,[]);c.length>=50&&c.shift();c.push(a)}}function Fo(){Go();fd(A,"TAProdDebugSignal",Fo)}function Go(){if(!yo){yo=!0;Ho();var a=Co;Co=void 0;a==null||a.forEach(function(b){Do(b)})}} -function Ho(){var a=A.documentElement.getAttribute("data-tag-assistant-prod-present");wo(a)?Ao=1:!vo(a)||xo||zo?Ao=2:(zo=!0,ed(A,"TAProdDebugSignal",Fo,!1),w.setTimeout(function(){Go();xo=!0},200))}function Eo(){if(!Bo)return!1;switch(Ao){case 1:case 0:return!0;case 2:return!1;default:return!1}};var Io=!1;function Jo(a,b){var c=fm(),d=cm();E(26);var e=Kf(47)?0:Kf(50)?1:3,f=tj();if(Eo()){var g=Ko("INIT");g.containerLoadSource=a!=null?a:0;b&&(g.parentTargetReference=b);g.aliases=c;g.destinations=d;e!==void 0&&(g.gtg={source:e,mPath:f!=null?f:""});Do(g)}} -function Lo(a){var b,c,d,e;b=a.targetId;c=a.request;d=a.nb;e=a.isBatched;var f;if(f=Eo()){var g;a:switch(c.endpoint){case 68:case 69:case 19:case 62:case 47:g=!0;break a;default:g=!1}f=!g}if(f){var h=Ko("GTAG_HIT",{eventId:d.eventId,priorityId:d.priorityId});h.target=b;h.url=c.url;c.postBody&&(h.postBody=c.postBody);h.parameterEncoding=c.parameterEncoding;h.endpoint=c.endpoint;e!==void 0&&(h.isBatched=e);Do(h)}}function Mo(a){Eo()&&Lo(a())} -function Ko(a,b){b=b===void 0?{}:b;b.groupId=No;var c,d=b,e=Oo,f={publicId:Po};d.eventId!=null&&(f.eventId=d.eventId);d.priorityId!=null&&(f.priorityId=d.priorityId);d.eventName&&(f.eventName=d.eventName);d.groupId&&(f.groupId=d.groupId);d.tagName&&(f.tagName=d.tagName);c={containerProduct:"GTM",key:f,version:e,messageType:a};c.containerProduct=Io?"OGT":"GTM";c.key.targetRef=Qo;return c}var Po="",Oo="",Qo={ctid:"",isDestination:!1},No; -function Ro(a){var b=E(5),c=Kf(45),d=bm(),e=E(6),f=E(1);E(23);Ao=0;Bo=!0;Ho();No=a;Po=b;Oo=f;Io=c;Qo={ctid:b,isDestination:d,canonicalId:e}};var So=[F.D.ja,F.D.sa,F.D.ka,F.D.Ta];function To(a){for(var b=m(a[F.D.fc]||[""]),c=b.next(),d={};!c.done;d={region:void 0},c=b.next())d.region=c.value,Jb(a,function(e){return function(f,g){if(f!==F.D.fc){var h=Bn(g),l=e.region,n=kk(),p=lk();Fm=!0;Em&&vb("TAGGING",20);Am().declare(f,h,l,n,p)}}}(d))} -function Uo(a){kn();var b=Mk(17,function(){return!1}),c=Mk(16,function(){return!1});!b&&c&&jn("crc");Kk(17,!0);var d=a[F.D.hh];d&&R(41);var e=a[F.D.fc];e?R(40):e=[""];for(var f=m(e),g=f.next(),h={};!g.done;h={Mo:void 0},g=f.next())h.Mo=g.value,Jb(a,function(l){return function(n,p){if(n!==F.D.fc&&n!==F.D.hh){var q=Cn(p),r=l.Mo,t=Number(d),u=kk(),v=lk();t=t===void 0?0:t;Em=!0;Fm&&vb("TAGGING",20);Am().default(n,q,r,u,v,t,Hm)}}}(h))} -function Vo(a){Hm.usedContainerScopedDefaults=!0;var b=a[F.D.fc];if(b){var c=Array.isArray(b)?b:[b];if(!c.includes(lk())&&!c.includes(kk()))return}Jb(a,function(d,e){switch(d){case "ad_storage":case "analytics_storage":case "ad_user_data":case "ad_personalization":break;default:return}Hm.usedContainerScopedDefaults=!0;Hm.containerScopedDefaults[d]=e==="granted"?3:2})} -function Wo(a,b){kn();Kk(16,!0);Jb(a,function(c,d){var e=Bn(d);Em=!0;Fm&&vb("TAGGING",20);Am().update(c,e,Hm)});Nm(b.eventId,b.priorityId)}function Xo(a){a.hasOwnProperty("all")&&(Hm.selectedAllCorePlatformServices=!0,Jb(zn,function(b){Hm.corePlatformServices[b]=a.all==="granted";Hm.usedCorePlatformServices=!0}));Jb(a,function(b,c){b!=="all"&&(Hm.corePlatformServices[b]=c==="granted",Hm.usedCorePlatformServices=!0)})} -function Yo(a){Array.isArray(a)||(a=[a]);return a.every(function(b){return Im(b)})}function Zo(){var a=$o;Array.isArray(a)||(a=[a]);return a.some(function(b){return Im(b)})}function ap(a,b){Mm(a,b)}function bp(a,b){Pm(a,b)}function cp(a,b){Om(a,b)}function dp(){var a=[F.D.ja,F.D.Ta,F.D.ka];Am().waitForUpdate(a,500,Hm)}function ep(a){for(var b=m(a),c=b.next();!c.done;c=b.next()){var d=c.value;Am().clearTimeout(d,void 0,Hm)}Nm()} -function fp(a){for(var b={},c=m(a.split("|")),d=c.next();!d.done;d=c.next())b[d.value]=!0;return b};var gp=function(a,b,c,d,e){this.endpoint=a;this.Z=d;this.parameterEncoding=e;this.O=b.slice()};gp.prototype.isSupported=function(){return!0};gp.prototype.K=function(){return Hk(xk[this.endpoint](void 0))};var hp=function(a,b,c){gp.call(this,a,b,!0,c===void 0?!1:c,3,void 0)};wa(hp,gp);var jp=function(a,b){var c=ip(a,F.D.qh);return b+"/"+c+"/"};hp.prototype.K=function(a){return jp(a,gp.prototype.K.call(this,a))};function kp(a,b){var c=ip(a,F.D.Ch);if(P(502)&&c)for(var d=m(Object.keys(c)),e=d.next();!e.done;e=d.next()){var f=e.value,g=c[f];g!==void 0&&g!==null&&(b["gtmd."+f]=String(g))}};var T={U:{Wk:"call_conversion",ud:"ccm_conversion",Zk:"common_aw",ra:"conversion",Hq:"floodlight",Td:"ga_conversion",xc:"gcp_remarketing",Ka:"page_view",tb:"remarketing",Bb:"user_data_lead",Cb:"user_data_web"}};function lp(a){a=a===void 0?[]:a;return Ti(a).join("~")};function mp(){var a=[],b=Number('')||0,c=Number('')||0;c||(c=b/100);var d=function(){var t=!1;return t}();a.push({Fk:228,studyId:228,experimentId:105177154,controlId:105177155,controlId2:105255245,probability:c,active:d,We:0});var e=Number('')|| -0,f=Number('')||0;f||(f=e/100);var g=function(){var t=!1;return t}();a.push({Fk:235,studyId:235,experimentId:105357150,controlId:105357151,controlId2:0,probability:f,active:g,We:1});var h=Number('')||0,l=Number('')|| -0;l||(l=h/100);var n=function(){var t=!1;return t}();a.push({Fk:266,studyId:266,experimentId:115718529,controlId:115718530,controlId2:115718531,probability:l,active:n,We:0});var p=Number('')||0,q=Number('')|| -0;q||(q=p/100);var r=function(){var t=!1;return t}();a.push({Fk:267,studyId:267,experimentId:115718526,controlId:115718527,controlId2:115718528,probability:q,active:r,We:0});return a};var np=function(){this.K={};this.H={};this.O={};this.T=new Set},tp=function(a,b){var c=b,d=b=a.O[c.studyId]?oa(Object,"assign").call(Object,{},c,{active:!0}):c,e=Gi;d.controlId2&&d.probability<=.25||(d=oa(Object,"assign").call(Object,{},d,{controlId2:0}));e.studies[d.studyId]=d;b.focused&&(a.K[b.studyId]=!0);if(b.We===1){var f=b.studyId;op(a,pp(),f);qp(a,f)?Pi(Qi,f):rp(a,f)?Qi.K[f]=!0:sp(a,f)&&(Qi.H[f]=!0)}else if(b.We===0){var g=b.studyId;op(a,a.H,g);qp(a,g)?Pi(Qi,g):rp(a,g)?Qi.K[g]=!0:sp(a,g)&& -(Qi.H[g]=!0)}},op=function(a,b,c,d){var e=Gi;if(e.studies[c]){var f=e.studies[c],g=f.experimentId,h=f.probability;if(!(b.studies||{})[c]){var l=b.studies||{};l[c]=!0;b.studies=l;if(!e.studies[c].active)if(e.studies[c].probability>.5)Ji(b,g,c);else if(!(h<=0||h>1)){var n=void 0;if(d){var p=Di(d+"~"+c);if(p==="e2")n=-1;else{for(var q=new Uint8Array(p),r=BigInt(0),t=m(q),u=t.next();!u.done;u=t.next())r=r<3&&(g.labels=f.slice(3));d[c[e].te].push(g)}}return d};function Pp(a){return a.origin!=="null"};var Qp={},Rp=(Qp.k={na:/^[\w-]+$/},Qp.b={na:/^[\w-]+$/,zk:!0},Qp.i={na:/^[1-9]\d*$/},Qp.h={na:/^\d+$/},Qp.t={na:/^[1-9]\d*$/},Qp.d={na:/^[A-Za-z0-9_-]+$/},Qp.j={na:/^\d+$/},Qp.u={na:/^[1-9]\d*$/},Qp.l={na:/^[01]$/},Qp.o={na:/^[1-9]\d*$/},Qp.g={na:/^[01]$/},Qp.s={na:/^.+$/},Qp.m={na:/^[01]$/},Qp);var Sp={},Wp=(Sp[5]={si:{2:Tp},mk:"2",Zh:["k","i","b","u"]},Sp[4]={si:{2:Tp,GCL:Up},mk:"2",Zh:["k","i","b","m"]},Sp[2]={si:{GS2:Tp,GS1:Vp},mk:"GS2",Zh:"sogtjlhd".split("")},Sp);function Xp(a,b,c){var d=Wp[b];if(d){var e=a.split(".")[0];c==null||c(e);if(e){var f=d.si[e];if(f)return f(a,b)}}} -function Tp(a,b){var c=a.split(".");if(c.length===3){var d=c[2];if(d.indexOf("$")===-1&&d.indexOf("%24")!==-1)try{d=decodeURIComponent(d)}catch(t){}var e={},f=Wp[b];if(f){for(var g=f.Zh,h=m(d.split("$")),l=h.next();!l.done;l=h.next()){var n=l.value,p=n[0];if(g.indexOf(p)!==-1)try{var q=decodeURIComponent(n.substring(1)),r=Rp[p];r&&(r.zk?(e[p]=e[p]||[],e[p].push(q)):e[p]=q)}catch(t){}}return e}}}function Yp(a,b,c){var d=Wp[b];if(d)return[d.mk,c||"1",Zp(a,b)].join(".")} -function Zp(a,b){var c=Wp[b];if(c){for(var d=[],e=m(c.Zh),f=e.next();!f.done;f=e.next()){var g=f.value,h=Rp[g];if(h){var l=a[g];if(l!==void 0)if(h.zk&&Array.isArray(l))for(var n=m(l),p=n.next();!p.done;p=n.next())d.push(encodeURIComponent(""+g+p.value));else d.push(encodeURIComponent(""+g+l))}}return d.join("$")}}function Up(a){var b=a.split(".");b.shift();var c=b.shift(),d=b.shift(),e={};return e.k=d,e.i=c,e.b=b,e} -function Vp(a){var b=a.split(".").slice(2);if(!(b.length<5||b.length>7)){var c={};return c.s=b[0],c.o=b[1],c.g=b[2],c.t=b[3],c.j=b[4],c.l=b[5],c.h=b[6],c}};var $p={W:{lr:0,Ok:1,ih:2,ml:3,yi:4,jl:5,kl:6,nl:7,zi:8,Em:9,Dm:10,bj:11,Fm:12,Lh:13,Om:14,qj:15,hr:16,ed:17,Cj:18,Dj:19,Ej:20,Nn:21,Fj:22,Bi:23,xl:24}};$p.W[$p.W.lr]="RESERVED_ZERO";$p.W[$p.W.Ok]="ADS_CONVERSION_HIT";$p.W[$p.W.ih]="CONTAINER_EXECUTE_START";$p.W[$p.W.ml]="CONTAINER_SETUP_END";$p.W[$p.W.yi]="CONTAINER_SETUP_START";$p.W[$p.W.jl]="CONTAINER_BLOCKING_END";$p.W[$p.W.kl]="CONTAINER_EXECUTE_END";$p.W[$p.W.nl]="CONTAINER_YIELD_END";$p.W[$p.W.zi]="CONTAINER_YIELD_START";$p.W[$p.W.Em]="EVENT_EXECUTE_END"; -$p.W[$p.W.Dm]="EVENT_EVALUATION_END";$p.W[$p.W.bj]="EVENT_EVALUATION_START";$p.W[$p.W.Fm]="EVENT_SETUP_END";$p.W[$p.W.Lh]="EVENT_SETUP_START";$p.W[$p.W.Om]="GA4_CONVERSION_HIT";$p.W[$p.W.qj]="PAGE_LOAD";$p.W[$p.W.hr]="PAGEVIEW";$p.W[$p.W.ed]="SNIPPET_LOAD";$p.W[$p.W.Cj]="TAG_CALLBACK_ERROR";$p.W[$p.W.Dj]="TAG_CALLBACK_FAILURE";$p.W[$p.W.Ej]="TAG_CALLBACK_SUCCESS";$p.W[$p.W.Nn]="TAG_EXECUTE_END";$p.W[$p.W.Fj]="TAG_EXECUTE_START";$p.W[$p.W.Bi]="CUSTOM_PERFORMANCE_START";$p.W[$p.W.xl]="CUSTOM_PERFORMANCE_END";var aq=[],bq={},cq={};function dq(a){if($f(9)&&aq.includes(a)){var b;(b=xd())==null||b.mark(a+"-"+$p.W.Bi+"-"+(cq[a]||0))}}function eq(a){if($f(9)&&aq.includes(a)){var b=a+"-"+$p.W.xl+"-"+(cq[a]||0),c={start:a+"-"+$p.W.Bi+"-"+(cq[a]||0),end:b},d;(d=xd())==null||d.mark(b);var e,f,g=(f=(e=xd())==null?void 0:e.measure(b,c))==null?void 0:f.duration;g!==void 0&&(cq[a]=(cq[a]||0)+1,bq[a]=g+(bq[a]||0))}};var fq=["3","4"];function gq(a,b,c,d){try{dq("3");var e;return(e=hq(function(f){return f===a},b,c,d)[a])!=null?e:[]}finally{eq("3")}}function hq(a,b,c,d){var e;if(iq(d)){for(var f={},g=String(b||jq()).split(";"),h=0;h=0} -function oq(a,b,c,d){function e(x,y,z){if(z==null)return delete h[y],x;h[y]=z;return x+"; "+y+"="+z}function f(x,y){if(y==null)return x;h[y]=!0;return x+"; "+y}if(!iq(c.Ic))return 2;var g;b==null?g=a+"=deleted; expires="+(new Date(0)).toUTCString():(c.encode&&(b=encodeURIComponent(b)),b=pq(b),g=a+"="+b);var h={};g=e(g,"path",c.path);var l;c.expires instanceof Date?l=c.expires.toUTCString():c.expires!=null&&(l=""+c.expires);g=e(g,"expires",l);g=e(g,"max-age",c.bt);g=e(g,"samesite",c.Gt);c.secure&& -(g=f(g,"secure"));var n=c.domain;if(n&&n.toLowerCase()==="auto"){for(var p=qq(),q=void 0,r=!1,t=0;t0?d:e} -function lq(a,b,c){for(var d=[],e=gq(a,void 0,void 0,c),f=0;f1200&&(a=a.substring(0,1200));return a}var tq=/^(www\.)?google(\.com?)?(\.[a-z]{2})?$/,uq=/(^|\.)doubleclick\.net$/i; -function rq(a,b){return a!==void 0&&(uq.test(w.document.location.hostname)||b==="/"&&tq.test(a))}function vq(a){if(!a)return 1;var b=a;$f(4)&&a==="none"&&(b=w.document.location.hostname);b=b.indexOf(".")===0?b.substring(1):b;return b.split(".").length}function wq(a){if(!a||a==="/")return 1;a[0]!=="/"&&(a="/"+a);a[a.length-1]!=="/"&&(a+="/");return a.split("/").length-1}function xq(a,b){var c=""+vq(a),d=wq(b);d>1&&(c+="-"+d);return c} -var jq=function(){var a=w;return Pp(a)?a.document.cookie:""},iq=function(a){return a&&$f(5)?(Array.isArray(a)?a:[a]).every(function(b){return Km(b)&&Im(b)}):!0},qq=function(){var a=[],b=w.document.location.hostname.split(".");if(b.length===4){var c=b[b.length-1];if(Number(c).toString()===c)return["none"]}for(var d=b.length-2;d>=0;d--)a.push(b.slice(d).join("."));var e=w.document.location.hostname;uq.test(e)||tq.test(e)||a.push("none");return a};function yq(a,b,c,d){var e,f=Number(a.kd!=null?a.kd:void 0);f!==0&&(e=new Date((b||Qb())+1E3*(f||7776E3)));return{path:a.path,domain:a.domain,flags:a.flags,encode:!!c,expires:e,Ic:d}};var zq=new Map([[5,"ad_storage"],[4,["ad_storage","ad_user_data"]],[2,"analytics_storage"]]);function Aq(a,b,c){if(Wp[b]){for(var d=[],e=gq(a,void 0,void 0,zq.get(b)),f=m(e),g=f.next();!g.done;g=f.next()){var h=Xp(g.value,b,c);h&&d.push(Bq(h))}return d}} -function Cq(a){var b=Dq;if(Wp[2]){for(var c={},d=hq(a,void 0,void 0,zq.get(2)),e=Object.keys(d).sort(),f=m(e),g=f.next();!g.done;g=f.next())for(var h=g.value,l=m(d[h]),n=l.next();!n.done;n=l.next()){var p=Xp(n.value,2,b);p&&(c[h]||(c[h]=[]),c[h].push(Bq(p)))}return c}}function Eq(a,b,c,d,e){d=d||{};var f=xq(d.domain,d.path),g=Yp(b,c,f);if(!g)return 1;var h=yq(d,e,void 0,zq.get(c));return sq(a,g,h)}function Fq(a,b){var c=b.na;return typeof c==="function"?c(a):c.test(a)} -function Bq(a){for(var b=m(Object.keys(a)),c=b.next(),d={};!c.done;d={Fg:void 0},c=b.next()){var e=c.value,f=a[e];d.Fg=Rp[e];d.Fg?d.Fg.zk?a[e]=Array.isArray(f)?f.filter(function(g){return function(h){return Fq(h,g.Fg)}}(d)):void 0:typeof f==="string"&&Fq(f,d.Fg)||(a[e]=void 0):a[e]=void 0}return a};var Gq;function Hq(){function a(g){c(g.target||g.srcElement||{})}function b(g){d(g.target||g.srcElement||{})}var c=Iq,d=Jq,e=Kq();if(!e.init){ed(A,"mousedown",a);ed(A,"keyup",a);ed(A,"submit",b);var f=HTMLFormElement.prototype.submit;HTMLFormElement.prototype.submit=function(){d(this);f.call(this)};e.init=!0}}function Lq(a,b,c,d,e){var f={callback:a,domains:b,fragment:c===2,placement:c,forms:d,sameHost:e};Kq().decorators.push(f)} -function Mq(a,b,c){for(var d=Kq().decorators,e={},f=0;f=0||p&&l[q].indexOf(n)>=0){h=!0;break a}h=!1}if(h){var r=g.placement;r===void 0&&(r=g.fragment?2:1);r===b&&Ub(e,g.callback())}}return e} -function Kq(){var a=Rc("google_tag_data",{}),b=a.gl;b&&b.decorators||(b={decorators:[]},a.gl=b);return b};var Nq=/(.*?)\*(.*?)\*(.*)/,Oq=/^https?:\/\/([^\/]*?)\.?cdn\.ampproject\.org\/?(.*)/,Pq=/^(?:www\.|m\.|amp\.)+/,Qq=/([^?#]+)(\?[^#]*)?(#.*)?/;function Rq(a){var b=Qq.exec(a);if(b)return{tk:b[1],query:b[2],fragment:b[3]}}function Sq(a){return new RegExp("(.*?)(^|&)"+a+"=([^&]*)&?(.*)")} -function Tq(a,b){var c=[Nc.userAgent,(new Date).getTimezoneOffset(),Nc.userLanguage||Nc.language,Math.floor(Qb()/60/1E3)-(b===void 0?0:b),a].join("*"),d;if(!(d=Gq)){for(var e=Array(256),f=0;f<256;f++){for(var g=f,h=0;h<8;h++)g=g&1?g>>>1^3988292384:g>>>1;e[f]=g}d=e}Gq=d;for(var l=4294967295,n=0;n>>8^Gq[(l^c.charCodeAt(n))&255];return((l^-1)>>>0).toString(36)} -function Uq(a){return function(b){var c=nj(w.location.href),d=c.search.replace("?",""),e=ej(d,"_gl",!1,!0)||"";b.query=Vq(e)||{};var f=hj(c,"fragment"),g;var h=-1;if(Wb(f,"_gl="))h=4;else{var l=f.indexOf("&_gl=");l>0&&(h=l+3+2)}if(h<0)g=void 0;else{var n=f.indexOf("&",h);g=n<0?f.substring(h):f.substring(h,n)}b.fragment=Vq(g||"")||{};a&&Wq(c,d,f)}}function Xq(a,b){var c=Sq(a).exec(b),d=b;if(c){var e=c[2],f=c[4];d=c[1];f&&(d=d+e+f)}return d} -function Wq(a,b,c){function d(g,h){var l=Xq("_gl",g);l.length&&(l=h+l);return l}if(Mc&&Mc.replaceState){var e=Sq("_gl");if(e.test(b)||e.test(c)){var f=hj(a,"path");b=d(b,"?");c=d(c,"#");Mc.replaceState({},"",""+f+b+c)}}}function Yq(a,b){var c=Uq(!!b),d=Kq();d.data||(d.data={query:{},fragment:{}},c(d.data));var e={},f=d.data;f&&(Ub(e,f.query),a&&Ub(e,f.fragment));return e} -var Vq=function(a){try{var b=Zq(a,3);if(b!==void 0){for(var c={},d=b?b.split("*"):[],e=0;e+10;){if(c.href&&c.nodeName.match(/^a(?:rea)?$/i)){b=c;break a}c=c.parentNode;d--}b=null}var e=b;if(e){var f=e.protocol;f!=="http:"&&f!=="https:"||ar(e,e.hostname)}}catch(g){}}function Jq(a){try{var b=a.getAttribute("action");if(b){var c=hj(nj(b),"host");ar(a,c)}}catch(d){}}function er(a,b,c,d){Hq();var e=c==="fragment"?2:1;d=!!d;Lq(a,b,e,d,!1);e===2&&vb("TAGGING",23);d&&vb("TAGGING",24)} -function fr(a,b){Hq();Lq(a,[jj(w.location,"host",!0)],b,!0,!0)}function gr(){var a=A.location.hostname,b=Oq.exec(A.referrer);if(!b)return!1;var c=b[2],d=b[1],e="";if(c){var f=c.split("/"),g=f[1];e=g==="s"?gj(f[2])||"":gj(g)||""}else if(d){if(d.indexOf("xn--")===0)return!1;e=d.replace(/-/g,".").replace(/\.\./g,"-")}var h=a.replace(Pq,""),l=e.replace(Pq,"");return h===l||Xb(h,"."+l)}function hr(a,b){return a===!1?!1:a||b||gr()};var ir=function(a){this.value=0;this.value=a===void 0?0:a};ir.prototype.set=function(a){return this.value|=1<=a.length)return;e=a[f++];c|=(e&127)<2&&(d=d.replace(/^(www[0-9]*|web|ftp|wap|home|m|w|amp|mobile)\./,""));b=d;c=fc(c);var e=c.split(";")[0];e=e.replace(/\/(ar|slp|web|index)?\/?$/,"");return a(pg((""+b+e).toLowerCase()))};var nr=["ad_storage","ad_user_data"];function or(a,b){if(!a)return vb("TAGGING",32),10;if(b===null||b===void 0||b==="")return vb("TAGGING",33),11;var c=pr(!1);if(c.error!==0)return vb("TAGGING",34),c.error;if(!c.value)return vb("TAGGING",35),2;c.value[a]=b;var d=qr(c);d!==0&&vb("TAGGING",36);return d} -function rr(a){if(!a)return vb("TAGGING",27),{error:10};var b=pr();if(b.error!==0)return vb("TAGGING",29),b;if(!b.value)return vb("TAGGING",30),{error:2};if(!(a in b.value))return vb("TAGGING",31),{value:void 0,error:15};var c=b.value[a];return c===null||c===void 0||c===""?(vb("TAGGING",28),{value:void 0,error:11}):{value:c,error:0}} -function sr(a){if(a){var b=pr(!1);b.error!==0?vb("TAGGING",38):b.value?a in b.value?(delete b.value[a],qr(b)!==0&&vb("TAGGING",41)):vb("TAGGING",40):vb("TAGGING",39)}else vb("TAGGING",37)} -function pr(a){a=a===void 0?!0:a;if(!Im(nr))return vb("TAGGING",43),{error:3};try{if(!w.localStorage)return vb("TAGGING",44),{error:1}}catch(f){return vb("TAGGING",45),{error:14}}var b={schema:"gcl",version:1},c=void 0;try{c=w.localStorage.getItem("_gcl_ls")}catch(f){return vb("TAGGING",46),{error:13}}try{if(c){var d=JSON.parse(c);if(d&&typeof d==="object")b=d;else return vb("TAGGING",47),{error:12}}}catch(f){return vb("TAGGING",48),{error:8}}if(b.schema!=="gcl")return vb("TAGGING",49),{error:4}; -if(b.version!==1)return vb("TAGGING",50),{error:5};try{var e=tr(b);a&&e&&qr({value:b,error:0})}catch(f){return vb("TAGGING",48),{error:8}}return{value:b,error:0}} -function tr(a){if(!a||typeof a!=="object")return!1;if("expires"in a&&"value"in a){var b;typeof a.expires==="number"?b=a.expires:b=typeof a.expires==="string"?Number(a.expires):NaN;if(isNaN(b)||!(Date.now()<=b))return a.value=null,a.error=9,vb("TAGGING",54),!0}else{for(var c=!1,d=m(Object.keys(a)),e=d.next();!e.done;e=d.next())c=tr(a[e.value])||c;return c}return!1} -function qr(a){if(a.error)return a.error;if(!a.value)return vb("TAGGING",42),2;var b=a.value,c;try{c=JSON.stringify(b)}catch(d){return vb("TAGGING",52),6}try{w.localStorage.setItem("_gcl_ls",c)}catch(d){return vb("TAGGING",53),7}return 0};var ur={},vr=(ur.gclid=!0,ur.dclid=!0,ur.gbraid=!0,ur.wbraid=!0,ur),wr=/^\w+$/,xr=/^[\w-]+$/,yr={},zr=(yr.aw="FPGCLAW",yr),Ar={},Br=(Ar.ag="_ag",Ar.gb="_gb",Ar.aw="_aw",Ar.dc="_dc",Ar.gf="_gf",Ar.ha="_ha",Ar.gp="_gp",Ar.gs="_gs",Ar),Cr=/^(?:www\.)?google(?:\.com?)?(?:\.[a-z]{2}t?)?$/,Dr=/^www\.googleadservices\.com$/;function Er(){return["ad_storage","ad_user_data"]}function Fr(a){return!$f(5)||Im(a)}function Gr(a,b){function c(){var d=Fr(b);d&&a();return d}Om(function(){c()||Pm(c,b)},b)} -function Hr(a){return Ir(a).map(function(b){return b.gclid})}function Jr(a){return Kr(a).filter(function(b){return b.gclid}).map(function(b){return b.gclid})}function Kr(a,b){b=b===void 0?!1:b;var c=Mr(a.prefix),d=Nr("gb",c),e=Nr("ag",c);if(!e||!d)return[];var f=function(l){return function(n){n.Eg=l;return n}},g=Ir(d,b).map(f("gb")),h=Or(e).map(f("ag"));return g.concat(h).sort(function(l,n){return n.timestamp-l.timestamp})} -function Pr(a,b,c,d,e){var f=Fb(a,function(g){return g.gclid===b});f?(f.timestamp200)n=!1;else{var p=kr(l),q;if(p)c:{var r=p;if(r&&r.length!==0){var t=0;try{for(var u=10;t>3===16382){if(H!== -0)break;var G=lr(r,D);if(G===void 0)break;q=m(G).next().value===1;break c}var J;d:{var S=void 0,V=r,da=D;switch(H){case 0:J=(S=lr(V,da))==null?void 0:S[1];break d;case 1:J=da+8;break d;case 2:var pa=lr(V,da);if(pa===void 0)break;var ka=m(pa),na=ka.next().value;J=ka.next().value+na;break d;case 5:J=da+4;break d}J=void 0}if(J===void 0||J>r.length||J<=t)break;t=J}}catch(ia){}}q=!1}else q=!1;n=q}if(n){c=l;break a}}}c=void 0}var ba=c;ba&&ns("gcl_aw",ba,7,a)}} -function ns(a,b,c,d){os(a,[{version:"",gclid:b,timestamp:Qb(),qa:Yr(c)}],d)} -function os(a,b,c){c=c||{};var d=Er(),e=function(){if(Fr(d)&&b.length>0){var f=Zr(a)||[];b.forEach(function(g){var h=yq(c,g.timestamp,!0);h.expires!==void 0&&Vr(f,{version:"",gclid:g.gclid,timestamp:g.timestamp,expires:Number(h.expires),qa:g.qa,labels:g.labels},!0)});f.length&&or(a,f.map(function(g){var h={value:g.gclid,creationTimeMs:g.timestamp,linkDecorationSources:g.qa?g.qa.get():0},l;if((l=g.labels)==null?0:l.length)h.labels=g.labels;return{value:h,expires:Number(g.expires)}}))}};Om(function(){Fr(d)? -e():Pm(e,d)},d)} -function js(a,b,c,d,e){c=c||{};e=e||[];var f=Mr(c.prefix),g=d||Qb(),h=Math.round(g/1E3),l=Er(),n=!1,p=!1,q=$f(10),r=function(){if(Fr(l)){var t=yq(c,g,!0);t.Ic=l;for(var u=function(V,da){var pa=Nr(V,f);pa&&(sq(pa,da,t),V!=="gb"&&(n=!0))},v=function(V){var da=["GCL",h,V];e.length>0&&da.push(e.join("."));return da.join(".")},x=m(["aw","dc","gf","ha","gp"]),y=x.next();!y.done;y=x.next()){var z=y.value;a[z]&&u(z,v(a[z][0]))}if((!n||q)&&a.gb){var C=a.gb[0],D=Nr("gb",f);!b&&Ir(D).some(function(V){return V.gclid===C&& -V.labels&&V.labels.length>0})||u("gb",v(C))}}if(!p&&a.gbraid&&Fr("ad_storage")&&(p=!0,!n||q)){var H=a.gbraid,G=Nr("ag",f);if(b||!Or(G).some(function(V){return V.gclid===H&&V.labels&&V.labels.length>0})){var J={},S=(J.k=H,J.i=""+h,J.b=e,J);Eq(G,S,5,c,g)}}ps(a,f,g,c)};Om(function(){r();Fr(l)||Pm(r,l)},l)} -function ps(a,b,c,d){if(a.gad_source!==void 0&&Fr("ad_storage")){var e=wd();if(e!=="r"&&e!=="h"){var f=a.gad_source,g=Nr("gs",b);if(g){var h=Math.floor((Qb()-(vd()||0))/1E3),l,n=mr(),p={};l=(p.k=f,p.i=""+h,p.u=n,p);Eq(g,l,5,d,c)}}}}function qs(a,b,c){for(var d=Aq(b,c),e=0;ea)return!0;return!1} -function rs(a){var b=ss,c=ts(a.prefix);Gr(function(){for(var d=Mr(a.prefix),e=m(b),f=e.next();!f.done;f=e.next()){var g=f.value,h=c[g];if(h){var l=Math.min(us(h),Qb()),n=yq(a,l,!0);n.Ic=Er();var p=Nr(g,d);p&&sq(p,h,n)}}var q=Yq(!0);js(es(q.gclid,q.gclsrc),!1,a)},Er())} -function ts(a){var b=Yq(!0),c=Mr(a),d={},e;for(e in Br)if(Br.hasOwnProperty(e)){var f=e,g=Nr(f,c);if(g!==void 0){var h=b[g];if(h){var l=us(h),n;a:{for(var p=Math.min(l,Qb())||Qb(),q=gq(g,A.cookie,void 0,Er()),r=0;rp){n=!0;break a}n=!1}n||(d[f]=h)}}}return d} -function vs(a){var b=["ag"],c=Yq(!0),d=Mr(a.prefix);Gr(function(){for(var e=0;e=p&&(p=v,n=t)}}n&&(f[h]=n)}}}return f};Gr(function(){er(e,a,b,c)},Er())}} -function ys(a,b,c,d){if(Array.isArray(a)&&Pp(w)){var e=["ag"],f=Mr(d),g=function(){for(var h={},l=0;lb};var Ls=RegExp("^UA-\\d+-\\d+%3A[\\w-]+(?:%2C[\\w-]+)*(?:%3BUA-\\d+-\\d+%3A[\\w-]+(?:%2C[\\w-]+)*)*$"),Ms=/^~?[\w-]+(?:\.~?[\w-]+)*$/,Ns=/^\d+\.fls\.doubleclick\.net$/,Os=/;gac=([^;?]+)/,Ps=/;gacgb=([^;?]+)/; -function Qs(a,b){if(Ns.test(A.location.host)){var c=A.location.href.match(b);return c&&c.length===2&&c[1].match(Ls)?gj(c[1])||"":""}for(var d=[],e=m(Object.keys(a)),f=e.next();!f.done;f=e.next()){for(var g=f.value,h=[],l=a[g],n=0;n0?d.join(";"):""} -function Rs(a,b,c){for(var d=Fr(Er())?Op("_gac_gb",!0):{},e=[],f=!1,g=m(Object.keys(d)),h=g.next();!h.done;h=g.next()){var l=h.value,n=Gs("_gac_gb_"+l,a,b,c);f=f||n.length!==0&&n.some(function(p){return p===1});e.push(l+":"+n.join(","))}return{ks:f?e.join(";"):"",hs:Qs(d,Ps)}}function Ss(a){var b=A.location.href.match(new RegExp(";"+a+"=([^;?]+)"));return b&&b.length===2&&b[1].match(Ms)?b[1]:void 0} -function Ts(a){var b={},c,d,e;Ns.test(A.location.host)&&(c=Ss("gclgs"),d=Ss("gclst"),e=Ss("gcllp"));if(c&&d&&e)b.Kg=c,b.fi=d,b.di=e;else{var f=Qb(),g=Rr((a||"_gcl")+"_gs"),h=g.map(function(p){return p.gclid}),l=g.map(function(p){return f-p.timestamp}),n=g.map(function(p){return p.jd});h.length>0&&l.length>0&&n.length>0&&(b.Kg=h.join("."),b.fi=l.join("."),b.di=n.join("."))}return b} -function Us(a,b){var c=a.split("."),d=b?b.split("."):[],e=d.length===c.length?d:void 0;return c.map(function(f,g){var h={gclid:f};if(e){var l=e[g].split("_");if(l.length===2){h.qa=new ir(Number(l[0]));var n;var p=Number(l[1]);if(p===0)n=[0];else{var q=[];p&1&&q.push(1);p&2&&q.push(2);p&4&&q.push(3);p&8&&q.push(4);p&16&&q.push(5);n=q}h.oa=n}}return h})} -function Vs(a,b,c,d){d=d===void 0?!1:d;if(Ns.test(A.location.host)){var e=Ss(c);if(e){if($f(18)){var f=Ss(c+"_src");return Us(e,f)}if(d){var g=new ir;jr(g,2);jr(g,3);return e.split(".").map(function(r){return{gclid:r,qa:g,oa:[1]}})}return e.split(".").map(function(r){return{gclid:r,qa:new ir,oa:[1]}})}}else{if(b==="gclid"){for(var h=Ir((a||"_gcl")+"_aw",d),l=Number(Zf[4]===void 0?0:Zf[4]),n=m(Ws()),p=n.next();!p.done;p=n.next()){var q=p.value;q.timestamp>l&&Vr(h,q)}return h}if(b==="wbraid")return Ir((a|| -"_gcl")+"_gb",d);if(b==="braids")return Kr({prefix:a},d)}return[]}function Ws(){return(Aq(zr.aw,4)||[]).filter(function(a){return a.m==="1"}).map(function(a){return{gclid:a.k,timestamp:Number(a.i),version:"",oa:[5]}})}function Xs(a){for(var b=0,c=m(a),d=c.next();!d.done;d=c.next()){var e=d.value;e>0&&(b|=1<0)return f?["0"]:g}var h=Nr(a,e);return h?Hr(h):[]},ht=function(a,b,c){if(!ip(a,b)||!ip(a,c))return"";var d=ip(a,b).split("."),e=ip(a,c).split(".");return d.length&&e.length&&d.length===e.length&&d[0]&&e[0]?d.map(function(f,g){return f+"_"+e[g]}).join("."):""},bt=/^gad_source[_=](\d+)$/;function it(a,b,c){var d=ip(a,F.D.Va);if(d&&typeof d==="object")for(var e=m(Object.keys(d)),f=e.next();!f.done;f=e.next()){var g=f.value,h=d[g];if(h!==void 0){h===null&&(h="");var l="gap."+g,n=String(h);c?c(l,n):b[l]=n}}};var jt=!1,kt=[];function lt(){if(!jt){jt=!0;for(var a=kt.length-1;a>=0;a--)kt[a]();kt=[]}};function mt(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b};function nt(a,b,c){return typeof a.addEventListener==="function"?(a.addEventListener(b,c,!1),!0):!1}function ot(a,b,c){typeof a.removeEventListener==="function"&&a.removeEventListener(b,c,!1)};function pt(a,b,c,d){d=d===void 0?!1:d;a.google_image_requests||(a.google_image_requests=[]);var e=Mp(a.document);if(c){var f=function(){if(c){var g=a.google_image_requests,h=Jc(g,e);h>=0&&Array.prototype.splice.call(g,h,1)}ot(e,"load",f);ot(e,"error",f)};nt(e,"load",f);nt(e,"error",f)}d&&(e.attributionSrc="");e.src=b;a.google_image_requests.push(e)} -function qt(a){var b;b=b===void 0?!1:b;var c="https://pagead2.googlesyndication.com/pagead/gen_204?id=tcfe";Fp(a,function(d,e){if(d||d===0)c+="&"+e+"="+encodeURIComponent(String(d))});rt(c,b)} -function rt(a,b){var c=window,d;b=b===void 0?!1:b;d=d===void 0?!1:d;if(c.fetch){var e={keepalive:!0,credentials:"include",redirect:"follow",method:"get",mode:"no-cors"};d&&(e.mode="cors","setAttributionReporting"in XMLHttpRequest.prototype?e.attributionReporting={eventSourceEligible:"true",triggerEligible:"false"}:e.headers={"Attribution-Reporting-Eligible":"event-source"});c.fetch(a,e)}else pt(c,a,b===void 0?!1:b,d===void 0?!1:d)};function st(){this.ia=this.ia;this.T=this.T}st.prototype.ia=!1;st.prototype.dispose=function(){this.ia||(this.ia=!0,this.O())};st.prototype[Symbol.dispose]=function(){this.dispose()};st.prototype.addOnDisposeCallback=function(a,b){this.ia?b!==void 0?a.call(b):a():(this.T||(this.T=[]),b&&(a=a.bind(b)),this.T.push(a))};st.prototype.O=function(){if(this.T)for(;this.T.length;)this.T.shift()()};function tt(a){a.addtlConsent===void 0||yf(a.addtlConsent)||(a.addtlConsent=void 0);a.gdprApplies===void 0||zf(a.gdprApplies)||(a.gdprApplies=void 0);return a.tcString!==void 0&&!yf(a.tcString)||a.listenerId!==void 0&&!xf(a.listenerId)?2:a.cmpStatus&&a.cmpStatus!=="error"?0:3}var ut=function(a,b){b=b===void 0?{}:b;st.call(this);this.H=null;this.ma={};this.Da=0;this.Z=null;this.K=a;var c;this.timeoutMs=(c=b.timeoutMs)!=null?c:500;var d;this.Nj=(d=b.Nj)!=null?d:!1};wa(ut,st); -ut.prototype.O=function(){this.ma={};this.Z&&(ot(this.K,"message",this.Z),delete this.Z);delete this.ma;delete this.K;delete this.H;st.prototype.O.call(this)};var wt=function(a){return typeof a.K.__tcfapi==="function"||vt(a)!=null}; -ut.prototype.addEventListener=function(a){var b=this,c={internalBlockOnErrors:this.Nj},d=Ep(function(){a(c)}),e=0;this.timeoutMs!==-1&&(e=setTimeout(function(){c.tcString="tcunavailable";c.internalErrorState=1;d()},this.timeoutMs));var f=function(g,h){clearTimeout(e);g?(c=g,c.internalErrorState=tt(c),c.internalBlockOnErrors=b.Nj,h&&c.internalErrorState===0||(c.tcString="tcunavailable",h||(c.internalErrorState=3))):(c.tcString="tcunavailable",c.internalErrorState=3);a(c)};try{xt(this,"addEventListener", -f)}catch(g){c.tcString="tcunavailable",c.internalErrorState=3,e&&(clearTimeout(e),e=0),d()}};ut.prototype.removeEventListener=function(a){a&&a.listenerId&&xt(this,"removeEventListener",null,a.listenerId)}; -var At=function(a,b,c){var d;d=d===void 0?"755":d;var e;a:{if(a.publisher&&a.publisher.restrictions){var f=a.publisher.restrictions[b];if(f!==void 0){e=f[d===void 0?"755":d];break a}}e=void 0}var g=e;if(g===0)return!1;var h=c;c===2?(h=0,g===2&&(h=1)):c===3&&(h=1,g===1&&(h=0));var l;if(h===0)if(a.purpose&&a.vendor){var n=zt(a.vendor.consents,d===void 0?"755":d);l=n&&b==="1"&&a.purposeOneTreatment&&a.publisherCC==="CH"?!0:n&&zt(a.purpose.consents,b)}else l=!0;else l=h===1?a.purpose&&a.vendor?zt(a.purpose.legitimateInterests, -b)&&zt(a.vendor.legitimateInterests,d===void 0?"755":d):!0:!0;return l},zt=function(a,b){return!(!a||!a[b])},xt=function(a,b,c,d){c||(c=function(){});var e=a.K;if(typeof e.__tcfapi==="function"){var f=e.__tcfapi;f(b,2,c,d)}else if(vt(a)){Bt(a);var g=++a.Da;a.ma[g]=c;if(a.H){var h={};a.H.postMessage((h.__tcfapiCall={command:b,version:2,callId:g,parameter:d},h),"*")}}else c({},!1)},vt=function(a){if(a.H)return a.H;a.H=Kp(a.K,"__tcfapiLocator");return a.H},Bt=function(a){if(!a.Z){var b=function(c){if(c.source=== -a.H)try{var d;d=(yf(c.data)?JSON.parse(c.data):c.data).__tcfapiReturn;a.ma[d.callId](d.returnValue,d.success)}catch(e){}};a.Z=b;nt(a.K,"message",b)}},Ct=function(a){if(a.gdprApplies===!1)return!0;a.internalErrorState===void 0&&(a.internalErrorState=tt(a));return a.cmpStatus==="error"||a.internalErrorState!==0?a.internalBlockOnErrors?(qt({e:String(a.internalErrorState)}),!1):!0:a.cmpStatus!=="loaded"||a.eventStatus!=="tcloaded"&&a.eventStatus!=="useractioncomplete"?!1:!0};var Dt={1:0,3:0,4:0,7:3,9:3,10:3};function Et(){return $n("tcf",function(){return{}})}var Ft=function(){return new ut(w,{timeoutMs:-1})}; -function Gt(){var a=Et(),b=Ft();wt(b)&&!Ht()&&!It()&&R(124);if(!a.active&&wt(b)){Ht()&&(a.active=!0,a.purposes={},a.cmpId=0,a.tcfPolicyVersion=0,Am().active=!0,a.tcString="tcunavailable");dp();try{b.addEventListener(function(c){if(c.internalErrorState!==0)Jt(a),ep([F.D.ja,F.D.Ta,F.D.ka]),Am().active=!0;else if(a.gdprApplies=c.gdprApplies,a.cmpId=c.cmpId,a.enableAdvertiserConsentMode=c.enableAdvertiserConsentMode,It()&&(a.active=!0),!Kt(c)||Ht()||It()){a.tcfPolicyVersion=c.tcfPolicyVersion;var d;if(c.gdprApplies=== -!1){var e={},f;for(f in Dt)Dt.hasOwnProperty(f)&&(e[f]=!0);d=e;b.removeEventListener(c)}else if(Kt(c)){var g={},h;for(h in Dt)if(Dt.hasOwnProperty(h))if(h==="1"){var l,n=c,p={qs:!0};p=p===void 0?{}:p;l=Ct(n)?n.gdprApplies===!1?!0:n.tcString==="tcunavailable"?!p.idpcApplies:(p.idpcApplies||n.gdprApplies!==void 0||p.qs)&&(p.idpcApplies||yf(n.tcString)&&n.tcString.length)?At(n,"1",0):!0:!1;g["1"]=l}else g[h]=At(c,h,Dt[h]);d=g}if(d){a.tcString=c.tcString||"tcempty";a.purposes=d;var q={},r=(q[F.D.ja]= -a.purposes["1"]?"granted":"denied",q);a.gdprApplies!==!0?(ep([F.D.ja,F.D.Ta,F.D.ka]),Am().active=!0):(r[F.D.Ta]=a.purposes["3"]&&a.purposes["4"]?"granted":"denied",typeof a.tcfPolicyVersion==="number"&&a.tcfPolicyVersion>=4?r[F.D.ka]=a.purposes["1"]&&a.purposes["7"]?"granted":"denied":ep([F.D.ka]),Wo(r,{eventId:0},{gdprApplies:a?a.gdprApplies:void 0,tcString:Lt()||""}))}}else ep([F.D.ja,F.D.Ta,F.D.ka])})}catch(c){Jt(a),ep([F.D.ja,F.D.Ta,F.D.ka]),Am().active=!0}}} -function Jt(a){a.type="e";a.tcString="tcunavailable"}function Kt(a){return a.eventStatus==="tcloaded"||a.eventStatus==="useractioncomplete"||a.eventStatus==="cmpuishown"}function Ht(){return w.gtag_enable_tcf_support===!0}function It(){return Et().enableAdvertiserConsentMode===!0}function Lt(){var a=Et();if(a.active)return a.tcString}function Mt(){var a=Et();if(a.active&&a.gdprApplies!==void 0)return a.gdprApplies?"1":"0"} -function Nt(a){if(!Dt.hasOwnProperty(String(a)))return!0;var b=Et();return b.active&&b.purposes?!!b.purposes[String(a)]:!0};var Ot=[F.D.ja,F.D.sa,F.D.ka,F.D.Ta],Pt={},Qt=(Pt[F.D.ja]=1,Pt[F.D.sa]=2,Pt);function Rt(a){if(a===void 0)return 0;switch(Q(a,F.D.Nc)){case void 0:return 1;case !1:return 3;default:return 2}}function St(){return(P(183)?Nf(16).split("~"):Nf(17).split("~")).indexOf(lk())!==-1&&Nc.globalPrivacyControl===!0}function Tt(a){if(St())return!1;var b=Rt(a);if(b===3)return!1;switch(Jm(F.D.Ta)){case 1:case 3:return!0;case 2:return!1;case 4:return b===2;case 0:return!0;default:return!1}} -function Ut(){return Lm()||!Im(F.D.ja)||!Im(F.D.sa)}function Vt(){var a={},b;for(b in Qt)Qt.hasOwnProperty(b)&&(a[Qt[b]]=Jm(b));return"G1"+Bf(a[1]||0)+Bf(a[2]||0)}var Wt={},Xt=(Wt[F.D.ja]=0,Wt[F.D.sa]=1,Wt[F.D.ka]=2,Wt[F.D.Ta]=3,Wt);function Yt(a){switch(a){case void 0:return 1;case !0:return 3;case !1:return 2;default:return 0}} -function Zt(a){for(var b="1",c=0;c=0&&c<=4095&&(a="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[c>>6&63],b="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[c&63]);var e="0",f;var g=Et();f=g.active?g.tcfPolicyVersion:void 0;typeof f==="number"&&f>=0&&f<=63&&(e="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[f]);var h=0;nk()&&(h|=1);Mt()==="1"&&(h|=2);Ht()&&(h|=4);var l;var n=Et();l=n.enableAdvertiserConsentMode!== -void 0?n.enableAdvertiserConsentMode?"1":"0":void 0;l==="1"&&(h|=8);Am().waitPeriodTimedOut&&(h|=16);return"1"+a+b+e+"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"[h]};var du={UA:1,AW:2,DC:3,G:4,GF:5,GT:12,GTM:14,HA:6,MC:7}; -function eu(a){a=a===void 0?{}:a;var b=E(5).split("-")[0].toUpperCase(),c,d={ctid:E(5),Oo:Lf(15),So:E(14),Ws:Kf(7)?2:1,Nt:a.pe,canonicalId:E(6),Et:(c=jm())==null?void 0:c.canonicalContainerId,Ot:a.ah===void 0?void 0:a.ah?10:12};d.canonicalId!==a.ac&&(d.ac=a.ac);var e=gm();d.kt=e?e.canonicalContainerId:void 0;Kf(45)?(d.ri=du[b],d.ri||(d.ri=0)):d.ri=$i?13:10;Kf(47)?(d.nk=0,d.Fr=2):Kf(50)?d.nk=1:d.nk=3;var f=a,g={6:!1};Lf(54)===2?g[7]=!0:Lf(54)===1&&(g[2]=!0);if(Qc){var h=hj(nj(Qc),"host");h&&(g[8]= -h.match(/^(www\.)?googletagmanager\.com$/)===null)}var l;g[9]=(l=f.cf)!=null?l:!1;var n=om(),p;g[10]=(p=n==null?void 0:n.fromContainerExecution)!=null?p:!1;d.Mr=g;return Ef(d,a.Yn)};var pu={Ug:"value",mb:"conversionCount",Vg:1},qu={Ug:"timeouts",mb:"timeouts",Vg:0},ru={Ug:"eopCount",mb:"endOfPageCount",Vg:0},su={Ug:"errors",mb:"errors",Vg:0},tu=[pu,qu,su,ru];function uu(a,b){b=b===void 0?1:b;if(!vu(a))return{};var c=wu(tu),d=c[a.mb];if(d===void 0||d===-1)return c;var e={},f=oa(Object,"assign").call(Object,{},c,(e[a.mb]=d+b,e));return xu(f)?f:c} -function wu(a){var b;a:{var c=rr("gcl_ctr");if(c.error===0&&c.value&&typeof c.value==="object"){var d=c.value;try{b="value"in d&&typeof d.value==="object"?d.value:void 0;break a}catch(p){}}b=void 0}for(var e=b,f={},g=m(a),h=g.next();!h.done;h=g.next()){var l=h.value;if(e&&vu(l)){var n=e[l.Ug];n===void 0||Number.isNaN(n)?f[l.mb]=-1:f[l.mb]=Number(n)}else f[l.mb]=-1}return f} -function xu(a,b){b=b||{};for(var c=Qb(),d=yq(b,c,!0),e={},f=m(tu),g=f.next();!g.done;g=f.next()){var h=g.value,l=a[h.mb];l!==void 0&&l!==-1&&(e[h.Ug]=l)}e.creationTimeMs=c;return or("gcl_ctr",{value:e,expires:Number(d.expires)})===0?!0:!1}function vu(a){return Im(["ad_storage","ad_user_data"])?!a.zt||$f(a.zt):!1}function yu(a){return Im(["ad_storage","ad_user_data"])?!a.Ms||$f(a.Ms):!1};function zu(){if(Au()){var a=rr("last_convs");if(a.error===0&&a.value&&typeof a.value==="object"){var b=a.value;if(b.value&&Array.isArray(b.value)){var c=b.value;if(!(c.length>1)){for(var d=[],e=m(c),f=e.next();!f.done;f=e.next()){var g=f.value;if(typeof g!=="object"||g===null||typeof g.random!=="number"||typeof g.label!=="string"||g.label.length>200)return;d.push({random:g.random,label:g.label})}return d}}}}} -function Bu(a,b){!Au()||a.length>1||a.length===1&&a[0].label.length>200||(b=b||{},or("last_convs",{value:a,expires:Number(yq(b).expires)}))}function Au(){return Im(["ad_storage","ad_user_data"])&&$f(12)};function Cu(a){var b=Math.round(Math.random()*2147483647);return a?String(b^pg(a)&2147483647):String(b)}function Du(a){return[Cu(a),Math.round(Qb()/1E3)].join(".")}function Eu(a,b,c,d,e){var f=vq(b),g;return(g=kq(a,f,wq(c),d,e))==null?void 0:g.Pr};var Fu=["1"],Gu={},Hu={};function Iu(a){return Hu[Ju(a)]}function Ku(a,b){b=b===void 0?!0:b;var c=Ju(a.prefix);if(Gu[c])Lu(a),Mu(a);else if(Nu(c,a.path,a.domain)){var d=Iu(a.prefix)||{id:void 0,Zb:void 0};b&&Ou(a,d);Lu(a);Mu(a)}else{var e=pj("auiddc");if(e)vb("TAGGING",17),Gu[c]=e;else if(b){var f=Ju(a.prefix),g=Du();Pu(f,g,a);Nu(c,a.path,a.domain);Lu(a,!0);Mu(a,!0)}}} -function Lu(a,b){(b===void 0?0:b)&&vu(pu)&&sr("gcl_ctr");if(yu(pu)&&wu([pu])[pu.mb]===-1){for(var c={},d=(c[pu.mb]=0,c),e=m(tu),f=e.next();!f.done;f=e.next()){var g=f.value;g!==pu&&yu(g)&&(d[g.mb]=0)}xu(d,a)}}function Mu(a,b){(b===void 0?0:b)&&Au()&&sr("last_convs");!Im(["ad_storage","ad_user_data"])||!$f(13)||zu()||Bu([],a)} -function Ou(a,b){var c=Ju(a.prefix),d=Gu[c];if(d){var e=d.split(".");if(e.length===2){var f=Number(e[1])||0;if(f){var g=d;$f(20)&&b.mi?g=d+"."+(b.sessionId||"-.-")+"."+(b.Zb?b.Zb:Math.floor(Qb()/1E3))+"."+b.mi+"."+(b.Hc?b.Hc:Math.floor(Qb()/1E3)):b.sessionId&&(g=d+"."+b.sessionId+"."+(b.Zb?b.Zb:Math.floor(Qb()/1E3)));Pu(c,g,a,f*1E3)}}}}function Pu(a,b,c,d){var e;e=["1",xq(c.domain,c.path),b].join(".");var f=yq(c,d);f.Ic=Qu();sq(a,e,f)} -function Nu(a,b,c){var d=Eu(a,b,c,Fu,Qu());if(!d)return!1;Ru(a,d);return!0}function Ru(a,b){var c=b.split(".");if(c.length===3)Hu[a]={sessionId:c[0]+"."+c[1],Zb:Number(c[2])||0,Hc:0};else if(c.length>=2&&(Gu[a]=c[0]+"."+c[1],c.shift(),c.shift(),c.length>=3)){var d={sessionId:c[0]==="-"?void 0:c[0]+"."+c[1],Zb:Number(c[2])||0,Hc:0};if($f(20)&&c.length>=6){var e=c[3]+"."+c[4],f=Number(c[5])||0;e&&f!==0&&(d.mi=e,d.Hc=f)}Hu[a]=d}}function Ju(a){return(a||"_gcl")+"_au"} -function Su(a){function b(){Im(c)&&a()}var c=Qu();Om(function(){b();Im(c)||Pm(b,c)},c)}function Tu(a){var b=Yq(!0),c=Ju(a.prefix);Su(function(){var d=b[c];if(d){Ru(c,d);var e=Number(Gu[c].split(".")[1])*1E3;if(e){vb("TAGGING",16);var f=yq(a,e);f.Ic=Qu();var g=["1",xq(a.domain,a.path),d].join(".");sq(c,g,f)}}})}function Uu(a,b,c,d,e){e=e||{};var f=function(){var g={},h=Eu(a,e.path,e.domain,Fu,Qu());h&&(g[a]=h);return g};Su(function(){er(f,b,c,d)})} -function Qu(){return["ad_storage","ad_user_data"]};var Yu="email email_address sha256_email_address phone_number sha256_phone_number first_name last_name".split(" "),Zu="first_name sha256_first_name last_name sha256_last_name street sha256_street city region country postal_code".split(" ");function $u(a,b){if(!b._tag_metadata){for(var c={},d=0,e=0;e0&&(b._tag_metadata=c)}} -function av(a,b,c){var d=b[a];if(d===void 0||d===null)return!1;c[a]=Array.isArray(d)?d.map(function(){return{mode:"c"}}):{mode:"c"};return!0}function bv(a){if(P(523)&&a){$u(Yu,a);for(var b=Eb(a.address),c=0;c0))return!1; -var b=rv(a);return pv(b,function(){}).hasUpd},pv=function(a,b){b=b===void 0?function(){}:b;for(var c=!1,d=!1,e=m(a),f=e.next();!f.done;f=e.next()){var g=f.value;if(g.value){var h=tv[g.name];if(h){var l=uv(g);l&&(c=!0);d=!0;b(g,h,l)}}}return{hasUpd:d,hasUpdToHash:c}},uv=function(a){var b=vv(a.name),c=/^e\d+$/.test(a.value),d;if(d=b&&!c){var e=a.value;d=!(wv.test(e)||zi.test(e))}return d},vv=function(a){return xv.indexOf(a)!==-1},Dv=function(a,b,c){if(Bb(w.Promise))try{var d=rv(a),e=yv(d).then(zv); -return e}catch(g){}},Bv=function(a){var b=void 0;return b},zv=function(a){var b=P(523),c=a.md,d=["tv.1"],e=["tvd.1"],f=ov(c);if(f)return d.push(f),{param:d.join("~"),hasUpdToHash:!1,hasUpd:!1,hadError:!0,metadataParam:b?e.join("~"):void 0};var g=c.filter(function(q){return!uv(q)}), -h=0,l=pv(g,function(q,r){h++;var t=q.value,u=q.index;u!==void 0&&(r+=u);d.push(r+"."+t);if(b){var v=cv(h,r,q.metadata);v&&e.push(v)}}),n=l.hasUpdToHash,p=l.hasUpd;return{param:encodeURIComponent(d.join("~")),hasUpdToHash:n,hasUpd:p,hadError:!1,metadataParam:b?e.join("~"):void 0}},ov=function(a){if(a.length===1&&a[0].name==="error_code")return tv.error_code+"."+a[0].value},Av=function(a){if(a.length===1&&a[0].name==="error_code")return!1;for(var b=m(a),c=b.next();!c.done;c=b.next()){var d=c.value; -if(tv[d.name]&&d.value)return!0}return!1},rv=function(a){function b(t,u,v,x,y){var z=Ev(t);if(z!=="")if(zi.test(z)){y&&(y.isPreHashed=!0);var C={name:u,value:z,index:x};y&&(C.metadata=y);l.push(C)}else{var D=v(z),H={name:u,value:D,index:x};y&&(H.metadata=y,D&&(y.rawLength=String(z).length,y.normalizedLength=D.length));l.push(H)}}function c(t,u){var v=t;if(Cb(v)||Array.isArray(v)){v=Eb(t);for(var x=0;x0&&Bb(w.Promise)?rv(a).some(function(b){return b.value&&vv(b.name)&&!zi.test(b.value)}):!1},Ev=function(a){return a==null?"":Cb(a)?Ob(String(a)):"e0"},Kv=function(a){return a.replace(Nv,"")},Iv=function(a){return Jv(a.replace(/\s/g,""))},Jv=function(a){return Ob(a.replace(Ov,"").toLowerCase())},Hv=function(a){a=a.replace(/[\s-()/.]/g,"");a.charAt(0)!=="+"&& -(a="+"+a);return Pv.test(a)?a:"e0"},Gv=function(a){var b=a.toLowerCase().split("@");if(b.length===2){var c=b[0];/^(gmail|googlemail)\./.test(b[1])&&(c=c.replace(/\./g,""));c=c+"@"+b[1];if(Qv.test(c))return c}return"e0"},Rv=function(a){try{return a.forEach(function(b){b.value&&vv(b.name)&&(b.value=Ei(b.value))}),{md:a}}catch(b){return{md:[]}}},yv=function(a){return a.some(function(b){return b.value&&vv(b.name)})?Bb(w.Promise)?Promise.all(a.map(function(b){return b.value&&vv(b.name)?Bi(b.value).then(function(c){b.value= -c}):Promise.resolve()})).then(function(){return{md:a}}).catch(function(){return{md:[]}}):{then:function(b){b({md:[]})}}:Promise.resolve({md:a})},Ov=/[0-9`~!@#$%^&*()_\-+=:;<>,.?|/\\[\]]/g,Qv=/^\S+@\S+\.\S+$/,Pv=/^\+\d{10,15}$/,Nv=/[.~]/g,wv=/^[0-9A-Za-z_-]{43}$/,Sv={},tv=(Sv.email="em",Sv.phone_number="pn",Sv.first_name="fn",Sv.last_name="ln",Sv.street="sa",Sv.city="ct",Sv.region="rg",Sv.country="co",Sv.postal_code="pc",Sv.error_code="ec",Sv),Tv={},Fv=(Tv.email="sha256_email_address",Tv.phone_number= -"sha256_phone_number",Tv.first_name="sha256_first_name",Tv.last_name="sha256_last_name",Tv.street="sha256_street",Tv);var xv=Object.freeze(["email","phone_number","first_name","last_name","street"]);var $v=function(a){this.methodName=a};$v.prototype.getName=function(){return this.methodName};$v.prototype.sendRequest=function(a,b,c){if(this.isSupported())if((c==null?void 0:c.body)===void 0||this.H())try{this.K(a,b,c)}catch(d){a.ld(d)}else a.ld("Request method "+this.getName()+" does not support a request body.");else a.ld("Request method "+this.getName()+" is not supported.")};var aw=function(){this.methodName="ImagePixel"};wa(aw,$v);aw.prototype.isSupported=function(){return!0}; -aw.prototype.H=function(){return!1};aw.prototype.K=function(a,b,c){Nl(a.nf,b,function(){a.hf()},function(){a.onFailure(void 0)},c==null?void 0:c.Xe)};var bw=function(){this.methodName="SendBeacon"};wa(bw,$v);bw.prototype.isSupported=function(){return pd()};bw.prototype.H=function(){return!0};bw.prototype.K=function(a,b,c){Ml(a.nf,b,c==null?void 0:c.body)?a.hf():a.ld(void 0)};var cw=function(){this.methodName="Fetch"};wa(cw,$v);cw.prototype.isSupported=function(){return Bb(w.fetch)}; -cw.prototype.H=function(){return!0};cw.prototype.K=function(a,b,c){il.register(a.nf,2,b);w.fetch(b,c==null?void 0:c.Cc).then(function(d){if(d.ok)a.ke(d);else if(d.status===0)a.hf();else a.onFailure("Fetch failed with status code "+d.status+".")}).catch(function(d){a.ld(d)})};var dw=new aw,ew=new bw,fw=new cw;var gw=function(){};gw.prototype.K=function(){return[]};var hw=function(a,b){hp.call(this,a,b,!1)};wa(hw,hp);hw.prototype.H=function(a,b,c){Xv(a,function(d){U(a,I.J.jj)&&delete d.item;U(a,I.J.Ha)&&oa(Object,"assign").call(Object,d,Fk);var e=Cj(b.Fc);e&&(d._uip=e);var f="?"+mu(d);c(f)})};var iw=new hw(22,["ad_storage","ad_user_data"]),jw=new hw(23,["ad_storage","ad_user_data"]),kw=new hw(60,[]),lw=function(){};wa(lw,gw);lw.prototype.H=function(a){return U(a,I.J.ba)===T.U.ud&&U(a,I.J.tj)?[{endpoint:Yo(zp)?U(a,I.J.Ha)?jw:iw:kw,method:dw}]:[]};var mw=new lw;var Aw=Object.freeze({attributionsrc:""}),Bw=Object.freeze({eventSourceEligible:!1,triggerEligible:!0});function Cw(){var a=XMLHttpRequest.prototype;return a&&Bb(a.setAttributionReporting)};var Dw=Object.freeze({cache:"no-store",credentials:"include",method:"GET",keepalive:!0,redirect:"follow"}); -function Ew(a,b,c,d,e,f,g,h,l){if(w.fetch){a&&il.register(a,2,b);var n=oa(Object,"assign").call(Object,{},Dw);c&&(n.body=c,n.method="POST");oa(Object,"assign").call(Object,n,e);var p=function(){h==null||Jl(h);l==null||Kl(l,b)};w.fetch(b,n).then(function(q){p();if(q.ok){if(q.body){var r=q.body.getReader(),t=new TextDecoder;return new Promise(function(u){function v(){r.read().then(function(x){var y;y=x.done;var z=t.decode(x.value,{stream:!y});z=d.T+z;for(var C=z.indexOf("\n\n");C!==-1;){var D=ch,H; -a:{var G=m(z.substring(0,C).split("\n")),J=G.next().value,S=G.next().value;if(Wb(J,"event: message")&&Wb(S,"data: ")){var V=S.substring(6);try{H=JSON.parse(V);break a}catch(da){}}H=void 0}D(d,H);z=z.substring(C+2);C=z.indexOf("\n\n")}d.T=z;y?(f==null||f(q),u()):v()}).catch(function(){f==null||f(q);u()})}v()})}f==null||f(q)}else g==null||g(q,void 0)}).catch(function(q){p();g==null||g(void 0,q)})}else g==null||g(void 0,void 0)};var Fw=function(a){this.methodName="FetchRichResponse";this.O=a};wa(Fw,$v);Fw.prototype.isSupported=function(){return Bb(w.fetch)};Fw.prototype.H=function(){return!0};Fw.prototype.K=function(a,b,c){Ew(a.nf,b,c==null?void 0:c.body,this.O,c==null?void 0:c.Cc,a.ke,function(d,e){a.onFailure(e)})};function Gw(a,b,c,d,e){e=e===void 0?!1:e;var f=b.method;Xv(a,function(g){var h=U(a,I.J.Ha),l=Yo(zp),n=f instanceof aw?3:f instanceof yw?c===5||c===8?3:4:f instanceof cw?!h&&l?3:8:f instanceof Fw?7:-1;f instanceof yw&&n===3?(g.fmt=4,g.rfmt=3):g.fmt=n;oa(Object,"assign").call(Object,g,c===66?{gcp:"4"}:h||c===8||c===65?Fk:{});if(P(548)){var p=fi[F.D.xf];p&&(g[p]=c)}if(P(569)){var q=b.Mt,r=[q.yk[0].endpoint.endpoint];r.push.apply(r,za(q.vk.filter(function(x){return x[0]!==void 0}).map(function(x){return x[0].endpoint.endpoint}))); -g.epp=r.sort(function(x,y){return x-y}).join("~")}e&&(g["gap.1pfb"]="1");var t="?"+mu(g),u=Hw(f,l),v;v=(f instanceof aw||f instanceof yw)&&Yo("ad_user_data")?Aw:void 0;d(t,{Cc:u,Xe:v})})}function Hw(a,b){var c=void 0;a instanceof cw?c=oa(Object,"assign").call(Object,{},qd):a instanceof Fw&&(c={},Cw()&&(c.attributionReporting=Bw));!b&&c&&(c.credentials="omit",c.mode="cors");return c};var Iw=function(a,b,c){c=c===void 0?!1:c;hp.call(this,a,b);this.T=c};wa(Iw,hp);Iw.prototype.K=function(a){var b=this.T&&Kj(this.endpoint)?Jj[this.endpoint]():xk[this.endpoint](void 0);return jp(a,Hk(b))};Iw.prototype.H=function(a,b,c){Gw(a,b,this.endpoint,c,this.T)}; -var Jw=new Iw(5,["ad_storage","ad_user_data"]),Kw=new Iw(6,[]),Lw=new Iw(63,["ad_storage","ad_user_data"]),Mw=new Iw(65,["ad_storage","ad_user_data"]),Nw=new Iw(8,["ad_storage","ad_user_data"]),Ow=new Iw(66,[]),Pw=new Iw(74,["ad_storage","ad_user_data"]);var Qw=function(){bh.apply(this,arguments)};wa(Qw,bh);Qw.prototype.K=function(a,b){dd(a,void 0,dh(this,b),b.attribution_reporting&&Cw()?Aw:{})};Qw.prototype.H=function(a,b){var c=b.attribution_reporting&&Cw()?{attributionReporting:Bw}:{},d=dh(this,b);b.process_response?Ew(void 0,a,void 0,this,c,void 0,d):rd(a,void 0,c,void 0,d)};var Sw=function(){};wa(Sw,gw);Sw.prototype.H=function(a){if(U(a,I.J.ba)!==T.U.ra)return[];var b=Yo(zp),c=!!U(a,I.J.Ha),d=!!U(a,I.J.Ac),e=b?d?c?Mw:Lw:c?Nw:Jw:Kw,f=[{endpoint:e,method:sd()?b?P(490)?c?fw:new Fw(new Rw):zw:fw:dw}],g=b?c?void 0:Nw:Ow;g&&f.push({endpoint:g,method:fw});if(P(496)){var h;h=e.T?e:sj()&&Kj(e.endpoint)?new Iw(e.endpoint,e.O,!0):void 0;h&&f.push({endpoint:h,method:fw})}return f}; -Sw.prototype.K=function(a){return U(a,I.J.ba)===T.U.ra&&sj()&&!U(a,I.J.Ac)&&P(569)&&Yo(zp)?[[{endpoint:Pw,method:fw}]]:[]};var Tw=new Sw;var Uw=function(a,b){gp.call(this,a,b,!0,!1,3)};wa(Uw,gp);Uw.prototype.H=function(a,b,c){var d=nu(a),e="?"+mu(d);c(e,{Cc:qd})};var Vw=new Uw(54,["ad_storage","ad_user_data"]),Ww=new Uw(55,[]),Xw=function(){};wa(Xw,gw);Xw.prototype.H=function(){return[{endpoint:Yo(Vw.O)?Vw:Ww,method:fw}]};var Yw=new Xw;var Zw=function(){hp.call(this,9,["ad_storage","ad_user_data"])};wa(Zw,hp);Zw.prototype.isSupported=function(a){return U(a,I.J.ba)===T.U.xc};Zw.prototype.H=function(a,b,c){var d=this;Xv(a,function(e){if(P(548)){var f=fi[F.D.xf];f&&(e[f]=d.endpoint)}e.gcp=1;e.ct_cookie_present=1;e.fmt=b.method instanceof cw?8:3;var g="?"+mu(e);c(g,{Cc:qd})})};var $w=new Zw,ax=function(){};wa(ax,gw);ax.prototype.H=function(){return[{endpoint:$w,method:fw},{endpoint:$w,method:dw}]};var bx=new ax;var cx=[68];function dx(a,b,c){if(!cx.includes(c)){var d=b.M;Lo({targetId:b.target.destinationId,request:{url:a,parameterEncoding:3,endpoint:c},nb:{eventId:d.eventId,priorityId:d.priorityId},Oj:{eventId:U(b,I.J.tf),priorityId:U(b,I.J.uf)}});U(b,I.J.ba)}};var ex={},fx=(ex[T.U.ra]=function(a,b){var c=Yo(zp),d=U(a,I.J.Ha)?oa(Object,"assign").call(Object,{},Fk):{},e={},f;c&&!U(a,I.J.Ha)?(f=8,oa(Object,"assign").call(Object,e,Fk)):c||(f=66,e.gcp="4");var g;g=Yo(zp)?U(a,I.J.Ac)?U(a,I.J.Ha)?65:63:U(a,I.J.Ha)?8:5:6;var h;h=xk[g](void 0)+"/"+b+"/";var l;if(c)if(P(490)){var n=!U(a,I.J.Ha);l=sd()?n?4:3:1}else l=2;else l=sd()?3:1;var p={baseUrl:h,Mg:d,format:l,endpoint:g};Yo(F.D.ka)&&(p.attributes=Aw);var q=p;if(f!==void 0){var r=q,t=Object,u=t.assign,v;v=xk[f](void 0)+ -"/"+b+"/";r.Ye=u.call(t,{},p,{baseUrl:v,Mg:e,format:3,endpoint:f});q=q.Ye}var x;a:if(sj()&&P(496))switch(g){case 5:case 63:case 8:case 65:x=!0;break a;default:x=!1}else x=!1;if(x){var y={};q.Ye=oa(Object,"assign").call(Object,{},q,{baseUrl:Jj[g]()+"/"+b+"/",Mg:oa(Object,"assign").call(Object,{},d,(y["gap.1pfb"]="1",y)),format:3,endpoint:g})}return p},ex[T.U.Td]=function(){var a=Yo(zp)?54:55;return{baseUrl:xk[a](void 0),Mg:{},format:3,endpoint:a}},ex); -function gx(a){var b=U(a,I.J.ba),c=ip(a,F.D.qh),d=U(a,I.J.sb),e,f=(e=fx[b])==null?void 0:e.call(fx,a,c,d);return(Array.isArray(f)?f:[f]).filter(function(g){return g!==void 0})};var hx=function(a,b){this.jt=a;this.timeoutMs=b;this.Mb=void 0},ix=function(a){a.Mb||(a.Mb=setTimeout(function(){a.jt();a.Mb=void 0},a.timeoutMs))},Jl=function(a){a.Mb&&(clearTimeout(a.Mb),a.Mb=void 0)};var jx=function(){var a=Pf(66,0);this.Co=[];this.Zs=a;this.od=Za()},lx=function(a){var b=kx;b.Co.push(a);b.Go||(b.Go=function(){for(var c=m(b.Co),d=c.next();!d.done;d=c.next()){var e=d.value;try{e()}catch(l){}}for(var f=m(b.od.values()),g=f.next();!g.done;g=f.next()){var h=void 0;(h=g.value.bc)==null||Jl(h)}b.od.clear()},ed(w,"pagehide",b.Go))},mx=function(a){var b=a.match(zk)[3]||null,c=(b?decodeURI(b):b)||"",d=Ck(a,"label")||"",e=Ck(a,"random")||"";return c+":"+yk(d)+":"+yk(e)}; -jx.prototype.Bg=function(a,b,c){var d=mx(a);if(!(this.od.has(d)||this.od.size>=this.Zs)){var e={};b&&b>0&&c&&(e.bc=new hx(c,b));this.od.set(d,e);var f;(f=e.bc)==null||ix(f)}};var Kl=function(a,b){var c=mx(b),d,e;(d=a.od.get(c))==null||(e=d.bc)==null||Jl(e);a.od.delete(c)};jx.prototype.getSize=function(){return this.od.size};var qx=function(a){this.H=1;this.H>0||(this.H=1);this.onSuccess=a.M.onSuccess},rx=function(a,b){return cc(function(){a.H--;if(Bb(a.onSuccess)&&a.H===0)a.onSuccess()},b>0?b:1)};var sx=function(a,b,c,d){hp.call(this,a,b,c);this.T=d};wa(sx,hp);sx.prototype.isSupported=function(a){return this.endpoint===68&&U(a,I.J.Ha)?!1:!0}; -sx.prototype.H=function(a,b,c){var d=nu(a);this.T&&oa(Object,"assign").call(Object,d,this.T);if(P(548)){var e=fi[F.D.xf];e&&(d[e]=this.endpoint)}this.endpoint!==68&&(delete d.gclaw,delete d.gclaw_src);var f=void 0;U(a,I.J.Ha)?(d.gcp=1,d.ct_cookie_present=1):this.endpoint===68&&(d.gcp=5,b.method instanceof cw&&(d.fmt=8,f=qd));var g="?"+mu(d);c(g,f?{Cc:f}:{})};var tx=new sx(9,["ad_storage","ad_user_data"],!0),ux=new sx(68,["ad_storage","ad_user_data"],!1); -function vx(a,b,c,d,e){e=e===void 0?0:e;if(d){var f=U(a,I.J.sb),g=b;b=new sx(g.endpoint,g.O,g.Z,{random:f+e,data:d})}return[{endpoint:b,method:c},{endpoint:b,method:dw}]}var wx=function(){};wa(wx,gw);wx.prototype.H=function(a){var b=iu(a);return vx(a,tx,U(a,I.J.Ha)?fw:zw,b==null?void 0:b[0])};wx.prototype.K=function(a){var b=iu(a),c=[];P(458)&&!U(a,I.J.Ha)&&c.push(vx(a,ux,fw,b==null?void 0:b[0]));if(b&&b.length>1)for(var d=U(a,I.J.Ha)?fw:zw,e=1;e0}),e=[].concat(za(d),["_","service_worker",b,"sw.js"]),f=m(e),g=f.next();!g.done;g=f.next())c=Jp(c,g.value);return c};function Lx(a){var b=ak(Wj.da.Xh),c=b==null?void 0:b[a];c||a!=="lite"||(c=b==null?void 0:b.full);return c}var Mx=function(a,b,c){var d=Lx("full");d?d.delegate(a,b,c):c({failureType:16})};function Nx(a,b,c,d,e){Mx({commandType:0,params:{url:a,method:1,templates:b,body:"",processResponse:!1,encryptionKeyString:e,soReferrer:w.location.href}},c,function(f){d(f.failureType,f.data)})};var Px=function(a){hp.call(this,a,["ad_user_data","ad_storage"],!1)};wa(Px,hp);Px.prototype.H=function(a,b,c){var d=this;Xv(a,function(e){var f=U(a,I.J.xj),g=function(){var n=mu(e);f&&b.method instanceof Ox&&(n+=f.Zo.join(""));c(n,{Cc:qd})};if(d.endpoint===21||d.endpoint===73){var h=Cj(b.Fc);h&&(e._uip=h)}if(f&&(oa(Object,"assign").call(Object,e,Bx(a,f)),!(b.method instanceof Ox))){var l;f.pe=(l=f.pe)!=null?l:17;f.po(function(n){oa(Object,"assign").call(Object,e,n);g()});return}g()})}; -Px.prototype.K=function(a){return hp.prototype.K.call(this,a).slice(0,-1)};var Qx=new Px(11),Rx=new Px(72),Sx=function(a,b,c){this.T=a;this.O=b;this.Z=c};wa(Sx,gw);Sx.prototype.H=function(a){var b=P(563)?[this.T,this.O]:P(141)?[this.T]:[this.O],c=b.flatMap(function(e){return(fw.isSupported()?[fw]:[ew,dw]).map(function(f){return{endpoint:e,method:f}})});if(this.Z){var d=U(a,I.J.xj);d&&c.unshift({endpoint:b[0],method:new Ox(d)})}return c}; -var Tx=new Sx(Qx,Rx,!0),Ux=new Px(21),Vx=new Px(73),Wx=new Sx(Ux,Vx,!1);var Xx=function(){var a=this;this.H=0;this.K=!1;P(462)&&Tk("fs",function(){return a.H>0&&a.H<5?String(a.H):void 0},!1)},Yx;function Zx(a,b){Yx||(Yx=new Xx);var c=Yx;P(462)&&el.H&&(b==="gtm.formSubmit"||b==="form_submit"&&Kf(45))&&(a===1||c.K)&&(c.K=!0,c.H=a,a!==5?Uk("fs"):Pk.H.fs=!1)};function $x(a,b,c,d){if(Eo()){var e=b.M;Lo({targetId:d||[b.target.destinationId],request:{url:a,parameterEncoding:2,endpoint:c},nb:{eventId:e.eventId,priorityId:e.priorityId},Oj:{eventId:U(b,I.J.tf),priorityId:U(b,I.J.uf)}})}};function ay(a,b,c,d){d=d===void 0?!1:d;var e=Cp(),f=Ap(e);if(f.url)if(d){var g=c(f.url);b!==g&&X(a,F.D.dg,g)}else{var h=f.url;b!==h&&X(a,F.D.dg,c(h))}}function by(a,b){var c=Object.keys(b).filter(function(d){return b[d]!=null}).map(function(d){return d+"="+b[d]}).join("&");return xk[a](void 0)+"?"+c}; -var cy=function(a,b){if(P(517)&&Kf(47)&&a===45)return tj()+"/g/d/ccm/collect?"+b.split("?")[1]+"&gap.1pfb=1"},fy=function(){var a=Mk(30,function(){return[]});if(a.length){for(var b={},c=m(a),d=c.next();!d.done;d=c.next()){var e=d.value,f=dy(e.ee,"apvc"),g=dy(e.ee,"tft"),h=dy(e.ee,"tfd"),l=dy(e.ee,"tid"),n=by(e.endpoint,e.ee),p=b[n]=b[n]||{Ik:[],bk:[]};p.bk.push(e);l?(p.Ik.push(l),p.te||(p.te=l)):p.Ik.push("");f==="1"&&(p.Er=!0);if(g||h)p.Ar=!0}a.length=0;for(var q=m(Object.keys(b)),r=q.next(),t={};!r.done;t= -{Jk:void 0},r=q.next()){var u=r.value,v=b[u];t.Jk=v.Ik;var x=t.Jk.filter(function(D){return function(H,G){return D.Jk.indexOf(H)===G}}(t)),y=x.filter(function(D){return!!D}),z=u+"&apvc="+(v.Er?"1":"0");y.length&&(z+="&tids="+y.join("~"));v.te&&(z+="&tid="+v.te);if(v.Ar){z+="&tft="+String(Qb());var C=vd();C!==void 0&&(z+="&tfd="+String(Math.round(C)))}ey(v.bk[0].event,z,v.bk[0].endpoint,x)}}},dy=function(a,b){var c=a[b];if(c!==void 0)return a[b]=void 0,c},ey=function(a,b,c,d){var e={destinationId:a.target.destinationId, -endpoint:c,eventId:a.M.eventId,priorityId:a.M.priorityId},f=function(l,n){var p=b+gy(l);$x(p,a,c,d);return n(p)};if(sd()){var g=function(){},h=cy(c,b);h!==void 0&&(g=function(){Ol(e,h+gy(8),void 0,{ff:!0},function(){},function(){})});f(8,function(l){Ol(e,l,void 0,{ff:!0},function(){},function(){cd(b+gy(3),function(){},g)})})}else f(5,function(l){return Ml(e,l)})||dd(b+gy(3))},gy=function(a){if(P(517))switch(a){case 8:case 5:case 3:return"&fmt="+a}return""},hy=function(a){return Yo(zp)&&!U(a,I.J.Tb)? -45:46},iy=function(a,b){var c=hy(a),d=function(){var f=by(c,b);ey(a,f,c,[b.tid])};if(typeof w.queueMicrotask!=="function")jv(dv.X.oj),d();else{var e=Mk(30,function(){return[]});if(e.length===0)try{w.queueMicrotask(fy)}catch(f){jv(dv.X.oj);d();return}b=oa(Object,"assign").call(Object,{},b);e.push({event:a,ee:b,endpoint:c})}}; -var jy={},ky=(jy[F.D.wa]="gcu",jy[F.D.Ob]="gclgb",jy[F.D.jb]="gclaw",jy[F.D.zf]="gad_source",jy[F.D.Af]="gad_source_src",jy[F.D.yd]="gclid",jy[F.D.Kl]="gclsrc",jy[F.D.Bf]="gbraid",jy[F.D.Ce]="wbraid",jy[F.D.zd]="auid",jy[F.D.Ll]="ae",jy[F.D.Ga]=null,jy[F.D.Nl]="rnd",jy[F.D.Nf]="ncl",jy[F.D.Of]="gcldc",jy[F.D.Fd]="dclid",jy[F.D.Rc]="edid",jy[F.D.qc]="en",jy[F.D.Ie]="gdpr",jy[F.D.Tc]="gdid",jy[F.D.Va]=null,jy[F.D.Je]="_ng",jy[F.D.Dh]="gpp_sid",jy[F.D.Eh]="gpp",jy[F.D.Wf]="_tu",jy[F.D.am]="gtm_up",jy[F.D.Ke]= -"frm",jy[F.D.Le]="lps",jy[F.D.Ti]="did",jy[F.D.gm]="navt",jy[F.D.Ca]="dl",jy[F.D.Za]="dr",jy[F.D.Ib]="dt",jy[F.D.qm]="scrsrc",jy[F.D.cg]="ga_uid",jy[F.D.Ne]="gdpr_consent",jy[F.D.Yi]="testonly",jy[F.D.Dq]="u_tz",jy[F.D.dg]="top",jy[F.D.eg]="tid",jy[F.D.ab]="uid",jy[F.D.ng]="us_privacy",jy[F.D.Zc]=null,jy[F.D.Xd]="npa",jy);function ly(a,b){if(b!=null&&b!==""){var c=b===!0?"1":b===!1?"0":encodeURIComponent(String(b));if(Wb(a,"_&"))return{key:a.substring(2),value:c};var d=ky[a];if(d!==null)return d?{key:d,value:c}:{key:Db(b)?"epn."+a:"ep."+a,value:c}}}; -var my=function(a){for(var b={},c=m(ou(a)),d=c.next();!d.done;d=c.next()){var e=d.value,f=ly(e,ip(a,e));f&&(!U(a,I.J.Ve)||e!==F.D.yd&&e!==F.D.Fd&&e!==F.D.Ce&&e!==F.D.Bf||(f.value="0"),P(504)&&(e===F.D.Hd?f.key="evnid":e===F.D.Id&&(f.key="excid")),b[f.key]=f.value)}b.gtm=eu({ac:U(a,I.J.Jb),ah:a.M.isGtmEvent,cf:U(a,I.J.yc)});Ut()&&(b.gcs=Vt());b.gcd=Zt(a.M);bu()&&(b.dma_cps=$t());b.dma=au();wt(Ft())&&(b.tcfd=cu());var g=xp(a);g&&(b.tag_exp=g);if(U(a,I.J.Mk)){b.tft=String(Qb());var h=vd();h!==void 0&& -(b.tfd=String(Math.round(h)))}b.apve="1";b.apvf=sd()?"f":"nf";Rm.H[zm.fa.Xa]!==ym.La.Re||Rm.K[zm.fa.Xa].isConsentGranted()||(b.limited_ads="1");var l=U(a,I.J.wi);P(474)&&l!=null&&l!==""&&(b._gsid=l);it(a,b,function(n,p){b[n]=encodeURIComponent(p)});return b}; -var ny=function(a,b){var c={},d=function(e){b[e]!=null&&b[e]!==""&&(c[e]=b[e])};P(474)&&d("_gsid");P(475)&&ip(a,F.D.Nf)!=="1"&&(d("gclid"),d("dclid"),d("gclsrc"),d("auid"));if(Object.keys(c).length)return d("gtm"),by(69,c)},qy=function(a,b){if(oy(a)){var c=Wc()||Tc()?58:57,d=by(c,py(b));$x(d,a,c);Ol({destinationId:a.target.destinationId,endpoint:c,eventId:a.M.eventId,priorityId:a.M.priorityId},d,void 0,{ff:!0,method:"GET"},function(){},function(){dd(d+"&img=1")})}},oy=function(a){return U(a,I.J.ue)&& -ip(a,F.D.Le)==="1"&&ip(a,F.D.Nf)!=="1"&&Yo(zp)&&(sd()||P(428))?!0:!1},py=function(a){for(var b={},c=m(Object.keys(a)),d=c.next();!d.done;d=c.next()){var e=d.value,f=a[e];e==="dl"?b.url=f:e==="dr"?b.ref=f:e==="uid"?b.userId=f:b[e]=f}return b},ry=function(a){if(U(a,I.J.ba)===T.U.Ka){var b=my(a);qy(a,b);if((U(a,I.J.Zd)||oy(a))&&(P(474)||P(475))&&Yo(zp)){var c=ny(a,b);c&&($x(c,a,69),Ol({destinationId:a.target.destinationId,endpoint:69,eventId:a.M.eventId,priorityId:a.M.priorityId},c))}var d=Bb(a.M.onSuccess)? -a.M.onSuccess:Ab;iy(a,b);d()}};var sy={};sy.W=$p.W;var ty={Yu:"L",mr:"S",sv:"Y",au:"B",vu:"E",Uu:"I",nv:"TC",Cu:"HTC",wu:"F",Tu:"C"},uy={mr:"S",tu:"V",ju:"E",mv:"tag"},vy={},wy=(vy[sy.W.Dj]="6",vy[sy.W.Ej]="5",vy[sy.W.Cj]="7",vy);function xy(a){var b=E(5),c=Number(a.eventId),d=Number(a.tagId);return(Wb(b,"GTM-")?b:"GTM-"+b)+":"+(Db(c)?c+":":"")+(Db(d)?d+":":"")+a.stage};function yy(){var a=xd();return!!(a&&a.mark instanceof Function&&a.measure instanceof Function&&a.clearMeasures instanceof Function&&a.clearMarks instanceof Function)};var zy=function(){this.H={}},Ay;function By(){Ay||(Ay=new zy);return Ay}function Cy(a){var b=By(),c=xy(a);return b.H[c]}function Dy(a,b){var c;a:{var d=By();if(yy()){var e=xy(a),f,g;if(f=(g=xd())==null?void 0:g.mark(e,b)){c=d.H[e]=f;break a}}c=void 0}return c};function Ey(a,b){if(yy()){a.entry=xy(a);var c=oa(Object,"assign").call(Object,{},a);c.stage=b;delete c.sent;var d=Cy(b===sy.W.ed?{stage:sy.W.ed}:c),e=Cy(a);if(d&&e&&!(d.startTime>e.startTime)){c.stage=b+":"+a.stage;var f=xy(c),g={start:d.name,end:e.name},h,l;return(l=(h=xd())==null?void 0:h.measure(f,g))==null?void 0:l.duration}}};var Gy=function(){var a=5;Fy.cp>0&&(a=Fy.cp);this.K=a;this.H=0;this.O=[]},Hy=function(a){return a.H=2022&&My(b))},Oy;function Qy(a){Ry();Jy(Oy,a)}function Sy(){var a;a=a===void 0?!1:a;Ry();var b=a,c=Oy;b=b===void 0?!1:b;if(el.K&&Lk(26)){var d=Ly(c,!0,!0);b?Ll({destinationId:E(5),endpoint:56,eventId:c.H},d):Nl({destinationId:E(5),endpoint:56,eventId:c.H},d)}}function Ry(){Oy||(Oy=new Ky)};function Ty(){function a(c,d){var e=zb(ub[d]||[]);e&&b.push([c,e])}var b=[];a("u","GTM");a("ut","TAGGING");a("h","HEALTH");return b};var Uy="https://"+E(21),Vy=function(){this.O=!1;this.T=[];this.Z=[];this.H={TC:0,HTC:0};this.K={}},Wy=function(a,b,c,d){a.K[b]||(a.K[b]={});a.K[b][c]=d},Zy=function(a){var b="",c="",d=Xy();Db(d)&&(a.H.I=Math.floor(d));c=Yy(a.H,ty).toString();for(var e=m(Object.keys(a.K)),f=e.next();!f.done;f=e.next()){var g=f.value,h=a.K[g].name,l="",n=Yy(a.K[g],uy);n&&(l=h+"."+n.toString(),b+="~"+l)}var p="~AWCT"+a.T.join("."),q="~GA"+a.Z.join("."),r="&ccid="+em().toString()+"&cid="+E(5).toString()+"&l="+c+b+(a.T.length? -p:"")+(a.Z.length?q:"");if(P(214)){var t,u=(t=xd())==null?void 0:t.getEntriesByName(Qc).map(function(v){return String(v.duration)}).join(".");u&&(r+="~SS"+u)}return r},$y=function(a,b){if(!b.stage||a.O||!yy()||Cy(b))return!1;var c,d=(c=xd())==null?void 0:c.timeOrigin;if(!Db(d))a.O=!0;else if(Db(Lk(25))&&!Cy({stage:sy.W.ed})&&!a.O&&yy())try{var e=Number(Lk(25));Dy({stage:sy.W.ed},{startTime:Math.max(e-d,0)});Dy({stage:sy.W.qj},{startTime:0});var f=Ey({stage:sy.W.ed},sy.W.qj);f&&(a.H.L=Math.floor(f)); -var g=fq.length,h=[];if(g<=2)h=fq;else{var l=Gb(0,g-1);h.push(fq[l]);var n=0,p;do p=Gb(0,g-1),n++;while(l===p&&n<30);h.push(fq[p])}aq=h}catch(q){a.O=!0}if(a.O)return!1;try{if(!Dy(b))return!1}catch(q){return a.O=!0,!1}return!0},az=function(a,b,c){if($y(a,b))try{var d=Ey(b,c);if(d)return Math.floor(d)}catch(e){a.O=!0}},cz=function(){var a=bz();$y(a,{stage:sy.W.yi})},dz=function(){var a=bz(),b=az(a,{stage:sy.W.ml},sy.W.yi);b!==void 0&&(a.H.S=b)},ez=function(){var a=bz();$y(a,{stage:sy.W.zi})},fz=function(a, -b){var c=bz();$y(c,{stage:sy.W.Lh,eventId:a});Wy(c,a,"name",Wb(b,"gtm.")?b:"*")},gz=function(a){var b=bz(),c=az(b,{stage:sy.W.Fm,eventId:a},sy.W.Lh);c!==void 0&&Wy(b,a,"S",c)},iz=function(a,b){var c=bz(),d=az(c,{stage:sy.W.Em,eventId:a},sy.W.Lh);d!==void 0&&Wy(c,a,"E",d);if(b==="gtm.load"){var e=az(c,{stage:sy.W.kl},sy.W.ih);e!==void 0&&(c.H.E=e);Um(Xm(zm.fa.Ub),function(){if(!c.O&&yy()&&E(5)){var f=hz();f!==void 0&&(c.H.F=Math.floor(f));try{for(var g,h=Ty({eventId:0,rf:!1}),l=[],n=m(h),p=n.next();!p.done;p= -n.next()){var q=m(p.value),r=q.next().value,t=q.next().value;l.push("&"+r+"="+t)}var u=xp();g=[Bj(Uy),"/a?v=3&t=l","&pid="+Gb().toString(),"&rv="+E(14),u?"&tag_exp="+u:"",l.join("")].join("");for(var v=eu(),x=[],y=m(Object.keys(bq)),z=y.next();!z.done;z=y.next()){var C=z.value,D=Math.floor(bq[C]),H=cq[C];D!==void 0&&H!==void 0&&x.push(""+C+"."+H+"."+D)}var G=x.join("~"),J=[g,">m=",v,G?"&cl="+G:"",Zy(c)].join("");if(J.length>2022){var S=Math.max(J.lastIndexOf(".TS",2022),J.lastIndexOf("~",2022)); -J=J.slice(0,S)}Nl({destinationId:E(5),endpoint:56},J)}catch(V){}}})}},jz;function bz(){jz||(jz=new Vy);return jz}function Xy(){try{var a;return((a=xd())==null?void 0:a.getEntriesByType("navigation")[0]).domInteractive}catch(b){}}function Yy(a,b){return Object.keys(b).map(function(c){return b[c]}).filter(function(c){return a[c]!==void 0}).map(function(c){return(""+(c==="tag"?"":c)).concat(a[c].toString())}).join(".")} -function kz(a){var b=bz(),c=az(b,{stage:sy.W.Om,eventId:a},sy.W.ed);c!==void 0&&b.Z.push(c)}function lz(a){var b=bz(),c=az(b,{stage:sy.W.Ok,eventId:a},sy.W.ed);c!==void 0&&b.T.push(c)}function mz(a){var b=bz();$y(b,{stage:sy.W.bj,eventId:a})}function nz(a){var b=bz(),c=az(b,{stage:sy.W.Dm,eventId:a},sy.W.bj);c!==void 0&&Wy(b,a,"V",c)} -function hz(){try{var a,b;return(b=(a=xd())==null?void 0:a.getEntriesByType("paint").find(function(c){return c.name==="first-contentful-paint"}))==null?void 0:b.startTime}catch(c){}}function oz(a,b){var c=bz();$y(c,{stage:sy.W.Fj,eventId:a.id,tagId:Number(b[If.Gj])})} -function pz(a,b,c){var d=bz(),e=cl(b),f=Number(b[If.Gj]),g=az(d,{stage:c,eventId:a.id,tagId:f},sy.W.Fj);if(g!==void 0&&d.K[a.id]){var h=d.K[a.id].tag||"",l,n=(l=wy[c])!=null?l:"1",p=new RegExp("TS\\d"+e+".TI"+f),q="TS"+n+e+".TI"+f+".TE"+g;h.search(p)>=0?n!=="1"&&Wy(d,a.id,"tag",h.replace(p,q.replace(".TE"+g,""))):(Wy(d,a.id,"tag",(h?h+".":"")+q),e==="html"&&(d.H.HTC+=1),d.H.TC+=1)}};function qz(a,b,c,d,e,f){var g=c.slice(),h;d==null||(h=d.Bv)==null||h.call(d,a,b,c,e);var l=Ax(),n=l.promise,p=l.resolve,q=[],r=function(){p(q);var u;d==null||(u=d.ft)==null||u.call(d,a,b,c,e,q)},t=function(){var u=g.shift();u?u.method.isSupported()?rz(a,b,u.endpoint,d,q,u.method,e,f,t,r):t():r()};t();return n} -function rz(a,b,c,d,e,f,g,h,l,n){var p=c.K(a),q={Ek:b,endpoint:c,isPrimary:g,pb:void 0,Ak:f,Ct:{}},r=!1,t=function(z,C){if(r)R(187);else if(r=!0,!u){var D=C||{},H=D.body,G=D.Cc,J=D.Xe;C=Object.freeze(oa(Object,"assign").call(Object,{},H?{body:H}:{},G?{Cc:G}:{},J?{Xe:J}:{}));if(H&&!f.H())x(),l();else{var S=sz(z),V=p[0]==="/"?""+p+S:"https://"+p+S;q.pb=V;q.Ct=C;var da;d==null||(da=d.ht)==null||da.call(d,a,oa(Object,"assign").call(Object,{},q));var pa=function(na,ba){x();if(q.status!==void 0)return R(192), -!1;q.status=na;e.push(q);var ia;d==null||(ia=d.Eo)==null||ia.call(d,a,oa(Object,"assign").call(Object,{},q),ba);return!0},ka={nf:{destinationId:a.target.destinationId,endpoint:c.endpoint,eventId:a.M.eventId,priorityId:a.M.priorityId},ld:function(){pa(2)&&l()},onFailure:function(){pa(3)&&l()},ke:function(na){pa(na.status===0?1:na.ok?0:3,na)&&n()},hf:function(){pa(1)&&n()}};tz(c,a,V,H);f.sendRequest(ka,V,oa(Object,"assign").call(Object,{},H&&{body:H},G&&{Cc:G},J&&{Xe:J}))}}},u=!1,v,x=function(){v!== -void 0&&(w.clearTimeout(v),v=void 0)};P(574)&&(v=w.setTimeout(function(){v=void 0;u=!0;if(q.status===void 0){q.status=4;q.pb===void 0&&(q.pb="[failed to build] "+p);e.push(q);var z;d==null||(z=d.Eo)==null||z.call(d,a,oa(Object,"assign").call(Object,{},q),void 0);l()}},5E3));var y={Fc:p,method:f,Fv:e,isPrimary:g,Mt:h};try{c.H(a,y,t)}catch(z){x(),R(188),l()}} -function tz(a,b,c,d){a.Z&&Lo({targetId:b.target.destinationId,request:oa(Object,"assign").call(Object,{},{url:c,parameterEncoding:a.parameterEncoding,endpoint:a.endpoint},d?{postBody:d}:{}),nb:{eventId:b.M.eventId,priorityId:b.M.priorityId},Oj:{eventId:U(b,I.J.tf),priorityId:U(b,I.J.uf)}})}function sz(a){return a&&a!=="?"?a[0]!=="?"?"?".concat(a):a:""};function uz(a,b,c,d,e){var f;e==null||(f=e.Cv)==null||f.call(e,a,b);if(!c.length){var g;e==null||(g=e.it)==null||g.call(e,a,b,[]);return Promise.resolve([])}var h=[],l={Ek:b,yk:c,vk:d};h.push(qz(a,b,c,e,!0,l));for(var n=m(d),p=n.next();!p.done;p=n.next())h.push(qz(a,b,p.value,e,!1,l));return zx(h).then(function(q){for(var r=[],t=m(q),u=t.next();!u.done;u=t.next())r.push.apply(r,za(u.value));var v;e==null||(v=e.it)==null||v.call(e,a,b,r);return r})};function vz(a,b){var c=Qa.apply(2,arguments),d;b==null||(d=b.Dv)==null||d.call(b,a,c);for(var e=[],f=m(c),g=f.next();!g.done;g=f.next())e.push(wz(a,g.value));for(var h=[],l=m(e),n=l.next();!n.done;n=l.next()){var p=n.value;h.push(uz(a,p.Ek,p.yk,p.vk,b))}zx(h).then(function(q){for(var r=[],t=m(q),u=t.next();!u.done;u=t.next())r.push.apply(r,za(u.value));var v;b==null||(v=b.et)==null||v.call(b,a,c,r)})} -function wz(a,b){var c=function(f){return f.method.isSupported()&&f.endpoint.isSupported(a)&&Yo(f.endpoint.O)},d=(b.H(a)||[]).filter(c),e=[];d.length&&(e=(b.K(a)||[]).map(function(f){return f.filter(c)}).filter(function(f){return f.length>0}));return{Ek:b,yk:d,vk:e}};var Fz={pj:{op:"1",Gq:"2",kr:"3"}}; -var Gz={},Hz=Object.freeze((Gz[F.D.mh]=1,Gz[F.D.nh]=1,Gz[F.D.wd]=1,Gz[F.D.xd]=1,Gz[F.D.Nc]=1,Gz[F.D.Di]=1,Gz[F.D.Ei]=1,Gz[F.D.Ml]=1,Gz[F.D.ph]=1,Gz[F.D.Cf]=1,Gz[F.D.Df]=1,Gz[F.D.Ef]=1,Gz[F.D.Ga]=1,Gz[F.D.Ff]=1,Gz[F.D.Bd]=1,Gz[F.D.nc]=1,Gz[F.D.Nf]=1,Gz[F.D.Hb]=1,Gz[F.D.zb]=1,Gz[F.D.Pb]=1,Gz[F.D.lb]=1,Gz[F.D.Ya]=1,Gz[F.D.Ee]=1,Gz[F.D.sh]=1,Gz[F.D.th]=1,Gz[F.D.uh]=1,Gz[F.D.Ua]=1,Gz[F.D.Yp]=1,Gz[F.D.cq]=1,Gz[F.D.Ge]=1,Gz[F.D.Oi]=1,Gz[F.D.Rf]=1,Gz[F.D.Va]=1,Gz[F.D.Uc]=1,Gz[F.D.Vc]=1,Gz[F.D.rb]=1,Gz[F.D.Jd]= -1,Gz[F.D.Kd]=1,Gz[F.D.Ld]=1,Gz[F.D.Me]=1,Gz[F.D.Ca]=1,Gz[F.D.Za]=1,Gz[F.D.im]=1,Gz[F.D.jm]=1,Gz[F.D.km]=1,Gz[F.D.lm]=1,Gz[F.D.Rb]=1,Gz[F.D.Md]=1,Gz[F.D.Nd]=1,Gz[F.D.Od]=1,Gz[F.D.Pd]=1,Gz[F.D.eg]=1,Gz[F.D.Oa]=1,Gz[F.D.Yc]=1,Gz[F.D.Qd]=1,Gz[F.D.uc]=1,Gz[F.D.vc]=1,Gz[F.D.ab]=1,Gz[F.D.Pa]=1,Gz)),Iz={},Jz=(Iz[F.D.Qc]=1,Iz[F.D.Zp]=1,Iz[F.D.Fe]=1,Iz[F.D.Ci]=1,Iz.oref=1,Iz);var Kz,Lz; -function Mz(a,b){var c=a[If.Sb],d=b&&b.event;if(!c)throw Error("Error: No function name given for function call.");var e=Lz[c],f={},g;for(g in a)a.hasOwnProperty(g)&&(Wb(g,"vtp_")?f[e!==void 0?g:g.substring(4)]=a[g]:$f(15)&&g===If.Qq.toString()&&(f[e!==void 0?"vtp_gtmGeneratedTaggingMetadata":g]=a[g]));Kf(61)&&e&&(f.vtp_extraExperimentIds=!0);e&&d&&d.cachedModelValues&&(f.vtp_gtmCachedValues=d.cachedModelValues);b&&e&&(f.vtp_gtmEntityIndex=b.index,f.vtp_gtmEntityName=b.name);return e!==void 0?e(f): -Kz(c,f,b)}var Oz=function(){var a=Nz;P(585)&&el.H&&!a.H&&(a.H=!0,Tk("abl","1"),en())},Nz=new function(){this.H=!1};var Pz=function(a,b,c,d){this.H=a;this.index=b;this.tags=c;this.macros=d;this.name=String(this.H[If.dn]||"")}; -Pz.prototype.evaluate=function(a,b){if(!b[this.index]&&!a.isBlocked(this.H)){b[this.index]=!0;this.H[If.Al.toString()]&&Oz();var c=this.name,d;try{var e={},f;for(f in this.H)this.H.hasOwnProperty(f)&&(e[f]=uo(this.H[f],a,this.tags,this.macros,b));e.vtp_gtmEventId=a.id;a.priorityId&&(e.vtp_gtmPriorityId=a.priorityId);var g=d=Mz(e,{event:a,index:this.index,type:2,name:c});e[If.ol]&&typeof g==="string"&&(g=e[If.ol]===1?g.toLowerCase():g.toUpperCase());e.hasOwnProperty(If.jh)&&(g=$f(19)?e[If.jh]===1? -Xf(g,"PERIOD"):e[If.jh]===2?Xf(g,"COMMA"):Xf(g,"AUTOMATIC"):e[If.jh]===1?Xf(g,"PERIOD"):Xf(g,"COMMA"));e.hasOwnProperty(If.ql)&&g===null&&(g=e[If.ql]);e.hasOwnProperty(If.sl)&&g===void 0&&(g=e[If.sl]);e.hasOwnProperty(If.qp)&&(g=Mb(g));e.hasOwnProperty(If.rl)&&g===!0&&(g=e[If.rl]);e.hasOwnProperty(If.pl)&&g===!1&&(g=e[If.pl]);d=g}catch(h){a.logMacroError&&a.logMacroError(h,Number(this.index),c),d=!1}b[this.index]=!1;return d}};Pz.prototype.Lg=function(){return oa(Object,"assign").call(Object,{},this.H)};var Qz=function(a,b,c){this.H=a;this.tags=b;this.macros=c};Qz.prototype.evaluate=function(a,b){try{for(var c={},d=m(Object.keys(this.H)),e=d.next();!e.done;e=d.next()){var f=e.value;c[f]=f==="function"?this.H[f]:uo(this.H[f],a,this.tags,this.macros,b)}return so(c)}catch(g){JSON.stringify(this.H)}return 2};Qz.prototype.Lg=function(){return oa(Object,"assign").call(Object,{},this.H)};var Rz=function(a,b){this.index=b;this.O=[];this.T=[];this.K=[];this.H=[];this.name="";for(var c=m(a),d=c.next();!d.done;d=c.next()){var e=m(d.value),f=e.next().value,g=ya(e),h=f,l=g;h==="if"?this.O=l:h==="unless"?this.T=l:h==="add"?this.K=l:h==="block"?this.H=l:h==="ruleName"&&(this.name=l[0])}}; -Rz.prototype.evaluate=function(a,b){var c=Sz(this,b),d=[],e=[];c?(d.push.apply(d,za(this.K)),e.push.apply(e,za(this.H))):c===null&&e.push.apply(e,za(this.H));return{firingTags:d,blockingTags:e}}; -var Sz=function(a,b){for(var c=m(a.O),d=c.next();!d.done;d=c.next()){var e=b(d.value);if(e===0)return!1;if(e===2)return null}for(var f=m(a.T),g=f.next();!g.done;g=f.next()){var h=b(g.value);if(h===2)return null;if(h===1)return!1}return!0};Rz.prototype.getName=function(){return this.name};var Tz=function(a,b,c,d){this.Ia=a;this.index=b;this.tags=c;this.macros=d;this.N=String(this.Ia[If.Sb]);this.name=String(this.Ia[If.dn]||"");this.tagId=Number(this.Ia[If.Gj])}; -Tz.prototype.evaluate=function(a,b,c){c=c===void 0?{}:c;var d,e=c;e=e===void 0?{}:e;var f={},g;for(g in this.Ia)this.Ia.hasOwnProperty(g)&&(f[g]=uo(this.Ia[g],a,this.tags,this.macros,[]));d=oa(Object,"assign").call(Object,{},f,e);d.vtp_gtmTagId=this.tagId;this.Ia[If.Al.toString()]&&Oz();Mz(d,{event:a,index:this.index,type:1,name:this.name})};Tz.prototype.Lg=function(){return oa(Object,"assign").call(Object,{},this.Ia)}; -var Uz=function(a,b){if(a.Ia[If.Dn])return uo(a.Ia[If.Dn],b,a.tags,a.macros,[])},Vz=function(a,b){if(a.Ia[If.On])return uo(a.Ia[If.On],b,a.tags,a.macros,[])},Wz=function(a,b){var c=a.Ia[If.pp];if(c)return uo(c,b,a.tags,a.macros,[])};Tz.prototype.getMetadata=function(a){return uo(this.Ia[If.METADATA],a,this.tags,this.macros,[])};Tz.prototype.getName=function(){return this.name};var Xz=function(){this.macros=[];this.rules=[];this.predicates=[];this.tags=[];this.Gk=[]};Xz.prototype.getRules=function(){return this.rules};var Yz=new Xz;function Zz(a,b,c,d){var e=ad(),f;if(e===1)a:{var g=E(3);g=g.toLowerCase();for(var h="https://"+g,l="http://"+g,n=1,p=A.getElementsByTagName("script"),q=0;q0&&g.push(["bcs",c.join(".")]);e.length>0&&g.push(["bet",e.join(".")]);return g})},aA;function bA(){aA||(aA=new $z)};function cA(a,b,c,d,e){if(!nm(a)){d.loadExperiments=Ui();rm(a,d,e);var f=dA(a),g=function(){Yl().container[a]&&(Yl().container[a].state=3);eA()},h={destinationId:a,endpoint:0};if(sj()){var l=tj(),n=l+"/"+fA(f,a);Pl(h,n,void 0,function(){gA(a,n,l+"/"+f,h,g)})}else{var p=Wb(a,"GTM-"),q=zj(),r=c?"/gtag/js":"/gtm.js",t=hA(b,r+f,a);if(!t){var u=E(3)+r;q&&Qc&&p&&(u=Qc.replace(/^(?:https?:\/\/)?/i,"").split(/[?#]/)[0]);t=Zz("https://","http://",u+f)}Pl(h,t,void 0,g)}}} -function eA(){um()||Jb(vm(),function(a,b){iA(a,b.transportUrl,b.context);R(92)})}function iA(a,b,c,d){if(!pm(a))if(c.loadExperiments||(c.loadExperiments=Ui()),um())tm(a,b,c,d);else{sm(a,c,d);var e={destinationId:a,endpoint:0};if(sj()){var f=tj(),g="gtd"+dA(a,!0),h=f+"/"+fA(g,a);Pl(e,h,void 0,function(){gA(a,h,f+"/"+g,e)})}else{var l="/gtag/destination"+dA(a,!0),n=hA(b,l,a);n||(n=Zz("https://","http://",E(3)+l));Pl(e,n)}}} -function gA(a,b,c,d,e){if(P(413)){bA();var f=aA;if(el.K){var g=w.performance,h=-1;if(g&&g.getEntriesByType){var l=nj(b).href,n=g.getEntriesByName(l).pop();if(!n)for(var p=g.getEntriesByType("resource"),q=0;q=0&&R(2);var e=d&&Vb(Nb(d),tA),f={};return function(g){var h=g&&g[If.Sb];if(!h||typeof h!=="string")return!0;h=h.replace(/^_*/,"");if(f[h]!==void 0)return f[h];var l=Mk(27,function(){return{}})[h]||[],n=!0;a&&(n=n&&wA(h,l,c));var p=!1;d&&(p=xA(h,l,e));var q=!n||p;!q&&(l.indexOf("sandboxedScripts")===-1||c&&c.indexOf("sandboxedScripts")!==-1?0:Hb(e,uA))&&(q=!0);return f[h]=q}} -function wA(a,b,c){if(c.indexOf(a)<0)if(b&&b.length>0)for(var d=0;d=0;if(d)return d;var e=Hb(c,b||[]);e&&R(10);return e};function yA(a){for(var b=[],c=[],d=zA(a),e=m(Yz.getRules()),f=e.next();!f.done;f=e.next()){for(var g=f.value.evaluate(a,d),h=g.firingTags,l=g.blockingTags,n=0;n=0)&&c.push(e.listener)});return c};function DA(a,b,c){return{entityType:a,indexInOriginContainer:b,nameInOriginContainer:c,originContainerId:E(5),originCId:em()}};function EA(a,b){if(data.entities){var c=data.entities[a];if(c)return c[b]}};var GA=function(a,b){this.H=!1;this.T=[];this.eventData={tags:[]};this.Z=!1;this.K=this.O=0;FA(this,a,b)},HA=function(a,b,c,d){if(Zi.hasOwnProperty(b)||b==="__zone")return-1;var e={};Id(d)&&(e=Jd(d,e));e.id=c;e.status="timeout";return a.eventData.tags.push(e)-1},IA=function(a,b,c,d){var e=a.eventData.tags[b];e&&(e.status=c,e.executionTime=d)},JA=function(a){if(!a.H){for(var b=a.T,c=0;c=a.O&&JA(a)})},LA=function(a){a.Z=!0;a.K>=a.O&&JA(a)};function MA(){return w[NA()]} -function NA(){return w.GoogleAnalyticsObject||"ga"}var QA=new function(){this.H={}};function RA(){a:{var a=E(5);}} -function SA(a,b){return function(){var c=MA(),d=c&&c.getByName&&c.getByName(a);if(d){var e=d.get("sendHitTask");d.set("sendHitTask",function(f){var g=f.get("hitPayload"),h=f.get("hitCallback"),l=g.indexOf("&tid="+b)<0;l&&(f.set("hitPayload",g.replace(/&tid=UA-[0-9]+-[0-9]+/,"&tid="+b),!0),f.set("hitCallback",void 0,!0));e(f);l&&(f.set("hitPayload",g,!0),f.set("hitCallback",h,!0),f.set("_x_19",void 0,!0),e(f))})}}};var VA=["es","1"],WA=function(){var a=this;this.eventData={};this.H={};Qy(function(b){var c;var d=b.eventId,e=b.rf;if(a.eventData[d]){var f=[];a.H[d]||f.push(VA);f.push.apply(f,za(a.eventData[d]));e&&(a.H[d]=!0);c=f}else c=[];return c})},XA;function YA(a,b){var c;if((c=XA)!=null&&el.K){var d=c.eventData,e;e=b.match(/^(gtm|gtag)\./)?encodeURIComponent(b):"*";d[a]=[["e",e],["eid",String(a)]];Ry();Py(a)}};var ZA=function(){var a=this;this.H={};this.K={};Qy(function(b){var c=b.eventId,d=b.rf,e=[],f=a.H[c]||[];f.length&&e.push(["tr",f.join(".")]);var g=a.K[c]||[];g.length&&e.push(["ti",g.join(".")]);d&&(delete a.H[c],delete a.K[c]);return e})},$A; -function aB(a,b,c){$A||($A=new ZA);var d=$A;if(el.K&&b){var e=cl(b);d.H[a]=d.H[a]||[];d.H[a].push(c+e);var f=b[If.Sb];if(!f)throw Error("Error: No function name given for function call.");var g=(Lz[f]?"1":"2")+e;d.K[a]=d.K[a]||[];d.K[a].push(g);Ry();Py(a)}};function bB(a,b,c){c=c===void 0?!1:c;cB().addRestriction(0,a,b,c)}function dB(){var a=em();return cB().getRestrictions(0,a)}function eB(a,b,c){c=c===void 0?!1:c;cB().addRestriction(1,a,b,c)}function fB(){var a=em();return cB().getRestrictions(1,a)}var gB=function(){this.container={};this.H={}},hB=function(a,b){var c=a.container[b];c||(c={_entity:{internal:[],external:[]},_event:{internal:[],external:[]}},a.container[b]=c);return c}; -gB.prototype.addRestriction=function(a,b,c,d){d=d===void 0?!1:d;if(!d||!this.H[b]){var e=hB(this,b);a===0?d?e._entity.external.push(c):e._entity.internal.push(c):a===1&&(d?e._event.external.push(c):e._event.internal.push(c))}}; -gB.prototype.getRestrictions=function(a,b){var c=hB(this,b);if(a===0){var d,e;return[].concat(za((c==null?void 0:(d=c._entity)==null?void 0:d.internal)||[]),za((c==null?void 0:(e=c._entity)==null?void 0:e.external)||[]))}if(a===1){var f,g;return[].concat(za((c==null?void 0:(f=c._event)==null?void 0:f.internal)||[]),za((c==null?void 0:(g=c._event)==null?void 0:g.external)||[]))}return[]}; -gB.prototype.getExternalRestrictions=function(a,b){var c=hB(this,b),d,e;return a===0?(c==null?void 0:(d=c._entity)==null?void 0:d.external)||[]:(c==null?void 0:(e=c._event)==null?void 0:e.external)||[]};gB.prototype.removeExternalRestrictions=function(a){var b=hB(this,a);b._event&&(b._event.external=[]);b._entity&&(b._entity.external=[]);this.H[a]=!0};function cB(){return $n("r",function(){return new gB})};function iB(a,b,c,d){var e=Yz.tags[a],f=jB(a,b,c,d);if(!f)return null;var g=Uz(e,c);if(g&&g.length){var h=g[0];f=iB(h.index,{onSuccess:f,onFailure:h.lo===1?b.terminate:f,terminate:b.terminate},c,d)}return f} -function jB(a,b,c,d){function e(){function y(){Vj(3);var S=Qb()-J;DA(1,a,f.getName());aB(c.id,g,"7");IA(c.gd,D,"exception",S);fl()&&pz(c,g,sy.W.Cj);H||(H=!0,l())}if(f.Ia[If.Zq])l();else{var z=Wz(f,c);if(z!=null)for(var C=0;C0}; -function rB(a,b){if(!BA)return!1;var c=a["gtm.triggers"]&&String(a["gtm.triggers"]),d=CA(a.event,c?String(c).split(","):[]);if(!d.length)return!1;for(var e=0;ee?1:dh?1:g0?2:1,g,h,l=(c==null?void 0:(h=c.originatingEntity)==null?void 0:h.originContainerId)||"";g=l?Wb(l,"GTM-")?3:2:1;if(!a)d.H={type:f,source:g,params:b};else if(d.H){R(184);var n=!1;d.H.source===g||d.H.source!==3&&g!==3||(Tk("idcs","1"),n=!0);d.H.type!==2&&f!==2||R(186);var p;if(p=d.H.type===2&&f===2)a:{var q=d.H.params,r=Object.keys(q),t=Object.keys(b);if(r.length!==t.length)p=!0;else{for(var u=m(r),v=u.next();!v.done;v= -u.next()){var x=v.value;if(!b.hasOwnProperty(x)||q[x]!==b[x]){p=!0;break a}}p=!1}}p&&(Tk("idcc","1"),n=!0);n&&(en(),d.H.ds=!0)}}},OB=new function(){this.H=void 0};var RB=function(a){var b=QB;(!el.H||Wb(E(5),"GTM-")?0:a===void 0)&&b.H===0&&(Tk("mcc","1"),b.H=1)},QB=new function(){var a=this;this.H=0;Tk("ncc",function(){if(Kf(45)&&a.H!==2)return"1"})};var SB=/^(?:AW|DC|G|GF|GT|HA|MC|UA)$/,TB=/\s/; -function UB(a,b){if(Cb(a)){a=Ob(a);var c=a.indexOf("-");if(!(c<0)){var d=a.substring(0,c);if(SB.test(d)){var e=a.substring(c+1),f;if(b){var g=function(n){var p=n.indexOf("/");return p<0?[n]:[n.substring(0,p),n.substring(p+1)]};f=g(e);if(d==="DC"&&f.length===2){var h=g(f[1]);h.length===2&&(f[1]=h[0],f.push(h[1]))}}else{f=e.split("/");for(var l=0;l0&&(Uk("tdc",!0),a.K=w.setTimeout(function(){en();a.H={};a.K=void 0},a.T))}}; -aC.prototype.bind=function(){var a=this;Tk("tdc",function(){a.K&&(w.clearTimeout(a.K),a.K=void 0);var b=[],c;for(c in a.H)a.H.hasOwnProperty(c)&&b.push(c+"*"+a.H[c].join("."));return b.length?b.join("!"):void 0},!1)}; -var cC=function(a,b){var c={},d;for(d in b)b.hasOwnProperty(d)&&(c[d]=!0);for(var e in a)a.hasOwnProperty(e)&&(c[e]=!0);return c},dC=function(a,b,c,d,e){d=d===void 0?{}:d;e=e===void 0?"":e;if(b===c)return[];var f=function(t,u){var v;Gd(u)==="object"?v=u[t]:Gd(u)==="array"&&(v=u[t]);return v===void 0?$B[t]:v},g=cC(b,c),h;for(h in g)if(g.hasOwnProperty(h)){var l=(e?e+".":"")+h,n=f(h,b),p=f(h,c),q=Gd(n)==="object"||Gd(n)==="array",r=Gd(p)==="object"||Gd(p)==="array";if(q&&r)dC(a,n,p,d,l);else if(q|| -r||n!==p)d[l]=!0}return Object.keys(d)},eC=new aC;var fC=function(a,b,c,d){this.K=Qb();this.H=b;this.args=c;this.messageContext=d;this.type=a},gC=function(){this.qb={};this.fb={};this.K={};this.O=null;this.eb={};this.H=!1;this.status=1};function hC(a,b){return arguments.length===1?iC("set",a):iC("set",a,b)}function jC(a,b){return arguments.length===1?iC("config",a):iC("config",a,b)}function kC(a,b,c){c=c||{};c[F.D.Nd]=a;return iC("event",b,c)}function iC(){return arguments};var lC=function(a,b,c,d,e,f,g,h,l,n,p,q){this.eventId=a;this.priorityId=b;this.Ma=c;this.qb=d;this.eb=e;this.Ec=f;this.Hg=g;this.fb=h;this.eventMetadata=l;this.onSuccess=n;this.onFailure=p;this.isGtmEvent=q},mC=function(a){var b={onSuccess:Ab,onFailure:Ab};b=b===void 0?{}:b;var c,d,e,f,g,h,l,n,p,q,r,t,u,v,x,y,z,C,D,H,G,J,S,V;return new lC((u=(c=b)==null?void 0:c.eventId)!=null?u:a.eventId,(v=(d=b)==null?void 0:d.priorityId)!=null?v:a.priorityId,(x=(e=b)==null?void 0:e.Ma)!=null?x:a.Ma,(y=(f=b)==null? -void 0:f.qb)!=null?y:a.qb,(z=(g=b)==null?void 0:g.eb)!=null?z:a.eb,(C=(h=b)==null?void 0:h.Ec)!=null?C:a.Ec,(D=(l=b)==null?void 0:l.Hg)!=null?D:a.Hg,(H=(n=b)==null?void 0:n.fb)!=null?H:a.fb,(G=(p=b)==null?void 0:p.eventMetadata)!=null?G:a.eventMetadata,(J=(q=b)==null?void 0:q.onSuccess)!=null?J:a.onSuccess,(S=(r=b)==null?void 0:r.onFailure)!=null?S:a.onFailure,(V=(t=b)==null?void 0:t.isGtmEvent)!=null?V:a.isGtmEvent)},nC=function(a,b){var c=[];switch(b){case 3:c.push(a.Ma);c.push(a.qb);c.push(a.eb); -c.push(a.Ec);c.push(a.fb);break;case 2:c.push(a.Ma);break;case 1:c.push(a.qb);c.push(a.eb);c.push(a.Ec);c.push(a.fb);break;case 4:c.push(a.Ma),c.push(a.qb),c.push(a.eb),c.push(a.Ec)}return c},Q=function(a,b,c,d){for(var e=m(nC(a,d===void 0?3:d)),f=e.next();!f.done;f=e.next()){var g=f.value;if(g[b]!==void 0)return g[b]}return c},oC=function(a){for(var b={},c=nC(a,4),d=m(c),e=d.next();!e.done;e=d.next())for(var f=Object.keys(e.value),g=m(f),h=g.next();!h.done;h=g.next())b[h.value]=1;return Object.keys(b)}; -lC.prototype.getMergedValues=function(a,b,c){b=b===void 0?3:b;var d={},e=!1,f=function(n){Id(n)&&Jb(n,function(p,q){e=!0;d[p]=q})};c&&f(c);var g=nC(this,b);g.reverse();for(var h=m(g),l=h.next();!l.done;l=h.next())f(l.value[a]);return e?d:void 0}; -var pC=function(a){for(var b=[F.D.Kf,F.D.Gf,F.D.Hf,F.D.If,F.D.Jf,F.D.Lf,F.D.Mf],c=nC(a,3),d=m(c),e=d.next();!e.done;e=d.next()){for(var f=e.value,g={},h=!1,l=m(b),n=l.next();!n.done;n=l.next()){var p=n.value;f[p]!==void 0&&(g[p]=f[p],h=!0)}var q=h?g:void 0;if(q)return q}return{}},qC=function(a,b){this.eventId=a;this.priorityId=b;this.Ma={};this.qb={};this.eb={};this.Ec={};this.Hg={};this.fb={};this.eventMetadata={};this.isGtmEvent=!1;this.onSuccess=function(){};this.onFailure=function(){}},rC=function(a, -b){a.Ma=b;return a},sC=function(a,b){a.qb=b;return a},tC=function(a,b){a.eb=b;return a},uC=function(a,b){a.Ec=b;return a},vC=function(a,b){a.Hg=b;return a},wC=function(a,b){a.fb=b;return a},xC=function(a,b){a.eventMetadata=b||{};return a},yC=function(a,b){a.onSuccess=b;return a},zC=function(a,b){a.onFailure=b;return a},AC=function(a,b){a.isGtmEvent=b;return a},BC=function(a){return new lC(a.eventId,a.priorityId,a.Ma,a.qb,a.eb,a.Ec,a.Hg,a.fb,a.eventMetadata,a.onSuccess,a.onFailure,a.isGtmEvent)};function CC(a,b){Jb(a,function(c){var d;if(d=c.charAt(0)==="_"){var e;a:switch(c){case F.D.Qb:case F.D.Sf:case F.D.Ch:e=!0;break a;default:e=!1}d=!e}d&&(b&&b(c),delete a[c])})};var DC=function(){var a=this;this.H={};Qy(function(b){var c=b.eventId,d=b.rf,e=[],f=a.H[c]||[];f.length&&e.push(["epr",f.join(".")]);d&&delete a.H[c];return e})},FC=function(a,b,c){var d=EC;el.K&&a!==void 0&&(d.H[a]=d.H[a]||[],d.H[a].push(c+b),Ry(),Py(a))},EC;function GC(){EC||(EC=new DC)};var HC=function(){this.destinations={};this.H={};this.commands=[]},IC=function(a,b){return a.destinations[b.destinationId]=a.destinations[b.destinationId]||new gC},JC=function(a,b,c,d){if(d.H){var e=IC(a,d.H),f=e.O;if(f){var g=Jd(c,null),h=Jd(e.qb[d.H.destinationId],null),l=Jd(e.eb,null),n=Jd(e.fb,null),p=Jd(a.H,null),q={};if(el.K)try{q=Jd(mA.H,null)}catch(x){R(72)}var r=d.H.prefix,t=function(x){var y=d.messageContext.eventId;GC();FC(y,r,x)},u=BC(AC(zC(yC(xC(vC(uC(wC(tC(sC(rC(new qC(d.messageContext.eventId, -d.messageContext.priorityId),g),h),l),n),p),q),d.messageContext.eventMetadata),function(){if(t){var x=t;t=void 0;x("2");if(d.messageContext.onSuccess)d.messageContext.onSuccess()}}),function(){if(t){var x=t;t=void 0;x("3");if(d.messageContext.onFailure)d.messageContext.onFailure()}}),!!d.messageContext.isGtmEvent)),v=function(){try{var x=d.messageContext.eventId;GC();FC(x,r,"1");var y=d.H.id,z=eC;if(el.H&&b===F.D.xa){var C,D=(C=UB(y))==null?void 0:C.ids;if(!(D&&D.length>1)){var H,G=Rc("google_tag_data", -{});G.td||(G.td={});H=G.td;var J=Jd(u.Ec);Jd(u.Ma,J);var S=[],V;for(V in H)H.hasOwnProperty(V)&&dC(z,H[V],J).length&&S.push(V);S.length&&(bC(z,y,S),vb("TAGGING",YB[A.readyState]||14));H[y]=J}}f(d.H.id,b,d.K,u)}catch(pa){var da=d.messageContext.eventId;GC();FC(da,r,"4")}};b==="gtag.get"?v():Um(e.T,v)}}},KC=function(a,b){if(b.type!=="require"){var c=void 0;b.type==="event"&&(c=b.args[1]);if(b.H)for(var d=IC(a,b.H).K[b.type]||[],e=0;e=0){if(f.xk=UB(h,b),f.xk){var l=cm();Fb(l,function(t){return function(u){return t.xk.destinationId===u}}(f))?d.push(h):e.push(h)}}else{var n=c.H[h]||[];f.Zj={};n.forEach(function(t){return function(u){t.Zj[u]=!0}}(f));for(var p=fm(),q=0;q=0&&c.splice(d,1)})},hD=function(a){Jb(eD.K,function(b,c){var d=c.indexOf(a);d>=0&&c.splice(d,1)})},eD=new function(){this.H={};this.K={}};function iD(a,b,c){var d=Jd(a,null);d.eventId=void 0;d.inheritParentConfig=void 0;Object.keys(b).some(function(f){return b[f]!==void 0})&&R(136);var e=Jd(b,null);Jd(c,e);cD(jC(fm()[0],e),a.eventId,d)}function jD(a,b,c){if(Kf(11)&&!c&&!a[F.D.Qd]){var d=Mk(10,function(){return!1});Kk(10,!0);PB(d,a,b);if(d)return!0}return!1};function kD(a,b){var c={},d=(c.event=a,c);b&&(d.eventModel=Jd(b,null),b[F.D.Qf]&&(d.eventCallback=b[F.D.Qf]),b[F.D.zh]&&(d.eventTimeout=b[F.D.zh]));return d} -function lD(a,b){var c=a&&a[F.D.Nd];c===void 0&&(c=pA(F.D.Nd,2),c===void 0&&(c="default"));if(Cb(c)||Array.isArray(c)){var d;d=b.isGtmEvent?Cb(c)?[c]:c:c.toString().replace(/\s+/g,"").split(",");var e=fD(d,b.isGtmEvent),f=e.qk,g=e.ct;if(g.length)for(var h=ZC(a),l=0;l2){if(a[2]!==void 0&&!Id(a[2])||a.length>3){d=void 0;break a}e=a[2]}var f=UB(a[1],b.isGtmEvent);if(f){d={target:f,params:e};break a}}d=void 0}var g=d;if(g){var h=g.target,l=g.params,n;a:{if(!Kf(7)){var p=hm(im());if(wm(p)){var q=p.parent,r=q.isDestination;n={mt:hm(q),Xs:r};break a}}n=void 0}var t=n,u=t==null?void 0:t.mt,v=t==null?void 0:t.Xs;YA(c.eventId,"gtag.config");var x=h.destinationId;if(h.he()? -cm().indexOf(x)!==-1:fm().indexOf(x)!==-1)a:{if(u&&(R(128),v&&R(130),b.inheritParentConfig)){var y;var z=Lk(12);if(z)iD(b,z,l),y=!1;else{var C=Lk(11);!l[F.D.Qd]&&Kf(11)&&C||Kk(11,Jd(l,null));y=!0}y&&u.containers&&u.containers.join(",");break a}if(P(571)){var D=!Kf(45),H=!Wb(h.id,"GTM-");D&&H&&(Object.keys(l).length===0?jv(dv.X.bl):jv(dv.X.fl),Lm()&&jv(dv.X.al),Lk(31)&&jv(dv.X.il))}var G=QB;el.H&&(G.H===1&&(Pk.H.mcc=!1),G.H=2);if(!jD(l,b,h.he())){aD.H||R(43);if(!b.noTargetGroup){var J=h.id;if(h.he()){hD(J); -var S=l[F.D.Fh]||"default",V=eD;S=String(S).split(",");for(var da=0;da2){if(!Id(a[2])&&a[2]!==void 0||a.length>3)return;d=a[2]}var e=kD(c,d),f=YC(a,b),g=f.eventId,h=f.priorityId;e["gtm.uniqueEventId"]=g;h&&(e["gtm.priorityId"]=h);if(c=== -"optimize.callback")return e.eventModel=e.eventModel||{},e;var l=lD(d,b);if(l){for(var n=l.qk,p=l.Cr,q=p.map(function(J){return J.id}),r=p.map(function(J){return J.destinationId}),t=n.map(function(J){return J.id}),u=m(cm()),v=u.next();!v.done;v=u.next()){var x=v.value;r.indexOf(x)<0&&t.push(x)}YA(g,c);for(var y=m(t),z=y.next();!z.done;z=y.next()){var C=z.value,D=Jd(b,null),H=Jd(d,null);delete H[F.D.Qf];var G=D.eventMetadata||{};G.hasOwnProperty(I.J.Ud)||(G[I.J.Ud]=!D.fromContainerExecution);G[I.J.uj]= -q.slice();G[I.J.wg]=r.slice();D.eventMetadata=G;QC(c,H,C,D)}e.eventModel=e.eventModel||{};q.length>0?e.eventModel[F.D.Nd]=q.join(","):delete e.eventModel[F.D.Nd];aD.H||R(43);b.noGtmEvent===void 0&&b.eventMetadata&&b.eventMetadata[I.J.Mn]&&(b.noGtmEvent=!0);e.eventModel[F.D.Uc]&&(b.noGtmEvent=!0);return b.noGtmEvent?void 0:e}}},mD.get=function(a,b){R(53);if(a.length===4&&Cb(a[1])&&Cb(a[2])&&Bb(a[3])){var c=UB(a[1],b.isGtmEvent),d=String(a[2]),e=a[3];if(c){aD.H||R(43);var f=ZC();if(Fb(cm(),function(h){return c.destinationId=== -h})){YC(a,b);var g={};Jd((g[F.D.Uf]=d,g[F.D.Tf]=e,g),null);RC(d,function(h){gd(function(){e(h)})},c.id,b)}else iA(c.destinationId,f,{source:4,fromContainerExecution:b.fromContainerExecution})}}},mD.js=function(a,b){var c;if(a.length===2&&a[1].getTime){aD.H=!0;var d=YC(a,b),e=d.eventId,f=d.priorityId,g={};c=(g.event="gtm.js",g["gtm.start"]=a[1].getTime(),g["gtm.uniqueEventId"]=e,g["gtm.priorityId"]=f,g)}else c=void 0;return c},mD.policy=function(a){if(a.length===3&&Cb(a[1])&&Bb(a[2])){if(Dx(a[1],a[2]), -R(74),a[1]==="all"){R(75);var b=!1;try{b=a[2](E(5),"unknown",{})}catch(c){}b||R(76)}}else R(73)},mD.reset_target_config=function(a,b){if($C(b)&&a.length===2&&Cb(a[1])){var c=UB(a[1],!0);c&&VC(c.destinationId)}},mD.set=function(a,b){var c=void 0;a.length===2&&Id(a[1])?c=Jd(a[1],null):a.length===3&&Cb(a[1])&&(c={},Id(a[2])||Array.isArray(a[2])?c[a[1]]=Jd(a[2],null):c[a[1]]=a[2]);if(c){Kk(31,!0);var d=YC(a,b),e=d.eventId,f=d.priorityId;Jd(c,null);E(5);var g=Jd(c,null);PC().H.push("set",[g],void 0,b); -c["gtm.uniqueEventId"]=e;f&&(c["gtm.priorityId"]=f);delete c.event;b.overwriteModelFields=!0;return c}},mD),oD={},pD=(oD.policy=!0,oD);var rD=function(a){if(qD(a))return a;this.value=a};rD.prototype.getUntrustedMessageValue=function(){return this.value};var qD=function(a){return!a||Gd(a)!=="object"||Id(a)?!1:"getUntrustedMessageValue"in a};rD.prototype.getUntrustedMessageValue=rD.prototype.getUntrustedMessageValue;var sD=function(){var a=this;this.loaded=!1;this.H=[];if(A.readyState==="complete")this.onLoad();else ed(w,"load",function(){return void a.onLoad()})};sD.prototype.onLoad=function(){if(!this.loaded){this.loaded=!0;for(var a=0;aa.Z&&(a.Z=D)}a.T=!1}}}return!b},ED= -function(){var a=wD;a.ia&&R(195);a.ia=!0;if(fl()){var b=!Kf(51),c=bz();$y(c,{stage:sy.W.ih});if(b){var d=az(c,{stage:sy.W.nl},sy.W.zi);d!==void 0&&(c.H.Y=d)}var e=a.H.length;bz().H.C=e}DD(a);if(fl()){var f=bz(),g=az(f,{stage:sy.W.jl},sy.W.ih);g!==void 0&&(f.H.B=g)}try{var h=w[E(19)],l=E(5),n=h.hide;if(n&&n[l]!==void 0&&n.end){n[l]=!1;var p=!0,q;for(q in n)if(n.hasOwnProperty(q)&&n[q]===!0){p=!1;break}p&&(n.end(),n.end=null)}}catch(r){E(5)}},FD=function(a,b){if(a.Z0){h=[];for(var l=0;lq)for(R(4),d.pruned=!0;this.length>q;)this.shift();var r=typeof p!=="boolean"||p;return DD(f)&&r};var g=c.slice(0).map(function(h){return a(h)});this.H.push.apply(this.H,g);Kf(51)||(fl()&&ez(),gd(GD));NB(function(){if(!d.gtmDom){d.gtmDom=!0;var h={};c.push((h.event="gtm.dom",h))}});uD(function(){if(!d.gtmLoad){d.gtmLoad=!0;var h={};c.push((h.event="gtm.load",h))}})}; -vD.prototype.push=function(a){return w[E(19)].push(a)};var wD=new vD;function CD(a,b){return a.messageContext.eventId-b.messageContext.eventId||a.messageContext.priorityId-b.messageContext.priorityId}function zD(a){if(a==null||typeof a!=="object")return!1;if(a.event)return!0;if(Kb(a)){var b=a[0];if(b==="config"||b==="event"||b==="js"||b==="get")return!0}return!1}function BD(a){return{message:a.message,messageContext:a.messageContext}}function HD(a,b,c){return xD(a,b,c)} -function ID(a,b){return yD(a,b)}function GD(){ED()}function JD(a){return wD.push(a)};var KD=function(){};KD.prototype.bind=function(){var a,b=nj(w.location.href);(a=b.hostname+b.pathname)&&Tk("dl",encodeURIComponent(a));var c;var d=E(5);if(d){var e=Kf(7)?1:0,f=om(),g=f&&f.fromContainerExecution?1:0,h=f&&f.source||0,l=E(6);c=d+";"+l+";"+g+";"+h+";"+e}else c=void 0;var n=c;n&&Tk("tdp",n);var p=Lp(!0);p!==void 0&&Tk("frm",String(p))};var LD=new KD;var MD=function(){this.H=Wk();this.K=void 0},ND=function(a,b){return Yk(a,function(c){return c.hb>0?b?c.hb+"_"+Vk(c):String(c.hb):void 0})}; -MD.prototype.bind=function(){var a=this;if(Eo()||el.H)Tk("csp",function(){var b=ND(a.H,!0);Zk(a.H);return b},!1),Tk("mde",function(){var b=bl.H,c=ND(b,!1);Zk(b);return c},!1),w.addEventListener("securitypolicyviolation",function(b){if(b.disposition==="enforce"){R(179);var c=kl(b.effectiveDirective);if(c){var d=c.Zg,e=c.Gg,f;a:{var g=b.blockedURI,h=il;if(el.H&&g){var l=hl(d,g);if(l){f=h.H[d][l];break a}}f=void 0}var n=f;if(n){var p;a:{try{var q=new URL(b.blockedURI),r=q.pathname.indexOf(";");p=r>= -0?q.origin+q.pathname.substring(0,r):q.origin+q.pathname;break a}catch(H){}p=void 0}var t=p;if(t){for(var u=m(n),v=u.next();!v.done;v=u.next()){var x=v.value;if(!x.Po){x.Po=!0;var y={eventId:x.eventId,priorityId:x.priorityId};if(Eo()){var z=y,C={type:1,blockedUrl:t,endpoint:x.endpoint,violation:b.effectiveDirective};if(Eo()){var D=Ko("TAG_DIAGNOSTICS",{eventId:z==null?void 0:z.eventId,priorityId:z==null?void 0:z.priorityId});D.tagDiagnostics=C;Do(D)}}OD(a,x.destinationId,x.endpoint,e)}}jl(d,b.blockedURI)}}}}})}; -var OD=function(a,b,c,d){$k(a.H,b,c,1,d);Uk("csp",!0);Uk("mde",!0);c!==61&&c!==56&&a.K===void 0&&(a.K=w.setTimeout(function(){a.H.hb>0&&en(!1);a.K=void 0},500))},PD=new MD;var QD=function(){this.sequenceNumber=0};QD.prototype.bind=function(){var a=this;RD(this);Tk("v","3");Tk("t","t");Tk("pid",function(){return String(ak(Wj.da.kh))});Tk("gtm",function(){return eu()});Tk("seq",function(){return String(++a.sequenceNumber)});Tk("exp",function(){return xp()})};var RD=function(a){if(ak(Wj.da.kh)===void 0){var b=function(){Zj(Wj.da.kh,Gb());a.sequenceNumber=0};b();hd(b,864E5)}else ck(Wj.da.kh,function(){a.sequenceNumber=0});a.sequenceNumber=0},SD=new QD;function TD(a){return function(){return w[a]}} -var UD={},VD=(UD[14]=function(){var a;return(a=w.crypto)==null?void 0:a.getRandomValues},UD[15]=function(){var a,b;return(a=w.crypto)==null?void 0:(b=a.subtle)==null?void 0:b.digest},UD[1]=TD("fetch"),UD[6]=TD("Map"),UD[2]=function(){return Math.random},UD[8]=function(){return oa(Object,"assign")},UD[9]=function(){return Object.entries},UD[10]=function(){return Object.fromEntries},UD[5]=TD("Promise"),UD[13]=TD("RegExp"),UD[3]=function(){return Nc.sendBeacon},UD[7]=TD("Set"),UD[12]=function(){return String.prototype.endsWith}, -UD[11]=function(){return String.prototype.startsWith},UD[4]=TD("XMLHttpRequest"),UD),WD={},XD=(WD[15]=!0,WD);var YD=/^(https?:)?\/\//; - -function sE(){};function tE(){var a=Of(62)===void 0;if(Kf(62)||a&&E(5).indexOf("GTM-")!==0)Dx("detect_link_click_events",function(b,c,d){var e;return((e=d.options)==null?void 0:e.waitForTags)!==!0}),Dx("detect_form_submit_events",function(b,c,d){var e;return((e=d.options)==null?void 0:e.waitForTags)!==!0}),Dx("detect_youtube_activity_events",function(b,c,d){var e;return((e=d.options)==null?void 0:e.fixMissingApi)!==!0});a&&Kf(45)&&bB(em(),function(b){var c;c=b.entityId;if(c==="fls"||c==="flc"||c==="dest_dc")return!1; -var d="__"+c;return EA(d,5)||EA(d,6)||!(!Lz[d]||!Lz[d][5]&&!Lz[d][6])})};var uE=function(){this.H=this.gppString=void 0};uE.prototype.reset=function(){this.H=this.gppString=void 0};var vE=new uE;[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});mt({Nu:0,Mu:1,Ju:2,Eu:3,Ku:4,Fu:5,Lu:6,Hu:7,Iu:8,Du:9,Gu:10,Ou:11}).map(function(a){return Number(a)});mt({Qu:0,Ru:1,Pu:2}).map(function(a){return Number(a)});var wE=function(a,b,c,d){st.call(this);this.ae=b;this.fd=c;this.Vb=d;this.Ra=new Map;this.be=0;this.ma=new Map;this.Da=new Map;this.Z=void 0;this.K=a};wa(wE,st);wE.prototype.O=function(){delete this.H;this.Ra.clear();this.ma.clear();this.Da.clear();this.Z&&(ot(this.K,"message",this.Z),delete this.Z);delete this.K;delete this.Vb;st.prototype.O.call(this)}; -var xE=function(a){if(a.H)return a.H;a.fd&&a.fd(a.K)?a.H=a.K:a.H=Kp(a.K,a.ae);var b;return(b=a.H)!=null?b:null},zE=function(a,b,c){if(xE(a))if(a.H===a.K){var d=a.Ra.get(b);d&&d(a.H,c)}else{var e=a.ma.get(b);if(e&&e.pk){yE(a);var f=++a.be;a.Da.set(f,{ke:e.ke,Ur:e.xo(c),persistent:b==="addEventListener"});a.H.postMessage(e.pk(c,f),"*")}}},yE=function(a){a.Z||(a.Z=function(b){if(b.source===a.H)try{var c;c=a.Vb?a.Vb(b):void 0;if(c){var d=c.rt,e=a.Da.get(d);if(e){e.persistent||a.Da.delete(d);var f;(f= -e.ke)==null||f.call(e,e.Ur,c.payload)}}}catch(g){}},nt(a.K,"message",a.Z))};var DE=function(a,b){var c=b.listener,d=(0,a.__gpp)("addEventListener",c);d&&c(d,!0)},EE=function(a,b){(0,a.__gpp)("removeEventListener",b.listener,b.listenerId)},FE={xo:function(a){return a.listener},pk:function(a,b){var c={};return c.__gppCall={callId:b,command:"addEventListener",version:"1.1"},c},ke:function(a,b){var c=b.__gppReturn;a(c.returnValue,c.success)}},GE={xo:function(a){return a.listener},pk:function(a,b){var c={};return c.__gppCall={callId:b,command:"removeEventListener",version:"1.1", -parameter:a.listenerId},c},ke:function(a,b){var c=b.__gppReturn,d=c.returnValue.data;a==null||a(d,c.success)}};function HE(a){var b={};yf(a.data)?b=JSON.parse(a.data):b=a.data;return{payload:b,rt:b.__gppReturn.callId}} -var IE=function(a,b){var c;c=(b===void 0?{}:b).timeoutMs;st.call(this);this.caller=new wE(a,"__gppLocator",function(d){return typeof d.__gpp==="function"},HE);this.caller.Ra.set("addEventListener",DE);this.caller.ma.set("addEventListener",FE);this.caller.Ra.set("removeEventListener",EE);this.caller.ma.set("removeEventListener",GE);this.timeoutMs=c!=null?c:500};wa(IE,st);IE.prototype.O=function(){this.caller.dispose();st.prototype.O.call(this)}; -IE.prototype.addEventListener=function(a){var b=this,c=Ep(function(){a(JE,!0)}),d=this.timeoutMs===-1?void 0:setTimeout(function(){c()},this.timeoutMs);zE(this.caller,"addEventListener",{listener:function(e,f){clearTimeout(d);try{var g;var h;((h=e.pingData)==null?void 0:h.gppVersion)===void 0||e.pingData.gppVersion==="1"||e.pingData.gppVersion==="1.0"?(b.removeEventListener(e.listenerId),g={eventName:"signalStatus",data:"ready",pingData:{internalErrorState:1,gppString:"GPP_ERROR_STRING_IS_DEPRECATED_SPEC", -applicableSections:[-1]}}):Array.isArray(e.pingData.applicableSections)?g=e:(b.removeEventListener(e.listenerId),g={eventName:"signalStatus",data:"ready",pingData:{internalErrorState:2,gppString:"GPP_ERROR_STRING_EXPECTED_APPLICATION_SECTION_ARRAY",applicableSections:[-1]}});a(g,f)}catch(l){if(e==null?0:e.listenerId)try{b.removeEventListener(e.listenerId)}catch(n){a(KE,!0);return}a(LE,!0)}}})}; -IE.prototype.removeEventListener=function(a){zE(this.caller,"removeEventListener",{listener:function(){},listenerId:a})}; -var LE={eventName:"signalStatus",data:"ready",pingData:{internalErrorState:2,gppString:"GPP_ERROR_STRING_UNAVAILABLE",applicableSections:[-1]},listenerId:-1},JE={eventName:"signalStatus",data:"ready",pingData:{gppString:"GPP_ERROR_STRING_LISTENER_REGISTRATION_TIMEOUT",internalErrorState:2,applicableSections:[-1]},listenerId:-1},KE={eventName:"signalStatus",data:"ready",pingData:{gppString:"GPP_ERROR_STRING_REMOVE_EVENT_LISTENER_ERROR",internalErrorState:2,applicableSections:[-1]},listenerId:-1};function ME(a){var b;if(!(b=a.pingData.signalStatus==="ready")){var c=a.pingData.applicableSections;b=!c||c.length===1&&c[0]===-1}if(b){vE.gppString=a.pingData.gppString;var d=a.pingData.applicableSections.join(",");vE.H=d}}function NE(){try{var a=new IE(w,{timeoutMs:-1});xE(a.caller)&&a.addEventListener(ME)}catch(b){}};function OE(){var a=[["cv",E(1)],["rv",E(14)],["tc",Yz.tags.filter(function(d){return d}).length]],b=Lf(15);b&&a.push(["x",b]);var c=xp();c&&a.push(["tag_exp",c]);return a};var PE=function(){var a=this;this.H={};this.K={};Qy(function(b){var c=b.eventId,d=b.rf,e=[],f=a.H[c]||[];f.length&&e.push(["hf",f.join(".")]);var g=a.K[c]||[];g.length&&e.push(["ht",g.join(".")]);d&&(delete a.H[c],delete a.K[c]);return e})},QE=function(){var a=0;return function(b){switch(b){case 1:a|=1;break;case 2:a|=2;break;case 3:a|=4}return a}},RE;var SE=function(){var a=this;this.H="";el.K&&P(516)&&Qy(function(){var b=[];a.H&&b.push(["psd",a.H]);return b})},TE;function UE(){return!1} -function VE(){var a={};return function(b,c,d){}};function WE(){var a=XE;return function(b,c,d){var e=d&&d.event;YE(c);var f=Dh(b)?void 0:1,g=new mb;Jb(c,function(r,t){var u=Xd(t,void 0,f);u===void 0&&t!==void 0&&R(44);g.set(r,u)});a.Lb(Sf());var h={Zn:jg(b),eventId:e==null?void 0:e.id,priorityId:e!==void 0?e.priorityId:void 0,Ag:e!==void 0?function(r){e.gd.Ag(r)}:void 0,Kb:function(){return b},log:function(){},Zr:{index:d==null?void 0:d.index,type:d==null?void 0:d.type,name:d==null?void 0:d.name},Bt:!!EA(b,3),originalEventData:e==null?void 0:e.originalEventData}; -e&&e.cachedModelValues&&(h.cachedModelValues={gtm:e.cachedModelValues.gtm,ecommerce:e.cachedModelValues.ecommerce});if(UE()){var l=VE(),n,p;h.yb={Hk:[],Dg:{},Yb:function(r,t,u){t===1&&(n=r);t===7&&(p=u);l(r,t,u)},li:Xh()};h.log=function(r){var t=Qa.apply(1,arguments);n&&l(n,4,{level:r,source:p,message:t})}}var q=uf(a,h,[b,g]);a.Lb();q instanceof Ua&&(q.type==="return"?q=q.data:q=void 0);return B(q,void 0,f)}}function YE(a){var b=a.gtmOnSuccess,c=a.gtmOnFailure;Bb(b)&&(a.gtmOnSuccess=function(){gd(b)});Bb(c)&&(a.gtmOnFailure=function(){gd(c)})};function ZE(){return Math.floor(Math.random()*20)};var $E=[F.D.Hi].map(function(a){return a.slice(2)});var aF=function(a){X(a,F.D.Hi,Mk(8,ZE))};function bF(a){}bF.P="internal.addAdsClickIds";function cF(a,b){var c=this;}cF.publicName="addConsentListener";var dF=!1;function eF(a){for(var b=0;b=0}).join("");c=new Ud(new RegExp(a,d))}catch(e){}return c}xH.P="internal.createRegex";function yH(a){}yH.P="internal.declareConsentState";function zH(a){var b="";return b}zH.P="internal.decodeUrlHtmlEntities";function AH(a,b,c){var d;return d}AH.P="internal.decorateUrlWithGaCookies";function BH(){}BH.P="internal.deferCustomEvents";function CH(a,b){try{return a.closest(b)}catch(c){return null}};function DH(){var a=w.screen;return{width:a?a.width:0,height:a?a.height:0}} -function EH(a){if(A.hidden)return!0;var b=a.getBoundingClientRect();if(b.top===b.bottom||b.left===b.right||!w.getComputedStyle)return!0;var c=w.getComputedStyle(a,null);if(c.visibility==="hidden")return!0;for(var d=a,e=c;d;){if(e.display==="none")return!0;var f=e.opacity,g=e.filter;if(g){var h=g.indexOf("opacity(");h>=0&&(g=g.substring(h+8,g.indexOf(")",h)),g.charAt(g.length-1)==="%"&&(g=g.substring(0,g.length-1)),f=String(Math.min(Number(g),Number(f))))}if(f!==void 0&&Number(f)<=0)return!0;(d=d.parentElement)&& -(e=w.getComputedStyle(d,null))}return!1} -var XH=function(a){var b,c=(b=a==null?void 0:a.ek)!=null?b:!0,d,e=(d=a==null?void 0:a.fk)!=null?d:!0,f,g=(f=a==null?void 0:a.Ht)!=null?f:!1,h=(a==null?void 0:a.Uj)||[],l=(a==null?void 0:a.Wj)||{email:!0,phone:!1,address:!1},n=Mk(6,function(){return{}}),p=MH({ek:c,fk:e,Uj:h,Wj:l}),q=n[p];if(q&&Qb()-q.timestamp<200){var r=q.result,t;(r.elements.some(function(ma){return ma.ki})||((t=r.ni)==null?0:t.ki))&&jv(dv.X.zj);return r}var u=NH(),v=u.status,x=[],y,z,C=[];if(P(568)){}else{if(l.email){var ba=VH(u.elements); -x=RH(ba,h);y=WH(x);ba.length>10&&(v="3")}!g&&y&&(x=[y]);for(var ia=0;ia"+e:e}var f=a.parentNode;if(f instanceof ShadowRoot){var g=fI(a,f);return gI(a)+":nth-child("+g+")"}return a.tagName?a.tagName.toLowerCase(): -""},gI=function(a){if(a.classList&&a.classList.length>0){var b=Array.from(a.classList,function(c){return CSS.escape(c)}).filter(function(c){return c.length>0});if(b.length>0)return"."+b.join(".")}return""},fI=function(a,b){for(var c=b.children,d=0;d=0}else n=!1;n||b.push({element:e,Aa:l,Ba:TH.Nb,Kc:f})}}}return b},NH=function(){var a=[],b=A.body;if(!b)return{elements:a,status:"4"};var c=iI(b,0,"",a);return{elements:a,status:c}},iI=function(a,b,c,d){for(var e=a.querySelectorAll("*"),f=e.length>1E4?"2":"1",g=0;g=0)&&h.children instanceof HTMLCollection){var l=!1;if(P(582)&&h.shadowRoot&&b<1){var n=bI(h);iI(h.shadowRoot, -b+1,c?c+"|"+n:n,d)==="2"&&(f="2");l=!0}var p=!1;if(!l)for(var q=0;q=0)){p=!0;break}(!p&&!l||P(568)&&lI.indexOf(h.tagName)!==-1)&&d.push({element:h,Kc:b>0?c:void 0})}}return f},hI=/[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}/i,eI=/support|noreply/i,jI="SCRIPT STYLE IMG SVG PATH BR NOSCRIPT TEXTAREA".split(" "),kI=["BR"],mI=Pf(36,2),cI=Pf(70,50),TH={Nb:"1",Yd:"2",Sd:"3",Wd:"4",wf:"5",ug:"6",Th:"7",Bj:"8",xi:"9",rj:"10"}, -lI=["INPUT","SELECT"],nI=aI(/^([^\x00-\x40\x5b-\x60\x7b-\xff]|[.-]|\s)+$/),ZH=RegExp("^(?:[A-Z]{1,2}\\d[A-Z\\d]?[ -]?\\d[A-Z]{2}|[A-Z]\\d[A-Z][ -]?\\d[A-Z]\\d|\\d{4} ?[A-Z]{2}|[A-Z]\\d{4}[A-Z]{3}|\\d{5}(?:-\\d{4})?|\\d{5}-\\d{3}|\\d{4}-\\d{3}|\\d{3}-\\d{4}|\\d{2}-\\d{3}|\\d{3} ?\\d{2}|\\d{4,7})$","i"); -function MI(a){var b;N(this,"detect_user_provided_data","auto");var c=B(a)||{},d=XH({ek:!!c.includeSelector,fk:!!c.includeVisibility,Uj:c.excludeElementSelectors,Wj:c.fieldFilters,Ht:!!c.selectMultipleElements});b=new mb;var e=new Ld;b.set("elements",e);for(var f=d.elements,g=0;g=a.limit)a.ii&&w.clearInterval(a.ii);else{a.sk++;var b=Qb();JD({event:a.eventName,"gtm.timerId":a.ii,"gtm.timerEventNumber":a.sk,"gtm.timerInterval":a.interval,"gtm.timerLimit":a.limit,"gtm.timerStartTime":a.Wo,"gtm.timerCurrentTime":b,"gtm.timerElapsedTime":b-a.Wo,"gtm.triggers":a.Ut})}}} -function NJ(a,b){ -return f}NJ.P="internal.enableAutoEventOnTimer";var Gc=Ca(["data-gtm-yt-inspected-"]),PJ=["www.youtube.com","www.youtube-nocookie.com"],QJ; -function $J(a,b){var c=this;return e}$J.P="internal.enableAutoEventOnYouTubeActivity";function aK(a,b){if(!M(a)||!jh(b))throw L(this.getName(),["string","Object|undefined"],arguments);var c=b?B(b):{};c.regexCache=Mk(3,function(){return new Map});return Ih(a,c)}aK.P="internal.evaluateBooleanExpression";function bK(a){var b=!1;return b}bK.P="internal.evaluateMatchingRules";var cK=new Map([["aw",4]]);function dK(a){var b=zr[a],c=cK.get(a);return c?(Aq(b,c)||[]).some(function(d){return d.m==="0"||d.m===void 0}):!1} -function eK(a,b){if(P(495)){for(var c=new Map,d=m(cK),e=d.next();!e.done;e=d.next()){var f=m(e.value),g=f.next().value,h=f.next().value,l=g,n=a[l],p=Array.isArray(n)?n[0]:n;if(p!==void 0){var q={},r=(q.k=p,q.i=String(Math.floor(Date.now()/1E3)),q.b=[],q.m="1",q),t=Yp(r,h);t&&(dK(l)||c.set(l,t))}}if(c.size){var u,v=new URLSearchParams;b.path?v.set("p",b.path):v.set("p","/");b.Nr&&v.set("ce",String(b.Nr));b.domain&&b.domain!=="auto"?v.set("d",b.domain):v.set("d","auto:"+w.location.hostname);for(var x= -m(c),y=x.next();!y.done;y=x.next()){var z=m(y.value),C=z.next().value,D=z.next().value;v.set(C,D)}u="_/set_cookie?"+v.toString();var H,G=E(58);H=Gf(u,G);var J=tj()+"/"+H;rd(J)}}};function fK(a){return"CWVWebViewMessage"in a}function gK(a){var b=w,c=b.webkit;delete b.webkit;a(b.webkit);b.webkit=c}function hK(a,b){var c={action:"gcl_setup"};if(fK(a.messageHandlers))return a.messageHandlers.CWVWebViewMessage.postMessage({command:b,payload:c}),!0;var d=a.messageHandlers[b];return d?(d.postMessage(c),!0):!1};var iK={},jK=(iK.awb={notFound:178},iK.ytb={notFound:194},iK);function kK(a){var b,c=(b=jK[a])==null?void 0:b.notFound;c&&R(c)} -function lK(a){if(!ak(Wj.da.tn)&&"webkit"in w&&w.webkit.messageHandlers){var b=function(){try{gK(function(c){if(c){var d;d=fK(c.messageHandlers)||"awb"in c.messageHandlers?{command:"awb",source:5}:(fK(c.messageHandlers)||"ytb"in c.messageHandlers)&&P(499)?{command:"ytb",source:8}:void 0;d&&(Zj(Wj.da.tn,function(e){var f=d.source;e.gclid&&ns("gcl_aw",e.gclid,f,a);e.wbraid&&ns("gcl_gb",e.wbraid,f,a)}),hK(c,d.command)||kK(d.command))}})}catch(c){R(193)}};Om(function(){Fr(zp)?b():Pm(b,zp)},zp)}};var mK=["https://www.google.com","https://www.youtube.com","https://m.youtube.com"];function nK(a){return a.data.action!=="gcl_transfer"?(R(173),!0):a.data.gadSource?a.data.gclid?!1:(R(181),!0):(R(180),!0)} -function oK(a,b){if(!a||P(a)){if(ak(Wj.da.Se))return R(176),Wj.da.Se;if(ak(Wj.da.wn))return R(170),Wj.da.Se;var c=Cp();if(!c)R(171);else if(c.opener){var d=function(g){if(!mK.includes(g.origin))R(172);else if(!nK(g)){var h={gadSource:g.data.gadSource};h.gclid=g.data.gclid;Zj(Wj.da.Se,h);b&&g.data.gclid&&ns("gcl_aw",String(g.data.gclid),6,b);var l;(l=g.stopImmediatePropagation)==null||l.call(g);ot(c,"message",d)}};if(nt(c,"message",d)){Zj(Wj.da.wn,!0);for(var e=m(mK),f=e.next();!f.done;f=e.next())c.opener.postMessage({action:"gcl_setup"}, -f.value);R(174);return Wj.da.Se}R(175)}}}; -var pK=function(a){var b={prefix:Q(a.M,F.D.Bd)||Q(a.M,F.D.lb),domain:Q(a.M,F.D.Hb),kd:Q(a.M,F.D.zb),flags:Q(a.M,F.D.Pb)};a.M.isGtmEvent&&(b.path=Q(a.M,F.D.oc));return b},qK=function(a,b){if(!U(a,I.J.Te)){var c=oK(119);if(c){var d=ak(c),e=function(g){W(a,I.J.Te,!0);var h=ip(a,F.D.zf),l=ip(a,F.D.Af);X(a,F.D.zf,String(g.gadSource));X(a,F.D.Af,6);W(a,I.J.wa);W(a,I.J.yg);X(a,F.D.wa);b();X(a,F.D.zf,h);X(a,F.D.Af,l);W(a,I.J.Te,!1)};if(d)e(d);else{var f=void 0;f=ck(c,function(g,h){e(h);dk(c,f)})}}}},tK=function(a){var b, -c,d,e;b=a.bo;c=a.wo;d=a.bp;e=a.co;if(b){if(hr(c[F.D.Yf],!!c[F.D.ya])){if(sj()&&Fr(Er())){for(var f=Yq(!0),g={},h=m(Object.keys(zr)),l=h.next();!l.done;l=h.next()){var n=l.value,p=zr[n],q=f[p];if(q){var r=Xp(q,4);r&&(qs(Math.min(Sr(r),Qb())||Qb(),p,4)||(g[n]=q))}}for(var t={},u=m(Object.keys(g)),v=u.next();!v.done;v=u.next()){var x=v.value,y=g[x];if(y!==void 0){var z=Xp(y,4);z&&z.m==="1"&&(t[x]=z.k)}}eK(t,e)}rs(e);vs(e);Tu(e)}if(Lp()!==2){is(e);ks(e);if($f(16)){var C=e,D=fs(w.location.href,!0,!1); -D.length||(D=fs(w.document.referrer,!1,!0));if(D.length){C=C||{};var H=D[0];H.value&&os("gcl_dc",[{version:"",gclid:H.value,timestamp:Qb(),qa:H.qa}],C)}}lK(e);oK(void 0,e)}else is(e);if(sj()&&Fr(Er())){var G=hs();eK(G,e)}zs(ss,e);As(e)}c[F.D.ya]&&(xs(c[F.D.ya],c[F.D.Wc],!!c[F.D.rc]),ws(c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e.prefix),ys(c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e.prefix),Uu(Ju(e.prefix),c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e),Uu("FPAU",c[F.D.ya],c[F.D.Wc],!!c[F.D.rc],e));d&&Cs(rK);Es(sK)},ss=["aw","dc", -"gb"],sK=["aw","dc","gb","ag"],rK=["aw","dc","gb","ag","gad_source"];function AK(){return Nt(7)&&Nt(9)&&Nt(10)};var BK=function(a,b,c){var d={};a.mergeHitDataForKey(F.D.wj,(d[b]=c,d))},CK=function(a,b){var c=pH(a,F.D.Ni,a.M.fb[F.D.Ni]);if(c&&c[b||a.eventName]!==void 0)return c[b||a.eventName]},DK=function(a){var b=U(a,I.J.cb);if(Id(b))return b},EK=function(a){if(U(a,I.J.Vd)||!Aj(a.M))return 1;if(!Q(a.M,F.D.Od)){var b=Q(a.M,F.D.Rf);if(b!==!0&&b!=="true")return 1}var c=Q(a.M,F.D.Wi);return c===!1||c==="false"?3:2}; -var GK=function(a,b){a&&(FK("sid",a.targetId,b),FK("cc",a.clientCount,b),FK("tl",a.totalLifeMs,b),FK("hc",a.heartbeatCount,b),FK("cl",a.clientLifeMs,b))},FK=function(a,b,c){b!=null&&c.push(a+"="+b)},HK=function(){var a=A.referrer;if(a){var b;return hj(nj(a),"host")===((b=w.location)==null?void 0:b.host)?1:2}return 0},JK=function(){this.ma=IK;this.O=0;this.Da=Pf(57,5);this.T=Pf(58,50);this.ia=Gb();this.Ra="https://"+E(21)+"/a?"};JK.prototype.K=function(a,b,c,d){ -var e=HK(),f,g=[];f=w===w.top&&e!==0&&b?(b==null?void 0:b.clientCount)>1?e===2?1:2:e===2?0:3:4;a&&FK("si",a.Qg,g);FK("m",0,g);FK("iss",f,g);FK("if",c,g);GK(b,g);d&&FK("fm",encodeURIComponent(d.substring(0,this.T)),g);this.Z(g);};JK.prototype.H=function(a,b,c,d,e){var f=[];FK("m",1,f);FK("s",a,f);FK("po",HK(),f);b&&(FK("st",b.state,f),FK("si",b.Qg,f),FK("sm",b.bh,f));GK(c,f);FK("c",d,f);e&&FK("fm",encodeURIComponent(e.substring(0, -this.T)),f);this.Z(f);};JK.prototype.Z=function(a){a=a===void 0?[]:a;!el.K||this.O>=this.Da||(FK("pid",this.ia,a),FK("bc",++this.O,a),a.unshift("ctid="+E(5)+"&t=s"),this.ma(""+this.Ra+a.join("&")))};function KK(a){return a.performance&&a.performance.now()||Date.now()} -var LK=function(a,b){var c=w,d=Pf(53,500),e=Pf(54,5E3),f=Pf(8,20),g=Pf(55,5E3),h;var l=function(n,p,q){q=q===void 0?{Ao:function(){},Do:function(){},zo:function(){},onFailure:function(){}}:q;this.Mj=n;this.H=p;this.O=q;this.ia=this.ma=this.heartbeatCount=this.Jj=0;this.fd=!1;this.K={};this.id=String(Math.floor(Number.MAX_SAFE_INTEGER*Math.random()));this.state=0;this.Qg=KK(this.H);this.bh=KK(this.H);this.Z=10};l.prototype.init=function(){this.T(1); -this.Da()};l.prototype.getState=function(){return{state:this.state,Qg:Math.round(KK(this.H)-this.Qg),bh:Math.round(KK(this.H)-this.bh)}};l.prototype.T=function(n){this.state!==n&&(this.state=n,this.bh=KK(this.H))};l.prototype.be=function(){return String(this.Jj++)};l.prototype.Da=function(){var n=this;this.heartbeatCount++;this.Bg({type:0,clientId:this.id,requestId:this.be(),maxDelay:this.ae()},function(p){if(p.type===0){var q;if(((q=p.failure)==null?void 0:q.failureType)!=null)if(p.stats&&(n.stats= -p.stats),n.ia++,p.isDead||n.ia>f){var r=p.isDead&&p.failure.failureType;n.Z=r||10;n.T(4);n.Ij();var t,u;(u=(t=n.O).zo)==null||u.call(t,{failureType:r||10,data:p.failure.data})}else n.T(3),n.zg();else{if(n.heartbeatCount>p.stats.heartbeatCount+f){n.heartbeatCount=p.stats.heartbeatCount;var v,x;(x=(v=n.O).onFailure)==null||x.call(v,{failureType:13})}n.stats=p.stats;var y=n.state;n.T(2);if(y!==2)if(n.fd){var z,C;(C=(z=n.O).Do)==null||C.call(z)}else{n.fd=!0;var D,H;(H=(D=n.O).Ao)==null||H.call(D)}n.ia= -0;n.Rj();n.zg()}}})};l.prototype.ae=function(){return this.state===2?e:d};l.prototype.zg=function(){var n=this;this.H.setTimeout(function(){n.Da()},Math.max(0,this.ae()-(KK(this.H)-this.ma)))};l.prototype.zr=function(n,p,q){var r=this;this.Bg({type:1,clientId:this.id,requestId:this.be(),command:n},function(t){if(t.type===1)if(t.result)p(t.result);else{var u,v,x,y={failureType:(x=(u=t.failure)==null?void 0:u.failureType)!=null?x:12,data:(v=t.failure)==null?void 0:v.data},z,C;(C=(z=r.O).onFailure)== -null||C.call(z,y);q(y)}})};l.prototype.Bg=function(n,p){var q=this;if(this.state===4)n.failure={failureType:this.Z},p(n);else{var r=this.state!==2&&n.type!==0,t=n.requestId,u,v=this.H.setTimeout(function(){var y=q.K[t];y&&(Vj(6),q.Vb(y,7))},(u=n.maxDelay)!=null?u:g),x={request:n,Ro:p,Ko:r,Ys:v};this.K[t]=x;r||this.sendRequest(x)}};l.prototype.sendRequest=function(n){this.ma=KK(this.H);n.Ko=!1;this.Mj(n.request)};l.prototype.Rj=function(){for(var n=m(Object.keys(this.K)),p=n.next();!p.done;p=n.next()){var q= -this.K[p.value];q.Ko&&this.sendRequest(q)}};l.prototype.Ij=function(){for(var n=m(Object.keys(this.K)),p=n.next();!p.done;p=n.next())this.Vb(this.K[p.value],this.Z)};l.prototype.Vb=function(n,p){this.Ra(n);var q=n.request;q.failure={failureType:p};n.Ro(q)};l.prototype.Ra=function(n){delete this.K[n.request.requestId];this.H.clearTimeout(n.Ys)};l.prototype.Bs=function(n){this.ma=KK(this.H);var p=this.K[n.requestId];if(p)this.Ra(p),p.Ro(n);else{var q,r;(r=(q=this.O).onFailure)==null||r.call(q,{failureType:14})}}; -h=new l(a,c,b);return h}; -var MK=function(){return Mk(18,function(){return new JK})},IK=function(a){Um(Xm(zm.fa.Ub),function(){dd(a)})},NK=function(a){var b=a.substring(0,a.indexOf("/_/service_worker"));return"&1p=1"+(b?"&path="+encodeURIComponent(b):"")},OK=function(a){var b=w.location.origin;if(!b)return null;(P(432)?sj():sj()&&!a)&&(a=""+b+tj()+"/_/service_worker");var c=a,d,e=Nf(11);d=e;c?(c.charAt(c.length-1)!=="/"&& -(c+="/"),a=c+d):a="https://www.googletagmanager.com/static/service_worker/"+d+"/";var f;try{f=new URL(a)}catch(g){return null}return f.protocol!=="https:"?null:f},PK=function(a){var b=ak(Wj.da.Xh);return b&&b[a]},QK=function(a){var b=this;this.K=MK();this.Z=this.T=!1;this.ia=null;this.initTime=Math.round(Qb());this.H=15;this.O=this.Rr(a);w.setTimeout(function(){b.initialize()},1E3);gd(function(){b.Ls(a)})};k=QK.prototype;k.delegate=function(a,b,c){this.getState()!==2?(this.K.H(this.H,{state:this.getState(), -Qg:this.initTime,bh:Math.round(Qb())-this.initTime},void 0,a.commandType),c({failureType:this.H})):this.O.zr(a,b,c)};k.getState=function(){return this.O.getState().state};k.Ls=function(a){var b=w.location.origin,c=this,d=bd();try{var e=d.contentDocument.createElement("iframe"),f=a.pathname,g=f[f.length-1]==="/"?a.toString():a.toString()+"/",h=a.origin!=="https://www.googletagmanager.com"?NK(f):"",l;P(133)&&(l={sandbox:"allow-same-origin allow-scripts"});bd(g+"sw_iframe.html?origin="+encodeURIComponent(b)+ -h,void 0,l,void 0,e);var n=function(){d.contentDocument.body.appendChild(e);e.addEventListener("load",function(){c.ia=e.contentWindow;d.contentWindow.addEventListener("message",function(p){p.origin===a.origin&&c.O.Bs(p.data)});c.initialize()})};d.contentDocument.readyState==="complete"?n():d.contentWindow.addEventListener("load",function(){n()})}catch(p){d.parentElement.removeChild(d),this.H=11,this.K.K(void 0,void 0,this.H,p.toString())}};k.Rr=function(a){var b=this,c=LK(function(d){var e;(e=b.ia)== -null||e.postMessage(d,a.origin)},{Ao:function(){b.T=!0;b.K.K(c.getState(),c.stats)},Do:function(){},zo:function(d){b.T?(b.H=(d==null?void 0:d.failureType)||10,b.K.H(b.H,c.getState(),c.stats,void 0,d==null?void 0:d.data)):(b.H=(d==null?void 0:d.failureType)||4,b.K.K(c.getState(),c.stats,b.H,d==null?void 0:d.data))},onFailure:function(d){b.H=d.failureType;b.K.H(b.H,c.getState(),c.stats,d.command,d.data)}});return c};k.initialize=function(){this.Z||this.O.init();this.Z=!0}; -var RK=function(a,b,c,d){var e;if((e=PK(a))==null||!e.delegate){var f=Oc()?16:6;MK().H(f,void 0,void 0,b.commandType);d({failureType:f});return}PK(a).delegate(b,c,d);}; -function SK(a,b,c,d){var e=OK(a);if(e===null){d("_is_sw=f"+(Oc()?16:6)+"te");return}var f=b?1:0,g=Math.round(Qb()),h,l=(h=PK(e.origin))==null?void 0:h.initTime,n=l?g-l:void 0,p;P(432)?p=sj()?void 0:w.location.href:p=w.location.href;RK(e.origin,{commandType:0,params:{url:a,method:f,templates:c,body:b||"",processResponse:!0,sinceInit:n,attributionReporting:!0,referer:p,strict:P(584)}},function(){},function(q){var r="_is_sw=f"+q.failureType,t,u=(t=PK(e.origin))== -null?void 0:t.getState();u!==void 0&&(r+="s"+u);d(n?r+("t"+n):r+"te")});};function TK(a){if(Kf(47)&&pH(a,"ccd_add_1p_data",!1)&&sj()){var b=a.M;if(Oc()&&dg("internal_sw_allowed","")){var c=Aj(b),d=sj()?tj():void 0,e;e=d?{path:d,no:"full"}:c?{path:c,no:"lite"}:void 0;if(e){var f=e.no,g=new URL(e.path,w.location.origin);if(g.origin===w.location.origin&&Lx(f)===void 0){var h=bk(Wj.da.Xh,{});h[f]||(h[f]=new Jx(g))}}}}};function YK(){var a;a=a===void 0?document:a;var b;return!((b=a.featurePolicy)==null||!b.allowedFeatures().includes("attribution-reporting"))}; -var cL=function(){var a=A.title;if(a===void 0||a==="")return"";a=encodeURIComponent(a);for(var b=256;b>0&&gj(a.substring(0,b))===void 0;)b--;return gj(a.substring(0,b))||""};function eL(a){W(a,I.J.Ja,!0);W(a,I.J.sb,Qb());W(a,I.J.Jn,a.M.eventMetadata[I.J.Ja])};var wL=function(a){var b=Yo(F.D.ja)?bo("pscdl"):"denied";b!=null&&X(a,F.D.rh,b)};var xL=new function(){this.H={}};var yL=function(a,b){var c=a.M;if(b===void 0?0:b){var d=c.getMergedValues(F.D.Ua);ac(d)&&X(a,F.D.Ti,ac(d))}var e=An(XC(F.D.Ua)),f=c.getMergedValues(F.D.Ua,1,e),g=c.getMergedValues(F.D.Ua,2),h=ac(oa(Object,"assign").call(Object,{},f,oa(Object,"assign").call(Object,{},xL.H)),"."),l=ac(g,".");h&&X(a,F.D.Tc,h);l&&X(a,F.D.Rc,l)};var zL=function(a){var b=U(a,I.J.Fq);b&&X(a,F.D.Sl,b)};function AL(a){var b=DB(!1);if(b!=null&&b.status){var c={gtb:b.status};b.delay&&(c.gtbd=b.delay);a.mergeHitDataForKey(F.D.Va,c)}};var BL=function(a){lk()==="US-CO"&&X(a,F.D.Je,1)};var CL={Qa:{Nk:1,Kn:2,Rn:3,Sn:4,Tn:5,Hn:6}};CL.Qa[CL.Qa.Nk]="ADOBE_COMMERCE";CL.Qa[CL.Qa.Kn]="SQUARESPACE";CL.Qa[CL.Qa.Rn]="WOO_COMMERCE";CL.Qa[CL.Qa.Sn]="WOO_COMMERCE_LEGACY";CL.Qa[CL.Qa.Tn]="WORD_PRESS";CL.Qa[CL.Qa.Hn]="SHOPIFY";function DL(a){var b=w;return gj(b.escape(b.atob(a)))} -function EL(){try{if(!P(498)&&!P(425))return[];var a=ak(Wj.da.vn);if(Array.isArray(a))return a;dq("4");var b=[],c;a:{try{c=!!A.querySelector('script[data-requiremodule^="mage/"]');break a}catch(y){}c=!1}c&&b.push(CL.Qa.Nk);var d;a:{try{var e=DL("YXNzZXRzLnNxdWFyZXNwYWNlLmNvbS8=");d=e?!!A.querySelector('script[src^="//'+e+'"]'):!1;break a}catch(y){}d=!1}d&&b.push(CL.Qa.Kn);var f;a:{if(P(425))try{var g=DL("c2hvcGlmeS5jb20="),h=DL("c2hvcGlmeWNkbi5jb20=");f=g&&h?!!A.querySelector('script[src*="cdn.'+ -g+'"],meta[property="og:image"][content*="cdn.'+(g+'"],link[rel="preconnect"][href*="cdn.')+(g+'"],link[rel="preconnect"][href*="fonts.')+(h+'"],link[rel="preconnect"][href*="iterable-shopify"],link[rel="preconnect"][href*="v.')+(g+'"]')):!1;break a}catch(y){}f=!1}f&&b.push(CL.Qa.Hn);var l;a:{try{l=!!A.querySelector('script[src*="woocommerce"],link[href*="woocommerce"],[class|="woocommerce"]');break a}catch(y){}l=!1}l&&b.push(CL.Qa.Sn);var n;a:{try{var p,q=((p=A.location)==null?void 0:p.hostname)|| -"",r,t=((r=A.location)==null?void 0:r.origin)||"",u=DL("LndvcmRwcmVzcy5jb20="),v=DL("Ly9zLncub3Jn");n=u&&v?Xb(q,u)||!!A.querySelector('[src^="'+t+'/wp-content"],meta[name="generator"][content^="WordPress "],link[rel="dns-prefetch"][href="'+(v+'"]')):!1;break a}catch(y){}n=!1}n&&b.push(CL.Qa.Tn);var x;a:{try{x=!!A.querySelector('[class*="woocommerce"],meta[name="generator"][content^="WooCommerce "]');break a}catch(y){}x=!1}x&&b.push(CL.Qa.Rn);eq("4");MB()&&Zj(Wj.da.vn,b);return b}catch(y){}return[]} -;function aM(a){if(P(425)&&U(a,I.J.Tb)){var b=Pf(67,1500),c=a.mergeHitDataForKey,d=F.D.Va,e={};c.call(a,d,e)}};var bM="platform platformVersion architecture model uaFullVersion bitness fullVersionList wow64".split(" ");function cM(a){var b;return(b=a.google_tag_data)!=null?b:a.google_tag_data={}}function dM(a){var b,c;return(c=(b=a.google_tag_data)==null?void 0:b.uach_promise)!=null?c:null}function eM(a){var b,c;return typeof((b=a.navigator)==null?void 0:(c=b.userAgentData)==null?void 0:c.getHighEntropyValues)==="function"} -function fM(a){if(!eM(a))return null;var b=cM(a);if(b.uach_promise)return b.uach_promise;var c=a.navigator.userAgentData.getHighEntropyValues(bM).then(function(d){b.uach!=null||(b.uach=d);return d});return b.uach_promise=c}; -var gM=function(){this.window=w;this.O=Qb};gM.prototype.T=function(){if(eM(this.window)&&(this.Z=this.O(),!dM(this.window))){var a=fM(this.window);a&&a.then(function(){R(95)}).catch(function(){R(96)})}};gM.prototype.H=function(){var a=this.window.google_tag_data,b;if(a!=null&&a.uach){var c=a.uach,d=oa(Object,"assign").call(Object,{},c);c.fullVersionList&&(d.fullVersionList=c.fullVersionList.slice(0));b=d}else b=null;return b};gM.prototype.ia=function(a){var b=0,c=this,d=function(h,l){try{a(h,l)}catch(n){}}, -e=this.H();if(e)d(e);else{var f=dM(this.window);if(f){b=Math.min(Math.max(isFinite(b)?b:0,0),1E3);var g=this.window.setTimeout(function(){d.Rg||(d.Rg=!0,R(106),d(null,Error("Timeout")))},b);f.then(function(h){d.Rg||(d.Rg=!0,R(104),c.window.clearTimeout(g),d(h))}).catch(function(h){d.Rg||(d.Rg=!0,R(105),c.window.clearTimeout(g),d(null,h))})}else d(null)}};gM.prototype.K=function(){return this.Z!==void 0};var hM=function(){var a;a=a===void 0?w:a;return eM(a)},iM=function(a){var b={};b[F.D.fg]=a.architecture; -b[F.D.gg]=a.bitness;a.fullVersionList&&(b[F.D.hg]=a.fullVersionList.map(function(c){return encodeURIComponent(c.brand||"")+";"+encodeURIComponent(c.version||"")}).join("|"));b[F.D.ig]=a.mobile?"1":"0";b[F.D.jg]=a.model;b[F.D.kg]=a.platform;b[F.D.lg]=a.platformVersion;b[F.D.mg]=a.wow64?"1":"0";return b},jM=new gM;var kM=function(a){if(!hM())R(87);else if(jM.K()){R(85);var b=jM.H();if(b){if(b)for(var c=iM(b),d=m(Object.keys(c)),e=d.next();!e.done;e=d.next()){var f=e.value;X(a,f,c[f])}}else R(86)}};function lM(a,b){b=b===void 0?!1:b;var c=U(a,I.J.wg),d=pH(a,"custom_event_accept_rules",!1)&&!b;if(c){var e=c.indexOf(a.target.destinationId)>=0,f=!0;U(a,I.J.yc)&&(f=U(a,I.J.Jb)===em());e&&f?W(a,I.J.ui,!0):(W(a,I.J.ui,!1),d||(a.isAborted=!0));if(a.canBeAccepted()){var g=dm().indexOf(a.target.destinationId)>=0,h=!1;if(!g){var l,n=(l=Xl(a.target.destinationId))==null?void 0:l.canonicalContainerId;n&&(h=em()===n)}g||h?U(a,I.J.ui)&&a.accept():a.isAborted=!0}else a.isAborted=!0}};var mM=function(a){var b=Q(a.M,F.D.Vc),c=Q(a.M,F.D.Uc);b&&!c?(a.eventName!==F.D.xa&&a.eventName!==F.D.yf&&R(131),a.isAborted=!0):!b&&c&&(R(132),a.isAborted=!0)};var nM=function(a){if(a.eventName===F.D.xa){var b=Kf(11),c=U(a,I.J.Sq);!b&&!c||a.target.he()||jG("idc_config_pv",a.target.destinationId)||(a.isAborted=!0)}};var pM=function(a,b){oM.O(a,b)},qM=function(){this.H={}};qM.prototype.O=function(a,b){var c=this.H[a];c||(c=this.H[a]=[]);c.push(b)};qM.prototype.K=function(a){var b=this.H[a.target.destinationId];if(!a.isAborted&&b)for(var c=sH(a),d=0;d0&&X(a,F.D.Ob,x.join("."));var y=Hr(f+"_aw");y.length>0&&X(a,F.D.jb,y.join("."))}else if(!ip(a,F.D.yd)&&!ip(a,F.D.Fd)&&Ys(f)){var z=Jr(e);z.length>0&&X(a,F.D.Ob,z.join("."))}else if(!ip(a, -F.D.Ce)&&b){var C=Hr(f+"_aw");C.length>0&&X(a,F.D.jb,C.join("."))}X(a,F.D.gm,wd());a.M.isGtmEvent&&(a.M.Ma[F.D.Nc]=XC(F.D.Nc));Tt(a.M)?X(a,F.D.Xd,!1):X(a,F.D.Xd,!0);W(a,I.J.Mk,!0);var D=zM();D!==void 0&&X(a,F.D.ng,D||"error");var H=Mt();H&&X(a,F.D.Ie,H);var G=Lt();G&&X(a,F.D.Ne,G);U(a,I.J.Lc)||W(a,I.J.Ja,!1)}}; -var BM=function(a,b,c){b=b===void 0?!0:b;c=c===void 0?{}:c;if(a.eventName===F.D.Fb&&!a.M.isGtmEvent){var d=Q(a.M,F.D.Tf);if(typeof d==="function"&&!U(a,I.J.wa)){var e=String(Q(a.M,F.D.Uf)),f=e;c[e]&&(f=c[e]);var g=ip(a,f)||Q(a.M,e);if(b){if(typeof d==="function")if(e===F.D.jb&&g!==void 0){var h=g.split(".");h.length===0?d(void 0):h.length===1?d(h[0]):d(h)}else if(e===F.D.Cq&&P(258)){var l,n={};Yo(zp)&&(n.auid=ip(a,F.D.zd));var p=yM();if(xM(p))n.gad_source=p.Jg,n.gad_campaignid=p.bi,n.session_start_time_usec= -(Date.now()*1E3).toString(),n.landing_page_url=w.location.href,n.landing_page_referrer=A.referrer,n.landing_page_user_agent=Nc.userAgent;else{var q=U(a,I.J.Fa);n.gad_source=Ts(q.prefix).Kg}l=btoa(JSON.stringify(n)).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"");d(l)}else d(g)}else d(g)}a.isAborted=!0}};var CM=function(a){if(P(425)&&U(a,I.J.Tb)){for(var b=["_&apvc","tids",F.D.Va,F.D.Yi,F.D.qc,F.D.eg,F.D.Rc,F.D.Tc],c=m(ou(a)),d=c.next();!d.done;d=c.next()){var e=d.value;if(e===F.D.Ca){var f=ip(a,e);f&&(f=f.replace(/[\?#].*$/,""));X(a,e,f)}else b.includes(e)||X(a,e)}W(a,I.J.wi);W(a,I.J.Zd)}};function DM(a){if(el.H)if(hn.H=!0,a.eventName===F.D.xa)ln(a.M,a.target.id);else{U(a,I.J.Lc)||(hn.K[a.target.id]=!0);var b=U(a,I.J.Jb);RB(b)}};var EM=function(a,b){var c,d,e,f=b===void 0?{}:b;c=f.dk===void 0?!1:f.dk;d=f.Vj===void 0?!1:f.Vj;e=f.uo===void 0?!1:f.uo;d||(a.M.isGtmEvent?U(a,I.J.ba)!==T.U.ra&&a.eventName&&X(a,F.D.qc,a.eventName):X(a,F.D.qc,a.eventName));Jb(a.M.Ma,function(g,h){Hz[g]||c&&nn[g]||e&&Jz[g]||X(a,g,h)})};var FM=function(a){for(var b=m([F.D.Oa,F.D.Pa,F.D.Ya,F.D.Me,F.D.Ee,F.D.Pd,F.D.Ge,F.D.Pc,F.D.Gd,F.D.sh,F.D.th,F.D.uh,F.D.Ff,F.D.Df,F.D.Ef,F.D.Cf,F.D.Fi,F.D.Ld,F.D.Jd,F.D.Kd,F.D.rb]),c=b.next();!c.done;c=b.next())a.copyToHitData(c.value)};var GM=function(a){W(a,I.J.xg,zm.fa.Xa)};function HM(a,b){return or("gsid_dc",{value:{joinId:a,lastJoinedTimeMs:b},expires:b+3E5})===0?!0:!1}; -var IM=function(a){if((P(474)||P(475))&&Yo(zp)){var b;a:{var c=rr("gsid_dc");if(c.error===0&&c.value&&typeof c.value==="object"){var d=c.value;if(d.value&&typeof d.value==="object"){var e=d.value;if(e.joinId&&e.lastJoinedTimeMs&&typeof e.joinId==="string"&&typeof e.lastJoinedTimeMs==="number"){b=e;break a}}}b=void 0}var f=b,g=f==null?void 0:f.joinId,h=Qb();if(!f||!g||f.lastJoinedTimeMs0){f=[];for(var t=0;t0&&X(a,F.D.xh,b)};k.Cs=function(a){X(a,F.D.xh);this.Bk();this.K=0};k.ik=function(){return this.O&& -this.isVisible&&this.isActive};k.us=function(){return this.K+this.hi()};k.hi=function(){return this.H&&this.H.get()||0};k.At=function(a){this.T=a};k.No=function(a){this.Z=a};var nP=function(a){vb("GA4_EVENT",a)};var oP=function(a){var b,c=U(a,I.J.Gm);if(Array.isArray(c))for(var d=0;dc&&(c=g,b=f)}}return b}},Dq=function(a){a&&(a==="GS1"?nP(K.V.Um):a==="GS2"&&nP(K.V.Vm))},qP=function(a){var b=sP(a);if(b){var c=Number(b.o),d=Number(b.t),e=Number(b.j||0);c||nP(K.V.hn);d||nP(K.V.gn);isNaN(e)&&nP(K.V.fn);if(c&&d&&!isNaN(e)){var f=b.h,g=f&&f!=="0"?String(f):void 0,h=b.d?String(b.d):void 0,l={};return l.s=String(b.s),l.o=c,l.g=!!Number(b.g),l.t=d,l.d=h,l.j=e,l.l=b.l==="1", -l.h=g,l}}}; -var uP=function(a,b,c){if(!b)return a;if(!a)return b;var d=qP(a);if(!d)return b;var e,f=Lb((e=Q(c.M,F.D.Ih))!=null?e:30),g=U(c,I.J.sb);if(!(Math.floor(g/1E3)>d.t+f*60))return a;var h=qP(b);if(!h)return a;h.o=d.o+1;var l;return(l=tP(h))!=null?l:b},wP=function(a,b){var c=U(b,I.J.Fa),d=vP(b,c),e=sP(a);if(!e)return!1;var f=yq(c||{},void 0,void 0,zq.get(2));sq(d,void 0,f);return Eq(d,e,2,c)!==1},xP=function(a){var b=U(a,I.J.Fa),c;var d=vP(a,b),e;b:{var f=Dq,g=Wp[2];if(g){var h,l=vq(b.domain),n=wq(b.path), -p=Object.keys(g.si),q=zq.get(2),r;if(h=(r=kq(d,l,n,p,q))==null?void 0:r.Or){var t=Xp(h,2,f);e=t?Bq(t):void 0;break b}}e=void 0}if(e){var u=Aq(d,2,Dq);if(u&&u.length>1){nP(K.V.Tm);var v=pP(u);v&&v.t!==e.t&&(nP(K.V.Wm),e=v)}c=Zp(e,2)}else c=void 0;return c},yP=function(a){var b=U(a,I.J.sb),c={};c.s=ip(a,F.D.sc);c.o=ip(a,F.D.Kh);var d;d=ip(a,F.D.Jh);var e=(c.g=d,c.t=Math.floor(b/1E3),c.d=U(a,I.J.sg),c.j=U(a,I.J.tg)||0,c.l=!!U(a,I.J.Cm),c.h=ip(a,F.D.yh),c);return tP(e)},tP=function(a){if(a.s&&a.o){var b= -{},c=(b.s=a.s,b.o=String(a.o),b.g=Lb(a.g)?"1":"0",b.t=String(a.t),b.j=String(a.j),b.l=a.l?"1":"0",b.h=a.h||"0",b.d=a.d,b);return Zp(c,2)}},vP=function(a,b){return b.prefix+"_ga_"+a.target.ids[WB[6]]}; -var zP=function(){return Mk(2,function(){return!1})},AP=function(a){var b=Q(a.M,F.D.Ab),c=a.M.fb[F.D.Ab];if(c===b)return c;var d=Jd(b,null);c&&c[F.D.ya]&&(d[F.D.ya]=(d[F.D.ya]||[]).concat(c[F.D.ya]));return d},BP=function(a,b){var c=Yq(!0);return c._up!=="1"?{}:{clientId:c[a],xb:c[b]}},CP=function(a,b,c){var d=Yq(!0),e=d[b];e&&(hP(a,e,2),iP(e,a));var f=d[c];f&&wP(f,a);return{clientId:e,xb:f}},DP=function(){var a=jj(w.location,"host"),b=jj(nj(A.referrer),"host");return a&&b?a===b||a.indexOf("."+b)>= -0||b.indexOf("."+a)>=0?!0:!1:!1},EP=function(a){if(!Q(a.M,F.D.uc))return{};var b=U(a,I.J.Fa),c=b.prefix+"_ga",d=vP(a,b);fr(function(){var e;if(Yo("analytics_storage"))e={};else{var f={_up:"1"},g;g=ip(a,F.D.Gb);e=(f[c]=g,f[d]=yP(a),f)}return e},1);return!Yo("analytics_storage")&&DP()?BP(c,d):{}},FP=function(a){var b=AP(a)||{},c=U(a,I.J.Fa),d=c.prefix+"_ga",e=vP(a,c),f={};hr(b[F.D.Yf],!!b[F.D.ya])&&(f=CP(a,d,e),f.clientId&&f.xb&&Kk(2,!0));b[F.D.ya]&&er(function(){var g={},h=kP(a);h&&(g[d]=h);var l= -xP(a);l&&(g[e]=l);var n=gq("FPLC",void 0,void 0,F.D.sa);n.length&&(g._fplc=n[0]);return g},b[F.D.ya],b[F.D.Wc],!!b[F.D.rc]);return f};var GP=function(a){if(!U(a,I.J.Vd)&&Aj(a.M)){var b=AP(a)||{},c=(hr(b[F.D.Yf],!!b[F.D.ya])?Yq(!0)._fplc:void 0)||(gq("FPLC",void 0,void 0,F.D.sa).length>0?void 0:"0");X(a,"_fplc",c)}};function HP(a){(xj(EK(a))||sj())&&X(a,F.D.Am,lk()||kk());!xj(EK(a))&&sj()&&X(a,F.D.gj,"::")}function IP(a){sj()&&(xj(EK(a))||ok()||X(a,F.D.dm,!0))};var KP=function(a,b){$n("grl",function(){return JP()})(b)||(R(35),a.isAborted=!0)},JP=function(){var a=Qb(),b=a+864E5,c=20,d=5E3;return function(e){var f=Qb();f>=b&&(b=f+864E5,d=5E3);c=Math.min(c+(f-a)/1E3*5,20);a=f;var g=!1;d<1||c<1||(g=!0,d--,c--);e&&(e.Tr=d,e.Hr=c);return g}}; -var LP=function(a){var b=ip(a,F.D.Za);return hj(nj(b),"host",!0)},MP=function(a){if(Q(a.M,F.D.Xf)!==void 0)a.copyToHitData(F.D.Xf);else{var b=Q(a.M,F.D.om),c,d;a:{if(zP()){var e=AP(a)||{};if(e&&e[F.D.ya])for(var f=LP(a),g=e[F.D.ya],h=0;h=0){d=!0;break a}}d=!1}if(!(c=d)){var l;if(l=b)a:{for(var n=b.include_conditions||[],p=LP(a),q=0;q0&&(e.gaf=S.get());var V=ip(a,F.D.Sc);if(V)for(var da=m(Object.keys(V)),pa=da.next();!pa.done;pa=da.next()){var ka=pa.value;f["ext."+ka]=V[ka]||""}var na=SP(a);xg.call(this,{za:e,se:g,Tj:f},na.url,na.endpoint, -EK(a),void 0,a.target.destinationId,a.M.eventId,a.M.priorityId)};wa(ZP,xg); -var $P=function(a,b){return a.replace(/\$\{([^\}]+)\}/g,function(c,d){return b[d]||c})},aQ=function(a){var b={},c="",d=a.pathname.indexOf("/g/collect");d>=0&&(c=a.pathname.substring(0,d));b.transport_url=a.protocol+"//"+a.hostname+c;var e;try{e=encodeURIComponent(c||"/")}catch(f){e=encodeURIComponent("/")}b.encoded_path=e;return b},bQ=function(a,b){if(!P(546))return{url:a,body:b};var c=m(a.split("?")),d=c.next().value,e=c.next().value,f=NP(d,e||"",b||"",!0),g=f.Fc,h=f.jf;a=h!==""?g+"?"+h:g;b=f.body; -return{url:a,body:b}},dQ=function(a,b,c){var d=nj(b),e=aQ(d),f=bQ(Zg(d),c),g=function(h){Ew(a,f.url,f.body,new cQ(e,h))};!P(132)||Sc("; wv")||Sc("FBAN")||Sc("FBAV")||Vc()?g():SK(f.url,f.body,e,g)},cQ=function(a,b){Qw.call(this);this.templates=a;this.O=b};wa(cQ,Qw);cQ.prototype.Z=function(a){var b=$P(a,this.templates);return this.O?b.replace("_is_sw=0",this.O):b};cQ.prototype.K=function(a,b){var c=this.Z(a);Qw.prototype.K.call(this,c,b)};cQ.prototype.H=function(a,b){var c=this.Z(a);Qw.prototype.H.call(this, -c,b)}; -var eQ=function(a){return!Wb(a,qk())&&!Wb(a,rk())},gQ=function(a,b,c,d,e,f){if(!sd())return fQ(a,b,c,d),!0;Ol(c,b!==""?a+"?"+b:a,d,oa(Object,"assign").call(Object,{},e||{},{ff:!0}),void 0,f)||fQ(a,b,c,d);return!0},fQ=function(a,b,c,d){var e=b!==""?a+"?"+b:a;d?Ml(c,e,d):Ll(c,e)},iQ=function(a,b,c,d,e){var f=b,g=vd();g!==void 0&&(f+="&tfd="+Math.round(g));b=f;var h=a+"?"+b;if(!xj(d)||yj(d)||cP()){var l=NP(a,b,c,xj(d));a=l.Fc;b=l.jf;c=l.body;gQ(a,b,e,c,void 0,hQ(a,b,e,c))||fQ(a,b,e,c)}else dQ(e,h,c); -xj(d)&&P(564)&&sd()&&Xb(a,"/g/collect")&&w.fetch(a.substring(0,a.length-10),{method:"POST",body:"CjAOATwcCBgO",credentials:"omit"})},hQ=function(a,b,c,d){if(!eQ(a)){var e=xk[67](void 0);if(e)return function(){var f;a:{var g;try{g=new URLSearchParams(b)}catch(p){f=void 0;break a}var h=0,l=Number(g.get("gaf"));Number.isInteger(l)&&(h=l);var n=new ir(h);jr(n,1);n.value!==0?(g.set("gaf",n.get().toString()),f=g.toString()):f=void 0}gQ(e,f||b,oa(Object,"assign").call(Object,{},c,{endpoint:67}),d,c.endpoint=== -17?void 0:{credentials:"omit"})}}},jQ=function(a,b,c){var d=[],e=function(h){d.push(h+"="+encodeURIComponent(""+a.za[h]))};d.push("v=2");e("_gsid");e("gtm");a.za._geo&&e("_geo");var f="https://{ga4CollectionSubdomain.}google-analytics.com/g/s/collect".replace("{ga4CollectionSubdomain.}",(b||"www")+"."),g=d.join("&");fQ(f,g,{destinationId:a.destinationId||"",endpoint:62,eventId:a.eventId,priorityId:a.priorityId});Lo({targetId:String(a.za.tid),request:{url:f+"?"+g,parameterEncoding:2,endpoint:62},nb:c})}, -kQ=function(a,b,c){var d="https://{ga4CollectionSubdomain.}analytics.google.com/g/s/collect".replace("{ga4CollectionSubdomain.}",b?b+".":""),e=[],f=function(h){e.push(h+"="+encodeURIComponent(""+a.za[h]))};f("_gsid");f("gtm");a.za._geo&&f("_geo");var g=e.join("&");fQ(d,g,{destinationId:a.destinationId||"",endpoint:18,eventId:a.eventId,priorityId:a.priorityId});Lo({targetId:String(a.za.tid),request:{url:d+"?"+g,parameterEncoding:2,endpoint:18},nb:c})},lQ=function(a,b,c,d,e,f){c&&b.push("tag_exp="+ -c);b.push("z="+Gb());if(!e){var g=d&&Wb(d,"google.")&&d!=="google.com"?"https://www.%/ads/ga-audiences?v=1&t=sr&slf_rd=1&_r=4&".replace("%",d):void 0;if(g){var h=g+b.join("&");Nl({destinationId:a.destinationId||"",endpoint:47,eventId:a.eventId,priorityId:a.priorityId},h);Lo({targetId:String(a.za.tid),request:{url:h,parameterEncoding:2,endpoint:47},nb:f})}}},mQ=function(a,b,c,d){c&&b.push("tag_exp="+c);fQ("https://stats.g.doubleclick.net/g/collect","v=2&"+b.join("&"),{destinationId:a.destinationId|| -"",endpoint:19,eventId:a.eventId,priorityId:a.priorityId});Lo({targetId:String(a.za.tid),request:{url:"https://stats.g.doubleclick.net/g/collect?v=2&"+b.join("&"),parameterEncoding:2,endpoint:19},nb:d})},nQ=function(a,b){function c(v){q.push(v+"="+encodeURIComponent(""+a.za[v]))}var d=b.It,e=b.Lt,f=b.Kt,g=b.Jt,h=b.ws,l=b.Ns,n=b.es,p=b.Qt;if(d||e||f||g){var q=[];a.za._ng&&c("_ng");a.za.ngs&&c("ngs");a.za.ibt&&c("ibt");c("tid");c("cid");c("gtm");for(var r=m($E),t=r.next();!t.done;t=r.next()){var u= -t.value;a.za[u]!=null&&c(u)}q.push("aip=1");a.se.uid&&q.push("uid="+encodeURIComponent(""+a.se.uid));c("dma");a.za.dma_cps!=null&&c("dma_cps");a.za.gcs!=null&&c("gcs");c("gcd");a.za.npa!=null&&c("npa");a.za.frm!=null&&c("frm");d&&mQ(a,q.slice(),p,b.nb);e&&lQ(a,q.slice(),p,h,l,b.nb);f&&kQ(a,n,b.nb);g&&jQ(a,n,b.nb)}},oQ=function(){this.T=1;this.Z={};this.K=-1;this.H=new yg};oQ.prototype.O=function(a,b){var c=this,d=new ZP(a,this.Z,b),e={eventId:a.M.eventId,priorityId:a.M.priorityId},f=dP(a),g,h;f&& -this.H.T(d)||this.flush();var l=f&&this.H.add(d);if(l){if(this.K<0){var n=w,p=n.setTimeout,q;xj(EK(a))?pQ?(pQ=!1,q=qQ):q=rQ:q=5E3;this.K=p.call(n,function(){c.flush()},q)}}else{var r=Bg(d,this.T++),t=r.params,u=r.body;g=t;h=u;Zx(3,a.eventName);iQ(d.baseUrl,t,u,d.O,{destinationId:a.target.destinationId,endpoint:d.endpoint,eventId:d.eventId,priorityId:d.priorityId});var v=U(a,I.J.Zd),x=U(a,I.J.vg),y=U(a,I.J.Wh),z=U(a,I.J.Vh),C=Q(a.M,F.D.Ei)!==!1,D=Tt(a.M),H={It:v,Lt:x,Kt:y,Jt:z,ws:pk(),uv:C,tv:D,Ns:mk(), -nb:e,M:a.M,es:ok(),Qt:xp(a)};nQ(d,H)}fl()&&kz(a.M.eventId);Mo(function(){if(l){var G=Bg(d),J=G.body;g=G.params;h=J}return{targetId:a.target.destinationId,request:{url:d.baseUrl+"?"+g,parameterEncoding:2,postBody:h,endpoint:d.endpoint},nb:e,isBatched:!1}})};oQ.prototype.add=function(a){DK(a)&&!cP()?this.ia(a):this.O(a)};oQ.prototype.flush=function(){if(this.H.events.length){var a=Dg(this.H,this.T++);iQ(this.H.baseUrl,a.params,a.body,this.H.K,{destinationId:this.H.destinationId||"",endpoint:this.H.endpoint, -eventId:this.H.Z,priorityId:this.H.ia});this.H=new yg;this.K>=0&&(w.clearTimeout(this.K),this.K=-1)}};oQ.prototype.ia=function(a){var b=this,c=DK(a);P(568)&&!P(586)&&ip(a,F.D.wc)==="a"&&(c=nv(c));if(Mv(c)){var d=Dv(c);d?d.then(function(f){b.O(a,f)},function(){b.O(a)}):this.O(a)}else{var e=Lv(c);this.O(a,e)}};var qQ=Pf(24,500),rQ=Pf(56,5E3),pQ=!0;var sQ=function(a){var b=Tt(a.M);Q(a.M,F.D.Rb)===!0&&(b=!1);W(a,I.J.pd,b)}; -var tQ=function(a,b,c){c===void 0&&(c={});if(b==null)return c;if(typeof b==="object")for(var d=m(Object.keys(b)),e=d.next();!e.done;e=d.next()){var f=e.value;tQ(a+"."+f,b[f],c)}else c[a]=b;return c},uQ=function(a){for(var b={},c=m(a),d=c.next();!d.done;d=c.next()){var e=d.value;b[e]=!!Yo(e)}return b},wQ=function(a,b){var c=vQ.filter(function(e){return!Yo(e)});if(c.length){var d=uQ(c);ap(c,function(){for(var e=uQ(c),f=[],g=m(c),h=g.next();!h.done;h=g.next()){var l=h.value;!d[l]&&e[l]&&f.push(l);e[l]&& -(d[l]=!0)}if(f.length){W(b,I.J.Qh,!0);var n=f.map(function(p){return xn[p]}).join(".");n&&BK(b,"gcut",n);sQ(b);a(b)}})}},xQ=function(a){ip(a,F.D.Sc)&&!xj(EK(a))&&X(a,F.D.Sc)},yQ=function(a){xj(EK(a))&&BK(a,"navt",wd())},zQ=function(a){xj(EK(a))&&BK(a,"lpc",mr())},AQ=function(a){if(xj(EK(a))){var b=Q(a.M,F.D.Rb),c;b===!0&&(c="1");b===!1&&(c="0");c&&BK(a,"rdp",c)}},BQ=function(a,b){if(xj(EK(b))){var c=U(b,I.J.pg);(b.eventName==="page_view"||c)&&wQ(a,b)}},CQ=function(a){if(xj(EK(a))&&a.eventName===F.D.yf&& -U(a,I.J.Qh)){var b=ip(a,F.D.Gi);b&&(BK(a,"gcut",b),BK(a,"syn",1))}},DQ=function(a){xj(EK(a))&&W(a,I.J.Ja,!1)},EQ=function(a){xj(EK(a))&&(U(a,I.J.Ja)&&BK(a,"sp",1),U(a,I.J.Tq)&&BK(a,"syn",1),U(a,I.J.Lc)&&(BK(a,"em_event",1),BK(a,"sp",1)))},FQ=function(a){if(xj(EK(a))){var b=Lk(25);b&&BK(a,"tft",Number(b))}},GQ=function(a){function b(e){var f=tQ(F.D.vc,e);Jb(f,function(g,h){X(a,g,h)})}if(xj(EK(a))){var c=pH(a,"ccd_add_1p_data",!1)?1:0;BK(a,"ude",c);var d=Q(a.M,F.D.vc);d!==void 0?(bv(d),b(d),X(a,F.D.wc, -"c")):b(U(a,I.J.cb));W(a,I.J.cb)}},HQ=function(a){if(xj(EK(a))){var b=zM();b&&BK(a,"us_privacy",b);var c=Mt();c&&BK(a,"gdpr",c);var d=Lt();d&&BK(a,"gdpr_consent",d);var e=vE.gppString;e&&BK(a,"gpp",e);var f=vE.H;f&&BK(a,"gpp_sid",f)}},IQ=function(a){xj(EK(a))&&Lm()&&Q(a.M,F.D.kb)&&BK(a,"adr",1)},JQ=function(a){if(xj(EK(a))){var b=ok();b&&BK(a,"gcsub",b)}},KQ=function(a){if(xj(EK(a))){Q(a.M,F.D.Oc,void 0,4)===!1&&BK(a,"ngs",1);mk()&&BK(a,"ga_rd",1);AK()||BK(a,"ngst",1);var b=pk();b&&BK(a,"etld",b)}}, -LQ=function(a){},MQ=function(a){xj(EK(a))&&Lm()&&BK(a,"rnd",uM())},vQ=[F.D.ja,F.D.ka,F.D.Ta]; -var NQ=function(a,b){var c;a:{if(!U(a,I.J.Tb)){var d=yP(a);if(d){if(wP(d,a)){c=d;break a}R(25);a.isAborted=!0}}c=void 0}var e=c;return{clientId:jP(a,b),xb:e}},OQ=function(a,b,c,d,e){var f=Cn(Q(a.M,F.D.Gb));if(Q(a.M,F.D.Vc)&&Q(a.M,F.D.Uc))f?hP(a,f,1):(R(127),a.isAborted=!0);else{var g=f?1:8;W(a,I.J.Rh,!1);f||(f=kP(a),g=3);f||(f=b,g=5);if(!f){var h=Yo(F.D.sa),l=eP();f=!l.from_cookie||h?l.vid:void 0;g=6}f?f=""+f:(f=Du(),g=7,W(a,I.J.qg,!0),W(a,I.J.Rh,!0));hP(a,f,g)}ip(a,F.D.Gb);if(!U(a,I.J.Tb)){var n; -n=U(a,I.J.sb);var p=Math.floor(n/1E3),q=void 0;U(a,I.J.Rh)||(q=xP(a)||c);var r=Lb(Q(a.M,F.D.Ih,30));r=Math.min(475,r);r=Math.max(5,r);var t=Lb(Q(a.M,F.D.Xi,1E4)),u=qP(q);W(a,I.J.qg,!1);W(a,I.J.Qe,!1);W(a,I.J.tg,0);u&&u.j&&W(a,I.J.tg,Math.max(0,u.j-Math.max(0,p-u.t)));var v=!1;if(!u){W(a,I.J.qg,!0);v=!0;var x={};u=(x.s=String(p),x.o=1,x.g=!1,x.t=p,x.l=!1,x.h=void 0,x)}p>u.t+r*60&&(v=!0,u.s=String(p),u.o++,u.g=!1,u.h=void 0);if(v)W(a,I.J.Qe,!0),d.Cs(a);else if(d.us()>t||a.eventName===F.D.mc)u.g=!0; -U(a,I.J.og)?Q(a.M,F.D.ab)?u.l=!0:u.l=!1:u.l=!1;var y=u.h;if(U(a,I.J.og)||xj(EK(a))){var z=Q(a.M,F.D.yh),C=z?1:8;z||(z=y,C=4);z||(z=Cu(),C=7);var D=z.toString(),H=C,G=U(a,I.J.El);if(G===void 0||H<=G)X(a,F.D.yh,D),W(a,I.J.El,H)}e?(a.copyToHitData(F.D.sc,u.s),a.copyToHitData(F.D.Kh,u.o),a.copyToHitData(F.D.Jh,u.g?1:0)):(X(a,F.D.sc,u.s),X(a,F.D.Kh,u.o),X(a,F.D.Jh,u.g?1:0));W(a,I.J.Cm,u.l?1:0);sj()&&W(a,I.J.sg,u.d||hc())}}; -var PQ=function(a){var b=a.indexOf("?"),c=b===-1?a:a.substring(0,b),d=gj(c);d&&(c=d);return b===-1?c:""+c+a.substring(b)},QQ=function(a){if(!Q(a.M,F.D.Uc)||!Q(a.M,F.D.Vc)){var b=a.copyToHitData,c=F.D.Ca,d="",e=A.location;if(e){var f=e.pathname||"";f.charAt(0)!=="/"&&(f="/"+f);var g=e.search||"";if(g[0]==="?")for(var h=g.substring(1).split("&"),l=0;l=0)a.isAborted=!0;else{var b=CK(a);b&&b.blacklisted&&(a.isAborted=!0)}},YQ={Yr:Nf(31)};function $Q(a){var b=function(c){return!!c&&c.conversion};W(a,I.J.pg,b(CK(a)));U(a,I.J.qg)&&W(a,I.J.mn,b(CK(a,"first_visit")));U(a,I.J.Qe)&&W(a,I.J.on,b(CK(a,"session_start")))};var aR=function(a){rn.hasOwnProperty(a.eventName)&&(W(a,I.J.kn,!0),a.copyToHitData(F.D.Ga),a.copyToHitData(F.D.Ya))};var bR=function(a){U(a,I.J.Vd)?W(a,I.J.og,!1):pH(a,"ccd_add_ec_stitching",!1)&&W(a,I.J.og,!0)};var cR=function(a){var b=U(a,I.J.tg);b=b||0;var c=!!U(a,I.J.wa),d=b===0||c;W(a,I.J.nj,d);d&&W(a,I.J.tg,60)};var eR=function(a){for(var b={},c=String(dR.cookie).split(";"),d=0;d0&&nP(K.V.sn);yL(a);OQ(a,this.clientId,this.xb,this.K,!this.ma);SQ(a);QQ(a);sR(a);BL(a);kR(a,this.Z);cR(a);$Q(a);aR(a);BR(a);GP(a);MP(a);aM(a);MQ(a);LQ(a);KQ(a);JQ(a);IQ(a);HQ(a);FQ(a);EQ(a);CQ(a);AQ(a);zQ(a);yQ(a);HP(a);IP(a);Q(a.M,F.D.Hh)&&!xj(EK(a))||kM(a);yR(a);AR(a);OM(a);zL(a);wL(a);RM(a);NM(a);BM(a,!1);XQ(a);vR(a);DR(a);rM(a);WQ(a);UQ(a);GQ(a);DQ(a);xQ(a);VQ(a);!this.O&&U(a,I.J.Lc)&&nP(K.V.Dl);oP(a);if(P(575)){if(a.isAborted){if(!U(a,I.J.ep))a.M.onFailure(); -wb();return}if(U(a,I.J.Ja)){a.M.onFailure();wb();return}}else if(U(a,I.J.Ja)||a.isAborted){a.M.onFailure();wb();return}this.Lo(NQ(a,this.clientId));this.ma=!0;this.Rt(a);nR(a);BQ(function(f){b.Wn(f)},a);this.K.Bk();pR(a);MM(a);AL(a);CM(a);if(a.isAborted){a.M.onFailure();wb();return}this.Wn(a);a.M.onSuccess()}catch(f){a.M.onFailure()}wb()};k.Wn=function(a){this.ia.add(a)};k.Lo=function(a){var b=a.clientId,c=a.xb;b&&c&&(this.clientId=b,this.xb=c)};k.flush=function(){this.ia.flush()};k.Rt=function(a){var b= -this;if(!this.T){var c=Yo(F.D.ka),d=Yo(F.D.sa);ap([F.D.ka,F.D.sa,F.D.ja],function(e){var f;f=(e===void 0?{}:e).consentEventId;var g=Yo(F.D.ka),h=Yo(F.D.sa),l=!1,n={},p={};if(d!==h&&b.H&&b.xb&&b.clientId){var q=b.clientId,r;var t=qP(b.xb);r=t?t.h:void 0;if(h){var u=kP(b.H);if(u){b.clientId=u;var v=xP(b.H);v&&(b.xb=uP(v,b.xb,b.H))}else iP(b.clientId,b.H),fP(b.clientId,!0);wP(b.xb,b.H);l=!0;n[F.D.Xl]=q;r&&(n[F.D.nq]=r)}else b.xb=void 0,b.clientId=void 0,w.gaGlobal={}}g&&!c&&(l=!0,p[I.J.Qh]=!0,n[F.D.Gi]= -xn[F.D.ka]);if(l){var x=kC(b.Da,F.D.yf,n);cD(x,f!=null?f:a.M.eventId,{eventMetadata:p})}d=h;c=g;b.Z.gk=!0});this.T=!0}};k.Wq=function(a){a.eventName!==F.D.Fb&&this.K.Vq(a)};var KR=function(a){if(!JR(a)){var b=!1,c=function(){!b&&JR(a)&&(b=!0,fd(A,"visibilitychange",c),fd(A,"prerenderingchange",c),R(55))};ed(A,"visibilitychange",c);ed(A,"prerenderingchange",c);R(54)}},JR=function(a){if("prerendering"in A?A.prerendering:A.visibilityState==="prerender")return!1;a();return!0};function LR(a){KR(function(){var b=UB(a);if(b){var c=MR(b),d=zm.fa.rd,e=PC(),f=UB(a,!0);f&&e.H.register(f,c,d,void 0)}});}function MR(a){var b=function(){};var c=new IR(a.id),d=a.prefix==="MC";b=function(e,f,g,h){d&&(h.eventMetadata[I.J.Vd]=!0);c.st(f,g,h)};NR(a,c);return b} -function NR(a,b){var c=b.K;c.At(function(){Kk(9,!0);PC().flush();if(c.hi()>=1E3&&pd()){var d={},e={eventId:ho(),eventMetadata:(d[I.J.Uk]=!0,d),deferrable:!0};QC(F.D.yf,{},a.id,e)}b.flush();c.No(function(){Kk(9,!1);c.No()})});}var OR=K.V.Bl,PR=K.V.Cl;function QR(a,b){var c=cm();c&&c.indexOf(b)>-1&&(a[I.J.yc]=!0)}function SR(a,b,c){var d=this;}SR.P="internal.gtagConfig";function TR(a,b,c){var d=this;}TR.P="internal.gtagDestinationConfig"; -function VR(a,b){} -VR.publicName="gtagSet";function WR(){var a={};return a};function YR(a){}YR.P="internal.initializeServiceWorker";function ZR(a,b){}ZR.publicName="injectHiddenIframe";function $R(a,b,c,d,e){}$R.P="internal.injectHtml";var eS={dl:1,id:1}; -function fS(a,b,c,d){}fS.publicName="injectScript";function gS(){var a=hk,b=!1;b=!!a.H["5"];return b}gS.P="internal.isAutoPiiEligible";function hS(a){var b=!0;return b}hS.publicName="isConsentGranted";function iS(a){var b=!1;return b}iS.P="internal.isDebugMode";function jS(){return nk()}jS.P="internal.isDmaRegion";function kS(){return MB()}kS.P="internal.isDomReady";function lS(a){var b=!1;return b}lS.P="internal.isEntityInfrastructure";function mS(a){var b=!1;if(!th(a))throw L(this.getName(),["number"],[a]);b=P(a);return b}mS.P="internal.isFeatureEnabled";function nS(){var a=!1;return a}nS.P="internal.isFpfe";function oS(){var a=!1;return a}oS.P="internal.isGcpBrowser";function pS(){var a=!1;return a}pS.P="internal.isLandingPage";function qS(){var a=!1;return a}qS.P="internal.isOgt";function rS(){var a;return a}rS.P="internal.isSafariPcmEligibleBrowser";function sS(){var a=Sh(function(b){iF(this).log("error",b)});a.publicName="JSON";return a};function tS(a){var b=void 0;return Xd(b)}tS.P="internal.legacyParseUrl";function uS(){return!1} -var vS={getItem:function(a){var b=null;return b},setItem:function(a,b){return!1},removeItem:function(a){}};function wS(){}wS.publicName="logToConsole";function xS(a,b){if(!M(a)||!ih(b))throw L(this.getName(),["string","Object"],arguments);var c=a,d=B(b,this.R),e=PC(),f=UB(c,!0);f&&LC(e.H,f,d);}xS.P="internal.mergeRemoteConfig";function yS(a,b,c){c=c===void 0?!0:c;var d=[];return Xd(d)}yS.P="internal.parseCookieValuesFromString";function zS(a){var b=void 0;if(typeof a!=="string")return;a&&Wb(a,"//")&&(a=A.location.protocol+a);if(typeof URL==="function"){var c;a:{var d;try{d=new URL(a)}catch(x){c=void 0;break a}for(var e={},f=Array.from(d.searchParams),g=0;g0&&e.charAt(0)!=="."&&(f--,e="."+e);if(f>=0&&c.indexOf(e,f)===f)return!0}}return!1} -function FT(a,b,c){for(var d={},e=!1,f=0;a&&f-1)return;break;case "css":if(d==="none")break;if(d==="any"||f.indexOf(n)>-1)return;break;default:throw g(h,{},"Unknown selector type "+l+".");}throw g(h,{},"Prohibited selector value "+n+" for selector type "+l+".");},aa:a}})}(); - - - -function NT(){var a={},b={dataLayer:oA,callback:function(c){a.hasOwnProperty(c)&&Bb(a[c])&&a[c]();delete a[c]},bootstrap:0};return b} -function OT(){var a=NT();eo(a);lm();eA();var b=Mk(27,function(){return{}});Ub(b,Z.securityGroups);var c=hm(im()),d,e=c==null?void 0:(d=c.context)==null?void 0:d.source;Jo(e,c==null?void 0:c.parent);e!==2&&e!==4&&e!==3||R(142);return a}function PT(){var a=E(60);if(a)for(var b=a.split("."),c=0;c0&&Tk("jsm",ah.join("~"));Vi.length>0&&Tk("jsp",Vi.join("~"));Yx||(Yx=new Xx)}sE();Vj(1);QF();return H} -function gk(){try{if(Kf(47)||!xm()){Kf(64)&&Si.H.K.add(118517917);Wi();fl()&&cz();Yf[5]=!0;var a=$n("debugGroupId",function(){return String(Math.floor(Number.MAX_SAFE_INTEGER*Math.random()))});Ro(a);lt();NE();Gt();HB();if(mm()){E(5);PF();cB().removeExternalRestrictions(em());}else{jM.T();QT().bootstrap=Qb();Kf(51)&&ED();fl()&&dz(); -typeof w.name==="string"&&Wb(w.name,"web-pixel-sandbox-CUSTOM")&&yd()?BT("dMDg0Yz"):w.Shopify&&(BT("dN2ZkMj"),yd()&&BT("dNTU0Yz"));PT()}}}catch(b){Vj(5),Sy()}} -(function(a){function b(){n=A.documentElement.getAttribute("data-tag-assistant-present");wo(n)&&(l=h.Hm)}function c(){l&&Qc?g(l):a()}if(!w[E(37)]){var d=!1;if(A.referrer){var e=nj(A.referrer);d=jj(e,"host")===E(38)}if(!d){var f=gq(E(39));d=!(!f.length||!f[0].length)}d&&(w[E(37)]=!0,$c(E(40)))}var g=function(u){var v="GTM",x="GTM";Kf(45)&&(v="OGT",x="GTAG");var y=E(23),z=w[y];z||(z=[],w[y]=z,$c("https://"+E(3)+"/debug/bootstrap?id="+E(5)+"&src="+x+"&cond="+String(u)+">m="+eu()));var C={messageType:"CONTAINER_STARTING", -data:{scriptSource:Qc,containerProduct:v,debug:!1,id:E(5),targetRef:{ctid:E(5),isDestination:bm(),canonicalId:E(6)},aliases:fm(),destinations:cm()}};C.data.resume=function(){a()};Kf(2)&&(C.data.initialPublish=!0);z.push(C)},h={Rq:1,Zm:2,yn:3,tl:4,Hm:5};h[h.Rq]="GTM_DEBUG_LEGACY_PARAM";h[h.Zm]="GTM_DEBUG_PARAM";h[h.yn]="REFERRER";h[h.tl]="COOKIE";h[h.Hm]="EXTENSION_PARAM";var l=void 0,n=void 0,p=hj(w.location,"query",!1,void 0,"gtm_debug");wo(p)&&(l=h.Zm);if(!l&&A.referrer){var q=nj(A.referrer);jj(q, -"host")===E(24)&&(l=h.yn)}if(!l){var r=gq("__TAG_ASSISTANT");r.length&&r[0].length&&(l=h.tl)}l||b();if(!l&&vo(n)){var t=!1;ed(A,"TADebugSignal",function(){t||(t=!0,b(),c())},!1);w.setTimeout(function(){t||(t=!0,b(),c())},200)}else c()})(function(){!Kf(47)||fk()["0"]?gk():jk()}); - -})() - diff --git a/chrono.docs/Master of Ceremonies_files/livewire.min.js.download b/chrono.docs/Master of Ceremonies_files/livewire.min.js.download deleted file mode 100644 index 8f1ff5d..0000000 --- a/chrono.docs/Master of Ceremonies_files/livewire.min.js.download +++ /dev/null @@ -1,128 +0,0 @@ -(()=>{var xf=Object.create;var Ra=Object.defineProperty;var Ef=Object.getOwnPropertyDescriptor;var Sf=Object.getOwnPropertyNames;var Af=Object.getPrototypeOf,Cf=Object.prototype.hasOwnProperty;var Of=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var kf=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Sf(t))!Cf.call(e,i)&&i!==r&&Ra(e,i,{get:()=>t[i],enumerable:!(n=Ef(t,i))||n.enumerable});return e};var Tf=(e,t,r)=>(r=e!=null?xf(Af(e)):{},kf(t||!e||!e.__esModule?Ra(r,"default",{value:e,enumerable:!0}):r,e));var Tc=Of((va,kc)=>{(function(e,t){typeof define=="function"&&define.amd?define(t):typeof va=="object"?kc.exports=t():e.NProgress=t()})(va,function(){var e={};e.version="0.2.0";var t=e.settings={minimum:.08,easing:"ease",positionUsing:"",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,showSpinner:!0,barSelector:'[role="bar"]',spinnerSelector:'[role="spinner"]',parent:"body",template:'
'};e.configure=function(d){var p,m;for(p in d)m=d[p],m!==void 0&&d.hasOwnProperty(p)&&(t[p]=m);return this},e.status=null,e.set=function(d){var p=e.isStarted();d=r(d,t.minimum,1),e.status=d===1?null:d;var m=e.render(!p),g=m.querySelector(t.barSelector),h=t.speed,v=t.easing;return m.offsetWidth,o(function(y){t.positionUsing===""&&(t.positionUsing=e.getPositioningCSS()),a(g,i(d,h,v)),d===1?(a(m,{transition:"none",opacity:1}),m.offsetWidth,setTimeout(function(){a(m,{transition:"all "+h+"ms linear",opacity:0}),setTimeout(function(){e.remove(),y()},h)},h)):setTimeout(y,h)}),this},e.isStarted=function(){return typeof e.status=="number"},e.start=function(){e.status||e.set(0);var d=function(){setTimeout(function(){!e.status||(e.trickle(),d())},t.trickleSpeed)};return t.trickle&&d(),this},e.done=function(d){return!d&&!e.status?this:e.inc(.3+.5*Math.random()).set(1)},e.inc=function(d){var p=e.status;return p?(typeof d!="number"&&(d=(1-p)*r(Math.random()*p,.1,.95)),p=r(p+d,0,.994),e.set(p)):e.start()},e.trickle=function(){return e.inc(Math.random()*t.trickleRate)},function(){var d=0,p=0;e.promise=function(m){return!m||m.state()==="resolved"?this:(p===0&&e.start(),d++,p++,m.always(function(){p--,p===0?(d=0,e.done()):e.set((d-p)/d)}),this)}}(),e.render=function(d){if(e.isRendered())return document.getElementById("nprogress");l(document.documentElement,"nprogress-busy");var p=document.createElement("div");p.id="nprogress",p.innerHTML=t.template;var m=p.querySelector(t.barSelector),g=d?"-100":n(e.status||0),h=document.querySelector(t.parent),v;return a(m,{transition:"all 0 linear",transform:"translate3d("+g+"%,0,0)"}),t.showSpinner||(v=p.querySelector(t.spinnerSelector),v&&f(v)),h!=document.body&&l(h,"nprogress-custom-parent"),h.appendChild(p),p},e.remove=function(){u(document.documentElement,"nprogress-busy"),u(document.querySelector(t.parent),"nprogress-custom-parent");var d=document.getElementById("nprogress");d&&f(d)},e.isRendered=function(){return!!document.getElementById("nprogress")},e.getPositioningCSS=function(){var d=document.body.style,p="WebkitTransform"in d?"Webkit":"MozTransform"in d?"Moz":"msTransform"in d?"ms":"OTransform"in d?"O":"";return p+"Perspective"in d?"translate3d":p+"Transform"in d?"translate":"margin"};function r(d,p,m){return dm?m:d}function n(d){return(-1+d)*100}function i(d,p,m){var g;return t.positionUsing==="translate3d"?g={transform:"translate3d("+n(d)+"%,0,0)"}:t.positionUsing==="translate"?g={transform:"translate("+n(d)+"%,0)"}:g={"margin-left":n(d)+"%"},g.transition="all "+p+"ms "+m,g}var o=function(){var d=[];function p(){var m=d.shift();m&&m(p)}return function(m){d.push(m),d.length==1&&p()}}(),a=function(){var d=["Webkit","O","Moz","ms"],p={};function m(y){return y.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,function(x,A){return A.toUpperCase()})}function g(y){var x=document.body.style;if(y in x)return y;for(var A=d.length,S=y.charAt(0).toUpperCase()+y.slice(1),b;A--;)if(b=d[A]+S,b in x)return b;return y}function h(y){return y=m(y),p[y]||(p[y]=g(y))}function v(y,x,A){x=h(x),y.style[x]=A}return function(y,x){var A=arguments,S,b;if(A.length==2)for(S in x)b=x[S],b!==void 0&&x.hasOwnProperty(S)&&v(y,S,b);else v(y,A[1],A[2])}}();function s(d,p){var m=typeof d=="string"?d:c(d);return m.indexOf(" "+p+" ")>=0}function l(d,p){var m=c(d),g=m+p;s(m,p)||(d.className=g.substring(1))}function u(d,p){var m=c(d),g;!s(d,p)||(g=m.replace(" "+p+" "," "),d.className=g.substring(1,g.length-1))}function c(d){return(" "+(d.className||"")+" ").replace(/\s+/gi," ")}function f(d){d&&d.parentNode&&d.parentNode.removeChild(d)}return e})});var zr=class{constructor(){this.arrays={}}add(t,r){this.arrays[t]||(this.arrays[t]=[]),this.arrays[t].push(r)}remove(t){this.arrays[t]&&delete this.arrays[t]}get(t){return this.arrays[t]||[]}each(t,r){return this.get(t).forEach(r)}},We=class{constructor(){this.arrays=new WeakMap}add(t,r){this.arrays.has(t)||this.arrays.set(t,[]),this.arrays.get(t).push(r)}remove(t){this.arrays.has(t)&&this.arrays.delete(t,[])}get(t){return this.arrays.has(t)?this.arrays.get(t):[]}each(t,r){return this.get(t).forEach(r)}};function Jr(e,t,r={},n=!0){e.dispatchEvent(new CustomEvent(t,{detail:r,bubbles:n,composed:!0,cancelable:!0}))}function Vr(e,t,r){return e.addEventListener(t,r),()=>e.removeEventListener(t,r)}function Gr(e){return typeof e=="object"&&e!==null}function qe(e){return Gr(e)&&!Se(e)}function Se(e){return Array.isArray(e)}function _i(e){return typeof e=="function"}function Kr(e){return typeof e!="object"||e===null}function ze(e){return JSON.parse(JSON.stringify(e))}function Mf(e,t){return JSON.stringify(e)===JSON.stringify(t)}function xi(e){return e===""?[]:e.replace(/\[(['"]?)(.+?)\1\]/g,".$2").replace(/^\./,"").split(".")}function q(e,t){return t===""?e:xi(t).reduce((r,n)=>r?.[n],e)}function Ke(e,t,r){let n=xi(t);if(n.length===1)return e[n[0]]=r;let i=n.shift(),o=n.join("."),a=n[0];e[i]===void 0&&(e[i]={}),Se(e[i])&&Nf(a)&&parseInt(a)>e[i].length&&(e[i]={...e[i]}),Ke(e[i],o,r)}function Nf(e){return!isNaN(parseInt(e))}function Ei(e,t){let r=xi(t);if(r.length===1){Array.isArray(e)?e.splice(r[0],1):delete e[r[0]];return}let n=r.shift(),i=r.join(".");e[n]!==void 0&&Ei(e[n],i)}function Si(e,t,r={},n=""){if(e===t)return r;if(typeof e!=typeof t||qe(e)&&Se(t)||Se(e)&&qe(t)||Kr(e)||Kr(t))return r[n]=t,r;let i=Object.keys(e),o=Object.keys(t);return qe(e)&&i.some((a,s)=>a!==o[s])?(r[n]=t,r):(Object.entries(t).forEach(([a,s])=>{r={...r,...Si(e[a],t[a],r,n===""?a:`${n}.${a}`)},i=i.filter(l=>l!==a)}),i.forEach(a=>{r[`${n}.${a}`]="__rm__"}),r)}function $a(e,t){let r={};return Ba(e,t,"",r,e,t),r}function Ba(e,t,r,n,i,o){if(e===t)return{changed:!1,consolidated:!1};let a=!1,s=g=>Se(g)&&Object.keys(g).some(h=>isNaN(parseInt(h)));if(typeof e!=typeof t||qe(e)&&Se(t)||Se(e)&&qe(t))if(Se(e)&&e.length===0&&qe(t))e={},a=!0;else if(e==null&&qe(t))e={},a=!0;else return n[r]=t,{changed:!0,consolidated:!1};if(Se(e)&&Se(t)&&s(t)&&Object.keys(e).length===0&&(a=!0),Kr(e)||Kr(t))return n[r]=t,{changed:!0,consolidated:!1};let l=Object.keys(e),u=Object.keys(t);if(l.length!==u.length&&!a)return r===""?(Object.keys(t).forEach(g=>{Mf(e[g],t[g])||(n[g]=t[g])}),{changed:!0,consolidated:!0}):(n[r]=q(o,r),{changed:!0,consolidated:!0});if(qe(e)&&l.length===u.length&&l.some((g,h)=>g!==u[h])&&r!=="")return n[r]=q(o,r),{changed:!0,consolidated:!0};if(!l.every(g=>u.includes(g))&&!a&&r!=="")return n[r]=q(o,r),{changed:!0,consolidated:!0};let f={},d=0,p=0,m=u.length;return u.forEach(g=>{let h=r===""?g:`${r}.${g}`,v=Ba(e[g],t[g],h,f,i,o);v.changed&&d++,v.consolidated&&p++}),r!==""&&m>1&&d===m&&p===0&&!a?(n[r]=q(o,r),{changed:!0,consolidated:!0}):(Object.assign(n,f),{changed:d>0,consolidated:p>0||a})}function nt(e){let t=La(e)?e[0]:e,r=La(e)?e[1]:void 0;return Gr(t)&&Object.entries(t).forEach(([n,i])=>{t[n]=nt(i)}),t}function La(e){return Array.isArray(e)&&e.length===2&&typeof e[1]=="object"&&Object.keys(e[1]).includes("s")}function Xr(){if(document.querySelector('meta[name="csrf-token"]'))return document.querySelector('meta[name="csrf-token"]').getAttribute("content");if(document.querySelector("[data-csrf]"))return document.querySelector("[data-csrf]").getAttribute("data-csrf");if(window.livewireScriptConfig.csrf??!1)return window.livewireScriptConfig.csrf;throw"Livewire: No CSRF token detected"}var kt;function Yr(){if(kt)return kt;if(window.livewireScriptConfig&&(window.livewireScriptConfig.nonce??!1))return kt=window.livewireScriptConfig.nonce,kt;let e=document.querySelector("style[data-livewire-style][nonce]");return e?(kt=e.nonce,kt):null}function nr(){return document.querySelector("[data-module-url]")?.getAttribute("data-module-url")??window.livewireScriptConfig.moduleUrl??null}function ja(){return document.querySelector("[data-update-uri]")?.getAttribute("data-update-uri")??window.livewireScriptConfig.uri??null}function Ha(e){return!!e.match(/