a homebrewed DnD campaign based in the Honkai: Star Rail universe
hsr honkaistarrail dnd
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

database repo updates, icon updates, formatting

+1555 -2197
+39
app/src/lib/PageMeta.svelte
··· 1 + <script lang="ts"> 2 + import { pageTitle } from './utils' 3 + import { page } from '$app/state' 4 + 5 + type PageMetaProps = { 6 + title?: string, 7 + description: string, 8 + url?: string, 9 + robots?: { 10 + nofollow?: boolean, 11 + noindex?: boolean, 12 + noimageindex?: boolean, 13 + }, 14 + } 15 + let { title, description, robots }: PageMetaProps = $props() 16 + let htmlTitle = $derived(pageTitle(title)) 17 + let htmlUrl = $derived(page.url.toString()) 18 + let htmlRobots = $derived.by(() => { 19 + if (robots === undefined) { 20 + return 'none' 21 + } 22 + 23 + const rules = [] 24 + if(robots.noindex) { rules.push('noindex') } 25 + if(robots.nofollow) { rules.push('nofollow') } 26 + if(robots.noimageindex) { rules.push('noimageindex') } 27 + return rules.join(', ') 28 + }) 29 + 30 + </script> 31 + 32 + <title>{htmlTitle}</title> 33 + <meta name="description" content={description} /> 34 + <meta name="robots" content={htmlRobots} /> 35 + <meta property="og:title" content={htmlTitle} /> 36 + <meta property="og:description" content={description} /> 37 + <meta property="og:type" content="website" /> 38 + <meta property="og:url" content={htmlUrl} /> 39 + <meta property="og:site_name" content="The Drifting Starlight" />
+4 -3
app/src/lib/server/db/repos/auth.ts
··· 2 2 import { eq, type InferSelectModel } from 'drizzle-orm' 3 3 import type { DatabaseConn } from '..' 4 4 import { user } from '../schemas/auth' 5 - import { querySingle, sqlBool, sqlLower } from '../utils' 5 + import { querySingle, sqlLower } from '../utils' 6 6 7 - export type User = InferSelectModel<typeof user> 7 + export type UserTable = typeof user 8 + export type User = InferSelectModel<UserTable> 8 9 export type Username = NonNullable<User['username']> 9 10 export type UserId = User['id'] 10 11 ··· 40 41 41 42 public async isEmailAvailable(emailAddress: User['email']): Promise<boolean> { 42 43 const existingEmailQuery = await this.db 43 - .select({ exists: sqlBool(true) }) 44 + .select() 44 45 .from(user) 45 46 .where(eq(sqlLower(user.email), emailAddress.toLowerCase())) 46 47 .limit(1)
+20 -3
app/src/lib/server/db/repos/background.ts
··· 1 1 import { eq, type InferInsertModel, type InferSelectModel } from 'drizzle-orm' 2 2 import type { DatabaseConn } from '..' 3 3 import { characterBackground } from '../schemas/dnd' 4 - import { querySingle } from '../utils' 4 + import { selectColumns, querySingle, type TableColumnNames } from '../utils' 5 5 6 - export type Background = InferSelectModel<typeof characterBackground> 7 - export type NewBackground = InferInsertModel<typeof characterBackground> 6 + export type BackgroundTable = typeof characterBackground 7 + export type Background = InferSelectModel<BackgroundTable> 8 + export type NewBackground = InferInsertModel<BackgroundTable> 8 9 export type UpdateBackground = Partial<Omit<NewBackground, 'id'>> 9 10 10 11 export class BackgroundRepository { ··· 28 29 .where(eq(characterBackground.id, id)) 29 30 .limit(1) 30 31 .then(querySingle) 32 + } 33 + 34 + public async getBackgroundsBy<C extends TableColumnNames<BackgroundTable>>( 35 + columns: Record<C, true>, 36 + ) { 37 + return await this.db 38 + .select(selectColumns(characterBackground, columns)) 39 + .from(characterBackground) 40 + .$dynamic() 41 + } 42 + 43 + public async updateBackground(id: Background['id'], update: UpdateBackground) { 44 + return await this.db 45 + .update(characterBackground) 46 + .set(update) 47 + .where(eq(characterBackground.id, id)) 31 48 } 32 49 }
+47
app/src/lib/server/db/repos/campaign-member.ts
··· 1 + import { eq, type InferInsertModel, type InferSelectModel } from 'drizzle-orm' 2 + import type { DatabaseConn } from '..' 3 + import type { Campaign } from './campaign' 4 + import { user } from '../schemas/auth' 5 + import { campaignMember } from '../schemas/dnd' 6 + 7 + export type CampaignMemberTable = typeof campaignMember 8 + export type CampaignMember = InferSelectModel<CampaignMemberTable> 9 + export type NewCampaignMember = InferInsertModel<CampaignMemberTable> 10 + export type UpdateCampaignMember = Partial<Omit<NewCampaignMember, 'id' | 'invitedAt'>> 11 + 12 + export class CampaignMemberRepository { 13 + private db: DatabaseConn 14 + public constructor(db: DatabaseConn) { 15 + this.db = db 16 + } 17 + 18 + public async addCampaignMember(model: NewCampaignMember) { 19 + return await this.db.insert(campaignMember).values(model) 20 + } 21 + 22 + public async addManyCampaignMembers( 23 + campaignId: Campaign['id'], 24 + models: Omit<NewCampaignMember, 'campaignId'>[], 25 + ) { 26 + const members = models.map((m) => ({ campaignId: campaignId, ...m })) 27 + return await this.db.insert(campaignMember).values(members) 28 + } 29 + 30 + public async removeCampaignMember(id: CampaignMember['id']) { 31 + return await this.db.delete(campaignMember).where(eq(campaignMember.id, id)) 32 + } 33 + 34 + public async removeAllCampaignMembers(campaignId: Campaign['id']) { 35 + return await this.db.delete(campaignMember).where(eq(campaignMember.campaignId, campaignId)) 36 + } 37 + 38 + public async getCampaignMembers(campaignId: Campaign['id']) { 39 + return await this.db 40 + .select({ 41 + member: campaignMember.id, 42 + }) 43 + .from(campaignMember) 44 + .where(eq(campaignMember.campaignId, campaignId)) 45 + .leftJoin(user, eq(campaignMember.id, user.id)) 46 + } 47 + }
+25 -30
app/src/lib/server/db/repos/campaign.ts
··· 1 1 import { eq, type InferInsertModel, type InferSelectModel } from 'drizzle-orm' 2 2 import type { DatabaseConn } from '..' 3 3 import { user } from '../schemas/auth' 4 - import { 5 - campaign, 6 - campaignMember, 7 - campaignSession, 8 - campaignSourceMaterial, 9 - sourceBook, 10 - } from '../schemas/dnd' 11 - import { querySingle } from '../utils' 4 + import { campaign, campaignSession, campaignSourceMaterial, sourceBook } from '../schemas/dnd' 5 + import { querySingle, selectColumns, type TableColumnNames } from '../utils' 12 6 13 - export type Campaign = InferSelectModel<typeof campaign> 14 - export type NewCampaign = InferInsertModel<typeof campaign> 7 + export type CampaignTable = typeof campaign 8 + export type Campaign = InferSelectModel<CampaignTable> 9 + export type NewCampaign = InferInsertModel<CampaignTable> 15 10 export type UpdateCampaign = Partial<Omit<NewCampaign, 'id' | 'createdAt'>> 16 11 17 - export type CampaignMember = InferSelectModel<typeof campaignMember> 18 - export type NewCampaignMember = InferInsertModel<typeof campaignMember> 19 - export type UpdateCampaignMember = Partial<Omit<NewCampaignMember, 'id' | 'invitedAt'>> 20 - 21 - export type CampaignSession = InferSelectModel<typeof campaignSession> 22 - export type NewCampaignSession = InferInsertModel<typeof campaignSession> 12 + export type CampaignSessionTable = typeof campaignSession 13 + export type CampaignSession = InferSelectModel<CampaignSessionTable> 14 + export type NewCampaignSession = InferInsertModel<CampaignSessionTable> 23 15 export type UpdateCampaignSession = Partial<Omit<NewCampaignSession, 'id' | 'createdAt'>> 24 16 25 17 export class CampaignRepository { ··· 28 20 this.db = db 29 21 } 30 22 31 - public async createCampaign(campaignModel: NewCampaign) { 32 - return await this.db.insert(campaign).values(campaignModel) 23 + public async createCampaign(model: NewCampaign) { 24 + return await this.db.insert(campaign).values(model) 33 25 } 34 26 35 27 public async deleteCampaignById(id: Campaign['id']) { 36 28 return await this.db.delete(campaign).where(eq(campaign.id, id)) 37 29 } 38 30 39 - public async inviteCampaignMember(campaignMemberModel: NewCampaignMember) { 40 - return await this.db.insert(campaignMember).values(campaignMemberModel) 41 - } 42 - 43 31 public async getCampaignById(id: Campaign['id']): Promise<Campaign | null> { 44 32 return await this.db 45 33 .select() ··· 58 46 .then(querySingle) 59 47 } 60 48 49 + public async getCampaignsByOwner(ownerId: Campaign['ownerId']) { 50 + return await this.db 51 + .select() 52 + .from(campaign) 53 + .where(eq(campaign.ownerId, ownerId)) 54 + .leftJoin(user, eq(user.id, campaign.ownerId)) 55 + } 56 + 61 57 public async getCampaignOwner() { 62 58 return await this.db 63 59 .select({ ··· 68 64 .then(querySingle) 69 65 } 70 66 71 - public async getCampaignMembers(campaignId: Campaign['id']) { 72 - return await this.db 73 - .select({ 74 - member: campaignMember.id, 75 - }) 76 - .from(campaignMember) 77 - .where(eq(campaignMember.campaignId, campaignId)) 78 - .leftJoin(user, eq(campaignMember.id, user.id)) 67 + public async getCampaignsBy<C extends TableColumnNames<CampaignTable>>(columns: Record<C, true>) { 68 + return await this.db.select(selectColumns(campaign, columns)).from(campaign).$dynamic() 69 + } 70 + 71 + public async updateCampaign(id: Campaign['id'], update: UpdateCampaign) { 72 + return await this.db.update(campaign).set(update).where(eq(campaign.id, id)) 79 73 } 80 74 75 + /* campaign source material table */ 81 76 public async getCampaignSourceMaterials(campaignId: Campaign['id']) { 82 77 return await this.db 83 78 .select({
+7 -2
app/src/lib/server/db/repos/character.ts
··· 5 5 import { character, characterBackground, species } from '../schemas/dnd' 6 6 import { querySingle } from '../utils' 7 7 8 - export type Character = InferSelectModel<typeof character> 9 - export type NewCharacter = InferInsertModel<typeof character> 8 + export type CharacterTable = typeof character 9 + export type Character = InferSelectModel<CharacterTable> 10 + export type NewCharacter = InferInsertModel<CharacterTable> 10 11 export type UpdateCharacter = Partial<Omit<NewCharacter, 'id' | 'createdAt'>> 11 12 12 13 export class CharacterRepository { ··· 45 46 .from(character) 46 47 .where(eq(character.ownerId, userId)) 47 48 .leftJoin(user, eq(user.id, character.ownerId)) 49 + } 50 + 51 + public async updateCharacter(id: Character['id'], update: UpdateCharacter) { 52 + return await this.db.update(character).set(update).where(eq(character.id, id)) 48 53 } 49 54 }
+42
app/src/lib/server/db/repos/faction.ts
··· 1 + import { eq, type InferInsertModel, type InferSelectModel } from 'drizzle-orm' 2 + import { type DatabaseConn } from '..' 3 + import { faction, sourceBook } from '../schemas/dnd' 4 + import { querySingle, selectColumns, type TableColumnNames } from '../utils' 5 + 6 + export type FactionTable = typeof faction 7 + export type Faction = InferSelectModel<FactionTable> 8 + export type NewFaction = InferInsertModel<FactionTable> 9 + export type UpdateFaction = Partial<Omit<NewFaction, 'id'>> 10 + 11 + export class FactionRepository { 12 + private db: DatabaseConn 13 + public constructor(db: DatabaseConn) { 14 + this.db = db 15 + } 16 + 17 + public async createFaction(model: NewFaction) { 18 + return await this.db.insert(faction).values(model).returning() 19 + } 20 + 21 + public async deleteFactionById(id: Faction['id']) { 22 + return await this.db.delete(faction).where(eq(faction.id, id)) 23 + } 24 + 25 + public async getFactionById(id: Faction['id']) { 26 + return await this.db 27 + .select() 28 + .from(faction) 29 + .where(eq(faction.id, id)) 30 + .leftJoin(sourceBook, eq(sourceBook.id, faction.sourceBookId)) 31 + .limit(1) 32 + .then(querySingle) 33 + } 34 + 35 + public async getFactionsBy<C extends TableColumnNames<FactionTable>>(columns: Record<C, true>) { 36 + return await this.db.select(selectColumns(faction, columns)).from(faction).$dynamic() 37 + } 38 + 39 + public async updateFaction(id: Faction['id'], update: UpdateFaction) { 40 + return await this.db.update(faction).set(update).where(eq(faction.id, id)) 41 + } 42 + }
+23 -3
app/src/lib/server/db/repos/source-book.ts
··· 1 1 import { eq, type InferInsertModel, type InferSelectModel } from 'drizzle-orm' 2 2 import type { DatabaseConn } from '..' 3 3 import { sourceBook } from '../schemas/dnd' 4 - import { querySingle } from '../utils' 4 + import { querySingle, selectColumns, type TableColumnNames } from '../utils' 5 5 6 - export type SourceBook = InferSelectModel<typeof sourceBook> 7 - export type NewSourceBook = InferInsertModel<typeof sourceBook> 6 + export type SourceBookTable = typeof sourceBook 7 + export type SourceBook = InferSelectModel<SourceBookTable> 8 + export type NewSourceBook = InferInsertModel<SourceBookTable> 9 + export type UpdateSourceBook = Partial<Omit<NewSourceBook, 'id' | 'createdAt'>> 8 10 9 11 export class SourceBookRepository { 10 12 private db: DatabaseConn ··· 30 32 .from(sourceBook) 31 33 .where(eq(sourceBook.name, name)) 32 34 .then(querySingle) 35 + } 36 + 37 + public async getSourceBooksBy<C extends TableColumnNames<SourceBookTable>>( 38 + columns: Record<C, true>, 39 + ) { 40 + return await this.db.select(selectColumns(sourceBook, columns)).from(sourceBook).$dynamic() 41 + } 42 + 43 + public async updateSourceBook(id: SourceBook['id'], update: UpdateSourceBook) { 44 + return await this.db.update(sourceBook).set(update).where(eq(sourceBook.id, id)) 45 + } 46 + 47 + public async archiveSourceBook(id: SourceBook['id']) { 48 + return await this.updateSourceBook(id, { isArchived: true, archivedAt: new Date() }) 49 + } 50 + 51 + public async unarchiveSourceBook(id: SourceBook['id']) { 52 + return await this.updateSourceBook(id, { isArchived: false, archivedAt: null }) 33 53 } 34 54 }
+23 -6
app/src/lib/server/db/repos/species.ts
··· 1 1 import { eq, type InferSelectModel } from 'drizzle-orm' 2 2 import type { DatabaseConn } from '..' 3 - import { species } from '../schemas/dnd' 4 - import { querySingle } from '../utils' 3 + import { sourceBook, species } from '../schemas/dnd' 4 + import { querySingle, selectColumns, type TableColumnNames } from '../utils' 5 5 6 - export type Species = InferSelectModel<typeof species> 7 - export type NewSpecies = InferSelectModel<typeof species> 6 + export type SpeciesTable = typeof species 7 + export type Species = InferSelectModel<SpeciesTable> 8 + export type NewSpecies = InferSelectModel<SpeciesTable> 8 9 export type UpdateSpecies = Partial<Omit<NewSpecies, 'id' | 'createdAt'>> 9 10 10 11 export class SpeciesRepository { ··· 21 22 return await this.db.delete(species).where(eq(species.id, id)) 22 23 } 23 24 24 - public async getSpeciesById(id: Species['id']): Promise<Species | null> { 25 - return await this.db.select().from(species).where(eq(species.id, id)).limit(1).then(querySingle) 25 + public async getSpeciesById(id: Species['id']) { 26 + return await this.db 27 + .select() 28 + .from(species) 29 + .where(eq(species.id, id)) 30 + .leftJoin(sourceBook, eq(sourceBook.id, species.sourceBookId)) 31 + .limit(1) 32 + .then(querySingle) 33 + } 34 + 35 + public async getManySpeciesBy<C extends TableColumnNames<SpeciesTable>>( 36 + columns: Record<C, true>, 37 + ) { 38 + return await this.db.select(selectColumns(species, columns)).from(species).$dynamic() 39 + } 40 + 41 + public async updateSpecies(id: Species['id'], model: UpdateSpecies) { 42 + return await this.db.update(species).set(model).where(eq(species.id, id)) 26 43 } 27 44 }
+43 -9
app/src/lib/server/db/repos/spell.ts
··· 1 1 import { eq, type InferInsertModel, type InferSelectModel } from 'drizzle-orm' 2 2 import type { DatabaseConn } from '..' 3 - import { species, spell, spellDamage } from '../schemas/dnd' 4 - import { querySingle } from '../utils' 3 + import { sourceBook, spell, spellDamage } from '../schemas/dnd' 4 + import { querySingle, selectColumns, type TableColumnNames } from '../utils' 5 5 6 - export type Spell = InferSelectModel<typeof spell> 7 - export type NewSpell = InferInsertModel<typeof spell> 6 + export type SpellTable = typeof spell 7 + export type Spell = InferSelectModel<SpellTable> 8 + export type NewSpell = InferInsertModel<SpellTable> 8 9 export type UpdateSpell = Partial<Omit<NewSpell, 'id' | 'createdAt'>> 9 10 10 - export type SpellDamage = InferSelectModel<typeof spellDamage> 11 - export type NewSpellDamage = InferInsertModel<typeof spellDamage> 11 + export type SpellDamageTable = typeof spellDamage 12 + export type SpellDamage = InferSelectModel<SpellDamageTable> 13 + export type NewSpellDamage = InferInsertModel<SpellDamageTable> 12 14 export type UpdateSpellDamage = Partial<Omit<NewSpellDamage, 'id'>> 13 15 14 16 export class SpellRepository { ··· 17 19 this.db = db 18 20 } 19 21 20 - public async createSpell(spellModel: NewSpell) { 21 - return await this.db.insert(spell).values(spellModel).returning() 22 + /* spell table */ 23 + public async createSpell(values: NewSpell) { 24 + return await this.db.insert(spell).values(values).returning() 22 25 } 23 26 24 27 public async deleteSpellById(id: Spell['id']) { 25 - return await this.db.delete(species).where(eq(spell.id, id)) 28 + return await this.db.delete(spell).where(eq(spell.id, id)) 26 29 } 27 30 28 31 public async getSpellById(id: Spell['id']) { ··· 33 36 .leftJoin(spellDamage, eq(spellDamage.id, spell.damage)) 34 37 .limit(1) 35 38 .then(querySingle) 39 + } 40 + 41 + public async getSpellsBy<C extends TableColumnNames<SpellTable>>(columns: Record<C, true>) { 42 + return await this.db.select(selectColumns(spell, columns)).from(spell).$dynamic() 43 + } 44 + 45 + public async updateSpell(id: Spell['id'], update: UpdateSpell) { 46 + return await this.db.update(spell).set(update).where(eq(spell.id, id)) 47 + } 48 + 49 + /* spell damage table */ 50 + public async createSpellDamage(model: SpellDamage) { 51 + return await this.db.insert(spellDamage).values(model).returning() 52 + } 53 + 54 + public async deleteSpellDamageById(id: SpellDamage['id']) { 55 + return await this.db.delete(spellDamage).where(eq(spellDamage.id, id)) 56 + } 57 + 58 + public async getSpellDamageById(id: SpellDamage['id']) { 59 + return await this.db 60 + .select() 61 + .from(spellDamage) 62 + .where(eq(spellDamage.id, id)) 63 + .leftJoin(sourceBook, eq(sourceBook.id, spellDamage.id)) 64 + .limit(1) 65 + .then(querySingle) 66 + } 67 + 68 + public async updateSpellDamage(id: SpellDamage['id'], update: UpdateSpellDamage) { 69 + return await this.db.update(spellDamage).set(update).where(eq(spellDamage.id, id)) 36 70 } 37 71 }
+1 -1
app/src/lib/server/db/schemas/dnd.ts
··· 172 172 }) 173 173 174 174 // model for symmetric relationships between factions 175 - export const faction_relationship = pgTable('faction_relationship', { 175 + export const factionRelationship = pgTable('faction_relationship', { 176 176 id: integer('id').primaryKey().generatedAlwaysAsIdentity(), 177 177 factionId1: integer('faction_id1') 178 178 .notNull()
+26 -4
app/src/lib/server/db/utils.ts
··· 1 - import { type SQL, sql } from 'drizzle-orm' 2 - import { type AnyPgColumn } from 'drizzle-orm/pg-core' 1 + import type { AnyPgColumn, SelectedFields } from 'drizzle-orm/pg-core' 2 + import { getTableColumns, type SQL, sql, Table } from 'drizzle-orm' 3 3 4 4 export function sqlLower(email: AnyPgColumn): SQL<string> { 5 5 return sql<string>`lower(${email})` ··· 9 9 return sql<boolean>`${bool ? '1' : '0'}` 10 10 } 11 11 12 - type StringLike = string | { toString(): string } 13 12 export function isBetweenIncl(expr: StringLike, min: number, max: number): SQL<string> { 14 13 return sql<string>`${expr} >= ${min} AND ${expr} <= ${max}` 15 14 } ··· 19 18 } 20 19 21 20 export function querySingle<T>(results: T[]): T | null { 22 - return results.length === 0 ? null : results[0] 21 + return results.at(0) ?? null 22 + } 23 + 24 + export type StringLike = string | { toString(): string } 25 + export type WhereExpr = SQL<unknown> | ((aliases: SelectedFields) => SQL | undefined) | undefined 26 + export type TableColumns<T extends Table> = T['_']['columns'] 27 + export type TableColumnNames<T extends Table> = keyof TableColumns<T> 28 + 29 + /** 30 + * @see https://github.com/drizzle-team/drizzle-orm/issues/3034#issuecomment-2541870071 31 + */ 32 + export function selectColumns<T extends Table, K extends TableColumnNames<T>>( 33 + table: T, 34 + includedColumns: Record<K, true>, 35 + ): Pick<T['_']['columns'], K> { 36 + const allColumns = getTableColumns(table) 37 + const result = {} as Pick<TableColumns<T>, K> 38 + 39 + for (const key in includedColumns) { 40 + if (includedColumns[key]) { 41 + result[key] = allColumns[key] 42 + } 43 + } 44 + return result 23 45 }
-41
app/src/lib/server/form/auth.ts
··· 1 - import z from 'zod' 2 - 3 - /* auth primitive schemas */ 4 - // TODO: fix this schema, because zod's email primitives are weird 5 - export const emailSchema = z.string() 6 - export const usernameSchema = z 7 - .string() 8 - .refine((s) => /\w/.test(s.charAt(0)), { error: 'Username must start with a letter.' }) 9 - .refine((s) => /[\w\d-_]+/.test(s), { 10 - error: 'Username may only contain letters, digits, hyphen, and underscore.', 11 - }) 12 - export const passwordSchema = z.string().min(8).max(64) 13 - 14 - /* auth form schemas */ 15 - export const signInSchema = z.object({ 16 - usernameOrEmail: z.string(), 17 - password: passwordSchema, 18 - }) 19 - 20 - export const signUpSchema = z.object({ 21 - email: emailSchema, 22 - username: usernameSchema, 23 - password: passwordSchema, 24 - }) 25 - 26 - export const resetPasswordSchema = z.object({ 27 - email: emailSchema, 28 - }) 29 - 30 - export const changePasswordSchema = z.object({ 31 - newPassword: passwordSchema, 32 - }) 33 - 34 - /* compile-time types */ 35 - export type Html5EmailSchema = z.infer<typeof emailSchema> 36 - export type UsernameSchema = z.infer<typeof usernameSchema> 37 - export type PasswordSchema = z.infer<typeof passwordSchema> 38 - export type SignInSchema = z.infer<typeof signInSchema> 39 - export type SignUpSchema = z.infer<typeof signUpSchema> 40 - export type ResetPasswordSchema = z.infer<typeof resetPasswordSchema> 41 - export type ChangePasswordSchema = z.infer<typeof changePasswordSchema>
+41
app/src/lib/server/schemas/auth.ts
··· 1 + import z from 'zod' 2 + 3 + /* auth primitive schemas */ 4 + // TODO: fix this schema, because zod's email primitives are weird 5 + export const zEmail = z.string() 6 + export const zUsername = z 7 + .string() 8 + .refine((s) => /\w/.test(s.charAt(0)), { error: 'Username must start with a letter.' }) 9 + .refine((s) => /[\w\d-_]+/.test(s), { 10 + error: 'Username may only contain letters, digits, hyphen, and underscore.', 11 + }) 12 + export const zPassword = z.string().min(8).max(64) 13 + 14 + /* auth form schemas */ 15 + export const zSignIn = z.object({ 16 + usernameOrEmail: z.string(), 17 + password: zPassword, 18 + }) 19 + 20 + export const zSignUp = z.object({ 21 + email: zEmail, 22 + username: zUsername, 23 + password: zPassword, 24 + }) 25 + 26 + export const zResetPassword = z.object({ 27 + email: zEmail, 28 + }) 29 + 30 + export const zChangePassword = z.object({ 31 + newPassword: zPassword, 32 + }) 33 + 34 + /* compile-time types */ 35 + export type Html5EmailSchema = z.infer<typeof zEmail> 36 + export type UsernameSchema = z.infer<typeof zUsername> 37 + export type PasswordSchema = z.infer<typeof zPassword> 38 + export type SignInSchema = z.infer<typeof zSignIn> 39 + export type SignUpSchema = z.infer<typeof zSignUp> 40 + export type ResetPasswordSchema = z.infer<typeof zResetPassword> 41 + export type ChangePasswordSchema = z.infer<typeof zChangePassword>
+11 -11
app/src/routes/(auth)/AuthFooter.svelte
··· 1 1 <script lang="ts"> 2 - import GoogleIcon from '@starlight/icons/google' 3 - import type { ComponentProps } from 'svelte' 4 - import type { SvelteHTMLElements } from 'svelte/elements' 5 - import { Button } from '$ui/button' 2 + import GoogleIcon from '@starlight/icons/google' 3 + import type { ComponentProps } from 'svelte' 4 + import type { SvelteHTMLElements } from 'svelte/elements' 5 + import { Button } from '$ui/button' 6 6 7 - type AuthFooterRootElement = SvelteHTMLElements['button'] 8 - type AuthFooterProps = AuthFooterRootElement & { 9 - googleProps?: ComponentProps<typeof Button>, 10 - } 11 - let { 12 - googleProps, 13 - }: AuthFooterProps = $props() 7 + type AuthFooterRootElement = SvelteHTMLElements['button'] 8 + type AuthFooterProps = AuthFooterRootElement & { 9 + googleProps?: ComponentProps<typeof Button>, 10 + } 11 + let { 12 + googleProps, 13 + }: AuthFooterProps = $props() 14 14 </script> 15 15 16 16 <Button intent="secondary" class="w-full -mt-3" {...googleProps}>
+7 -7
app/src/routes/(auth)/AuthHeader.svelte
··· 1 1 <script lang="ts"> 2 - import type { SvelteHTMLElements } from 'svelte/elements' 3 - import { FormHeader } from '$ui/form' 2 + import type { SvelteHTMLElements } from 'svelte/elements' 3 + import { FormHeader } from '$ui/form' 4 4 5 - type AuthHeaderRootElement = SvelteHTMLElements['header'] 6 - type AuthHeaderProps = AuthHeaderRootElement & { 7 - ctaText?: string 8 - } 9 - let { ctaText }: AuthHeaderProps = $props() 5 + type AuthHeaderRootElement = SvelteHTMLElements['header'] 6 + type AuthHeaderProps = AuthHeaderRootElement & { 7 + ctaText?: string 8 + } 9 + let { ctaText }: AuthHeaderProps = $props() 10 10 </script> 11 11 12 12 <FormHeader>
+6 -6
app/src/routes/(auth)/AuthPageLayout.svelte
··· 1 1 <script lang="ts"> 2 - import type { WithChildren } from 'bits-ui' 3 - import type { SvelteHTMLElements } from 'svelte/elements' 4 - import { PageLayout } from '$ui/site' 2 + import type { WithChildren } from 'bits-ui' 3 + import type { SvelteHTMLElements } from 'svelte/elements' 4 + import { PageLayout } from '$ui/site' 5 5 6 - type AuthPageRootElement = SvelteHTMLElements['div'] 7 - type AuthPageLayoutProps = WithChildren<AuthPageRootElement> 8 - let { children }: AuthPageLayoutProps = $props() 6 + type AuthPageRootElement = SvelteHTMLElements['div'] 7 + type AuthPageLayoutProps = WithChildren<AuthPageRootElement> 8 + let { children }: AuthPageLayoutProps = $props() 9 9 </script> 10 10 11 11 <PageLayout display="flex" direction="col" class="items-center justify-center h-screen">
+4 -4
app/src/routes/(auth)/reset-password/+page.server.ts
··· 1 1 import { pageTitle } from '$lib/utils' 2 2 import { auth } from '$server/auth' 3 - import { changePasswordSchema, resetPasswordSchema } from '$server/form/auth' 3 + import { zChangePassword, zResetPassword } from '$server/schemas/auth' 4 4 import { fail } from '@sveltejs/kit' 5 5 import { message, superValidate } from 'sveltekit-superforms' 6 6 import { zod4 } from 'sveltekit-superforms/adapters' ··· 8 8 9 9 export const load: PageServerLoad = async () => { 10 10 return { 11 - form: await superValidate(zod4(resetPasswordSchema)), 11 + form: await superValidate(zod4(zResetPassword)), 12 12 meta: { 13 13 pageTitle: pageTitle('Reset your password'), 14 14 }, ··· 17 17 18 18 export const actions: Actions = { 19 19 resetPassword: async ({ request }) => { 20 - const form = await superValidate(request, zod4(resetPasswordSchema)) 20 + const form = await superValidate(request, zod4(zResetPassword)) 21 21 if (!form.valid) { 22 22 return fail(400, { form }) 23 23 } ··· 36 36 }, 37 37 38 38 changePassword: async ({ url, request }) => { 39 - const form = await superValidate(request, zod4(changePasswordSchema)) 39 + const form = await superValidate(request, zod4(zChangePassword)) 40 40 if (!form.valid) { 41 41 return fail(400, { form }) 42 42 }
+3 -3
app/src/routes/(auth)/signin/+page.server.ts
··· 2 2 import { auth } from '$server/auth' 3 3 import { db } from '$server/db' 4 4 import { AuthRepository } from '$server/db/repos/auth' 5 - import { signInSchema } from '$server/form/auth' 5 + import { zSignIn } from '$server/schemas/auth' 6 6 import { fail, redirect } from '@sveltejs/kit' 7 7 import { superValidate } from 'sveltekit-superforms' 8 8 import { zod4 } from 'sveltekit-superforms/adapters' ··· 10 10 11 11 export const load: PageServerLoad = async () => { 12 12 return { 13 - form: await superValidate(zod4(signInSchema)), 13 + form: await superValidate(zod4(zSignIn)), 14 14 meta: { 15 15 pageTitle: pageTitle('Sign in'), 16 16 }, ··· 19 19 20 20 export const actions: Actions = { 21 21 signInEmail: async ({ request }) => { 22 - const form = await superValidate(request, zod4(signInSchema)) 22 + const form = await superValidate(request, zod4(zSignIn)) 23 23 if (!form.valid) { 24 24 return fail(400, { form }) 25 25 }
+3 -3
app/src/routes/(auth)/signup/+page.server.ts
··· 1 1 import { pageTitle } from '$lib/utils' 2 2 import { auth } from '$server/auth' 3 - import { signUpSchema } from '$server/form/auth' 3 + import { zSignUp } from '$server/schemas/auth' 4 4 import { fail, redirect } from '@sveltejs/kit' 5 5 import { message, superValidate } from 'sveltekit-superforms' 6 6 import { zod4 } from 'sveltekit-superforms/adapters' ··· 8 8 9 9 export const load: PageServerLoad = async () => { 10 10 return { 11 - form: await superValidate(zod4(signUpSchema)), 11 + form: await superValidate(zod4(zSignUp)), 12 12 meta: { 13 13 pageTitle: pageTitle('Sign up'), 14 14 }, ··· 17 17 18 18 export const actions: Actions = { 19 19 signUpEmail: async ({ request }) => { 20 - const form = await superValidate(request, zod4(signUpSchema)) 20 + const form = await superValidate(request, zod4(zSignUp)) 21 21 if (!form.valid) { 22 22 return fail(400, { form }) 23 23 }
+3
app/src/routes/characters/new/+page.svelte
··· 1 + <script lang="ts"> 2 + 3 + </script>
-1
app/static/images/Path-Abundance.svg
··· 1 - <svg xmlns="http://www.w3.org/2000/svg" width="541" height="612" fill="none"><path fill="#fff" fill-opacity=".3" d="M404.306 77.232c-.824-4.271-1.51-10.65-1.51-14.182v-6.422l5.088.01c2.796 0 9.181 1.263 14.195 2.794 5.013 1.53 11.269 3.885 13.926 5.245 2.657 1.359 6.31 4.067 8.12 6.036 1.811 1.97 5.025 5.983 7.146 8.927 2.11 2.943 5.378 8.723 7.252 12.844 2.089 4.581 3.643 9.986 3.985 13.914.418 4.71.097 7.343-1.189 9.901-.953 1.916-3.074 4.003-4.692 4.645-1.618.643-5.11.867-7.767.504-2.656-.364-7.477-1.884-10.712-3.372-3.235-1.499-8.549-4.71-11.784-7.15-3.235-2.44-8.206-6.625-11.045-9.301-3.492-3.297-5.838-6.743-7.317-10.746-1.199-3.244-2.86-9.377-3.696-13.647Z"/><path fill="#fff" fill-opacity=".3" d="M467.661 106.934c2.389-4.999 5.753-10.907 7.467-13.112 1.725-2.205 3.631-3.853 4.231-3.66.611.192 3.611 5.126 6.674 10.97 3.064 5.834 7.081 14.707 8.913 19.716 1.832 5.009 3.621 12.234 3.964 16.055.364 4.068.086 9.184-.675 12.309-.707 2.944-3.921 10.65-7.124 17.126-3.214 6.475-6.438 12.566-7.177 13.55-1.222 1.627-2.357 1.542-14.72-1.188-9.341-2.065-15.811-4.217-21.403-7.128-6.182-3.211-9.203-5.641-13.156-10.586-2.828-3.532-7.016-10.029-9.298-14.45-2.293-4.409-5.656-11.763-7.478-16.322-1.81-4.56-3.299-9.259-3.299-10.436 0-1.734.718-2.141 3.749-2.141 2.068 0 7.724 1.006 12.588 2.237 4.863 1.242 10.284 2.986 12.051 3.896 1.768.91 5.314 3.158 7.885 4.988 2.742 1.959 7.263 7.193 10.98 12.694 3.471 5.149 6.299 9.965 6.278 10.704-.011.738.204 1.102.493.802.289-.299-.771-4.142-2.357-8.562-2.346-6.551-2.882-9.901-2.903-18.196-.021-9.697.182-10.597 4.317-19.266Zm-245.877 4.281c.589-3.832 1.339-8.284 1.671-9.901.322-1.616 1.157-2.943 1.854-2.932.696 0 6.567 2.183 13.048 4.838 6.481 2.665 15.158 6.946 19.282 9.515 4.125 2.569 9.31 6.647 11.517 9.066 2.206 2.419 5.881 8.134 8.152 12.694 2.271 4.56 5.528 12.384 7.231 17.393 2.56 7.514 3.096 10.864 3.096 19.266 0 9.152-.3 10.682-2.946 15.253-2.035 3.521-3.857 5.298-5.892 5.758-1.618.375-4.874.396-7.231.043-2.357-.342-7.413-2.183-11.248-4.067-5.067-2.505-9.749-6.24-17.162-13.69-5.603-5.641-12.009-12.898-14.237-16.141-2.732-3.981-4.724-8.659-6.139-14.449-1.178-4.849-2.078-12.277-2.078-17.126 0-4.709.482-11.699 1.082-15.52Zm73.982 42.011c.632-4.56 1.639-8.884 2.217-9.601.825-1.027 1.671-.995 3.921.139 1.575.803 5.281 3.35 8.227 5.662 2.946 2.312 7.703 7.546 10.574 11.624 2.86 4.089 4.971 8.156 4.681 9.034-.321.963-6.159 3.425-14.59 6.154-7.724 2.505-14.537 4.314-15.127 4.014-.589-.299-1.071-4.624-1.071-9.633 0-5.009.525-12.833 1.168-17.393Zm201.762 16.323c1.318-3.532 4.167-9.194 6.321-12.577 2.153-3.382 4.274-6.154 4.724-6.165.45 0 3.578 4.934 6.963 10.971 3.374 6.037 8.527 16.28 11.43 22.756 2.914 6.475 6.599 16.355 8.206 21.942 2.603 9.119 2.85 11.388 2.357 21.942-.289 6.475-1.339 15.145-2.325 19.266-.974 4.121-2.121 8.113-2.549 8.873-.568.996-4.007-.578-24.864-13.154l-4.992-10.704c-2.753-5.887-6.149-14.075-7.553-18.196-1.403-4.121-2.839-10.382-3.192-13.914-.407-4.196.021-9.58 1.221-15.52 1.018-5.009 2.925-11.988 4.253-15.52Zm-63.922 20.336c-2.796-6.475-5.089-12.373-5.089-13.111-.011-.899 1.821-1.338 5.613-1.349 3.096 0 8.399.728 11.784 1.606 3.386.888 8.688 2.889 11.784 4.441s7.264 4.089 9.267 5.62c2.003 1.541 5.913 6.165 8.677 10.286 2.775 4.121 8.731 14.353 13.23 22.745 4.51 8.391 8.195 15.98 8.195 16.858 0 1.295-.985 1.477-5.088.931-2.796-.364-9.181-1.831-14.194-3.243-5.003-1.413-11.999-3.95-15.534-5.63-3.76-1.788-8.131-4.999-10.53-7.728-2.261-2.569-6.117-8.039-8.57-12.159-2.454-4.121-6.749-12.791-9.545-19.267Zm-213.461 4.014c-.878-1.916-1.607-5.405-1.607-7.76 0-3.949.225-4.281 2.946-4.303 1.618 0 5.839.974 9.374 2.173s10.177 3.982 14.762 6.176c4.585 2.184 8.163 4.463 7.949 5.052-.215.589-6.374 2.687-26.996 8.242l-2.411-3.051c-1.317-1.68-3.128-4.613-4.017-6.529Zm212.646 93.388c.59.289 1.629-1.146 2.314-3.211.686-2.066 1.65-3.747 2.143-3.747.493 0 5.346 3.736 10.788 8.296 5.431 4.559 12.458 10.949 15.608 14.182 3.781 3.896 6.46 7.877 7.895 11.774 1.693 4.602 2.068 7.631 1.693 13.914-.322 5.609-1.821 12.063-4.95 21.407-2.463 7.353-7.123 18.795-10.348 25.421-3.224 6.625-6.342 12.041-6.931 12.041-.589 0-3.707-3.736-6.931-8.295-3.214-4.56-7.992-13.358-10.606-19.534-2.614-6.176-5.592-14.129-6.609-17.661-1.479-5.116-1.736-8.926-1.265-18.731.343-7.15 1.49-15.67 2.743-20.336 1.189-4.41 1.96-8.392 1.703-8.831-.257-.438.622-1.327 1.95-1.958 1.918-.921 2.132-1.424 1.05-2.409-.739-.685-1.35-1.616-1.339-2.055.01-.439.503-.556 1.092-.267Zm-93.039 15.873c1.382-1.274 5.41-4.271 8.945-6.658 3.535-2.386 7.274-4.356 8.302-4.367 1.639-.032 1.875 1.092 1.864 8.799 0 4.859-.482 10.639-1.071 12.844-.621 2.355-3.407 6.561-6.706 10.168-3.107 3.382-7.81 9.869-10.445 14.407-2.646 4.549-5.281 8.113-5.87 7.931-.665-.203-1.04-6.871-.997-17.35.054-13.401.429-17.714 1.768-20.24.932-1.766 2.839-4.26 4.21-5.534Zm-60.152 9.28c0-.589 3.493-3.96 7.767-7.493 6.363-5.255 8.302-6.315 10.713-5.886 1.617.299 6.438 2.13 10.712 4.088 4.275 1.959 9.213 5.095 10.981 6.968 1.767 1.873 3.781 4.967 4.467 6.882.696 1.906 1.296 8.167 1.339 13.904.064 7.685-.268 10.436-1.253 10.425-.739 0-4.467-3.071-8.303-6.818-4.445-4.335-10.069-8.402-15.533-11.228-4.713-2.44-11.345-5.63-14.73-7.107-3.385-1.466-6.16-3.146-6.16-3.735Zm233.001.942c4.713-2.194 11.227-4.71 14.462-5.577 3.235-.877 7.702-1.637 9.909-1.691 3.899-.096 4.017.021 4.017 3.65 0 2.066-1.982 10.607-4.392 18.999-2.421 8.391-6.17 19.341-8.324 24.35-2.164 5.009-5.335 11.506-7.049 14.45-1.724 2.943-5.399 7.76-8.163 10.703-3.567 3.789-7.809 6.679-14.537 9.901-5.313 2.547-15.147 5.972-22.346 7.781-7.071 1.777-13.937 3.222-15.266 3.211-2.057-.021-2.325-.449-1.8-2.965.343-1.616 3.289-9.686 6.546-17.928s8.956-21.246 12.673-28.899c3.717-7.653 8.367-15.991 10.338-18.528 1.971-2.537 6.234-6.604 9.47-9.044 3.235-2.441 9.748-6.219 14.462-8.413Zm-231.662 29.563c-.342-8.242-.31-15.831.065-16.858.375-1.028 1.425-1.873 2.324-1.873.89 0 6.085 3.007 11.538 6.689 5.453 3.672 12.984 9.58 16.733 13.112 3.75 3.532 8.088 8.584 9.641 11.239 2.754 4.698 2.818 5.244 2.764 23.012-.042 12.341-.653 21.471-1.907 28.364-1.017 5.598-2.078 11.014-2.356 12.042-.279 1.027-.868 1.873-1.307 1.873-.439-.011-3.3-4.945-6.364-10.971-3.053-6.037-7.905-14.578-10.776-18.999-2.871-4.41-7.381-10.436-10.028-13.379-3.085-3.447-5.677-7.835-7.252-12.309-1.939-5.459-2.592-10.179-3.075-21.942Zm64.609 7.642c3.503-3.447 11.162-9.59 17.022-13.647 5.86-4.057 11.28-7.375 12.052-7.375.76 0 1.542.6 1.735 1.338.182.739-.311 6.636-1.103 13.112-.782 6.476-2.646 16.837-4.135 23.012-1.5 6.176-3.578 13.166-4.639 15.52-1.05 2.355-4.039 6.508-6.631 9.227-2.603 2.718-10.509 10.286-17.58 16.815-7.07 6.54-13.337 11.891-13.926 11.913-.621.011-.943-2.355-.771-5.587.16-3.083.792-10.907 1.392-17.383.6-6.475 1.821-15.381 2.711-19.801.889-4.41 2.946-10.918 4.563-14.45 1.864-4.046 5.314-8.745 9.31-12.694Zm60.644 24.468c1.864-4.71 5.72-13.262 8.57-18.999 2.86-5.737 5.667-10.435 6.256-10.435.579 0 2.25 1.808 3.707 4.013 1.457 2.205 4.424 8.349 6.588 13.647 2.164 5.298 4.874 13.005 6.031 17.126s2.357 12.555 2.668 18.731c.503 9.772.257 12.212-1.864 18.731-1.339 4.121-5.689 14.471-9.663 23.012-3.985 8.542-7.531 16.601-7.895 17.928-.365 1.328-1.254 2.419-1.993 2.441-.739.011-4.317-7.097-7.949-15.788-3.631-8.702-7.841-18.709-9.352-22.242-2.099-4.923-2.742-8.284-2.774-14.449-.022-4.635.878-11.646 2.131-16.591 1.179-4.709 3.675-12.416 5.539-17.125ZM279.75 403.954c.225-11.185.815-20.946 1.318-21.706.686-1.039 1.703-.675 4.274 1.487 1.854 1.574 5.732 5.556 8.635 8.863 2.903 3.307 6.802 8.413 8.666 11.356 1.875 2.944 4.328 7.76 5.442 10.704 1.629 4.27 2.046 8.166 2.046 19.266 0 13.347-.182 14.514-4.552 28.632-2.507 8.091-6.482 19.17-8.849 24.618-2.357 5.448-7.606 15.445-11.655 22.209-4.05 6.765-8.024 12.887-8.828 13.583-1.157 1.006-2.421.674-6.009-1.606-2.507-1.584-4.553-3.243-4.553-3.682-.011-.438 3.331-6.464 7.413-13.379 4.081-6.914 8.902-15.713 10.702-19.534 1.799-3.821 3.996-10.329 4.874-14.449.878-4.121 1.628-8.938 1.66-10.704.022-1.894-.857-4.089-2.153-5.352-1.221-1.177-3.16-4.431-4.328-7.224-1.157-2.794-2.646-9.055-3.31-13.915-.675-4.998-1.018-17.65-.793-29.167Zm61.534 15.124c4.671-4.056 13.284-10.928 19.143-15.295 5.871-4.356 11.067-7.546 11.559-7.086.493.461-.128 4.924-1.371 9.933-1.253 5.009-3.985 13.668-6.074 19.266-2.078 5.598-5.249 13.059-7.027 16.591-1.8 3.575-6.139 9.312-9.781 12.94-4.649 4.645-8.227 7.139-12.427 8.681-5.731 2.098-6.031 2.419-11.023 11.677-2.818 5.234-6.417 12.405-8.002 15.938-1.586 3.532-4.896 10.039-7.36 14.449-2.453 4.421-7.413 11.999-17.537 25.688l-4.842-2.408c-2.657-1.327-4.831-2.772-4.82-3.211.01-.439 2.967-5.255 6.577-10.703 3.6-5.448 8.013-12.791 9.802-16.323 1.789-3.532 5.614-12.202 8.495-19.266a3062.32 3062.32 0 0 0 10.767-26.759c3.749-9.462 7.102-15.969 10.476-20.336 2.722-3.533 8.774-9.73 13.445-13.776Zm134.358-15.691c2.657-.739 10.359-2.194 17.14-3.232 6.781-1.039 12.92-1.938 13.659-1.991.739-.054 1.339.867 1.339 2.044s-2.839 7.803-6.31 14.717c-3.471 6.915-9.373 16.644-13.123 21.6-3.749 4.966-9.223 10.832-12.169 13.037-3.771 2.815-8.367 4.838-15.534 6.85-5.602 1.573-15.962 4.72-23.032 6.989-7.07 2.28-13.219 3.918-13.659 3.65-.439-.267 2.904-8.07 7.446-17.339 4.531-9.27 9.952-19.738 12.052-23.27 2.088-3.521 5.731-8.263 8.088-10.532 2.356-2.269 7.659-5.716 11.784-7.664 4.124-1.937 9.662-4.131 12.319-4.859Zm-91.09 29.467c.707-2.944 1.479-5.952 1.704-6.69.235-.739.91-1.338 1.521-1.338.6 0 3.492 3.254 6.427 7.225 2.936 3.971 6.599 10.361 8.142 14.182 1.768 4.378 3.032 9.943 3.385 14.985.482 6.796.225 8.68-1.692 12.309-1.243 2.354-4.071 6.293-6.299 8.744-2.229 2.452-12.973 10.843-23.868 18.646-10.906 7.803-29.096 20.368-61.062 41.647l-5.357-2.141c-2.946-1.177-5.602-2.14-5.892-2.14-.289 0-.546-.364-.567-.803-.022-.439 7.809-5.834 17.408-11.977 9.587-6.133 22.014-14.268 27.617-18.068 5.603-3.8 16.84-11.538 24.971-17.2 12.384-8.606 14.698-10.639 14.173-12.427-.354-1.177-1.157-4.795-1.8-8.028-.653-3.328-.932-11.474-.632-18.731.289-7.064 1.104-15.252 1.821-18.195Zm43.419 44.108c5.892-1.691 13.369-3.467 16.604-3.928 3.236-.471 9.385-.909 13.659-.984 5.56-.097 7.767.246 7.777 1.209.011.739-1.36 3.5-3.031 6.155-1.682 2.654-5.185 6.925-7.788 9.504-2.604 2.58-6.653 6.005-9.01 7.621-2.357 1.606-7.659 4.624-11.784 6.711-4.124 2.077-10.391 4.496-13.926 5.384-3.535.878-11.731 1.841-29.996 2.644l-11.248 8.381c-6.181 4.613-17.279 12.651-38.03 27.358l-6.427-.728c-3.536-.396-7.156-1.381-8.035-2.195-.889-.813-1.36-1.648-1.071-1.862.289-.214 10.862-7.332 23.493-15.82 12.63-8.477 29.984-20.593 38.565-26.919 8.581-6.315 18.737-13.272 22.572-15.466 3.824-2.184 11.784-5.363 17.676-7.065Zm-196.578 92.157c7.36-1.809 15.32-4.153 17.676-5.212 2.357-1.06 4.767-1.938 5.357-1.959.589-.022 3.106 1.263 5.581 2.858 2.485 1.605 4.553 3.393 4.585 3.981.043.589-3.674 2.847-8.26 5.01-4.585 2.172-12.426 5.169-17.44 6.668-5.013 1.498-14.655 3.671-21.425 4.827-6.77 1.145-20.279 2.869-29.995 3.832-9.717.953-27.725 2.066-40.012 2.472-13.027.429-22.561 1.188-22.893 1.809-.3.589-.257 2.152.107 3.479.664 2.397.718 2.408 17.537 1.809 9.277-.332 26.995-1.574 39.369-2.762 12.373-1.177 29.492-3.328 38.03-4.773 8.548-1.445 20.354-4.239 26.246-6.208 5.891-1.981 15.286-5.855 31.066-13.647l6.739 2.483c4.627 1.712 6.641 2.997 6.427 4.099-.171.889-7.542 5.234-16.38 9.676-10.873 5.459-19.529 8.98-26.781 10.896-5.892 1.563-15.534 3.575-21.426 4.496-5.891.91-19.389 2.676-29.995 3.907-13.219 1.552-28.881 2.44-80.345 3.382l-2.378-4.132c-1.736-3.04-2.378-5.929-2.41-10.832-.022-3.682.61-8.252 2.838-13.646l26.15-.739c15.619-.439 32.62-1.584 42.219-2.858 8.838-1.167 20.654-2.911 26.246-3.875 5.592-.974 16.197-3.243 23.567-5.041Z"/><path fill="#fff" d="M209.968 8.644c3.246-1.445 10.231-3.96 15.533-5.587 6.953-2.13 12.106-2.976 18.48-3.05 4.863-.065 9.802.374 10.98.963 1.554.78 1.993 1.798 1.607 3.746-.289 1.466-1.778 5.448-3.299 8.83-1.522 3.382-4.875 10.49-7.456 15.788-2.571 5.298-7.51 13.968-10.959 19.266-3.45 5.298-9.62 13.1-13.702 17.34-4.092 4.238-11.527 10.414-16.54 13.721-5.014 3.318-12.48 7.621-16.605 9.58-4.124 1.959-12.084 5.095-17.676 6.99-5.592 1.883-13.316 4.099-17.14 4.912-3.824.814-7.809 1.477-8.838 1.488-1.028.011-1.864-.578-1.853-1.317.011-.738 1.767-6.154 3.899-12.041 2.143-5.887 5.292-13.829 7.006-17.66 1.725-3.832 4.907-10.565 7.081-14.964 2.175-4.41 6.171-11.389 8.892-15.52 2.71-4.132 7.531-9.837 10.713-12.684 3.17-2.836 9.866-7.856 14.879-11.163 5.014-3.297 11.752-7.182 14.998-8.638ZM92.397 76.707c3.685-4.848 13.658-15.809 22.175-24.34 11.955-11.987 15.737-15.21 16.605-14.128.621.77 1.403 5.105 1.746 9.622.353 4.528.728 15.692.846 24.822.118 9.14-.321 19.234-.996 22.477a149.256 149.256 0 0 1-5.089 18.731c-1.617 4.709-3.642 9.323-4.51 10.243-.878.931-3.032 3.532-4.799 5.791-1.768 2.258-8.27 10.168-14.441 17.585a11012.291 11012.291 0 0 1-13.39 16.023c-1.19 1.392-3.686 4.282-5.55 6.423-3.256 3.735-3.492 3.81-6.192 2.269-2.303-1.317-2.796-2.366-2.753-5.887.032-2.355.536-7.653 1.114-11.774.579-4.121 1.36-9.419 1.736-11.774.364-2.355.771-13.186.9-24.083.128-10.885.482-20.764.792-21.942.311-1.177 1.586-4.185 2.84-6.69 1.242-2.504 5.28-8.52 8.966-13.368Zm95.075 28.568c3.245-.418 8.538-1.114 11.783-1.552 3.246-.428 7.939-.857 10.445-.932 2.507-.074 4.553.343 4.553.932 0 .588-1.296 3.361-2.882 6.154-1.585 2.794-4.81 7.974-7.177 11.506s-4.671 6.904-5.131 7.493c-.461.588-3.803 4.923-7.424 9.633-3.621 4.709-9.535 11.613-13.145 15.338-3.599 3.725-8.966 7.995-11.912 9.494-2.946 1.488-8.731 3.329-12.855 4.089-4.125.759-9.427 1.637-11.784 1.948-2.357.321-6.46 1.07-9.106 1.669-2.646.6-10.606 3.029-17.676 5.395-7.07 2.365-14.783 4.592-17.14 4.956-3.814.578-4.467.342-5.892-2.098-1.436-2.462-1.425-2.954.096-4.646.932-1.038 10.113-12.255 20.397-24.907 10.284-12.651 20.365-24.264 22.4-25.784 2.046-1.531 7.081-4.496 11.206-6.583 4.124-2.098 10.509-4.827 14.194-6.058 3.685-1.242 9.952-2.933 13.927-3.768 3.974-.834 9.877-1.851 13.123-2.279ZM49.075 124.776a1021.86 1021.86 0 0 0 8.152-9.9c1.136-1.424 2.818-2.601 3.75-2.612 1.264-.011 2.292 2.612 4.07 10.436 1.318 5.748 2.657 11.902 2.978 13.668a183.64 183.64 0 0 1 1.125 6.957c.3 2.066.793 4.956 1.114 6.422.311 1.478.815 10.137 1.104 19.267.364 11.816.075 19.212-1.04 25.688-.867 5.009-1.906 10.778-2.324 12.844-.407 2.066-2.185 8.798-3.942 14.985-1.81 6.368-3.964 11.752-4.971 12.427-.975.642-2.935.888-4.35.535-1.413-.364-3.899-2.58-5.516-4.935-1.618-2.354-4.478-7.652-6.353-11.773a4278.315 4278.315 0 0 1-5.335-11.774c-1.06-2.355-2.924-7.889-4.146-12.309-1.22-4.41-2.753-12.116-3.406-17.126-.665-5.009-.879-11.024-.504-13.379.386-2.355 1.382-6.69 2.207-9.633.825-2.943 3.707-9.205 6.406-13.914 2.69-4.71 7.638-11.86 10.98-15.874Zm79.477 58.677c2.067-.321 6.888-.964 10.713-1.424 3.835-.46 11.419-.931 16.872-1.038 5.742-.118 10.134.246 10.445.867.3.588-.45 2.397-1.661 4.014-1.199 1.616-6.856 9.44-12.544 17.393-5.699 7.952-13.509 17.639-17.365 21.546-5.999 6.09-8.024 7.417-14.227 9.365-5.959 1.878-12.062 2.901-17.943 4.86-3.236 1.07-8.303 2.911-11.249 4.078-2.946 1.166-9.33 4.003-14.194 6.293-4.885 2.302-9.395 3.8-10.091 3.361-.879-.567-1.06-3.639-.6-10.436.364-5.384 1.725-12.94 3.074-17.125 1.34-4.121 4.146-10.34 6.235-13.818 2.089-3.49 5.753-8.06 8.152-10.169 2.39-2.119 7.456-5.394 11.249-7.289 8.019-4.028 17.151-7.255 25.774-9.108a157.119 157.119 0 0 1 7.36-1.37Zm191.757 2.055c2.656-.375 5.013-.857 5.249-1.081.235-.225 5.785-.225 12.319-.011 6.546.214 13.702.931 15.909 1.595 2.656.792 4.017 1.83 4.017 3.072 0 1.027-2.293 5.961-5.089 10.96-3.278 5.865-7.938 11.999-13.123 17.265-4.413 4.484-10.691 9.825-13.926 11.848-3.235 2.034-8.785 4.699-12.32 5.93-3.535 1.22-9.32 3.061-12.855 4.099-3.535 1.028-12.094 3.725-19.015 5.984-6.92 2.269-13.069 4.121-13.659 4.121-.589 0-1.799-1.199-2.678-2.676-1.532-2.548-1.392-2.976 2.871-8.831 2.464-3.382 4.757-6.39 5.1-6.689.332-.3 2.035-2.462 3.76-4.817 1.735-2.355 3.449-4.517 3.813-4.816.354-.3 4.243-5.77 8.624-12.181 4.382-6.401 9.652-13.101 11.72-14.899 2.067-1.798 6.16-4.378 9.106-5.737 2.945-1.349 7.52-2.762 10.177-3.136ZM13.584 207.011c2.1-7.064 4.52-13.947 5.377-15.285.857-1.348 2.004-2.183 2.54-1.873.546.311 1.81 4.303 2.806 8.863.996 4.559 1.875 8.53 1.96 8.83.086.3.525 1.98.975 3.746.45 1.766 1.693 5.62 2.753 8.563 1.061 2.943 5.346 12.341 9.513 20.872 4.178 8.53 8.153 18.174 8.828 21.407.792 3.81.996 11.731.589 22.477-.343 9.119-1.125 23.569-1.746 32.11a7612.625 7612.625 0 0 0-1.49 20.872c-.203 2.943-.685 5.951-1.07 6.69-.386.738-1.543 1.348-2.572 1.37-1.05.021-5.003-3.65-8.945-8.296-3.889-4.581-8.784-10.735-10.884-13.679-2.1-2.943-5.967-9.44-8.602-14.449-2.625-5.009-5.806-12.234-7.06-16.055-1.264-3.821-2.603-8.884-2.978-11.239-.386-2.355-.643-9.344-.578-15.52.064-6.176 1.07-16.783 2.238-23.548 1.179-6.764 2.668-14.717 3.332-17.66.654-2.944 2.914-11.132 5.014-18.196Zm361.68-6.754c4.243-3.125 9.16-6.09 10.927-6.583 1.768-.492 7.928-.824 13.691-.738 7.251.115 15.17 1.947 21.929 4.495 3.974 1.499 9.277 3.907 11.784 5.352 2.667 1.531 4.542 3.404 4.521 4.496-.011 1.027-2.786 4.463-6.16 7.631-3.364 3.179-8.538 7.61-11.484 9.869-17.493 13.41-36.769 13.789-57.581 13.796-26.203.011-28.742-.149-29.652-1.862-.547-1.028-.911-2.687-.804-3.693.107-.995 5.014-5.191 10.906-9.322 5.892-4.121 13.744-9.805 17.461-12.63a1507.7 1507.7 0 0 1 14.462-10.811Zm-133.426 7.375c3.096-1.22 6.953-2.516 8.57-2.869 4.848-1.058 9.818-2.424 14.666-3.275 2.978-.535 6.749-1.07 8.367-1.199 1.617-.128 3.192.246 3.481.835.289.589-.428 2.879-1.607 5.084-4.767 8.841-6.624 18.119-10.894 27.026-1.832 3.821-5.507 9.848-8.153 13.38-2.656 3.532-6.684 7.749-8.956 9.365-2.271 1.616-8.355 5.191-13.508 7.942-5.153 2.751-11.784 6.711-14.73 8.809-2.946 2.087-10.295 8.509-16.337 14.268-6.042 5.748-11.107 10.361-11.784 10.361-.439-.043-1.135.556-1.542 1.338-.568 1.123-1.211.963-2.946-.707-1.811-1.766-2.1-2.997-1.586-6.957.343-2.654 1.811-9.633 3.267-15.52 1.457-5.887 3.139-12.384 3.728-14.45 1.484-5.107 2.449-9.702 4.339-14.717 1.264-3.382 3.364-7.835 4.671-9.901 1.296-2.065 4.713-5.822 7.595-8.359 2.882-2.537 5.721-4.988 6.31-5.427.589-.449 3.235-2.183 5.892-3.864 2.657-1.68 7.231-4.377 10.177-5.994 2.946-1.616 7.884-3.938 10.98-5.169Zm171.381 30.719c2.218-.429 8.131-1.092 13.145-1.467 8.978-.691 17.569-1.391 26.642-1.37 9.213.022 19.401.471 22.636.996 3.235.524 6.856 1.38 8.035 1.916 1.178.535 5.999 2.782 10.712 5.009 4.714 2.215 12.138 6.486 16.498 9.494 4.36 2.997 11.109 8.659 14.997 12.576 3.889 3.918 8.881 10.179 11.099 13.915 2.732 4.624 4.017 8.081 4.017 10.81-.011 3.297-.396 4.014-2.153 4.014-1.179 0-2.507.15-2.946.332-.439.182-5.871.696-12.052 1.156-6.963.514-16.144.364-24.103-.386-7.071-.674-16.83-2.162-21.694-3.307-4.863-1.145-12.812-4.067-17.675-6.497-4.864-2.44-11.731-6.401-15.266-8.809-3.535-2.408-9.802-7.321-13.926-10.917-4.125-3.586-10.756-10.468-14.73-15.274-3.975-4.806-7.242-9.344-7.253-10.083-.011-.738 1.8-1.691 4.017-2.108Zm-12.255 60.71c-12.994 0-15.351-.279-19.593-2.334-9.99-4.872-50.762-42.582-48.63-48.021l.648-1.654c1.242-3.189 1.457-3.285 6.159-2.611 2.679.374 14.023 2.108 25.218 3.842s21.8 3.393 23.568 3.682c1.767.3 7.552 3.04 12.855 6.091 6.803 3.928 12.32 8.263 18.747 14.76 5.003 5.062 10.188 11.228 13.927 18.217l-2.411 1.413c-1.328.781-4.456 2.226-6.963 3.211-6.511 2.558-16.801 3.404-23.525 3.404ZM95.878 254.416c3.535-1.156 11.324-3.136 17.291-4.409 5.977-1.274 12.105-2.323 13.615-2.323 2.389 0 2.657.353 2.1 2.676-.364 1.466-2.303 7.011-4.306 12.309-2.014 5.298-5.989 14.449-8.838 20.336-3.171 6.562-6.567 11.903-8.774 13.808-1.971 1.702-7.435 6.518-12.137 10.703-4.693 4.175-10.906 10.008-13.798 12.951-2.893 2.944-7.52 8.724-10.285 12.845-2.763 4.12-6.191 9.547-7.627 12.062-1.425 2.526-3.075 4.41-3.664 4.207-.589-.214-1.692-2.751-2.453-5.652-.75-2.89-1.5-10.328-1.66-16.504-.161-6.176.31-15.574 1.05-20.872.739-5.298 2.388-13.005 3.674-17.126 1.285-4.12 4.156-10.146 6.374-13.379 2.228-3.232 5.667-7.375 7.638-9.194 1.971-1.82 6.235-4.892 9.48-6.829 3.236-1.937 8.785-4.463 12.32-5.609Zm75.257 3.169c1.328-1.028 3.974-2.837 5.892-4.014 1.917-1.167 4.081-2.13 4.82-2.141.74 0 1.339 1.199 1.339 2.676 0 1.466-.664 4.239-1.478 6.155-.814 1.915-2.239 9.74-3.16 17.393-.932 7.653-1.939 18.003-2.25 23.012-.371 5.978-2.079 12.561-4.799 17.928-1.703 3.383-4.36 7.964-5.892 10.169-1.521 2.204-2.796 4.377-2.828 4.816-.022.439-2.593 4.41-5.699 8.83-3.107 4.41-6.331 8.167-7.178 8.349-1.071.214-1.971-1.563-2.999-5.887-.804-3.414-1.693-13.433-1.971-22.263-.375-12.084-.086-18.046 1.178-24.083.921-4.442 3.803-12.319 6.438-17.66 3.064-6.198 6.803-11.731 10.477-15.52 3.128-3.233 6.781-6.733 8.11-7.76Zm106.858-2.73a192.76 192.76 0 0 1 8.571-2.13c2.356-.513 8.623-1.038 13.926-1.166 7.317-.161 11.323.321 16.605 2.023 10.402 3.348 18.705 10.1 26.353 17.65 5.356 5.298 10.541 11.195 13.284 16.59l-16.873.268c-9.277.149-20.011-.097-23.836-.536-3.835-.439-11.301-1.819-16.604-3.061a1778.559 1778.559 0 0 1-18.212-4.378c-4.713-1.166-9.534-2.333-10.712-2.59-1.179-.257-6.246-.995-11.249-1.637-5.013-.643-9.834-1.82-10.712-2.612-1.404-1.252-1.136-1.841 2.142-4.72 2.057-1.809 8.088-5.363 13.391-7.899 5.303-2.537 11.57-5.149 13.926-5.802Zm-54.784 30.73c5.228-1.499 10.531-2.933 11.784-3.19 1.264-.257 7.113-.364 13.005-.246s11.913.503 13.391.856c1.468.354 6.535 1.82 11.248 3.254 4.714 1.434 9.534 3.286 10.713 4.11 2.089 1.456 2.046 1.574-1.511 4.56-2.003 1.68-8.034 6.315-13.39 10.297-5.357 3.971-12.631 8.637-16.166 10.35-3.535 1.723-8.12 3.372-10.177 3.682-2.067.3-7.124.824-11.248 1.156a579.72 579.72 0 0 0-13.391 1.252c-3.246.353-7.338.792-9.106.964-1.767.171-5.388.631-8.034 1.027a148.904 148.904 0 0 0-9.106 1.67c-2.357.535-5.731.995-7.499 1.027-3.042.043-3.171-.117-2.41-3.189.439-1.777 2.571-6.005 4.724-9.387 2.164-3.383 6.385-8.606 9.374-11.603 2.999-2.997 8.345-7.342 11.88-9.665 3.899-2.547 10.156-5.277 15.919-6.925ZM88.915 328.131c5.003-5.277 12.202-11.924 15.983-14.781 3.782-2.858 7.435-5.192 8.11-5.192.675 0 1.318 1.199 1.425 2.676.201 2.762-1.255 7.6-1.886 10.436a465.079 465.079 0 0 0-1.66 7.76c-.364 1.766-.922 9.954-1.243 18.196-.375 9.537-.15 16.74.621 19.801.665 2.655 1.522 5.78 1.907 6.958.386 1.177.814 5.747.943 10.168.182 6.401-.407 9.986-2.892 17.661-1.725 5.298-4.146 11.313-5.389 13.379-1.243 2.066-4.006 5.812-6.138 8.349-2.143 2.526-4.617 4.57-5.496 4.559-.889-.021-4.328-2.815-7.66-6.208-3.331-3.393-7.723-8.819-9.759-12.052-2.046-3.232-4.863-9.023-6.267-12.844-2.174-5.898-2.56-8.916-2.56-19.801 0-9.719.482-14.279 2.003-18.731 1.093-3.233 3.986-9.227 6.428-13.315 2.432-4.089 8.516-11.742 13.53-17.019Zm35.577-6.593c1.189-2.355 3.674-6.315 5.528-8.798 1.842-2.484 3.717-4.528 4.156-4.549.439-.022 1.007.331 1.243.77.246.439.578 4.175.728 8.295.15 4.121.879 10.383 1.607 13.915.729 3.532 1.564 7.867 1.853 9.633.279 1.766 1.586 7.3 2.904 12.309 2.013 7.653 2.292 10.8 1.767 19.801-.353 5.887-1.5 14.075-2.56 18.196-1.061 4.121-2.539 8.456-3.268 9.633-1.296 2.077-1.414 2.055-4.103-1.07-1.521-1.766-4.413-5.737-6.427-8.83-2.003-3.094-4.928-8.874-6.481-12.845-2.368-6.036-2.914-9.429-3.321-20.604-.418-11.356-.139-14.749 1.864-22.477 1.285-5.009 3.321-11.024 4.51-13.379ZM9.652 371.844c-1.221-3.532-3.6-13.165-5.281-21.407C2.465 341.041 0 329.567 0 319.932c0-6.165.375-8.541 1.34-8.498.738.032 4.327 3.767 7.97 8.295 3.642 4.527 11.601 13.572 17.675 20.112 6.074 6.529 12.598 13.754 14.484 16.055 1.896 2.29 4.724 7.31 6.299 11.131a1401.64 1401.64 0 0 0 4.231 10.169c.76 1.766 2.464 6.818 3.792 11.238 1.329 4.41 3.418 10.201 4.65 12.866 1.221 2.654 3.9 7.471 5.945 10.703 2.036 3.222 3.964 6.112 4.285 6.412.311.299 1.768 1.851 3.246 3.446 2.207 2.398 2.443 3.19 1.34 4.538-.74.9-2.186 1.467-3.214 1.242-1.029-.214-7.424-3.211-14.195-6.668-6.78-3.447-15.94-8.98-20.354-12.288-4.424-3.318-10.262-8.381-12.973-11.26-2.72-2.89-6.674-8.381-8.795-12.202-2.12-3.821-4.853-9.847-6.074-13.379Zm186.39-39.977a939.293 939.293 0 0 1 8.034-1.627c1.179-.236 7.928-.482 14.998-.536 7.07-.064 14.676.236 16.894.675 2.539.503 4.028 1.391 4.006 2.397-.01.878-5.688 7.204-12.609 14.043-6.909 6.84-14.987 13.958-17.933 15.82-2.945 1.852-9.459 4.581-14.462 6.069-5.013 1.488-11.762 3.682-14.997 4.881-3.246 1.209-6.856 2.59-8.035 3.082a807.875 807.875 0 0 0-8.57 3.714c-3.535 1.552-7.51 3.757-8.838 4.903-1.81 1.552-2.592 1.744-3.139.738-.407-.738-.696-4.228-.653-7.76.064-4.453 1.028-8.713 3.149-13.893 1.961-4.806 4.971-9.537 8.41-13.251 2.946-3.168 7.306-7.032 9.695-8.573 2.389-1.552 6.727-3.971 9.641-5.384 2.914-1.413 6.021-2.912 6.91-3.329.878-.428 4.253-1.306 7.499-1.969Zm-9.106 47.705c3.535-1.188 9.074-2.719 12.319-3.393 3.236-.674 7.221-1.327 8.838-1.445 2.571-.182 2.861.096 2.293 2.194-.354 1.327-1.532 4.335-2.614 6.69-1.082 2.355-3.728 7.407-5.892 11.238-2.164 3.822-5.442 9.12-7.295 11.753-1.854 2.644-5.057 6.422-7.113 8.391-2.068 1.98-7.971 6.444-13.123 9.922-5.153 3.479-9.738 6.348-10.177 6.369-.44.021-3.214-2.986-6.16-6.668s-6.921-8.403-8.838-10.468c-1.907-2.077-3.471-4.378-3.482-5.117 0-.738 1.811-3.564 4.017-6.282 2.207-2.73 6.91-7.129 10.445-9.794 3.535-2.665 9.556-6.283 13.391-8.038 3.824-1.756 9.856-4.164 13.391-5.352Zm-73.157 35.621c1.596-3.233 4.35-7.45 6.106-9.366 1.757-1.916 3.825-3.446 4.596-3.403.761.032 7.178 7.514 14.248 16.622 7.07 9.109 13.98 17.864 15.351 19.459 1.361 1.606 4.757 5.32 7.542 8.263 2.774 2.944 6.085 6.797 7.338 8.563 1.253 1.766 3.064 5.373 4.007 8.027.953 2.655 2.014 10.115 2.367 16.591.354 6.475.225 12.116-.3 12.534-.525.417-4.092-.364-7.917-1.724-3.835-1.359-10.584-4.303-14.997-6.518-4.425-2.226-10.563-5.662-13.659-7.642-3.096-1.991-6.952-4.688-8.57-6.016-1.618-1.327-5.067-4.57-7.649-7.225-2.592-2.654-6.202-7.952-8.034-11.773-3.107-6.476-3.332-7.771-3.332-18.731 0-10.65.279-12.341 2.903-17.661Zm-86.665 9.901c-2.54-4.86-4.35-9.312-4.028-9.901.321-.589.803-1.07 1.071-1.07.268 0 4.703 1.627 9.856 3.607 5.153 1.98 16.604 7.085 25.442 11.335 8.838 4.249 18.962 9.119 22.497 10.821 3.535 1.691 9.32 5.555 12.855 8.573 3.535 3.029 8.356 7.279 10.713 9.462 2.356 2.184 8.377 7.086 13.391 10.907 5.002 3.81 13.08 9.44 17.943 12.512 4.864 3.061 8.86 5.93 8.881 6.369.032.439-.568 1.423-1.339 2.194-1.028 1.038-4.092 1.242-12.095.803-5.892-.321-13.123-.835-16.069-1.135-2.946-.31-8.977-1.316-13.39-2.237-4.425-.931-11.41-2.676-15.534-3.885-4.124-1.21-9.909-3.404-12.855-4.881-2.946-1.477-7.767-4.463-10.713-6.647-2.946-2.173-8.366-7.16-12.051-11.078-3.686-3.917-7.778-8.723-9.106-10.682-1.328-1.959-4.307-6.422-6.631-9.901-2.325-3.489-6.3-10.307-8.838-15.166Zm147.235 6.443c2.796-1.605 8.227-3.992 12.051-5.309 3.825-1.306 8.292-2.397 9.909-2.429 1.618-.022 3.096.556 3.289 1.295.182.738-.546 5.672-1.639 10.971-1.082 5.298-2.496 11.078-3.149 12.844-.643 1.766-2.057 5.137-3.15 7.492-1.093 2.355-2.603 5.106-3.353 6.112-.76 1.006-2.1 1.819-2.978 1.809-.975-.011-4.328-5.459-8.57-13.947-3.825-7.653-7.081-14.364-7.231-14.92-.15-.546 2.025-2.312 4.821-3.918Zm30.981 31.961c3.042-3.169 6.609-6.123 7.927-6.572 2.271-.782 2.421-.461 3.171 6.283.428 3.906.353 9.761-.161 12.994-.514 3.232-1.178 6.732-1.478 7.76-.289 1.027-.9 1.894-1.339 1.926-.439.022-2.25-1.787-4.007-4.014-1.767-2.237-4.778-5.394-6.695-7.01-1.928-1.617-3.375-3.543-3.225-4.282.15-.738 2.764-3.928 5.807-7.085Z"/><path fill="#fff" d="M188.586 492.14c-.268-10.457-.161-19.769.246-20.69.396-.92 1.468-1.669 2.368-1.669.889 0 3.181 2.526 5.077 5.619s3.696 5.865 4.018 6.154c.31.289 2.496 2.922 4.852 5.844 2.357 2.922 6.46 7.332 9.106 9.805 2.646 2.462 7.467 6.604 10.713 9.183 3.246 2.591 7.445 7.332 9.352 10.543 1.896 3.211 4.189 8.841 5.089 12.523.899 3.682 1.628 9.098 1.628 12.042 0 4.388-.343 5.351-1.875 5.351-1.028-.01-6.449-.749-12.052-1.648-5.592-.899-11.505-1.862-13.123-2.141-1.617-.267-4.274-.717-5.892-.984-1.617-.268-4.392-.718-6.159-1.007-1.768-.289-10.681-1.744-19.819-3.232-9.138-1.488-18.533-2.976-20.889-3.307-2.357-.321-5.496-.846-6.964-1.167-1.478-.321-4.606-.846-6.963-1.167-2.357-.321-7.424-1.819-11.248-3.35-3.825-1.52-10.584-4.645-14.998-6.946-4.424-2.291-11.655-6.776-16.069-9.955-4.424-3.189-9.963-7.428-12.32-9.44-2.903-2.483-3.942-4.014-3.213-4.774.739-.77 6.674-.139 19.282 2.055 13.638 2.376 23.183 3.34 38.03 3.821 10.906.354 22.958 1.349 26.782 2.205 3.824.846 8.892 2.409 15.533 5.352l-.492-19.02Zm55.063 30.087c-.247-.289.053-1.123.664-1.83.857-.995 3.835.054 12.577 4.421 6.309 3.136 15.554 7.385 20.568 9.44 5.013 2.055 14.408 5.47 20.89 7.589 16.867 5.543 34.328 7.454 51.153 11.816 3.095.803 9.855 2.377 15.019 3.479 5.952 1.271 12.379 2.815 18.19 4.57 3.685 1.114 10.787 3.126 15.801 4.453 4.986 1.331 9.575 3.396 14.462 4.817.589.171 5.164 1.627 10.177 3.243 5.014 1.605 12.598 4.538 16.872 6.507 4.275 1.97 8.014 3.575 8.303 3.575.289 0 1.982 1.081 3.749 2.409 2.678 2.001 3.118 2.954 2.625 5.619-.322 1.766-1.639 5.352-2.946 7.953-1.371 2.772-4.103 5.897-6.535 7.492-2.292 1.52-4.821 3.233-5.603 3.821-.985.739-2.988.46-6.534-.91-2.807-1.091-12.095-4.324-20.644-7.192-8.548-2.858-18.672-6.219-22.496-7.461-7.749-2.494-14.582-3.922-22.497-5.994-5.603-1.455-12.587-3.136-15.533-3.724-2.946-.6-6.567-1.306-8.035-1.574-1.478-.267-6.052-1.177-10.177-2.033-4.124-.857-13.412-2.655-20.643-3.993-8.516-1.575-17.546-3.828-25.689-6.818-5.742-2.119-13.584-5.544-17.408-7.61-3.824-2.066-10.102-5.823-13.926-8.338-3.825-2.526-7.553-5.245-8.26-6.048-.793-.888-1.103-3.339-.803-6.272.267-2.654.717-5.062 1.007-5.351.278-.289 3.77 1.466 7.766 3.906 3.985 2.43 11.591 6.529 16.894 9.098 5.303 2.569 11.57 5.331 13.927 6.144 2.356.814 5.485 1.97 6.963 2.569 1.467.599 3.16 1.231 3.749 1.413.59.182 4.446 1.295 8.57 2.472 4.125 1.188 16.177 3.896 26.782 6.026 10.606 2.13 21.447 4.314 24.104 4.86 7.166 1.443 14.385 3.636 21.425 5.587 3.824 1.07 18.479 5.641 32.566 10.168 25.496 8.199 25.604 8.22 27.596 6.09 1.907-2.033 1.918-2.194.118-3.168-1.039-.567-2.378-1.156-2.967-1.316-.59-.15-8.785-2.901-18.212-6.112-9.427-3.2-20.761-6.904-25.175-8.231-4.424-1.327-8.516-2.537-9.105-2.687-.59-.139-6.857-1.766-13.927-3.617-7.07-1.841-13.584-3.629-14.462-3.961-.878-.342-2.571-.77-3.749-.941-1.179-.172-10.82-2.056-21.426-4.175-10.605-2.13-24.949-5.78-31.87-8.113-6.92-2.333-17.29-6.347-23.032-8.927-5.742-2.579-12.973-6.197-16.069-8.027-3.096-1.841-5.988-3.34-6.428-3.34-.439-.01-2.142-1.092-3.781-2.408-1.639-1.327-3.235-3.853-3.557-5.619-.321-1.766-.782-3.458-1.028-3.747Z"/></svg>
-1
app/static/images/Path-Destruction.svg
··· 1 - <svg xmlns="http://www.w3.org/2000/svg" width="581" height="612" fill="none"><path fill="#fff" fill-opacity=".3" fill-rule="evenodd" d="M269.393 6.167c3.755 3.784 10.024 9.014 13.942 11.619 3.918 2.604 9.647 5.88 12.721 7.295 3.073 1.404 9.026 3.49 13.229 4.629 4.193 1.14 13.586 3.205 20.862 4.588 7.277 1.384 17.575 3.928 22.898 5.668 5.322 1.73 14.247 5.33 19.844 7.986 5.597 2.666 13.494 6.99 17.555 9.625 4.06 2.625 11.061 8.323 15.57 12.657 4.61 4.436 8.589 9.218 9.108 10.937.519 1.68 1.669 8.313 2.564 14.753.896 6.44 1.944 19.596 2.331 29.251.386 9.655.356 17.551-.061 17.551-.418 0-2.585-3.775-4.814-8.394-2.218-4.619-6.961-12.057-10.533-16.533-3.561-4.477-9.189-10.459-12.486-13.308-3.308-2.839-8.294-6.705-11.093-8.587-2.798-1.883-8.294-4.925-12.212-6.766-3.918-1.842-10.563-4.009-14.756-4.813a17851.73 17851.73 0 0 0-19.335-3.683c-6.432-1.23-16.283-3.55-21.88-5.158-5.597-1.608-13.84-4.344-18.318-6.074-4.477-1.73-11.805-4.955-16.282-7.163-4.478-2.218-9.373-5.046-13.596-8.546l-1.496-26.453c-.824-14.55-1.293-26.79-1.038-27.206.254-.417 3.531 2.34 7.276 6.125Zm219.132 93.38c.489.243-2.096 4.791-5.729 10.112-3.643 5.311-8.63 13.675-11.093 18.568-2.452 4.894-5.495 11.884-6.757 15.516-1.75 5.026-2.3 8.933-2.32 16.279-.01 6.349.6 11.761 1.791 15.77.987 3.358 3.094 8.618 4.671 11.7 1.567 3.073 4.101 7.194 5.618 9.157 1.526 1.964 2.432 2.646 2.035 1.526-.407-1.119-1.659-5.473-2.799-9.665-1.506-5.586-2.045-10.622-1.994-18.823.03-6.155.651-13.674 1.384-16.706.722-3.021 1.893-5.657 2.595-5.85.848-.224 1.279.936 1.292 3.48.01 2.096.743 6.562 1.628 9.92.886 3.357 2.534 7.936 3.664 10.174 1.13 2.238 3.603 6.013 5.495 8.394 2.249 2.818 5.648 5.372 9.8 7.345 3.501 1.669 9.566 3.521 13.484 4.121 3.918.6 8.956 1.954 11.195 3.001 2.238 1.059 6.828 4.813 10.207 8.354 3.368 3.53 8.009 9.635 10.298 13.552 2.29 3.917 5.19 9.411 6.442 12.209 1.252 2.798 3.572 8.75 8.06 21.366l-6.279 2.543c-3.46 1.404-8.508 4.589-11.276 7.122-2.747 2.523-5.912 6.41-7.021 8.648-1.12 2.239-2.249 6.359-2.534 9.157-.306 3.083.173 7.692 1.201 11.701.936 3.632 3.266 9.594 5.179 13.226 1.914 3.632 5.089 8.557 7.063 10.938 2.035 2.452 4.478 4.324 5.628 4.324 1.2 0 2.88-1.364 4.091-3.307 1.129-1.821 2.9-6.054 3.948-9.411 1.048-3.358 2.717-10.917 3.715-16.788.987-5.87 2.076-11.049 2.401-11.507.326-.448 2.412 1.842 4.631 5.087 2.228 3.256 5.332 9.116 6.909 13.034 1.578 3.917 3.542 10.438 4.356 14.498.824 4.059 1.496 12.189 1.496 18.059 0 6.461-.794 14.804-2.015 21.112-1.109 5.738-3.094 13.633-4.417 17.55-1.323 3.917-3.653 9.646-5.19 12.718-1.536 3.073-3.897 7.082-5.251 8.903-1.353 1.821-2.92 3.306-3.48 3.306s-1.323-1.261-1.69-2.798c-.376-1.536-2.228-6.684-4.131-11.446-1.903-4.761-5.353-11.853-7.663-15.77-2.595-4.405-8.101-10.998-14.441-17.296-6.543-6.501-11.418-12.372-16.801-22.383l-.021 5.85c-.02 3.215.652 8.943 1.486 12.718 1.14 5.148 3.145 9.421 8.009 17.042 3.562 5.595 7.439 12.921 8.599 16.278 1.171 3.358 2.626 10.917 3.237 16.788.946 9.055 1.75 12.006 5.23 19.331 2.26 4.762 5.76 10.937 11.439 18.822l-.764 11.701c-.417 6.43-1.404 15.363-2.188 19.84-.783 4.476-2.523 11.344-3.867 15.261-1.333 3.917-3.816 9.869-5.515 13.227-1.7 3.357-5.272 9.085-7.948 12.717-2.677 3.633-7.653 9.544-11.052 13.125-3.399 3.571-10.085 9.768-14.837 13.756-4.753 3.998-11.51 9.197-15.011 11.558-3.501 2.36-6.818 4.293-7.378 4.293-.56 0 .417-2.859 2.168-6.359 1.74-3.5 4.793-11.171 6.767-17.041 3.063-9.117 3.603-12.098 3.664-20.349.061-8.211-.316-10.5-2.453-15.18-1.435-3.144-4.264-6.99-6.584-8.943-2.239-1.882-5.679-3.866-7.632-4.395-2.015-.54-4.885-.591-6.615-.112-1.679.468-4.203 1.434-5.597 2.146-1.405.713-5.007 3.195-8.02 5.505-3.012 2.299-8.548 7.854-12.303 12.331-3.765 4.477-9.373 11.802-12.466 16.279-4.936 7.132-6.371 8.475-11.612 10.856-3.287 1.495-8.955 3.286-12.588 3.968-3.674.691-9.556.997-13.23.671-3.643-.315-9.82-1.791-13.738-3.286-6.401-2.432-8.152-2.656-17.3-2.279-7.175.295-11.826 1.068-15.774 2.604-3.084 1.201-9.19 4.365-13.576 7.031-4.396 2.665-10.807 6.572-14.247 8.668-3.45 2.096-6.503 3.836-6.777 3.846-.285.021-1.995-3.988-3.817-8.902-1.811-4.915-6.513-14.773-10.431-21.906-3.918-7.132-7.144-13.318-7.164-13.735-.02-.417 3.531-4.202 7.887-8.404 4.355-4.212 11.133-9.777 15.051-12.392 3.918-2.605 12.385-7.285 18.827-10.388 6.431-3.103 17.88-7.671 25.441-10.154 7.551-2.482 19.692-5.748 26.968-7.244 7.276-1.506 17.697-3.032 23.162-3.398 7.612-.519 9.922-.377 9.922.6-.01.702-.468 1.272-1.028 1.272-.559 0-5.709 3.144-11.448 6.979-5.74 3.836-12.497 8.791-15.011 11.009-2.524 2.228-5.424 5.84-6.462 8.038-1.089 2.289-1.628 4.965-1.272 6.277.377 1.404 2.28 3.063 4.936 4.284 2.381 1.088 7.988 2.513 12.466 3.154 4.478.651 11.571.895 15.774.549 4.192-.336 10.38-1.546 13.738-2.676 3.358-1.129 8.284-3.642 10.94-5.596 2.656-1.943 6.686-6.389 8.955-9.889 2.259-3.5 5.099-9.34 6.3-12.972 1.821-5.525 2.218-9.462 2.707-41.206l4.884-3.073c2.687-1.689 6.686-4.436 8.884-6.104 2.199-1.669 5.882-5.555 8.193-8.628 2.33-3.113 4.752-7.844 5.475-10.683 1.068-4.232 1.027-6.196-.224-11.7-.825-3.633-2.717-9.361-4.213-12.718-1.496-3.358-3.359-6.908-4.152-7.885-1.323-1.638-1.761-1.303-5.353 4.069-2.158 3.216-6.473 8.598-9.587 11.955-3.928 4.223-6.024 5.789-6.787 5.087-.611-.559-2.3-6.511-3.745-13.226-2.137-9.89-2.646-15.007-2.677-26.962-.03-11.599.377-16.167 1.903-21.366 1.059-3.632 3.531-9.299 5.485-12.596 1.944-3.286 5.323-7.407 7.5-9.157 2.168-1.739 6.218-5.229 8.986-7.752 2.779-2.524 6.361-6.868 7.969-9.666 1.597-2.798 3.857-8.75 5.007-13.226 1.15-4.477 2.391-12.26 3.46-26.454l-4.519-3.337c-2.961-2.187-5.638-3.327-11.123-3.276l.255 5.484c.203 4.314-.184 5.952-1.781 7.661-1.12 1.201-3.186 2.157-4.58 2.137-1.709-.031-4.203-1.801-7.632-5.413-3.094-3.266-6.961-9.126-9.882-14.997-2.635-5.29-5.841-13.511-7.113-18.273-1.944-7.234-2.32-11.232-2.331-24.418-.01-13.247.367-17.154 2.311-24.418 1.282-4.762 4.711-13.45 7.612-19.331 3.928-7.936 6.991-12.484 11.927-17.673 3.643-3.846 9.555-9.197 13.127-11.894 3.572-2.696 6.9-4.7 7.378-4.456ZM97.46 103.32c2.605 1.79 8.64 7.162 13.423 11.924 7.235 7.203 9.484 10.276 13.423 18.324 2.605 5.311 5.617 12.412 6.696 15.77 1.068 3.357 2.534 9.309 3.236 13.226.834 4.62 1.099 11.762.743 20.349-.377 9.055-1.232 15.638-2.727 20.857-1.201 4.192-4.214 11.863-6.707 17.042-2.982 6.206-6.35 11.314-9.871 14.987-3.603 3.764-6.167 5.596-7.887 5.626-1.404.031-3.46-.926-4.579-2.126-1.598-1.709-1.985-3.348-1.781-7.661.244-5.24.142-5.484-2.29-5.484-1.404 0-4.223.803-6.279 1.78s-4.427 2.92-5.282 4.324c-1.231 2.025-1.394 4.324-.834 11.192.386 4.761 1.648 12.077 2.809 16.279 1.16 4.192 3.327 9.879 4.823 12.626 1.506 2.737 5.669 7.549 9.251 10.683 3.592 3.123 8.314 7.519 10.502 9.757 2.188 2.238 5.271 6.817 6.839 10.174 1.577 3.358 3.48 8.628 4.233 11.701.763 3.123 1.354 10.998 1.343 17.805 0 6.715-.6 15.638-1.333 19.84-.722 4.191-1.994 10.377-2.829 13.735-.834 3.357-1.984 6.562-2.544 7.122-.678.678-2.91-1.018-6.696-5.087-3.114-3.358-7.429-8.74-9.586-11.955-3.583-5.372-4.03-5.708-5.343-4.07-.794.977-2.82 4.986-4.498 8.903-1.68 3.917-3.552 9.869-4.173 13.226-.865 4.752-.814 7.122.224 10.683.743 2.523 2.738 6.634 4.447 9.157 1.7 2.523 5.343 6.471 8.081 8.77 2.747 2.31 7.276 5.647 15.163 10.632l-.336 13.441c-.234 9.543.132 15.668 1.282 21.081.886 4.191 2.982 10.489 4.661 13.989 1.669 3.5 5.221 8.557 7.877 11.243 2.656 2.696 7.347 6.084 10.431 7.539 3.073 1.455 8.345 3.154 11.703 3.764 3.358.621 8.507 1.12 11.448 1.12 2.941-.011 8.661-.519 12.721-1.14 4.061-.621 9.098-1.994 11.194-3.052 2.178-1.099 4.061-2.91 4.386-4.212.306-1.262.082-3.551-.508-5.087-.591-1.537-3.257-5.016-5.913-7.723-2.656-2.716-9.871-8.21-16.028-12.229-6.157-4.009-11.54-7.285-11.958-7.275-.417 0-.763-.447-.763-1.007 0-.57 2.809-1.018 6.361-1.028 3.5-.01 12.079.957 19.081 2.147 6.991 1.18 18.216 3.663 24.932 5.504 6.717 1.842 16.558 5.057 21.88 7.153 5.312 2.086 13.097 5.514 17.3 7.61 4.193 2.096 11.754 6.552 16.792 9.91 5.169 3.439 12.486 9.615 16.791 14.152 4.386 4.64 9.23 11.07 11.387 15.14 2.382 4.497 5.638 13.928 8.946 25.893 2.849 10.347 6.614 23.167 8.344 28.488 1.741 5.321 4.468 12.301 6.066 15.516 1.597 3.215 4.854 7.722 7.235 10.001 2.382 2.289 11.622 9.035 20.537 15.007 8.914 5.973 16.007 11.314 15.773 11.874-.244.559-2.045.875-3.999.702-1.964-.173-7.917-1.404-13.23-2.747-5.322-1.333-13.331-3.816-17.809-5.525-4.477-1.699-11.804-5.189-16.282-7.743-4.478-2.564-10.614-6.806-13.647-9.431-3.022-2.615-7.459-7.509-9.851-10.866-2.391-3.358-5.709-9.076-7.378-12.718-1.669-3.643-4.203-11.192-5.628-16.788-1.434-5.596-4.396-14.752-6.574-20.348-2.188-5.596-5.403-13.033-7.164-16.533-1.75-3.5-5.434-8.537-8.172-11.192-2.747-2.656-7.663-6.43-10.929-8.394-3.267-1.963-9.495-4.822-13.841-6.359-4.345-1.536-8.466-2.808-9.169-2.808-.702-.01 1.018 1.424 3.817 3.174 2.798 1.761 7.327 5.088 10.054 7.397 2.738 2.3 6.472 6.247 8.294 8.77 1.832 2.524 4.936 7.784 6.9 11.701 1.964 3.917 4.538 10.093 5.729 13.735 1.191 3.642 2.035 6.735 1.873 6.888-.153.153-4.183-2.147-8.935-5.107-4.763-2.961-12.426-6.634-17.046-8.16-5.058-1.669-10.625-2.778-13.993-2.778-3.731 0-8.565 1.075-14.502 3.225-7.764 2.798-10.278 3.226-19.59 3.307-8.975.071-11.825-.325-17.768-2.462-4.264-1.526-8.233-3.765-9.942-5.596-1.568-1.679-6.188-7.631-10.258-13.226-4.081-5.596-10.645-13.38-14.583-17.297-3.949-3.917-9.648-8.444-12.68-10.052-3.389-1.811-7.053-2.94-9.566-2.95-2.321-.011-5.608.895-7.633 2.095-1.964 1.16-4.57 3.165-5.79 4.467-1.232 1.302-3.287 4.66-4.57 7.458-1.933 4.222-2.31 6.725-2.249 14.752.072 8.231.61 11.253 3.674 20.349 1.974 5.87 5.027 13.542 6.767 17.042 2.463 4.914 2.84 6.359 1.66 6.359-.845 0-6.219-3.521-11.958-7.824-5.74-4.304-14.492-11.752-19.448-16.533-4.966-4.793-11.794-12.372-15.183-16.849-3.389-4.477-8.1-12.26-10.472-17.296-2.371-5.037-5.261-13.044-6.421-17.805-1.15-4.762-2.575-13.461-3.155-19.331-.58-5.871-1.028-12.973-1.008-15.77.041-4.152.682-5.932 3.47-9.666 1.883-2.523 5.038-7.783 7.002-11.7 1.964-3.918 3.857-8.272 4.193-9.666.336-1.404 1.211-7.58 1.944-13.735.977-8.262 2.117-12.922 4.365-17.805 1.67-3.632 5.048-9.595 7.5-13.227 2.453-3.632 5.333-8.902 6.381-11.7 1.13-2.981 2.127-8.882 2.9-23.401l-3.358 6.105c-2.055 3.744-7.133 9.838-13.138 15.77-5.383 5.321-11.53 12.412-13.677 15.77-2.137 3.357-5.108 8.851-6.605 12.209-1.495 3.357-3.704 9.197-4.915 12.972-1.343 4.202-2.686 6.746-3.47 6.552-.702-.173-3.083-3.032-5.302-6.359-2.208-3.327-5.485-10.164-7.286-15.2-1.792-5.036-4.264-14.427-5.506-20.857C.07 338.62-.246 334.194.152 323.318c.427-11.599.915-14.478 3.927-23.401 2.026-5.982 5.343-13.033 8.04-17.103 2.524-3.805 4.844-6.552 5.17-6.104.315.457 1.567 6.43 2.798 13.287 1.221 6.858 3.104 14.865 4.193 17.805 1.089 2.941 2.809 6.43 3.816 7.773 1.394 1.832 2.463 2.269 4.386 1.811 1.649-.397 4.03-2.849 6.788-7 2.33-3.52 5.19-8.343 6.36-10.723 1.16-2.381 2.86-7.183 3.766-10.683.977-3.795 1.445-8.414 1.14-11.446-.285-2.798-1.415-6.919-2.534-9.157-1.11-2.238-4.488-6.268-7.5-8.964-3.013-2.696-8.06-5.891-16.965-9.35l1.272-4.07c.692-2.238 2.982-8.19 5.078-13.226 2.097-5.036 5.536-12.138 7.653-15.77 2.107-3.632 6.523-9.533 9.82-13.105 3.288-3.561 8.162-7.569 10.818-8.902 2.656-1.323 7.928-2.879 11.703-3.459 3.776-.57 9.73-2.402 13.23-4.07 4.152-1.974 7.55-4.528 9.8-7.346 1.893-2.381 4.406-6.267 5.597-8.648 1.19-2.381 2.849-6.959 3.694-10.174.835-3.215 1.527-7.57 1.527-9.666-.007-2.55.413-3.71 1.261-3.479.703.193 1.873 2.828 2.595 5.85.733 3.032 1.354 10.55 1.384 16.706.051 8.2-.488 13.237-1.994 18.822-1.14 4.192-2.381 8.547-2.778 9.666-.397 1.119.824-.051 2.707-2.595 1.892-2.543 4.752-7.579 6.37-11.191 1.628-3.612 3.593-10.225 4.376-14.702.865-4.955 1.17-10.53.763-14.244-.356-3.358-1.567-8.852-2.696-12.209-1.12-3.358-3.868-9.768-6.117-14.244-2.249-4.477-7.235-12.83-11.092-18.568-3.847-5.738-6.727-10.642-6.39-10.907.335-.254 2.737.997 5.342 2.788Zm309.693 28.213c.469 0 1.547 2.401 2.402 5.341.855 2.941 2.28 9.463 3.155 14.499.997 5.697 1.455 12.992 1.231 19.331-.325 8.801-.783 10.998-3.389 16.279-1.669 3.357-5.556 8.79-8.639 12.077-3.094 3.276-8.824 8.068-12.742 10.642-3.918 2.584-11.021 6.41-15.773 8.516-4.763 2.106-9.454 3.846-10.431 3.846-1.649.02-1.781-1.781-1.791-23.635-.011-13.013-.275-24.571-.58-25.69-.469-1.699.508-2.544 5.861-5.057 3.542-1.658 9.638-5.148 13.556-7.753 3.917-2.614 9.596-7.437 12.618-10.723 3.023-3.287 7.338-8.608 9.587-11.823 2.249-3.215 4.467-5.85 4.935-5.85Zm-190.729 70.253c.987-.04 1.282 5.647 1.323 50.312l-8.426 3.256c-4.631 1.79-12.426 5.799-26.225 14.549l-4-5.341c-2.198-2.941-5.638-8.781-7.632-12.973-2.005-4.202-4.437-11.578-5.414-16.411-1.354-6.664-1.496-9.116-.611-10.174.641-.763 7.735-4.741 15.774-8.821 8.029-4.09 18.949-8.994 24.271-10.887 5.312-1.902 10.238-3.479 10.94-3.51Zm-56.419 31.734c.468.142 2.107 4.151 3.643 8.912 1.547 4.752 4.224 11.619 5.954 15.262 1.73 3.632 5.159 9.36 7.612 12.718 2.452 3.357 7.418 8.312 11.021 11.018 3.613 2.697 9.311 6.186 12.67 7.763 3.358 1.567 8.06 3.48 10.461 4.243 2.392.763 4.183 1.852 3.989 2.411-.203.56-4.447 3.897-9.443 7.407-4.997 3.521-9.22 6.949-9.393 7.631-.173.682 2.055 7.193 4.945 14.468 2.901 7.274 5.557 13.877 5.913 14.681.55 1.231-.407 1.333-5.963.672-3.644-.438-9.363-1.638-12.721-2.686-3.358-1.038-9.088-3.795-12.721-6.135-3.643-2.34-10.787-8.425-25.146-22.811l-.652-8.14c-.366-4.476-.213-13.867.326-20.857.539-7 1.455-15.241 2.025-18.313.57-3.073 2.3-10.755 3.837-17.053 1.536-6.308 3.175-11.344 3.643-11.191Zm12.914 134.371c7.765.204 10.675.743 14.756 2.707 2.799 1.343 7.622 4.995 10.716 8.109 3.674 3.693 7.124 8.658 9.953 14.305 2.381 4.751 4.315 9.452 4.294 10.428-.02 1.414-.905 1.048-4.355-1.821-2.382-1.984-6.157-4.528-8.396-5.657-2.636-1.333-5.149-1.852-7.124-1.495-1.679.305-4.06 1.597-5.281 2.858-1.232 1.262-2.992 4.131-3.918 6.37-1.13 2.736-1.486 5.484-1.079 8.393.397 2.768 2.259 6.695 5.19 10.938 2.514 3.632 4.346 6.847 4.071 7.122-.285.274-2.911-.743-5.852-2.269-2.941-1.526-9.047-6.441-13.575-10.938-4.712-4.67-10.146-11.374-12.721-15.698-2.463-4.141-7.032-9.869-10.136-12.718-3.104-2.849-8.253-6.441-11.449-7.977-3.185-1.536-5.576-3.256-5.291-3.815.274-.56 4.284-2.178 8.904-3.592 4.62-1.404 11.367-3.225 15.011-4.039 3.907-.875 10.573-1.363 16.282-1.211Zm238.132 4.212c5.312.285 12.416 1.242 15.774 2.117 3.358.885 9.077 2.543 12.721 3.703 3.633 1.16 7.072 2.483 7.632 2.941.6.478-1.516 2.065-5.088 3.835-3.359 1.659-8.366 5.006-11.123 7.438-2.758 2.441-7.836 8.78-11.276 14.101-3.44 5.321-9.027 12.413-12.395 15.77-3.379 3.358-8.844 7.59-12.131 9.401-3.297 1.811-6.329 2.951-6.726 2.544-.407-.417.559-2.361 2.147-4.314 1.588-1.964 3.592-4.935 4.457-6.613.855-1.679 1.883-4.884 2.27-7.122.488-2.778.203-5.444-.916-8.394-.896-2.381-2.89-5.26-4.427-6.389-1.537-1.14-4.284-2.056-6.106-2.035-1.822.01-4.793.783-6.615 1.699-1.821.915-5.027 2.971-7.123 4.578-2.097 1.598-4.051 2.91-4.325 2.91-.285 0-.509-.57-.519-1.272 0-.702 1.536-4.476 3.419-8.394 1.883-3.917 5.241-9.411 7.459-12.209 2.229-2.798 6.045-6.46 8.488-8.139 2.442-1.679 6.757-3.866 9.586-4.874 4.101-1.444 7.124-1.709 14.817-1.282Z" clip-rule="evenodd"/><path fill="#fff" fill-rule="evenodd" d="m285.37 98.152 2.29 4.487c1.771 3.469 2.29 6.196 2.29 19.738h12.212l.03-9.92c.021-7.987.367-10.276 1.781-11.731 1.476-1.536 3.521-1.81 24.648-1.75v8.14c0 7.427.203 8.241 2.289 9.268 1.669.814 2.911.814 4.58 0 1.995-.986 2.29-1.912 2.29-13.338l4.834-1.536c2.656-.845 4.945-1.537 5.088-1.526.142 0 .254 11.11.254 24.682 0 17.744-.427 26.891-1.526 32.558-.845 4.334-1.527 8.109-1.527 8.394 0 .285-2.055.508-4.579.508-3.562 0-4.804.448-5.597 2.035-.56 1.119-.784 2.727-.509 3.561.275.835 1.537 1.791 2.798 2.117 1.262.335 3.552.335 7.887-.591l.021 8.903c0 4.894.264 18.059.559 29.251.428 15.689.255 20.908-.773 22.79-.733 1.343-2.107 2.951-3.053 3.561-1.292.845-2.371.743-4.366-.407-1.445-.834-4.589-4.273-6.981-7.63-2.381-3.358-6.37-7.814-8.864-9.9-2.493-2.086-6.126-4.1-8.09-4.466-3.531-.652-3.582-.611-5.73 4.822-1.19 3.012-2.503 7.987-2.92 11.07-.407 3.083-.947 6.511-1.181 7.63-.244 1.12-.61 11.416-.834 22.893-.377 19.87-.295 20.999 1.74 23.909 2.076 2.971 2.168 2.991 3.48 1.018.743-1.12 1.802-5.016 2.351-8.649.55-3.632 1.242-8.21 1.527-10.174.285-1.964.865-3.836 1.302-4.161.428-.336 3.979-3.154 7.897-6.268 5.424-4.313 7.735-5.555 9.668-5.209 1.842.326 4.01-.671 7.887-3.652 2.941-2.259 5.363-3.999 5.383-3.856.021.142.204 23.604.418 52.143.203 28.539.61 53.038.895 54.432.285 1.404.814 7.58 1.17 13.735.357 6.156.835 13.023 1.059 15.262.224 2.238.682 6.817.997 10.174.326 3.358 1.038 9.991 1.588 14.753.549 4.761 1.699 13.684 2.564 19.84.865 6.155 1.323 12.341 1.018 13.735-.438 2.055-2.931 3.744-13.036 8.831-6.87 3.449-15.917 8.557-20.12 11.334-4.192 2.778-10.858 8.19-14.796 12.026-3.939 3.836-8.711 9.269-10.594 12.067a509.94 509.94 0 0 0-3.745 5.596c-.173.274-5.485-4.477-11.795-10.582-6.309-6.094-14.227-12.941-17.585-15.2-3.358-2.269-10.227-6.237-15.265-8.831-5.037-2.595-11.102-5.484-17.809-8.119l.468-10.429c.255-5.738.774-27.369 1.14-48.073.377-20.705.855-37.991 1.059-38.408.213-.417 1.19-.366 2.167.112.977.478 4.529 4.497 7.887 8.912 3.358 4.426 6.839 9.188 9.352 13.105l5.241-3.815c2.89-2.096 5.821-3.816 6.523-3.806.703 0 2.29 1.486 3.542 3.307 1.252 1.811 2.748 4.894 3.338 6.857.59 1.964 1.323 7.906 1.648 13.227.316 5.321 1.252 12.647 2.066 16.279.825 3.632 2.728 8.282 4.234 10.317 1.496 2.034 3.989 4.67 5.526 5.85 1.536 1.18 2.829 2.035 2.88 1.892.04-.142.244-1.17.447-2.289.214-1.119.733-7.753 1.16-14.753.438-6.989.764-20.043.733-28.996-.03-8.954-.397-20.166-.804-24.927-.407-4.762-1.374-12.311-2.147-16.788-.763-4.477-2.371-10.428-3.562-13.226-1.18-2.798-3.959-7.489-6.157-10.429-2.198-2.94-6.564-7.285-9.688-9.666-3.134-2.38-6.859-6.379-8.273-8.902-1.425-2.523-3.786-5.85-5.251-7.397-1.466-1.556-3.471-2.808-4.448-2.798-.987.01-2.269 1.262-2.869 2.819-.601 1.536-1.486 4.853-1.954 7.376-.479 2.523-1.12 7.559-1.435 11.192-.316 3.632-.845 10.733-1.171 15.77-.346 5.158-1.241 10.154-2.055 11.446-.804 1.261-2.147 2.289-2.982 2.289-.834 0-2.218-.234-3.053-.509-1.343-.447-1.526-9.889-1.526-153.122l3.307.62c3.083.58 3.491.305 6.106-4.069 2.585-4.335 2.666-4.762 1.018-5.657-1.12-.611-4.041-.611-7.887-.011-3.359.529-6.676.967-7.378.967-.998.01-1.272-7.682-1.272-70.192h6.106c3.358 0 6.798.224 7.632.508 1.221.407 1.527 2.544 1.527 20.858l4.833-.58c2.656-.326 5.404-.784 6.106-1.018.896-.305 1.262-3.103 1.242-9.34-.01-4.893.102-9.218.254-9.604.163-.377 1.547-.265 3.084.254 2.188.753 3.409.529 5.597-.977 2.32-1.607 4.63-1.943 24.169-1.943Zm29.512 51.523c-1.679 1.058-4.772 3.815-6.869 6.135l-3.816 4.212c-21.686-.041-27.752.173-27.477.448.275.284 4.396.997 9.159 1.597 4.763.6 11.51 1.526 15.011 2.065l6.36.977.509 22.872c4.844 2.218 7.368 2.533 9.159 2.157 1.679-.356 3.653-.977 4.386-1.384 1.007-.57 1.313-4.314 1.272-15.251-.031-7.977.387-15.302.926-16.279.773-1.384.265-2.635-2.29-5.626l-3.277-3.846-3.053 1.923Zm139.145 361.359c.427 0 2.005 2.401 3.49 5.342 1.486 2.94 4.193 7.63 6.005 10.428 1.821 2.798 5.067 6.736 7.215 8.75 2.157 2.015 5.638 4.874 7.734 6.359 3.043 2.147 3.623 3.062 2.89 4.477-.519.976-3.837 5.107-7.378 9.177-3.552 4.059-10.177 10.469-14.736 14.244-4.549 3.764-11.876 8.75-16.282 11.069-4.396 2.32-12.578 5.912-18.176 7.987-5.597 2.076-16.129 5.291-23.406 7.163-7.276 1.862-18.491 4.334-36.635 7.58l-7.124-4.212c-3.918-2.32-10.095-6.39-13.738-9.056-3.633-2.655-8.946-7.284-11.795-10.276-2.849-2.991-6.401-7.844-7.887-10.784-1.486-2.941-3.399-7.977-4.244-11.192-.834-3.215-1.526-6.654-1.526-7.631.01-1.119 3.674-4.202 9.932-8.332 5.455-3.612 13.82-8.384 18.573-10.622 4.762-2.228 10.705-4.538 13.229-5.118 2.524-.58 7.785-1.078 18.827-1.15l3.053 6.268c1.679 3.449 4.427 7.335 6.106 8.638 1.679 1.312 4.203 2.391 5.597 2.401 1.404.02 5.068-.926 8.141-2.086 3.073-1.17 9.261-3.958 13.739-6.206 4.477-2.249 10.888-5.749 14.247-7.784 3.358-2.034 9.993-6.338 14.735-9.563 4.743-3.226 8.976-5.871 9.414-5.871Zm-323.229 9.157c.224 0 3.257 1.323 6.757 2.94 3.501 1.608 10.594 4.589 15.774 6.614 5.18 2.014 12.731 4.588 16.792 5.718 4.06 1.119 9.209 2.299 11.448 2.614 2.239.326 6.015.092 8.396-.508 2.697-.682 5.109-2.147 6.391-3.897 1.14-1.536 2.055-3.826 2.035-5.087-.01-1.272.733-2.534 1.7-2.849.946-.315 5.871.183 10.939 1.099 5.068.915 12.64 2.818 16.843 4.232 4.192 1.414 10.614 4.07 14.247 5.901 3.633 1.821 8.792 4.752 11.448 6.502 3.837 2.523 5.17 4.171 6.463 8.007.895 2.655 3.266 8.953 5.271 13.989 2.015 5.037 5.119 11.68 6.91 14.753 1.781 3.083 6.167 8.302 9.729 11.619 3.562 3.307 9.586 8.119 13.392 10.683 3.796 2.564 6.89 5.118 6.869 5.677-.02.672-8.813.774-25.736.306-14.135-.397-32.107-1.445-39.943-2.341-7.836-.885-20.893-2.95-29.004-4.578-8.12-1.618-20.027-4.741-26.459-6.929-6.441-2.177-14.684-5.229-18.317-6.765-3.634-1.537-12.792-5.932-20.354-9.758-7.561-3.815-17.86-9.533-22.897-12.697-5.037-3.154-9.271-5.932-9.413-6.166-.143-.224 3.928-8.546 9.047-18.476 5.119-9.93 9.749-18.629 10.288-19.331.55-.702 1.171-1.272 1.384-1.272Z" clip-rule="evenodd"/><path fill="#fff" fill-opacity=".3" d="M291.985 159.757c-3.073.204-7.887.204-10.685 0-2.799-.203-.275-.376 5.597-.376 5.872 0 8.161.173 5.088.376Z"/></svg>
-4
app/static/images/Path-Erudition.svg
··· 1 - <svg width="612" height="546" viewBox="0 0 612 546" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 - <path fill-rule="evenodd" clip-rule="evenodd" d="M187.297 46.9986C194.37 47.2523 197.921 47.9526 203.025 50.0635C206.648 51.5655 212.493 54.7319 222.397 61.3996L222.376 66.9814C222.366 70.0565 222.102 72.7865 221.788 73.0706C221.473 73.3548 218.155 71.6295 214.401 69.2344C210.656 66.8495 205.085 63.9368 202.011 62.7494C198.804 61.5214 192.97 60.3949 188.312 60.1006C181.777 59.6845 178.713 60.0397 172.584 61.8766C168.403 63.1249 162.467 65.4591 159.392 67.0524C156.318 68.6458 152.289 70.9901 147.023 74.5929L147.723 60.3848L155.334 56.0513C159.524 53.6663 166.374 50.5811 170.554 49.1907C176.896 47.09 179.687 46.7246 187.297 46.9986V46.9986ZM184.76 71.1424C187.267 71.1119 192.067 71.802 195.415 72.685C198.764 73.5679 204.243 75.6788 207.592 77.3635C210.94 79.0584 215.618 81.7579 222.305 86.2639L222.315 204.496L215.019 209.063C211.001 211.57 205.512 215.345 202.833 217.436C200.144 219.526 193.69 226.61 188.485 233.166C183.279 239.722 178.368 245.598 177.576 246.228C176.785 246.847 169.641 249.364 147.287 256.255L147.206 85.7565L154.055 81.6158C157.83 79.3425 162.741 76.6836 164.973 75.7194C167.206 74.7452 171.539 73.3345 174.613 72.5835C177.688 71.8325 182.254 71.183 184.76 71.1424ZM167.784 110.113C178.977 126.432 182.68 131.162 183.238 131.172C183.797 131.172 187.49 126.432 191.448 120.638L198.642 110.113C190.737 98.3104 187.196 93.2158 185.674 91.1759L182.904 87.4615L167.784 110.113ZM481.293 76.7546C485.351 79.2309 492.556 82.4582 497.305 83.9196C504.449 86.1219 507.148 86.4872 513.033 86.0102C516.94 85.6855 523.332 84.224 527.239 82.7525C531.146 81.2809 537.194 78.2668 540.684 76.0645C544.175 73.8521 547.249 72.0558 547.534 72.0558C547.808 72.0558 548.041 75.4759 548.041 87.2788L542.206 91.0237C539 93.094 532.942 96.1386 528.761 97.7929C522.927 100.107 519.01 100.919 512.018 101.264C504.053 101.66 501.912 101.375 495.275 99.0411C491.085 97.5797 484.357 94.3321 472.952 87.2788L472.779 80.3371C472.688 76.5212 472.901 73.1417 473.256 72.8271C473.611 72.5124 477.234 74.2783 481.293 76.7546V76.7546ZM482.267 104.674C486.904 107.414 492.992 110.438 495.783 111.392C499.01 112.498 503.982 113.138 509.482 113.138C515.763 113.138 519.893 112.519 524.702 110.864C528.325 109.616 534.951 106.531 539.416 104.004C543.881 101.477 547.645 99.4268 547.787 99.4369C547.929 99.4471 548.041 136.216 548.041 262.851L545.758 262.872C544.5 262.882 528.629 261.938 510.496 260.771C492.353 259.604 476.493 258.447 472.952 257.777L472.779 179.287C472.688 136.124 472.881 100.553 473.215 100.249C473.55 99.9545 477.619 101.944 482.267 104.674V104.674ZM103.593 105.638C104.983 105.597 108.981 106.247 112.472 107.079C115.962 107.911 121.665 110.022 125.156 111.768C128.646 113.513 133.436 116.253 135.81 117.857C140.082 120.739 140.123 120.82 140.123 126.859C140.123 130.208 139.778 132.938 139.362 132.938C138.946 132.938 137.231 131.984 135.557 130.827C133.882 129.67 128.859 126.94 124.395 124.758C119.93 122.576 113.304 120.293 109.681 119.673C104.313 118.76 101.665 118.851 95.4752 120.161C91.2844 121.044 83.9784 123.642 79.2396 125.925C74.4907 128.209 69.3562 130.949 65.0335 133.963L65.5409 120.293L71.8829 116.477C75.3735 114.366 80.6196 111.686 83.5522 110.519C86.4847 109.342 91.6192 107.779 94.9678 107.048C98.3164 106.308 102.193 105.678 103.593 105.638V105.638ZM104.608 131.304C111.518 131.578 114.745 132.278 120.843 134.856C125.024 136.622 131.072 139.778 140.103 145.634L140.113 202.213C140.123 246.796 139.849 258.792 138.854 258.782C138.154 258.782 123.887 259.918 107.144 261.299C90.4015 262.679 74.0747 264.049 65.0335 264.881V145.126L69.8534 142.133C72.5019 140.488 77.4131 137.901 80.7617 136.378C84.1103 134.846 88.8998 133.009 91.4163 132.278C94.1053 131.507 99.5137 131.101 104.608 131.304V131.304ZM86.5963 169.23C86.4543 169.92 89.3767 174.943 93.0906 180.393C96.7943 185.833 100.183 190.745 100.61 191.303C101.046 191.871 104.506 187.568 108.575 181.408C112.533 175.4 115.77 170.041 115.77 169.483C115.77 168.925 112.736 164.013 109.022 158.573C105.308 153.124 101.98 148.313 101.624 147.887C101.269 147.45 97.7989 151.784 93.9125 157.528C90.0261 163.262 86.7384 168.529 86.5963 169.23ZM465.148 130.837L465.534 138.743C465.879 145.999 465.727 146.791 463.596 148.455C462.327 149.44 457.173 152.251 452.15 154.697C447.127 157.132 440.501 159.7 437.436 160.39C434.25 161.111 428.801 161.415 424.752 161.121C420.034 160.766 415.092 159.507 410.039 157.396C405.848 155.64 399.8 152.494 390.779 146.649L390.769 139.291C390.759 135.242 390.982 131.933 391.266 131.933C391.54 131.933 395.315 133.983 399.638 136.48C403.961 138.986 410.242 142.041 413.59 143.259C417.903 144.832 422.033 145.492 427.796 145.512C433.073 145.532 437.862 144.893 441.495 143.665C444.56 142.64 450.039 140.306 453.672 138.499C457.294 136.683 461.363 134.217 462.703 133.019L465.148 130.837ZM465.595 158.401C465.737 158.35 465.849 180.007 465.849 254.732L460.014 254.144C456.807 253.829 450.07 252.804 435.914 250.165L427.796 239.296C423.332 233.319 417.852 226.539 415.62 224.225C413.387 221.901 406.883 216.857 390.759 206.019V182.677C390.759 167.788 391.124 159.335 391.774 159.335C392.332 159.335 394.27 160.441 396.086 161.801C397.903 163.15 402.814 165.891 406.995 167.88C411.185 169.859 417.345 171.99 420.693 172.589C424.042 173.198 429.065 173.38 431.855 172.995C434.646 172.599 440.582 170.965 445.047 169.341C449.511 167.728 455.904 164.622 459.253 162.44C462.601 160.258 465.453 158.441 465.595 158.401ZM65.0335 288.223L67.824 288.304C69.3562 288.345 86.1397 290.06 139.616 295.835L139.879 373.472C140.021 416.168 139.91 451.678 139.626 452.378C139.26 453.271 137.84 452.784 134.796 450.734C132.421 449.141 128.088 446.624 125.156 445.152C122.223 443.681 117.2 441.793 113.994 440.951C110.787 440.108 106.109 439.428 103.593 439.428C101.087 439.428 96.2869 440.129 92.9383 440.981C89.5898 441.844 83.4304 444.168 79.2396 446.157C75.059 448.136 70.3709 450.633 68.8387 451.698C67.3065 452.774 65.825 453.647 65.5409 453.647C65.2669 453.647 65.0335 416.421 65.0335 370.935V288.223ZM548.041 288.223L548.122 407.47L544.276 410.109C542.166 411.56 538.147 413.905 535.357 415.325C532.566 416.736 527.087 418.867 523.18 420.055C519.274 421.252 513.571 422.206 510.496 422.196C507.432 422.176 502.632 421.546 499.842 420.806C497.051 420.065 492.485 418.451 489.694 417.213C486.904 415.975 482.003 413.285 472.972 407.47L472.952 295.835L508.213 292.161C527.604 290.141 544.5 288.426 548.041 288.223V288.223ZM497.264 383.58C497.285 384.159 500.532 389.314 504.469 395.038C508.416 400.752 511.836 405.319 512.079 405.187C512.323 405.045 515.742 400.244 519.669 394.531C523.596 388.807 526.793 383.783 526.772 383.367C526.752 382.941 523.596 377.806 519.751 371.95C515.915 366.084 512.495 361.294 512.16 361.294C511.826 361.294 508.325 366.074 504.388 371.909C500.451 377.755 497.244 383.002 497.264 383.58ZM147.419 296.2L149.611 296.86C150.808 297.225 157.627 299.417 177.708 305.983L185.237 315.117C189.377 320.141 195.101 326.534 197.962 329.325C200.824 332.116 207.358 337.15 221.808 346.619L222.062 370.194C222.224 385.397 221.96 393.769 221.301 393.769C220.743 393.769 218.804 392.653 216.988 391.303C215.172 389.943 210.271 387.213 206.08 385.224C201.899 383.235 195.73 381.114 192.381 380.505C189.032 379.896 184.01 379.714 181.219 380.099C178.429 380.495 172.493 382.139 168.028 383.763C163.563 385.397 157.059 388.543 147.226 394.784L147.419 296.2ZM465.098 296.413C465.514 296.372 465.859 334.806 465.869 467.337L459.009 471.498C455.245 473.782 449.877 476.603 447.086 477.76C444.296 478.927 439.04 480.439 435.417 481.129C430.252 482.114 427.269 482.124 421.718 481.19C417.812 480.531 411.185 478.349 407.005 476.349C402.814 474.35 397.446 471.397 390.769 466.83L390.749 348.598L398.055 344.031C402.073 341.524 407.553 337.749 410.242 335.658C412.921 333.567 420.085 325.57 437.172 303.943L450.76 300.219C458.218 298.169 464.671 296.454 465.098 296.413V296.413ZM414.382 442.981C419.151 450.064 422.621 455.169 425.178 458.894L429.836 465.673L445.311 442.981L429.45 420.532L414.382 442.981ZM184.273 391.79C187.622 391.75 192.98 392.41 196.196 393.242C199.403 394.084 203.969 395.728 206.344 396.905C208.708 398.083 213.274 400.701 222.305 406.445L222.315 413.803C222.315 417.852 221.98 421.151 221.564 421.13C221.138 421.12 218.744 419.781 216.237 418.147C213.721 416.513 208.698 413.833 205.075 412.2C201.443 410.555 195.74 408.658 192.391 407.978C188.677 407.227 184.111 407.024 180.722 407.48C177.647 407.876 172.858 409.003 170.067 409.977C167.277 410.941 162.477 412.991 159.413 414.534C156.338 416.066 152.34 418.421 147.236 422.176L147.145 406.445L150.991 403.796C153.111 402.345 157.698 399.717 161.189 397.961C164.669 396.205 169.925 394.115 172.858 393.313C175.78 392.521 180.925 391.831 184.273 391.79V391.79ZM547.747 424.946C547.95 428.163 547.879 431.37 547.574 432.071C547.28 432.771 544.408 434.862 541.202 436.719C537.985 438.576 532.394 441.276 528.771 442.727C525.139 444.188 519.203 445.893 515.58 446.522C510.293 447.446 507.564 447.385 501.881 446.208C497.975 445.406 491.805 443.265 488.183 441.448C484.55 439.631 479.639 436.83 477.274 435.237C473.002 432.355 472.962 432.264 472.962 426.235C472.962 422.886 473.297 420.146 473.723 420.146C474.139 420.156 475.854 421.1 477.528 422.257C479.202 423.414 484.225 426.144 488.69 428.326C493.246 430.559 499.689 432.771 503.403 433.38C508.68 434.253 511.511 434.151 517.609 432.893C521.79 432.03 529.329 429.31 534.352 426.864C539.375 424.408 544.358 421.658 545.433 420.745C547.32 419.151 547.392 419.283 547.747 424.946ZM108.809 451.83C112.076 452.267 117.16 453.566 120.092 454.723C123.015 455.88 128.728 458.843 140.133 465.815L140.153 472.665C140.174 476.431 139.94 479.861 139.646 480.277C139.352 480.693 135.8 478.968 131.762 476.431C127.693 473.883 120.539 470.636 115.78 469.164C108.626 466.962 105.927 466.607 100.052 467.084C96.1449 467.398 89.7521 468.86 85.8454 470.331C81.9388 471.813 75.8809 474.817 72.4004 477.029C68.9097 479.232 65.825 481.038 65.551 481.038C65.2669 481.038 65.0437 477.608 65.0437 465.815L70.8783 462.06C74.0848 460 80.1326 456.986 84.3234 455.372C88.504 453.758 94.3894 452.125 97.393 451.739C100.386 451.353 105.531 451.394 108.809 451.83ZM397.558 483.129C400.795 485.26 406.416 488.254 410.049 489.766C414.636 491.674 419.11 492.658 424.762 493.003C431.267 493.399 434.382 493.054 440.491 491.217C444.671 489.959 450.607 487.635 453.682 486.041C456.746 484.448 460.785 482.104 466.041 478.501L465.351 492.709L457.741 497.053C453.55 499.438 446.244 502.584 441.505 504.055C434.27 506.288 431.561 506.633 424.762 506.227C419.161 505.892 414.595 504.888 410.049 503.01C406.416 501.518 400.571 498.362 390.668 491.694L390.546 486.021C390.485 482.906 390.708 480.104 391.043 479.8C391.388 479.485 394.321 480.987 397.558 483.129Z" fill="white" fill-opacity="0.3"/> 3 - <path fill-rule="evenodd" clip-rule="evenodd" d="M304.65 0C305.228 0 305.939 2.17182 306.212 4.82063C306.486 7.46944 308.069 17.6384 309.723 27.4015C311.377 37.1747 313.864 50.642 315.254 57.3402C316.644 64.0383 318.734 72.482 319.901 76.1152C321.068 79.7485 322.073 82.8134 322.144 82.925C322.205 83.0468 324.995 83.879 328.344 84.7721C331.692 85.6652 337.628 87.8776 341.535 89.6942C345.442 91.5007 351.378 94.8497 354.726 97.1434C358.075 99.437 363.625 104.197 367.076 107.739C370.515 111.28 375.65 117.826 378.481 122.292C381.312 126.757 384.894 133.719 386.426 137.758C387.969 141.808 388.851 145.461 388.385 145.877C387.918 146.304 386.568 145.279 385.381 143.604C384.184 141.93 380.226 137.424 376.583 133.597C372.93 129.761 367.431 124.677 364.366 122.292C361.302 119.907 355.366 116.091 351.175 113.818C346.994 111.544 340.825 108.743 337.476 107.597C334.127 106.44 327.968 104.795 323.777 103.923C319.597 103.05 311.144 102.329 305.005 102.319C298.866 102.299 291.103 102.786 287.755 103.405C284.406 104.014 279.15 105.252 276.085 106.145C273.021 107.048 267.765 108.926 264.416 110.316C261.068 111.707 254.452 115.411 249.703 118.537C244.964 121.663 237.526 127.894 233.183 132.39C228.83 136.886 224.954 140.225 224.558 139.819C224.152 139.413 225.573 135.526 227.714 131.192C229.845 126.859 233.558 120.567 235.963 117.217C238.368 113.868 243.016 108.571 246.283 105.445C249.561 102.319 255.213 97.8538 258.835 95.5196C262.468 93.1854 268.627 89.9378 272.534 88.3038C276.441 86.68 281.129 84.9852 282.965 84.5387C285.928 83.8181 286.496 83.0671 288.242 77.6375C289.317 74.2885 290.88 68.8082 291.722 65.4591C292.564 62.11 294.168 54.5797 295.274 48.7138C296.38 42.8478 298.186 32.8107 299.282 26.3866C300.388 19.9625 301.585 12.1987 301.951 9.13383C302.316 6.06892 302.833 2.7503 303.107 1.77602C303.371 0.801747 304.071 0 304.65 0V0ZM271.205 139.037C271.824 139.037 272.788 141.432 273.346 144.365C273.904 147.298 274.097 154.037 273.782 159.335C273.407 165.657 272.108 172.812 269.997 180.139C268.231 186.279 264.629 195.87 262.001 201.452C259.363 207.033 255.345 214.341 253.072 217.69C250.799 221.039 245.654 227.656 241.625 232.405C237.607 237.155 231.864 244.685 228.881 249.151C225.887 253.616 221.361 261.725 218.815 267.165C214.218 276.999 214.198 277.08 215.77 280.865C216.643 282.956 218.581 287.188 220.073 290.253C221.564 293.318 224.345 298.351 226.263 301.416C228.18 304.481 232.158 310.195 235.091 314.102C238.023 318.009 242.113 323.033 244.162 325.266C246.212 327.499 250.291 332.979 253.234 337.444C256.166 341.91 260.195 348.983 262.184 353.175C264.162 357.356 267.136 364.896 268.79 369.92C270.433 374.944 272.361 382.707 273.072 387.173C273.833 391.933 274.117 398.651 273.772 403.411C273.447 407.876 272.919 412.332 272.605 413.306C272.28 414.28 271.682 415.102 271.265 415.112C270.849 415.133 269.206 411.601 267.633 407.247C266.05 402.903 262.103 393.871 258.866 387.173C255.629 380.475 249.814 370.194 245.938 364.338C242.072 358.483 236.43 351.013 233.396 347.745C230.362 344.487 225.146 340.113 221.798 338.023C218.449 335.932 213.924 332.664 211.742 330.756C209.56 328.858 206.12 325.012 204.091 322.221C202.061 319.43 198.256 313.605 195.628 309.282C193 304.958 190.047 300.99 189.073 300.483C188.099 299.965 181.595 298.382 174.613 296.961C167.642 295.54 153.487 293.257 143.157 291.877C132.837 290.496 121.188 289.086 117.282 288.751C113.375 288.416 108.585 287.949 106.627 287.705C104.679 287.462 100.336 287.046 96.9871 286.772C93.6385 286.498 87.9358 286.031 84.3031 285.747C80.6805 285.452 68.8083 284.762 57.9203 284.194C47.0425 283.626 30.1474 282.925 20.3756 282.631C8.37145 282.266 2.1918 281.687 1.30899 280.845C0.578391 280.155 0 278.683 0 277.567C0.0101472 276.451 0.832072 274.796 1.8265 273.893C3.33843 272.513 7.53938 272.148 27.986 271.62C41.3803 271.275 59.6453 270.534 68.5749 269.986C77.5044 269.428 87.7836 268.738 91.4061 268.453C95.0388 268.169 103.481 267.479 110.178 266.901C116.876 266.332 124.182 265.662 126.414 265.419C128.646 265.165 133.213 264.688 136.561 264.343C139.91 263.998 148.129 262.841 154.826 261.755C161.523 260.68 171.934 258.538 177.952 257.006C185.065 255.199 189.053 253.687 189.327 252.703C189.56 251.87 192.117 247.527 195.019 243.061C197.911 238.596 203.066 232.162 206.476 228.762C209.875 225.352 215.862 220.511 219.768 218.004C223.675 215.487 228.891 211.418 231.346 208.962C233.812 206.506 237.851 201.756 240.327 198.407C242.803 195.058 247.196 188.441 250.088 183.691C252.99 178.942 257.709 170.041 260.601 163.901C263.483 157.762 266.791 149.653 267.947 145.888C269.114 142.122 270.575 139.037 271.205 139.037V139.037ZM341.109 139.037C341.626 139.037 342.337 140.296 342.692 141.828C343.047 143.361 344.681 148.049 346.304 152.23C347.928 156.422 351.581 164.409 354.412 169.991C357.243 175.572 361.87 183.793 364.681 188.258C367.502 192.724 371.895 198.884 374.442 201.959C376.989 205.024 380.45 208.85 382.124 210.443C383.798 212.047 388.364 215.426 392.271 217.974C396.178 220.511 402.57 225.869 406.477 229.888C410.495 234.019 415.782 240.961 423.727 254.6L434.382 257.158C440.247 258.569 450.516 260.619 457.213 261.725C463.91 262.821 472.13 263.998 475.478 264.343C478.827 264.688 483.393 265.165 485.625 265.409C487.858 265.652 495.164 266.332 501.861 266.911C508.558 267.489 516.554 268.179 519.619 268.433C522.693 268.687 533.875 269.367 544.479 269.935C555.083 270.503 567.412 271.173 571.877 271.417C576.342 271.66 586.499 271.884 594.454 271.924C605.89 271.975 609.229 272.3 610.436 273.507C611.278 274.34 611.979 276.055 611.999 277.313C612.029 278.572 611.461 280.155 610.73 280.845C609.848 281.687 603.668 282.266 591.664 282.631C581.902 282.925 565.007 283.626 554.119 284.194C543.241 284.762 531.369 285.452 527.736 285.747C524.104 286.031 518.401 286.498 515.052 286.772C511.704 287.046 507.371 287.462 505.412 287.705C503.464 287.949 498.665 288.416 494.758 288.751C490.851 289.086 479.212 290.496 468.883 291.877C458.563 293.257 444.407 295.53 437.426 296.941C430.455 298.341 423.717 300.158 422.459 300.96C421.201 301.772 417.568 306.887 414.392 312.326C410.993 318.141 406.081 324.738 402.469 328.341C399.09 331.7 393.824 335.881 390.749 337.617C387.684 339.352 382.428 343.726 379.08 347.339C375.731 350.962 370.394 357.742 367.228 362.42C364.052 367.109 358.734 376.192 355.396 382.606C352.047 389.02 347.573 398.966 345.432 404.7C343.29 410.434 341.19 415.112 340.774 415.102C340.358 415.092 339.759 414.28 339.435 413.306C339.12 412.332 338.592 407.876 338.268 403.411C337.912 398.621 338.207 391.963 338.978 387.173C339.688 382.707 341.626 374.944 343.27 369.92C344.914 364.896 347.725 357.589 349.521 353.682C351.327 349.775 355.335 342.701 358.45 337.952C361.555 333.202 366.913 326.128 370.343 322.221C373.773 318.314 379.049 311.464 382.063 306.998C385.077 302.533 389.633 294.546 392.2 289.238C394.767 283.93 396.858 278.46 396.837 277.059C396.817 275.669 394.595 269.955 391.896 264.374C389.196 258.792 384.346 250.571 381.119 246.106C377.903 241.641 372.514 234.79 369.156 230.883C365.797 226.976 361.352 221.262 359.282 218.197C357.202 215.122 353.387 208.393 350.799 203.228C348.222 198.062 344.457 188.471 342.458 181.915C339.739 173.015 338.673 167.413 338.247 159.842C337.892 153.408 338.146 147.745 338.937 144.365C339.617 141.432 340.601 139.037 341.109 139.037V139.037ZM303.503 157.305C304.609 157.305 306.202 157.995 307.034 158.827C307.877 159.659 309.247 162.978 310.099 166.185C310.941 169.392 313.732 179.328 316.299 188.258C320.723 203.674 321.19 204.73 325.523 209.063C328.039 211.57 331.956 216.37 334.239 219.719C336.512 223.068 339.851 229.239 341.647 233.42C343.443 237.611 345.523 243.965 346.274 247.537C347.39 252.936 348.232 254.54 351.175 256.935C353.133 258.528 357.811 261.42 361.576 263.369C365.756 265.531 368.618 267.702 368.932 268.941C369.217 270.057 368.872 271.711 368.171 272.625C367.471 273.528 364.397 275.537 361.322 277.09C358.258 278.643 353.915 281.241 351.682 282.865C348.425 285.229 347.39 286.812 346.426 290.821C345.776 293.582 343.838 299.711 342.124 304.461C340.419 309.211 336.664 317.198 333.793 322.221C330.931 327.245 326.172 334.552 323.24 338.459C318.257 345.096 317.588 346.7 313.153 362.816C310.545 372.305 307.867 380.657 307.217 381.378C306.558 382.109 305.106 382.687 303.99 382.687C302.874 382.677 301.24 381.855 300.368 380.86C299.485 379.866 296.776 371.513 294.35 362.309C290.819 348.953 289.277 344.741 286.71 341.504C284.944 339.271 281.504 334.471 279.079 330.848C276.654 327.225 272.747 320.374 270.413 315.625C268.069 310.875 264.964 303.233 263.503 298.625C262.052 294.018 260.885 289.451 260.915 288.477C260.936 287.503 259.454 285.503 257.618 284.042C255.771 282.58 251.306 279.759 247.673 277.78C244.051 275.801 240.509 273.457 239.809 272.574C239.109 271.691 238.652 270.209 238.794 269.275C238.936 268.332 242.934 265.348 247.673 262.628C252.422 259.908 257.09 256.904 258.054 255.95C259.008 255.006 260.733 250.571 261.869 246.106C263.006 241.641 265.441 234.79 267.278 230.883C269.124 226.976 272.037 221.729 273.762 219.212C275.497 216.705 277.942 213.508 279.201 212.108C280.459 210.717 282.772 208.201 284.345 206.526C286.456 204.273 288.13 200.173 290.789 190.796C292.767 183.823 295.345 174.456 296.522 169.991C297.699 165.525 299.292 160.847 300.073 159.588C300.855 158.33 302.397 157.305 303.503 157.305V157.305ZM286.212 239.002C283.462 244.584 280.469 252.347 279.566 256.255C278.44 261.085 278.064 265.967 278.399 271.478C278.734 276.917 280.012 282.946 282.296 289.745C284.163 295.327 287.927 303.771 290.667 308.52C293.397 313.27 297.628 319.775 300.073 322.982L304.498 328.818C310.687 320.557 314.543 314.285 317.05 309.535C319.566 304.786 323.077 296.575 324.873 291.268C327.298 284.082 328.252 279.17 328.628 271.985C328.983 265.175 328.648 260.111 327.471 254.732C326.497 250.308 323.503 242.452 320.297 235.957C317.273 229.817 312.707 221.942 310.15 218.451C307.603 214.96 305.117 212.108 304.64 212.108C304.163 212.108 300.936 215.873 297.486 220.48C294.026 225.088 288.952 233.42 286.212 239.002V239.002ZM349.551 212.067C350.16 212.037 351.236 212.605 351.936 213.336C352.636 214.056 352.991 215.335 352.707 216.167C352.433 216.999 349.917 219.405 347.126 221.495C344.325 223.586 341.241 225.179 340.267 225.037C339.292 224.895 338.339 223.86 338.156 222.754C337.912 221.333 339.374 219.466 343.118 216.421C346.04 214.046 348.932 212.088 349.551 212.067ZM354.726 223.515C355.985 223.677 356.857 224.652 357.009 226.062C357.212 227.889 356.147 228.955 351.682 231.39C348.496 233.126 345.229 234.222 344.072 233.928C342.956 233.654 341.981 232.517 341.91 231.411C341.809 229.97 343.331 228.528 347.238 226.326C350.241 224.631 353.61 223.363 354.726 223.515ZM360.054 234.516C360.754 234.465 361.616 235.237 361.982 236.211C362.347 237.185 362.235 238.606 361.728 239.357C361.231 240.118 358.298 241.641 355.234 242.747C352.169 243.853 349.084 244.492 348.384 244.168C347.684 243.833 347.116 242.655 347.116 241.539C347.116 240.423 347.674 239.164 348.364 238.748C349.044 238.332 351.672 237.226 354.199 236.292C356.725 235.358 359.353 234.557 360.054 234.516ZM362.844 247.364C364.518 247.628 366.345 248.268 366.903 248.775C367.579 249.404 367.542 250.301 366.791 251.464C365.909 252.835 364.173 253.21 358.674 253.21C351.895 253.21 351.682 253.129 351.682 250.673C351.682 248.491 352.25 248.044 355.741 247.506C357.973 247.161 361.17 247.101 362.844 247.364ZM250.606 290.557C251.387 290.669 252.524 291.562 253.143 292.536C253.954 293.815 253.965 294.81 253.173 296.088C252.564 297.063 248.8 299.011 244.791 300.401C239.15 302.37 237.12 302.685 235.74 301.812C234.766 301.193 233.974 299.6 233.974 298.26C233.974 296.159 234.999 295.469 241.585 293.094C245.776 291.592 249.835 290.446 250.606 290.557ZM257.963 301.508C258.998 302.015 260.083 302.888 260.357 303.446C260.631 304.004 260.438 305.263 259.921 306.237C259.403 307.211 255.872 309.576 252.057 311.484C246.912 314.062 244.751 314.681 243.614 313.909C242.782 313.331 242.092 311.778 242.092 310.439C242.092 308.48 243.422 307.303 249.084 304.299C254.32 301.508 256.552 300.807 257.963 301.508ZM264.041 312.58C265.086 312.58 266.375 313.382 266.912 314.356C267.572 315.574 267.46 316.771 266.547 318.162C265.806 319.278 262.752 321.937 259.738 324.078C255.821 326.859 253.619 327.803 251.986 327.377C250.413 326.971 249.682 325.997 249.632 324.251C249.571 322.272 250.941 320.709 255.852 317.147C259.312 314.63 262.996 312.58 264.041 312.58ZM269.49 323.754C270.606 323.703 272.087 324.363 272.788 325.225C273.488 326.078 273.782 327.59 273.457 328.564C273.122 329.538 270.951 332.735 268.637 335.668C266.314 338.601 263.736 341.006 262.894 341.017C262.062 341.027 260.794 340.448 260.083 339.748C259.383 339.038 258.805 337.891 258.815 337.191C258.825 336.49 260.773 333.212 263.148 329.894C265.816 326.159 268.231 323.815 269.49 323.754ZM387.857 399.859C388.334 399.859 388.72 400.315 388.72 400.874C388.72 401.432 387.553 404.974 386.132 408.739C384.711 412.504 381.424 419.019 378.836 423.201C376.238 427.392 371.124 433.948 367.471 437.774C363.808 441.61 358.075 446.604 354.726 448.887C351.378 451.16 345.442 454.499 341.535 456.306C337.628 458.122 331.692 460.335 328.344 461.228C324.995 462.121 322.205 462.953 322.144 463.075C322.073 463.187 321.068 466.262 319.901 469.885C318.734 473.508 316.644 481.962 315.254 488.66C313.864 495.358 311.377 508.835 309.723 518.599C308.069 528.372 306.446 538.531 306.111 541.179C305.786 543.828 305.056 546 304.498 546C303.94 546 303.29 545.198 303.047 544.224C302.813 543.25 302.316 539.931 301.951 536.866C301.585 533.801 300.388 526.038 299.282 519.613C298.186 513.189 296.38 503.142 295.274 497.286C294.168 491.43 292.564 483.89 291.722 480.541C290.88 477.192 289.307 471.712 288.232 468.362C286.314 462.405 286.162 462.243 281.433 460.995C278.774 460.294 273.173 458.082 268.982 456.072C264.802 454.073 259.322 451.018 256.806 449.283C254.289 447.558 249.561 443.61 246.283 440.504C243.016 437.409 238.368 432.132 235.963 428.783C233.558 425.433 229.845 419.141 227.714 414.808C225.573 410.474 224.152 406.587 224.558 406.181C224.954 405.775 228.607 408.881 232.676 413.093C236.735 417.304 243.036 422.856 246.659 425.444C250.291 428.032 256.451 431.726 260.357 433.664C264.264 435.592 270.433 438.099 274.056 439.226C277.689 440.342 283.625 441.813 287.247 442.473C290.88 443.133 298.866 443.671 305.005 443.661C311.499 443.661 319.566 442.94 324.285 441.956C328.749 441.022 335.142 439.226 338.491 437.957C341.839 436.699 346.862 434.506 349.653 433.086C352.443 431.665 357.466 428.62 360.815 426.327C364.163 424.033 370.039 419.08 373.874 415.325C377.7 411.56 382.225 406.547 383.91 404.172C385.604 401.797 387.38 399.859 387.857 399.859V399.859ZM303.239 221.221C303.655 221.211 305.989 224.753 308.435 229.087C310.88 233.42 314.269 240.626 315.984 245.091C318.694 252.165 319.079 254.448 319.018 262.851C318.968 270.443 318.369 274.329 316.187 281.119C314.655 285.869 311.408 294.657 308.952 300.655C306.507 306.653 304.041 311.565 303.483 311.565C302.925 311.565 300.713 307.8 298.562 303.192C296.41 298.585 293.447 291.166 291.986 286.701C290.515 282.235 288.688 275.618 287.917 271.985C287.156 268.362 286.699 263.105 286.902 260.314C287.115 257.523 287.998 252.723 288.871 249.658C289.744 246.593 291.946 240.879 293.762 236.972C295.578 233.065 298.288 227.93 299.779 225.555C301.271 223.18 302.823 221.231 303.239 221.221V221.221Z" fill="white"/> 4 - </svg>
-13
app/static/images/Path-Hunt.svg
··· 1 - <svg width="612" height="536" viewBox="0 0 612 536" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 - <path d="M181.804 48.9925C180.228 45.659 178.976 41.881 179.026 40.588C179.107 38.6687 179.521 38.3757 181.299 38.9212C182.5 39.295 185.065 40.6486 187.015 41.9315C188.964 43.2245 196.002 49.3864 202.668 55.6393C209.333 61.8921 217.967 69.741 221.855 73.0947C225.743 76.4384 232.328 81.378 236.498 84.0751C240.659 86.7823 245.658 89.4188 247.607 89.9441C249.556 90.4694 252.616 90.9038 257.706 90.9139L254.676 97.9849C253 101.894 251.182 108.551 249.566 120.713L252.879 123.471C254.696 124.976 258.231 126.795 260.735 127.512C263.24 128.219 267.895 128.795 271.097 128.795C276.035 128.795 277.004 129.098 277.509 130.815C277.843 131.926 277.489 135.633 275.379 145.25L278.913 149.725C280.862 152.18 287.901 161.008 306.685 184.484L338.203 144.957L336.718 139.401C335.9 136.34 335.496 132.704 335.809 131.32C336.355 128.987 336.829 128.795 342.242 128.795C345.454 128.795 350.129 128.219 352.634 127.512C355.138 126.795 358.673 124.976 363.803 120.713L362.763 112.885C362.187 108.581 360.42 101.985 355.936 91.4189L361.612 90.6613C365.146 90.1967 369.559 88.6006 373.336 86.4288C376.669 84.5196 382.577 80.3982 386.465 77.2768C390.353 74.1554 400.502 65.1448 409.025 57.2656C417.539 49.3763 425.719 42.184 427.203 41.2749C428.678 40.3657 430.909 39.3354 432.162 39.002C434.03 38.497 434.434 38.7899 434.434 40.6587C434.434 41.9113 433.141 45.659 431.566 48.9925C429.99 52.326 425.385 60.7305 421.346 67.6803C417.296 74.6201 411.338 85.5297 408.096 91.924C404.844 98.3082 401.259 106.268 400.118 109.602C398.977 112.935 398.058 116.461 398.058 117.43C398.078 118.653 398.624 119.026 399.846 118.643C400.815 118.34 404.047 116.632 407.026 114.855C409.995 113.077 416.589 108.137 421.669 103.884C426.749 99.6315 436.807 90.631 444.028 83.8933C451.248 77.1556 458.974 70.7512 465.235 67.6702L465.518 70.4481C465.669 71.9836 464.619 75.7312 463.185 78.792C461.741 81.8427 456.873 90.7118 452.359 98.49C447.845 106.268 441.745 117.4 438.796 123.239C435.838 129.067 433.444 134.3 433.474 134.856C433.495 135.411 431.909 137.118 429.94 138.644C427.92 140.209 425.961 142.856 425.446 144.705C424.901 146.654 424.901 149.624 425.446 152.028C425.951 154.251 426.809 156.634 427.365 157.332C428.038 158.173 428.038 158.763 427.365 159.099C426.809 159.372 424.426 158.877 422.063 157.988C419.7 157.099 414.418 156.301 410.318 156.22C406.218 156.14 402.128 156.574 401.229 157.18C400.33 157.796 398.957 160.524 398.169 163.241C397.23 166.524 396.887 171.342 397.159 177.545C397.543 186.182 397.422 186.939 395.554 187.586C394.443 187.969 391.029 188.172 382.425 187.778L365.51 209.607L362.359 204.112C360.622 201.081 357.976 197.677 353.775 194.455L369.64 175.262L368.206 168.948C367.307 164.968 367.095 161.796 367.641 160.362C368.408 158.362 369.105 158.13 373.447 158.422C376.164 158.614 380.426 158.231 382.93 157.594C385.435 156.948 389.181 155.321 395.049 151.523L394.463 144.705C394.15 140.957 393.241 135.724 392.443 133.088C391.171 128.825 390.595 128.178 387.222 127.29C385.142 126.734 380.365 126.279 369.802 126.269L367.873 130.562C366.803 132.926 365.631 137.351 365.267 140.411C364.904 143.462 365.096 148.24 365.692 151.018C366.53 154.907 366.489 156.392 365.51 157.463C364.571 158.503 362.561 158.705 351.119 157.705L334.961 178.221C326.074 189.495 318.934 199.132 319.086 199.617C319.237 200.112 322.762 204.718 334.456 219.203L340.263 211.627L341.768 214.658C342.596 216.325 344.242 220.527 345.423 224.002C346.615 227.477 347.352 231.224 347.08 232.335C346.807 233.447 347.251 235.376 348.09 236.629C349.14 238.204 349.816 243.073 350.291 252.539C350.695 260.63 350.594 266.458 350.039 266.863C349.524 267.236 345.242 262.751 340.516 256.892C335.789 251.033 329.558 243.225 326.65 239.538C323.752 235.851 318.975 229.689 316.046 225.84C313.118 221.991 309.361 217.446 307.695 215.739C306.028 214.031 302.564 210.132 300.009 207.082C297.444 204.021 295.172 200.95 294.96 200.243C294.738 199.526 287.295 189.667 262.25 157.685L255.686 158.271C250.334 158.746 248.89 158.554 247.859 157.21C246.89 155.937 246.86 154.574 247.718 151.271C248.364 148.806 248.566 144.402 248.193 140.916C247.829 137.583 246.648 132.926 243.568 126.269L236.751 126.279C233.004 126.279 228.228 126.734 226.147 127.29C222.774 128.178 222.199 128.815 220.926 133.088C220.138 135.724 219.23 140.725 218.906 144.2C218.351 150.139 218.482 150.664 221.098 153.099C222.623 154.523 226.369 156.392 229.429 157.241C232.489 158.099 237.205 158.635 239.922 158.443C244.274 158.13 244.961 158.362 245.729 160.362C246.274 161.796 246.062 164.968 243.729 175.262L259.483 194.455L256.575 196.222C254.979 197.192 252.303 200.263 250.637 203.041C248.97 205.819 247.264 207.92 246.85 207.708C246.436 207.496 242.679 202.92 230.944 187.757L225.39 188.02C222.33 188.161 218.927 187.969 217.816 187.586C215.947 186.939 215.826 186.182 216.21 177.545C216.483 171.342 216.139 166.524 215.2 163.241C214.412 160.524 213.039 157.796 212.14 157.18C211.241 156.574 207.151 156.14 203.051 156.22C198.355 156.321 193.458 157.16 189.792 158.493C185.591 160.029 183.985 160.261 183.965 159.352C183.955 158.655 184.419 157.635 184.995 157.079C185.57 156.523 186.439 154.251 186.934 152.028C187.469 149.614 187.459 146.765 186.903 144.957C186.388 143.29 184.722 140.634 183.207 139.048C181.693 137.472 179.057 132.926 177.36 128.946C175.653 124.976 169.332 113.087 163.293 102.531C157.264 91.9745 151.255 81.0649 149.942 78.2869C148.639 75.509 147.7 71.9836 148.134 67.6702L152.174 69.6501C154.396 70.7512 162.121 77.1556 169.342 83.8933C176.562 90.631 186.621 99.6315 191.7 103.884C196.78 108.137 203.375 113.077 206.344 114.855C209.323 116.632 212.554 118.34 213.524 118.643C214.746 119.026 215.291 118.653 215.311 117.43C215.311 116.461 214.392 112.935 213.261 109.602C212.12 106.268 208.666 98.5405 205.566 92.4291C202.476 86.3177 196.507 75.408 192.316 68.1854C188.115 60.9628 183.389 52.326 181.804 48.9925Z" fill="white" fill-opacity="0.3"/> 3 - <path d="M278.913 219.203L283.508 213.648C286.033 210.587 288.608 208.092 289.224 208.092C289.84 208.092 292.203 210.647 294.475 213.779C296.748 216.91 298.949 220.092 299.363 220.85C299.848 221.729 298.474 224.426 291.032 234.356L298.606 243.952C302.776 249.235 306.523 253.377 306.937 253.175C307.351 252.963 309.512 250.458 311.734 247.599C313.956 244.74 316.117 242.417 316.531 242.417C316.945 242.427 319.793 245.619 328.397 256.579L318.298 268.701L322.156 273.499C324.277 276.136 328.599 281.591 337.486 292.945L332.184 296.086C329.266 297.814 325.862 300.198 324.61 301.39C323.368 302.582 322.206 303.319 322.045 303.046C321.873 302.773 319.864 300.268 317.581 297.49C315.299 294.712 312.976 291.308 312.431 289.914C311.875 288.53 300.928 274.55 264.775 230.315L267.148 223.497C268.451 219.749 270.158 215.375 272.349 210.89L278.913 219.203Z" fill="white" fill-opacity="0.3"/> 4 - <path d="M261.735 258.852C261.725 253.993 261.998 248.538 262.341 246.73C262.684 244.922 263.432 243.447 263.987 243.447C264.553 243.447 267.007 246.175 273.864 255.569L268.814 262.135C266.037 265.741 263.311 268.469 262.755 268.196C262.2 267.913 261.735 263.721 261.735 258.852Z" fill="white" fill-opacity="0.3"/> 5 - <path d="M276.136 293.318C275.995 293.106 278.923 289.076 282.64 284.338C286.356 279.611 289.709 275.863 290.072 276.004C290.446 276.156 293.082 279.116 295.94 282.591C298.899 286.197 300.918 289.551 300.625 290.419C300.353 291.248 297.959 294.642 290.527 303.976L288.002 301.612C286.618 300.309 283.437 297.995 280.933 296.47C278.428 294.935 276.277 293.521 276.136 293.318Z" fill="white" fill-opacity="0.3"/> 6 - <path d="M200.143 316.017C201.375 316.906 203.435 314.855 211.241 304.976L220.835 292.834L233.974 305.915L224.723 317.36C217.19 326.684 215.695 329.088 216.644 330.31C217.291 331.139 215.544 329.937 212.766 327.643C209.989 325.35 205.677 321.552 203.173 319.209C200.678 316.855 199.315 315.421 200.143 316.017Z" fill="white" fill-opacity="0.3"/> 7 - <path d="M378.881 305.077L385.192 299.056C388.666 295.753 391.736 293.005 392.009 292.955C392.292 292.904 396.604 298.096 401.603 304.491C406.753 311.067 411.247 315.906 411.954 315.643C412.651 315.38 413.216 315.4 413.216 315.683C413.216 315.956 410.035 318.916 406.147 322.249C402.259 325.583 398.745 328.32 398.321 328.33C397.907 328.341 393.362 323.118 378.881 305.077Z" fill="white" fill-opacity="0.3"/> 8 - <path d="M356.774 339.654C358.229 337.583 360.42 334.179 361.642 332.098C362.874 330.007 364.298 328.31 364.813 328.31C365.338 328.31 368.6 331.967 372.064 336.442C376.487 342.149 378.83 344.392 379.89 343.947C380.729 343.604 380.274 344.503 378.881 345.937C377.265 347.624 375.275 348.564 373.326 348.554C371.66 348.544 367.57 349.21 364.237 350.018C360.905 350.837 358.501 351.17 358.895 350.766C359.289 350.362 358.38 348.544 354.139 343.432L356.774 339.654Z" fill="white" fill-opacity="0.3"/> 9 - <path d="M232.701 344.25C234.256 345.331 235.125 344.614 239.77 338.462C242.689 334.603 245.305 331.411 245.577 331.361C245.86 331.32 246.597 332.321 247.233 333.583C247.859 334.846 250.162 337.998 252.353 340.584C254.535 343.17 256.433 345.675 256.555 346.139C256.676 346.614 256.08 347.564 255.221 348.261C254.353 348.958 254 350.049 254.414 350.715C254.949 351.554 254.575 351.715 253.151 351.261C252.04 350.897 249.092 350.15 246.587 349.584C244.093 349.018 240.679 348.564 239.013 348.564C236.993 348.564 235.142 347.638 233.459 345.786C232.075 344.261 231.732 343.574 232.701 344.25Z" fill="white" fill-opacity="0.3"/> 10 - <path d="M140.177 394.708C140.793 394.021 151.618 380.394 164.222 364.423C183.298 340.25 187.419 335.533 188.842 336.311C189.782 336.826 192.751 339.442 195.457 342.119C198.971 345.614 200.133 347.422 199.547 348.513C199.093 349.342 188.408 362.979 152.871 407.607L151.295 427.81L139.308 443.973C132.714 452.862 129.28 457.883 131.663 455.125C134.057 452.367 140.096 445.337 154.184 428.911L162.767 427.144C167.494 426.174 171.584 424.982 171.856 424.477C172.139 423.982 180.774 413.032 191.044 400.142C201.324 387.253 210.02 377.06 210.373 377.505C210.726 377.949 213.342 381.151 221.34 390.94L183.985 437.912V445.741C183.985 450.044 183.591 454.59 183.106 455.842C182.632 457.085 169.221 475.722 153.315 497.259C137.41 518.785 124.059 536.22 123.635 535.998C123.221 535.786 122.554 531.806 122.16 527.159C121.676 521.492 120.686 517.249 119.131 514.229C117.858 511.754 115.536 508.805 113.96 507.663C111.678 506.006 109.315 505.542 102.094 505.34C96.6005 505.178 93.0861 505.481 93.0861 506.097C93.0861 506.653 92.5913 506.986 91.9753 506.855C91.329 506.703 90.7533 503.653 90.6018 499.531C90.4605 495.642 89.8444 490.642 89.2486 488.42C88.6427 486.197 87.2188 483.126 86.0776 481.601C84.9365 480.066 82.5229 478.045 80.7152 477.106C78.1905 475.773 75.1205 475.419 57.2356 475.702L59.3563 473.469C60.5177 472.247 75.1205 455.105 122.13 399.526L130.583 397.738C135.238 396.748 139.55 395.384 140.177 394.708Z" fill="white" fill-opacity="0.3"/> 11 - <path d="M412.186 346.998L418.155 341.19C421.437 337.987 424.628 335.381 425.234 335.381C425.85 335.381 436.635 348.443 449.218 364.423C461.791 380.394 472.587 394.021 473.203 394.708C473.819 395.384 478.121 396.748 491.229 399.526L521.556 435.387C538.239 455.105 552.842 472.247 556.114 475.702L546.015 475.54C538.461 475.419 535.159 475.793 532.886 476.995C531.22 477.884 529.089 479.449 528.15 480.48C527.211 481.51 525.686 484.399 524.777 486.904C523.868 489.4 522.98 494.854 522.798 499.026C522.606 503.41 522.01 506.703 521.374 506.855C520.768 506.986 520.263 506.653 520.263 506.097C520.263 505.481 516.759 505.178 511.265 505.34C504.044 505.542 501.681 506.006 499.399 507.663C497.824 508.805 495.501 511.754 494.228 514.229C492.673 517.249 491.684 521.492 491.199 527.159C490.805 531.806 490.138 535.786 489.714 535.998C489.3 536.22 475.94 518.785 460.024 497.259C444.118 475.722 430.707 456.751 430.233 455.085C429.768 453.418 429.374 448.872 429.364 437.912L411.136 415.183C401.108 402.678 392.706 391.879 392.463 391.192C392.211 390.495 394.402 386.96 397.311 383.333C400.229 379.707 402.956 376.757 403.37 376.767C403.794 376.788 412.429 387.323 422.558 400.193C432.697 413.062 441.22 423.992 441.493 424.487C441.776 424.982 445.866 426.174 459.166 428.911L468.255 439.508C473.253 445.337 479.303 452.367 481.686 455.125C484.069 457.883 480.636 452.862 462.094 427.81L460.478 407.607L412.186 346.998Z" fill="white" fill-opacity="0.3"/> 12 - <path fill-rule="evenodd" clip-rule="evenodd" d="M2.88415 0C3.62136 0 5.7017 2.02031 7.50938 4.47498C9.31705 6.93976 12.9425 12.0612 15.5682 15.8392C18.1938 19.6273 23.7785 28.1833 27.9694 34.8503C32.1604 41.5173 37.6541 51.0633 40.1687 56.0636C43.7538 63.1952 44.7434 66.2459 44.7434 70.2057C44.7535 72.9836 44.6526 77.9839 44.5314 81.3174C44.39 85.1459 44.8646 88.4996 45.8341 90.4088C46.6824 92.0756 50.0453 95.4091 53.3173 97.8233C56.5893 100.228 66.6476 107.389 92.0864 125.259L106.477 125.693C118.212 126.047 123.009 126.683 132.481 129.138C138.864 130.795 149.78 134.068 156.718 136.411C163.656 138.755 171.725 141.745 174.644 143.068C179.572 145.29 179.945 145.715 179.945 148.998C179.945 151.675 179.269 153.048 177.168 154.634C175.29 156.069 173.412 156.594 171.362 156.281C169.695 156.028 164.696 154.836 160.253 153.624C155.809 152.422 148.538 151.159 144.095 150.826C139.348 150.473 133.936 150.695 130.967 151.372C128.189 152.008 124.099 153.796 121.878 155.342C119.414 157.069 116.879 160.13 115.394 163.18C113.576 166.888 112.93 169.898 112.92 174.757C112.89 180.585 113.294 181.949 116.475 186.879C118.444 189.939 122.282 194.495 125.008 197.02C127.725 199.546 132.451 203.435 135.511 205.657C138.571 207.89 143.337 211.021 146.115 212.637C148.892 214.244 153.113 216.496 155.496 217.638C159.617 219.608 160.071 220.284 164.838 231.578C167.595 238.103 169.847 243.902 169.847 244.457C169.847 245.013 169.503 245.457 169.089 245.447C168.675 245.437 162.202 242.195 154.699 238.235C147.195 234.285 136.743 228.77 131.471 225.992C126.2 223.214 118.464 219.143 114.304 216.951C110.143 214.759 105.437 211.759 103.861 210.274C102.286 208.799 100.276 206.223 99.3878 204.556C98.5092 202.889 93.8839 190.061 80.4728 150.584L64.5774 139.189C55.842 132.916 45.2787 125.401 41.0978 122.481C35.6748 118.683 33.4833 116.531 33.4026 114.905C33.342 113.652 33.3824 111.723 33.4833 110.612C33.6247 109.248 31.4434 106.622 26.7778 102.531C22.9908 99.1971 19.0724 95.5606 18.0828 94.4494C17.0931 93.3383 16.2953 91.2876 16.3054 89.9037C16.3155 88.5097 17.0123 86.3581 17.8505 85.1055C18.8671 83.5903 20.3853 82.8326 22.405 82.8326C24.0713 82.8326 26.9091 83.7418 28.7167 84.853C30.5244 85.954 32.7966 86.8632 33.7661 86.8733C35.089 86.8733 35.5334 86.0449 35.5435 83.5903C35.5536 80.974 32.7461 76.3879 21.7991 61.1143C14.2351 50.5582 6.96404 40.1031 5.64111 37.8808C3.86373 34.8806 2.85385 30.7188 1.7127 21.7183C0.8745 15.0513 0.106996 7.73778 0.0161071 5.47504C-0.0747816 3.20219 0.228181 1.04046 0.692723 0.676803C1.15727 0.303046 2.13684 0 2.88415 0V0ZM610.011 0.202031C611.152 0.424265 611.758 1.78797 611.97 4.5558C612.141 6.76803 611.566 14.2634 610.697 21.2132C609.506 30.7087 608.526 34.8402 606.718 37.8808C605.395 40.1031 598.124 50.5582 590.56 61.1143C579.613 76.3879 576.806 80.974 576.816 83.5903C576.826 86.0449 577.27 86.8733 578.593 86.8733C579.563 86.8632 581.835 85.954 583.643 84.853C585.45 83.7418 588.288 82.8326 589.954 82.8326C591.974 82.8326 593.492 83.5903 594.509 85.1055C595.347 86.3581 596.034 88.5097 596.034 89.9037C596.044 91.2876 595.468 93.1362 594.772 94.005C594.065 94.8636 590.156 98.5001 586.087 102.086C581.068 106.501 578.745 109.238 578.876 110.612C578.987 111.723 579.018 113.652 578.957 114.905C578.876 116.531 576.634 118.734 571.019 122.673C566.717 125.704 561.829 129.138 560.163 130.33C558.497 131.512 551.448 136.553 531.887 150.584L523.242 176.06C518.486 190.061 513.871 202.889 512.982 204.556C512.093 206.223 510.073 208.799 508.498 210.274C506.923 211.759 502.217 214.759 498.056 216.951C493.885 219.143 486.17 223.214 480.888 225.992C475.606 228.77 465.154 234.285 457.661 238.235C450.158 242.195 443.684 245.437 443.27 245.447C442.856 245.457 442.513 245.013 442.513 244.457C442.513 243.902 444.765 238.103 447.522 231.578C452.288 220.284 452.743 219.608 456.863 217.638C459.246 216.496 463.468 214.254 466.245 212.637C469.022 211.031 474.475 207.354 478.363 204.475C482.251 201.596 487.311 197.253 489.613 194.828C491.906 192.404 495.057 188.363 496.622 185.868C498.975 182.09 499.45 180.212 499.439 174.757C499.419 169.878 498.793 166.898 496.965 163.18C495.481 160.13 492.946 157.069 490.482 155.342C488.26 153.796 484.17 152.008 481.393 151.372C478.424 150.695 473.011 150.473 468.265 150.826C463.821 151.159 456.55 152.422 452.107 153.624C447.663 154.836 442.664 156.028 440.998 156.281C438.948 156.594 437.07 156.069 435.191 154.634C433.091 153.048 432.414 151.675 432.414 148.998C432.414 145.715 432.788 145.29 437.716 143.068C440.634 141.745 448.693 138.755 455.641 136.411C462.579 134.068 473.486 130.795 479.878 129.138C489.351 126.683 494.148 126.047 520.273 125.259L536.684 113.733C545.712 107.389 555.77 100.228 559.042 97.8233C562.314 95.4091 565.677 92.0756 566.525 90.4088C567.495 88.4996 567.969 85.1459 567.828 81.3174C567.707 77.9839 567.606 72.9836 567.616 70.2057C567.616 66.2459 568.606 63.1952 572.191 56.0636C574.705 51.0633 580.199 41.5173 584.39 34.8503C588.581 28.1833 594.166 19.6273 596.791 15.8392C599.417 12.0612 603.093 6.91956 604.961 4.42448C607.021 1.66675 609.011 0.0101015 610.011 0.202031V0.202031ZM262.543 202.011C263.492 202.001 264.805 202.576 265.472 203.273C266.128 203.98 266.411 205.243 266.098 206.071C265.785 206.9 263.927 211.678 261.967 216.678C260.018 221.678 257.797 228.275 257.039 231.325C256.282 234.376 255.373 243.7 255.03 252.033C254.636 261.62 254.838 270.337 255.585 275.772C256.322 281.176 258.221 287.924 260.685 293.955C262.836 299.238 265.078 306.511 265.674 310.117C266.27 313.724 266.976 318.269 267.249 320.219C267.522 322.168 268.057 327.613 268.441 332.341C268.824 337.068 268.825 341.836 268.451 342.947C267.815 344.786 267.34 344.564 263.159 340.422C260.634 337.917 256.464 332.917 253.888 329.31C251.313 325.704 247.738 319.785 245.951 316.178C244.153 312.572 241.507 305.976 240.053 301.531C238.599 297.086 237.135 292.763 236.811 291.935C236.478 291.106 236.125 289.732 236.024 288.904C235.923 288.076 235.761 286.369 235.66 285.116C235.569 283.863 235.034 282.843 234.479 282.843C233.923 282.843 233.469 284.884 233.469 287.389C233.469 289.894 233.923 293.066 234.479 294.46C235.034 295.844 235.256 297.44 234.984 297.996C234.701 298.551 230.278 294.864 225.137 289.813C219.997 284.752 213.069 279.096 209.737 277.237C206.404 275.368 201.405 273.317 198.628 272.671C194.71 271.752 192.226 271.772 187.519 272.762C184.187 273.469 178.501 275.56 168.332 280.803L160.536 275.004C156.254 271.812 152.729 268.974 152.699 268.701C152.669 268.428 155.729 266.166 159.485 263.681C163.242 261.196 169.261 258.094 172.876 256.781C176.482 255.478 179.562 254.327 179.723 254.226C179.875 254.135 178.38 251.549 176.411 248.498C174.432 245.447 171.735 240.669 170.412 237.891C169.089 235.113 167.049 230.002 165.898 226.527C164.737 223.052 164.131 219.688 164.545 219.032C165.07 218.214 167.736 218.042 173.381 218.476C179.754 218.961 182.955 219.83 188.529 222.577C194.881 225.699 195.871 226.608 198.295 231.467C199.779 234.447 203.011 239.609 205.475 242.942C208.222 246.649 212.665 250.852 216.917 253.771C220.744 256.397 226.369 259.65 234.984 263.438L236.307 256.731C237.034 253.034 239.003 245.922 240.669 240.922C242.346 235.922 246.617 226.143 250.182 219.203C253.737 212.254 257.585 205.556 258.726 204.304C259.877 203.051 261.594 202.021 262.543 202.011V202.011ZM349.806 202.031C350.806 202.031 352.543 203.051 353.674 204.304C354.795 205.556 358.623 212.254 362.177 219.203C365.742 226.143 370.014 235.922 371.69 240.922C373.357 245.922 375.326 253.034 377.376 263.438L382.93 260.994C385.98 259.65 391.615 256.397 395.443 253.771C399.694 250.852 404.138 246.649 406.884 242.942C409.349 239.609 412.58 234.447 414.065 231.467C416.488 226.608 417.478 225.699 423.83 222.577C429.405 219.83 432.606 218.961 438.978 218.476C444.623 218.042 447.29 218.214 447.815 219.032C448.229 219.688 447.623 223.052 446.461 226.527C445.31 230.002 443.27 235.113 441.947 237.891C440.624 240.669 437.928 245.447 435.949 248.498C433.979 251.549 432.485 254.135 432.636 254.226C432.798 254.327 435.868 255.478 439.483 256.781C443.088 258.094 449.117 261.196 452.874 263.681C456.631 266.166 459.691 268.428 459.66 268.701C459.63 268.974 456.106 271.812 444.028 280.803L437.463 277.419C433.848 275.56 428.173 273.459 424.84 272.742C419.599 271.62 417.922 271.661 412.469 273.105C408.995 274.014 403.774 276.287 400.855 278.166C397.937 280.035 391.575 285.49 386.717 290.288C381.86 295.076 377.649 298.551 377.376 297.996C377.093 297.44 377.325 295.844 377.881 294.46C378.436 293.066 378.891 289.894 378.891 287.389C378.891 284.884 378.547 282.833 378.133 282.833C377.719 282.823 376.528 286.348 375.487 290.662C374.457 294.975 372.226 302.137 370.529 306.582C368.832 311.026 366.318 316.704 364.934 319.209C363.561 321.714 360.481 326.482 358.108 329.815C355.734 333.149 351.725 337.917 349.2 340.422C345.02 344.564 344.545 344.786 343.909 342.947C343.535 341.836 343.535 337.068 343.919 332.341C344.302 327.613 344.838 322.168 345.11 320.219C345.383 318.269 346.09 313.724 346.686 310.117C347.282 306.511 349.524 299.238 351.675 293.955C354.139 287.924 356.037 281.176 356.774 275.772C357.522 270.337 357.724 261.62 357.33 252.033C356.987 243.7 356.078 234.376 355.32 231.325C354.563 228.275 352.341 221.678 350.392 216.678C348.433 211.678 346.575 206.9 346.262 206.071C345.949 205.243 346.211 203.991 346.837 203.294C347.474 202.597 348.807 202.031 349.806 202.031V202.031ZM133.996 265.115C136.218 265.458 139.934 266.974 142.267 268.479C144.59 269.994 155.042 278.459 165.494 287.288C175.936 296.127 185.399 304.238 186.51 305.319C188.509 307.279 188.449 307.279 177.421 306.582C169.574 306.087 165.423 305.349 163.283 304.087C161.616 303.097 158.435 301.976 156.213 301.602C153.992 301.218 149.669 301.46 146.62 302.127C142.257 303.077 137.45 305.794 124.15 314.804C114.849 321.118 106.548 326.28 105.72 326.28C104.881 326.28 103.75 325.371 103.195 324.26C102.337 322.552 103.498 320.572 110.749 311.38C115.455 305.41 119.323 299.955 119.333 299.258C119.343 298.561 119.121 297.996 118.848 297.996C118.565 297.996 116.131 299.703 113.425 301.784C110.719 303.864 105.154 308.339 101.054 311.723C96.954 315.118 92.46 318.461 91.0765 319.158C89.6829 319.865 86.9562 320.451 85.0172 320.461C83.0682 320.471 80.3415 320.128 78.958 319.704C77.5644 319.279 73.9288 317.219 70.879 315.128C67.8191 313.047 63.9614 309.915 59.2654 304.996L62.2951 302.541C63.9614 301.188 65.7791 300.066 66.3346 300.036C66.89 300.006 68.9299 301.137 70.879 302.541C73.1209 304.168 75.7062 305.077 77.9481 305.046C79.8871 305.016 82.4926 304.44 83.7145 303.763C84.9466 303.097 93.5002 295.268 102.72 286.379C112.435 277.025 121.696 269.014 124.726 267.358C128.957 265.044 130.724 264.62 133.996 265.115V265.115ZM480.383 264.671C481.494 264.63 484.756 265.862 487.634 267.408C490.754 269.085 499.631 276.732 509.639 286.379C518.859 295.268 527.413 303.097 528.645 303.763C529.867 304.44 532.472 305.016 534.411 305.046C536.653 305.077 539.239 304.168 541.481 302.541C543.419 301.137 545.47 300.006 546.025 300.036C546.58 300.066 548.398 301.188 553.094 304.996L550.064 308.168C548.398 309.915 544.53 313.047 541.481 315.128C538.421 317.219 534.785 319.279 533.402 319.704C532.008 320.128 529.281 320.471 527.342 320.461C525.403 320.441 522.444 319.754 520.778 318.916C519.112 318.077 515.749 315.643 513.315 313.501C510.871 311.36 505.64 307.006 501.702 303.834C497.753 300.652 494.178 298.036 493.764 298.026C493.35 298.006 493.017 298.561 493.027 299.258C493.037 299.955 496.905 305.41 501.611 311.38C508.862 320.572 510.023 322.552 509.165 324.26C508.609 325.371 507.468 326.28 506.64 326.28C505.802 326.28 497.511 321.118 488.21 314.815C474.94 305.814 470.103 303.087 465.74 302.127C462.68 301.46 458.368 301.218 456.146 301.602C453.924 301.976 450.743 303.097 449.077 304.087C446.936 305.349 442.785 306.087 434.939 306.582C423.911 307.279 423.85 307.279 425.85 305.319C426.961 304.238 436.443 296.127 446.926 287.288C457.398 278.459 467.174 270.327 468.638 269.226C470.092 268.125 472.88 266.671 474.829 265.984C476.768 265.307 479.272 264.711 480.383 264.671V264.671ZM269.319 299.006C269.592 299.006 271.753 299.975 274.116 301.157C276.479 302.349 280.186 304.733 282.357 306.461C284.528 308.198 288.275 312.117 290.668 315.168C293.072 318.219 295.839 322.31 296.818 324.26C297.828 326.26 300.242 328.674 306.18 331.836L309.967 329.815C312.118 328.674 314.531 326.26 315.541 324.26C316.521 322.31 319.288 318.219 321.691 315.168C324.085 312.117 327.831 308.198 330.003 306.461C332.174 304.733 335.88 302.349 338.243 301.157C340.606 299.975 342.737 299.117 342.99 299.258C343.242 299.4 342.606 302.238 341.576 305.572C340.536 308.905 339.182 315.269 338.546 319.714C337.688 325.765 337.698 330.462 338.566 338.402C339.465 346.634 339.445 349.907 338.486 353.049C337.809 355.271 335.577 358.908 333.517 361.13C331.467 363.352 328.589 366.757 327.135 368.706C324.812 371.797 324.671 372.434 325.943 373.757C326.983 374.848 327.185 376.252 326.63 378.757C326.084 381.273 325.095 382.535 323.085 383.303C321.55 383.889 320.308 384.929 320.308 385.626C320.318 386.323 319.409 388.707 318.298 390.93C317.187 393.152 314.612 396.223 312.572 397.748C310.532 399.274 307.654 400.526 306.18 400.526C304.705 400.526 301.827 399.274 299.787 397.748C297.747 396.223 295.172 393.152 294.061 390.93C292.95 388.707 292.042 386.323 292.052 385.626C292.052 384.929 290.809 383.889 289.274 383.303C287.265 382.535 286.275 381.273 285.73 378.757C285.174 376.252 285.376 374.848 286.416 373.757C287.689 372.434 287.548 371.797 285.225 368.706C283.771 366.757 280.892 363.352 278.842 361.13C276.782 358.908 274.55 355.271 273.874 353.049C272.914 349.907 272.894 346.634 273.793 338.402C274.662 330.462 274.672 325.765 273.813 319.714C273.177 315.269 271.804 308.905 270.753 305.572C269.703 302.238 268.835 299.4 268.824 299.258C268.824 299.117 269.037 299.006 269.319 299.006ZM179.945 312.208C180.774 312.229 185.096 312.653 189.539 313.148C196.79 313.946 197.982 314.39 201.153 317.491C203.092 319.38 207.868 323.573 211.756 326.785C215.644 330.007 222.643 336.099 227.309 340.321C234.59 346.917 236.438 348.089 240.437 348.624C242.992 348.968 248.607 349.988 260.735 352.544L265.684 359.362C268.4 363.11 275.894 372.999 294.041 396.486L285.72 396.738C279.176 396.94 276.833 396.617 274.742 395.223C273.288 394.253 268.047 388 263.098 381.333C258.16 374.666 253.333 368.868 252.374 368.454C251.414 368.04 248.93 367.686 246.85 367.676C244.446 367.666 242.234 368.403 240.79 369.696C238.71 371.565 238.518 372.626 238.518 382.343C238.518 391.546 238.286 393.031 236.751 393.546C235.458 393.98 232.873 391.879 227.117 385.717C222.794 381.081 218.119 375.697 216.725 373.757C214.534 370.686 214.13 368.817 213.11 349.008L207.323 343.452C204.142 340.402 198.84 335.432 195.538 332.411C192.236 329.391 186.449 323.936 182.662 320.29C177.815 315.613 176.179 313.431 177.108 312.915C177.835 312.501 179.107 312.188 179.945 312.208ZM431.404 312.299C432.788 312.229 434.525 312.501 435.252 312.915C436.181 313.431 434.545 315.613 429.697 320.29C425.91 323.936 420.124 329.391 416.822 332.411C413.519 335.432 408.217 340.402 399.25 349.008L398.704 359.615C398.23 368.817 397.826 370.686 395.634 373.757C394.241 375.697 389.565 381.121 385.243 385.808C379.274 392.263 376.952 394.152 375.609 393.637C374.084 393.041 373.841 391.505 373.841 382.343C373.841 372.626 373.649 371.565 371.569 369.696C370.125 368.403 367.913 367.666 365.51 367.676C363.43 367.686 360.945 368.04 359.986 368.454C359.026 368.868 354.199 374.666 349.261 381.333C344.313 388 339.071 394.253 337.617 395.223C335.527 396.617 333.184 396.94 318.318 396.486L330.033 381.333C336.466 372.999 343.959 363.161 346.686 359.473C349.938 355.069 352.583 352.514 354.411 352.049C355.936 351.655 358.309 351.13 359.703 350.877C361.087 350.614 364.046 349.988 366.267 349.483C368.489 348.968 371.67 348.523 373.336 348.493C375.609 348.443 378.012 346.887 382.93 342.271C386.535 338.887 391.989 334.028 395.049 331.482C398.099 328.926 403.986 323.876 408.116 320.249C415.367 313.885 415.862 313.633 422.255 313.037C425.9 312.703 430.011 312.37 431.404 312.299V312.299ZM250.384 378.838C251.081 378.818 252.555 379.262 253.666 379.818C254.777 380.374 258.605 385.263 268.643 400.526L277.055 402.395C281.69 403.425 287.063 405.092 289.012 406.082C290.951 407.082 295.384 410.9 298.858 414.567C302.332 418.234 305.624 421.234 306.18 421.234C306.735 421.234 310.027 418.234 313.501 414.567C316.975 410.9 321.399 407.082 323.348 406.082C325.287 405.092 330.669 403.425 343.717 400.526L350.2 390.677C354.169 384.636 357.714 380.374 359.36 379.656C361.4 378.767 362.622 378.767 364.409 379.656C366.681 380.788 366.803 381.424 367.53 396.738C367.944 405.486 368.287 415.87 368.287 419.8C368.287 426.033 367.934 427.427 365.51 430.659C363.985 432.7 359.208 437.023 354.906 440.276C350.604 443.518 345.514 447.953 343.616 450.125C341.707 452.286 338.667 457.246 336.87 461.135C335.072 465.025 332.467 471.388 331.093 475.278C329.71 479.167 327.417 486.218 326.004 490.935C324.59 495.652 321.974 501.794 320.197 504.572C318.419 507.35 316.016 510.421 314.855 511.411C313.693 512.391 311.27 513.865 309.462 514.694C306.634 515.987 305.725 515.997 302.898 514.785C301.09 514.017 297.909 511.512 295.829 509.229C293.748 506.946 291.183 503.37 290.133 501.289C289.083 499.208 287.235 494.087 286.023 489.925C284.811 485.753 282.882 479.621 281.751 476.288C280.61 472.954 277.913 466.479 275.762 461.893C273.601 457.307 270.37 451.903 268.562 449.872C266.754 447.842 261.755 443.518 257.453 440.276C253.151 437.023 248.375 432.7 246.85 430.659C244.426 427.427 244.072 426.033 244.072 419.8C244.072 415.87 244.416 405.486 244.83 396.728C245.486 383.111 245.85 380.667 247.355 379.838C248.324 379.303 249.687 378.858 250.384 378.838V378.838ZM304.332 435.669C305.069 437.215 305.897 438.488 306.18 438.488C306.452 438.488 307.291 437.215 308.028 435.669C309.159 433.316 309.159 432.477 308.028 430.578C307.291 429.326 306.432 428.295 306.129 428.305C305.826 428.305 304.988 429.326 304.281 430.578C303.211 432.437 303.221 433.366 304.332 435.669Z" fill="white"/> 13 - </svg>
-7
app/static/images/Path-Nihility.svg
··· 1 - <svg width="598" height="612" viewBox="0 0 598 612" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 - <path fill-rule="evenodd" clip-rule="evenodd" d="M328.594 0.248877C343.326 0.635982 354.164 1.50435 362.74 2.97954C369.651 4.17224 379.776 6.35886 385.252 7.83404C390.729 9.30922 399.912 12.4061 405.671 14.7078C411.43 17.0199 419.912 21.1107 424.519 23.81C429.126 26.5092 436.393 31.5416 440.665 34.9941C444.927 38.4572 450.424 43.636 452.864 46.5131C455.293 49.3903 458.989 54.3285 461.073 57.4985C463.146 60.6686 464.843 63.483 464.843 63.7759C464.843 64.0689 451.995 64.6338 436.299 65.0523C419.168 65.5022 404.205 66.4229 398.865 67.3645C393.975 68.2224 385.619 70.001 380.321 71.3192C375.012 72.6375 370.771 73.8302 370.897 73.9662C371.012 74.1127 378.425 75.818 387.347 77.764C396.268 79.6995 410.645 83.2148 419.283 85.5689C427.922 87.9124 442.77 92.4949 452.267 95.7487C461.775 99.0024 476.371 104.673 484.727 108.345C493.083 112.018 504.874 117.971 510.936 121.57C517.009 125.169 525.25 130.567 529.261 133.549C533.281 136.531 540.402 142.892 545.103 147.673C549.805 152.454 556.328 160.134 559.606 164.737C562.873 169.34 567.721 177.103 570.38 182C573.04 186.896 577.166 195.831 579.553 201.878C581.94 207.925 585.092 217.101 586.558 222.28C588.034 227.458 590.024 235.232 590.987 239.542C591.951 243.863 593.689 253.51 594.851 260.99C596.286 270.26 597.176 282.856 597.647 300.558C598.254 323.398 598.15 326.442 596.767 325.898C595.898 325.553 592.893 319.527 590.087 312.486C587.281 305.455 581.155 291.467 576.474 281.392C571.804 271.327 564.056 256.021 559.25 247.389C554.454 238.758 546.643 225.816 541.899 218.618C537.156 211.43 529.47 200.832 524.831 195.078C520.193 189.323 512.214 180.608 507.104 175.702C501.994 170.805 494.989 164.632 491.533 161.985C488.078 159.338 481.251 154.578 476.35 151.387C471.46 148.207 462.738 143.237 456.979 140.349C451.22 137.462 442.267 133.382 437.084 131.3C431.901 129.207 422.948 126.131 417.189 124.457C411.43 122.783 404.833 121.141 402.53 120.806C398.896 120.283 397.483 119.174 391.797 112.394C388.195 108.094 385.221 103.993 385.19 103.271C385.158 102.549 384.059 97.2552 380.373 81.0387L377.839 88.1217C376.446 92.0136 375.064 95.1942 374.781 95.1837C374.499 95.1837 370.959 92.7983 366.928 89.9002C362.897 87.0022 359.242 84.6482 358.813 84.6691C358.384 84.6796 357.096 81.7606 355.954 78.1616C354.813 74.5625 352.457 65.973 350.719 59.0679C348.981 52.1628 347.557 46.1574 347.557 45.7285C347.557 45.2995 350.499 43.5942 354.101 41.9516C357.703 40.309 363.001 38.1851 365.881 37.2435C368.761 36.2915 374.185 34.9 384.729 32.7552L378.97 30.0873C375.808 28.6226 370.153 26.6139 366.405 25.6409C362.499 24.626 353.578 23.6321 345.462 23.3182C335.578 22.9416 328.489 23.2345 321.903 24.3226C316.719 25.1701 312.364 25.8083 312.217 25.7246C312.081 25.6513 310.772 20.4097 309.327 14.08C307.882 7.75034 306.762 1.92284 306.845 1.12771C306.981 -0.0754536 310.678 -0.221926 328.594 0.248877V0.248877ZM292.06 1.00216L290.008 9.63355C288.877 14.3834 287.118 21.9267 286.081 26.4046C284.636 32.7029 283.736 34.6907 282.113 35.1825C280.961 35.5277 274.605 38.3421 267.977 41.418C261.359 44.5044 255.809 46.9212 255.652 46.7747C255.495 46.6282 255.066 42.5165 254.04 28.7272L249.653 50.562L235.475 60.0409C227.674 65.2616 217.067 72.8153 211.915 76.8433C206.753 80.8608 198.763 87.4521 194.166 91.4905C189.559 95.5185 182.313 102.12 178.052 106.148C173.79 110.176 166.565 117.95 161.979 123.411C157.403 128.872 150.335 138.288 146.282 144.336C142.241 150.383 136.565 160.029 133.686 165.783C130.796 171.538 126.911 180.242 125.037 185.138C123.162 190.035 120.21 199.681 118.471 206.586C116.733 213.491 114.723 223.849 114.011 229.603C113.152 236.487 112.922 246.856 113.32 259.944C113.686 271.955 114.555 282.511 115.519 286.623C116.398 290.358 117.142 294.009 117.152 294.731C117.173 295.453 116.723 296.039 116.147 296.039C115.571 296.039 112.346 291.686 108.974 286.361C105.602 281.036 100.252 271.976 97.0895 266.221C93.9273 260.467 89.32 251.281 86.8488 245.82C84.3881 240.358 80.5034 230.702 78.2312 224.372C75.9694 218.042 72.7862 207.444 71.1737 200.832C69.5611 194.22 67.6449 183.862 66.9224 177.815C66.0429 170.449 65.8125 159.757 66.2209 145.382C66.556 133.58 67.5612 118.996 68.4722 112.949C69.3727 106.901 71.3412 96.5543 72.8281 89.9316C74.3255 83.3195 77.4144 72.491 79.6971 65.8684C81.9693 59.2562 86.3672 48.6579 89.4666 42.3282C92.566 35.9985 97.0057 27.8798 99.3408 24.2808C101.676 20.6817 104.168 17.7314 104.89 17.7209C105.843 17.7104 105.99 18.7776 105.435 21.6443C105.016 23.81 103.906 31.9496 102.964 39.7126C102.021 47.4861 101.236 61.6102 101.226 71.0995C101.215 80.5993 101.749 91.6579 102.419 95.6859C103.079 99.7139 104.084 105.479 105.676 113.995L111.54 104.84C114.765 99.808 120.524 91.6893 124.335 86.7929C128.136 81.9071 136.22 72.7839 142.293 66.538C148.356 60.2815 157.089 52.1314 161.696 48.4173C166.303 44.7032 174.313 38.8129 179.497 35.3289C184.68 31.845 194.46 26.2267 201.224 22.8474C207.988 19.4681 218.826 14.8647 225.307 12.6258C231.789 10.3868 241.799 7.54109 247.558 6.30654C253.317 5.07199 262.982 3.41895 269.024 2.64474C275.066 1.87053 282.731 1.18002 292.06 1.00216V1.00216ZM343.347 48.0825C343.85 48.0825 344.08 50.0808 343.85 52.5289C343.63 54.9771 343.169 59.8002 342.824 63.2528C342.489 66.7054 341.955 70.9426 341.075 75.8075L334.112 73.872C329.033 72.4701 326.353 71.0472 324.248 68.6409C322.657 66.8309 321.348 65.0209 321.337 64.6338C321.327 64.2363 326.07 60.3547 331.871 56.0024C337.672 51.6397 342.834 48.0825 343.347 48.0825V48.0825ZM36.9858 130.211L37.7083 151.659C38.0957 163.461 38.9857 178.526 39.6768 185.138C40.3679 191.751 41.8443 202.59 42.9542 209.202C44.0746 215.814 46.4306 226.653 48.2002 233.265C49.9698 239.877 53.0902 249.775 55.1425 255.236C57.1949 260.708 61.5508 271.065 64.8178 278.253C68.0952 285.451 74.2103 297.451 78.4092 304.932C82.6081 312.412 88.3462 321.943 91.1524 326.118C94.6288 331.297 95.833 333.881 94.9429 334.268C94.2204 334.571 89.6341 333.577 84.7337 332.05C79.8437 330.522 72.7758 327.74 69.0271 325.856C65.289 323.984 58.4514 320.217 53.8441 317.486C49.2369 314.766 45.9699 313.176 46.5877 313.961C47.2055 314.745 50.5457 318.93 54.0117 323.241C57.4776 327.562 63.1633 333.682 66.6397 336.842C70.1266 340.001 77.1526 344.804 82.252 347.503C88.8593 350.987 92.1262 353.404 93.5922 355.873C94.7126 357.777 99.7387 364.755 104.733 371.367C109.739 377.979 117.927 387.866 122.922 393.338C127.916 398.81 136.094 406.929 141.089 411.386C146.083 415.842 153.937 422.204 158.523 425.51C163.12 428.816 171.371 433.995 176.847 437.018C182.334 440.031 192.481 444.823 199.392 447.669C206.302 450.504 217.611 454.49 224.522 456.53C231.433 458.56 239.087 460.715 241.537 461.312C244.166 461.95 246.239 463.142 246.595 464.22C246.93 465.224 247.6 466.993 248.082 468.143C248.857 469.995 249.056 469.838 249.831 466.762C250.522 464 251.129 463.394 252.794 463.802C253.946 464.084 259.966 465.172 266.165 466.229C272.437 467.296 277.286 468.604 277.087 469.19C276.898 469.765 274.406 471.512 271.568 473.061C268.731 474.62 262.165 477.298 256.982 479.024C251.799 480.751 243.087 482.885 237.611 483.774C232.145 484.674 222.009 485.396 215.098 485.396C208.187 485.385 197.591 484.663 191.538 483.774C185.496 482.895 176.303 481.064 171.12 479.704C165.937 478.355 156.984 475.498 151.225 473.354C145.466 471.219 135.811 467.139 129.759 464.293C123.717 461.448 113.351 455.903 106.723 451.969C100.105 448.035 89.498 441.193 83.163 436.757C76.828 432.31 67.8753 425.478 63.2681 421.576C58.6608 417.663 51.5614 410.998 47.4882 406.772C43.415 402.555 37.2789 395.567 33.8549 391.246C30.4309 386.935 25.1954 379.402 22.2216 374.506C19.2478 369.61 15.1955 362.087 13.2165 357.766C11.2375 353.456 8.1904 345.452 6.44174 339.98C4.69308 334.509 2.4418 325.093 1.44705 319.056C0.0334647 310.529 -0.249253 304.44 0.19053 291.854C0.536074 281.998 1.42611 273.179 2.45227 269.36C3.66691 264.819 5.1538 262.141 7.7925 259.682C10.4312 257.213 12.8814 256.062 16.7034 255.497C20.808 254.891 21.8237 254.367 21.3106 253.143C20.9546 252.285 19.5724 247.337 18.2321 242.158C16.8918 236.979 15.2269 228.505 14.5254 223.326C13.8343 218.147 13.5306 210.384 13.8657 206.063C14.1903 201.753 15.2374 194.45 16.1903 189.847C17.1431 185.243 19.0803 177.48 20.4939 172.584C21.897 167.687 24.5147 159.694 26.3053 154.798C28.0854 149.901 31.2267 142.379 33.2685 138.058L36.9858 130.211ZM454.33 188.277C454.927 188.277 461.178 193.404 468.235 199.671C475.293 205.938 487.921 218.063 496.298 226.611C504.685 235.159 514.172 245.454 517.386 249.482C520.591 253.51 525.962 261.042 529.313 266.221C532.664 271.4 536.915 278.933 538.747 282.961C540.58 286.989 543.763 295.704 545.826 302.316C548.485 310.864 551.585 317.832 556.548 326.379C560.391 332.992 565.532 342.648 567.982 347.827C570.433 353.006 573.899 361.836 575.7 367.444C577.49 373.052 579.721 381.997 580.652 387.322C581.919 394.594 582.202 401.038 581.815 413.216C581.375 426.755 580.768 431.421 578.139 441.465C576.412 448.077 572.223 460.088 568.841 468.143C565.459 476.199 559.731 487.97 556.129 494.299C552.517 500.629 546.402 510.024 542.538 515.182C538.674 520.34 531.742 528.354 527.135 533.01C522.528 537.665 515.931 543.618 512.476 546.255C509.02 548.891 502.654 553.181 498.34 555.797C494.015 558.412 486.476 562.189 481.586 564.187C476.686 566.186 469.618 568.55 465.879 569.439C462.131 570.318 458.832 570.841 458.55 570.601C458.256 570.36 460.246 565.568 462.958 559.961C465.67 554.342 469.733 544.801 471.984 538.764C474.235 532.727 477.303 522.83 478.79 516.793C480.288 510.756 481.994 501.215 482.591 495.607C483.188 489.999 483.67 480.813 483.649 475.206C483.638 469.598 483.167 460.412 482.602 454.804C481.973 448.495 480.79 443.013 479.492 440.418C478.34 438.117 476.099 435.271 474.518 434.11C472.905 432.917 470.015 431.975 467.974 431.975C465.932 431.975 463.031 432.917 461.429 434.11C459.848 435.271 458.319 437.531 458.037 439.111C457.754 440.69 457.293 448.108 457.01 455.589C456.728 463.069 455.534 474.839 454.351 481.744C453.168 488.65 450.623 499.007 448.696 504.761C446.77 510.516 443.053 519.461 440.445 524.64C437.838 529.819 433.21 537.592 430.163 541.903C427.116 546.224 420.131 554.395 414.624 560.076C409.126 565.757 401.325 573.122 397.294 576.428C393.263 579.745 385.252 585.593 379.493 589.443C373.734 593.283 364.07 598.953 358.028 602.029C351.975 605.116 344.562 608.621 336.039 612L334.73 607.794C334.007 605.471 333.421 603.599 333.421 603.609C333.421 603.62 328.709 604.54 322.95 605.649C317.191 606.758 305.882 608.516 297.819 609.562C286.123 611.079 275.945 611.456 247.558 611.435C219.077 611.425 209.339 611.048 198.868 609.552C191.664 608.526 180.125 606.507 173.214 605.063C166.303 603.62 155.696 601.015 149.654 599.257C143.602 597.51 134.419 594.245 129.236 591.996C124.052 589.747 115.895 585.687 111.11 582.957C106.335 580.226 97.3827 574.273 91.2153 569.711C84.5871 564.805 72.9642 554.353 62.7236 544.079C53.2054 534.537 41.6663 521.784 37.08 515.747C32.4937 509.71 25.7922 500.294 22.2006 494.822C18.5986 489.351 15.8761 484.643 16.1379 484.36C16.4102 484.078 18.6405 485.626 21.1012 487.802C23.5619 489.989 30.5147 495.795 36.5669 500.713C42.6087 505.63 53.4462 513.55 60.6503 518.31C67.8439 523.07 78.4511 529.536 84.2101 532.685C89.9692 535.845 99.3931 540.574 105.152 543.2C110.911 545.836 121.278 549.938 128.188 552.313C135.099 554.698 145.225 557.774 150.701 559.155C156.167 560.525 165.12 562.492 170.596 563.518C178.376 564.972 186.135 565.38 206.198 565.401C226.773 565.432 233.925 565.045 242.323 563.497C248.082 562.43 257.265 560.4 262.741 558.988C268.207 557.575 277.631 554.489 283.683 552.145C289.725 549.791 295.736 547.824 297.034 547.761C298.531 547.699 299.39 546.998 299.39 545.826C299.39 544.822 299.861 544.236 300.437 544.518C301.013 544.801 307.023 542.248 313.788 538.827C320.552 535.406 331.745 528.867 338.656 524.295C345.567 519.712 355.693 512.211 361.169 507.628C366.635 503.035 374.897 495.335 379.514 490.512C384.132 485.689 391.137 477.748 395.085 472.852C399.022 467.955 405.357 459.251 409.147 453.496C412.927 447.742 418.98 437.384 422.571 430.479C426.173 423.574 431.199 412.746 433.744 406.416C436.299 400.086 439.911 389.959 441.775 383.922C443.639 377.885 446.508 367.057 448.152 359.859C449.796 352.671 451.911 340.901 452.843 333.703C453.775 326.515 454.728 320.385 454.969 320.102C455.209 319.82 455.555 319.82 455.743 320.102C455.932 320.385 457.157 327.216 458.455 335.272C459.764 343.328 461.984 353.916 463.398 358.813C464.822 363.709 467.366 370.645 469.063 374.244C470.853 378.021 474.958 383.765 478.79 387.845C482.445 391.727 486.612 397.261 488.068 400.139C489.523 403.016 491.691 408.435 492.895 412.17C494.088 415.905 495.785 422.737 496.664 427.341C497.544 431.944 498.748 440.303 499.345 445.911C499.942 451.519 500.455 458.581 500.518 467.097L504.748 462.389C507.083 459.795 510.695 455.087 512.79 451.927C514.884 448.767 517.742 443.348 519.146 439.895C520.643 436.213 521.899 430.594 522.193 426.294C522.465 422.266 522.392 415.79 522.036 411.909C521.397 405.15 521.083 404.48 514.444 396.215C510.643 391.465 505.701 384.518 503.46 380.783C501.23 377.048 498.141 370.457 496.601 366.136C494.298 359.681 493.795 356.438 493.764 347.827C493.732 341.006 494.413 334.456 495.711 328.995C497.198 322.78 497.68 317.131 497.596 307.024C497.512 296.865 496.926 291.31 495.282 285.053C494.067 280.45 491.156 272.687 488.811 267.791C486.465 262.894 480.633 253.018 475.848 245.82C471.063 238.632 465.974 230.388 464.539 227.511C463.105 224.634 460.749 218.513 459.304 213.91C457.859 209.306 456.141 202.715 455.482 199.263C454.822 195.81 454.047 191.929 453.764 190.631C453.492 189.334 453.743 188.277 454.33 188.277V188.277Z" fill="white" fill-opacity="0.3"/> 3 - <path fill-rule="evenodd" clip-rule="evenodd" d="M300.091 6.75644C300.887 10.7844 303.934 25.3793 306.877 39.1895C309.809 52.9998 313.589 69.2372 315.274 75.2845C316.96 81.3317 319.787 90.2769 321.547 95.1628C323.316 100.049 326.478 107.937 328.573 112.687C331.62 119.603 332.897 121.444 334.991 121.894C336.573 122.229 337.892 121.915 338.321 121.099C338.709 120.356 339.285 117.866 339.588 115.564C339.902 113.263 340.887 106.671 341.766 100.917C342.656 95.1628 343.682 85.7467 344.049 79.9925C344.415 74.2382 345.169 68.3479 345.735 66.9146C346.3 65.4708 346.918 64.7698 347.117 65.3453C347.305 65.9207 348.719 72.0411 350.248 78.9463C351.776 85.8514 354.666 96.6798 356.666 103.01C358.666 109.339 361.797 117.709 363.619 121.611C365.441 125.514 367.169 128.705 367.452 128.684C367.734 128.674 369.556 123.829 371.493 117.929C373.431 112.028 375.431 106.724 375.933 106.148C376.425 105.573 377.085 105.332 377.378 105.625C377.671 105.918 379.033 110.856 380.404 116.611C381.776 122.365 383.86 129.898 385.043 133.35C386.226 136.803 388.174 141.866 389.368 144.597C390.75 147.778 395.022 153.103 401.221 159.391C406.55 164.8 413.587 172.919 416.864 177.438C420.142 181.958 425.398 190.6 428.55 196.647C431.691 202.694 435.492 211.514 436.99 216.264C438.477 221.014 440.016 226.894 440.403 229.342C441.021 233.244 441.199 233.464 441.817 231.173C442.194 229.729 443.178 223.912 443.984 218.241C444.801 212.571 445.932 207.538 446.508 207.067C447.178 206.513 447.859 208.909 448.403 213.722C448.864 217.854 449.911 228.526 450.728 237.45C451.545 246.374 452.215 262.371 452.225 273.022C452.236 283.672 451.764 298.027 451.178 304.932C450.592 311.837 449.189 324.789 448.068 333.703C446.948 342.617 445.314 354.628 444.435 360.382C443.555 366.136 442.843 371.315 442.854 371.89C442.868 372.588 442.522 372.588 441.817 371.89C441.231 371.315 440.56 369.662 440.32 368.229C440.079 366.785 439.576 362.788 439.21 359.336C438.843 355.883 438.309 350.945 438.037 348.35C437.754 345.756 437.252 342.46 436.906 341.027C436.56 339.583 435.985 331.349 434.99 307.024L433 312.255C431.901 315.133 429.105 321.483 426.781 326.379C424.456 331.276 420.016 339.039 416.896 343.642C413.786 348.246 410.173 354.125 408.875 356.72C407.566 359.315 405.294 364.724 403.807 368.752C402.32 372.78 400.488 378.775 399.723 382.081C398.959 385.387 397.985 387.741 397.556 387.312C397.127 386.883 396.174 385.355 395.441 383.922C394.666 382.416 393.001 381.16 391.514 380.972C389.661 380.731 387.713 381.777 384.708 384.634C381.996 387.207 378.582 392.553 375.137 399.616C372.195 405.652 367.881 416.02 365.556 422.633C363.242 429.245 359.902 439.132 358.143 444.603C356.384 450.075 353.871 458.738 352.562 463.864C351.242 468.981 349.588 473.343 348.866 473.542C348.143 473.741 347.651 473.542 347.756 473.113C347.871 472.684 347.609 469.033 347.169 465.005C346.74 460.977 345.473 452.858 344.353 446.957C343.232 441.057 341.264 433.817 339.965 430.866C338.667 427.916 336.782 425.091 335.777 424.589C334.489 423.951 333.159 424.307 331.327 425.771C329.882 426.922 326.824 431.745 324.531 436.495C322.227 441.245 318.74 450.776 316.761 457.681C314.793 464.586 311.756 477.057 310.008 485.406C308.269 493.755 305.442 509.051 303.746 519.409C302.05 529.766 300.374 540.48 300.029 543.21C299.673 545.993 298.929 547.95 298.343 547.657C297.767 547.374 297.537 546.663 297.819 546.088C298.102 545.512 297.631 539.747 296.772 533.271C295.903 526.795 294.688 518.436 294.06 514.701C293.432 510.966 291.578 500.838 289.924 492.207C288.28 483.575 285.296 470.163 283.306 462.389C281.317 454.616 278.437 444.97 276.909 440.942C275.38 436.914 272.867 431.316 271.317 428.502C269.767 425.698 267.443 422.517 266.144 421.44C264.511 420.09 263.233 419.766 261.956 420.404C260.951 420.906 259.003 423.846 257.631 426.943C256.26 430.04 254.029 439.153 252.658 447.219C251.296 455.275 250.176 463.038 250.166 464.482C250.155 465.915 249.726 467.809 249.223 468.667C248.563 469.797 247.663 468.049 246.009 462.389C244.752 458.068 241.213 446.539 238.145 436.757C235.087 426.974 231.077 415.204 229.234 410.601C227.402 405.998 224.176 398.695 222.082 394.384C219.978 390.063 216.124 384.278 213.538 381.516C209.978 377.739 208.177 376.578 206.229 376.808C204.711 376.996 203.077 378.21 202.302 379.737C201.569 381.171 200.606 382.698 200.177 383.116C199.747 383.535 198.501 380.239 197.412 375.793C196.323 371.346 193.926 364.169 192.093 359.859C190.261 355.538 184.91 345.892 180.209 338.411C175.518 330.931 169.664 319.861 162.743 302.839L162.146 319.056C161.811 327.97 161.277 335.743 160.942 336.319C160.607 336.894 159.79 342.784 159.12 349.397C158.439 356.009 157.685 362.61 157.434 364.044C157.183 365.477 156.628 367.005 156.198 367.434C155.769 367.852 154.387 361.732 153.13 353.833C151.874 345.923 150.335 335.691 149.706 331.088C149.078 326.484 148.073 318.48 147.476 313.302C146.879 308.123 146.125 292.356 145.811 278.253C145.382 258.772 145.665 248.101 146.994 233.788C147.958 223.431 149.068 212.048 149.466 208.49C150.041 203.28 150.439 202.265 151.528 203.259C152.282 203.939 152.869 205.666 152.837 207.109C152.806 208.543 153.235 212.309 153.801 215.479C154.356 218.649 155.109 223.117 155.476 225.418C156.115 229.488 156.209 229.331 158.722 219.664C160.146 214.203 162.68 206.429 164.366 202.401C166.041 198.373 169.905 190.84 172.952 185.662C175.999 180.483 180.135 174.143 182.135 171.569C184.135 169.006 187.423 164.999 189.423 162.676C191.423 160.353 196.009 155.635 199.611 152.182C205.171 146.857 206.732 144.513 209.852 136.75C211.873 131.718 214.669 123.003 216.072 117.395C217.464 111.787 218.878 105.897 219.213 104.317C219.538 102.738 220.334 101.555 220.972 101.702C221.611 101.848 223.841 107.027 225.946 113.21C228.04 119.404 229.988 124.478 230.281 124.499C230.564 124.52 232.176 121.57 233.852 117.96C235.517 114.34 238.019 108.084 239.401 104.056C240.783 100.028 243.768 89.4399 246.04 80.5156C248.302 71.5913 250.155 63.3574 250.145 62.2066C250.152 60.8325 250.487 60.4838 251.15 61.1604C251.694 61.7358 252.385 64.3304 252.679 66.9146C252.972 69.4988 253.506 74.9183 253.851 78.9463C254.207 82.9742 255.453 93.1017 256.626 101.44C257.799 109.779 259.066 117.008 259.443 117.489C259.82 117.981 261.296 118.138 262.741 117.845C264.856 117.406 266.092 115.617 269.16 108.586C271.254 103.794 274.406 95.8638 276.155 90.9779C277.903 86.0815 280.291 78.7893 281.463 74.7613C282.626 70.7334 284.804 62.2589 286.291 55.9292C287.778 49.5995 289.453 42.5375 289.997 40.2358C290.542 37.9341 292.448 28.518 294.217 19.3112C295.987 10.1044 297.704 1.86008 298.039 1.00218C298.374 0.133805 299.296 2.72845 300.091 6.75644V6.75644ZM272.689 153.427C272.113 153.176 266.301 150.676 259.767 147.872C248.741 143.132 247.652 142.86 244.584 144.095C242.763 144.817 238.763 146.941 235.684 148.803C232.616 150.665 226.491 155.049 222.072 158.554C217.663 162.048 210.637 169.11 206.47 174.247C201.549 180.294 196.679 187.974 192.596 196.124C189.13 203.029 185.099 212.916 183.622 218.095C182.156 223.274 180.282 231.989 179.444 237.45C178.617 242.911 177.936 254.336 177.936 262.821C177.926 274.005 178.491 281.067 179.978 288.454C181.109 294.061 183.256 301.95 184.763 305.978C186.261 310.006 189.381 316.827 191.685 321.148C193.999 325.459 198.397 332.291 201.475 336.319C204.543 340.347 210.281 346.739 214.218 350.526C218.156 354.314 224.449 359.629 228.187 362.338C231.925 365.048 235.579 367.245 236.302 367.224C237.024 367.203 241.967 362.213 247.296 356.145C252.626 350.087 257.223 345.149 257.506 345.201C257.788 345.243 267.453 361.784 278.971 381.966C295.139 410.287 300.154 418.301 300.961 417.108C301.536 416.251 310.489 400.683 320.856 382.51C331.222 364.347 339.944 349.438 340.227 349.386C340.51 349.344 345.106 354.272 350.436 360.33C355.766 366.398 360.593 371.367 361.169 371.367C361.745 371.367 365.158 369.411 368.761 367.005C372.363 364.609 379.609 358.373 384.854 353.142C390.32 347.712 397.032 339.614 400.54 334.226C403.901 329.047 408.383 320.814 410.488 315.917C412.592 311.021 415.367 303.028 416.655 298.131C418.487 291.163 419.116 285.263 419.535 270.929C419.932 257.161 419.66 250.026 418.414 242.158C417.503 236.404 415.556 227.458 414.1 222.28C412.634 217.101 408.624 207.214 405.189 200.309C401.524 192.964 396.153 184.281 392.247 179.384C388.572 174.781 382.781 168.619 379.389 165.679C375.986 162.749 370.384 158.449 366.928 156.127C363.473 153.804 358.645 150.906 356.195 149.692C353.745 148.468 351.033 147.474 350.174 147.474C349.316 147.474 343.536 149.63 337.347 152.276C331.159 154.913 325.62 157.277 325.044 157.539C324.468 157.801 318.102 149.985 310.908 140.172C303.704 130.368 297.557 122.344 297.254 122.354C296.94 122.354 291.516 129.458 285.212 138.131C278.898 146.794 273.265 153.678 272.689 153.427V153.427Z" fill="white"/> 4 - <path d="M177.643 266.221C177.413 268.523 177.224 267.111 177.224 263.083C177.214 259.055 177.402 257.171 177.633 258.898C177.863 260.624 177.863 263.92 177.643 266.221Z" fill="white" fill-opacity="0.3"/> 5 - <path d="M420.571 270.406C420.341 272.708 420.152 271.295 420.152 267.267C420.142 263.239 420.33 261.356 420.561 263.083C420.791 264.809 420.791 268.104 420.571 270.406Z" fill="white" fill-opacity="0.3"/> 6 - <path fill-rule="evenodd" clip-rule="evenodd" d="M298.144 144.325C298.542 144.315 300.709 147.495 302.95 151.387C305.201 155.279 309.086 161.169 311.589 164.475C315.013 168.995 317.777 171.307 322.688 173.776C326.29 175.576 331.829 179.039 334.991 181.466C338.154 183.893 342.405 187.953 344.436 190.485C346.468 193.006 349.389 196.961 350.928 199.263C352.468 201.564 355.169 206.858 356.928 211.033C358.687 215.207 360.855 221.798 361.755 225.68C362.656 229.561 363.441 236.979 363.504 242.158C363.556 247.337 363.253 254.158 362.824 257.328C362.384 260.488 361.295 265.677 360.394 268.837C359.494 271.996 357.808 276.704 356.656 279.299C355.515 281.894 352.803 286.832 350.646 290.285C348.478 293.737 343.494 299.596 339.546 303.3C335.599 307.003 330.772 311.01 328.814 312.193C326.353 313.678 324.123 316.608 321.589 321.671C319.568 325.699 315.023 336.298 311.484 345.212C307.945 354.125 303.652 365.55 301.955 370.583C300.259 375.625 298.51 379.748 298.081 379.737C297.652 379.737 296.762 377.969 296.102 375.814C295.442 373.659 291.641 363.186 287.652 352.535C283.662 341.885 278.542 329.298 276.28 324.549C272.469 316.555 271.642 315.572 265.097 311.282C261.213 308.73 256.082 304.618 253.694 302.128C251.307 299.638 247.286 294.543 244.752 290.808C242.218 287.073 238.909 280.942 237.401 277.207C235.894 273.472 233.852 266.41 232.857 261.513C231.527 254.912 231.203 249.649 231.6 241.112C231.936 234.133 233.045 226.308 234.438 221.233C235.695 216.63 238.679 209.097 241.056 204.494C244.281 198.269 247.674 193.833 254.323 187.2C261.349 180.19 265.171 177.323 272.165 173.829C279.872 169.989 281.704 168.524 285.851 162.885C288.479 159.297 292.154 153.657 294.029 150.351C295.893 147.045 297.746 144.325 298.144 144.325V144.325ZM276.877 192.242C273.422 194.073 268.385 197.819 265.684 200.56C262.982 203.301 259.076 208.365 257.003 211.817C254.94 215.27 252.302 221.16 251.16 224.895C250.009 228.63 248.804 235.462 248.469 240.066C248.061 245.82 248.396 250.884 249.558 256.282C250.48 260.593 252.93 267.655 255.003 271.976C257.485 277.144 260.961 282.082 265.202 286.445C269.495 290.86 274.085 294.278 278.971 296.698C284.825 299.606 287.987 300.464 294.678 300.946C300.929 301.395 304.646 301.092 309.337 299.763C312.793 298.769 317.735 296.729 320.332 295.223C322.929 293.716 327.128 290.577 329.662 288.244C332.206 285.911 336.112 281.182 338.353 277.73C340.593 274.277 343.599 267.686 345.054 263.083C347.138 256.449 347.672 252.537 347.661 244.25C347.651 238.182 346.97 231.256 346.028 227.772C345.138 224.466 343.18 219.287 341.672 216.264C340.154 213.24 337.211 208.438 335.128 205.592C333.033 202.747 328.499 198.363 325.044 195.852C321.589 193.351 316.29 190.38 313.264 189.261C310.238 188.141 304.584 187.011 300.699 186.729C296.647 186.446 291.401 186.802 288.395 187.576C285.516 188.309 280.333 190.411 276.877 192.242Z" fill="white"/> 7 - </svg>
-4
app/static/images/Path-Preservation.svg
··· 1 - <svg width="513" height="612" viewBox="0 0 513 612" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 - <path fill-rule="evenodd" clip-rule="evenodd" d="M256.466 0C256.765 0.0103247 262.697 5.69924 282.332 25.2955L282.322 68.1431L269.662 79.5313C262.697 85.7984 256.765 90.9297 256.486 90.9297C256.207 90.9297 250.275 85.7984 230.651 68.1431L230.165 25.3265L243.052 12.6581C250.141 5.69924 256.176 0 256.466 0ZM212.39 25.8841C212.855 25.8428 213.785 28.9505 214.457 32.781C215.118 36.6114 215.625 46.0172 215.583 53.6885C215.501 65.9336 215.098 69.1033 212.225 79.7584C210.416 86.4282 206.944 96.8871 204.495 102.989C201.539 110.361 199.544 114.026 198.552 113.913C197.736 113.809 193.571 112.271 189.314 110.474C185.045 108.688 177.377 106.076 172.262 104.672C167.147 103.268 158.776 101.843 153.66 101.513C146.416 101.038 142.995 101.306 138.159 102.721C133.209 104.187 130.946 105.622 126.936 109.834C124.166 112.746 120.219 118.579 118.152 122.812C114.514 130.246 114.39 130.876 114.39 141.985C114.39 153.405 114.421 153.528 118.72 162.181C121.097 166.961 125.634 174.013 134.542 184.812L126.791 189.83L118.524 182.593C113.977 178.618 107.694 173.672 104.573 171.617C101.441 169.552 96.6772 167.033 93.98 166.021C91.2828 164.999 87.4384 164.163 85.4542 164.163C83.4597 164.163 80.9072 164.628 79.7704 165.195C78.2616 165.949 76.3188 170.502 72.5984 181.973C69.7978 190.636 65.8398 203.645 63.8143 210.882C61.7888 218.12 60.1456 225.089 60.1456 226.369C60.156 227.65 64.0727 249.827 68.8471 275.67C73.6318 301.502 77.2282 322.957 76.8458 323.329C76.4634 323.7 62.2022 308.915 45.1506 290.475C28.0991 272.036 13.7552 256.404 13.2798 255.722C12.7321 254.958 14.5819 251.076 18.2919 245.212C21.5265 240.101 27.3344 229.415 31.1994 221.465C35.0644 213.515 39.8595 202.592 41.854 197.202C43.8588 191.813 47.3415 180.652 49.6047 172.423C51.8576 164.194 55.5056 148.304 61.6854 116.793L74.6033 111.424C81.7029 108.471 95.4268 102.204 105.089 97.4963C114.752 92.7779 127.773 85.9842 134.025 82.3809C140.277 78.7776 150.508 72.3969 156.761 68.2051C163.013 64.0132 174.401 55.8257 182.08 50.0026C189.748 44.1898 199.513 36.3946 203.781 32.688C208.039 28.9815 211.915 25.915 212.39 25.8841ZM300.51 25.8118C300.738 25.8118 305.223 29.4254 310.483 33.8444C315.743 38.2634 325.622 46.0895 332.443 51.2209C339.264 56.3626 349.96 64.0029 356.212 68.1947C362.464 72.3866 372.695 78.7776 378.947 82.3809C385.199 85.9842 398.221 92.7779 407.883 97.4963C417.546 102.204 431.259 108.471 451.287 116.793L455.276 137.123C457.467 148.304 461.115 164.184 463.368 172.423C465.631 180.652 469.103 191.813 471.098 197.202C473.082 202.592 477.887 213.515 481.763 221.465C485.638 229.415 491.456 240.101 494.681 245.212C498.391 251.076 500.24 254.958 499.693 255.722C499.217 256.404 484.873 272.036 467.822 290.475C450.77 308.915 436.509 323.7 436.127 323.329C435.744 322.957 439.341 301.502 444.125 275.67C448.9 249.827 452.816 227.65 452.827 226.369C452.827 225.089 451.184 218.12 449.158 210.882C447.133 203.645 443.175 190.636 440.374 181.973C436.654 170.502 434.711 165.949 433.202 165.195C432.065 164.628 429.502 164.163 427.518 164.163C425.524 164.163 421.69 164.999 418.992 166.021C416.295 167.033 411.521 169.552 408.4 171.617C405.279 173.672 398.996 178.618 386.181 189.83L378.43 184.812L384.176 177.843C387.339 174.013 391.875 166.961 394.252 162.181C398.551 153.528 398.582 153.405 398.582 141.985C398.582 130.876 398.458 130.246 394.821 122.812C392.754 118.579 388.806 112.746 386.036 109.834C382.027 105.622 379.764 104.187 374.813 102.721C369.977 101.306 366.556 101.038 359.312 101.513C354.197 101.843 345.826 103.268 340.71 104.672C335.595 106.076 327.917 108.688 323.659 110.474C319.391 112.271 315.236 113.809 314.42 113.913C313.428 114.026 311.433 110.361 308.478 102.989C306.029 96.8871 302.556 86.4282 300.748 79.7584C297.875 69.1033 297.472 65.9336 297.389 53.6885C297.348 45.7695 297.906 36.7353 298.702 32.781C299.466 28.9505 300.272 25.8118 300.51 25.8118ZM2.95585 270.662C4.19596 271.994 21.0201 290.052 75.461 348.459L76.6288 355.17C77.2798 358.856 79.202 368.148 80.9072 375.82C82.602 383.491 86.0743 397.078 88.6062 406.019C91.1381 414.961 95.1064 427.505 97.4316 433.896C99.7568 440.287 104.314 450.86 107.549 457.385C110.784 463.91 116.529 473.904 120.312 479.583C124.094 485.262 131.276 495.018 136.268 501.265C141.27 507.511 151.893 519.127 159.871 527.077C167.86 535.027 179.723 545.991 186.244 551.443C192.765 556.894 202.045 564.349 215.666 574.653L222.983 593.196C227.013 603.397 229.917 611.853 229.441 611.997C228.976 612.142 220.399 606.329 210.395 599.091C200.402 591.854 183.072 578.834 171.9 570.172C160.729 561.51 144.153 548.211 135.059 540.633C125.965 533.055 110.846 519.674 101.472 510.887C92.0992 502.091 79.9977 490.104 64.7857 473.595L64.7134 448.712C64.6514 430.334 64.1553 420.866 62.8222 412.472C61.8301 406.226 60.311 398.09 59.4532 394.404C58.5955 390.718 56.4873 383.284 54.7615 377.884C53.0357 372.485 49.6357 363.895 47.2071 358.784C44.7889 353.673 33.0182 331.609 21.0615 309.741C9.11507 287.874 -0.361444 269.599 0.0105896 269.114C0.382623 268.628 1.70541 269.32 2.95585 270.662ZM512.9 269C513.396 269.258 512.001 272.841 509.8 276.96C507.588 281.08 497.047 300.47 486.372 320.066C475.697 339.662 465.621 358.712 463.977 362.397C462.324 366.083 459.399 374.219 457.467 380.466C455.524 386.712 453.023 396.706 451.907 402.664C450.781 408.621 449.303 419.772 448.621 427.443C447.939 435.187 447.629 448.495 448.455 473.388L438.504 484.136C433.026 490.052 420.873 502.08 411.5 510.877C402.127 519.663 387.008 533.055 377.914 540.633C368.82 548.211 352.243 561.51 341.072 570.172C329.901 578.834 312.57 591.854 302.577 599.091C292.573 606.329 283.996 612.142 283.531 611.997C283.056 611.853 285.96 603.397 297.307 574.653L306.091 568.004C310.927 564.349 320.207 556.894 326.728 551.443C333.249 545.991 345.113 535.027 353.101 527.077C361.079 519.127 371.713 507.511 376.736 501.265C381.748 495.018 388.92 485.262 392.692 479.583C396.453 473.904 402.189 463.91 405.434 457.385C408.679 450.86 413.412 439.709 415.964 432.605C418.517 425.512 422.713 412.028 425.296 402.664C427.87 393.299 431.187 380.053 432.654 373.238C434.122 366.424 435.889 357.947 437.852 347.963L474.921 308.244C495.311 286.408 512.393 268.742 512.9 269ZM256.466 517.268C256.765 517.278 262.697 522.967 282.332 542.564L282.322 585.411L269.89 596.51C263.048 602.612 257.013 607.609 256.486 607.609C255.959 607.609 249.924 602.612 230.651 585.411L230.165 542.595L243.052 529.926C250.141 522.967 256.176 517.268 256.466 517.268Z" fill="white" fill-opacity="0.3"/> 3 - <path fill-rule="evenodd" clip-rule="evenodd" d="M266.47 116.597C284.658 116.835 300.707 117.3 302.133 117.63C303.549 117.971 306.804 118.497 309.367 118.817C312.461 119.21 314.645 120.184 315.919 121.739C316.973 123.019 322.554 128.946 328.32 134.913C334.097 140.881 341.238 148.542 344.183 151.949C347.139 155.356 350.549 159.3 351.769 160.725C352.988 162.14 355.22 164.886 356.739 166.807C358.248 168.727 359.984 170.823 360.594 171.453C361.204 172.082 364.966 177.018 368.975 182.407C372.975 187.797 378.886 196.397 382.12 201.508C387.784 210.47 387.98 211.007 387.505 216.479C387.226 219.607 386.047 225.761 384.869 230.159C383.702 234.557 381.418 241.764 379.816 246.162C378.204 250.561 375.641 256.136 374.132 258.552C372.613 260.968 370.835 262.826 370.184 262.682C369.533 262.537 368.531 261.03 367.962 259.326C367.404 257.623 365.493 254.216 363.725 251.758C361.969 249.291 357.029 244.624 352.771 241.382C348.503 238.14 341.765 234.01 337.786 232.214C333.808 230.407 326.832 227.98 322.285 226.814C317.738 225.647 310.525 224.418 306.267 224.078C301.999 223.727 298.279 223.066 298 222.601C297.721 222.147 297.772 219.297 298.134 216.283C298.485 213.268 298.785 203.831 298.806 195.313C298.816 186.682 298.248 177.08 297.524 173.631C296.811 170.224 294.899 164.411 293.297 160.725C291.685 157.039 288.13 151.113 285.402 147.561C281.599 142.626 279.76 141.067 277.589 140.933C276.029 140.84 272.66 140.891 270.097 141.046C267.534 141.201 262.884 142.306 259.763 143.493C256.642 144.681 252.508 147.066 250.586 148.8C248.664 150.535 245.698 154.737 243.993 158.144C241.699 162.749 240.758 166.321 240.355 172.082C239.942 177.875 240.2 180.6 241.388 182.923C242.257 184.627 242.68 186.537 242.329 187.177C241.967 187.817 239.353 188.592 236.511 188.901C233.669 189.221 228.088 190.491 224.11 191.741C220.131 192.98 214.085 195.241 210.675 196.769C207.265 198.287 202.852 200.754 200.858 202.241C198.863 203.717 194.915 205.658 192.073 206.546C189.231 207.434 184.581 208.374 181.739 208.632C178.897 208.89 175.291 209.138 170.888 209.251L171.663 222.199C172.211 231.315 172.097 235.373 171.291 235.879C170.671 236.282 167.716 240.329 164.75 244.872C161.773 249.415 156.152 259.636 152.266 267.586C148.38 275.536 144.05 285.52 142.655 289.784C141.26 294.038 138.862 303.103 137.323 309.917C135.783 316.732 134.377 323.009 134.212 323.856C134.047 324.702 133.623 328.543 133.282 332.374C132.806 337.598 132.269 339.343 131.101 339.343C130.254 339.343 128.456 337.133 127.112 334.439C125.769 331.744 122.462 324.424 119.754 318.177C117.047 311.931 114.225 305.426 113.481 303.723C112.748 302.019 110.66 296.216 108.841 290.817C105.545 281.008 105.545 281.008 107.343 276.362C108.335 273.802 109.844 270.095 110.701 268.102C111.559 266.11 115.021 258.676 118.4 251.583C121.769 244.479 127.061 234.031 130.151 228.352C133.24 222.674 136.816 216.303 138.087 214.197C139.358 212.091 142.438 206.98 144.929 202.84C147.419 198.7 152.845 190.667 156.968 184.988C161.102 179.31 165.339 173.672 166.393 172.454C167.447 171.246 169.7 168.458 171.405 166.27C173.11 164.081 177.957 158.34 182.184 153.508C186.41 148.676 194.151 140.303 199.39 134.913C204.619 129.524 210.003 123.835 211.336 122.286C212.68 120.738 215.17 119.251 216.876 118.993C218.581 118.724 222.766 118.198 226.176 117.816C229.587 117.444 232.604 116.917 232.883 116.659C233.162 116.391 248.271 116.37 266.47 116.597V116.597ZM318.482 178.794C317.965 180.497 317.118 184.214 316.601 187.053C316.064 190.078 316.054 193.713 316.601 195.829C317.232 198.328 319.857 201.673 325.086 206.67C329.25 210.645 337.766 217.955 344.008 222.911C350.25 227.877 355.479 231.821 355.634 231.687C355.789 231.553 354.559 225.182 352.905 217.511C351.252 209.84 348.648 199.856 347.118 195.313C345.589 190.77 342.726 183.564 340.763 179.31C338.789 175.046 335.41 168.427 333.26 164.597C331.1 160.767 329.106 157.628 328.837 157.628C328.558 157.628 326.336 161.696 323.887 166.662C321.438 171.628 319.009 177.09 318.482 178.794ZM239.094 200.052C244.861 200.021 251.475 200.661 255.112 201.611C258.523 202.509 264.568 204.936 268.547 207.011C272.991 209.324 278.375 213.381 282.498 217.522C286.188 221.228 290.177 225.874 291.365 227.857C292.543 229.829 293.359 232.028 293.173 232.74C292.987 233.453 291.324 234.041 289.474 234.062C287.169 234.072 285.309 233.236 283.532 231.367C282.105 229.87 279.088 227.382 276.814 225.823C274.541 224.264 270.355 222.178 267.513 221.166C264.672 220.165 258.853 219.184 254.596 218.988C248.984 218.719 244.995 219.184 240.128 220.66C236.438 221.786 231.323 224.057 228.76 225.699C226.197 227.351 222.022 230.944 219.459 233.69C216.896 236.436 214.044 240.298 213.114 242.29C212.174 244.283 210.902 247.061 210.282 248.485C209.662 249.9 208.753 253.627 208.278 256.745C207.792 259.863 207.74 264.984 208.154 268.102C208.577 271.22 209.28 275.175 209.714 276.878C210.158 278.582 212.163 282.763 214.168 286.171C216.173 289.578 219.697 294.121 222.001 296.268C224.296 298.405 229.659 301.874 233.927 303.96C238.185 306.046 241.761 307.78 241.864 307.801C241.967 307.832 242.35 309.473 242.722 311.466C243.083 313.459 243.652 315.544 243.982 316.112C244.313 316.68 244.747 318.187 244.943 319.468C245.14 320.789 244.737 321.832 244.003 321.894C243.29 321.956 239.921 322.018 236.511 322.028C232.78 322.039 226.807 320.996 221.526 319.406C216.69 317.96 210.406 315.224 207.554 313.345C204.702 311.456 200.134 307.832 197.396 305.271C194.667 302.711 190.74 298.065 188.673 294.947C186.607 291.828 183.568 285.324 181.925 280.492C180.003 274.855 178.835 269.135 178.66 264.489C178.515 260.514 179.073 253.544 179.92 249.002C180.912 243.622 181.222 238.047 180.809 232.998C180.468 228.734 179.827 223.272 179.404 220.846C178.691 216.737 178.794 216.448 180.964 216.458C182.246 216.468 187.123 215.519 191.815 214.341C196.507 213.175 204.061 210.315 208.608 207.992C213.155 205.669 219.666 202.943 223.076 201.942C227.014 200.775 232.863 200.083 239.094 200.052V200.052ZM397.891 230.933C398.655 230.933 402.882 238.264 407.284 247.215C411.687 256.167 416.161 265.583 417.236 268.123C418.301 270.663 419.851 274.834 420.688 277.395C422.155 281.875 422.093 282.371 418.931 291.333C417.133 296.444 415.035 302.019 414.27 303.723C413.506 305.426 410.705 311.931 408.049 318.177C405.383 324.424 401.073 333.478 398.449 338.31C395.834 343.142 392.847 348.707 391.824 350.7C390.791 352.693 389.375 355.243 388.672 356.368C387.97 357.504 384.012 363.544 379.878 369.79C375.734 376.047 370.618 383.543 368.51 386.465C366.392 389.376 358.982 398.669 352.037 407.114C345.103 415.549 337.538 424.542 335.234 427.103C332.929 429.663 326.512 436.767 320.983 442.889C315.444 449.022 300.573 464.231 287.924 476.703C275.275 489.175 264.465 499.376 263.897 499.376C263.328 499.376 252.518 489.175 239.869 476.703C227.22 464.231 212.349 449.022 206.81 442.889C201.281 436.767 194.864 429.663 192.559 427.103C190.255 424.542 182.69 415.549 175.756 407.114C168.811 398.669 161.401 389.376 159.283 386.465C157.175 383.543 151.821 375.81 139.369 357.411L139.245 349.668C139.183 345.403 139.555 339.363 140.082 336.245C140.609 333.127 141.281 329.173 141.57 327.469C141.87 325.766 143.43 320.428 145.042 315.596C146.654 310.764 151.315 300.088 155.407 291.849C159.49 283.61 163.365 276.548 164.016 276.145C164.667 275.732 165.742 275.97 166.393 276.661C167.044 277.343 168.925 281.163 170.578 285.138C172.232 289.113 175.611 295.845 178.102 300.109C180.582 304.363 185.325 310.527 188.632 313.789C191.949 317.052 198.264 321.822 202.666 324.372C207.068 326.932 214.054 330.536 225.701 335.729L225.815 342.44C225.866 346.126 226.063 351.474 226.238 354.314C226.414 357.153 226.828 362.037 227.148 365.155C227.468 368.273 228.233 374.777 228.843 379.609C229.463 384.441 230.91 391.637 232.057 395.612C233.214 399.587 235.405 405.627 236.934 409.035C238.474 412.442 241.326 417.552 243.28 420.392C245.243 423.221 248.591 427.289 250.72 429.426C252.849 431.553 255.174 433.277 255.887 433.256C256.601 433.236 259.969 431.222 263.38 428.765C266.79 426.318 271.844 421.806 274.613 418.74C277.372 415.673 280.566 411.306 281.713 409.035C282.85 406.763 284.327 402.117 284.989 398.71C285.65 395.303 286.115 389.955 286.032 386.836C285.95 383.718 285.588 378.484 284.565 369.284L293.608 369.543C298.578 369.687 305.905 369.45 309.884 369.016C313.863 368.582 321.045 366.951 325.85 365.402C331.018 363.73 335.668 361.489 337.218 359.93C338.665 358.485 341.011 355.811 342.437 354.004C343.904 352.135 347.253 349.833 350.188 348.687C353.029 347.572 358.145 345.961 361.555 345.114C364.966 344.268 369.73 343.431 372.138 343.266C374.556 343.091 376.757 342.378 377.046 341.666C377.336 340.953 377.108 340.138 376.54 339.859C375.972 339.58 375.062 336.442 374.514 332.89C373.967 329.338 373.233 321.791 372.871 316.112C372.52 310.434 372.706 300.212 373.285 293.398C374.328 281.049 374.349 280.967 380.86 268.082C384.456 260.968 388.9 251.789 390.75 247.69C392.599 243.581 394.119 239.647 394.119 238.935C394.129 238.223 394.666 236.137 395.317 234.289C395.968 232.441 397.126 230.933 397.891 230.933V230.933ZM195.422 358.96C193.407 362.646 190.761 368.696 189.542 372.382C188.322 376.068 186.999 381.932 186.596 385.401L185.873 391.71C197.086 403.294 204.526 410.015 209.642 414.135C214.757 418.244 220.73 422.952 222.921 424.615C225.246 426.37 226.662 426.979 226.342 426.07C226.032 425.224 225.009 420.34 224.058 415.229C223.107 410.119 220.462 400.124 218.188 393.031C215.915 385.938 212.256 376.409 210.065 371.866C207.864 367.323 204.495 361.045 202.573 357.927L199.08 352.249L195.422 358.96ZM304.2 235.187C310.287 235.074 316.374 235.61 320.218 236.602C323.629 237.479 329.447 239.699 333.136 241.526C337.614 243.75 342.437 247.449 347.604 252.626C352.771 257.802 356.45 262.623 358.641 267.09C360.449 270.766 362.744 275.866 363.725 278.427C365.152 282.123 365.586 287.079 365.823 302.69C366.02 315.679 366.64 324.227 367.632 327.986C368.779 332.322 368.851 333.974 367.931 334.996C367.27 335.719 366.257 336.204 365.689 336.07C365.121 335.936 360.243 337.288 354.838 339.095C349.319 340.933 343.212 343.782 340.887 345.6C338.613 347.386 335.131 349.668 333.136 350.69C331.152 351.701 326.036 353.56 321.768 354.82C316.178 356.471 311.424 357.091 304.717 357.06C299.581 357.029 292.646 356.255 289.215 355.336C285.805 354.417 279.801 351.949 275.874 349.864C271.699 347.634 265.891 343.235 261.923 339.271C257.83 335.203 253.604 329.638 251.33 325.332C249.253 321.398 246.876 315.617 246.06 312.499C245.254 309.38 244.489 302.876 244.385 298.044C244.272 293.212 244.664 286.707 245.264 283.589C245.853 280.471 246.917 276.61 247.63 275.03C248.333 273.45 249.501 272.17 250.204 272.191C250.917 272.212 251.681 272.583 251.898 273.007C252.126 273.43 251.661 276.92 250.865 280.75C249.625 286.8 249.635 288.71 250.979 295.205C251.836 299.324 253.759 305.251 255.247 308.369C256.828 311.683 260.373 316.329 263.773 319.55C266.966 322.575 272.371 326.416 275.781 328.099C279.191 329.772 285.009 331.558 288.699 332.064C292.657 332.611 297.969 332.611 301.617 332.064C305.027 331.558 310.607 329.772 314.018 328.099C317.428 326.416 322.605 322.803 325.52 320.067C328.424 317.32 331.989 312.994 333.436 310.434C334.883 307.873 336.805 303.227 337.714 300.109C338.613 296.991 339.357 291.405 339.357 287.719C339.357 284.033 338.603 278.448 337.683 275.33C336.763 272.212 335.089 267.793 333.952 265.521C332.816 263.25 329.261 258.81 326.057 255.661C322.843 252.512 317.666 248.712 314.534 247.226C311.413 245.729 305.719 244.004 301.875 243.395C297.193 242.652 292.781 242.621 288.44 243.282C284.896 243.829 280.121 245.047 277.848 245.987C275.574 246.926 272.557 248.537 271.13 249.559C269.529 250.726 267.958 251.128 266.997 250.623C265.736 249.951 266.025 249.291 268.547 247.019C270.252 245.491 274.437 242.858 277.848 241.186C281.258 239.503 286.374 237.51 289.215 236.756C292.057 235.992 298.806 235.29 304.2 235.187V235.187ZM296.832 246.42C298.041 246.42 299.229 246.771 299.467 247.195C299.715 247.618 300.18 251.335 300.5 255.454C300.903 260.39 300.676 263.735 299.86 265.263C298.733 267.38 298.516 266.977 297.431 260.875C296.78 257.189 295.881 252.419 295.437 250.292C294.693 246.771 294.827 246.42 296.832 246.42ZM286.198 295.69C286.952 295.969 287.593 296.96 287.603 297.899C287.624 298.829 284.968 302.009 281.713 304.972C278.447 307.925 272.991 311.796 269.58 313.572C266.17 315.348 262.687 316.525 261.83 316.184C260.982 315.854 260.631 315.235 261.065 314.811C261.489 314.388 261.137 313.232 260.29 312.24C259.432 311.249 259.07 310 259.494 309.473C259.907 308.947 261.881 307.956 263.886 307.274C265.881 306.582 270.076 304.714 273.197 303.124C276.329 301.534 280.214 299.097 281.847 297.703C283.48 296.32 285.433 295.411 286.198 295.69Z" fill="white"/> 4 - </svg>
-5
app/static/images/Path-Remembrance.svg
··· 1 - <svg width="556" height="612" viewBox="0 0 556 612" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 - <path d="M234.665 5.32892C239.939 4.20165 248.581 2.79256 253.868 2.19049C259.143 1.58843 274.697 1.01198 288.434 0.935123C302.158 0.845454 318.289 1.34504 324.28 2.04958C330.272 2.75413 336.89 3.6252 339.003 3.98388C341.115 4.35537 346.018 5.26487 349.885 6.02066C353.751 6.76363 362.392 8.8004 369.088 10.5554C375.784 12.3103 384.707 14.8979 388.931 16.3198C393.156 17.7289 397.189 19.407 397.893 20.0475C398.597 20.688 398.879 21.5463 398.533 21.9562C398.187 22.3789 392.426 21.7384 385.731 20.5599C379.035 19.3686 371.981 18.1773 370.048 17.9082C368.115 17.6264 364.658 17.1525 362.367 16.8322C360.075 16.512 350.141 15.8587 340.283 15.3847C329.12 14.8467 316.317 15.1029 306.357 16.0636C297.549 16.9219 288.345 17.8698 285.874 18.1901C283.403 18.5103 275.632 19.945 268.591 21.3925C261.55 22.8401 248.875 26.2347 240.426 28.9376C231.976 31.6405 218.726 36.726 210.981 40.2359C203.236 43.7458 193.442 48.5752 189.217 50.9706C184.992 53.3661 177.503 57.9264 172.574 61.1161C167.645 64.3057 157.852 71.5433 150.811 77.2181C143.769 82.8801 133.105 92.654 127.127 98.9309C121.135 105.208 112.391 115.52 107.68 121.835C102.956 128.163 95.6331 139.103 91.3956 146.148C87.1453 153.194 80.8594 165.875 77.4156 174.33C73.959 182.785 69.4014 196.619 67.2763 205.074C65.1511 213.528 63.0003 223.328 62.4882 226.851C61.9889 230.373 61.3104 234.408 60.9904 235.818C60.6831 237.227 60.2607 246.744 60.0686 256.954C59.8766 267.163 60.4399 281.293 61.3232 288.338C62.2066 295.384 64.1653 306.631 65.6632 313.317C67.161 320.004 70.144 330.675 72.2947 337.016C74.4327 343.357 78.747 354.015 81.8836 360.714C85.0073 367.414 90.2306 377.2 93.4951 382.491C96.7469 387.769 103.481 397.555 108.474 404.242C113.454 410.916 123.58 422.445 130.98 429.862C138.38 437.266 150.183 447.706 157.224 453.061C164.253 458.402 176.402 466.473 184.199 470.995C191.995 475.504 198.307 478.629 198.217 477.925C198.127 477.22 197.359 475.35 196.514 473.762C195.669 472.173 194.978 469.15 194.978 467.036C194.978 464.923 195.554 462.04 196.258 460.631C196.962 459.222 199.408 456.929 201.699 455.546C203.991 454.162 207.729 453.009 210.021 452.984C212.312 452.958 218.214 454.675 223.143 456.788C228.072 458.902 233.538 460.631 235.305 460.631C237.379 460.631 239.863 459.056 242.346 456.148C244.459 453.676 246.187 450.793 246.187 449.743C246.187 448.693 244.919 445.951 243.37 443.658C241.821 441.365 240.477 437.484 240.388 435.012C240.285 432.142 241.181 429.426 242.884 427.441C244.356 425.75 248.427 423.124 251.948 421.612C255.468 420.088 259.578 417.155 261.089 415.079C262.599 413.004 263.969 410.16 264.123 408.751C264.276 407.342 264.366 405.036 264.315 403.627C264.251 402.218 262.164 398.76 259.655 395.941C257.158 393.123 255.11 390.382 255.123 389.857C255.136 389.331 256.979 385.002 263.291 371.603L263.38 348.276C263.457 327.652 263.739 324.667 265.761 322.656C267.592 320.811 270.921 320.235 282.827 319.722C297.562 319.082 297.626 319.069 301.339 314.919C303.4 312.626 305.077 309.603 305.077 308.194C305.077 306.772 305.935 305.632 306.997 305.632C308.047 305.632 309.43 306.925 310.07 308.514C310.697 310.102 313.053 313.125 315.28 315.239C319.083 318.826 320.235 319.146 332.384 319.966C341.768 320.593 345.942 321.413 347.324 322.886C348.771 324.424 349.398 329.33 350.525 360.24L355.991 366.568C359 370.04 361.791 374.613 362.2 376.727C362.61 378.84 362.533 382.581 362.034 385.053C361.535 387.525 359.742 391.548 358.065 394.02C356.375 396.492 354.993 399.797 355.006 401.386C355.006 402.974 356.017 405.792 357.246 407.662C358.475 409.545 362.661 413.183 366.528 415.771C370.394 418.359 374.849 422.445 376.411 424.866C378.024 427.351 379.266 431.322 379.291 434.051C379.317 437.689 378.318 439.995 375.169 443.53C372.877 446.105 368.845 449.564 366.207 451.216C363.57 452.869 361.394 454.944 361.368 455.828C361.355 456.712 362.648 458.633 364.249 460.106C365.862 461.579 370.919 464.154 375.489 465.819C381.468 467.997 385.526 470.585 389.892 474.991C394.18 479.321 396.216 482.536 396.779 485.931C397.227 488.57 397.227 493.181 395.973 501.623L400.133 500.995C402.425 500.662 410.349 498.433 417.736 496.051C425.123 493.681 434.93 490.158 439.5 488.237C444.07 486.315 453.006 482.152 459.343 478.962C465.681 475.785 476.332 469.675 483.027 465.371C489.723 461.08 498.07 455.264 501.591 452.446C505.111 449.628 512.46 443.402 517.913 438.598C525.953 431.54 527.95 430.31 528.475 432.129C528.885 433.564 526.67 437.356 522.292 442.698C518.541 447.271 511.192 455.571 505.969 461.118C500.746 466.678 491.003 475.811 484.308 481.422C477.612 487.033 465.232 496.256 456.783 501.918C448.334 507.58 433.355 516.162 423.497 520.979C413.64 525.783 404.678 529.741 403.59 529.766C402.502 529.792 401.055 530.33 400.389 530.958C399.724 531.598 392.401 534.34 369.075 541.974L372.237 545.177C373.978 546.932 375.771 550.109 376.232 552.222C376.692 554.336 376.436 558.076 375.681 560.549C374.913 563.021 372.98 566.339 371.367 567.94C369.766 569.541 366.143 571.194 363.327 571.629C360.51 572.065 356.619 572.052 354.685 571.604C352.752 571.168 350.013 569.644 348.604 568.235C346.095 565.724 346.044 563.956 346.031 476.964C346.031 391.637 345.929 387.935 343.445 379.929C342.024 375.356 340.155 370.808 339.297 369.848C338.427 368.887 336.135 367.298 334.202 366.325C331.411 364.929 329.824 364.865 326.521 366.043C324.229 366.863 320.901 368.733 319.108 370.206C316.625 372.256 315.908 373.934 316.1 377.367C316.241 379.839 318.404 386.167 320.913 391.458C323.423 396.736 325.817 403.371 326.252 406.189C326.7 409.174 326.316 413.427 325.33 416.373C324.28 419.512 322.181 422.317 319.799 423.764C317.073 425.417 313.36 426.109 306.997 426.134C300.955 426.147 297.101 425.519 295.155 424.187C293.568 423.098 291.699 420.754 290.995 418.999C290.29 417.231 289.702 413.055 289.689 409.712C289.689 406.369 290.854 400.169 292.3 395.941C293.747 391.714 295.693 387.103 296.628 385.693C297.6 384.22 298.087 380.967 297.793 378.007C297.498 375.189 296.423 371.59 295.411 370.001C294.272 368.221 292.275 367.119 290.226 367.119C288.178 367.119 285.285 368.72 282.724 371.282C279.844 374.165 278.103 377.521 277.091 382.171C276.067 386.91 275.632 420.831 275.632 605.383L272.495 608.586C270.767 610.341 268.309 611.852 267.054 611.929C265.787 612.019 262.74 612.019 260.269 611.955C257.798 611.891 254.496 610.968 252.908 609.892C251.321 608.816 248.837 606.075 247.39 603.782C245.24 600.4 244.83 598.069 245.24 591.292C245.585 585.323 246.917 580.43 249.912 573.999C252.217 569.067 255.366 563.585 256.928 561.83C258.72 559.806 259.744 557.026 259.693 554.285C259.642 550.416 259.207 549.904 255.789 549.571C253.676 549.366 249.067 548.84 245.547 548.392C242.026 547.956 232.514 546.125 224.423 544.318C216.332 542.525 201.93 538.464 192.418 535.3C182.906 532.136 167.645 525.911 158.492 521.466C149.338 517.033 136.946 510.308 130.967 506.529C124.989 502.75 115.771 496.384 110.484 492.374C105.209 488.378 99.0769 483.484 96.8621 481.512C93.1111 478.168 92.7654 477.131 91.8309 466.396C91.2676 460.055 90.7427 454.572 90.6531 454.226C90.5634 453.881 90.0257 450.998 89.4625 447.821C88.8992 444.645 86.9916 437.445 85.2377 431.809C83.4838 426.173 79.3999 416.373 76.161 410.032C72.858 403.589 67.4171 395.48 63.8069 391.637C60.2607 387.858 55.191 383.682 52.5537 382.35C49.9165 381.018 45.1669 379.929 41.9919 379.929C38.817 379.929 34.0674 380.941 31.4301 382.171C28.7929 383.4 26.2452 384.989 25.7843 385.693C25.3107 386.398 23.7232 384.963 22.2381 382.491C20.7531 380.019 19.1784 376.573 18.7431 374.805C18.3079 373.05 17.1685 370.014 16.2083 368.08C15.2481 366.146 12.4189 357.499 9.92243 348.865C7.426 340.231 4.18705 325.974 2.71479 317.16C0.666442 304.94 0.0263326 295.384 0.000728217 276.809C-0.0248762 263.423 0.628036 248.153 1.43457 242.863C2.24111 237.585 3.12446 232.103 3.40611 230.694C3.68776 229.285 4.35347 225.531 4.89117 222.367C5.41606 219.203 7.47721 211.12 9.46155 204.433C11.4459 197.747 14.2496 188.805 15.6962 184.578C17.1429 180.351 22.0077 169.398 26.5141 160.239C31.0076 151.08 38.2921 138.104 42.696 131.417C47.1 124.73 53.7315 115.507 57.4314 110.921C61.1312 106.335 65.868 100.571 71.7826 93.6276L76.4042 95.8693C78.9519 97.0991 82.3316 98.1239 83.9191 98.1239C85.5066 98.1367 89.9361 96.5483 93.7512 94.6012C97.579 92.654 102.636 88.7598 104.979 85.9417C107.334 83.1235 110.394 77.359 111.802 73.1317C113.198 68.9045 114.337 63.2809 114.337 60.6421C114.324 55.9793 114.67 55.6206 126.166 48.319C132.683 44.1814 142.912 38.1607 148.89 34.9454C154.869 31.7301 166.109 26.5165 173.855 23.3525C181.6 20.2012 194.568 15.6025 202.659 13.143C210.75 10.6963 219.11 8.39049 221.223 8.03181C223.335 7.66032 229.378 6.44338 234.665 5.32892Z" fill="white"/> 3 - <path fill-rule="evenodd" clip-rule="evenodd" d="M276.08 72.4912C277.143 72.4912 277.45 75.3863 277.117 82.4189C276.707 90.9759 277.015 92.8334 279.332 95.8693C280.881 97.8933 283.262 99.3792 284.914 99.3664C287.64 99.3536 287.743 99.6739 286.783 105.451C286.232 108.82 284.606 114.162 283.172 117.326C281.739 120.49 278.052 126.844 274.979 131.417C271.907 136.003 264.596 144.547 248.107 161.085L241.706 159.752C237.238 158.817 233.756 158.83 230.184 159.765C227.368 160.521 223.757 162.366 219.238 166.644L219.302 299.227L224.103 296.793C226.74 295.46 232.361 293.667 236.585 292.822C240.81 291.963 248.491 291.477 253.651 291.733C262.356 292.143 263.303 292.476 266.773 296.344C269.922 299.841 270.46 301.443 270.191 306.4C269.884 312.024 269.641 312.37 264.75 314.048C261.934 315.021 258.899 316.827 258.003 318.083C256.979 319.53 256.39 324.667 256.429 344.061L251.628 344.804C248.991 345.227 245.099 346.585 242.986 347.853C240.874 349.108 237.865 352.08 236.304 354.463C233.513 358.729 233.462 359.497 233.385 449.102L230.504 448.347C228.917 447.924 224.743 446.771 221.223 445.772C217.702 444.786 211.941 443.966 208.42 443.953C204.209 443.953 199.728 445.042 188.577 450.383L179.936 444.312C175.186 440.981 167.005 434.499 161.756 429.9C156.52 425.314 147.7 416.373 142.169 410.032C136.651 403.691 128.752 393.61 124.643 387.615C120.521 381.62 114.324 371.257 110.868 364.557C107.411 357.857 102.713 347.494 100.421 341.499C98.1167 335.504 94.5833 323.975 92.5478 315.879C90.5122 307.784 88.2462 295.525 87.5037 288.658C86.7612 281.792 86.1595 270.84 86.1595 264.32C86.1467 257.799 86.7868 246.13 87.5549 238.38C88.3359 230.63 90.6915 217.653 92.791 209.557C94.9034 201.461 98.6672 189.638 101.164 183.297C103.66 176.956 106.848 169.462 108.256 166.644C109.652 163.826 110.868 161.418 110.957 161.302C111.047 161.187 112.814 160.611 114.888 160.021C118.536 158.984 118.626 159.073 117.896 162.801C117.397 165.312 117.973 168.309 119.573 171.448C120.917 174.099 123.299 176.597 124.886 177.033C126.755 177.545 128.215 177.123 129.047 175.854C129.751 174.766 131.338 172.114 132.567 169.936C133.796 167.771 137.215 164.415 140.159 162.481C144.691 159.483 147.06 158.907 155.842 158.599C164.535 158.305 167.799 158.83 176.415 161.904C182.048 163.928 187.527 165.965 188.577 166.465C190.152 167.195 190.689 165.568 191.547 157.395C192.162 151.605 192.098 144.214 191.381 139.743C190.715 135.516 189.23 130.187 188.091 127.894C186.951 125.601 184.429 122.552 182.496 121.13C180.563 119.696 177.964 118.543 176.735 118.568C175.506 118.581 174.495 117.749 174.495 116.685C174.495 115.597 176.569 114.085 179.295 113.201C181.933 112.356 187.847 111.626 192.418 111.6C198.729 111.574 202.365 112.33 207.422 114.764C213.426 117.646 214.105 117.736 214.143 115.725C214.169 114.495 213.4 111.895 212.44 109.96C211.48 108.026 209.035 105.182 206.999 103.658C204.964 102.133 203.786 100.404 204.375 99.8148C204.964 99.2255 210.443 98.8028 216.537 98.854C224.666 98.9309 229.16 99.6482 233.385 101.518C236.547 102.928 240.874 105.797 242.986 107.885C245.099 109.973 247.813 113.675 249.016 116.109C250.22 118.543 251.653 123.27 252.217 126.639C252.767 129.995 253.51 132.749 253.868 132.762C254.214 132.762 256.813 131.263 259.629 129.418C262.446 127.561 265.608 124.909 266.67 123.526C268.412 121.233 268.296 120.349 265.505 114.354C263.521 110.114 262.202 104.49 261.818 98.7515C261.332 91.5268 261.716 88.7854 263.764 84.6607C265.173 81.8425 268.181 77.9483 270.447 76.014C272.713 74.0797 275.248 72.4912 276.08 72.4912ZM160.092 211.901C158.159 214.13 156.2 218.127 155.765 220.766C155.317 223.405 155.317 228.17 155.765 231.334C156.213 234.511 156.917 238.546 157.314 240.301C158.031 243.439 157.852 243.516 148.673 244.375C142.105 244.989 136.895 246.424 131.287 249.178C126.704 251.433 121.622 255.16 119.394 257.915C117.256 260.553 114.299 266.753 112.801 271.685C110.522 279.243 110.215 282.663 110.842 293.462C111.239 300.508 112.545 309.449 113.723 313.317C114.9 317.199 118.651 326.127 122.07 333.173C125.488 340.218 132.439 352.324 137.535 360.074C144.345 370.437 151.207 378.584 163.523 390.869C174.2 401.526 184.89 410.737 193.058 416.322C205.706 424.956 205.937 425.058 211.621 423.957L217.382 422.829C218.035 393.559 217.996 393.341 214.514 389.805C212.568 387.845 207.806 385.053 203.94 383.593C198.23 381.466 195.081 381.095 187.297 381.671C182.01 382.055 176.249 382.734 174.495 383.195C172.062 383.81 169.924 382.978 165.533 379.66C162.358 377.264 156.431 371.308 152.334 366.414C148.225 361.483 142.079 351.798 138.572 344.702C135.089 337.656 132.235 330.88 132.247 329.65C132.247 328.126 135.23 325.986 141.529 322.989C146.637 320.555 153.397 317.98 156.572 317.25C159.734 316.533 165.648 315.931 169.694 315.905C173.919 315.892 180.192 316.994 184.416 318.493C188.462 319.927 193.647 322.515 195.938 324.257L200.099 327.408C200.086 217.32 199.984 215.181 197.5 211.479C196.079 209.365 193.352 206.637 191.432 205.407C189.179 203.959 185.428 203.178 180.896 203.191C176.889 203.204 171.653 204.203 168.734 205.522C165.917 206.79 162.025 209.66 160.092 211.901ZM328.351 78.2557L332.397 82.8929C334.624 85.4421 337.531 90.6301 338.862 94.4218C340.577 99.2639 341.051 102.928 340.462 106.758C340.014 109.755 338.708 114.072 337.569 116.365C336.43 118.658 334.432 121.681 333.114 123.09C330.771 125.601 330.822 125.78 335.905 132.698C338.76 136.579 341.704 141.767 342.447 144.227C343.202 146.763 343.381 150.939 342.856 153.834C342.255 157.088 340.385 160.47 337.71 163.121C334.97 165.824 332.218 167.297 329.849 167.323C327.839 167.336 324.203 166.042 321.771 164.441C319.3 162.814 316.829 159.816 316.176 157.677C315.293 154.731 315.728 151.746 318.046 144.867C320.734 136.925 321.08 133.543 321.105 115.404C321.118 98.047 321.464 94.4218 323.359 91.7061C324.575 89.9511 325.637 87.8247 325.701 86.9921C325.765 86.1466 326.393 83.8408 327.084 81.8681L328.351 78.2557ZM464.362 85.3011C465.911 85.3011 472.645 90.297 480.467 97.2656C487.867 103.85 497.724 113.79 502.384 119.363C507.044 124.935 514.175 134.389 518.234 140.384C522.292 146.366 528.616 157.318 532.29 164.723C535.965 172.114 540.484 182.208 542.34 187.14C544.184 192.072 547.128 201.577 548.895 208.276C550.649 214.963 552.966 227.209 554.041 235.497C555.117 243.772 556 256.313 556 263.359C556 270.404 555.117 282.932 554.041 291.22C552.966 299.496 550.649 311.742 548.895 318.441C547.128 325.128 544.196 334.646 542.353 339.578C540.509 344.51 535.657 355.167 531.561 363.276C527.477 371.372 521.076 382.401 517.337 387.781C513.612 393.162 506.52 402.321 501.591 408.136C496.662 413.952 487.163 423.572 480.467 429.529C473.784 435.473 462.838 443.991 456.143 448.475C449.46 452.945 439.09 459.197 433.099 462.374C427.12 465.538 417.608 469.919 411.975 472.096C406.342 474.274 401.67 475.901 401.58 475.709C401.49 475.516 400.236 473.057 398.815 470.239C397.381 467.421 394.577 463.565 392.567 461.669C390.57 459.773 387.357 457.608 385.411 456.865C383.478 456.109 380.456 455.507 378.69 455.507C376.705 455.507 375.489 454.777 375.489 453.586C375.489 452.523 376.001 450.358 376.628 448.782C377.473 446.643 380.533 444.939 388.47 442.172C394.359 440.135 405.51 435.345 413.256 431.54C421.001 427.723 431.371 421.843 445.261 412.3L445.607 369.527C445.811 342.716 445.453 325.564 444.646 323.565C443.93 321.798 441.612 319.351 439.5 318.121C437.388 316.879 433.073 315.879 429.898 315.879C425.853 315.879 423.382 316.635 421.577 318.441C419.426 320.593 419.029 322.681 419.055 331.572C419.081 337.374 418.786 342.422 418.402 342.78C418.031 343.126 414.126 341.973 409.735 340.218C403.18 337.605 399.532 337.029 389.495 337.016C378.101 337.016 376.616 337.323 368.025 341.499C362.943 343.959 358.501 345.688 358.142 345.342C357.784 344.984 357.515 339.936 357.528 334.134C357.566 324.705 357.22 323.143 354.365 319.722C352.612 317.609 348.848 315.149 346.018 314.278C341.794 312.959 340.872 312.088 340.885 309.475C340.885 307.707 342.626 303.531 344.751 300.187C346.876 296.831 350.614 292.796 357.54 288.338L357.592 268.483C357.643 249.268 357.771 248.371 361.343 240.941C363.378 236.714 366.195 229.797 367.603 225.57C369.011 221.342 371.072 213.413 372.186 207.956C373.3 202.486 374.209 192.84 374.209 186.499C374.209 180.159 373.3 170.782 372.186 165.683C371.072 160.572 367.859 151.785 365.042 146.148C360.152 136.323 359.998 135.682 361.56 130.776C362.456 127.958 364.71 123.923 366.579 121.809C368.448 119.696 373.095 116.557 376.897 114.841C382.902 112.125 385.667 111.715 397.893 111.754C409.607 111.779 413.268 112.292 419.657 114.802C424.073 116.545 429.386 119.888 432.139 122.693C434.789 125.371 438.079 130.021 439.474 133.018C441.305 136.938 442.009 141.229 442.035 148.39C442.06 157.293 442.291 158.228 444.301 157.485C445.543 157.037 449.998 155.371 454.223 153.796C458.447 152.207 466.09 150.273 471.185 149.492C477.638 148.492 483.015 148.454 488.788 149.351C493.372 150.055 499.273 151.413 501.911 152.374C504.561 153.335 507.864 154.616 509.272 155.23C511.333 156.114 510.629 154.078 505.662 144.829C502.256 138.501 496.214 128.752 492.219 123.154C488.225 117.556 479.34 107.18 472.491 100.097C465.642 93.0127 460.406 86.7871 460.867 86.2619C461.315 85.7239 462.89 85.3011 464.362 85.3011ZM382.044 202.192C380.38 203.767 378.216 206.944 377.243 209.237C375.912 212.401 375.489 221.406 375.502 247.026V280.652C407.571 279.756 412.513 280.114 420.937 282.228C426.57 283.624 433.777 286.404 436.94 288.402C440.115 290.388 444.058 293.501 445.722 295.294C447.373 297.1 449.819 300.738 451.163 303.39C452.737 306.528 453.608 310.96 453.634 316.2L453.685 324.206L462.467 320.363C462.557 252.265 462.339 248.307 460.316 245.489C459.075 243.772 455.759 241.339 452.942 240.07C449.319 238.456 444.557 237.777 436.62 237.765L425.418 237.739V208.276C417.787 200.36 413.716 197.721 410.695 196.888C407.879 196.107 403.27 195.492 400.453 195.518C397.637 195.556 393.028 196.414 390.212 197.439C387.395 198.464 383.721 200.603 382.044 202.192ZM482.042 199.745L479.123 202.512C479.187 310.128 479.315 313.266 481.427 312.472C482.669 311.998 487.7 311.383 492.629 311.101C499.427 310.704 503.447 311.229 509.272 313.241C513.497 314.714 517.248 315.918 517.593 315.931C517.952 315.943 520.103 309.731 522.381 302.147C524.66 294.551 527.4 282.42 528.462 275.208C529.525 267.983 530.396 259.772 530.396 256.954C530.396 253.034 529.717 251.394 527.515 249.998C525.94 248.986 522.484 247.833 519.834 247.436L515.033 246.706C514.918 217.794 514.252 208.379 513.369 205.83C512.524 203.434 510.207 200.257 508.209 198.784C505.675 196.901 502.397 196.03 497.328 195.863C493.333 195.735 488.916 195.927 487.508 196.312C486.1 196.683 483.642 198.233 482.042 199.745ZM466.692 379.762C465.796 380.903 465.053 385.014 465.053 388.896L465.04 395.941C470.251 390.971 474.476 386.219 477.779 382.171L483.783 374.805C475.756 374.856 472.274 375.51 470.865 376.278C469.457 377.047 467.575 378.622 466.692 379.762ZM239.44 212.76C239.722 215.578 239.722 220.471 239.44 223.648C239.171 226.812 238.954 224.506 238.954 218.524C238.954 212.529 239.171 209.942 239.44 212.76Z" fill="white" fill-opacity="0.3"/> 4 - <path d="M292.416 108.359C295.002 98.9821 295.399 94.7805 295.283 78.1532C295.155 61.2826 295.399 58.8231 297.165 58.8231C298.561 58.8231 300.532 62.3586 303.336 69.8268C305.602 75.8731 308.956 86.0057 310.787 92.3466C312.618 98.6875 314.295 107.334 314.512 111.561C314.768 116.391 314.051 122.104 312.592 126.933C311.312 131.161 309.647 137.783 308.905 141.665C307.868 147.058 307.97 150.811 309.34 157.677C310.313 162.609 312.208 168.245 313.539 170.192C315.293 172.754 317.738 174.138 322.36 175.163C325.881 175.944 331.065 176.251 333.882 175.854C337.39 175.355 340.104 173.894 342.523 171.204C344.457 169.052 346.684 164.838 347.452 161.84C348.233 158.843 348.668 152.515 348.412 147.762C348.092 141.703 348.438 138.936 349.565 138.475C350.576 138.065 352.804 141.268 355.582 147.109C358.014 152.22 361.176 161.29 362.623 167.285C364.313 174.368 365.235 182.528 365.235 190.663C365.247 197.67 364.326 207.226 363.148 212.439C361.983 217.551 359.474 225.185 357.566 229.413C355.658 233.64 351.805 240.852 348.989 245.425C346.185 249.998 342.101 257.787 339.925 262.718C337.748 267.65 335.06 275.144 333.959 279.371C332.858 283.598 331.949 291.233 331.949 296.344C331.962 304.325 331.642 305.632 329.721 305.67C328.492 305.683 325.176 304.082 322.36 302.096C319.185 299.854 315.895 295.819 313.706 291.489C311.76 287.646 310.185 283.342 310.224 281.933C310.249 280.37 312.246 278.116 315.332 276.169C318.122 274.414 320.99 271.672 321.707 270.084C322.411 268.496 323 264.755 322.987 261.758C322.987 258.44 321.976 254.815 320.401 252.47C318.98 250.357 316.253 247.628 314.333 246.399C312.413 245.169 308.534 244.144 305.717 244.118C302.465 244.093 298.958 245.143 296.115 247.013C293.645 248.64 290.598 251.971 289.33 254.418C287.756 257.466 287.231 260.502 287.679 263.999C288.037 266.818 289.394 270.558 290.7 272.326C292.006 274.081 294.95 276.399 301.403 279.371L300.647 287.057C300.238 291.284 298.484 297.907 296.743 301.789C295.002 305.67 291.852 310.563 289.753 312.677C286.821 315.623 285.797 316.072 285.362 314.598C285.054 313.548 284.453 309.795 284.005 306.272C283.569 302.749 281.79 297.126 280.062 293.782C278.333 290.439 275.043 286.122 272.751 284.201C270.46 282.266 264.942 277.232 260.487 272.992C254.88 267.65 251.039 262.513 247.992 256.313C245.585 251.382 242.718 243.888 241.629 239.661C240.336 234.575 239.735 226.992 239.888 217.243C240.029 207.367 240.9 199.655 242.5 193.865C243.831 189.113 246.353 182.336 248.107 178.813C249.874 175.291 255.776 167.643 261.23 161.828C266.683 155.999 273.238 148.07 275.798 144.214C278.359 140.345 282.456 133.146 284.926 128.214C287.384 123.283 290.751 114.341 292.416 108.359Z" fill="white"/> 5 - </svg>
+4 -6
app/svelte.config.js
··· 10 10 // Consult https://svelte.dev/docs/kit/integrations 11 11 // for more information about preprocessors 12 12 preprocess: [vitePreprocess()], 13 + vitePlugin: { 14 + inspector: true, 15 + }, 13 16 compilerOptions: { 14 17 preserveComments: false, 15 18 experimental: { 16 - // required by svelte-crumbs 17 19 async: true, 18 20 }, 21 + hmr: true, 19 22 }, 20 23 kit: { 21 24 adapter: adapter({ 22 25 fallback: 'plaintext', 23 - routes: { 24 - include: ['/*'], 25 - exclude: ['<all>'], 26 - }, 27 26 }), 28 27 alias: { 29 28 $icons: 'src/lib/ui-icons', ··· 33 32 $story: '.storybook/', 34 33 }, 35 34 experimental: { 36 - // required by svelte-crumbs 37 35 remoteFunctions: true, 38 36 }, 39 37 },
-9
packages/icons/assets/Path-Abundance-v2.svg
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <svg width="541" height="612" fill="none" version="1.1" viewBox="0 0 612 692.32" xmlns="http://www.w3.org/2000/svg"> 3 - <g fill="#fff"> 4 - <path d="m441.42 114.35c-0.824-4.271-1.51-10.65-1.51-14.182v-6.422l5.088 0.01c2.796 0 9.181 1.263 14.195 2.794 5.013 1.53 11.269 3.885 13.926 5.245 2.657 1.359 6.31 4.067 8.12 6.036 1.811 1.97 5.025 5.983 7.146 8.927 2.11 2.943 5.378 8.723 7.252 12.844 2.089 4.581 3.643 9.986 3.985 13.914 0.418 4.71 0.097 7.343-1.189 9.901-0.953 1.916-3.074 4.003-4.692 4.645-1.618 0.643-5.11 0.867-7.767 0.504-2.656-0.364-7.477-1.884-10.712-3.372-3.235-1.499-8.549-4.71-11.784-7.15s-8.206-6.625-11.045-9.301c-3.492-3.297-5.838-6.743-7.317-10.746-1.199-3.244-2.86-9.377-3.696-13.647z" fill-opacity=".3"/> 5 - <path d="m504.78 144.05c2.389-4.999 5.753-10.907 7.467-13.112 1.725-2.205 3.631-3.853 4.231-3.66 0.611 0.192 3.611 5.126 6.674 10.97 3.064 5.834 7.081 14.707 8.913 19.716s3.621 12.234 3.964 16.055c0.364 4.068 0.086 9.184-0.675 12.309-0.707 2.944-3.921 10.65-7.124 17.126-3.214 6.475-6.438 12.566-7.177 13.55-1.222 1.627-2.357 1.542-14.72-1.188-9.341-2.065-15.811-4.217-21.403-7.128-6.182-3.211-9.203-5.641-13.156-10.586-2.828-3.532-7.016-10.029-9.298-14.45-2.293-4.409-5.656-11.763-7.478-16.322-1.81-4.56-3.299-9.259-3.299-10.436 0-1.734 0.718-2.141 3.749-2.141 2.068 0 7.724 1.006 12.588 2.237 4.863 1.242 10.284 2.986 12.051 3.896 1.768 0.91 5.314 3.158 7.885 4.988 2.742 1.959 7.263 7.193 10.98 12.694 3.471 5.149 6.299 9.965 6.278 10.704-0.011 0.738 0.204 1.102 0.493 0.802 0.289-0.299-0.771-4.142-2.357-8.562-2.346-6.551-2.882-9.901-2.903-18.196-0.021-9.697 0.182-10.597 4.317-19.266zm-245.88 4.281c0.589-3.832 1.339-8.284 1.671-9.901 0.322-1.616 1.157-2.943 1.854-2.932 0.696 0 6.567 2.183 13.048 4.838 6.481 2.665 15.158 6.946 19.282 9.515 4.125 2.569 9.31 6.647 11.517 9.066 2.206 2.419 5.881 8.134 8.152 12.694s5.528 12.384 7.231 17.393c2.56 7.514 3.096 10.864 3.096 19.266 0 9.152-0.3 10.682-2.946 15.253-2.035 3.521-3.857 5.298-5.892 5.758-1.618 0.375-4.874 0.396-7.231 0.043-2.357-0.342-7.413-2.183-11.248-4.067-5.067-2.505-9.749-6.24-17.162-13.69-5.603-5.641-12.009-12.898-14.237-16.141-2.732-3.981-4.724-8.659-6.139-14.449-1.178-4.849-2.078-12.277-2.078-17.126 0-4.709 0.482-11.699 1.082-15.52zm73.982 42.011c0.632-4.56 1.639-8.884 2.217-9.601 0.825-1.027 1.671-0.995 3.921 0.139 1.575 0.803 5.281 3.35 8.227 5.662s7.703 7.546 10.574 11.624c2.86 4.089 4.971 8.156 4.681 9.034-0.321 0.963-6.159 3.425-14.59 6.154-7.724 2.505-14.537 4.314-15.127 4.014-0.589-0.299-1.071-4.624-1.071-9.633s0.525-12.833 1.168-17.393zm201.76 16.323c1.318-3.532 4.167-9.194 6.321-12.577 2.153-3.382 4.274-6.154 4.724-6.165 0.45 0 3.578 4.934 6.963 10.971 3.374 6.037 8.527 16.28 11.43 22.756 2.914 6.475 6.599 16.355 8.206 21.942 2.603 9.119 2.85 11.388 2.357 21.942-0.289 6.475-1.339 15.145-2.325 19.266-0.974 4.121-2.121 8.113-2.549 8.873-0.568 0.996-4.007-0.578-24.864-13.154l-4.992-10.704c-2.753-5.887-6.149-14.075-7.553-18.196-1.403-4.121-2.839-10.382-3.192-13.914-0.407-4.196 0.021-9.58 1.221-15.52 1.018-5.009 2.925-11.988 4.253-15.52zm-63.922 20.336c-2.796-6.475-5.089-12.373-5.089-13.111-0.011-0.899 1.821-1.338 5.613-1.349 3.096 0 8.399 0.728 11.784 1.606 3.386 0.888 8.688 2.889 11.784 4.441s7.264 4.089 9.267 5.62c2.003 1.541 5.913 6.165 8.677 10.286 2.775 4.121 8.731 14.353 13.23 22.745 4.51 8.391 8.195 15.98 8.195 16.858 0 1.295-0.985 1.477-5.088 0.931-2.796-0.364-9.181-1.831-14.194-3.243-5.003-1.413-11.999-3.95-15.534-5.63-3.76-1.788-8.131-4.999-10.53-7.728-2.261-2.569-6.117-8.039-8.57-12.159-2.454-4.121-6.749-12.791-9.545-19.267zm-213.46 4.014c-0.878-1.916-1.607-5.405-1.607-7.76 0-3.949 0.225-4.281 2.946-4.303 1.618 0 5.839 0.974 9.374 2.173s10.177 3.982 14.762 6.176c4.585 2.184 8.163 4.463 7.949 5.052-0.215 0.589-6.374 2.687-26.996 8.242l-2.411-3.051c-1.317-1.68-3.128-4.613-4.017-6.529zm212.65 93.388c0.59 0.289 1.629-1.146 2.314-3.211 0.686-2.066 1.65-3.747 2.143-3.747s5.346 3.736 10.788 8.296c5.431 4.559 12.458 10.949 15.608 14.182 3.781 3.896 6.46 7.877 7.895 11.774 1.693 4.602 2.068 7.631 1.693 13.914-0.322 5.609-1.821 12.063-4.95 21.407-2.463 7.353-7.123 18.795-10.348 25.421-3.224 6.625-6.342 12.041-6.931 12.041s-3.707-3.736-6.931-8.295c-3.214-4.56-7.992-13.358-10.606-19.534s-5.592-14.129-6.609-17.661c-1.479-5.116-1.736-8.926-1.265-18.731 0.343-7.15 1.49-15.67 2.743-20.336 1.189-4.41 1.96-8.392 1.703-8.831-0.257-0.438 0.622-1.327 1.95-1.958 1.918-0.921 2.132-1.424 1.05-2.409-0.739-0.685-1.35-1.616-1.339-2.055 0.01-0.439 0.503-0.556 1.092-0.267zm-93.039 15.873c1.382-1.274 5.41-4.271 8.945-6.658 3.535-2.386 7.274-4.356 8.302-4.367 1.639-0.032 1.875 1.092 1.864 8.799 0 4.859-0.482 10.639-1.071 12.844-0.621 2.355-3.407 6.561-6.706 10.168-3.107 3.382-7.81 9.869-10.445 14.407-2.646 4.549-5.281 8.113-5.87 7.931-0.665-0.203-1.04-6.871-0.997-17.35 0.054-13.401 0.429-17.714 1.768-20.24 0.932-1.766 2.839-4.26 4.21-5.534zm-60.152 9.28c0-0.589 3.493-3.96 7.767-7.493 6.363-5.255 8.302-6.315 10.713-5.886 1.617 0.299 6.438 2.13 10.712 4.088 4.275 1.959 9.213 5.095 10.981 6.968 1.767 1.873 3.781 4.967 4.467 6.882 0.696 1.906 1.296 8.167 1.339 13.904 0.064 7.685-0.268 10.436-1.253 10.425-0.739 0-4.467-3.071-8.303-6.818-4.445-4.335-10.069-8.402-15.533-11.228-4.713-2.44-11.345-5.63-14.73-7.107-3.385-1.466-6.16-3.146-6.16-3.735zm233 0.942c4.713-2.194 11.227-4.71 14.462-5.577 3.235-0.877 7.702-1.637 9.909-1.691 3.899-0.096 4.017 0.021 4.017 3.65 0 2.066-1.982 10.607-4.392 18.999-2.421 8.391-6.17 19.341-8.324 24.35-2.164 5.009-5.335 11.506-7.049 14.45-1.724 2.943-5.399 7.76-8.163 10.703-3.567 3.789-7.809 6.679-14.537 9.901-5.313 2.547-15.147 5.972-22.346 7.781-7.071 1.777-13.937 3.222-15.266 3.211-2.057-0.021-2.325-0.449-1.8-2.965 0.343-1.616 3.289-9.686 6.546-17.928s8.956-21.246 12.673-28.899 8.367-15.991 10.338-18.528 6.234-6.604 9.47-9.044c3.235-2.441 9.748-6.219 14.462-8.413zm-231.66 29.563c-0.342-8.242-0.31-15.831 0.065-16.858 0.375-1.028 1.425-1.873 2.324-1.873 0.89 0 6.085 3.007 11.538 6.689 5.453 3.672 12.984 9.58 16.733 13.112 3.75 3.532 8.088 8.584 9.641 11.239 2.754 4.698 2.818 5.244 2.764 23.012-0.042 12.341-0.653 21.471-1.907 28.364-1.017 5.598-2.078 11.014-2.356 12.042-0.279 1.027-0.868 1.873-1.307 1.873-0.439-0.011-3.3-4.945-6.364-10.971-3.053-6.037-7.905-14.578-10.776-18.999-2.871-4.41-7.381-10.436-10.028-13.379-3.085-3.447-5.677-7.835-7.252-12.309-1.939-5.459-2.592-10.179-3.075-21.942zm64.609 7.642c3.503-3.447 11.162-9.59 17.022-13.647s11.28-7.375 12.052-7.375c0.76 0 1.542 0.6 1.735 1.338 0.182 0.739-0.311 6.636-1.103 13.112-0.782 6.476-2.646 16.837-4.135 23.012-1.5 6.176-3.578 13.166-4.639 15.52-1.05 2.355-4.039 6.508-6.631 9.227-2.603 2.718-10.509 10.286-17.58 16.815-7.07 6.54-13.337 11.891-13.926 11.913-0.621 0.011-0.943-2.355-0.771-5.587 0.16-3.083 0.792-10.907 1.392-17.383 0.6-6.475 1.821-15.381 2.711-19.801 0.889-4.41 2.946-10.918 4.563-14.45 1.864-4.046 5.314-8.745 9.31-12.694zm60.644 24.468c1.864-4.71 5.72-13.262 8.57-18.999 2.86-5.737 5.667-10.435 6.256-10.435 0.579 0 2.25 1.808 3.707 4.013s4.424 8.349 6.588 13.647 4.874 13.005 6.031 17.126 2.357 12.555 2.668 18.731c0.503 9.772 0.257 12.212-1.864 18.731-1.339 4.121-5.689 14.471-9.663 23.012-3.985 8.542-7.531 16.601-7.895 17.928-0.365 1.328-1.254 2.419-1.993 2.441-0.739 0.011-4.317-7.097-7.949-15.788-3.631-8.702-7.841-18.709-9.352-22.242-2.099-4.923-2.742-8.284-2.774-14.449-0.022-4.635 0.878-11.646 2.131-16.591 1.179-4.709 3.675-12.416 5.539-17.125zm-126.44 28.899c0.225-11.185 0.815-20.946 1.318-21.706 0.686-1.039 1.703-0.675 4.274 1.487 1.854 1.574 5.732 5.556 8.635 8.863s6.802 8.413 8.666 11.356c1.875 2.944 4.328 7.76 5.442 10.704 1.629 4.27 2.046 8.166 2.046 19.266 0 13.347-0.182 14.514-4.552 28.632-2.507 8.091-6.482 19.17-8.849 24.618-2.357 5.448-7.606 15.445-11.655 22.209-4.05 6.765-8.024 12.887-8.828 13.583-1.157 1.006-2.421 0.674-6.009-1.606-2.507-1.584-4.553-3.243-4.553-3.682-0.011-0.438 3.331-6.464 7.413-13.379 4.081-6.914 8.902-15.713 10.702-19.534 1.799-3.821 3.996-10.329 4.874-14.449 0.878-4.121 1.628-8.938 1.66-10.704 0.022-1.894-0.857-4.089-2.153-5.352-1.221-1.177-3.16-4.431-4.328-7.224-1.157-2.794-2.646-9.055-3.31-13.915-0.675-4.998-1.018-17.65-0.793-29.167zm61.534 15.124c4.671-4.056 13.284-10.928 19.143-15.295 5.871-4.356 11.067-7.546 11.559-7.086 0.493 0.461-0.128 4.924-1.371 9.933-1.253 5.009-3.985 13.668-6.074 19.266-2.078 5.598-5.249 13.059-7.027 16.591-1.8 3.575-6.139 9.312-9.781 12.94-4.649 4.645-8.227 7.139-12.427 8.681-5.731 2.098-6.031 2.419-11.023 11.677-2.818 5.234-6.417 12.405-8.002 15.938-1.586 3.532-4.896 10.039-7.36 14.449-2.453 4.421-7.413 11.999-17.537 25.688l-4.842-2.408c-2.657-1.327-4.831-2.772-4.82-3.211 0.01-0.439 2.967-5.255 6.577-10.703 3.6-5.448 8.013-12.791 9.802-16.323s5.614-12.202 8.495-19.266a3062.3 3062.3 0 0 0 10.767-26.759c3.749-9.462 7.102-15.969 10.476-20.336 2.722-3.533 8.774-9.73 13.445-13.776zm134.36-15.691c2.657-0.739 10.359-2.194 17.14-3.232 6.781-1.039 12.92-1.938 13.659-1.991 0.739-0.054 1.339 0.867 1.339 2.044s-2.839 7.803-6.31 14.717c-3.471 6.915-9.373 16.644-13.123 21.6-3.749 4.966-9.223 10.832-12.169 13.037-3.771 2.815-8.367 4.838-15.534 6.85-5.602 1.573-15.962 4.72-23.032 6.989-7.07 2.28-13.219 3.918-13.659 3.65-0.439-0.267 2.904-8.07 7.446-17.339 4.531-9.27 9.952-19.738 12.052-23.27 2.088-3.521 5.731-8.263 8.088-10.532 2.356-2.269 7.659-5.716 11.784-7.664 4.124-1.937 9.662-4.131 12.319-4.859zm-91.09 29.467c0.707-2.944 1.479-5.952 1.704-6.69 0.235-0.739 0.91-1.338 1.521-1.338 0.6 0 3.492 3.254 6.427 7.225 2.936 3.971 6.599 10.361 8.142 14.182 1.768 4.378 3.032 9.943 3.385 14.985 0.482 6.796 0.225 8.68-1.692 12.309-1.243 2.354-4.071 6.293-6.299 8.744-2.229 2.452-12.973 10.843-23.868 18.646-10.906 7.803-29.096 20.368-61.062 41.647l-5.357-2.141c-2.946-1.177-5.602-2.14-5.892-2.14-0.289 0-0.546-0.364-0.567-0.803-0.022-0.439 7.809-5.834 17.408-11.977 9.587-6.133 22.014-14.268 27.617-18.068s16.84-11.538 24.971-17.2c12.384-8.606 14.698-10.639 14.173-12.427-0.354-1.177-1.157-4.795-1.8-8.028-0.653-3.328-0.932-11.474-0.632-18.731 0.289-7.064 1.104-15.252 1.821-18.195zm43.419 44.108c5.892-1.691 13.369-3.467 16.604-3.928 3.236-0.471 9.385-0.909 13.659-0.984 5.56-0.097 7.767 0.246 7.777 1.209 0.011 0.739-1.36 3.5-3.031 6.155-1.682 2.654-5.185 6.925-7.788 9.504-2.604 2.58-6.653 6.005-9.01 7.621-2.357 1.606-7.659 4.624-11.784 6.711-4.124 2.077-10.391 4.496-13.926 5.384-3.535 0.878-11.731 1.841-29.996 2.644l-11.248 8.381c-6.181 4.613-17.279 12.651-38.03 27.358l-6.427-0.728c-3.536-0.396-7.156-1.381-8.035-2.195-0.889-0.813-1.36-1.648-1.071-1.862s10.862-7.332 23.493-15.82c12.63-8.477 29.984-20.593 38.565-26.919 8.581-6.315 18.737-13.272 22.572-15.466 3.824-2.184 11.784-5.363 17.676-7.065zm-196.58 92.157c7.36-1.809 15.32-4.153 17.676-5.212 2.357-1.06 4.767-1.938 5.357-1.959 0.589-0.022 3.106 1.263 5.581 2.858 2.485 1.605 4.553 3.393 4.585 3.981 0.043 0.589-3.674 2.847-8.26 5.01-4.585 2.172-12.426 5.169-17.44 6.668-5.013 1.498-14.655 3.671-21.425 4.827-6.77 1.145-20.279 2.869-29.995 3.832-9.717 0.953-27.725 2.066-40.012 2.472-13.027 0.429-22.561 1.188-22.893 1.809-0.3 0.589-0.257 2.152 0.107 3.479 0.664 2.397 0.718 2.408 17.537 1.809 9.277-0.332 26.995-1.574 39.369-2.762 12.373-1.177 29.492-3.328 38.03-4.773 8.548-1.445 20.354-4.239 26.246-6.208 5.891-1.981 15.286-5.855 31.066-13.647l6.739 2.483c4.627 1.712 6.641 2.997 6.427 4.099-0.171 0.889-7.542 5.234-16.38 9.676-10.873 5.459-19.529 8.98-26.781 10.896-5.892 1.563-15.534 3.575-21.426 4.496-5.891 0.91-19.389 2.676-29.995 3.907-13.219 1.552-28.881 2.44-80.345 3.382l-2.378-4.132c-1.736-3.04-2.378-5.929-2.41-10.832-0.022-3.682 0.61-8.252 2.838-13.646l26.15-0.739c15.619-0.439 32.62-1.584 42.219-2.858 8.838-1.167 20.654-2.911 26.246-3.875 5.592-0.974 16.197-3.243 23.567-5.041z" fill-opacity=".3"/> 6 - <path d="m247.08 45.76c3.246-1.445 10.231-3.96 15.533-5.587 6.953-2.13 12.106-2.976 18.48-3.05 4.863-0.065 9.802 0.374 10.98 0.963 1.554 0.78 1.993 1.798 1.607 3.746-0.289 1.466-1.778 5.448-3.299 8.83-1.522 3.382-4.875 10.49-7.456 15.788-2.571 5.298-7.51 13.968-10.959 19.266-3.45 5.298-9.62 13.1-13.702 17.34-4.092 4.238-11.527 10.414-16.54 13.721-5.014 3.318-12.48 7.621-16.605 9.58-4.124 1.959-12.084 5.095-17.676 6.99-5.592 1.883-13.316 4.099-17.14 4.912-3.824 0.814-7.809 1.477-8.838 1.488-1.028 0.011-1.864-0.578-1.853-1.317 0.011-0.738 1.767-6.154 3.899-12.041 2.143-5.887 5.292-13.829 7.006-17.66 1.725-3.832 4.907-10.565 7.081-14.964 2.175-4.41 6.171-11.389 8.892-15.52 2.71-4.132 7.531-9.837 10.713-12.684 3.17-2.836 9.866-7.856 14.879-11.163 5.014-3.297 11.752-7.182 14.998-8.638zm-117.57 68.063c3.685-4.848 13.658-15.809 22.175-24.34 11.955-11.987 15.737-15.21 16.605-14.128 0.621 0.77 1.403 5.105 1.746 9.622 0.353 4.528 0.728 15.692 0.846 24.822 0.118 9.14-0.321 19.234-0.996 22.477a149.26 149.26 0 0 1-5.089 18.731c-1.617 4.709-3.642 9.323-4.51 10.243-0.878 0.931-3.032 3.532-4.799 5.791-1.768 2.258-8.27 10.168-14.441 17.585a11012 11012 0 0 1-13.39 16.023c-1.19 1.392-3.686 4.282-5.55 6.423-3.256 3.735-3.492 3.81-6.192 2.269-2.303-1.317-2.796-2.366-2.753-5.887 0.032-2.355 0.536-7.653 1.114-11.774 0.579-4.121 1.36-9.419 1.736-11.774 0.364-2.355 0.771-13.186 0.9-24.083 0.128-10.885 0.482-20.764 0.792-21.942 0.311-1.177 1.586-4.185 2.84-6.69 1.242-2.504 5.28-8.52 8.966-13.368zm95.075 28.568c3.245-0.418 8.538-1.114 11.783-1.552 3.246-0.428 7.939-0.857 10.445-0.932 2.507-0.074 4.553 0.343 4.553 0.932 0 0.588-1.296 3.361-2.882 6.154-1.585 2.794-4.81 7.974-7.177 11.506s-4.671 6.904-5.131 7.493c-0.461 0.588-3.803 4.923-7.424 9.633-3.621 4.709-9.535 11.613-13.145 15.338-3.599 3.725-8.966 7.995-11.912 9.494-2.946 1.488-8.731 3.329-12.855 4.089-4.125 0.759-9.427 1.637-11.784 1.948-2.357 0.321-6.46 1.07-9.106 1.669-2.646 0.6-10.606 3.029-17.676 5.395-7.07 2.365-14.783 4.592-17.14 4.956-3.814 0.578-4.467 0.342-5.892-2.098-1.436-2.462-1.425-2.954 0.096-4.646 0.932-1.038 10.113-12.255 20.397-24.907 10.284-12.651 20.365-24.264 22.4-25.784 2.046-1.531 7.081-4.496 11.206-6.583 4.124-2.098 10.509-4.827 14.194-6.058 3.685-1.242 9.952-2.933 13.927-3.768 3.974-0.834 9.877-1.851 13.123-2.279zm-138.4 19.501a1021.9 1021.9 0 0 0 8.152-9.9c1.136-1.424 2.818-2.601 3.75-2.612 1.264-0.011 2.292 2.612 4.07 10.436 1.318 5.748 2.657 11.902 2.978 13.668a183.64 183.64 0 0 1 1.125 6.957c0.3 2.066 0.793 4.956 1.114 6.422 0.311 1.478 0.815 10.137 1.104 19.267 0.364 11.816 0.075 19.212-1.04 25.688-0.867 5.009-1.906 10.778-2.324 12.844-0.407 2.066-2.185 8.798-3.942 14.985-1.81 6.368-3.964 11.752-4.971 12.427-0.975 0.642-2.935 0.888-4.35 0.535-1.413-0.364-3.899-2.58-5.516-4.935-1.618-2.354-4.478-7.652-6.353-11.773a4278.3 4278.3 0 0 1-5.335-11.774c-1.06-2.355-2.924-7.889-4.146-12.309-1.22-4.41-2.753-12.116-3.406-17.126-0.665-5.009-0.879-11.024-0.504-13.379 0.386-2.355 1.382-6.69 2.207-9.633s3.707-9.205 6.406-13.914c2.69-4.71 7.638-11.86 10.98-15.874zm79.477 58.677c2.067-0.321 6.888-0.964 10.713-1.424 3.835-0.46 11.419-0.931 16.872-1.038 5.742-0.118 10.134 0.246 10.445 0.867 0.3 0.588-0.45 2.397-1.661 4.014-1.199 1.616-6.856 9.44-12.544 17.393-5.699 7.952-13.509 17.639-17.365 21.546-5.999 6.09-8.024 7.417-14.227 9.365-5.959 1.878-12.062 2.901-17.943 4.86-3.236 1.07-8.303 2.911-11.249 4.078-2.946 1.166-9.33 4.003-14.194 6.293-4.885 2.302-9.395 3.8-10.091 3.361-0.879-0.567-1.06-3.639-0.6-10.436 0.364-5.384 1.725-12.94 3.074-17.125 1.34-4.121 4.146-10.34 6.235-13.818 2.089-3.49 5.753-8.06 8.152-10.169 2.39-2.119 7.456-5.394 11.249-7.289 8.019-4.028 17.151-7.255 25.774-9.108a157.12 157.12 0 0 1 7.36-1.37zm191.76 2.055c2.656-0.375 5.013-0.857 5.249-1.081 0.235-0.225 5.785-0.225 12.319-0.011 6.546 0.214 13.702 0.931 15.909 1.595 2.656 0.792 4.017 1.83 4.017 3.072 0 1.027-2.293 5.961-5.089 10.96-3.278 5.865-7.938 11.999-13.123 17.265-4.413 4.484-10.691 9.825-13.926 11.848-3.235 2.034-8.785 4.699-12.32 5.93-3.535 1.22-9.32 3.061-12.855 4.099-3.535 1.028-12.094 3.725-19.015 5.984-6.92 2.269-13.069 4.121-13.659 4.121-0.589 0-1.799-1.199-2.678-2.676-1.532-2.548-1.392-2.976 2.871-8.831 2.464-3.382 4.757-6.39 5.1-6.689 0.332-0.3 2.035-2.462 3.76-4.817 1.735-2.355 3.449-4.517 3.813-4.816 0.354-0.3 4.243-5.77 8.624-12.181 4.382-6.401 9.652-13.101 11.72-14.899 2.067-1.798 6.16-4.378 9.106-5.737 2.945-1.349 7.52-2.762 10.177-3.136zm-306.73 21.503c2.1-7.064 4.52-13.947 5.377-15.285 0.857-1.348 2.004-2.183 2.54-1.873 0.546 0.311 1.81 4.303 2.806 8.863 0.996 4.559 1.875 8.53 1.96 8.83 0.086 0.3 0.525 1.98 0.975 3.746s1.693 5.62 2.753 8.563c1.061 2.943 5.346 12.341 9.513 20.872 4.178 8.53 8.153 18.174 8.828 21.407 0.792 3.81 0.996 11.731 0.589 22.477-0.343 9.119-1.125 23.569-1.746 32.11a7612.6 7612.6 0 0 0-1.49 20.872c-0.203 2.943-0.685 5.951-1.07 6.69-0.386 0.738-1.543 1.348-2.572 1.37-1.05 0.021-5.003-3.65-8.945-8.296-3.889-4.581-8.784-10.735-10.884-13.679-2.1-2.943-5.967-9.44-8.602-14.449-2.625-5.009-5.806-12.234-7.06-16.055-1.264-3.821-2.603-8.884-2.978-11.239-0.386-2.355-0.643-9.344-0.578-15.52 0.064-6.176 1.07-16.783 2.238-23.548 1.179-6.764 2.668-14.717 3.332-17.66 0.654-2.944 2.914-11.132 5.014-18.196zm361.68-6.754c4.243-3.125 9.16-6.09 10.927-6.583 1.768-0.492 7.928-0.824 13.691-0.738 7.251 0.115 15.17 1.947 21.929 4.495 3.974 1.499 9.277 3.907 11.784 5.352 2.667 1.531 4.542 3.404 4.521 4.496-0.011 1.027-2.786 4.463-6.16 7.631-3.364 3.179-8.538 7.61-11.484 9.869-17.493 13.41-36.769 13.789-57.581 13.796-26.203 0.011-28.742-0.149-29.652-1.862-0.547-1.028-0.911-2.687-0.804-3.693 0.107-0.995 5.014-5.191 10.906-9.322 5.892-4.121 13.744-9.805 17.461-12.63a1507.7 1507.7 0 0 1 14.462-10.811zm-133.43 7.375c3.096-1.22 6.953-2.516 8.57-2.869 4.848-1.058 9.818-2.424 14.666-3.275 2.978-0.535 6.749-1.07 8.367-1.199 1.617-0.128 3.192 0.246 3.481 0.835s-0.428 2.879-1.607 5.084c-4.767 8.841-6.624 18.119-10.894 27.026-1.832 3.821-5.507 9.848-8.153 13.38-2.656 3.532-6.684 7.749-8.956 9.365-2.271 1.616-8.355 5.191-13.508 7.942s-11.784 6.711-14.73 8.809c-2.946 2.087-10.295 8.509-16.337 14.268-6.042 5.748-11.107 10.361-11.784 10.361-0.439-0.043-1.135 0.556-1.542 1.338-0.568 1.123-1.211 0.963-2.946-0.707-1.811-1.766-2.1-2.997-1.586-6.957 0.343-2.654 1.811-9.633 3.267-15.52 1.457-5.887 3.139-12.384 3.728-14.45 1.484-5.107 2.449-9.702 4.339-14.717 1.264-3.382 3.364-7.835 4.671-9.901 1.296-2.065 4.713-5.822 7.595-8.359s5.721-4.988 6.31-5.427c0.589-0.449 3.235-2.183 5.892-3.864 2.657-1.68 7.231-4.377 10.177-5.994 2.946-1.616 7.884-3.938 10.98-5.169zm171.38 30.719c2.218-0.429 8.131-1.092 13.145-1.467 8.978-0.691 17.569-1.391 26.642-1.37 9.213 0.022 19.401 0.471 22.636 0.996 3.235 0.524 6.856 1.38 8.035 1.916 1.178 0.535 5.999 2.782 10.712 5.009 4.714 2.215 12.138 6.486 16.498 9.494 4.36 2.997 11.109 8.659 14.997 12.576 3.889 3.918 8.881 10.179 11.099 13.915 2.732 4.624 4.017 8.081 4.017 10.81-0.011 3.297-0.396 4.014-2.153 4.014-1.179 0-2.507 0.15-2.946 0.332s-5.871 0.696-12.052 1.156c-6.963 0.514-16.144 0.364-24.103-0.386-7.071-0.674-16.83-2.162-21.694-3.307-4.863-1.145-12.812-4.067-17.675-6.497-4.864-2.44-11.731-6.401-15.266-8.809s-9.802-7.321-13.926-10.917c-4.125-3.586-10.756-10.468-14.73-15.274-3.975-4.806-7.242-9.344-7.253-10.083-0.011-0.738 1.8-1.691 4.017-2.108zm-12.255 60.71c-12.994 0-15.351-0.279-19.593-2.334-9.99-4.872-50.762-42.582-48.63-48.021l0.648-1.654c1.242-3.189 1.457-3.285 6.159-2.611 2.679 0.374 14.023 2.108 25.218 3.842s21.8 3.393 23.568 3.682c1.767 0.3 7.552 3.04 12.855 6.091 6.803 3.928 12.32 8.263 18.747 14.76 5.003 5.062 10.188 11.228 13.927 18.217l-2.411 1.413c-1.328 0.781-4.456 2.226-6.963 3.211-6.511 2.558-16.801 3.404-23.525 3.404zm-305.09-44.645c3.535-1.156 11.324-3.136 17.291-4.409 5.977-1.274 12.105-2.323 13.615-2.323 2.389 0 2.657 0.353 2.1 2.676-0.364 1.466-2.303 7.011-4.306 12.309-2.014 5.298-5.989 14.449-8.838 20.336-3.171 6.562-6.567 11.903-8.774 13.808-1.971 1.702-7.435 6.518-12.137 10.703-4.693 4.175-10.906 10.008-13.798 12.951-2.893 2.944-7.52 8.724-10.285 12.845-2.763 4.12-6.191 9.547-7.627 12.062-1.425 2.526-3.075 4.41-3.664 4.207-0.589-0.214-1.692-2.751-2.453-5.652-0.75-2.89-1.5-10.328-1.66-16.504-0.161-6.176 0.31-15.574 1.05-20.872 0.739-5.298 2.388-13.005 3.674-17.126 1.285-4.12 4.156-10.146 6.374-13.379 2.228-3.232 5.667-7.375 7.638-9.194 1.971-1.82 6.235-4.892 9.48-6.829 3.236-1.937 8.785-4.463 12.32-5.609zm75.257 3.169c1.328-1.028 3.974-2.837 5.892-4.014 1.917-1.167 4.081-2.13 4.82-2.141 0.74 0 1.339 1.199 1.339 2.676 0 1.466-0.664 4.239-1.478 6.155-0.814 1.915-2.239 9.74-3.16 17.393-0.932 7.653-1.939 18.003-2.25 23.012-0.371 5.978-2.079 12.561-4.799 17.928-1.703 3.383-4.36 7.964-5.892 10.169-1.521 2.204-2.796 4.377-2.828 4.816-0.022 0.439-2.593 4.41-5.699 8.83-3.107 4.41-6.331 8.167-7.178 8.349-1.071 0.214-1.971-1.563-2.999-5.887-0.804-3.414-1.693-13.433-1.971-22.263-0.375-12.084-0.086-18.046 1.178-24.083 0.921-4.442 3.803-12.319 6.438-17.66 3.064-6.198 6.803-11.731 10.477-15.52 3.128-3.233 6.781-6.733 8.11-7.76zm106.86-2.73a192.76 192.76 0 0 1 8.571-2.13c2.356-0.513 8.623-1.038 13.926-1.166 7.317-0.161 11.323 0.321 16.605 2.023 10.402 3.348 18.705 10.1 26.353 17.65 5.356 5.298 10.541 11.195 13.284 16.59l-16.873 0.268c-9.277 0.149-20.011-0.097-23.836-0.536-3.835-0.439-11.301-1.819-16.604-3.061a1778.6 1778.6 0 0 1-18.212-4.378c-4.713-1.166-9.534-2.333-10.712-2.59-1.179-0.257-6.246-0.995-11.249-1.637-5.013-0.643-9.834-1.82-10.712-2.612-1.404-1.252-1.136-1.841 2.142-4.72 2.057-1.809 8.088-5.363 13.391-7.899 5.303-2.537 11.57-5.149 13.926-5.802zm-54.784 30.73c5.228-1.499 10.531-2.933 11.784-3.19 1.264-0.257 7.113-0.364 13.005-0.246s11.913 0.503 13.391 0.856c1.468 0.354 6.535 1.82 11.248 3.254 4.714 1.434 9.534 3.286 10.713 4.11 2.089 1.456 2.046 1.574-1.511 4.56-2.003 1.68-8.034 6.315-13.39 10.297-5.357 3.971-12.631 8.637-16.166 10.35-3.535 1.723-8.12 3.372-10.177 3.682-2.067 0.3-7.124 0.824-11.248 1.156a579.72 579.72 0 0 0-13.391 1.252c-3.246 0.353-7.338 0.792-9.106 0.964-1.767 0.171-5.388 0.631-8.034 1.027a148.9 148.9 0 0 0-9.106 1.67c-2.357 0.535-5.731 0.995-7.499 1.027-3.042 0.043-3.171-0.117-2.41-3.189 0.439-1.777 2.571-6.005 4.724-9.387 2.164-3.383 6.385-8.606 9.374-11.603 2.999-2.997 8.345-7.342 11.88-9.665 3.899-2.547 10.156-5.277 15.919-6.925zm-134.29 42.546c5.003-5.277 12.202-11.924 15.983-14.781 3.782-2.858 7.435-5.192 8.11-5.192s1.318 1.199 1.425 2.676c0.201 2.762-1.255 7.6-1.886 10.436a465.08 465.08 0 0 0-1.66 7.76c-0.364 1.766-0.922 9.954-1.243 18.196-0.375 9.537-0.15 16.74 0.621 19.801 0.665 2.655 1.522 5.78 1.907 6.958 0.386 1.177 0.814 5.747 0.943 10.168 0.182 6.401-0.407 9.986-2.892 17.661-1.725 5.298-4.146 11.313-5.389 13.379s-4.006 5.812-6.138 8.349c-2.143 2.526-4.617 4.57-5.496 4.559-0.889-0.021-4.328-2.815-7.66-6.208-3.331-3.393-7.723-8.819-9.759-12.052-2.046-3.232-4.863-9.023-6.267-12.844-2.174-5.898-2.56-8.916-2.56-19.801 0-9.719 0.482-14.279 2.003-18.731 1.093-3.233 3.986-9.227 6.428-13.315 2.432-4.089 8.516-11.742 13.53-17.019zm35.577-6.593c1.189-2.355 3.674-6.315 5.528-8.798 1.842-2.484 3.717-4.528 4.156-4.549 0.439-0.022 1.007 0.331 1.243 0.77 0.246 0.439 0.578 4.175 0.728 8.295 0.15 4.121 0.879 10.383 1.607 13.915 0.729 3.532 1.564 7.867 1.853 9.633 0.279 1.766 1.586 7.3 2.904 12.309 2.013 7.653 2.292 10.8 1.767 19.801-0.353 5.887-1.5 14.075-2.56 18.196-1.061 4.121-2.539 8.456-3.268 9.633-1.296 2.077-1.414 2.055-4.103-1.07-1.521-1.766-4.413-5.737-6.427-8.83-2.003-3.094-4.928-8.874-6.481-12.845-2.368-6.036-2.914-9.429-3.321-20.604-0.418-11.356-0.139-14.749 1.864-22.477 1.285-5.009 3.321-11.024 4.51-13.379zm-114.84 50.306c-1.221-3.532-3.6-13.165-5.281-21.407-1.906-9.396-4.371-20.87-4.371-30.505 0-6.165 0.375-8.541 1.34-8.498 0.738 0.032 4.327 3.767 7.97 8.295 3.642 4.527 11.601 13.572 17.675 20.112 6.074 6.529 12.598 13.754 14.484 16.055 1.896 2.29 4.724 7.31 6.299 11.131a1401.6 1401.6 0 0 0 4.231 10.169c0.76 1.766 2.464 6.818 3.792 11.238 1.329 4.41 3.418 10.201 4.65 12.866 1.221 2.654 3.9 7.471 5.945 10.703 2.036 3.222 3.964 6.112 4.285 6.412 0.311 0.299 1.768 1.851 3.246 3.446 2.207 2.398 2.443 3.19 1.34 4.538-0.74 0.9-2.186 1.467-3.214 1.242-1.029-0.214-7.424-3.211-14.195-6.668-6.78-3.447-15.94-8.98-20.354-12.288-4.424-3.318-10.262-8.381-12.973-11.26-2.72-2.89-6.674-8.381-8.795-12.202-2.12-3.821-4.853-9.847-6.074-13.379zm186.39-39.977a939.29 939.29 0 0 1 8.034-1.627c1.179-0.236 7.928-0.482 14.998-0.536 7.07-0.064 14.676 0.236 16.894 0.675 2.539 0.503 4.028 1.391 4.006 2.397-0.01 0.878-5.688 7.204-12.609 14.043-6.909 6.84-14.987 13.958-17.933 15.82-2.945 1.852-9.459 4.581-14.462 6.069-5.013 1.488-11.762 3.682-14.997 4.881-3.246 1.209-6.856 2.59-8.035 3.082a807.88 807.88 0 0 0-8.57 3.714c-3.535 1.552-7.51 3.757-8.838 4.903-1.81 1.552-2.592 1.744-3.139 0.738-0.407-0.738-0.696-4.228-0.653-7.76 0.064-4.453 1.028-8.713 3.149-13.893 1.961-4.806 4.971-9.537 8.41-13.251 2.946-3.168 7.306-7.032 9.695-8.573 2.389-1.552 6.727-3.971 9.641-5.384s6.021-2.912 6.91-3.329c0.878-0.428 4.253-1.306 7.499-1.969zm-9.106 47.705c3.535-1.188 9.074-2.719 12.319-3.393 3.236-0.674 7.221-1.327 8.838-1.445 2.571-0.182 2.861 0.096 2.293 2.194-0.354 1.327-1.532 4.335-2.614 6.69s-3.728 7.407-5.892 11.238c-2.164 3.822-5.442 9.12-7.295 11.753-1.854 2.644-5.057 6.422-7.113 8.391-2.068 1.98-7.971 6.444-13.123 9.922-5.153 3.479-9.738 6.348-10.177 6.369-0.44 0.021-3.214-2.986-6.16-6.668s-6.921-8.403-8.838-10.468c-1.907-2.077-3.471-4.378-3.482-5.117 0-0.738 1.811-3.564 4.017-6.282 2.207-2.73 6.91-7.129 10.445-9.794s9.556-6.283 13.391-8.038c3.824-1.756 9.856-4.164 13.391-5.352zm-73.157 35.621c1.596-3.233 4.35-7.45 6.106-9.366 1.757-1.916 3.825-3.446 4.596-3.403 0.761 0.032 7.178 7.514 14.248 16.622 7.07 9.109 13.98 17.864 15.351 19.459 1.361 1.606 4.757 5.32 7.542 8.263 2.774 2.944 6.085 6.797 7.338 8.563s3.064 5.373 4.007 8.027c0.953 2.655 2.014 10.115 2.367 16.591 0.354 6.475 0.225 12.116-0.3 12.534-0.525 0.417-4.092-0.364-7.917-1.724-3.835-1.359-10.584-4.303-14.997-6.518-4.425-2.226-10.563-5.662-13.659-7.642-3.096-1.991-6.952-4.688-8.57-6.016-1.618-1.327-5.067-4.57-7.649-7.225-2.592-2.654-6.202-7.952-8.034-11.773-3.107-6.476-3.332-7.771-3.332-18.731 0-10.65 0.279-12.341 2.903-17.661zm-86.665 9.901c-2.54-4.86-4.35-9.312-4.028-9.901 0.321-0.589 0.803-1.07 1.071-1.07s4.703 1.627 9.856 3.607 16.604 7.085 25.442 11.335c8.838 4.249 18.962 9.119 22.497 10.821 3.535 1.691 9.32 5.555 12.855 8.573 3.535 3.029 8.356 7.279 10.713 9.462 2.356 2.184 8.377 7.086 13.391 10.907 5.002 3.81 13.08 9.44 17.943 12.512 4.864 3.061 8.86 5.93 8.881 6.369 0.032 0.439-0.568 1.423-1.339 2.194-1.028 1.038-4.092 1.242-12.095 0.803-5.892-0.321-13.123-0.835-16.069-1.135-2.946-0.31-8.977-1.316-13.39-2.237-4.425-0.931-11.41-2.676-15.534-3.885-4.124-1.21-9.909-3.404-12.855-4.881s-7.767-4.463-10.713-6.647c-2.946-2.173-8.366-7.16-12.051-11.078-3.686-3.917-7.778-8.723-9.106-10.682s-4.307-6.422-6.631-9.901c-2.325-3.489-6.3-10.307-8.838-15.166zm147.24 6.443c2.796-1.605 8.227-3.992 12.051-5.309 3.825-1.306 8.292-2.397 9.909-2.429 1.618-0.022 3.096 0.556 3.289 1.295 0.182 0.738-0.546 5.672-1.639 10.971-1.082 5.298-2.496 11.078-3.149 12.844-0.643 1.766-2.057 5.137-3.15 7.492s-2.603 5.106-3.353 6.112c-0.76 1.006-2.1 1.819-2.978 1.809-0.975-0.011-4.328-5.459-8.57-13.947-3.825-7.653-7.081-14.364-7.231-14.92-0.15-0.546 2.025-2.312 4.821-3.918zm30.981 31.961c3.042-3.169 6.609-6.123 7.927-6.572 2.271-0.782 2.421-0.461 3.171 6.283 0.428 3.906 0.353 9.761-0.161 12.994-0.514 3.232-1.178 6.732-1.478 7.76-0.289 1.027-0.9 1.894-1.339 1.926-0.439 0.022-2.25-1.787-4.007-4.014-1.767-2.237-4.778-5.394-6.695-7.01-1.928-1.617-3.375-3.543-3.225-4.282 0.15-0.738 2.764-3.928 5.807-7.085z"/> 7 - <path d="m225.7 529.26c-0.268-10.457-0.161-19.769 0.246-20.69 0.396-0.92 1.468-1.669 2.368-1.669 0.889 0 3.181 2.526 5.077 5.619s3.696 5.865 4.018 6.154c0.31 0.289 2.496 2.922 4.852 5.844 2.357 2.922 6.46 7.332 9.106 9.805 2.646 2.462 7.467 6.604 10.713 9.183 3.246 2.591 7.445 7.332 9.352 10.543 1.896 3.211 4.189 8.841 5.089 12.523 0.899 3.682 1.628 9.098 1.628 12.042 0 4.388-0.343 5.351-1.875 5.351-1.028-0.01-6.449-0.749-12.052-1.648-5.592-0.899-11.505-1.862-13.123-2.141-1.617-0.267-4.274-0.717-5.892-0.984-1.617-0.268-4.392-0.718-6.159-1.007-1.768-0.289-10.681-1.744-19.819-3.232s-18.533-2.976-20.889-3.307c-2.357-0.321-5.496-0.846-6.964-1.167-1.478-0.321-4.606-0.846-6.963-1.167s-7.424-1.819-11.248-3.35c-3.825-1.52-10.584-4.645-14.998-6.946-4.424-2.291-11.655-6.776-16.069-9.955-4.424-3.189-9.963-7.428-12.32-9.44-2.903-2.483-3.942-4.014-3.213-4.774 0.739-0.77 6.674-0.139 19.282 2.055 13.638 2.376 23.183 3.34 38.03 3.821 10.906 0.354 22.958 1.349 26.782 2.205 3.824 0.846 8.892 2.409 15.533 5.352zm55.063 30.087c-0.247-0.289 0.053-1.123 0.664-1.83 0.857-0.995 3.835 0.054 12.577 4.421 6.309 3.136 15.554 7.385 20.568 9.44 5.013 2.055 14.408 5.47 20.89 7.589 16.867 5.543 34.328 7.454 51.153 11.816 3.095 0.803 9.855 2.377 15.019 3.479 5.952 1.271 12.379 2.815 18.19 4.57 3.685 1.114 10.787 3.126 15.801 4.453 4.986 1.331 9.575 3.396 14.462 4.817 0.589 0.171 5.164 1.627 10.177 3.243 5.014 1.605 12.598 4.538 16.872 6.507 4.275 1.97 8.014 3.575 8.303 3.575s1.982 1.081 3.749 2.409c2.678 2.001 3.118 2.954 2.625 5.619-0.322 1.766-1.639 5.352-2.946 7.953-1.371 2.772-4.103 5.897-6.535 7.492-2.292 1.52-4.821 3.233-5.603 3.821-0.985 0.739-2.988 0.46-6.534-0.91-2.807-1.091-12.095-4.324-20.644-7.192-8.548-2.858-18.672-6.219-22.496-7.461-7.749-2.494-14.582-3.922-22.497-5.994-5.603-1.455-12.587-3.136-15.533-3.724-2.946-0.6-6.567-1.306-8.035-1.574-1.478-0.267-6.052-1.177-10.177-2.033-4.124-0.857-13.412-2.655-20.643-3.993-8.516-1.575-17.546-3.828-25.689-6.818-5.742-2.119-13.584-5.544-17.408-7.61s-10.102-5.823-13.926-8.338c-3.825-2.526-7.553-5.245-8.26-6.048-0.793-0.888-1.103-3.339-0.803-6.272 0.267-2.654 0.717-5.062 1.007-5.351 0.278-0.289 3.77 1.466 7.766 3.906 3.985 2.43 11.591 6.529 16.894 9.098s11.57 5.331 13.927 6.144c2.356 0.814 5.485 1.97 6.963 2.569 1.467 0.599 3.16 1.231 3.749 1.413 0.59 0.182 4.446 1.295 8.57 2.472 4.125 1.188 16.177 3.896 26.782 6.026 10.606 2.13 21.447 4.314 24.104 4.86 7.166 1.443 14.385 3.636 21.425 5.587 3.824 1.07 18.479 5.641 32.566 10.168 25.496 8.199 25.604 8.22 27.596 6.09 1.907-2.033 1.918-2.194 0.118-3.168-1.039-0.567-2.378-1.156-2.967-1.316-0.59-0.15-8.785-2.901-18.212-6.112-9.427-3.2-20.761-6.904-25.175-8.231-4.424-1.327-8.516-2.537-9.105-2.687-0.59-0.139-6.857-1.766-13.927-3.617-7.07-1.841-13.584-3.629-14.462-3.961-0.878-0.342-2.571-0.77-3.749-0.941-1.179-0.172-10.82-2.056-21.426-4.175-10.605-2.13-24.949-5.78-31.87-8.113-6.92-2.333-17.29-6.347-23.032-8.927-5.742-2.579-12.973-6.197-16.069-8.027-3.096-1.841-5.988-3.34-6.428-3.34-0.439-0.01-2.142-1.092-3.781-2.408-1.639-1.327-3.235-3.853-3.557-5.619-0.321-1.766-0.782-3.458-1.028-3.747z"/> 8 - </g> 9 - </svg>
-8
packages/icons/assets/Path-Destruction-v2.svg
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <svg fill="none" version="1.1" viewBox="0 0 612 612" xmlns="http://www.w3.org/2000/svg"> 3 - <g fill="#fff"> 4 - <path d="m285.02 6.167c3.755 3.784 10.024 9.014 13.942 11.619 3.918 2.604 9.647 5.88 12.721 7.295 3.073 1.404 9.026 3.49 13.229 4.629 4.193 1.14 13.586 3.205 20.862 4.588 7.277 1.384 17.575 3.928 22.898 5.668 5.322 1.73 14.247 5.33 19.844 7.986 5.597 2.666 13.494 6.99 17.555 9.625 4.06 2.625 11.061 8.323 15.57 12.657 4.61 4.436 8.589 9.218 9.108 10.937 0.519 1.68 1.669 8.313 2.564 14.753 0.896 6.44 1.944 19.596 2.331 29.251 0.386 9.655 0.356 17.551-0.061 17.551-0.418 0-2.585-3.775-4.814-8.394-2.218-4.619-6.961-12.057-10.533-16.533-3.561-4.477-9.189-10.459-12.486-13.308-3.308-2.839-8.294-6.705-11.093-8.587-2.798-1.883-8.294-4.925-12.212-6.766-3.918-1.842-10.563-4.009-14.756-4.813a17852 17852 0 0 0-19.335-3.683c-6.432-1.23-16.283-3.55-21.88-5.158s-13.84-4.344-18.318-6.074c-4.477-1.73-11.805-4.955-16.282-7.163-4.478-2.218-9.373-5.046-13.596-8.546l-1.496-26.453c-0.824-14.55-1.293-26.79-1.038-27.206 0.254-0.417 3.531 2.34 7.276 6.125zm219.13 93.38c0.489 0.243-2.096 4.791-5.729 10.112-3.643 5.311-8.63 13.675-11.093 18.568-2.452 4.894-5.495 11.884-6.757 15.516-1.75 5.026-2.3 8.933-2.32 16.279-0.01 6.349 0.6 11.761 1.791 15.77 0.987 3.358 3.094 8.618 4.671 11.7 1.567 3.073 4.101 7.194 5.618 9.157 1.526 1.964 2.432 2.646 2.035 1.526-0.407-1.119-1.659-5.473-2.799-9.665-1.506-5.586-2.045-10.622-1.994-18.823 0.03-6.155 0.651-13.674 1.384-16.706 0.722-3.021 1.893-5.657 2.595-5.85 0.848-0.224 1.279 0.936 1.292 3.48 0.01 2.096 0.743 6.562 1.628 9.92 0.886 3.357 2.534 7.936 3.664 10.174s3.603 6.013 5.495 8.394c2.249 2.818 5.648 5.372 9.8 7.345 3.501 1.669 9.566 3.521 13.484 4.121s8.956 1.954 11.195 3.001c2.238 1.059 6.828 4.813 10.207 8.354 3.368 3.53 8.009 9.635 10.298 13.552 2.29 3.917 5.19 9.411 6.442 12.209s3.572 8.75 8.06 21.366l-6.279 2.543c-3.46 1.404-8.508 4.589-11.276 7.122-2.747 2.523-5.912 6.41-7.021 8.648-1.12 2.239-2.249 6.359-2.534 9.157-0.306 3.083 0.173 7.692 1.201 11.701 0.936 3.632 3.266 9.594 5.179 13.226 1.914 3.632 5.089 8.557 7.063 10.938 2.035 2.452 4.478 4.324 5.628 4.324 1.2 0 2.88-1.364 4.091-3.307 1.129-1.821 2.9-6.054 3.948-9.411 1.048-3.358 2.717-10.917 3.715-16.788 0.987-5.87 2.076-11.049 2.401-11.507 0.326-0.448 2.412 1.842 4.631 5.087 2.228 3.256 5.332 9.116 6.909 13.034 1.578 3.917 3.542 10.438 4.356 14.498 0.824 4.059 1.496 12.189 1.496 18.059 0 6.461-0.794 14.804-2.015 21.112-1.109 5.738-3.094 13.633-4.417 17.55s-3.653 9.646-5.19 12.718c-1.536 3.073-3.897 7.082-5.251 8.903-1.353 1.821-2.92 3.306-3.48 3.306s-1.323-1.261-1.69-2.798c-0.376-1.536-2.228-6.684-4.131-11.446-1.903-4.761-5.353-11.853-7.663-15.77-2.595-4.405-8.101-10.998-14.441-17.296-6.543-6.501-11.418-12.372-16.801-22.383l-0.021 5.85c-0.02 3.215 0.652 8.943 1.486 12.718 1.14 5.148 3.145 9.421 8.009 17.042 3.562 5.595 7.439 12.921 8.599 16.278 1.171 3.358 2.626 10.917 3.237 16.788 0.946 9.055 1.75 12.006 5.23 19.331 2.26 4.762 5.76 10.937 11.439 18.822l-0.764 11.701c-0.417 6.43-1.404 15.363-2.188 19.84-0.783 4.476-2.523 11.344-3.867 15.261-1.333 3.917-3.816 9.869-5.515 13.227-1.7 3.357-5.272 9.085-7.948 12.717-2.677 3.633-7.653 9.544-11.052 13.125-3.399 3.571-10.085 9.768-14.837 13.756-4.753 3.998-11.51 9.197-15.011 11.558-3.501 2.36-6.818 4.293-7.378 4.293s0.417-2.859 2.168-6.359c1.74-3.5 4.793-11.171 6.767-17.041 3.063-9.117 3.603-12.098 3.664-20.349 0.061-8.211-0.316-10.5-2.453-15.18-1.435-3.144-4.264-6.99-6.584-8.943-2.239-1.882-5.679-3.866-7.632-4.395-2.015-0.54-4.885-0.591-6.615-0.112-1.679 0.468-4.203 1.434-5.597 2.146-1.405 0.713-5.007 3.195-8.02 5.505-3.012 2.299-8.548 7.854-12.303 12.331-3.765 4.477-9.373 11.802-12.466 16.279-4.936 7.132-6.371 8.475-11.612 10.856-3.287 1.495-8.955 3.286-12.588 3.968-3.674 0.691-9.556 0.997-13.23 0.671-3.643-0.315-9.82-1.791-13.738-3.286-6.401-2.432-8.152-2.656-17.3-2.279-7.175 0.295-11.826 1.068-15.774 2.604-3.084 1.201-9.19 4.365-13.576 7.031-4.396 2.665-10.807 6.572-14.247 8.668-3.45 2.096-6.503 3.836-6.777 3.846-0.285 0.021-1.995-3.988-3.817-8.902-1.811-4.915-6.513-14.773-10.431-21.906-3.918-7.132-7.144-13.318-7.164-13.735s3.531-4.202 7.887-8.404c4.355-4.212 11.133-9.777 15.051-12.392 3.918-2.605 12.385-7.285 18.827-10.388 6.431-3.103 17.88-7.671 25.441-10.154 7.551-2.482 19.692-5.748 26.968-7.244 7.276-1.506 17.697-3.032 23.162-3.398 7.612-0.519 9.922-0.377 9.922 0.6-0.01 0.702-0.468 1.272-1.028 1.272-0.559 0-5.709 3.144-11.448 6.979-5.74 3.836-12.497 8.791-15.011 11.009-2.524 2.228-5.424 5.84-6.462 8.038-1.089 2.289-1.628 4.965-1.272 6.277 0.377 1.404 2.28 3.063 4.936 4.284 2.381 1.088 7.988 2.513 12.466 3.154 4.478 0.651 11.571 0.895 15.774 0.549 4.192-0.336 10.38-1.546 13.738-2.676 3.358-1.129 8.284-3.642 10.94-5.596 2.656-1.943 6.686-6.389 8.955-9.889 2.259-3.5 5.099-9.34 6.3-12.972 1.821-5.525 2.218-9.462 2.707-41.206l4.884-3.073c2.687-1.689 6.686-4.436 8.884-6.104 2.199-1.669 5.882-5.555 8.193-8.628 2.33-3.113 4.752-7.844 5.475-10.683 1.068-4.232 1.027-6.196-0.224-11.7-0.825-3.633-2.717-9.361-4.213-12.718-1.496-3.358-3.359-6.908-4.152-7.885-1.323-1.638-1.761-1.303-5.353 4.069-2.158 3.216-6.473 8.598-9.587 11.955-3.928 4.223-6.024 5.789-6.787 5.087-0.611-0.559-2.3-6.511-3.745-13.226-2.137-9.89-2.646-15.007-2.677-26.962-0.03-11.599 0.377-16.167 1.903-21.366 1.059-3.632 3.531-9.299 5.485-12.596 1.944-3.286 5.323-7.407 7.5-9.157 2.168-1.739 6.218-5.229 8.986-7.752 2.779-2.524 6.361-6.868 7.969-9.666 1.597-2.798 3.857-8.75 5.007-13.226 1.15-4.477 2.391-12.26 3.46-26.454l-4.519-3.337c-2.961-2.187-5.638-3.327-11.123-3.276l0.255 5.484c0.203 4.314-0.184 5.952-1.781 7.661-1.12 1.201-3.186 2.157-4.58 2.137-1.709-0.031-4.203-1.801-7.632-5.413-3.094-3.266-6.961-9.126-9.882-14.997-2.635-5.29-5.841-13.511-7.113-18.273-1.944-7.234-2.32-11.232-2.331-24.418-0.01-13.247 0.367-17.154 2.311-24.418 1.282-4.762 4.711-13.45 7.612-19.331 3.928-7.936 6.991-12.484 11.927-17.673 3.643-3.846 9.555-9.197 13.127-11.894 3.572-2.696 6.9-4.7 7.378-4.456zm-391.06 3.773c2.605 1.79 8.64 7.162 13.423 11.924 7.235 7.203 9.484 10.276 13.423 18.324 2.605 5.311 5.617 12.412 6.696 15.77 1.068 3.357 2.534 9.309 3.236 13.226 0.834 4.62 1.099 11.762 0.743 20.349-0.377 9.055-1.232 15.638-2.727 20.857-1.201 4.192-4.214 11.863-6.707 17.042-2.982 6.206-6.35 11.314-9.871 14.987-3.603 3.764-6.167 5.596-7.887 5.626-1.404 0.031-3.46-0.926-4.579-2.126-1.598-1.709-1.985-3.348-1.781-7.661 0.244-5.24 0.142-5.484-2.29-5.484-1.404 0-4.223 0.803-6.279 1.78s-4.427 2.92-5.282 4.324c-1.231 2.025-1.394 4.324-0.834 11.192 0.386 4.761 1.648 12.077 2.809 16.279 1.16 4.192 3.327 9.879 4.823 12.626 1.506 2.737 5.669 7.549 9.251 10.683 3.592 3.123 8.314 7.519 10.502 9.757s5.271 6.817 6.839 10.174c1.577 3.358 3.48 8.628 4.233 11.701 0.763 3.123 1.354 10.998 1.343 17.805 0 6.715-0.6 15.638-1.333 19.84-0.722 4.191-1.994 10.377-2.829 13.735-0.834 3.357-1.984 6.562-2.544 7.122-0.678 0.678-2.91-1.018-6.696-5.087-3.114-3.358-7.429-8.74-9.586-11.955-3.583-5.372-4.03-5.708-5.343-4.07-0.794 0.977-2.82 4.986-4.498 8.903-1.68 3.917-3.552 9.869-4.173 13.226-0.865 4.752-0.814 7.122 0.224 10.683 0.743 2.523 2.738 6.634 4.447 9.157 1.7 2.523 5.343 6.471 8.081 8.77 2.747 2.31 7.276 5.647 15.163 10.632l-0.336 13.441c-0.234 9.543 0.132 15.668 1.282 21.081 0.886 4.191 2.982 10.489 4.661 13.989 1.669 3.5 5.221 8.557 7.877 11.243 2.656 2.696 7.347 6.084 10.431 7.539 3.073 1.455 8.345 3.154 11.703 3.764 3.358 0.621 8.507 1.12 11.448 1.12 2.941-0.011 8.661-0.519 12.721-1.14 4.061-0.621 9.098-1.994 11.194-3.052 2.178-1.099 4.061-2.91 4.386-4.212 0.306-1.262 0.082-3.551-0.508-5.087-0.591-1.537-3.257-5.016-5.913-7.723-2.656-2.716-9.871-8.21-16.028-12.229-6.157-4.009-11.54-7.285-11.958-7.275-0.417 0-0.763-0.447-0.763-1.007 0-0.57 2.809-1.018 6.361-1.028 3.5-0.01 12.079 0.957 19.081 2.147 6.991 1.18 18.216 3.663 24.932 5.504 6.717 1.842 16.558 5.057 21.88 7.153 5.312 2.086 13.097 5.514 17.3 7.61 4.193 2.096 11.754 6.552 16.792 9.91 5.169 3.439 12.486 9.615 16.791 14.152 4.386 4.64 9.23 11.07 11.387 15.14 2.382 4.497 5.638 13.928 8.946 25.893 2.849 10.347 6.614 23.167 8.344 28.488 1.741 5.321 4.468 12.301 6.066 15.516 1.597 3.215 4.854 7.722 7.235 10.001 2.382 2.289 11.622 9.035 20.537 15.007 8.914 5.973 16.007 11.314 15.773 11.874-0.244 0.559-2.045 0.875-3.999 0.702-1.964-0.173-7.917-1.404-13.23-2.747-5.322-1.333-13.331-3.816-17.809-5.525-4.477-1.699-11.804-5.189-16.282-7.743-4.478-2.564-10.614-6.806-13.647-9.431-3.022-2.615-7.459-7.509-9.851-10.866-2.391-3.358-5.709-9.076-7.378-12.718-1.669-3.643-4.203-11.192-5.628-16.788-1.434-5.596-4.396-14.752-6.574-20.348-2.188-5.596-5.403-13.033-7.164-16.533-1.75-3.5-5.434-8.537-8.172-11.192-2.747-2.656-7.663-6.43-10.929-8.394-3.267-1.963-9.495-4.822-13.841-6.359-4.345-1.536-8.466-2.808-9.169-2.808-0.702-0.01 1.018 1.424 3.817 3.174 2.798 1.761 7.327 5.088 10.054 7.397 2.738 2.3 6.472 6.247 8.294 8.77 1.832 2.524 4.936 7.784 6.9 11.701s4.538 10.093 5.729 13.735 2.035 6.735 1.873 6.888c-0.153 0.153-4.183-2.147-8.935-5.107-4.763-2.961-12.426-6.634-17.046-8.16-5.058-1.669-10.625-2.778-13.993-2.778-3.731 0-8.565 1.075-14.502 3.225-7.764 2.798-10.278 3.226-19.59 3.307-8.975 0.071-11.825-0.325-17.768-2.462-4.264-1.526-8.233-3.765-9.942-5.596-1.568-1.679-6.188-7.631-10.258-13.226-4.081-5.596-10.645-13.38-14.583-17.297-3.949-3.917-9.648-8.444-12.68-10.052-3.389-1.811-7.053-2.94-9.566-2.95-2.321-0.011-5.608 0.895-7.633 2.095-1.964 1.16-4.57 3.165-5.79 4.467-1.232 1.302-3.287 4.66-4.57 7.458-1.933 4.222-2.31 6.725-2.249 14.752 0.072 8.231 0.61 11.253 3.674 20.349 1.974 5.87 5.027 13.542 6.767 17.042 2.463 4.914 2.84 6.359 1.66 6.359-0.845 0-6.219-3.521-11.958-7.824-5.74-4.304-14.492-11.752-19.448-16.533-4.966-4.793-11.794-12.372-15.183-16.849s-8.1-12.26-10.472-17.296c-2.371-5.037-5.261-13.044-6.421-17.805-1.15-4.762-2.575-13.461-3.155-19.331-0.58-5.871-1.028-12.973-1.008-15.77 0.041-4.152 0.682-5.932 3.47-9.666 1.883-2.523 5.038-7.783 7.002-11.7 1.964-3.918 3.857-8.272 4.193-9.666 0.336-1.404 1.211-7.58 1.944-13.735 0.977-8.262 2.117-12.922 4.365-17.805 1.67-3.632 5.048-9.595 7.5-13.227 2.453-3.632 5.333-8.902 6.381-11.7 1.13-2.981 2.127-8.882 2.9-23.401l-3.358 6.105c-2.055 3.744-7.133 9.838-13.138 15.77-5.383 5.321-11.53 12.412-13.677 15.77-2.137 3.357-5.108 8.851-6.605 12.209-1.495 3.357-3.704 9.197-4.915 12.972-1.343 4.202-2.686 6.746-3.47 6.552-0.702-0.173-3.083-3.032-5.302-6.359-2.208-3.327-5.485-10.164-7.286-15.2-1.792-5.036-4.264-14.427-5.506-20.857-1.852-9.625-2.168-14.051-1.77-24.927 0.427-11.599 0.915-14.478 3.927-23.401 2.026-5.982 5.343-13.033 8.04-17.103 2.524-3.805 4.844-6.552 5.17-6.104 0.315 0.457 1.567 6.43 2.798 13.287 1.221 6.858 3.104 14.865 4.193 17.805 1.089 2.941 2.809 6.43 3.816 7.773 1.394 1.832 2.463 2.269 4.386 1.811 1.649-0.397 4.03-2.849 6.788-7 2.33-3.52 5.19-8.343 6.36-10.723 1.16-2.381 2.86-7.183 3.766-10.683 0.977-3.795 1.445-8.414 1.14-11.446-0.285-2.798-1.415-6.919-2.534-9.157-1.11-2.238-4.488-6.268-7.5-8.964-3.013-2.696-8.06-5.891-16.965-9.35l1.272-4.07c0.692-2.238 2.982-8.19 5.078-13.226 2.097-5.036 5.536-12.138 7.653-15.77 2.107-3.632 6.523-9.533 9.82-13.105 3.288-3.561 8.162-7.569 10.818-8.902 2.656-1.323 7.928-2.879 11.703-3.459 3.776-0.57 9.73-2.402 13.23-4.07 4.152-1.974 7.55-4.528 9.8-7.346 1.893-2.381 4.406-6.267 5.597-8.648 1.19-2.381 2.849-6.959 3.694-10.174 0.835-3.215 1.527-7.57 1.527-9.666-7e-3 -2.55 0.413-3.71 1.261-3.479 0.703 0.193 1.873 2.828 2.595 5.85 0.733 3.032 1.354 10.55 1.384 16.706 0.051 8.2-0.488 13.237-1.994 18.822-1.14 4.192-2.381 8.547-2.778 9.666s0.824-0.051 2.707-2.595c1.892-2.543 4.752-7.579 6.37-11.191 1.628-3.612 3.593-10.225 4.376-14.702 0.865-4.955 1.17-10.53 0.763-14.244-0.356-3.358-1.567-8.852-2.696-12.209-1.12-3.358-3.868-9.768-6.117-14.244-2.249-4.477-7.235-12.83-11.092-18.568-3.847-5.738-6.727-10.642-6.39-10.907 0.335-0.254 2.737 0.997 5.342 2.788zm309.69 28.213c0.469 0 1.547 2.401 2.402 5.341 0.855 2.941 2.28 9.463 3.155 14.499 0.997 5.697 1.455 12.992 1.231 19.331-0.325 8.801-0.783 10.998-3.389 16.279-1.669 3.357-5.556 8.79-8.639 12.077-3.094 3.276-8.824 8.068-12.742 10.642-3.918 2.584-11.021 6.41-15.773 8.516-4.763 2.106-9.454 3.846-10.431 3.846-1.649 0.02-1.781-1.781-1.791-23.635-0.011-13.013-0.275-24.571-0.58-25.69-0.469-1.699 0.508-2.544 5.861-5.057 3.542-1.658 9.638-5.148 13.556-7.753 3.917-2.614 9.596-7.437 12.618-10.723 3.023-3.287 7.338-8.608 9.587-11.823s4.467-5.85 4.935-5.85zm-190.73 70.253c0.987-0.04 1.282 5.647 1.323 50.312l-8.426 3.256c-4.631 1.79-12.426 5.799-26.225 14.549l-4-5.341c-2.198-2.941-5.638-8.781-7.632-12.973-2.005-4.202-4.437-11.578-5.414-16.411-1.354-6.664-1.496-9.116-0.611-10.174 0.641-0.763 7.735-4.741 15.774-8.821 8.029-4.09 18.949-8.994 24.271-10.887 5.312-1.902 10.238-3.479 10.94-3.51zm-56.419 31.734c0.468 0.142 2.107 4.151 3.643 8.912 1.547 4.752 4.224 11.619 5.954 15.262 1.73 3.632 5.159 9.36 7.612 12.718 2.452 3.357 7.418 8.312 11.021 11.018 3.613 2.697 9.311 6.186 12.67 7.763 3.358 1.567 8.06 3.48 10.461 4.243 2.392 0.763 4.183 1.852 3.989 2.411-0.203 0.56-4.447 3.897-9.443 7.407-4.997 3.521-9.22 6.949-9.393 7.631s2.055 7.193 4.945 14.468c2.901 7.274 5.557 13.877 5.913 14.681 0.55 1.231-0.407 1.333-5.963 0.672-3.644-0.438-9.363-1.638-12.721-2.686-3.358-1.038-9.088-3.795-12.721-6.135-3.643-2.34-10.787-8.425-25.146-22.811l-0.652-8.14c-0.366-4.476-0.213-13.867 0.326-20.857 0.539-7 1.455-15.241 2.025-18.313 0.57-3.073 2.3-10.755 3.837-17.053 1.536-6.308 3.175-11.344 3.643-11.191zm12.914 134.37c7.765 0.204 10.675 0.743 14.756 2.707 2.799 1.343 7.622 4.995 10.716 8.109 3.674 3.693 7.124 8.658 9.953 14.305 2.381 4.751 4.315 9.452 4.294 10.428-0.02 1.414-0.905 1.048-4.355-1.821-2.382-1.984-6.157-4.528-8.396-5.657-2.636-1.333-5.149-1.852-7.124-1.495-1.679 0.305-4.06 1.597-5.281 2.858-1.232 1.262-2.992 4.131-3.918 6.37-1.13 2.736-1.486 5.484-1.079 8.393 0.397 2.768 2.259 6.695 5.19 10.938 2.514 3.632 4.346 6.847 4.071 7.122-0.285 0.274-2.911-0.743-5.852-2.269s-9.047-6.441-13.575-10.938c-4.712-4.67-10.146-11.374-12.721-15.698-2.463-4.141-7.032-9.869-10.136-12.718s-8.253-6.441-11.449-7.977c-3.185-1.536-5.576-3.256-5.291-3.815 0.274-0.56 4.284-2.178 8.904-3.592 4.62-1.404 11.367-3.225 15.011-4.039 3.907-0.875 10.573-1.363 16.282-1.211zm238.13 4.212c5.312 0.285 12.416 1.242 15.774 2.117 3.358 0.885 9.077 2.543 12.721 3.703 3.633 1.16 7.072 2.483 7.632 2.941 0.6 0.478-1.516 2.065-5.088 3.835-3.359 1.659-8.366 5.006-11.123 7.438-2.758 2.441-7.836 8.78-11.276 14.101s-9.027 12.413-12.395 15.77c-3.379 3.358-8.844 7.59-12.131 9.401-3.297 1.811-6.329 2.951-6.726 2.544-0.407-0.417 0.559-2.361 2.147-4.314 1.588-1.964 3.592-4.935 4.457-6.613 0.855-1.679 1.883-4.884 2.27-7.122 0.488-2.778 0.203-5.444-0.916-8.394-0.896-2.381-2.89-5.26-4.427-6.389-1.537-1.14-4.284-2.056-6.106-2.035-1.822 0.01-4.793 0.783-6.615 1.699-1.821 0.915-5.027 2.971-7.123 4.578-2.097 1.598-4.051 2.91-4.325 2.91-0.285 0-0.509-0.57-0.519-1.272 0-0.702 1.536-4.476 3.419-8.394 1.883-3.917 5.241-9.411 7.459-12.209 2.229-2.798 6.045-6.46 8.488-8.139 2.442-1.679 6.757-3.866 9.586-4.874 4.101-1.444 7.124-1.709 14.817-1.282z" clip-rule="evenodd" fill-opacity=".3" fill-rule="evenodd"/> 5 - <path d="m301 98.152 2.29 4.487c1.771 3.469 2.29 6.196 2.29 19.738h12.212l0.03-9.92c0.021-7.987 0.367-10.276 1.781-11.731 1.476-1.536 3.521-1.81 24.648-1.75v8.14c0 7.427 0.203 8.241 2.289 9.268 1.669 0.814 2.911 0.814 4.58 0 1.995-0.986 2.29-1.912 2.29-13.338l4.834-1.536c2.656-0.845 4.945-1.537 5.088-1.526 0.142 0 0.254 11.11 0.254 24.682 0 17.744-0.427 26.891-1.526 32.558-0.845 4.334-1.527 8.109-1.527 8.394s-2.055 0.508-4.579 0.508c-3.562 0-4.804 0.448-5.597 2.035-0.56 1.119-0.784 2.727-0.509 3.561 0.275 0.835 1.537 1.791 2.798 2.117 1.262 0.335 3.552 0.335 7.887-0.591l0.021 8.903c0 4.894 0.264 18.059 0.559 29.251 0.428 15.689 0.255 20.908-0.773 22.79-0.733 1.343-2.107 2.951-3.053 3.561-1.292 0.845-2.371 0.743-4.366-0.407-1.445-0.834-4.589-4.273-6.981-7.63-2.381-3.358-6.37-7.814-8.864-9.9-2.493-2.086-6.126-4.1-8.09-4.466-3.531-0.652-3.582-0.611-5.73 4.822-1.19 3.012-2.503 7.987-2.92 11.07-0.407 3.083-0.947 6.511-1.181 7.63-0.244 1.12-0.61 11.416-0.834 22.893-0.377 19.87-0.295 20.999 1.74 23.909 2.076 2.971 2.168 2.991 3.48 1.018 0.743-1.12 1.802-5.016 2.351-8.649 0.55-3.632 1.242-8.21 1.527-10.174s0.865-3.836 1.302-4.161c0.428-0.336 3.979-3.154 7.897-6.268 5.424-4.313 7.735-5.555 9.668-5.209 1.842 0.326 4.01-0.671 7.887-3.652 2.941-2.259 5.363-3.999 5.383-3.856 0.021 0.142 0.204 23.604 0.418 52.143 0.203 28.539 0.61 53.038 0.895 54.432 0.285 1.404 0.814 7.58 1.17 13.735 0.357 6.156 0.835 13.023 1.059 15.262 0.224 2.238 0.682 6.817 0.997 10.174 0.326 3.358 1.038 9.991 1.588 14.753 0.549 4.761 1.699 13.684 2.564 19.84 0.865 6.155 1.323 12.341 1.018 13.735-0.438 2.055-2.931 3.744-13.036 8.831-6.87 3.449-15.917 8.557-20.12 11.334-4.192 2.778-10.858 8.19-14.796 12.026-3.939 3.836-8.711 9.269-10.594 12.067a509.94 509.94 0 0 0-3.745 5.596c-0.173 0.274-5.485-4.477-11.795-10.582-6.309-6.094-14.227-12.941-17.585-15.2-3.358-2.269-10.227-6.237-15.265-8.831-5.037-2.595-11.102-5.484-17.809-8.119l0.468-10.429c0.255-5.738 0.774-27.369 1.14-48.073 0.377-20.705 0.855-37.991 1.059-38.408 0.213-0.417 1.19-0.366 2.167 0.112s4.529 4.497 7.887 8.912c3.358 4.426 6.839 9.188 9.352 13.105l5.241-3.815c2.89-2.096 5.821-3.816 6.523-3.806 0.703 0 2.29 1.486 3.542 3.307 1.252 1.811 2.748 4.894 3.338 6.857 0.59 1.964 1.323 7.906 1.648 13.227 0.316 5.321 1.252 12.647 2.066 16.279 0.825 3.632 2.728 8.282 4.234 10.317 1.496 2.034 3.989 4.67 5.526 5.85 1.536 1.18 2.829 2.035 2.88 1.892 0.04-0.142 0.244-1.17 0.447-2.289 0.214-1.119 0.733-7.753 1.16-14.753 0.438-6.989 0.764-20.043 0.733-28.996-0.03-8.954-0.397-20.166-0.804-24.927-0.407-4.762-1.374-12.311-2.147-16.788-0.763-4.477-2.371-10.428-3.562-13.226-1.18-2.798-3.959-7.489-6.157-10.429s-6.564-7.285-9.688-9.666c-3.134-2.38-6.859-6.379-8.273-8.902-1.425-2.523-3.786-5.85-5.251-7.397-1.466-1.556-3.471-2.808-4.448-2.798-0.987 0.01-2.269 1.262-2.869 2.819-0.601 1.536-1.486 4.853-1.954 7.376-0.479 2.523-1.12 7.559-1.435 11.192-0.316 3.632-0.845 10.733-1.171 15.77-0.346 5.158-1.241 10.154-2.055 11.446-0.804 1.261-2.147 2.289-2.982 2.289-0.834 0-2.218-0.234-3.053-0.509-1.343-0.447-1.526-9.889-1.526-153.12l3.307 0.62c3.083 0.58 3.491 0.305 6.106-4.069 2.585-4.335 2.666-4.762 1.018-5.657-1.12-0.611-4.041-0.611-7.887-0.011-3.359 0.529-6.676 0.967-7.378 0.967-0.998 0.01-1.272-7.682-1.272-70.192h6.106c3.358 0 6.798 0.224 7.632 0.508 1.221 0.407 1.527 2.544 1.527 20.858l4.833-0.58c2.656-0.326 5.404-0.784 6.106-1.018 0.896-0.305 1.262-3.103 1.242-9.34-0.01-4.893 0.102-9.218 0.254-9.604 0.163-0.377 1.547-0.265 3.084 0.254 2.188 0.753 3.409 0.529 5.597-0.977 2.32-1.607 4.63-1.943 24.169-1.943zm29.512 51.523c-1.679 1.058-4.772 3.815-6.869 6.135l-3.816 4.212c-21.686-0.041-27.752 0.173-27.477 0.448 0.275 0.284 4.396 0.997 9.159 1.597s11.51 1.526 15.011 2.065l6.36 0.977 0.509 22.872c4.844 2.218 7.368 2.533 9.159 2.157 1.679-0.356 3.653-0.977 4.386-1.384 1.007-0.57 1.313-4.314 1.272-15.251-0.031-7.977 0.387-15.302 0.926-16.279 0.773-1.384 0.265-2.635-2.29-5.626l-3.277-3.846zm139.14 361.36c0.427 0 2.005 2.401 3.49 5.342 1.486 2.94 4.193 7.63 6.005 10.428 1.821 2.798 5.067 6.736 7.215 8.75 2.157 2.015 5.638 4.874 7.734 6.359 3.043 2.147 3.623 3.062 2.89 4.477-0.519 0.976-3.837 5.107-7.378 9.177-3.552 4.059-10.177 10.469-14.736 14.244-4.549 3.764-11.876 8.75-16.282 11.069-4.396 2.32-12.578 5.912-18.176 7.987-5.597 2.076-16.129 5.291-23.406 7.163-7.276 1.862-18.491 4.334-36.635 7.58l-7.124-4.212c-3.918-2.32-10.095-6.39-13.738-9.056-3.633-2.655-8.946-7.284-11.795-10.276-2.849-2.991-6.401-7.844-7.887-10.784-1.486-2.941-3.399-7.977-4.244-11.192-0.834-3.215-1.526-6.654-1.526-7.631 0.01-1.119 3.674-4.202 9.932-8.332 5.455-3.612 13.82-8.384 18.573-10.622 4.762-2.228 10.705-4.538 13.229-5.118s7.785-1.078 18.827-1.15l3.053 6.268c1.679 3.449 4.427 7.335 6.106 8.638 1.679 1.312 4.203 2.391 5.597 2.401 1.404 0.02 5.068-0.926 8.141-2.086 3.073-1.17 9.261-3.958 13.739-6.206 4.477-2.249 10.888-5.749 14.247-7.784 3.358-2.034 9.993-6.338 14.735-9.563 4.743-3.226 8.976-5.871 9.414-5.871zm-323.23 9.157c0.224 0 3.257 1.323 6.757 2.94 3.501 1.608 10.594 4.589 15.774 6.614 5.18 2.014 12.731 4.588 16.792 5.718 4.06 1.119 9.209 2.299 11.448 2.614 2.239 0.326 6.015 0.092 8.396-0.508 2.697-0.682 5.109-2.147 6.391-3.897 1.14-1.536 2.055-3.826 2.035-5.087-0.01-1.272 0.733-2.534 1.7-2.849 0.946-0.315 5.871 0.183 10.939 1.099 5.068 0.915 12.64 2.818 16.843 4.232 4.192 1.414 10.614 4.07 14.247 5.901 3.633 1.821 8.792 4.752 11.448 6.502 3.837 2.523 5.17 4.171 6.463 8.007 0.895 2.655 3.266 8.953 5.271 13.989 2.015 5.037 5.119 11.68 6.91 14.753 1.781 3.083 6.167 8.302 9.729 11.619 3.562 3.307 9.586 8.119 13.392 10.683 3.796 2.564 6.89 5.118 6.869 5.677-0.02 0.672-8.813 0.774-25.736 0.306-14.135-0.397-32.107-1.445-39.943-2.341-7.836-0.885-20.893-2.95-29.004-4.578-8.12-1.618-20.027-4.741-26.459-6.929-6.441-2.177-14.684-5.229-18.317-6.765-3.634-1.537-12.792-5.932-20.354-9.758-7.561-3.815-17.86-9.533-22.897-12.697-5.037-3.154-9.271-5.932-9.413-6.166-0.143-0.224 3.928-8.546 9.047-18.476s9.749-18.629 10.288-19.331c0.55-0.702 1.171-1.272 1.384-1.272z" clip-rule="evenodd" fill-rule="evenodd"/> 6 - <path d="m307.61 159.76c-3.073 0.204-7.887 0.204-10.685 0-2.799-0.203-0.275-0.376 5.597-0.376s8.161 0.173 5.088 0.376z" fill-opacity=".3"/> 7 - </g> 8 - </svg>
-5
packages/icons/assets/Path-Erudition-v2.svg
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <svg version="1.1" viewBox="0 0 612 612" xmlns="http://www.w3.org/2000/svg"> 3 - <path d="m187.3 79.27c7.073 0.2537 10.624 0.954 15.728 3.0649 3.623 1.502 9.468 4.6684 19.372 11.336l-0.021 5.5818c-0.01 3.0751-0.274 5.8051-0.588 6.0892-0.315 0.2842-3.633-1.4411-7.387-3.8362-3.745-2.3849-9.316-5.2976-12.39-6.485-3.207-1.228-9.041-2.3545-13.699-2.6488-6.535-0.4161-9.599-0.0609-15.728 1.776-4.181 1.2483-10.117 3.5825-13.192 5.1758-3.074 1.5934-7.103 3.9377-12.369 7.5405l0.7-14.208 7.611-4.3335c4.19-2.385 11.04-5.4702 15.22-6.8606 6.342-2.1007 9.133-2.4661 16.743-2.1921zm-2.537 24.144c2.507-0.0305 7.307 0.6596 10.655 1.5426 3.349 0.8829 8.828 2.9938 12.177 4.6785 3.348 1.6949 8.026 4.3944 14.713 8.9004l0.01 118.23-7.296 4.567c-4.018 2.507-9.507 6.282-12.186 8.373-2.689 2.09-9.143 9.174-14.348 15.73-5.206 6.556-10.117 12.432-10.909 13.062-0.791 0.619-7.935 3.136-30.289 10.027l-0.081-170.5 6.849-4.1407c3.775-2.2733 8.686-4.9322 10.918-5.8964 2.233-0.9742 6.566-2.3849 9.64-3.1359 3.075-0.751 7.641-1.4005 10.147-1.4411zm-16.976 38.971c11.193 16.319 14.896 21.049 15.454 21.059 0.559 0 4.252-4.74 8.21-10.534l7.194-10.525c-7.905-11.803-11.446-16.897-12.968-18.937l-2.77-3.7144zm313.51-33.358c4.058 2.4763 11.263 5.7036 16.012 7.165 7.144 2.2023 9.843 2.5676 15.728 2.0906 3.907-0.3247 10.299-1.7862 14.206-3.2577 3.907-1.4716 9.955-4.4857 13.445-6.688 3.491-2.2124 6.565-4.0087 6.85-4.0087 0.274 0 0.507 3.4201 0.507 15.223l-5.835 3.7449c-3.206 2.0703-9.264 5.1149-13.445 6.7692-5.834 2.3141-9.751 3.1261-16.743 3.4711-7.965 0.396-10.106 0.111-16.743-2.2229-4.19-1.4614-10.918-4.709-22.323-11.762l-0.173-6.9417c-0.091-3.8159 0.122-7.1954 0.477-7.51 0.355-0.3147 3.978 1.4512 8.037 3.9275zm0.974 27.919c4.637 2.74 10.725 5.764 13.516 6.718 3.227 1.106 8.199 1.746 13.699 1.746 6.281 0 10.411-0.619 15.22-2.274 3.623-1.248 10.249-4.333 14.714-6.86s8.229-4.5772 8.371-4.5671c0.142 0.0102 0.254 36.779 0.254 163.41l-2.283 0.021c-1.258 0.01-17.129-0.934-35.262-2.101-18.143-1.167-34.003-2.324-37.544-2.994l-0.173-78.49c-0.091-43.163 0.102-78.734 0.436-79.038 0.335-0.2945 4.404 1.695 9.052 4.425zm-378.67 0.964c1.39-0.041 5.388 0.609 8.879 1.441 3.49 0.832 9.193 2.943 12.684 4.689 3.49 1.745 8.28 4.485 10.654 6.089 4.272 2.882 4.313 2.963 4.313 9.002 0 3.349-0.345 6.079-0.761 6.079s-2.131-0.954-3.805-2.111c-1.675-1.157-6.698-3.887-11.162-6.069-4.465-2.182-11.091-4.465-14.714-5.085-5.368-0.913-8.016-0.822-14.206 0.488-4.1908 0.883-11.497 3.481-16.236 5.764-4.7489 2.284-9.8834 5.024-14.206 8.038l0.5074-13.67 6.342-3.816c3.4906-2.111 8.7367-4.791 11.669-5.958 2.9325-1.177 8.067-2.74 11.416-3.471 3.3486-0.74 7.2252-1.37 8.6252-1.41zm1.015 25.666c6.91 0.274 10.137 0.974 16.235 3.552 4.181 1.766 10.229 4.922 19.26 10.778l0.01 56.579c0.01 44.583-0.264 56.579-1.259 56.569-0.7 0-14.967 1.136-31.71 2.517-16.742 1.38-33.069 2.75-42.11 3.582v-119.76l4.8199-2.993c2.6485-1.645 7.5597-4.232 10.908-5.755 3.3486-1.532 8.1381-3.369 10.655-4.1 2.689-0.771 8.0974-1.177 13.192-0.974zm-18.012 37.926c-0.142 0.69 2.7804 5.713 6.4943 11.163 3.7037 5.44 7.0924 10.352 7.5194 10.91 0.436 0.568 3.896-3.735 7.965-9.895 3.958-6.008 7.195-11.367 7.195-11.925s-3.034-5.47-6.748-10.91c-3.714-5.449-7.042-10.26-7.398-10.686-0.355-0.437-3.8251 3.897-7.7115 9.641-3.8864 5.734-7.1741 11.001-7.3162 11.702zm378.55-38.393 0.386 7.906c0.345 7.256 0.193 8.048-1.938 9.712-1.269 0.985-6.423 3.796-11.446 6.242-5.023 2.435-11.649 5.003-14.714 5.693-3.186 0.721-8.635 1.025-12.684 0.731-4.718-0.355-9.66-1.614-14.713-3.725-4.191-1.756-10.239-4.902-19.26-10.747l-0.01-7.358c-0.01-4.049 0.213-7.358 0.497-7.358 0.274 0 4.049 2.05 8.372 4.547 4.323 2.506 10.604 5.561 13.952 6.779 4.313 1.573 8.443 2.233 14.206 2.253 5.277 0.02 10.066-0.619 13.699-1.847 3.065-1.025 8.544-3.359 12.177-5.166 3.622-1.816 7.691-4.282 9.031-5.48zm0.447 27.564c0.142-0.051 0.254 21.606 0.254 96.331l-5.835-0.588c-3.207-0.315-9.944-1.34-24.1-3.979l-8.118-10.869c-4.464-5.977-9.944-12.757-12.176-15.071-2.233-2.324-8.737-7.368-24.861-18.206v-23.342c0-14.889 0.365-23.342 1.015-23.342 0.558 0 2.496 1.106 4.312 2.466 1.817 1.349 6.728 4.09 10.909 6.079 4.19 1.979 10.35 4.11 13.698 4.709 3.349 0.609 8.372 0.791 11.162 0.406 2.791-0.396 8.727-2.03 13.192-3.654 4.464-1.613 10.857-4.719 14.206-6.901 3.348-2.182 6.2-3.999 6.342-4.039zm-400.56 129.82 2.7905 0.081c1.5322 0.041 18.316 1.756 71.792 7.531l0.263 77.637c0.142 42.696 0.031 78.206-0.253 78.906-0.366 0.893-1.786 0.406-4.83-1.644-2.375-1.593-6.708-4.11-9.64-5.582-2.933-1.471-7.956-3.359-11.162-4.201-3.207-0.843-7.885-1.523-10.401-1.523-2.506 0-7.3061 0.701-10.655 1.553-3.3485 0.863-9.5079 3.187-13.699 5.176-4.1806 1.979-8.8687 4.476-10.401 5.541-1.5322 1.076-3.0137 1.949-3.2978 1.949-0.274 0-0.5074-37.226-0.5074-82.712zm483.01 0 0.081 119.25-3.846 2.639c-2.11 1.451-6.129 3.796-8.919 5.216-2.791 1.411-8.27 3.542-12.177 4.73-3.906 1.197-9.609 2.151-12.684 2.141-3.064-0.02-7.864-0.65-10.654-1.39-2.791-0.741-7.357-2.355-10.148-3.593-2.79-1.238-7.691-3.928-16.722-9.743l-0.02-111.64 35.261-3.674c19.391-2.02 36.287-3.735 39.828-3.938zm-50.777 95.357c0.021 0.579 3.268 5.734 7.205 11.458 3.947 5.714 7.367 10.281 7.61 10.149 0.244-0.142 3.663-4.943 7.59-10.656 3.927-5.724 7.124-10.748 7.103-11.164-0.02-0.426-3.176-5.561-7.021-11.417-3.836-5.866-7.256-10.656-7.591-10.656-0.334 0-3.835 4.78-7.772 10.615-3.937 5.846-7.144 11.093-7.124 11.671zm-349.84-87.38 2.192 0.66c1.197 0.365 8.016 2.557 28.097 9.123l7.529 9.134c4.14 5.024 9.864 11.417 12.725 14.208 2.862 2.791 9.396 7.825 23.846 17.294l0.254 23.575c0.162 15.203-0.102 23.575-0.761 23.575-0.558 0-2.497-1.116-4.313-2.466-1.816-1.36-6.717-4.09-10.908-6.079-4.181-1.989-10.35-4.11-13.699-4.719s-8.371-0.791-11.162-0.406c-2.79 0.396-8.726 2.04-13.191 3.664-4.465 1.634-10.969 4.78-20.802 11.021zm317.68 0.213c0.416-0.041 0.761 38.393 0.771 170.92l-6.86 4.161c-3.764 2.284-9.132 5.105-11.923 6.262-2.79 1.167-8.046 2.679-11.669 3.369-5.165 0.985-8.148 0.995-13.699 0.061-3.906-0.659-10.533-2.841-14.713-4.841-4.191-1.999-9.559-4.952-16.236-9.519l-0.02-118.23 7.306-4.567c4.018-2.507 9.498-6.282 12.187-8.373 2.679-2.091 9.843-10.088 26.93-31.715l13.588-3.724c7.458-2.05 13.911-3.765 14.338-3.806zm-50.716 146.57c4.769 7.083 8.239 12.188 10.796 15.913l4.658 6.779 15.475-22.692-15.861-22.449zm-230.11-51.191c3.349-0.04 8.707 0.62 11.923 1.452 3.207 0.842 7.773 2.486 10.148 3.663 2.364 1.178 6.93 3.796 15.961 9.54l0.01 7.358c0 4.049-0.335 7.348-0.751 7.327-0.426-0.01-2.82-1.349-5.327-2.983-2.516-1.634-7.539-4.314-11.162-5.947-3.632-1.645-9.335-3.542-12.684-4.222-3.714-0.751-8.28-0.954-11.669-0.498-3.075 0.396-7.864 1.523-10.655 2.497-2.79 0.964-7.59 3.014-10.654 4.557-3.075 1.532-7.073 3.887-12.177 7.642l-0.091-15.731 3.846-2.649c2.12-1.451 6.707-4.079 10.198-5.835 3.48-1.756 8.736-3.846 11.669-4.648 2.922-0.792 8.067-1.482 11.415-1.523zm363.47 33.156c0.203 3.217 0.132 6.424-0.173 7.125-0.294 0.7-3.166 2.791-6.372 4.648-3.217 1.857-8.808 4.557-12.431 6.008-3.632 1.461-9.568 3.166-13.191 3.795-5.287 0.924-8.016 0.863-13.699-0.314-3.906-0.802-10.076-2.943-13.698-4.76-3.633-1.817-8.544-4.618-10.909-6.211-4.272-2.882-4.312-2.973-4.312-9.002 0-3.349 0.335-6.089 0.761-6.089 0.416 0.01 2.131 0.954 3.805 2.111s6.697 3.887 11.162 6.069c4.556 2.233 10.999 4.445 14.713 5.054 5.277 0.873 8.108 0.771 14.206-0.487 4.181-0.863 11.72-3.583 16.743-6.029 5.023-2.456 10.006-5.206 11.081-6.119 1.887-1.594 1.959-1.462 2.314 4.201zm-438.94 26.884c3.267 0.437 8.351 1.736 11.283 2.893 2.923 1.157 8.636 4.12 20.041 11.092l0.02 6.85c0.021 3.766-0.213 7.196-0.507 7.612s-3.846-1.309-7.884-3.846c-4.069-2.548-11.223-5.795-15.982-7.267-7.154-2.202-9.853-2.557-15.728-2.08-3.9071 0.314-10.3 1.776-14.207 3.247-3.9066 1.482-9.9645 4.486-13.445 6.698-3.4907 2.203-6.5754 4.009-6.8494 4.009-0.2841 0-0.5073-3.43-0.5073-15.223l5.8346-3.755c3.2065-2.06 9.2543-5.074 13.445-6.688 4.1806-1.614 10.066-3.247 13.07-3.633 2.993-0.386 8.138-0.345 11.416 0.091zm288.75 31.299c3.237 2.131 8.858 5.125 12.491 6.637 4.587 1.908 9.061 2.892 14.713 3.237 6.505 0.396 9.62 0.051 15.729-1.786 4.18-1.258 10.116-3.582 13.191-5.176 3.064-1.593 7.103-3.937 12.359-7.54l-0.69 14.208-7.61 4.344c-4.191 2.385-11.497 5.531-16.236 7.002-7.235 2.233-9.944 2.578-16.743 2.172-5.601-0.335-10.167-1.339-14.713-3.217-3.633-1.492-9.478-4.648-19.381-11.316l-0.122-5.673c-0.061-3.115 0.162-5.917 0.497-6.221 0.345-0.315 3.278 1.187 6.515 3.329z" clip-rule="evenodd" fill="#fff" fill-opacity=".3" fill-rule="evenodd"/> 4 - <path d="m304.65 32.271c0.578 0 1.289 2.1718 1.562 4.8206 0.274 2.6488 1.857 12.818 3.511 22.581 1.654 9.7732 4.141 23.24 5.531 29.939 1.39 6.6981 3.48 15.142 4.647 18.775 1.167 3.6333 2.172 6.6982 2.243 6.8098 0.061 0.1218 2.851 0.954 6.2 1.8471 3.348 0.8931 9.284 3.1055 13.191 4.9221 3.907 1.8065 9.843 5.1555 13.191 7.4492 3.349 2.2936 8.899 7.0536 12.35 10.596 3.439 3.541 8.574 10.087 11.405 14.553 2.831 4.465 6.413 11.427 7.945 15.466 1.543 4.05 2.425 7.703 1.959 8.119-0.467 0.427-1.817-0.598-3.004-2.273-1.197-1.674-5.155-6.18-8.798-10.007-3.653-3.836-9.152-8.92-12.217-11.305-3.064-2.385-9-6.201-13.191-8.474-4.181-2.274-10.35-5.075-13.699-6.221-3.349-1.157-9.508-2.802-13.699-3.674-4.18-0.873-12.633-1.594-18.772-1.604-6.139-0.02-13.902 0.467-17.25 1.086-3.349 0.609-8.605 1.847-11.67 2.74-3.064 0.903-8.32 2.781-11.669 4.171-3.348 1.391-9.964 5.095-14.713 8.221-4.739 3.126-12.177 9.357-16.52 13.853-4.353 4.496-8.229 7.835-8.625 7.429-0.406-0.406 1.015-4.293 3.156-8.627 2.131-4.333 5.844-10.625 8.249-13.975 2.405-3.349 7.053-8.646 10.32-11.772 3.278-3.126 8.93-7.5912 12.552-9.9254 3.633-2.3342 9.792-5.5818 13.699-7.2158 3.907-1.6238 8.595-3.3186 10.431-3.7651 2.963-0.7206 3.531-1.4716 5.277-6.9012 1.075-3.349 2.638-8.8293 3.48-12.178s2.446-10.879 3.552-16.745c1.106-5.866 2.912-15.903 4.008-22.327 1.106-6.4241 2.303-14.188 2.669-17.253 0.365-3.0649 0.882-6.3835 1.156-7.3578 0.264-0.97427 0.964-1.776 1.543-1.776zm-33.445 139.04c0.619 0 1.583 2.395 2.141 5.328s0.751 9.672 0.436 14.97c-0.375 6.322-1.674 13.477-3.785 20.804-1.766 6.14-5.368 15.731-7.996 21.313-2.638 5.581-6.656 12.889-8.929 16.238s-7.418 9.966-11.447 14.715c-4.018 4.75-9.761 12.28-12.744 16.746-2.994 4.465-7.52 12.574-10.066 18.014-4.597 9.834-4.617 9.915-3.045 13.7 0.873 2.091 2.811 6.323 4.303 9.388 1.491 3.065 4.272 8.098 6.19 11.163 1.917 3.065 5.895 8.779 8.828 12.686 2.932 3.907 7.022 8.931 9.071 11.164 2.05 2.233 6.129 7.713 9.072 12.178 2.932 4.466 6.961 11.539 8.95 15.731 1.978 4.181 4.952 11.721 6.606 16.745 1.643 5.024 3.571 12.787 4.282 17.253 0.761 4.76 1.045 11.478 0.7 16.238-0.325 4.465-0.853 8.921-1.167 9.895-0.325 0.974-0.923 1.796-1.34 1.806-0.416 0.021-2.059-3.511-3.632-7.865-1.583-4.344-5.53-13.376-8.767-20.074s-9.052-16.979-12.928-22.835c-3.866-5.855-9.508-13.325-12.542-16.593-3.034-3.258-8.25-7.632-11.598-9.722-3.349-2.091-7.874-5.359-10.056-7.267-2.182-1.898-5.622-5.744-7.651-8.535-2.03-2.791-5.835-8.616-8.463-12.939-2.628-4.324-5.581-8.292-6.555-8.799-0.974-0.518-7.478-2.101-14.46-3.522-6.971-1.421-21.126-3.704-31.456-5.084-10.32-1.381-21.969-2.791-25.875-3.126-3.907-0.335-8.697-0.802-10.655-1.046-1.948-0.243-6.291-0.659-9.6399-0.933-3.3486-0.274-9.0513-0.741-12.684-1.025-3.6226-0.295-15.495-0.985-26.383-1.553-10.878-0.568-27.773-1.269-37.545-1.563-12.004-0.365-18.184-0.944-19.067-1.786-0.7306-0.69-1.309-2.162-1.309-3.278 0.010147-1.116 0.83207-2.771 1.8265-3.674 1.5119-1.38 5.7129-1.745 26.16-2.273 13.394-0.345 31.659-1.086 40.589-1.634 8.9295-0.558 19.209-1.248 22.831-1.533 3.6327-0.284 12.075-0.974 18.772-1.552 6.698-0.569 14.004-1.239 16.236-1.482 2.232-0.254 6.799-0.731 10.147-1.076 3.349-0.345 11.568-1.502 18.265-2.588 6.697-1.075 17.108-3.217 23.126-4.749 7.113-1.807 11.101-3.319 11.375-4.303 0.233-0.833 2.79-5.176 5.692-9.642 2.892-4.465 8.047-10.899 11.457-14.299 3.399-3.41 9.386-8.251 13.292-10.758 3.907-2.517 9.123-6.586 11.578-9.042 2.466-2.456 6.505-7.206 8.981-10.555s6.869-9.966 9.761-14.716c2.902-4.749 7.621-13.65 10.513-19.79 2.882-6.139 6.19-14.248 7.346-18.013 1.167-3.766 2.628-6.851 3.258-6.851zm69.904 0c0.517 0 1.228 1.259 1.583 2.791 0.355 1.533 1.989 6.221 3.612 10.402 1.624 4.192 5.277 12.179 8.108 17.761 2.831 5.581 7.458 13.802 10.269 18.267 2.821 4.466 7.214 10.626 9.761 13.701 2.547 3.065 6.008 6.891 7.682 8.484 1.674 1.604 6.24 4.983 10.147 7.531 3.907 2.537 10.299 7.895 14.206 11.914 4.018 4.131 9.305 11.073 17.25 24.712l10.655 2.558c5.865 1.411 16.134 3.461 22.831 4.567 6.697 1.096 14.917 2.273 18.265 2.618 3.349 0.345 7.915 0.822 10.147 1.066 2.233 0.243 9.539 0.923 16.236 1.502 6.697 0.578 14.693 1.268 17.758 1.522 3.074 0.254 14.256 0.934 24.86 1.502s22.933 1.238 27.398 1.482c4.465 0.243 14.622 0.467 22.577 0.507 11.436 0.051 14.775 0.376 15.982 1.583 0.842 0.833 1.543 2.548 1.563 3.806 0.03 1.259-0.538 2.842-1.269 3.532-0.882 0.842-7.062 1.421-19.066 1.786-9.762 0.294-26.657 0.995-37.545 1.563-10.878 0.568-22.75 1.258-26.383 1.553-3.632 0.284-9.335 0.751-12.684 1.025-3.348 0.274-7.681 0.69-9.64 0.933-1.948 0.244-6.747 0.711-10.654 1.046s-15.546 1.745-25.875 3.126c-10.32 1.38-24.476 3.653-31.457 5.064-6.971 1.4-13.709 3.217-14.967 4.019-1.258 0.812-4.891 5.927-8.067 11.366-3.399 5.815-8.311 12.412-11.923 16.015-3.379 3.359-8.645 7.54-11.72 9.276-3.065 1.735-8.321 6.109-11.669 9.722-3.349 3.623-8.686 10.403-11.852 15.081-3.176 4.689-8.494 13.772-11.832 20.186-3.349 6.414-7.823 16.36-9.964 22.094-2.142 5.734-4.242 10.412-4.658 10.402s-1.015-0.822-1.339-1.796c-0.315-0.974-0.843-5.43-1.167-9.895-0.356-4.79-0.061-11.448 0.71-16.238 0.71-4.466 2.648-12.229 4.292-17.253s4.455-12.331 6.251-16.238c1.806-3.907 5.814-10.981 8.929-15.73 3.105-4.75 8.463-11.824 11.893-15.731s8.706-10.757 11.72-15.223c3.014-4.465 7.57-12.452 10.137-17.76s4.658-10.778 4.637-12.179c-0.02-1.39-2.242-7.104-4.941-12.685-2.7-5.582-7.55-13.803-10.777-18.268-3.216-4.465-8.605-11.316-11.963-15.223-3.359-3.907-7.804-9.621-9.874-12.686-2.08-3.075-5.895-9.804-8.483-14.969-2.577-5.166-6.342-14.757-8.341-21.313-2.719-8.9-3.785-14.502-4.211-22.073-0.355-6.434-0.101-12.097 0.69-15.477 0.68-2.933 1.664-5.328 2.172-5.328zm-37.606 18.268c1.106 0 2.699 0.69 3.531 1.522 0.843 0.832 2.213 4.151 3.065 7.358 0.842 3.207 3.633 13.143 6.2 22.073 4.424 15.416 4.891 16.472 9.224 20.805 2.516 2.507 6.433 7.307 8.716 10.656 2.273 3.349 5.612 9.52 7.408 13.701 1.796 4.191 3.876 10.545 4.627 14.117 1.116 5.399 1.958 7.003 4.901 9.398 1.958 1.593 6.636 4.485 10.401 6.434 4.18 2.162 7.042 4.333 7.356 5.572 0.285 1.116-0.06 2.77-0.761 3.684-0.7 0.903-3.774 2.912-6.849 4.465-3.064 1.553-7.407 4.151-9.64 5.775-3.257 2.364-4.292 3.947-5.256 7.956-0.65 2.761-2.588 8.89-4.302 13.64-1.705 4.75-5.46 12.737-8.331 17.76-2.862 5.024-7.621 12.331-10.553 16.238-4.983 6.637-5.652 8.241-10.087 24.357-2.608 9.489-5.286 17.841-5.936 18.562-0.659 0.731-2.111 1.309-3.227 1.309-1.116-0.01-2.75-0.832-3.622-1.827-0.883-0.994-3.592-9.347-6.018-18.551-3.531-13.356-5.073-17.568-7.64-20.805-1.766-2.233-5.206-7.033-7.631-10.656s-6.332-10.474-8.666-15.223c-2.344-4.75-5.449-12.392-6.91-17-1.451-4.607-2.618-9.174-2.588-10.148 0.021-0.974-1.461-2.974-3.297-4.435-1.847-1.462-6.312-4.283-9.945-6.262-3.622-1.979-7.164-4.323-7.864-5.206s-1.157-2.365-1.015-3.299c0.142-0.943 4.14-3.927 8.879-6.647 4.749-2.72 9.417-5.724 10.381-6.678 0.954-0.944 2.679-5.379 3.815-9.844 1.137-4.465 3.572-11.316 5.409-15.223 1.846-3.907 4.759-9.154 6.484-11.671 1.735-2.507 4.18-5.704 5.439-7.104 1.258-1.391 3.571-3.907 5.144-5.582 2.111-2.253 3.785-6.353 6.444-15.73 1.978-6.973 4.556-16.34 5.733-20.805 1.177-4.466 2.77-9.144 3.551-10.403 0.782-1.258 2.324-2.283 3.43-2.283zm-17.291 81.697c-2.75 5.582-5.743 13.345-6.646 17.253-1.126 4.83-1.502 9.712-1.167 15.223 0.335 5.439 1.613 11.468 3.897 18.267 1.867 5.582 5.631 14.026 8.371 18.775 2.73 4.75 6.961 11.255 9.406 14.462l4.425 5.836c6.189-8.261 10.045-14.533 12.552-19.283 2.516-4.749 6.027-12.96 7.823-18.267 2.425-7.186 3.379-12.098 3.755-19.283 0.355-6.81 0.02-11.874-1.157-17.253-0.974-4.424-3.968-12.28-7.174-18.775-3.024-6.14-7.59-14.015-10.147-17.506-2.547-3.491-5.033-6.343-5.51-6.343s-3.704 3.765-7.154 8.372c-3.46 4.608-8.534 12.94-11.274 18.522zm63.339-26.935c0.609-0.03 1.685 0.538 2.385 1.269 0.7 0.72 1.055 1.999 0.771 2.831-0.274 0.832-2.79 3.238-5.581 5.328-2.801 2.091-5.885 3.684-6.859 3.542-0.975-0.142-1.928-1.177-2.111-2.283-0.244-1.421 1.218-3.288 4.962-6.333 2.922-2.375 5.814-4.333 6.433-4.354zm5.175 11.448c1.259 0.162 2.131 1.137 2.283 2.547 0.203 1.827-0.862 2.893-5.327 5.328-3.186 1.736-6.453 2.832-7.61 2.538-1.116-0.274-2.091-1.411-2.162-2.517-0.101-1.441 1.421-2.883 5.328-5.085 3.003-1.695 6.372-2.963 7.488-2.811zm5.328 11.001c0.7-0.051 1.562 0.721 1.928 1.695 0.365 0.974 0.253 2.395-0.254 3.146-0.497 0.761-3.43 2.284-6.494 3.39-3.065 1.106-6.15 1.745-6.85 1.421-0.7-0.335-1.268-1.513-1.268-2.629s0.558-2.375 1.248-2.791c0.68-0.416 3.308-1.522 5.835-2.456 2.526-0.934 5.154-1.735 5.855-1.776zm2.79 12.848c1.674 0.264 3.501 0.904 4.059 1.411 0.676 0.629 0.639 1.526-0.112 2.689-0.882 1.371-2.618 1.746-8.117 1.746-6.779 0-6.992-0.081-6.992-2.537 0-2.182 0.568-2.629 4.059-3.167 2.232-0.345 5.429-0.405 7.103-0.142zm-112.24 43.193c0.781 0.112 1.918 1.005 2.537 1.979 0.811 1.279 0.822 2.274 0.03 3.552-0.609 0.975-4.373 2.923-8.382 4.313-5.641 1.969-7.671 2.284-9.051 1.411-0.974-0.619-1.766-2.212-1.766-3.552 0-2.101 1.025-2.791 7.611-5.166 4.191-1.502 8.25-2.648 9.021-2.537zm7.357 10.951c1.035 0.507 2.12 1.38 2.394 1.938s0.081 1.817-0.436 2.791c-0.518 0.974-4.049 3.339-7.864 5.247-5.145 2.578-7.306 3.197-8.443 2.425-0.832-0.578-1.522-2.131-1.522-3.47 0-1.959 1.33-3.136 6.992-6.14 5.236-2.791 7.468-3.492 8.879-2.791zm6.078 11.072c1.045 0 2.334 0.802 2.871 1.776 0.66 1.218 0.548 2.415-0.365 3.806-0.741 1.116-3.795 3.775-6.809 5.916-3.917 2.781-6.119 3.725-7.752 3.299-1.573-0.406-2.304-1.38-2.354-3.126-0.061-1.979 1.309-3.542 6.22-7.104 3.46-2.517 7.144-4.567 8.189-4.567zm5.449 11.174c1.116-0.051 2.597 0.609 3.298 1.471 0.7 0.853 0.994 2.365 0.669 3.339-0.335 0.974-2.506 4.171-4.82 7.104-2.323 2.933-4.901 5.338-5.743 5.349-0.832 0.01-2.1-0.569-2.811-1.269-0.7-0.71-1.278-1.857-1.268-2.557 0.01-0.701 1.958-3.979 4.333-7.297 2.668-3.735 5.083-6.079 6.342-6.14zm118.37 76.105c0.477 0 0.863 0.456 0.863 1.015 0 0.558-1.167 4.1-2.588 7.865s-4.708 10.28-7.296 14.462c-2.598 4.191-7.712 10.747-11.365 14.573-3.663 3.836-9.396 8.83-12.745 11.113-3.348 2.273-9.284 5.612-13.191 7.419-3.907 1.816-9.843 4.029-13.191 4.922-3.349 0.893-6.139 1.725-6.2 1.847-0.071 0.112-1.076 3.187-2.243 6.81s-3.257 12.077-4.647 18.775-3.877 20.175-5.531 29.939c-1.654 9.773-3.277 19.932-3.612 22.58-0.325 2.649-1.055 4.821-1.613 4.821s-1.208-0.802-1.451-1.776c-0.234-0.974-0.731-4.293-1.096-7.358-0.366-3.065-1.563-10.828-2.669-17.253-1.096-6.424-2.902-16.471-4.008-22.327s-2.71-13.396-3.552-16.745-2.415-8.829-3.49-12.179c-1.918-5.957-2.07-6.119-6.799-7.367-2.659-0.701-8.26-2.913-12.451-4.923-4.18-1.999-9.66-5.054-12.176-6.789-2.517-1.725-7.245-5.673-10.523-8.779-3.267-3.095-7.915-8.372-10.32-11.721-2.405-3.35-6.118-9.642-8.249-13.975-2.141-4.334-3.562-8.221-3.156-8.627 0.396-0.406 4.049 2.7 8.118 6.912 4.059 4.211 10.36 9.763 13.983 12.351 3.632 2.588 9.792 6.282 13.698 8.22 3.907 1.928 10.076 4.435 13.699 5.562 3.633 1.116 9.569 2.587 13.191 3.247 3.633 0.66 11.619 1.198 17.758 1.188 6.494 0 14.561-0.721 19.28-1.705 4.464-0.934 10.857-2.73 14.206-3.999 3.348-1.258 8.371-3.451 11.162-4.871 2.79-1.421 7.813-4.466 11.162-6.759 3.348-2.294 9.224-7.247 13.059-11.002 3.826-3.765 8.351-8.778 10.036-11.153 1.694-2.375 3.47-4.313 3.947-4.313zm-84.618-178.64c0.416-0.01 2.75 3.532 5.196 7.866 2.445 4.333 5.834 11.539 7.549 16.004 2.71 7.074 3.095 9.357 3.034 17.76-0.05 7.592-0.649 11.478-2.831 18.268-1.532 4.75-4.779 13.538-7.235 19.536-2.445 5.998-4.911 10.91-5.469 10.91s-2.77-3.765-4.921-8.373c-2.152-4.607-5.115-12.026-6.576-16.491-1.471-4.466-3.298-11.083-4.069-14.716-0.761-3.623-1.218-8.88-1.015-11.671 0.213-2.791 1.096-7.591 1.969-10.656s3.075-8.779 4.891-12.686 4.526-9.042 6.017-11.417c1.492-2.375 3.044-4.324 3.46-4.334z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/> 5 - </svg>
-18
packages/icons/assets/Path-Hunt-v2.svg
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <svg fill="none" version="1.1" viewBox="0 0 612 612" xmlns="http://www.w3.org/2000/svg"> 3 - <g fill="#fff"> 4 - <g fill-opacity=".3"> 5 - <path d="m181.8 85.992c-1.576-3.3335-2.828-7.1115-2.778-8.4045 0.081-1.9193 0.495-2.2123 2.273-1.6668 1.201 0.3738 3.766 1.7274 5.716 3.0103 1.949 1.293 8.987 7.4549 15.653 13.708 6.665 6.2528 15.299 14.102 19.187 17.455 3.888 3.3437 10.473 8.2833 14.643 10.98 4.161 2.7072 9.16 5.3437 11.109 5.869s5.009 0.9597 10.099 0.9698l-3.03 7.071c-1.676 3.9091-3.494 10.566-5.11 22.728l3.313 2.758c1.817 1.505 5.352 3.324 7.856 4.041 2.505 0.707 7.16 1.283 10.362 1.283 4.938 0 5.907 0.303 6.412 2.02 0.334 1.111-0.02 4.818-2.13 14.435l3.534 4.475c1.949 2.455 8.988 11.283 27.772 34.759l31.518-39.527-1.485-5.556c-0.818-3.061-1.222-6.697-0.909-8.081 0.546-2.333 1.02-2.525 6.433-2.525 3.212 0 7.887-0.576 10.392-1.283 2.504-0.717 6.039-2.536 11.169-6.799l-1.04-7.828c-0.576-4.304-2.343-10.9-6.827-21.466l5.676-0.7576c3.534-0.4646 7.947-2.0607 11.724-4.2325 3.333-1.9092 9.241-6.0306 13.129-9.152s14.037-12.132 22.56-20.011c8.514-7.8893 16.694-15.082 18.178-15.991 1.475-0.9092 3.706-1.9395 4.959-2.2729 1.868-0.505 2.272-0.2121 2.272 1.6567 0 1.2526-1.293 5.0003-2.868 8.3338-1.576 3.3335-6.181 11.738-10.22 18.688-4.05 6.9398-10.008 17.849-13.25 24.244-3.252 6.3842-6.837 14.344-7.978 17.678-1.141 3.333-2.06 6.859-2.06 7.828 0.02 1.223 0.566 1.596 1.788 1.213 0.969-0.303 4.201-2.011 7.18-3.788 2.969-1.778 9.563-6.718 14.643-10.971 5.08-4.2525 15.138-13.253 22.359-19.991 7.22-6.7377 14.946-13.142 21.207-16.223l0.283 2.7779c0.151 1.5355-0.899 5.2831-2.333 8.3439-1.444 3.0507-6.312 11.92-10.826 19.698-4.514 7.778-10.614 18.91-13.563 24.749-2.958 5.828-5.352 11.061-5.322 11.617 0.021 0.555-1.565 2.262-3.534 3.788-2.02 1.565-3.979 4.212-4.494 6.061-0.545 1.949-0.545 4.919 0 7.323 0.505 2.223 1.363 4.606 1.919 5.304 0.673 0.841 0.673 1.431 0 1.767-0.556 0.273-2.939-0.222-5.302-1.111s-7.645-1.687-11.745-1.768c-4.1-0.08-8.19 0.354-9.089 0.96-0.899 0.616-2.272 3.344-3.06 6.061-0.939 3.283-1.282 8.101-1.01 14.304 0.384 8.637 0.263 9.394-1.605 10.041-1.111 0.383-4.525 0.586-13.129 0.192l-16.915 21.829-3.151-5.495c-1.737-3.031-4.383-6.435-8.584-9.657l15.865-19.193-1.434-6.314c-0.899-3.98-1.111-7.152-0.565-8.586 0.767-2 1.464-2.232 5.806-1.94 2.717 0.192 6.979-0.191 9.483-0.828 2.505-0.646 6.251-2.273 12.119-6.071l-0.586-6.818c-0.313-3.748-1.222-8.981-2.02-11.617-1.272-4.263-1.848-4.91-5.221-5.798-2.08-0.556-6.857-1.011-17.42-1.021l-1.929 4.293c-1.07 2.364-2.242 6.789-2.606 9.849-0.363 3.051-0.171 7.829 0.425 10.607 0.838 3.889 0.797 5.374-0.182 6.445-0.939 1.04-2.949 1.242-14.391 0.242l-16.158 20.516c-8.887 11.274-16.027 20.911-15.875 21.396 0.151 0.495 3.676 5.101 15.37 19.586l5.807-7.576 1.505 3.031c0.828 1.667 2.474 5.869 3.655 9.344 1.192 3.475 1.929 7.222 1.657 8.333-0.273 1.112 0.171 3.041 1.01 4.294 1.05 1.575 1.726 6.444 2.201 15.91 0.404 8.091 0.303 13.919-0.252 14.324-0.515 0.373-4.797-4.112-9.523-9.971-4.727-5.859-10.958-13.667-13.866-17.354-2.898-3.687-7.675-9.849-10.604-13.698-2.928-3.849-6.685-8.394-8.351-10.101-1.667-1.708-5.131-5.607-7.686-8.657-2.565-3.061-4.837-6.132-5.049-6.839-0.222-0.717-7.665-10.576-32.71-42.558l-6.564 0.586c-5.352 0.475-6.796 0.283-7.827-1.061-0.969-1.273-0.999-2.636-0.141-5.939 0.646-2.465 0.848-6.869 0.475-10.355-0.364-3.333-1.545-7.99-4.625-14.647l-6.817 0.01c-3.747 0-8.523 0.455-10.604 1.011-3.373 0.888-3.948 1.525-5.221 5.798-0.788 2.636-1.696 7.637-2.02 11.112-0.555 5.939-0.424 6.464 2.192 8.899 1.525 1.424 5.271 3.293 8.331 4.142 3.06 0.858 7.776 1.394 10.493 1.202 4.352-0.313 5.039-0.081 5.807 1.919 0.545 1.434 0.333 4.606-2 14.9l15.754 19.193-2.908 1.767c-1.596 0.97-4.272 4.041-5.938 6.819-1.667 2.778-3.373 4.879-3.787 4.667s-4.171-4.788-15.906-19.951l-5.554 0.263c-3.06 0.141-6.463-0.051-7.574-0.434-1.869-0.647-1.99-1.404-1.606-10.041 0.273-6.203-0.071-11.021-1.01-14.304-0.788-2.717-2.161-5.445-3.06-6.061-0.899-0.606-4.989-1.04-9.089-0.96-4.696 0.101-9.593 0.94-13.259 2.273-4.201 1.536-5.807 1.768-5.827 0.859-0.01-0.697 0.454-1.717 1.03-2.273 0.575-0.556 1.444-2.828 1.939-5.051 0.535-2.414 0.525-5.263-0.031-7.071-0.515-1.667-2.181-4.323-3.696-5.909-1.514-1.576-4.15-6.122-5.847-10.102-1.707-3.97-8.028-15.859-14.067-26.415-6.029-10.556-12.038-21.466-13.351-24.244-1.303-2.7779-2.242-6.3033-1.808-10.617l4.04 1.9799c2.222 1.1011 9.947 7.5055 17.168 14.243 7.22 6.7377 17.279 15.738 22.358 19.991 5.08 4.253 11.675 9.193 14.644 10.971 2.979 1.777 6.21 3.485 7.18 3.788 1.222 0.383 1.767 0.01 1.787-1.213 0-0.969-0.919-4.495-2.05-7.828-1.141-3.334-4.595-11.062-7.695-17.173-3.09-6.1114-9.059-17.021-13.25-24.244-4.201-7.2226-8.927-15.859-10.512-19.193z"/> 6 - <path d="m278.91 256.2 4.595-5.555c2.525-3.061 5.1-5.556 5.716-5.556s2.979 2.555 5.251 5.687c2.273 3.131 4.474 6.313 4.888 7.071 0.485 0.879-0.889 3.576-8.331 13.506l7.574 9.596c4.17 5.283 7.917 9.425 8.331 9.223 0.414-0.212 2.575-2.717 4.797-5.576s4.383-5.182 4.797-5.182c0.414 0.01 3.262 3.202 11.866 14.162l-10.099 12.122 3.858 4.798c2.121 2.637 6.443 8.092 15.33 19.446l-5.302 3.141c-2.918 1.728-6.322 4.112-7.574 5.304-1.242 1.192-2.404 1.929-2.565 1.656-0.172-0.273-2.181-2.778-4.464-5.556-2.282-2.778-4.605-6.182-5.15-7.576-0.556-1.384-11.503-15.364-47.656-59.599l2.373-6.818c1.303-3.748 3.01-8.122 5.201-12.607z"/> 7 - <path d="m261.74 295.85c-0.01-4.859 0.263-10.314 0.606-12.122s1.091-3.283 1.646-3.283c0.566 0 3.02 2.728 9.877 12.122l-5.05 6.566c-2.777 3.606-5.503 6.334-6.059 6.061-0.555-0.283-1.02-4.475-1.02-9.344z"/> 8 - <path d="m276.14 330.32c-0.141-0.212 2.787-4.242 6.504-8.98 3.716-4.727 7.069-8.475 7.432-8.334 0.374 0.152 3.01 3.112 5.868 6.587 2.959 3.606 4.978 6.96 4.685 7.828-0.272 0.829-2.666 4.223-10.098 13.557l-2.525-2.364c-1.384-1.303-4.565-3.617-7.069-5.142-2.505-1.535-4.656-2.949-4.797-3.152z"/> 9 - <path d="m200.14 353.02c1.232 0.889 3.292-1.162 11.098-11.041l9.594-12.142 13.139 13.081-9.251 11.445c-7.533 9.324-9.028 11.728-8.079 12.95 0.647 0.829-1.1-0.373-3.878-2.667-2.777-2.293-7.089-6.091-9.593-8.434-2.495-2.354-3.858-3.788-3.03-3.192z"/> 10 - <path d="m378.88 342.08 6.311-6.021c3.474-3.303 6.544-6.051 6.817-6.101 0.283-0.051 4.595 5.141 9.594 11.536 5.15 6.576 9.644 11.415 10.351 11.152 0.697-0.263 1.262-0.243 1.262 0.04 0 0.273-3.181 3.233-7.069 6.566-3.888 3.334-7.402 6.071-7.826 6.081-0.414 0.011-4.959-5.212-19.44-23.253z"/> 11 - <path d="m356.77 376.65c1.455-2.071 3.646-5.475 4.868-7.556 1.232-2.091 2.656-3.788 3.171-3.788 0.525 0 3.787 3.657 7.251 8.132 4.423 5.707 6.766 7.95 7.826 7.505 0.839-0.343 0.384 0.556-1.009 1.99-1.616 1.687-3.606 2.627-5.555 2.617-1.666-0.01-5.756 0.656-9.089 1.464-3.332 0.819-5.736 1.152-5.342 0.748s-0.515-2.222-4.756-7.334z"/> 12 - <path d="m232.7 381.25c1.555 1.081 2.424 0.364 7.069-5.788 2.919-3.859 5.535-7.051 5.807-7.101 0.283-0.041 1.02 0.96 1.656 2.222 0.626 1.263 2.929 4.415 5.12 7.001 2.182 2.586 4.08 5.091 4.202 5.555 0.121 0.475-0.475 1.425-1.334 2.122-0.868 0.697-1.221 1.788-0.807 2.454 0.535 0.839 0.161 1-1.263 0.546-1.111-0.364-4.059-1.111-6.564-1.677-2.494-0.566-5.908-1.02-7.574-1.02-2.02 0-3.871-0.926-5.554-2.778-1.384-1.525-1.727-2.212-0.758-1.536z"/> 13 - <path d="m140.18 431.71c0.616-0.687 11.441-14.314 24.045-30.285 19.076-24.173 23.197-28.89 24.62-28.112 0.94 0.515 3.909 3.131 6.615 5.808 3.514 3.495 4.676 5.303 4.09 6.394-0.454 0.829-11.139 14.466-46.676 59.094l-1.576 20.203-11.987 16.163c-6.594 8.889-10.028 13.91-7.645 11.152 2.394-2.758 8.433-9.788 22.521-26.214l8.583-1.767c4.727-0.97 8.817-2.162 9.089-2.667 0.283-0.495 8.918-11.445 19.188-24.335 10.28-12.889 18.976-23.082 19.329-22.637 0.353 0.444 2.969 3.646 10.967 13.435l-37.355 46.972v7.829c0 4.303-0.394 8.849-0.879 10.101-0.474 1.243-13.885 19.88-29.791 41.417-15.905 21.526-29.256 38.961-29.68 38.739-0.414-0.212-1.081-4.192-1.475-8.839-0.484-5.667-1.474-9.91-3.029-12.93-1.273-2.475-3.595-5.424-5.171-6.566-2.282-1.657-4.645-2.121-11.866-2.323-5.4935-0.162-9.0079 0.141-9.0079 0.757 0 0.556-0.4948 0.889-1.1108 0.758-0.6463-0.152-1.222-3.202-1.3735-7.324-0.1413-3.889-0.7574-8.889-1.3532-11.111-0.6059-2.223-2.0298-5.294-3.171-6.819-1.1411-1.535-3.5547-3.556-5.3624-4.495-2.5247-1.333-5.5947-1.687-23.48-1.404l2.1207-2.233c1.1614-1.222 15.764-18.364 62.774-73.943l8.453-1.788c4.655-0.99 8.967-2.354 9.594-3.03z"/> 14 - <path d="m412.19 384 5.969-5.808c3.282-3.203 6.473-5.809 7.079-5.809 0.616 0 11.401 13.062 23.984 29.042 12.573 15.971 23.369 29.598 23.985 30.285 0.616 0.676 4.918 2.04 18.026 4.818l30.327 35.861c16.683 19.718 31.286 36.86 34.558 40.315l-10.099-0.162c-7.554-0.121-10.856 0.253-13.129 1.455-1.666 0.889-3.797 2.454-4.736 3.485-0.939 1.03-2.464 3.919-3.373 6.424-0.909 2.496-1.797 7.95-1.979 12.122-0.192 4.384-0.788 7.677-1.424 7.829-0.606 0.131-1.111-0.202-1.111-0.758 0-0.616-3.504-0.919-8.998-0.757-7.221 0.202-9.584 0.666-11.866 2.323-1.575 1.142-3.898 4.091-5.171 6.566-1.555 3.02-2.544 7.263-3.029 12.93-0.394 4.647-1.061 8.627-1.485 8.839-0.414 0.222-13.774-17.213-29.69-38.739-15.906-21.537-29.317-40.508-29.791-42.174-0.465-1.667-0.859-6.213-0.869-17.173l-18.228-22.729c-10.028-12.505-18.43-23.304-18.673-23.991-0.252-0.697 1.939-4.232 4.848-7.859 2.918-3.626 5.645-6.576 6.059-6.566 0.424 0.021 9.059 10.556 19.188 23.426 10.139 12.869 18.662 23.799 18.935 24.294 0.283 0.495 4.373 1.687 17.673 4.424l9.089 10.597c4.998 5.829 11.048 12.859 13.431 15.617s-1.05-2.263-19.592-27.315l-1.616-20.203z"/> 15 - </g> 16 - <path d="m2.8842 37c0.73721 0 2.8176 2.0203 4.6252 4.475 1.8077 2.4648 5.4331 7.5862 8.0588 11.364 2.6256 3.7881 8.2103 12.344 12.401 19.011 4.191 6.667 9.6847 16.213 12.199 21.213 3.5851 7.1316 4.5747 10.182 4.5747 14.142 0.0101 2.7779-0.0908 7.7782-0.212 11.112-0.1414 3.8285 0.3332 7.1822 1.3027 9.0914 0.8483 1.6668 4.2112 5.0003 7.4832 7.4145 3.272 2.4047 13.33 9.5657 38.769 27.436l14.391 0.434c11.735 0.354 16.532 0.99 26.004 3.445 6.383 1.657 17.299 4.93 24.237 7.273 6.938 2.344 15.007 5.334 17.926 6.657 4.928 2.222 5.301 2.647 5.301 5.93 0 2.677-0.676 4.05-2.777 5.636-1.878 1.435-3.756 1.96-5.806 1.647-1.667-0.253-6.666-1.445-11.109-2.657-4.444-1.202-11.715-2.465-16.158-2.798-4.747-0.353-10.159-0.131-13.128 0.546-2.778 0.636-6.868 2.424-9.089 3.97-2.464 1.727-4.999 4.788-6.484 7.838-1.818 3.708-2.464 6.718-2.474 11.577-0.03 5.828 0.374 7.192 3.555 12.122 1.969 3.06 5.807 7.616 8.533 10.141 2.717 2.526 7.443 6.415 10.503 8.637 3.06 2.233 7.826 5.364 10.604 6.98 2.777 1.607 6.998 3.859 9.381 5.001 4.121 1.97 4.575 2.646 9.342 13.94 2.757 6.525 5.009 12.324 5.009 12.879 0 0.556-0.344 1-0.758 0.99s-6.887-3.252-14.39-7.212c-7.504-3.95-17.956-9.465-23.228-12.243-5.271-2.778-13.007-6.849-17.167-9.041-4.161-2.192-8.867-5.192-10.443-6.677-1.575-1.475-3.585-4.051-4.4732-5.718-0.8786-1.667-5.5039-14.495-18.915-53.972l-15.895-11.395c-8.7354-6.273-19.299-13.788-23.48-16.708-5.423-3.798-7.6145-5.95-7.6952-7.576-0.0606-1.253-0.0202-3.182 0.0807-4.293 0.1414-1.364-2.0399-3.99-6.7055-8.081-3.787-3.3339-7.7054-6.9704-8.695-8.0816-0.9897-1.1111-1.7875-3.1618-1.7774-4.5457 0.0101-1.394 0.7069-3.5456 1.5451-4.7982 1.0166-1.5152 2.5348-2.2729 4.5545-2.2729 1.6663 0 4.5041 0.9092 6.3117 2.0204 1.8077 1.101 4.0799 2.0102 5.0494 2.0203 1.3229 0 1.7673-0.8284 1.7774-3.283 0.0101-2.6163-2.7974-7.2024-13.744-22.476-7.564-10.556-14.835-21.011-16.158-23.234-1.7774-3.0002-2.7873-7.162-3.9284-16.162-0.8382-6.667-1.6057-13.981-1.6966-16.243-0.090889-2.2728 0.21207-4.4346 0.67662-4.7982 0.46455-0.37376 1.4441-0.6768 2.1914-0.6768zm607.13 0.20203c1.141 0.22223 1.747 1.5859 1.959 4.3538 0.171 2.2122-0.404 9.7076-1.273 16.657-1.191 9.4955-2.171 13.627-3.979 16.668-1.323 2.2223-8.594 12.677-16.158 23.234-10.947 15.274-13.754 19.86-13.744 22.476 0.01 2.4546 0.454 3.283 1.777 3.283 0.97-0.0101 3.242-0.9193 5.05-2.0203 1.807-1.1112 4.645-2.0204 6.311-2.0204 2.02 0 3.538 0.7577 4.555 2.2729 0.838 1.2526 1.525 3.4042 1.525 4.7982 0.01 1.3839-0.566 3.2325-1.262 4.1013-0.707 0.8586-4.616 4.4951-8.685 8.081-5.019 4.415-7.342 7.152-7.211 8.526 0.111 1.111 0.142 3.04 0.081 4.293-0.081 1.626-2.323 3.829-7.938 7.768-4.302 3.031-9.19 6.465-10.856 7.657-1.666 1.182-8.715 6.223-28.276 20.254l-8.645 25.476c-4.756 14.001-9.371 26.829-10.26 28.496s-2.909 4.243-4.484 5.718c-1.575 1.485-6.281 4.485-10.442 6.677-4.171 2.192-11.886 6.263-17.168 9.041s-15.734 8.293-23.227 12.243c-7.503 3.96-13.977 7.202-14.391 7.212s-0.757-0.434-0.757-0.99c0-0.555 2.252-6.354 5.009-12.879 4.766-11.294 5.221-11.97 9.341-13.94 2.383-1.142 6.605-3.384 9.382-5.001 2.777-1.606 8.23-5.283 12.118-8.162s8.948-7.222 11.25-9.647c2.293-2.424 5.444-6.465 7.009-8.96 2.353-3.778 2.828-5.656 2.817-11.111-0.02-4.879-0.646-7.859-2.474-11.577-1.484-3.05-4.019-6.111-6.483-7.838-2.222-1.546-6.312-3.334-9.089-3.97-2.969-0.677-8.382-0.899-13.128-0.546-4.444 0.333-11.715 1.596-16.158 2.798-4.444 1.212-9.443 2.404-11.109 2.657-2.05 0.313-3.928-0.212-5.807-1.647-2.1-1.586-2.777-2.959-2.777-5.636 0-3.283 0.374-3.708 5.302-5.93 2.918-1.323 10.977-4.313 17.925-6.657 6.938-2.343 17.845-5.616 24.237-7.273 9.473-2.455 14.27-3.091 40.395-3.879l16.411-11.526c9.028-6.344 19.086-13.505 22.358-15.91 3.272-2.4142 6.635-5.7477 7.483-7.4145 0.97-1.9092 1.444-5.2629 1.303-9.0914-0.121-3.3335-0.222-8.3338-0.212-11.112 0-3.9598 0.99-7.0105 4.575-14.142 2.514-5.0003 8.008-14.546 12.199-21.213s9.776-15.223 12.401-19.011c2.626-3.778 6.302-8.9196 8.17-11.415 2.06-2.7577 4.05-4.4144 5.05-4.2224zm-347.47 201.81c0.949-0.01 2.262 0.565 2.929 1.262 0.656 0.707 0.939 1.97 0.626 2.798-0.313 0.829-2.171 5.607-4.131 10.607-1.949 5-4.17 11.597-4.928 14.647-0.757 3.051-1.666 12.375-2.009 20.708-0.394 9.587-0.192 18.304 0.555 23.739 0.737 5.404 2.636 12.152 5.1 18.183 2.151 5.283 4.393 12.556 4.989 16.162 0.596 3.607 1.302 8.152 1.575 10.102 0.273 1.949 0.808 7.394 1.192 12.122 0.383 4.727 0.384 9.495 0.01 10.606-0.636 1.839-1.111 1.617-5.292-2.525-2.525-2.505-6.695-7.505-9.271-11.112-2.575-3.606-6.15-9.525-7.937-13.132-1.798-3.606-4.444-10.202-5.898-14.647s-2.918-8.768-3.242-9.596c-0.333-0.829-0.686-2.203-0.787-3.031s-0.263-2.535-0.364-3.788c-0.091-1.253-0.626-2.273-1.181-2.273-0.556 0-1.01 2.041-1.01 4.546s0.454 5.677 1.01 7.071c0.555 1.384 0.777 2.98 0.505 3.536-0.283 0.555-4.706-3.132-9.847-8.183-5.14-5.061-12.068-10.717-15.4-12.576-3.333-1.869-8.332-3.92-11.109-4.566-3.918-0.919-6.402-0.899-11.109 0.091-3.332 0.707-9.018 2.798-19.187 8.041l-7.796-5.799c-4.282-3.192-7.807-6.03-7.837-6.303s3.03-2.535 6.786-5.02c3.757-2.485 9.776-5.587 13.391-6.9 3.606-1.303 6.686-2.454 6.847-2.555 0.152-0.091-1.343-2.677-3.312-5.728-1.979-3.051-4.676-7.829-5.999-10.607s-3.363-7.889-4.514-11.364c-1.161-3.475-1.767-6.839-1.353-7.495 0.525-0.818 3.191-0.99 8.836-0.556 6.373 0.485 9.574 1.354 15.148 4.101 6.352 3.122 7.342 4.031 9.766 8.89 1.484 2.98 4.716 8.142 7.18 11.475 2.747 3.707 7.19 7.91 11.442 10.829 3.827 2.626 9.452 5.879 18.067 9.667l1.323-6.707c0.727-3.697 2.696-10.809 4.362-15.809 1.677-5 5.948-14.779 9.513-21.719 3.555-6.949 7.403-13.647 8.544-14.899 1.151-1.253 2.868-2.283 3.817-2.293zm87.263 0.02c1 0 2.737 1.02 3.868 2.273 1.121 1.252 4.949 7.95 8.503 14.899 3.565 6.94 7.837 16.719 9.513 21.719 1.667 5 3.636 12.112 5.686 22.516l5.554-2.444c3.05-1.344 8.685-4.597 12.513-7.223 4.251-2.919 8.695-7.122 11.441-10.829 2.465-3.333 5.696-8.495 7.181-11.475 2.423-4.859 3.413-5.768 9.765-8.89 5.575-2.747 8.776-3.616 15.148-4.101 5.645-0.434 8.312-0.262 8.837 0.556 0.414 0.656-0.192 4.02-1.354 7.495-1.151 3.475-3.191 8.586-4.514 11.364s-4.019 7.556-5.998 10.607c-1.97 3.051-3.464 5.637-3.313 5.728 0.162 0.101 3.232 1.252 6.847 2.555 3.605 1.313 9.634 4.415 13.391 6.9s6.817 4.747 6.786 5.02c-0.03 0.273-3.554 3.111-15.632 12.102l-6.565-3.384c-3.615-1.859-9.29-3.96-12.623-4.677-5.241-1.122-6.918-1.081-12.371 0.363-3.474 0.909-8.695 3.182-11.614 5.061-2.918 1.869-9.28 7.324-14.138 12.122-4.857 4.788-9.068 8.263-9.341 7.708-0.283-0.556-0.051-2.152 0.505-3.536 0.555-1.394 1.01-4.566 1.01-7.071s-0.344-4.556-0.758-4.556c-0.414-0.01-1.605 3.515-2.646 7.829-1.03 4.313-3.261 11.475-4.958 15.92-1.697 4.444-4.211 10.122-5.595 12.627-1.373 2.505-4.453 7.273-6.826 10.606-2.374 3.334-6.383 8.102-8.908 10.607-4.18 4.142-4.655 4.364-5.291 2.525-0.374-1.111-0.374-5.879 0.01-10.606 0.383-4.728 0.919-10.173 1.191-12.122 0.273-1.95 0.98-6.495 1.576-10.102 0.596-3.606 2.838-10.879 4.989-16.162 2.464-6.031 4.362-12.779 5.099-18.183 0.748-5.435 0.95-14.152 0.556-23.739-0.343-8.333-1.252-17.657-2.01-20.708-0.757-3.05-2.979-9.647-4.928-14.647-1.959-5-3.817-9.778-4.13-10.607-0.313-0.828-0.051-2.08 0.575-2.777 0.637-0.697 1.97-1.263 2.969-1.263zm-215.81 63.084c2.222 0.343 5.938 1.859 8.271 3.364 2.323 1.515 12.775 9.98 23.227 18.809 10.442 8.839 19.905 16.95 21.016 18.031 1.999 1.96 1.939 1.96-9.089 1.263-7.847-0.495-11.998-1.233-14.138-2.495-1.667-0.99-4.848-2.111-7.07-2.485-2.221-0.384-6.544-0.142-9.593 0.525-4.363 0.95-9.17 3.667-22.47 12.677-9.301 6.314-17.602 11.476-18.43 11.476-0.839 0-1.97-0.909-2.525-2.02-0.858-1.708 0.303-3.688 7.554-12.88 4.706-5.97 8.574-11.425 8.584-12.122s-0.212-1.262-0.485-1.262c-0.283 0-2.717 1.707-5.423 3.788-2.706 2.08-8.271 6.555-12.371 9.939-4.1 3.395-8.594 6.738-9.9775 7.435-1.3936 0.707-4.1203 1.293-6.0593 1.303-1.949 0.01-4.6757-0.333-6.0592-0.757-1.3936-0.425-5.0292-2.485-8.079-4.576-3.0599-2.081-6.9176-5.213-11.614-10.132l3.0297-2.455c1.6663-1.353 3.484-2.475 4.0395-2.505 0.5554-0.03 2.5953 1.101 4.5444 2.505 2.2419 1.627 4.8272 2.536 7.0691 2.505 1.939-0.03 4.5445-0.606 5.7664-1.283 1.2321-0.666 9.7857-8.495 19.006-17.384 9.715-9.354 18.976-17.365 22.006-19.021 4.231-2.314 5.998-2.738 9.27-2.243zm346.39-0.444c1.111-0.041 4.373 1.191 7.251 2.737 3.12 1.677 11.997 9.324 22.005 18.971 9.22 8.889 17.774 16.718 19.006 17.384 1.222 0.677 3.827 1.253 5.766 1.283 2.242 0.031 4.828-0.878 7.07-2.505 1.938-1.404 3.989-2.535 4.544-2.505s2.373 1.152 7.069 4.96l-3.03 3.172c-1.666 1.747-5.534 4.879-8.583 6.96-3.06 2.091-6.696 4.151-8.079 4.576-1.394 0.424-4.121 0.767-6.06 0.757-1.939-0.02-4.898-0.707-6.564-1.545-1.666-0.839-5.029-3.273-7.463-5.415-2.444-2.141-7.675-6.495-11.613-9.667-3.949-3.182-7.524-5.798-7.938-5.808-0.414-0.02-0.747 0.535-0.737 1.232s3.878 6.152 8.584 12.122c7.251 9.192 8.412 11.172 7.554 12.88-0.556 1.111-1.697 2.02-2.525 2.02-0.838 0-9.129-5.162-18.43-11.465-13.27-9.001-18.107-11.728-22.47-12.688-3.06-0.667-7.372-0.909-9.594-0.525-2.222 0.374-5.403 1.495-7.069 2.485-2.141 1.262-6.292 2-14.138 2.495-11.028 0.697-11.089 0.697-9.089-1.263 1.111-1.081 10.593-9.192 21.076-18.031 10.472-8.829 20.248-16.961 21.712-18.062 1.454-1.101 4.242-2.555 6.191-3.242 1.939-0.677 4.443-1.273 5.554-1.313zm-211.06 34.335c0.273 0 2.434 0.969 4.797 2.151 2.363 1.192 6.07 3.576 8.241 5.304 2.171 1.737 5.918 5.656 8.311 8.707 2.404 3.051 5.171 7.142 6.15 9.092 1.01 2 3.424 4.414 9.362 7.576l3.787-2.021c2.151-1.141 4.564-3.555 5.574-5.555 0.98-1.95 3.747-6.041 6.15-9.092 2.394-3.051 6.14-6.97 8.312-8.707 2.171-1.728 5.877-4.112 8.24-5.304 2.363-1.182 4.494-2.04 4.747-1.899 0.252 0.142-0.384 2.98-1.414 6.314-1.04 3.333-2.394 9.697-3.03 14.142-0.858 6.051-0.848 10.748 0.02 18.688 0.899 8.232 0.879 11.505-0.08 14.647-0.677 2.222-2.909 5.859-4.969 8.081-2.05 2.222-4.928 5.627-6.382 7.576-2.323 3.091-2.464 3.728-1.192 5.051 1.04 1.091 1.242 2.495 0.687 5-0.546 2.516-1.535 3.778-3.545 4.546-1.535 0.586-2.777 1.626-2.777 2.323 0.01 0.697-0.899 3.081-2.01 5.304-1.111 2.222-3.686 5.293-5.726 6.818-2.04 1.526-4.918 2.778-6.392 2.778-1.475 0-4.353-1.252-6.393-2.778-2.04-1.525-4.615-4.596-5.726-6.818-1.111-2.223-2.019-4.607-2.009-5.304 0-0.697-1.243-1.737-2.778-2.323-2.009-0.768-2.999-2.03-3.544-4.546-0.556-2.505-0.354-3.909 0.686-5 1.273-1.323 1.132-1.96-1.191-5.051-1.454-1.949-4.333-5.354-6.383-7.576-2.06-2.222-4.292-5.859-4.968-8.081-0.96-3.142-0.98-6.415-0.081-14.647 0.869-7.94 0.879-12.637 0.02-18.688-0.636-4.445-2.009-10.809-3.06-14.142-1.05-3.334-1.918-6.172-1.929-6.314 0-0.141 0.213-0.252 0.495-0.252zm-89.374 13.202c0.829 0.021 5.151 0.445 9.594 0.94 7.251 0.798 8.443 1.242 11.614 4.343 1.939 1.889 6.715 6.082 10.603 9.294 3.888 3.222 10.887 9.314 15.553 13.536 7.281 6.596 9.129 7.768 13.128 8.303 2.555 0.344 8.17 1.364 20.298 3.92l4.949 6.818c2.716 3.748 10.21 13.637 28.357 37.124l-8.321 0.252c-6.544 0.202-8.887-0.121-10.978-1.515-1.454-0.97-6.695-7.223-11.644-13.89-4.938-6.667-9.765-12.465-10.724-12.879-0.96-0.414-3.444-0.768-5.524-0.778-2.404-0.01-4.616 0.727-6.06 2.02-2.08 1.869-2.272 2.93-2.272 12.647 0 9.203-0.232 10.688-1.767 11.203-1.293 0.434-3.878-1.667-9.634-7.829-4.323-4.636-8.998-10.02-10.392-11.96-2.191-3.071-2.595-4.94-3.615-24.749l-5.787-5.556c-3.181-3.05-8.483-8.02-11.785-11.041-3.302-3.02-9.089-8.475-12.876-12.121-4.847-4.677-6.483-6.859-5.554-7.375 0.727-0.414 1.999-0.727 2.837-0.707zm251.46 0.091c1.384-0.07 3.121 0.202 3.848 0.616 0.929 0.516-0.707 2.698-5.555 7.375-3.787 3.646-9.573 9.101-12.875 12.121-3.303 3.021-8.605 7.991-17.572 16.597l-0.546 10.607c-0.474 9.202-0.878 11.071-3.07 14.142-1.393 1.94-6.069 7.364-10.391 12.051-5.969 6.455-8.291 8.344-9.634 7.829-1.525-0.596-1.768-2.132-1.768-11.294 0-9.717-0.192-10.778-2.272-12.647-1.444-1.293-3.656-2.03-6.059-2.02-2.08 0.01-4.565 0.364-5.524 0.778-0.96 0.414-5.787 6.212-10.725 12.879-4.948 6.667-10.19 12.92-11.644 13.89-2.09 1.394-4.433 1.717-19.299 1.263l11.715-15.153c6.433-8.334 13.926-18.172 16.653-21.86 3.252-4.404 5.897-6.959 7.725-7.424 1.525-0.394 3.898-0.919 5.292-1.172 1.384-0.263 4.343-0.889 6.564-1.394 2.222-0.515 5.403-0.96 7.069-0.99 2.273-0.05 4.676-1.606 9.594-6.222 3.605-3.384 9.059-8.243 12.119-10.789 3.05-2.556 8.937-7.606 13.067-11.233 7.251-6.364 7.746-6.616 14.139-7.212 3.645-0.334 7.756-0.667 9.149-0.738zm-181.02 66.539c0.697-0.02 2.171 0.424 3.282 0.98s4.939 5.445 14.977 20.708l8.412 1.869c4.635 1.03 10.008 2.697 11.957 3.687 1.939 1 6.372 4.818 9.846 8.485s6.766 6.667 7.322 6.667c0.555 0 3.847-3 7.321-6.667s7.898-7.485 9.847-8.485c1.939-0.99 7.321-2.657 20.369-5.556l6.483-9.849c3.969-6.041 7.514-10.303 9.16-11.021 2.04-0.889 3.262-0.889 5.049 0 2.272 1.132 2.394 1.768 3.121 17.082 0.414 8.748 0.757 19.132 0.757 23.062 0 6.233-0.353 7.627-2.777 10.859-1.525 2.041-6.302 6.364-10.604 9.617-4.302 3.242-9.392 7.677-11.29 9.849-1.909 2.161-4.949 7.121-6.746 11.01-1.798 3.89-4.403 10.253-5.777 14.143-1.383 3.889-3.676 10.94-5.089 15.657-1.414 4.717-4.03 10.859-5.807 13.637-1.778 2.778-4.181 5.849-5.342 6.839-1.162 0.98-3.585 2.454-5.393 3.283-2.828 1.293-3.737 1.303-6.564 0.091-1.808-0.768-4.989-3.273-7.069-5.556-2.081-2.283-4.646-5.859-5.696-7.94s-2.898-7.202-4.11-11.364c-1.212-4.172-3.141-10.304-4.272-13.637-1.141-3.334-3.838-9.809-5.989-14.395-2.161-4.586-5.392-9.99-7.2-12.021-1.808-2.03-6.807-6.354-11.109-9.596-4.302-3.253-9.078-7.576-10.603-9.617-2.424-3.232-2.778-4.626-2.778-10.859 0-3.93 0.344-14.314 0.758-23.072 0.656-13.617 1.02-16.061 2.525-16.89 0.969-0.535 2.332-0.98 3.029-1zm53.948 56.831c0.737 1.546 1.565 2.819 1.848 2.819 0.272 0 1.111-1.273 1.848-2.819 1.131-2.353 1.131-3.192 0-5.091-0.737-1.252-1.596-2.283-1.899-2.273-0.303 0-1.141 1.021-1.848 2.273-1.07 1.859-1.06 2.788 0.051 5.091z" clip-rule="evenodd" fill-rule="evenodd"/> 17 - </g> 18 - </svg>
-64
packages/icons/assets/Path-Nihility-v2.svg
··· 1 - <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 - <svg 3 - width="612" 4 - height="612" 5 - viewBox="0 0 612 612" 6 - fill="none" 7 - version="1.1" 8 - id="svg5" 9 - sodipodi:docname="Path-Nihility-v2.svg" 10 - inkscape:version="1.4.2 (ebf0e940, 2025-05-08)" 11 - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 12 - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 13 - xmlns="http://www.w3.org/2000/svg" 14 - xmlns:svg="http://www.w3.org/2000/svg"> 15 - <defs 16 - id="defs5" /> 17 - <sodipodi:namedview 18 - id="namedview5" 19 - pagecolor="#030303" 20 - bordercolor="#000000" 21 - borderopacity="0.25" 22 - inkscape:showpageshadow="2" 23 - inkscape:pageopacity="0.0" 24 - inkscape:pagecheckerboard="true" 25 - inkscape:deskcolor="#d1d1d1" 26 - inkscape:zoom="0.94013422" 27 - inkscape:cx="314.84866" 28 - inkscape:cy="345.16348" 29 - inkscape:window-width="1712" 30 - inkscape:window-height="970" 31 - inkscape:window-x="2560" 32 - inkscape:window-y="35" 33 - inkscape:window-maximized="0" 34 - inkscape:current-layer="svg5" /> 35 - <path 36 - fill-rule="evenodd" 37 - clip-rule="evenodd" 38 - d="m 336.594,0.248877 c 14.732,0.387105 25.57,1.255473 34.146,2.730663 6.911,1.1927 17.036,3.37932 22.512,4.8545 5.477,1.47518 14.66,4.57206 20.419,6.87376 5.759,2.3121 14.241,6.4029 18.848,9.1022 4.607,2.6992 11.874,7.7316 16.146,11.1841 4.262,3.4631 9.759,8.6419 12.199,11.519 2.429,2.8772 6.125,7.8154 8.209,10.9854 2.073,3.1701 3.77,5.9845 3.77,6.2774 0,0.293 -12.848,0.8579 -28.544,1.2764 -17.131,0.4499 -32.094,1.3706 -37.434,2.3122 -4.89,0.8579 -13.246,2.6365 -18.544,3.9547 -5.309,1.3183 -9.55,2.511 -9.424,2.647 0.115,0.1465 7.528,1.8518 16.45,3.7978 8.921,1.9355 23.298,5.4508 31.936,7.8049 8.639,2.3435 23.487,6.926 32.984,10.1798 9.508,3.2537 24.104,8.9243 32.46,12.5963 8.356,3.673 20.147,9.626 26.209,13.225 6.073,3.599 14.314,8.997 18.325,11.979 4.02,2.982 11.141,9.343 15.842,14.124 4.702,4.781 11.225,12.461 14.503,17.064 3.267,4.603 8.115,12.366 10.774,17.263 2.66,4.896 6.786,13.831 9.173,19.878 2.387,6.047 5.539,15.223 7.005,20.402 1.476,5.178 3.466,12.952 4.429,17.262 0.964,4.321 2.702,13.968 3.864,21.448 1.435,9.27 2.325,21.866 2.796,39.568 0.607,22.84 0.503,25.884 -0.88,25.34 -0.869,-0.345 -3.874,-6.371 -6.68,-13.412 -2.806,-7.031 -8.932,-21.019 -13.613,-31.094 -4.67,-10.065 -12.418,-25.371 -17.224,-34.003 -4.796,-8.631 -12.607,-21.573 -17.351,-28.771 -4.743,-7.188 -12.429,-17.786 -17.068,-23.54 -4.638,-5.755 -12.617,-14.47 -17.727,-19.376 -5.11,-4.897 -12.115,-11.07 -15.571,-13.717 -3.455,-2.647 -10.282,-7.407 -15.183,-10.598 -4.89,-3.18 -13.612,-8.15 -19.371,-11.038 -5.759,-2.887 -14.712,-6.967 -19.895,-9.049 -5.183,-2.093 -14.136,-5.169 -19.895,-6.843 -5.759,-1.674 -12.356,-3.316 -14.659,-3.651 -3.634,-0.523 -5.047,-1.632 -10.733,-8.412 -3.602,-4.3 -6.576,-8.401 -6.607,-9.123 -0.032,-0.722 -1.131,-6.0158 -4.817,-22.2323 l -2.534,7.083 c -1.393,3.8919 -2.775,7.0725 -3.058,7.062 -0.282,0 -3.822,-2.3854 -7.853,-5.2835 -4.031,-2.898 -7.686,-5.252 -8.115,-5.2311 -0.429,0.0105 -1.717,-2.9085 -2.859,-6.5075 -1.141,-3.5991 -3.497,-12.1886 -5.235,-19.0937 -1.738,-6.9051 -3.162,-12.9105 -3.162,-13.3394 0,-0.429 2.942,-2.1343 6.544,-3.7769 3.602,-1.6426 8.9,-3.7665 11.78,-4.7081 2.88,-0.952 8.304,-2.3435 18.848,-4.4883 l -5.759,-2.6679 c -3.162,-1.4647 -8.817,-3.4734 -12.565,-4.4464 -3.906,-1.0149 -12.827,-2.0088 -20.943,-2.3227 -9.884,-0.3766 -16.973,-0.0837 -23.559,1.0044 -5.184,0.8475 -9.539,1.4857 -9.686,1.402 -0.136,-0.0733 -1.445,-5.3149 -2.89,-11.6446 -1.445,-6.32966 -2.565,-12.15716 -2.482,-12.95229 0.136,-1.2031636 3.833,-1.349636 21.749,-0.878833 z M 300.06,1.00216 298.008,9.63355 c -1.131,4.74985 -2.89,12.29315 -3.927,16.77105 -1.445,6.2983 -2.345,8.2861 -3.968,8.7779 -1.152,0.3452 -7.508,3.1596 -14.136,6.2355 -6.618,3.0864 -12.168,5.5032 -12.325,5.3567 -0.157,-0.1465 -0.586,-4.2582 -1.612,-18.0475 l -4.387,21.8348 -14.178,9.4789 c -7.801,5.2207 -18.408,12.7744 -23.56,16.8024 -5.162,4.0175 -13.152,10.6088 -17.749,14.6472 -4.607,4.028 -11.853,10.6295 -16.114,14.6575 -4.262,4.028 -11.487,11.802 -16.073,17.263 -4.576,5.461 -11.644,14.877 -15.697,20.925 -4.041,6.047 -9.717,15.693 -12.596,21.447 -2.89,5.755 -6.775,14.459 -8.649,19.355 -1.875,4.897 -4.827,14.543 -6.566,21.448 -1.738,6.905 -3.748,17.263 -4.46,23.017 -0.859,6.884 -1.089,17.253 -0.691,30.341 0.366,12.011 1.235,22.567 2.199,26.679 0.879,3.735 1.623,7.386 1.633,8.108 0.021,0.722 -0.429,1.308 -1.005,1.308 -0.576,0 -3.801,-4.353 -7.173,-9.678 -3.372,-5.325 -8.722,-14.385 -11.8845,-20.14 -3.1622,-5.754 -7.7695,-14.94 -10.2407,-20.401 -2.4607,-5.462 -6.3454,-15.118 -8.6176,-21.448 -2.2618,-6.33 -5.445,-16.928 -7.0575,-23.54 -1.6126,-6.612 -3.5288,-16.97 -4.2513,-23.017 -0.8795,-7.366 -1.1099,-18.058 -0.7015,-32.433 0.3351,-11.802 1.3403,-26.386 2.2513,-32.433 0.9005,-6.048 2.869,-16.3947 4.3559,-23.0174 1.4974,-6.6121 4.5863,-17.4406 6.869,-24.0632 2.2722,-6.6122 6.6701,-17.2105 9.7695,-23.5402 3.0994,-6.3297 7.5391,-14.4484 9.8742,-18.0474 2.3352,-3.5991 4.8272,-6.5494 5.5492,-6.5599 0.953,-0.0105 1.1,1.0567 0.545,3.9234 -0.419,2.1657 -1.529,10.3053 -2.471,18.0683 -0.943,7.7735 -1.728,21.8976 -1.738,31.3869 -0.011,9.4998 0.523,20.5584 1.193,24.5864 0.66,4.028 1.665,9.7931 3.257,18.3091 l 5.864,-9.155 c 3.225,-5.032 8.984,-13.1507 12.795,-18.0471 3.801,-4.8858 11.885,-14.009 17.958,-20.2549 6.063,-6.2565 14.796,-14.4066 19.403,-18.1207 4.607,-3.7141 12.617,-9.6044 17.801,-13.0884 5.183,-3.4839 14.963,-9.1022 21.727,-12.4815 6.764,-3.3793 17.602,-7.9827 24.083,-10.2216 6.482,-2.239 16.492,-5.08471 22.251,-6.31926 5.759,-1.23455 15.424,-2.88759 21.466,-3.6618 6.042,-0.77421 13.707,-1.46472 23.036,-1.64258 z m 51.287,47.08034 c 0.503,0 0.733,1.9983 0.503,4.4464 -0.22,2.4482 -0.681,7.2713 -1.026,10.7239 -0.335,3.4526 -0.869,7.6898 -1.749,12.5547 l -6.963,-1.9355 c -5.079,-1.4019 -7.759,-2.8248 -9.864,-5.2311 -1.591,-1.81 -2.9,-3.62 -2.911,-4.0071 -0.01,-0.3975 4.733,-4.2791 10.534,-8.6314 5.801,-4.3627 10.963,-7.9199 11.476,-7.9199 z m -306.3612,82.1285 0.7225,21.448 c 0.3874,11.802 1.2774,26.867 1.9685,33.479 0.6911,6.613 2.1675,17.452 3.2774,24.064 1.1204,6.612 3.4764,17.451 5.246,24.063 1.7696,6.612 4.89,16.51 6.9423,21.971 2.0524,5.472 6.4083,15.829 9.6753,23.017 3.2774,7.198 9.3925,19.198 13.5914,26.679 4.1989,7.48 9.937,17.011 12.7432,21.186 3.4764,5.179 4.6806,7.763 3.7905,8.15 -0.7225,0.303 -5.3088,-0.691 -10.2092,-2.218 -4.89,-1.528 -11.9579,-4.31 -15.7066,-6.194 -3.7381,-1.872 -10.5757,-5.639 -15.183,-8.37 -4.6072,-2.72 -7.8742,-4.31 -7.2564,-3.525 0.6178,0.784 3.958,4.969 7.424,9.28 3.4659,4.321 9.1516,10.441 12.628,13.601 3.4869,3.159 10.5129,7.962 15.6123,10.661 6.6073,3.484 9.8742,5.901 11.3402,8.37 1.1204,1.904 6.1465,8.882 11.1408,15.494 5.006,6.612 13.194,16.499 18.189,21.971 4.994,5.472 13.172,13.591 18.167,18.048 4.994,4.456 12.848,10.818 17.434,14.124 4.597,3.306 12.848,8.485 18.324,11.508 5.487,3.013 15.634,7.805 22.545,10.651 6.91,2.835 18.219,6.821 25.13,8.861 6.911,2.03 14.565,4.185 17.015,4.782 2.629,0.638 4.702,1.83 5.058,2.908 0.335,1.004 1.005,2.773 1.487,3.923 0.775,1.852 0.974,1.695 1.749,-1.381 0.691,-2.762 1.298,-3.368 2.963,-2.96 1.152,0.282 7.172,1.37 13.371,2.427 6.272,1.067 11.121,2.375 10.922,2.961 -0.189,0.575 -2.681,2.322 -5.519,3.871 -2.837,1.559 -9.403,4.237 -14.586,5.963 -5.183,1.727 -13.895,3.861 -19.371,4.75 -5.466,0.9 -15.602,1.622 -22.513,1.622 -6.911,-0.011 -17.507,-0.733 -23.56,-1.622 -6.042,-0.879 -15.235,-2.71 -20.418,-4.07 -5.183,-1.349 -14.136,-4.206 -19.895,-6.35 -5.759,-2.135 -15.414,-6.215 -21.466,-9.061 -6.042,-2.845 -16.408,-8.39 -23.036,-12.324 -6.618,-3.934 -17.225,-10.776 -23.56,-15.212 C 84.828,432.31 75.8753,425.478 71.2681,421.576 66.6608,417.663 59.5614,410.998 55.4882,406.772 51.415,402.555 45.2789,395.567 41.8549,391.246 c -3.424,-4.311 -8.6595,-11.844 -11.6333,-16.74 -2.9738,-4.896 -7.0261,-12.419 -9.0051,-16.74 -1.979,-4.31 -5.0261,-12.314 -6.77476,-17.786 -1.74866,-5.471 -3.99994,-14.887 -4.99469,-20.924 -1.4135853,-8.527 -1.696303,-14.616 -1.25652,-27.202 0.345544,-9.856 1.23558,-18.675 2.26174,-22.494 1.21464,-4.541 2.70153,-7.219 5.34023,-9.678 2.6387,-2.469 5.0889,-3.62 8.9109,-4.185 4.1046,-0.606 5.1203,-1.13 4.6072,-2.354 -0.356,-0.858 -1.7382,-5.806 -3.0785,-10.985 -1.3403,-5.179 -3.0052,-13.653 -3.7067,-18.832 -0.6911,-5.179 -0.9948,-12.942 -0.6597,-17.263 0.3246,-4.31 1.3717,-11.613 2.3246,-16.216 0.9528,-4.604 2.89,-12.367 4.3036,-17.263 1.4031,-4.897 4.0208,-12.89 5.8114,-17.786 1.7801,-4.897 4.9214,-12.419 6.9632,-16.74 z M 462.33,188.277 c 0.597,0 6.848,5.127 13.905,11.394 7.058,6.267 19.686,18.392 28.063,26.94 8.387,8.548 17.874,18.843 21.088,22.871 3.205,4.028 8.576,11.56 11.927,16.739 3.351,5.179 7.602,12.712 9.434,16.74 1.833,4.028 5.016,12.743 7.079,19.355 2.659,8.548 5.759,15.516 10.722,24.063 3.843,6.613 8.984,16.269 11.434,21.448 2.451,5.179 5.917,14.009 7.718,19.617 1.79,5.608 4.021,14.553 4.952,19.878 1.267,7.272 1.55,13.716 1.163,25.894 -0.44,13.539 -1.047,18.205 -3.676,28.249 -1.727,6.612 -5.916,18.623 -9.298,26.678 -3.382,8.056 -9.11,19.827 -12.712,26.156 -3.612,6.33 -9.727,15.725 -13.591,20.883 -3.864,5.158 -10.796,13.172 -15.403,17.828 -4.607,4.655 -11.204,10.608 -14.659,13.245 -3.456,2.636 -9.822,6.926 -14.136,9.542 -4.325,2.615 -11.864,6.392 -16.754,8.39 -4.9,1.999 -11.968,4.363 -15.707,5.252 -3.748,0.879 -7.047,1.402 -7.329,1.162 -0.294,-0.241 1.696,-5.033 4.408,-10.64 2.712,-5.619 6.775,-15.16 9.026,-21.197 2.251,-6.037 5.319,-15.934 6.806,-21.971 1.498,-6.037 3.204,-15.578 3.801,-21.186 0.597,-5.608 1.079,-14.794 1.058,-20.401 -0.011,-5.608 -0.482,-14.794 -1.047,-20.402 -0.629,-6.309 -1.812,-11.791 -3.11,-14.386 -1.152,-2.301 -3.393,-5.147 -4.974,-6.308 -1.613,-1.193 -4.503,-2.135 -6.544,-2.135 -2.042,0 -4.943,0.942 -6.545,2.135 -1.581,1.161 -3.11,3.421 -3.392,5.001 -0.283,1.579 -0.744,8.997 -1.027,16.478 -0.282,7.48 -1.476,19.25 -2.659,26.155 -1.183,6.906 -3.728,17.263 -5.655,23.017 -1.926,5.755 -5.643,14.7 -8.251,19.879 -2.607,5.179 -7.235,12.952 -10.282,17.263 -3.047,4.321 -10.032,12.492 -15.539,18.173 -5.498,5.681 -13.299,13.046 -17.33,16.352 -4.031,3.317 -12.042,9.165 -17.801,13.015 -5.759,3.84 -15.423,9.51 -21.465,12.586 -6.053,3.087 -13.466,6.592 -21.989,9.971 l -1.309,-4.206 c -0.723,-2.323 -1.309,-4.195 -1.309,-4.185 0,0.011 -4.712,0.931 -10.471,2.04 -5.759,1.109 -17.068,2.867 -25.131,3.913 -11.696,1.517 -21.874,1.894 -50.261,1.873 -28.481,-0.01 -38.219,-0.387 -48.69,-1.883 -7.204,-1.026 -18.743,-3.045 -25.654,-4.489 -6.911,-1.443 -17.518,-4.048 -23.56,-5.806 -6.052,-1.747 -15.235,-5.012 -20.418,-7.261 -5.184,-2.249 -13.341,-6.309 -18.126,-9.039 -4.775,-2.731 -13.7273,-8.684 -19.8947,-13.246 C 92.5871,564.805 80.9642,554.353 70.7236,544.079 61.2054,534.537 49.6663,521.784 45.08,515.747 40.4937,509.71 33.7922,500.294 30.2006,494.822 c -3.602,-5.471 -6.3245,-10.179 -6.0627,-10.462 0.2723,-0.282 2.5026,1.266 4.9633,3.442 2.4607,2.187 9.4135,7.993 15.4657,12.911 6.0418,4.917 16.8793,12.837 24.0834,17.597 7.1936,4.76 17.8008,11.226 23.5598,14.375 5.7591,3.16 15.183,7.889 20.9419,10.515 5.759,2.636 16.126,6.738 23.036,9.113 6.911,2.385 17.037,5.461 22.513,6.842 5.466,1.37 14.419,3.337 19.895,4.363 7.78,1.454 15.539,1.862 35.602,1.883 20.575,0.031 27.727,-0.356 36.125,-1.904 5.759,-1.067 14.942,-3.097 20.418,-4.509 5.466,-1.413 14.89,-4.499 20.942,-6.843 6.042,-2.354 12.053,-4.321 13.351,-4.384 1.497,-0.062 2.356,-0.763 2.356,-1.935 0,-1.004 0.471,-1.59 1.047,-1.308 0.576,0.283 6.586,-2.27 13.351,-5.691 6.764,-3.421 17.957,-9.96 24.868,-14.532 6.911,-4.583 17.037,-12.084 22.513,-16.667 5.466,-4.593 13.728,-12.293 18.345,-17.116 4.618,-4.823 11.623,-12.764 15.571,-17.66 3.937,-4.897 10.272,-13.601 14.062,-19.356 3.78,-5.754 9.833,-16.112 13.424,-23.017 3.602,-6.905 8.628,-17.733 11.173,-24.063 2.555,-6.33 6.167,-16.457 8.031,-22.494 1.864,-6.037 4.733,-16.865 6.377,-24.063 1.644,-7.188 3.759,-18.958 4.691,-26.156 0.932,-7.188 1.885,-13.318 2.126,-13.601 0.24,-0.282 0.586,-0.282 0.774,0 0.189,0.283 1.414,7.114 2.712,15.17 1.309,8.056 3.529,18.644 4.943,23.541 1.424,4.896 3.968,11.832 5.665,15.431 1.79,3.777 5.895,9.521 9.727,13.601 3.655,3.882 7.822,9.416 9.278,12.294 1.455,2.877 3.623,8.296 4.827,12.031 1.193,3.735 2.89,10.567 3.769,15.171 0.88,4.603 2.084,12.962 2.681,18.57 0.597,5.608 1.11,12.67 1.173,21.186 l 4.23,-4.708 c 2.335,-2.594 5.947,-7.302 8.042,-10.462 2.094,-3.16 4.952,-8.579 6.356,-12.032 1.497,-3.682 2.753,-9.301 3.047,-13.601 0.272,-4.028 0.199,-10.504 -0.157,-14.385 -0.639,-6.759 -0.953,-7.429 -7.592,-15.694 -3.801,-4.75 -8.743,-11.697 -10.984,-15.432 -2.23,-3.735 -5.319,-10.326 -6.859,-14.647 -2.303,-6.455 -2.806,-9.698 -2.837,-18.309 -0.032,-6.821 0.649,-13.371 1.947,-18.832 1.487,-6.215 1.969,-11.864 1.885,-21.971 -0.084,-10.159 -0.67,-15.714 -2.314,-21.971 -1.215,-4.603 -4.126,-12.366 -6.471,-17.262 -2.346,-4.897 -8.178,-14.773 -12.963,-21.971 -4.785,-7.188 -9.874,-15.432 -11.309,-18.309 -1.434,-2.877 -3.79,-8.998 -5.235,-13.601 -1.445,-4.604 -3.163,-11.195 -3.822,-14.647 -0.66,-3.453 -1.435,-7.334 -1.718,-8.632 -0.272,-1.297 -0.021,-2.354 0.566,-2.354 z" 39 - fill="#ffffff" 40 - fill-opacity="0.3" 41 - id="path1" /> 42 - <path 43 - fill-rule="evenodd" 44 - clip-rule="evenodd" 45 - d="m 308.091,6.75644 c 0.796,4.02796 3.843,18.62286 6.786,32.43306 2.932,13.8103 6.712,30.0477 8.397,36.095 1.686,6.0472 4.513,14.9924 6.273,19.8783 1.769,4.8862 4.931,12.7742 7.026,17.5242 3.047,6.916 4.324,8.757 6.418,9.207 1.582,0.335 2.901,0.021 3.33,-0.795 0.388,-0.743 0.964,-3.233 1.267,-5.535 0.314,-2.301 1.299,-8.893 2.178,-14.647 0.89,-5.7542 1.916,-15.1703 2.283,-20.9245 0.366,-5.7543 1.12,-11.6446 1.686,-13.0779 0.565,-1.4438 1.183,-2.1448 1.382,-1.5693 0.188,0.5754 1.602,6.6958 3.131,13.601 1.528,6.9051 4.418,17.7335 6.418,24.0637 2,6.329 5.131,14.699 6.953,18.601 1.822,3.903 3.55,7.094 3.833,7.073 0.282,-0.01 2.104,-4.855 4.041,-10.755 1.938,-5.901 3.938,-11.205 4.44,-11.781 0.492,-0.575 1.152,-0.816 1.445,-0.523 0.293,0.293 1.655,5.231 3.026,10.986 1.372,5.754 3.456,13.287 4.639,16.739 1.183,3.453 3.131,8.516 4.325,11.247 1.382,3.181 5.654,8.506 11.853,14.794 5.329,5.409 12.366,13.528 15.643,18.047 3.278,4.52 8.534,13.162 11.686,19.209 3.141,6.047 6.942,14.867 8.44,19.617 1.487,4.75 3.026,10.63 3.413,13.078 0.618,3.902 0.796,4.122 1.414,1.831 0.377,-1.444 1.361,-7.261 2.167,-12.932 0.817,-5.67 1.948,-10.703 2.524,-11.174 0.67,-0.554 1.351,1.842 1.895,6.655 0.461,4.132 1.508,14.804 2.325,23.728 0.817,8.924 1.487,24.921 1.497,35.572 0.011,10.65 -0.461,25.005 -1.047,31.91 -0.586,6.905 -1.989,19.857 -3.11,28.771 -1.12,8.914 -2.754,20.925 -3.633,26.679 -0.88,5.754 -1.592,10.933 -1.581,11.508 0.014,0.698 -0.332,0.698 -1.037,0 -0.586,-0.575 -1.257,-2.228 -1.497,-3.661 -0.241,-1.444 -0.744,-5.441 -1.11,-8.893 -0.367,-3.453 -0.901,-8.391 -1.173,-10.986 -0.283,-2.594 -0.785,-5.89 -1.131,-7.323 -0.346,-1.444 -0.921,-9.678 -1.916,-34.003 l -1.99,5.231 c -1.099,2.878 -3.895,9.228 -6.219,14.124 -2.325,4.897 -6.765,12.66 -9.885,17.263 -3.11,4.604 -6.723,10.483 -8.021,13.078 -1.309,2.595 -3.581,8.004 -5.068,12.032 -1.487,4.028 -3.319,10.023 -4.084,13.329 -0.764,3.306 -1.738,5.66 -2.167,5.231 -0.429,-0.429 -1.382,-1.957 -2.115,-3.39 -0.775,-1.506 -2.44,-2.762 -3.927,-2.95 -1.853,-0.241 -3.801,0.805 -6.806,3.662 -2.712,2.573 -6.126,7.919 -9.571,14.982 -2.942,6.036 -7.256,16.404 -9.581,23.017 -2.314,6.612 -5.654,16.499 -7.413,21.97 -1.759,5.472 -4.272,14.135 -5.581,19.261 -1.32,5.117 -2.974,9.479 -3.696,9.678 -0.723,0.199 -1.215,0 -1.11,-0.429 0.115,-0.429 -0.147,-4.08 -0.587,-8.108 -0.429,-4.028 -1.696,-12.147 -2.816,-18.048 -1.121,-5.9 -3.089,-13.14 -4.388,-16.091 -1.298,-2.95 -3.183,-5.775 -4.188,-6.277 -1.288,-0.638 -2.618,-0.282 -4.45,1.182 -1.445,1.151 -4.503,5.974 -6.796,10.724 -2.304,4.75 -5.791,14.281 -7.77,21.186 -1.968,6.905 -5.005,19.376 -6.753,27.725 -1.739,8.349 -4.566,23.645 -6.262,34.003 -1.696,10.357 -3.372,21.071 -3.717,23.801 -0.356,2.783 -1.1,4.74 -1.686,4.447 -0.576,-0.283 -0.806,-0.994 -0.524,-1.569 0.283,-0.576 -0.188,-6.341 -1.047,-12.817 -0.869,-6.476 -2.084,-14.835 -2.712,-18.57 -0.628,-3.735 -2.482,-13.863 -4.136,-22.494 -1.644,-8.632 -4.628,-22.044 -6.618,-29.818 -1.989,-7.773 -4.869,-17.419 -6.397,-21.447 -1.529,-4.028 -4.042,-9.626 -5.592,-12.44 -1.55,-2.804 -3.874,-5.985 -5.173,-7.062 -1.633,-1.35 -2.911,-1.674 -4.188,-1.036 -1.005,0.502 -2.953,3.442 -4.325,6.539 -1.371,3.097 -3.602,12.21 -4.973,20.276 -1.362,8.056 -2.482,15.819 -2.492,17.263 -0.011,1.433 -0.44,3.327 -0.943,4.185 -0.66,1.13 -1.56,-0.618 -3.214,-6.278 -1.257,-4.321 -4.796,-15.85 -7.864,-25.632 -3.058,-9.783 -7.068,-21.553 -8.911,-26.156 -1.832,-4.603 -5.058,-11.906 -7.152,-16.217 -2.104,-4.321 -5.958,-10.106 -8.544,-12.868 -3.56,-3.777 -5.361,-4.938 -7.309,-4.708 -1.518,0.188 -3.152,1.402 -3.927,2.929 -0.733,1.434 -1.696,2.961 -2.125,3.379 -0.43,0.419 -1.676,-2.877 -2.765,-7.323 -1.089,-4.447 -3.486,-11.624 -5.319,-15.934 -1.832,-4.321 -7.183,-13.967 -11.884,-21.448 -4.691,-7.48 -10.545,-18.55 -17.466,-35.572 l -0.597,16.217 c -0.335,8.914 -0.869,16.687 -1.204,17.263 -0.335,0.575 -1.152,6.465 -1.822,13.078 -0.681,6.612 -1.435,13.213 -1.686,14.647 -0.251,1.433 -0.806,2.961 -1.236,3.39 -0.429,0.418 -1.811,-5.702 -3.068,-13.601 -1.256,-7.91 -2.795,-18.142 -3.424,-22.745 -0.628,-4.604 -1.633,-12.608 -2.23,-17.786 -0.597,-5.179 -1.351,-20.946 -1.665,-35.049 -0.429,-19.481 -0.146,-30.152 1.183,-44.465 0.964,-10.357 2.074,-21.74 2.472,-25.298 0.575,-5.21 0.973,-6.225 2.062,-5.231 0.754,0.68 1.341,2.407 1.309,3.85 -0.031,1.434 0.398,5.2 0.964,8.37 0.555,3.17 1.308,7.638 1.675,9.939 0.639,4.07 0.733,3.913 3.246,-5.754 1.424,-5.461 3.958,-13.235 5.644,-17.263 1.675,-4.028 5.539,-11.561 8.586,-16.739 3.047,-5.179 7.183,-11.519 9.183,-14.093 2,-2.563 5.288,-6.57 7.288,-8.893 2,-2.323 6.586,-7.041 10.188,-10.494 5.56,-5.325 7.121,-7.669 10.241,-15.432 2.021,-5.032 4.817,-13.747 6.22,-19.355 1.392,-5.608 2.806,-11.498 3.141,-13.078 0.325,-1.579 1.121,-2.762 1.759,-2.615 0.639,0.146 2.869,5.325 4.974,11.508 2.094,6.194 4.042,11.268 4.335,11.289 0.283,0.021 1.895,-2.929 3.571,-6.539 1.665,-3.62 4.167,-9.876 5.549,-13.904 1.382,-4.028 4.367,-14.6161 6.639,-23.5404 2.262,-8.9243 4.115,-17.1582 4.105,-18.309 0.007,-1.3741 0.342,-1.7228 1.005,-1.0462 0.544,0.5754 1.235,3.17 1.529,5.7542 0.293,2.5842 0.827,8.0037 1.172,12.0317 0.356,4.0279 1.602,14.1554 2.775,22.4937 1.173,8.339 2.44,15.568 2.817,16.049 0.377,0.492 1.853,0.649 3.298,0.356 2.115,-0.439 3.351,-2.228 6.419,-9.259 2.094,-4.792 5.246,-12.7222 6.995,-17.6081 1.748,-4.8964 4.136,-12.1886 5.308,-16.2166 1.163,-4.0279 3.341,-12.5024 4.828,-18.8321 1.487,-6.3297 3.162,-13.3917 3.706,-15.6934 0.545,-2.3017 2.451,-11.7178 4.22,-20.9246 1.77,-9.2068 3.487,-17.45112 3.822,-18.30902 0.335,-0.868375 1.257,1.72627 2.052,5.75426 z M 280.689,153.427 c -0.576,-0.251 -6.388,-2.751 -12.922,-5.555 -11.026,-4.74 -12.115,-5.012 -15.183,-3.777 -1.821,0.722 -5.821,2.846 -8.9,4.708 -3.068,1.862 -9.193,6.246 -13.612,9.751 -4.409,3.494 -11.435,10.556 -15.602,15.693 -4.921,6.047 -9.791,13.727 -13.874,21.877 -3.466,6.905 -7.497,16.792 -8.974,21.971 -1.466,5.179 -3.34,13.894 -4.178,19.355 -0.827,5.461 -1.508,16.886 -1.508,25.371 -0.01,11.184 0.555,18.246 2.042,25.633 1.131,5.607 3.278,13.496 4.785,17.524 1.498,4.028 4.618,10.849 6.922,15.17 2.314,4.311 6.712,11.143 9.79,15.171 3.068,4.028 8.806,10.42 12.743,14.207 3.938,3.788 10.231,9.103 13.969,11.812 3.738,2.71 7.392,4.907 8.115,4.886 0.722,-0.021 5.665,-5.011 10.994,-11.079 5.33,-6.058 9.927,-10.996 10.21,-10.944 0.282,0.042 9.947,16.583 21.465,36.765 16.168,28.321 21.183,36.335 21.99,35.142 0.575,-0.857 9.528,-16.425 19.895,-34.598 10.366,-18.163 19.088,-33.072 19.371,-33.124 0.283,-0.042 4.879,4.886 10.209,10.944 5.33,6.068 10.157,11.037 10.733,11.037 0.576,0 3.989,-1.956 7.592,-4.362 3.602,-2.396 10.848,-8.632 16.093,-13.863 5.466,-5.43 12.178,-13.528 15.686,-18.916 3.361,-5.179 7.843,-13.412 9.948,-18.309 2.104,-4.896 4.879,-12.889 6.167,-17.786 1.832,-6.968 2.461,-12.868 2.88,-27.202 0.397,-13.768 0.125,-20.903 -1.121,-28.771 -0.911,-5.754 -2.858,-14.7 -4.314,-19.878 -1.466,-5.179 -5.476,-15.066 -8.911,-21.971 -3.665,-7.345 -9.036,-16.028 -12.942,-20.925 -3.675,-4.603 -9.466,-10.765 -12.858,-13.705 -3.403,-2.93 -9.005,-7.23 -12.461,-9.552 -3.455,-2.323 -8.283,-5.221 -10.733,-6.435 -2.45,-1.224 -5.162,-2.218 -6.021,-2.218 -0.858,0 -6.638,2.156 -12.827,4.802 -6.188,2.637 -11.727,5.001 -12.303,5.263 -0.576,0.262 -6.942,-7.554 -14.136,-17.367 -7.204,-9.804 -13.351,-17.828 -13.654,-17.818 -0.314,0 -5.738,7.104 -12.042,15.777 -6.314,8.663 -11.947,15.547 -12.523,15.296 z" 46 - fill="#ffffff" 47 - id="path2" /> 48 - <path 49 - d="m 185.643,266.221 c -0.23,2.302 -0.419,0.89 -0.419,-3.138 -0.01,-4.028 0.178,-5.912 0.409,-4.185 0.23,1.726 0.23,5.022 0.01,7.323 z" 50 - fill="#ffffff" 51 - fill-opacity="0.3" 52 - id="path3" /> 53 - <path 54 - d="m 428.571,270.406 c -0.23,2.302 -0.419,0.889 -0.419,-3.139 -0.01,-4.028 0.178,-5.911 0.409,-4.184 0.23,1.726 0.23,5.021 0.01,7.323 z" 55 - fill="#ffffff" 56 - fill-opacity="0.3" 57 - id="path4" /> 58 - <path 59 - fill-rule="evenodd" 60 - clip-rule="evenodd" 61 - d="m 306.144,144.325 c 0.398,-0.01 2.565,3.17 4.806,7.062 2.251,3.892 6.136,9.782 8.639,13.088 3.424,4.52 6.188,6.832 11.099,9.301 3.602,1.8 9.141,5.263 12.303,7.69 3.163,2.427 7.414,6.487 9.445,9.019 2.032,2.521 4.953,6.476 6.492,8.778 1.54,2.301 4.241,7.595 6,11.77 1.759,4.174 3.927,10.765 4.827,14.647 0.901,3.881 1.686,11.299 1.749,16.478 0.052,5.179 -0.251,12 -0.68,15.17 -0.44,3.16 -1.529,8.349 -2.43,11.509 -0.9,3.159 -2.586,7.867 -3.738,10.462 -1.141,2.595 -3.853,7.533 -6.01,10.986 -2.168,3.452 -7.152,9.311 -11.1,13.015 -3.947,3.703 -8.774,7.71 -10.732,8.893 -2.461,1.485 -4.691,4.415 -7.225,9.478 -2.021,4.028 -6.566,14.627 -10.105,23.541 -3.539,8.913 -7.832,20.338 -9.529,25.371 -1.696,5.042 -3.445,9.165 -3.874,9.154 -0.429,0 -1.319,-1.768 -1.979,-3.923 -0.66,-2.155 -4.461,-12.628 -8.45,-23.279 -3.99,-10.65 -9.11,-23.237 -11.372,-27.986 -3.811,-7.994 -4.638,-8.977 -11.183,-13.267 -3.884,-2.552 -9.015,-6.664 -11.403,-9.154 -2.387,-2.49 -6.408,-7.585 -8.942,-11.32 -2.534,-3.735 -5.843,-9.866 -7.351,-13.601 -1.507,-3.735 -3.549,-10.797 -4.544,-15.694 -1.33,-6.601 -1.654,-11.864 -1.257,-20.401 0.336,-6.979 1.445,-14.804 2.838,-19.879 1.257,-4.603 4.241,-12.136 6.618,-16.739 3.225,-6.225 6.618,-10.661 13.267,-17.294 7.026,-7.01 10.848,-9.877 17.842,-13.371 7.707,-3.84 9.539,-5.305 13.686,-10.944 2.628,-3.588 6.303,-9.228 8.178,-12.534 1.864,-3.306 3.717,-6.026 4.115,-6.026 z m -21.267,47.917 c -3.455,1.831 -8.492,5.577 -11.193,8.318 -2.702,2.741 -6.608,7.805 -8.681,11.257 -2.063,3.453 -4.701,9.343 -5.843,13.078 -1.151,3.735 -2.356,10.567 -2.691,15.171 -0.408,5.754 -0.073,10.818 1.089,16.216 0.922,4.311 3.372,11.373 5.445,15.694 2.482,5.168 5.958,10.106 10.199,14.469 4.293,4.415 8.883,7.833 13.769,10.253 5.854,2.908 9.016,3.766 15.707,4.248 6.251,0.449 9.968,0.146 14.659,-1.183 3.456,-0.994 8.398,-3.034 10.995,-4.54 2.597,-1.507 6.796,-4.646 9.33,-6.979 2.544,-2.333 6.45,-7.062 8.691,-10.514 2.24,-3.453 5.246,-10.044 6.701,-14.647 2.084,-6.634 2.618,-10.546 2.607,-18.833 -0.01,-6.068 -0.691,-12.994 -1.633,-16.478 -0.89,-3.306 -2.848,-8.485 -4.356,-11.508 -1.518,-3.024 -4.461,-7.826 -6.544,-10.672 -2.095,-2.845 -6.629,-7.229 -10.084,-9.74 -3.455,-2.501 -8.754,-5.472 -11.78,-6.591 -3.026,-1.12 -8.68,-2.25 -12.565,-2.532 -4.052,-0.283 -9.298,0.073 -12.304,0.847 -2.879,0.733 -8.062,2.835 -11.518,4.666 z" 62 - fill="#ffffff" 63 - id="path5" /> 64 - </svg>
-5
packages/icons/assets/Path-Preservation-v2.svg
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <svg version="1.1" viewBox="0 0 612 612" xmlns="http://www.w3.org/2000/svg"> 3 - <path d="m304.47 0c0.299 0.010325 6.231 5.6992 25.866 25.296l-0.01 42.848-12.66 11.388c-6.965 6.2671-12.897 11.398-13.176 11.398s-6.211-5.1313-25.835-22.787l-0.486-42.817 12.887-12.668c7.089-6.9589 13.124-12.658 13.414-12.658zm-44.076 25.884c0.465-0.0413 1.395 3.0664 2.067 6.8969 0.661 3.8304 1.168 13.236 1.126 20.908-0.082 12.245-0.485 15.415-3.358 26.07-1.809 6.6698-5.281 17.129-7.73 23.231-2.956 7.372-4.951 11.037-5.943 10.924-0.816-0.104-4.981-1.642-9.238-3.439-4.269-1.786-11.937-4.398-17.052-5.802s-13.486-2.829-18.602-3.159c-7.244-0.475-10.665-0.207-15.501 1.208-4.95 1.466-7.213 2.901-11.223 7.113-2.77 2.912-6.717 8.745-8.784 12.978-3.638 7.434-3.762 8.064-3.762 19.173 0 11.42 0.031 11.543 4.33 20.196 2.377 4.78 6.914 11.832 15.822 22.631l-7.751 5.018-8.267-7.237c-4.547-3.975-10.83-8.921-13.951-10.976-3.132-2.065-7.8958-4.584-10.593-5.596-2.6972-1.022-6.5416-1.858-8.5258-1.858-1.9945 0-4.547 0.465-5.6838 1.032-1.5088 0.754-3.4516 5.307-7.172 16.778-2.8006 8.663-6.7586 21.672-8.7841 28.909-2.0255 7.238-3.6687 14.207-3.6687 15.487 0.0104 1.281 3.9271 23.458 8.7015 49.301 4.7847 25.832 8.3811 47.287 7.9987 47.659-0.3824 0.371-14.644-14.414-31.695-32.854-17.052-18.439-31.395-34.071-31.871-34.753-0.5477-0.764 1.3021-4.646 5.0121-10.51 3.2346-5.111 9.0425-15.797 12.908-23.747s8.6601-18.873 10.655-24.263c2.0048-5.389 5.4875-16.55 7.7507-24.779 2.2529-8.229 5.9009-24.119 12.081-55.63l12.918-5.369c7.0996-2.953 20.824-9.22 30.486-13.928 9.663-4.7184 22.684-11.512 28.936-15.115s16.483-9.984 22.736-14.176c6.252-4.1919 17.64-12.379 25.319-18.202 7.668-5.8128 17.433-13.608 21.701-17.315 4.258-3.7065 8.134-6.773 8.609-6.8039zm88.12-0.0723c0.228 0 4.713 3.6136 9.973 8.0326s15.139 12.245 21.96 17.376c6.821 5.1417 17.517 12.782 23.769 16.974 6.252 4.1919 16.483 10.583 22.735 14.186s19.274 10.397 28.936 15.115c9.663 4.7077 23.376 10.975 43.404 19.297l3.989 20.33c2.191 11.181 5.839 27.061 8.092 35.3 2.263 8.229 5.735 19.39 7.73 24.779 1.984 5.39 6.789 16.313 10.665 24.263 3.875 7.95 9.693 18.636 12.918 23.747 3.71 5.864 5.559 9.746 5.012 10.51-0.476 0.682-14.82 16.314-31.871 34.753-17.052 18.44-31.313 33.225-31.695 32.854-0.383-0.372 3.214-21.827 7.998-47.659 4.775-25.843 8.691-48.02 8.702-49.301 0-1.28-1.643-8.249-3.669-15.487-2.025-7.237-5.983-20.246-8.784-28.909-3.72-11.471-5.663-16.024-7.172-16.778-1.137-0.567-3.7-1.032-5.684-1.032-1.994 0-5.828 0.836-8.526 1.858-2.697 1.012-7.471 3.531-10.592 5.596-3.121 2.055-9.404 7.001-22.219 18.213l-7.751-5.018 5.746-6.969c3.163-3.83 7.699-10.882 10.076-15.662 4.299-8.653 4.33-8.776 4.33-20.196 0-11.109-0.124-11.739-3.761-19.173-2.067-4.233-6.015-10.066-8.785-12.978-4.009-4.212-6.272-5.647-11.223-7.113-4.836-1.415-8.257-1.683-15.501-1.208-5.115 0.33-13.486 1.755-18.602 3.159-5.115 1.404-12.793 4.016-17.051 5.802-4.268 1.797-8.423 3.335-9.239 3.439-0.992 0.113-2.987-3.552-5.942-10.924-2.449-6.1019-5.922-16.561-7.73-23.231-2.873-10.655-3.276-13.825-3.359-26.07-0.041-7.919 0.517-16.953 1.313-20.908 0.764-3.8305 1.57-6.9692 1.808-6.9692zm-297.55 244.85c1.2401 1.332 18.064 19.39 72.505 77.797l1.1678 6.711c0.651 3.686 2.5732 12.978 4.2784 20.65 1.6948 7.671 5.1671 21.258 7.699 30.199 2.5319 8.942 6.5002 21.486 8.8254 27.877s6.8824 16.964 10.117 23.489 8.98 16.519 12.763 22.198c3.782 5.679 10.964 15.435 15.956 21.682 5.002 6.246 15.625 17.862 23.603 25.812 7.989 7.95 19.852 18.914 26.373 24.366 6.521 5.451 15.801 12.906 29.422 23.21l7.317 18.543c4.03 10.201 6.934 18.657 6.458 18.801-0.465 0.145-9.042-5.668-19.046-12.906-9.993-7.237-27.323-20.257-38.495-28.919-11.171-8.662-27.747-21.961-36.841-29.539s-24.213-20.959-33.587-29.746c-9.3728-8.796-21.474-20.783-36.686-37.292l-0.0723-24.883c-0.062-18.378-0.5581-27.846-1.8912-36.24-0.9921-6.246-2.5112-14.382-3.369-18.068-0.8577-3.686-2.9659-11.12-4.6917-16.52-1.7258-5.399-5.1258-13.989-7.5544-19.1-2.4182-5.111-14.189-27.175-26.146-49.043-11.946-21.867-21.423-40.142-21.051-40.627 0.37203-0.486 1.6948 0.206 2.9453 1.548zm509.94-1.662c0.496 0.258-0.899 3.841-3.1 7.96-2.212 4.12-12.753 23.51-23.428 43.106s-20.751 38.646-22.395 42.331c-1.653 3.686-4.578 11.822-6.51 18.069-1.943 6.246-4.444 16.24-5.56 22.198-1.126 5.957-2.604 17.108-3.286 24.779-0.682 7.744-0.992 21.052-0.166 45.945l-9.951 10.748c-5.478 5.916-17.631 17.944-27.004 26.741-9.373 8.786-24.492 22.178-33.586 29.756s-25.671 20.877-36.842 29.539-28.502 21.682-38.495 28.919c-10.004 7.238-18.581 13.051-19.046 12.906-0.475-0.144 2.429-8.6 13.776-37.344l8.784-6.649c4.836-3.655 14.116-11.11 20.637-16.561 6.521-5.452 18.385-16.416 26.373-24.366 7.978-7.95 18.612-19.566 23.635-25.812 5.012-6.247 12.184-16.003 15.956-21.682 3.761-5.679 9.497-15.673 12.742-22.198s7.978-17.676 10.53-24.78c2.553-7.093 6.749-20.577 9.332-29.941 2.574-9.365 5.891-22.611 7.358-29.426 1.468-6.814 3.235-15.291 5.198-25.275l37.069-39.719c20.39-21.836 37.472-39.502 37.979-39.244zm-256.43 248.27c0.299 0.01 6.231 5.699 25.866 25.296l-0.01 42.847-12.432 11.099c-6.842 6.102-12.877 11.099-13.404 11.099s-6.562-4.997-25.835-22.198l-0.486-42.816 12.887-12.669c7.089-6.959 13.124-12.658 13.414-12.658z" clip-rule="evenodd" fill="#fff" fill-opacity=".3" fill-rule="evenodd"/> 4 - <path d="m314.47 116.6c18.188 0.238 34.237 0.703 35.663 1.033 1.416 0.341 4.671 0.867 7.234 1.187 3.094 0.393 5.278 1.367 6.552 2.922 1.054 1.28 6.635 7.207 12.401 13.174 5.777 5.968 12.918 13.629 15.863 17.036 2.956 3.407 6.366 7.351 7.586 8.776 1.219 1.415 3.451 4.161 4.97 6.082 1.509 1.92 3.245 4.016 3.855 4.646 0.61 0.629 4.372 5.565 8.381 10.954 4 5.39 9.911 13.99 13.145 19.101 5.664 8.962 5.86 9.499 5.385 14.971-0.279 3.128-1.458 9.282-2.636 13.68-1.167 4.398-3.451 11.605-5.053 16.003-1.612 4.399-4.175 9.974-5.684 12.39-1.519 2.416-3.297 4.274-3.948 4.13-0.651-0.145-1.653-1.652-2.222-3.356-0.558-1.703-2.469-5.11-4.237-7.568-1.756-2.467-6.696-7.134-10.954-10.376-4.268-3.242-11.006-7.372-14.985-9.168-3.978-1.807-10.954-4.234-15.501-5.4-4.547-1.167-11.76-2.396-16.018-2.736-4.268-0.351-7.988-1.012-8.267-1.477-0.279-0.454-0.228-3.304 0.134-6.318 0.351-3.015 0.651-12.452 0.672-20.97 0.01-8.631-0.558-18.233-1.282-21.682-0.713-3.407-2.625-9.22-4.227-12.906-1.612-3.686-5.167-9.612-7.895-13.164-3.803-4.935-5.642-6.494-7.813-6.628-1.56-0.093-4.929-0.042-7.492 0.113s-7.213 1.26-10.334 2.447c-3.121 1.188-7.255 3.573-9.177 5.307-1.922 1.735-4.888 5.937-6.593 9.344-2.294 4.605-3.235 8.177-3.638 13.938-0.413 5.793-0.155 8.518 1.033 10.841 0.869 1.704 1.292 3.614 0.941 4.254-0.362 0.64-2.976 1.415-5.818 1.724-2.842 0.32-8.423 1.59-12.401 2.84-3.979 1.239-10.025 3.5-13.435 5.028-3.41 1.518-7.823 3.985-9.817 5.472-1.995 1.476-5.943 3.417-8.785 4.305s-7.492 1.828-10.334 2.086-6.448 0.506-10.851 0.619l0.775 12.948c0.548 9.116 0.434 13.174-0.372 13.68-0.62 0.403-3.575 4.45-6.541 8.993-2.977 4.543-8.598 14.764-12.484 22.714s-8.216 17.934-9.611 22.198c-1.395 4.254-3.793 13.319-5.332 20.133-1.54 6.815-2.946 13.092-3.111 13.939-0.165 0.846-0.589 4.687-0.93 8.518-0.476 5.224-1.013 6.969-2.181 6.969-0.847 0-2.645-2.21-3.989-4.904-1.343-2.695-4.65-10.015-7.358-16.262-2.707-6.246-5.529-12.751-6.273-14.454-0.733-1.704-2.821-7.507-4.64-12.906-3.296-9.809-3.296-9.809-1.498-14.455 0.992-2.56 2.501-6.267 3.358-8.26 0.858-1.992 4.32-9.426 7.699-16.519 3.369-7.104 8.661-17.552 11.751-23.231 3.089-5.678 6.665-12.049 7.936-14.155s4.351-7.217 6.842-11.357c2.49-4.14 7.916-12.173 12.039-17.852 4.134-5.678 8.371-11.316 9.425-12.534 1.054-1.208 3.307-3.996 5.012-6.184 1.705-2.189 6.552-7.93 10.779-12.762 4.226-4.832 11.967-13.205 17.206-18.595 5.229-5.389 10.613-11.078 11.946-12.627 1.344-1.548 3.834-3.035 5.54-3.293 1.705-0.269 5.89-0.795 9.3-1.177 3.411-0.372 6.428-0.899 6.707-1.157 0.279-0.268 15.388-0.289 33.587-0.062zm52.012 62.197c-0.517 1.703-1.364 5.42-1.881 8.259-0.537 3.025-0.547 6.66 0 8.776 0.631 2.499 3.256 5.844 8.485 10.841 4.164 3.975 12.68 11.285 18.922 16.241 6.242 4.966 11.471 8.91 11.626 8.776s-1.075-6.505-2.729-14.176c-1.653-7.671-4.257-17.655-5.787-22.198-1.529-4.543-4.392-11.749-6.355-16.003-1.974-4.264-5.353-10.883-7.503-14.713-2.16-3.83-4.154-6.969-4.423-6.969-0.279 0-2.501 4.068-4.95 9.034s-4.878 10.428-5.405 12.132zm-79.388 21.258c5.767-0.031 12.381 0.609 16.018 1.559 3.411 0.898 9.456 3.325 13.435 5.4 4.444 2.313 9.828 6.37 13.951 10.511 3.69 3.706 7.679 8.352 8.867 10.335 1.178 1.972 1.994 4.171 1.808 4.883-0.186 0.713-1.849 1.301-3.699 1.322-2.305 0.01-4.165-0.826-5.942-2.695-1.427-1.497-4.444-3.985-6.718-5.544-2.273-1.559-6.459-3.645-9.301-4.657-2.841-1.001-8.66-1.982-12.917-2.178-5.612-0.269-9.601 0.196-14.468 1.672-3.69 1.126-8.805 3.397-11.368 5.039-2.563 1.652-6.738 5.245-9.301 7.991s-5.415 6.608-6.345 8.6c-0.94 1.993-2.212 4.771-2.832 6.195-0.62 1.415-1.529 5.142-2.004 8.26-0.486 3.118-0.538 8.239-0.124 11.357 0.423 3.118 1.126 7.073 1.56 8.776 0.444 1.704 2.449 5.885 4.454 9.293 2.005 3.407 5.529 7.95 7.833 10.097 2.295 2.137 7.658 5.606 11.926 7.692 4.258 2.086 7.834 3.82 7.937 3.841 0.103 0.031 0.486 1.672 0.858 3.665 0.361 1.993 0.93 4.078 1.26 4.646 0.331 0.568 0.765 2.075 0.961 3.356 0.197 1.321-0.206 2.364-0.94 2.426-0.713 0.062-4.082 0.124-7.492 0.134-3.731 0.011-9.704-1.032-14.985-2.622-4.836-1.446-11.12-4.182-13.972-6.061-2.852-1.889-7.42-5.513-10.158-8.074-2.729-2.56-6.656-7.206-8.723-10.324-2.066-3.119-5.105-9.623-6.748-14.455-1.922-5.637-3.09-11.357-3.265-16.003-0.145-3.975 0.413-10.945 1.26-15.487 0.992-5.38 1.302-10.955 0.889-16.004-0.341-4.264-0.982-9.726-1.405-12.152-0.713-4.109-0.61-4.398 1.56-4.388 1.282 0.01 6.159-0.939 10.851-2.117 4.692-1.166 12.246-4.026 16.793-6.349s11.058-5.049 14.468-6.05c3.938-1.167 9.787-1.859 16.018-1.89zm158.8 30.881c0.764 0 4.991 7.331 9.393 16.282 4.403 8.952 8.877 18.368 9.952 20.908 1.065 2.54 2.615 6.711 3.452 9.272 1.467 4.48 1.405 4.976-1.757 13.938-1.798 5.111-3.896 10.686-4.661 12.39-0.764 1.703-3.565 8.208-6.221 14.454-2.666 6.247-6.976 15.301-9.6 20.133-2.615 4.832-5.602 10.397-6.625 12.39-1.033 1.993-2.449 4.543-3.152 5.668-0.702 1.136-4.66 7.176-8.794 13.422-4.144 6.257-9.26 13.753-11.368 16.675-2.118 2.911-9.528 12.204-16.473 20.649-6.934 8.435-14.499 17.428-16.803 19.989-2.305 2.56-8.722 9.664-14.251 15.786-5.539 6.133-20.41 21.342-33.059 33.814s-23.459 22.673-24.027 22.673c-0.569 0-11.379-10.201-24.028-22.673s-27.52-27.681-33.059-33.814c-5.529-6.122-11.946-13.226-14.251-15.786-2.304-2.561-9.869-11.554-16.803-19.989-6.945-8.445-14.355-17.738-16.473-20.649-2.108-2.922-7.462-10.655-19.914-29.054l-0.124-7.743c-0.062-4.265 0.31-10.305 0.837-13.423s1.199-7.072 1.488-8.776c0.3-1.703 1.86-7.041 3.472-11.873s6.273-15.508 10.365-23.747c4.083-8.239 7.958-15.301 8.609-15.704 0.651-0.413 1.726-0.175 2.377 0.516 0.651 0.682 2.532 4.502 4.185 8.477 1.654 3.975 5.033 10.707 7.524 14.971 2.48 4.254 7.223 10.418 10.53 13.68 3.317 3.263 9.632 8.033 14.034 10.583 4.402 2.56 11.388 6.164 23.035 11.357l0.114 6.711c0.051 3.686 0.248 9.034 0.423 11.874 0.176 2.839 0.59 7.723 0.91 10.841s1.085 9.622 1.695 14.454c0.62 4.832 2.067 12.028 3.214 16.003 1.157 3.975 3.348 10.015 4.877 13.423 1.54 3.407 4.392 8.517 6.346 11.357 1.963 2.829 5.311 6.897 7.44 9.034 2.129 2.127 4.454 3.851 5.167 3.83 0.714-0.02 4.082-2.034 7.493-4.491 3.41-2.447 8.464-6.959 11.233-10.025 2.759-3.067 5.953-7.434 7.1-9.705 1.137-2.272 2.614-6.918 3.276-10.325 0.661-3.407 1.126-8.755 1.043-11.874-0.082-3.118-0.444-8.352-1.467-17.552l9.043 0.259c4.97 0.144 12.297-0.093 16.276-0.527s11.161-2.065 15.966-3.614c5.168-1.672 9.818-3.913 11.368-5.472 1.447-1.445 3.793-4.119 5.219-5.926 1.467-1.869 4.816-4.171 7.751-5.317 2.841-1.115 7.957-2.726 11.367-3.573 3.411-0.846 8.175-1.683 10.583-1.848 2.418-0.175 4.619-0.888 4.908-1.6 0.29-0.713 0.062-1.528-0.506-1.807s-1.478-3.417-2.026-6.969c-0.547-3.552-1.281-11.099-1.643-16.778-0.351-5.678-0.165-15.9 0.414-22.714 1.043-12.349 1.064-12.431 7.575-25.316 3.596-7.114 8.04-16.293 9.89-20.392 1.849-4.109 3.369-8.043 3.369-8.755 0.01-0.712 0.547-2.798 1.198-4.646s1.809-3.356 2.574-3.356zm-202.47 128.03c-2.015 3.686-4.661 9.736-5.88 13.422-1.22 3.686-2.543 9.55-2.946 13.019l-0.723 6.309c11.213 11.584 18.653 18.305 23.769 22.425 5.115 4.109 11.088 8.817 13.279 10.48 2.325 1.755 3.741 2.364 3.421 1.455-0.31-0.846-1.333-5.73-2.284-10.841-0.951-5.11-3.596-15.105-5.87-22.198-2.273-7.093-5.932-16.622-8.123-21.165-2.201-4.543-5.57-10.821-7.492-13.939l-3.493-5.678zm108.78-123.77c6.087-0.113 12.174 0.423 16.018 1.415 3.411 0.877 9.229 3.097 12.918 4.924 4.478 2.224 9.301 5.923 14.468 11.1 5.167 5.176 8.846 9.997 11.037 14.464 1.808 3.676 4.103 8.776 5.084 11.337 1.427 3.696 1.861 8.652 2.098 24.263 0.197 12.989 0.817 21.537 1.809 25.296 1.147 4.336 1.219 5.988 0.299 7.01-0.661 0.723-1.674 1.208-2.242 1.074s-5.446 1.218-10.851 3.025c-5.519 1.838-11.626 4.687-13.951 6.505-2.274 1.786-5.756 4.068-7.751 5.09-1.984 1.011-7.1 2.87-11.368 4.13-5.59 1.651-10.344 2.271-17.051 2.24-5.136-0.031-12.071-0.805-15.502-1.724-3.41-0.919-9.414-3.387-13.341-5.472-4.175-2.23-9.983-6.629-13.951-10.593-4.093-4.068-8.319-9.633-10.593-13.939-2.077-3.934-4.454-9.715-5.27-12.833-0.806-3.119-1.571-9.623-1.675-14.455-0.113-4.832 0.279-11.337 0.879-14.455 0.589-3.118 1.653-6.979 2.366-8.559 0.703-1.58 1.871-2.86 2.574-2.839 0.713 0.021 1.477 0.392 1.694 0.816 0.228 0.423-0.237 3.913-1.033 7.743-1.24 6.05-1.23 7.96 0.114 14.455 0.857 4.119 2.78 10.046 4.268 13.164 1.581 3.314 5.126 7.96 8.526 11.181 3.193 3.025 8.598 6.866 12.008 8.549 3.41 1.673 9.228 3.459 12.918 3.965 3.958 0.547 9.27 0.547 12.918 0 3.41-0.506 8.99-2.292 12.401-3.965 3.41-1.683 8.587-5.296 11.502-8.032 2.904-2.747 6.469-7.073 7.916-9.633 1.447-2.561 3.369-7.207 4.278-10.325 0.899-3.118 1.643-8.704 1.643-12.39s-0.754-9.271-1.674-12.389-2.594-7.537-3.731-9.809c-1.136-2.271-4.691-6.711-7.895-9.86-3.214-3.149-8.391-6.949-11.523-8.435-3.121-1.497-8.815-3.222-12.659-3.831-4.682-0.743-9.094-0.774-13.435-0.113-3.544 0.547-8.319 1.765-10.592 2.705-2.274 0.939-5.291 2.55-6.718 3.572-1.601 1.167-3.172 1.569-4.133 1.064-1.261-0.672-0.972-1.332 1.55-3.604 1.705-1.528 5.89-4.161 9.301-5.833 3.41-1.683 8.526-3.676 11.367-4.43 2.842-0.764 9.591-1.466 14.985-1.569zm-7.368 11.233c1.209 0 2.397 0.351 2.635 0.775 0.248 0.423 0.713 4.14 1.033 8.259 0.403 4.936 0.176 8.281-0.64 9.809-1.127 2.117-1.344 1.714-2.429-4.388-0.651-3.686-1.55-8.456-1.994-10.583-0.744-3.521-0.61-3.872 1.395-3.872zm-10.634 49.27c0.754 0.279 1.395 1.27 1.405 2.209 0.021 0.93-2.635 4.11-5.89 7.073-3.266 2.953-8.722 6.824-12.133 8.6-3.41 1.776-6.893 2.953-7.75 2.612-0.848-0.33-1.199-0.949-0.765-1.373 0.424-0.423 0.072-1.579-0.775-2.571-0.858-0.991-1.22-2.24-0.796-2.767 0.413-0.526 2.387-1.517 4.392-2.199 1.995-0.692 6.19-2.56 9.311-4.15 3.132-1.59 7.017-4.027 8.65-5.421 1.633-1.383 3.586-2.292 4.351-2.013z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd"/> 5 - </svg>
-8
packages/icons/assets/Path-Remembrance-v2.svg
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <svg fill="none" version="1.1" viewBox="0 0 612 612" xmlns="http://www.w3.org/2000/svg"> 3 - <g fill="#fff"> 4 - <path d="m262.66 5.3289c5.274-1.1273 13.916-2.5364 19.203-3.1384 5.275-0.60206 20.829-1.1785 34.566-1.2554 13.724-0.089669 29.855 0.40992 35.846 1.1145 5.992 0.70455 12.61 1.5756 14.723 1.9343 2.112 0.37149 7.015 1.281 10.882 2.0368 3.866 0.74297 12.507 2.7797 19.203 4.5347 6.696 1.7549 15.619 4.3425 19.843 5.7644 4.225 1.4091 8.258 3.0872 8.962 3.7277s0.986 1.4988 0.64 1.9087c-0.346 0.4227-6.107-0.2178-12.802-1.3963-6.696-1.1913-13.75-2.3826-15.683-2.6517-1.933-0.2818-5.39-0.7557-7.681-1.076-2.292-0.3202-12.226-0.9735-22.084-1.4475-11.163-0.538-23.966-0.2818-33.926 0.6789-8.808 0.8583-18.012 1.8062-20.483 2.1265-2.471 0.3202-10.242 1.7549-17.283 3.2024-7.041 1.4476-19.716 4.8422-28.165 7.5451-8.45 2.7029-21.7 7.7884-29.445 11.298s-17.539 8.3393-21.764 10.735c-4.225 2.3955-11.714 6.9558-16.643 10.146-4.929 3.1896-14.722 10.427-21.763 16.102-7.042 5.662-17.706 15.436-23.684 21.713-5.992 6.2771-14.736 16.589-19.447 22.904-4.724 6.328-12.047 17.268-16.284 24.313-4.2503 7.046-10.536 19.727-13.98 28.182-3.4566 8.455-8.0142 22.289-10.139 30.744-2.1252 8.454-4.276 18.254-4.7881 21.777-0.4993 3.522-1.1778 7.557-1.4978 8.967-0.3073 1.409-0.7297 10.926-0.9218 21.136-0.192 10.209 0.3713 24.339 1.2546 31.384 0.8834 7.046 2.8421 18.293 4.34 24.979 1.4978 6.687 4.4808 17.358 6.6315 23.699 2.138 6.341 6.4523 16.999 9.5889 23.698 3.1237 6.7 8.347 16.486 11.612 21.777 3.2518 5.278 9.9859 15.064 14.979 21.751 4.98 6.674 15.106 18.203 22.506 25.62 7.4 7.404 19.203 17.844 26.244 23.199 7.029 5.341 19.178 13.412 26.975 17.934 7.796 4.509 14.108 7.634 14.018 6.93-0.09-0.705-0.858-2.575-1.703-4.163-0.845-1.589-1.536-4.612-1.536-6.726 0-2.113 0.576-4.996 1.28-6.405s3.15-3.702 5.441-5.085c2.292-1.384 6.03-2.537 8.322-2.562 2.291-0.026 8.193 1.691 13.122 3.804 4.929 2.114 10.395 3.843 12.162 3.843 2.074 0 4.558-1.575 7.041-4.483 2.113-2.472 3.841-5.355 3.841-6.405s-1.268-3.792-2.817-6.085-2.893-6.174-2.982-8.646c-0.103-2.87 0.793-5.586 2.496-7.571 1.472-1.691 5.543-4.317 9.064-5.829 3.52-1.524 7.63-4.457 9.141-6.533 1.51-2.075 2.88-4.919 3.034-6.328 0.153-1.409 0.243-3.715 0.192-5.124-0.064-1.409-2.151-4.867-4.66-7.686-2.497-2.818-4.545-5.559-4.532-6.084 0.013-0.526 1.856-4.855 8.168-18.254l0.089-23.327c0.077-20.624 0.359-23.609 2.381-25.62 1.831-1.845 5.16-2.421 17.066-2.934 14.735-0.64 14.799-0.653 18.512-4.803 2.061-2.293 3.738-5.316 3.738-6.725 0-1.422 0.858-2.562 1.92-2.562 1.05 0 2.433 1.293 3.073 2.882 0.627 1.588 2.983 4.611 5.21 6.725 3.803 3.587 4.955 3.907 17.104 4.727 9.384 0.627 13.558 1.447 14.94 2.92 1.447 1.538 2.074 6.444 3.201 37.354l5.466 6.328c3.009 3.472 5.8 8.045 6.209 10.159 0.41 2.113 0.333 5.854-0.166 8.326s-2.292 6.495-3.969 8.967c-1.69 2.472-3.072 5.777-3.059 7.366 0 1.588 1.011 4.406 2.24 6.276 1.229 1.883 5.415 5.521 9.282 8.109 3.866 2.588 8.321 6.674 9.883 9.095 1.613 2.485 2.855 6.456 2.88 9.185 0.026 3.638-0.973 5.944-4.122 9.479-2.292 2.575-6.324 6.034-8.962 7.686-2.637 1.653-4.813 3.728-4.839 4.612-0.013 0.884 1.28 2.805 2.881 4.278 1.613 1.473 6.67 4.048 11.24 5.713 5.979 2.178 10.037 4.766 14.403 9.172 4.288 4.33 6.324 7.545 6.887 10.94 0.448 2.639 0.448 7.25-0.806 15.692l4.16-0.628c2.292-0.333 10.216-2.562 17.603-4.944 7.387-2.37 17.194-5.893 21.764-7.814 4.57-1.922 13.506-6.085 19.843-9.275 6.338-3.177 16.989-9.287 23.684-13.591 6.696-4.291 15.043-10.107 18.564-12.925 3.52-2.818 10.869-9.044 16.322-13.848 8.04-7.058 10.037-8.288 10.562-6.469 0.41 1.435-1.805 5.227-6.183 10.569-3.751 4.573-11.1 12.873-16.323 18.42-5.223 5.56-14.966 14.693-21.661 20.304-6.696 5.611-19.076 14.834-27.525 20.496s-23.428 14.244-33.286 19.061c-9.857 4.804-18.819 8.762-19.907 8.787-1.088 0.026-2.535 0.564-3.201 1.192-0.665 0.64-7.988 3.382-31.314 11.016l3.162 3.203c1.741 1.755 3.534 4.932 3.995 7.045 0.46 2.114 0.204 5.854-0.551 8.327-0.768 2.472-2.701 5.79-4.314 7.391-1.601 1.601-5.224 3.254-8.04 3.689-2.817 0.436-6.708 0.423-8.642-0.025-1.933-0.436-4.672-1.96-6.081-3.369-2.509-2.511-2.56-4.279-2.573-91.271 0-85.327-0.102-89.029-2.586-97.035-1.421-4.573-3.29-9.121-4.148-10.081-0.87-0.961-3.162-2.55-5.095-3.523-2.791-1.396-4.378-1.46-7.681-0.282-2.292 0.82-5.62 2.69-7.413 4.163-2.483 2.05-3.2 3.728-3.008 7.161 0.141 2.472 2.304 8.8 4.813 14.091 2.51 5.278 4.904 11.913 5.339 14.731 0.448 2.985 0.064 7.238-0.922 10.184-1.05 3.139-3.149 5.944-5.531 7.391-2.726 1.653-6.439 2.345-12.802 2.37-6.042 0.013-9.896-0.615-11.842-1.947-1.587-1.089-3.456-3.433-4.16-5.188-0.705-1.768-1.293-5.944-1.306-9.287 0-3.343 1.165-9.543 2.611-13.771 1.447-4.227 3.393-8.838 4.328-10.248 0.972-1.473 1.459-4.726 1.165-7.686-0.295-2.818-1.37-6.417-2.382-8.006-1.139-1.78-3.136-2.882-5.185-2.882-2.048 0-4.941 1.601-7.502 4.163-2.88 2.883-4.621 6.239-5.633 10.889-1.024 4.739-1.459 38.66-1.459 223.21l-3.137 3.203c-1.728 1.755-4.186 3.266-5.441 3.343-1.267 0.09-4.314 0.09-6.785 0.026s-5.773-0.987-7.361-2.063c-1.587-1.076-4.071-3.817-5.518-6.11-2.15-3.382-2.56-5.713-2.15-12.49 0.345-5.969 1.677-10.862 4.672-17.293 2.305-4.932 5.454-10.414 7.016-12.169 1.792-2.024 2.816-4.804 2.765-7.545-0.051-3.869-0.486-4.381-3.904-4.714-2.113-0.205-6.722-0.731-10.242-1.179-3.521-0.436-13.033-2.267-21.124-4.074-8.091-1.793-22.493-5.854-32.005-9.018s-24.773-9.389-33.926-13.834c-9.154-4.433-21.546-11.158-27.525-14.937-5.978-3.779-15.196-10.145-20.483-14.155-5.275-3.996-11.407-8.89-13.622-10.862-3.751-3.344-4.0967-4.381-5.0312-15.116-0.5633-6.341-1.0882-11.824-1.1778-12.17-0.0897-0.345-0.6274-3.228-1.1906-6.405-0.5633-3.176-2.4709-10.376-4.2248-16.012s-5.8378-15.436-9.0767-21.777c-3.303-6.443-8.7439-14.552-12.354-18.395-3.5462-3.779-8.6159-7.955-11.253-9.287-2.6372-1.332-7.3868-2.421-10.562-2.421-3.1749 0-7.9245 1.012-10.562 2.242-2.6372 1.229-5.1849 2.818-5.6458 3.522-0.4736 0.705-2.0611-0.73-3.5462-3.202-1.485-2.472-3.0597-5.918-3.495-7.686-0.4352-1.755-1.5746-4.791-2.5348-6.725s-3.7894-10.581-6.2859-19.215c-2.4964-8.634-5.7354-22.891-7.2076-31.705-2.0483-12.22-2.6885-21.776-2.7141-40.351-0.0256-13.386 0.62731-28.656 1.4338-33.946 0.80654-5.278 1.6899-10.76 1.9715-12.169s0.94736-5.163 1.4851-8.327c0.52489-3.164 2.586-11.247 4.5704-17.934 1.9844-6.686 4.788-15.628 6.2346-19.855 1.4467-4.227 6.3115-15.18 10.818-24.339 4.4935-9.159 11.778-22.135 16.182-28.822 4.404-6.687 11.036-15.91 14.735-20.496 3.6998-4.586 8.4366-10.35 14.351-17.293l4.6216 2.2417c2.5477 1.2298 5.9274 2.2546 7.5149 2.2546 1.5875 0.0128 6.017-1.5756 9.8321-3.5227 3.8278-1.9472 8.8848-5.8414 11.228-8.6595 2.355-2.8182 5.415-8.5827 6.823-12.81 1.396-4.2272 2.535-9.8508 2.535-12.49-0.013-4.6628 0.333-5.0215 11.829-12.323 6.517-4.1376 16.746-10.158 22.724-13.374 5.979-3.2153 17.219-8.4289 24.965-11.593 7.745-3.1513 20.713-7.75 28.804-10.21 8.091-2.4467 16.451-4.7525 18.564-5.1112 2.112-0.37149 8.155-1.5884 13.442-2.7029z"/> 5 - <path d="m304.08 72.491c1.063 0 1.37 2.8951 1.037 9.9277-0.41 8.557-0.102 10.414 2.215 13.45 1.549 2.024 3.93 3.5099 5.582 3.4971 2.726-0.0128 2.829 0.3075 1.869 6.0846-0.551 3.369-2.177 8.711-3.611 11.875-1.433 3.164-5.12 9.518-8.193 14.091-3.072 4.586-10.383 13.13-26.872 29.668l-6.401-1.333c-4.468-0.935-7.95-0.922-11.522 0.013-2.816 0.756-6.427 2.601-10.946 6.879l0.064 132.58 4.801-2.434c2.637-1.333 8.258-3.126 12.482-3.971 4.225-0.859 11.906-1.345 17.066-1.089 8.705 0.41 9.652 0.743 13.122 4.611 3.149 3.497 3.687 5.099 3.418 10.056-0.307 5.624-0.55 5.97-5.441 7.648-2.816 0.973-5.851 2.779-6.747 4.035-1.024 1.447-1.613 6.584-1.574 25.978l-4.801 0.743c-2.637 0.423-6.529 1.781-8.642 3.049-2.112 1.255-5.121 4.227-6.682 6.61-2.791 4.266-2.842 5.034-2.919 94.639l-2.881-0.755c-1.587-0.423-5.761-1.576-9.281-2.575-3.521-0.986-9.282-1.806-12.803-1.819-4.211 0-8.692 1.089-19.843 6.43l-8.641-6.071c-4.75-3.331-12.931-9.813-18.18-14.412-5.236-4.586-14.056-13.527-19.587-19.868-5.518-6.341-13.417-16.422-17.526-22.417-4.122-5.995-10.319-16.358-13.775-23.058-3.457-6.7-8.155-17.063-10.447-23.058-2.3043-5.995-5.8377-17.524-7.8732-25.62-2.0356-8.095-4.3016-20.354-5.0441-27.221-0.7425-6.866-1.3442-17.818-1.3442-24.338-0.0128-6.521 0.6273-18.19 1.3954-25.94 0.781-7.75 3.1366-20.727 5.2361-28.823 2.1124-8.096 5.8762-19.919 8.373-26.26 2.496-6.341 5.684-13.835 7.092-16.653 1.396-2.818 2.612-5.226 2.701-5.342 0.09-0.115 1.857-0.691 3.931-1.281 3.648-1.037 3.738-0.948 3.008 2.78-0.499 2.511 0.077 5.508 1.677 8.647 1.344 2.651 3.726 5.149 5.313 5.585 1.869 0.512 3.329 0.09 4.161-1.179 0.704-1.088 2.291-3.74 3.52-5.918 1.229-2.165 4.648-5.521 7.592-7.455 4.532-2.998 6.901-3.574 15.683-3.882 8.693-0.294 11.957 0.231 20.573 3.305 5.633 2.024 11.112 4.061 12.162 4.561 1.575 0.73 2.112-0.897 2.97-9.07 0.615-5.79 0.551-13.181-0.166-17.652-0.666-4.227-2.151-9.556-3.29-11.849-1.14-2.293-3.662-5.342-5.595-6.764-1.933-1.434-4.532-2.587-5.761-2.562-1.229 0.013-2.24-0.819-2.24-1.883 0-1.088 2.074-2.6 4.8-3.484 2.638-0.845 8.552-1.575 13.123-1.601 6.311-0.026 9.947 0.73 15.004 3.164 6.004 2.882 6.683 2.972 6.721 0.961 0.026-1.23-0.743-3.83-1.703-5.765-0.96-1.934-3.405-4.778-5.441-6.302-2.035-1.525-3.213-3.254-2.624-3.8432 0.589-0.5893 6.068-1.012 12.162-0.9608 8.129 0.0769 12.623 0.7942 16.848 2.664 3.162 1.41 7.489 4.279 9.601 6.367 2.113 2.088 4.827 5.79 6.03 8.224 1.204 2.434 2.637 7.161 3.201 10.53 0.55 3.356 1.293 6.11 1.651 6.123 0.346 0 2.945-1.499 5.761-3.344 2.817-1.857 5.979-4.509 7.041-5.892 1.742-2.293 1.626-3.177-1.165-9.172-1.984-4.24-3.303-9.864-3.687-15.602-0.486-7.2247-0.102-9.9661 1.946-14.091 1.409-2.8182 4.417-6.7124 6.683-8.6467s4.801-3.5228 5.633-3.5228zm-115.99 139.41c-1.933 2.229-3.892 6.226-4.327 8.865-0.448 2.639-0.448 7.404 0 10.568 0.448 3.177 1.152 7.212 1.549 8.967 0.717 3.138 0.538 3.215-8.641 4.074-6.568 0.614-11.778 2.049-17.386 4.803-4.583 2.255-9.665 5.982-11.893 8.737-2.138 2.638-5.095 8.838-6.593 13.77-2.279 7.558-2.586 10.978-1.959 21.777 0.397 7.046 1.703 15.987 2.881 19.855 1.177 3.882 4.928 12.81 8.347 19.856 3.418 7.045 10.369 19.151 15.465 26.901 6.81 10.363 13.672 18.51 25.988 30.795 10.677 10.657 21.367 19.868 29.535 25.453 12.648 8.634 12.879 8.736 18.563 7.635l5.761-1.128c0.653-29.27 0.614-29.488-2.868-33.024-1.946-1.96-6.708-4.752-10.574-6.212-5.71-2.127-8.859-2.498-16.643-1.922-5.287 0.384-11.048 1.063-12.802 1.524-2.433 0.615-4.571-0.217-8.962-3.535-3.175-2.396-9.102-8.352-13.199-13.246-4.109-4.931-10.255-14.616-13.762-21.712-3.483-7.046-6.337-13.822-6.325-15.052 0-1.524 2.983-3.664 9.282-6.661 5.108-2.434 11.868-5.009 15.043-5.739 3.162-0.717 9.076-1.319 13.122-1.345 4.225-0.013 10.498 1.089 14.722 2.588 4.046 1.434 9.231 4.022 11.522 5.764l4.161 3.151c-0.013-110.09-0.115-112.23-2.599-115.93-1.421-2.114-4.148-4.842-6.068-6.072-2.253-1.448-6.004-2.229-10.536-2.216-4.007 0.013-9.243 1.012-12.162 2.331-2.817 1.268-6.709 4.138-8.642 6.379zm168.26-133.65 4.046 4.6372c2.227 2.5492 5.134 7.7372 6.465 11.529 1.715 4.8421 2.189 8.5062 1.6 12.336-0.448 2.997-1.754 7.314-2.893 9.607s-3.137 5.316-4.455 6.725c-2.343 2.511-2.292 2.69 2.791 9.608 2.855 3.881 5.799 9.069 6.542 11.529 0.755 2.536 0.934 6.712 0.409 9.607-0.601 3.254-2.471 6.636-5.146 9.287-2.74 2.703-5.492 4.176-7.861 4.202-2.01 0.013-5.646-1.281-8.078-2.882-2.471-1.627-4.942-4.625-5.595-6.764-0.883-2.946-0.448-5.931 1.87-12.81 2.688-7.942 3.034-11.324 3.059-29.463 0.013-17.357 0.359-20.982 2.254-23.698 1.216-1.755 2.278-3.8814 2.342-4.714 0.064-0.8455 0.692-3.1513 1.383-5.124zm136.01 7.0454c1.549 0 8.283 4.9959 16.105 11.964 7.4 6.5844 17.257 16.524 21.917 22.097 4.66 5.572 11.791 15.026 15.85 21.021 4.058 5.982 10.382 16.934 14.056 24.339 3.675 7.391 8.194 17.485 10.05 22.417 1.844 4.932 4.788 14.437 6.555 21.136 1.754 6.687 4.071 18.933 5.146 27.221 1.076 8.275 1.959 20.816 1.959 27.862 0 7.045-0.883 19.573-1.959 27.861-1.075 8.276-3.392 20.522-5.146 27.221-1.767 6.687-4.699 16.205-6.542 21.137-1.844 4.932-6.696 15.589-10.792 23.698-4.084 8.096-10.485 19.125-14.224 24.505-3.725 5.381-10.817 14.54-15.746 20.355-4.929 5.816-14.428 15.436-21.124 21.393-6.683 5.944-17.629 14.462-24.324 18.946-6.683 4.47-17.053 10.722-23.044 13.899-5.979 3.164-15.491 7.545-21.124 9.722-5.633 2.178-10.305 3.805-10.395 3.613-0.09-0.193-1.344-2.652-2.765-5.47-1.434-2.818-4.238-6.674-6.248-8.57-1.997-1.896-5.21-4.061-7.156-4.804-1.933-0.756-4.955-1.358-6.721-1.358-1.985 0-3.201-0.73-3.201-1.921 0-1.063 0.512-3.228 1.139-4.804 0.845-2.139 3.905-3.843 11.842-6.61 5.889-2.037 17.04-6.827 24.786-10.632 7.745-3.817 18.115-9.697 32.005-19.24l0.346-42.773c0.204-26.811-0.154-43.963-0.961-45.962-0.716-1.767-3.034-4.214-5.146-5.444-2.112-1.242-6.427-2.242-9.602-2.242-4.045 0-6.516 0.756-8.321 2.562-2.151 2.152-2.548 4.24-2.522 13.131 0.026 5.802-0.269 10.85-0.653 11.208-0.371 0.346-4.276-0.807-8.667-2.562-6.555-2.613-10.203-3.189-20.24-3.202-11.394 0-12.879 0.307-21.47 4.483-5.082 2.46-9.524 4.189-9.883 3.843-0.358-0.358-0.627-5.406-0.614-11.208 0.038-9.429-0.308-10.991-3.163-14.412-1.753-2.113-5.517-4.573-8.347-5.444-4.224-1.319-5.146-2.19-5.133-4.803 0-1.768 1.741-5.944 3.866-9.288 2.125-3.356 5.863-7.391 12.789-11.849l0.052-19.855c0.051-19.215 0.179-20.112 3.751-27.542 2.035-4.227 4.852-11.144 6.26-15.371 1.408-4.228 3.469-12.157 4.583-17.614 1.114-5.47 2.023-15.116 2.023-21.457 0-6.34-0.909-15.717-2.023-20.816-1.114-5.111-4.327-13.898-7.144-19.535-4.89-9.825-5.044-10.466-3.482-15.372 0.896-2.818 3.15-6.853 5.019-8.967 1.869-2.113 6.516-5.252 10.318-6.968 6.005-2.716 8.77-3.126 20.996-3.087 11.714 0.025 15.375 0.538 21.764 3.048 4.416 1.743 9.729 5.086 12.482 7.891 2.65 2.678 5.94 7.328 7.335 10.325 1.831 3.92 2.535 8.211 2.561 15.372 0.025 8.903 0.256 9.838 2.266 9.095 1.242-0.448 5.697-2.114 9.922-3.689 4.224-1.589 11.867-3.523 16.962-4.304 6.453-1 11.83-1.038 17.603-0.141 4.584 0.704 10.485 2.062 13.123 3.023 2.65 0.961 5.953 2.242 7.361 2.856 2.061 0.884 1.357-1.152-3.61-10.401-3.406-6.328-9.448-16.077-13.443-21.675-3.994-5.598-12.879-15.974-19.728-23.057-6.849-7.0843-12.085-13.31-11.624-13.835 0.448-0.538 2.023-0.9608 3.495-0.9608zm-82.318 116.89c-1.664 1.575-3.828 4.752-4.801 7.045-1.331 3.164-1.754 12.169-1.741 37.789v33.626c32.069-0.896 37.011-0.538 45.435 1.576 5.633 1.396 12.84 4.176 16.003 6.174 3.175 1.986 7.118 5.099 8.782 6.892 1.651 1.806 4.097 5.444 5.441 8.096 1.574 3.138 2.445 7.57 2.471 12.81l0.051 8.006 8.782-3.843c0.09-68.098-0.128-72.056-2.151-74.874-1.241-1.717-4.557-4.15-7.374-5.419-3.623-1.614-8.385-2.293-16.322-2.305l-11.202-0.026v-29.463c-7.631-7.916-11.702-10.555-14.723-11.388-2.816-0.781-7.425-1.396-10.242-1.37-2.816 0.038-7.425 0.896-10.241 1.921-2.817 1.025-6.491 3.164-8.168 4.753zm99.998-2.447-2.919 2.767c0.064 107.62 0.192 110.75 2.304 109.96 1.242-0.474 6.273-1.089 11.202-1.371 6.798-0.397 10.818 0.128 16.643 2.14 4.225 1.473 7.976 2.677 8.321 2.69 0.359 0.012 2.51-6.2 4.788-13.784 2.279-7.596 5.019-19.727 6.081-26.939 1.063-7.225 1.934-15.436 1.934-18.254 0-3.92-0.679-5.56-2.881-6.956-1.575-1.012-5.031-2.165-7.681-2.562l-4.801-0.73c-0.115-28.912-0.781-38.327-1.664-40.876-0.845-2.396-3.162-5.573-5.16-7.046-2.534-1.883-5.812-2.754-10.881-2.921-3.995-0.128-8.412 0.064-9.82 0.449-1.408 0.371-3.866 1.921-5.466 3.433zm-15.35 180.02c-0.896 1.141-1.639 5.252-1.639 9.134l-0.013 7.045c5.211-4.97 9.436-9.722 12.739-13.77l6.004-7.366c-8.027 0.051-11.509 0.705-12.918 1.473-1.408 0.769-3.29 2.344-4.173 3.484zm-227.25-167c0.282 2.818 0.282 7.711 0 10.888-0.269 3.164-0.486 0.858-0.486-5.124 0-5.995 0.217-8.582 0.486-5.764z" clip-rule="evenodd" fill-opacity=".3" fill-rule="evenodd"/> 6 - <path d="m320.42 108.36c2.586-9.3769 2.983-13.578 2.867-30.206-0.128-16.871 0.116-19.33 1.882-19.33 1.396 0 3.367 3.5355 6.171 11.004 2.266 6.0463 5.62 16.179 7.451 22.52s3.508 14.987 3.725 19.214c0.256 4.83-0.461 10.543-1.92 15.372-1.28 4.228-2.945 10.85-3.687 14.732-1.037 5.393-0.935 9.146 0.435 16.012 0.973 4.932 2.868 10.568 4.199 12.515 1.754 2.562 4.199 3.946 8.821 4.971 3.521 0.781 8.705 1.088 11.522 0.691 3.508-0.499 6.222-1.96 8.641-4.65 1.934-2.152 4.161-6.366 4.929-9.364 0.781-2.997 1.216-9.325 0.96-14.078-0.32-6.059 0.026-8.826 1.153-9.287 1.011-0.41 3.239 2.793 6.017 8.634 2.432 5.111 5.594 14.181 7.041 20.176 1.69 7.083 2.612 15.243 2.612 23.378 0.012 7.007-0.909 16.563-2.087 21.776-1.165 5.112-3.674 12.746-5.582 16.974-1.908 4.227-5.761 11.439-8.577 16.012-2.804 4.573-6.888 12.362-9.064 17.293-2.177 4.932-4.865 12.426-5.966 16.653s-2.01 11.862-2.01 16.973c0.013 7.981-0.307 9.288-2.228 9.326-1.229 0.013-4.545-1.588-7.361-3.574-3.175-2.242-6.465-6.277-8.654-10.607-1.946-3.843-3.521-8.147-3.482-9.556 0.025-1.563 2.022-3.817 5.108-5.764 2.79-1.755 5.658-4.497 6.375-6.085 0.704-1.588 1.293-5.329 1.28-8.326 0-3.318-1.011-6.943-2.586-9.288-1.421-2.113-4.148-4.842-6.068-6.071-1.92-1.23-5.799-2.255-8.616-2.281-3.252-0.025-6.759 1.025-9.602 2.895-2.47 1.627-5.517 4.958-6.785 7.405-1.574 3.048-2.099 6.084-1.651 9.581 0.358 2.819 1.715 6.559 3.021 8.327 1.306 1.755 4.25 4.073 10.703 7.045l-0.756 7.686c-0.409 4.227-2.163 10.85-3.904 14.732-1.741 3.881-4.891 8.774-6.99 10.888-2.932 2.946-3.956 3.395-4.391 1.921-0.308-1.05-0.909-4.803-1.357-8.326-0.436-3.523-2.215-9.146-3.943-12.49-1.729-3.343-5.019-7.66-7.311-9.581-2.291-1.935-7.809-6.969-12.264-11.209-5.607-5.342-9.448-10.479-12.495-16.679-2.407-4.931-5.274-12.425-6.363-16.652-1.293-5.086-1.894-12.669-1.741-22.418 0.141-9.876 1.012-17.588 2.612-23.378 1.331-4.752 3.853-11.529 5.607-15.052 1.767-3.522 7.669-11.17 13.123-16.985 5.453-5.829 12.008-13.758 14.568-17.614 2.561-3.869 6.658-11.068 9.128-16 2.458-4.931 5.825-13.873 7.49-19.855z"/> 7 - </g> 8 - </svg>
+6 -5
packages/icons/package.json
··· 18 18 "types": "./dist/index.d.ts", 19 19 "svelte": "./dist/index.js" 20 20 }, 21 - "./element": { 21 + "./hsr/element": { 22 22 "types": "./dist/ElementIcon.svelte.d.ts", 23 23 "svelte": "./dist/ElementIcon.svelte" 24 24 }, 25 + "./hsr/mechanic": { 26 + "types": "./dist/MechanicIcon.svelte.d.ts", 27 + "svelte": "./dist/MechanicIcon.svelte" 28 + }, 25 29 "./google": { 26 30 "types": "./dist/GoogleIcon.svelte.d.ts", 27 31 "svelte": "./dist/GoogleIcon.svelte" 28 - }, 29 - "./mechanic": { 30 - "types": "./dist/MechanicIcon.svelte.d.ts", 31 - "svelte": "./dist/MechanicIcon.svelte" 32 32 }, 33 33 "./universe": { 34 34 "types": "./dist/UniverseIcon.svelte.d.ts", ··· 57 57 "@starlight/types": "workspace:../types" 58 58 }, 59 59 "devDependencies": { 60 + "@starlight/storybook-utils": "link:../storybook-utils", 60 61 "@sveltejs/adapter-auto": "catalog:svelte", 61 62 "@sveltejs/kit": "catalog:svelte", 62 63 "@sveltejs/package": "catalog:svelte",
-77
packages/icons/src/lib/ElementIcon.svelte
··· 1 - <script lang="ts"> 2 - import type { IconProps } from '@lucide/svelte' 3 - import type { Element } from '@starlight/types/hsr' 4 - import { cn, tv } from 'tailwind-variants' 5 - import { getElementIcon } from './ElementIcon.js' 6 - 7 - const elementIconTv = tv({ 8 - variants: { 9 - element: { 10 - physical: '', 11 - fire: '', 12 - imaginary: 'stroke-yellow-500', 13 - wind: 'stroke-green-500', 14 - ice: 'stroke-cyan-500', 15 - quantum: 'stroke-indigo-500', 16 - lightning: '', 17 - }, 18 - dark: { 19 - true: 'stroke-hsr-dark', 20 - }, 21 - }, 22 - compoundVariants: [ 23 - { 24 - element: 'physical', 25 - dark: false, 26 - class: [ 27 - 'stroke-zinc-900 fill-zinc-900', 28 - 'dark:stroke-zinc-100 dark:fill-zinc-100', 29 - ], 30 - }, 31 - { 32 - element: 'physical', 33 - dark: true, 34 - class: 'fill-hsr-dark', 35 - }, 36 - { 37 - element: 'fire', 38 - dark: false, 39 - class: 'stroke-red-500 fill-red-500', 40 - }, 41 - { 42 - element: 'fire', 43 - dark: true, 44 - class: 'fill-hsr-dark', 45 - }, 46 - { 47 - element: 'lightning', 48 - dark: false, 49 - class: 'stroke-purple-500 fill-purple-500', 50 - }, 51 - { 52 - element: 'lightning', 53 - dark: true, 54 - class: 'fill-hsr-dark', 55 - } 56 - ], 57 - }) 58 - 59 - type ElementIconRootProps = IconProps 60 - type ElementIconProps = ElementIconRootProps & { 61 - element: Element, 62 - dark?: boolean, 63 - } 64 - let { 65 - element, 66 - dark = false, 67 - class: className, 68 - ...restProps 69 - }: ElementIconProps = $props() 70 - let Icon = $derived(getElementIcon(element)) 71 - </script> 72 - 73 - <Icon 74 - {...restProps} 75 - class={cn(elementIconTv({element, dark}), className)} 76 - size={18} 77 - />
+2 -2
packages/icons/src/lib/ElementIcon.ts packages/icons/src/lib/hsr/ElementIcon.ts
··· 5 5 import SwordsIcon from '@lucide/svelte/icons/swords' 6 6 import WindIcon from '@lucide/svelte/icons/wind' 7 7 import ZapIcon from '@lucide/svelte/icons/zap' 8 - import UniverseIcon from './UniverseIcon.svelte' 9 - import WhirlIcon from './WhirlIcon.svelte' 8 + import UniverseIcon from '../UniverseIcon.svelte' 9 + import WhirlIcon from '../WhirlIcon.svelte' 10 10 11 11 const elementMap: Record<Element, Component> = { 12 12 physical: SwordsIcon,
-13
packages/icons/src/lib/GoogleIcon.svelte
··· 1 - <script lang="ts"> 2 - import { Icon } from '@lucide/svelte' 3 - import type { IconNode, IconProps } from '@lucide/svelte' 4 - 5 - const iconNode: IconNode = [ 6 - ['path', { d: 'M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z' }], 7 - ] 8 - 9 - type GoogleIconProps = IconProps 10 - let restProps: GoogleIconProps = $props() 11 - </script> 12 - 13 - <Icon name="google" {...restProps} iconNode={iconNode} />
-45
packages/icons/src/lib/MechanicIcon.svelte
··· 1 - <script lang="ts"> 2 - import type { IconProps } from '@lucide/svelte' 3 - import type { Mechanic } from '@starlight/types/hsr' 4 - import { cn, tv, type VariantProps } from 'tailwind-variants' 5 - import { getMechanicIcon } from './MechanicIcon.js' 6 - 7 - const mechanicIconTv = tv({ 8 - base: 'stroke-2', 9 - variants: { 10 - color: { 11 - gold: 'stroke-hsr-gold', 12 - dark: 'stroke-hsr-dark', 13 - }, 14 - size: { 15 - sm: 'size-4', 16 - md: 'size-6', 17 - }, 18 - }, 19 - }) 20 - 21 - type MechanicIconVariants = VariantProps<typeof mechanicIconTv> 22 - type VariantColor = MechanicIconVariants['color'] 23 - type VariantSize = MechanicIconVariants['size'] 24 - 25 - type MechanicIconRootElement = IconProps 26 - type MechanicIconProps = MechanicIconRootElement & { 27 - mechanic: Mechanic, 28 - size?: VariantSize, 29 - color: VariantColor, 30 - } 31 - 32 - let { 33 - mechanic, 34 - size = 'md', 35 - color, 36 - class: className, 37 - ...restProps 38 - }: MechanicIconProps = $props() 39 - let Icon = $derived(getMechanicIcon(mechanic)) 40 - </script> 41 - 42 - <Icon 43 - {...restProps} 44 - class={cn(mechanicIconTv({color, size}), className)} 45 - />
packages/icons/src/lib/MechanicIcon.ts packages/icons/src/lib/hsr/MechanicIcon.ts
+12 -12
packages/icons/src/lib/UniverseIcon.svelte
··· 1 1 <script lang="ts"> 2 - // icon originally from @tabler/icons-svelte, patched for Svelte 5 3 - import { Icon } from '@lucide/svelte' 4 - import type { IconNode, IconProps } from '@lucide/svelte' 2 + // icon originally from @tabler/icons-svelte, patched for Svelte 5 3 + import { Icon } from '@lucide/svelte' 4 + import type { IconNode, IconProps } from '@lucide/svelte' 5 5 6 - const iconNode: IconNode = [ 7 - ['path', { d: 'M7.027 11.477a5 5 0 1 0 5.496 -4.45a4.951 4.951 0 0 0 -3.088 .681' }], 8 - ['path', { d: 'M5.636 5.636a9 9 0 1 0 3.555 -2.188' }], 9 - ['path', { d: 'M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0' }], 10 - ['path', { d: 'M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0' }], 11 - ['path', { d: 'M9 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0' }], 12 - ] 6 + const iconNode: IconNode = [ 7 + ['path', { d: 'M7.027 11.477a5 5 0 1 0 5.496 -4.45a4.951 4.951 0 0 0 -3.088 .681' }], 8 + ['path', { d: 'M5.636 5.636a9 9 0 1 0 3.555 -2.188' }], 9 + ['path', { d: 'M18 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0' }], 10 + ['path', { d: 'M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0' }], 11 + ['path', { d: 'M9 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0' }], 12 + ] 13 13 14 - type UniverseIconProps = IconProps 15 - let restProps: UniverseIconProps = $props() 14 + type UniverseIconProps = IconProps 15 + let restProps: UniverseIconProps = $props() 16 16 </script> 17 17 18 18 <Icon name="universe" {...restProps} iconNode={iconNode} />
+12 -12
packages/icons/src/lib/WhirlIcon.svelte
··· 1 1 <script lang="ts"> 2 - // icon originally from @tabler/icons-svelte, patched for Svelte 5 3 - import { Icon } from '@lucide/svelte' 4 - import type { IconNode, IconProps } from '@lucide/svelte' 2 + // icon originally from @tabler/icons-svelte, patched for Svelte 5 3 + import { Icon } from '@lucide/svelte' 4 + import type { IconNode, IconProps } from '@lucide/svelte' 5 5 6 - const iconNode: IconNode = [ 7 - ['path', { d: 'M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z' }], 8 - ['path', { d: 'M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5' }], 9 - ['path', { d: 'M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6' }], 10 - ['path', { d: 'M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5' }], 11 - ['path', { d: 'M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6' }], 12 - ] 6 + const iconNode: IconNode = [ 7 + ['path', { d: 'M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z' }], 8 + ['path', { d: 'M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5' }], 9 + ['path', { d: 'M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6' }], 10 + ['path', { d: 'M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5' }], 11 + ['path', { d: 'M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6' }], 12 + ] 13 13 14 - type WhirlIconProps = IconProps 15 - let restProps: WhirlIconProps = $props() 14 + type WhirlIconProps = IconProps 15 + let restProps: WhirlIconProps = $props() 16 16 </script> 17 17 18 18 <Icon name="whirl" {...restProps} iconNode={iconNode} />
+13
packages/icons/src/lib/branding/GoogleIcon.svelte
··· 1 + <script lang="ts"> 2 + import { Icon } from '@lucide/svelte' 3 + import type { IconNode, IconProps } from '@lucide/svelte' 4 + 5 + const iconNode: IconNode = [ 6 + ['path', { d: 'M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z' }], 7 + ] 8 + 9 + type GoogleIconProps = IconProps 10 + let restProps: GoogleIconProps = $props() 11 + </script> 12 + 13 + <Icon name="google" {...restProps} iconNode={iconNode} />
+77
packages/icons/src/lib/hsr/ElementIcon.svelte
··· 1 + <script lang="ts"> 2 + import type { IconProps } from '@lucide/svelte' 3 + import type { Element } from '@starlight/types/hsr' 4 + import { cn, tv } from 'tailwind-variants' 5 + import { getElementIcon } from './ElementIcon.js' 6 + 7 + const elementIconTv = tv({ 8 + variants: { 9 + element: { 10 + physical: '', 11 + fire: '', 12 + imaginary: 'stroke-yellow-500', 13 + wind: 'stroke-green-500', 14 + ice: 'stroke-cyan-500', 15 + quantum: 'stroke-indigo-500', 16 + lightning: '', 17 + }, 18 + dark: { 19 + true: 'stroke-hsr-dark', 20 + }, 21 + }, 22 + compoundVariants: [ 23 + { 24 + element: 'physical', 25 + dark: false, 26 + class: [ 27 + 'stroke-zinc-900 fill-zinc-900', 28 + 'dark:stroke-zinc-100 dark:fill-zinc-100', 29 + ], 30 + }, 31 + { 32 + element: 'physical', 33 + dark: true, 34 + class: 'fill-hsr-dark', 35 + }, 36 + { 37 + element: 'fire', 38 + dark: false, 39 + class: 'stroke-red-500 fill-red-500', 40 + }, 41 + { 42 + element: 'fire', 43 + dark: true, 44 + class: 'fill-hsr-dark', 45 + }, 46 + { 47 + element: 'lightning', 48 + dark: false, 49 + class: 'stroke-purple-500 fill-purple-500', 50 + }, 51 + { 52 + element: 'lightning', 53 + dark: true, 54 + class: 'fill-hsr-dark', 55 + } 56 + ], 57 + }) 58 + 59 + type ElementIconRootProps = IconProps 60 + type ElementIconProps = ElementIconRootProps & { 61 + element: Element, 62 + dark?: boolean, 63 + } 64 + let { 65 + element, 66 + dark = false, 67 + class: className, 68 + ...restProps 69 + }: ElementIconProps = $props() 70 + let Icon = $derived(getElementIcon(element)) 71 + </script> 72 + 73 + <Icon 74 + {...restProps} 75 + class={cn(elementIconTv({element, dark}), className)} 76 + size={18} 77 + />
+45
packages/icons/src/lib/hsr/MechanicIcon.svelte
··· 1 + <script lang="ts"> 2 + import type { IconProps } from '@lucide/svelte' 3 + import type { Mechanic } from '@starlight/types/hsr' 4 + import { cn, tv, type VariantProps } from 'tailwind-variants' 5 + import { getMechanicIcon } from './MechanicIcon.js' 6 + 7 + const mechanicIconTv = tv({ 8 + base: 'stroke-2', 9 + variants: { 10 + color: { 11 + gold: 'stroke-hsr-gold', 12 + dark: 'stroke-hsr-dark', 13 + }, 14 + size: { 15 + sm: 'size-4', 16 + md: 'size-6', 17 + }, 18 + }, 19 + }) 20 + 21 + type MechanicIconVariants = VariantProps<typeof mechanicIconTv> 22 + type VariantColor = MechanicIconVariants['color'] 23 + type VariantSize = MechanicIconVariants['size'] 24 + 25 + type MechanicIconRootElement = IconProps 26 + type MechanicIconProps = MechanicIconRootElement & { 27 + mechanic: Mechanic, 28 + size?: VariantSize, 29 + color: VariantColor, 30 + } 31 + 32 + let { 33 + mechanic, 34 + size = 'md', 35 + color, 36 + class: className, 37 + ...restProps 38 + }: MechanicIconProps = $props() 39 + let Icon = $derived(getMechanicIcon(mechanic)) 40 + </script> 41 + 42 + <Icon 43 + {...restProps} 44 + class={cn(mechanicIconTv({color, size}), className)} 45 + />
-4
packages/icons/src/lib/index.ts
··· 1 - export { default as ElementIcon } from './ElementIcon.svelte' 2 - export { default as MechanicIcon } from './MechanicIcon.svelte' 3 - export { default as UniverseIcon } from './UniverseIcon.svelte' 4 - export { default as WhirlIcon } from './WhirlIcon.svelte'
-12
packages/icons/stories/DiscordIcon.stories.svelte
··· 1 - <script module> 2 - import { defineMeta } from '@storybook/addon-svelte-csf' 3 - import DiscordIcon from './../src/lib/DiscordIcon.svelte' 4 - 5 - const { Story } = defineMeta({ 6 - component: DiscordIcon, 7 - tags: ['autodocs'], 8 - }) 9 - 10 - </script> 11 - 12 - <Story name="DiscordIcon" />
+1 -1
packages/icons/stories/ElementIcon.stories.svelte
··· 1 1 <script module> 2 2 import { defineMeta } from '@storybook/addon-svelte-csf' 3 3 import { typeAs } from '@starlight/storybook-utils' 4 - import ElementIcon from './../src/lib/ElementIcon.svelte' 4 + import ElementIcon from './../src/lib/hsr/ElementIcon.svelte' 5 5 6 6 const { Story } = defineMeta({ 7 7 component: ElementIcon,
+1 -1
packages/icons/stories/GoogleIcon.stories.svelte
··· 1 1 <script module> 2 2 import { defineMeta } from '@storybook/addon-svelte-csf' 3 - import GoogleIcon from './../src/lib/GoogleIcon.sveltee' 3 + import GoogleIcon from './../src/lib/branding/GoogleIcon.svelte' 4 4 5 5 const { Story } = defineMeta({ 6 6 component: GoogleIcon,
+1 -1
packages/icons/stories/MechanicIcon.stories.svelte
··· 1 1 <script module> 2 2 import { typeAs } from '@starlight/storybook-utils' 3 3 import { defineMeta } from '@storybook/addon-svelte-csf' 4 - import MechanicIcon from './../src/lib/MechanicIcon.svelte' 4 + import MechanicIcon from './../src/lib/hsr/MechanicIcon.svelte' 5 5 6 6 const { Story } = defineMeta({ 7 7 component: MechanicIcon,
+22
packages/icons/stories/PathIcon.stories.svelte
··· 1 + <script module> 2 + import { defineMeta } from '@storybook/addon-svelte-csf' 3 + import PathIcon from './../src/lib/hsr/path/PathIcon.svelte' 4 + 5 + const { Story } = defineMeta({ 6 + component: PathIcon, 7 + tags: ['autodocs'], 8 + }) 9 + </script> 10 + 11 + <Story name="Playground" args={{ path: 'destruction' }} /> 12 + <Story name="ElementIcon" asChild parameters={{ controls: { disable: true } }}> 13 + <div class="flex flex-col gap-2 items-start bg-blue-500"> 14 + <PathIcon path="abundance" class="fill-white size-8" /> 15 + <PathIcon path="destruction" /> 16 + <PathIcon path="erudition" /> 17 + <PathIcon path="hunt" /> 18 + <PathIcon path="nihility" /> 19 + <PathIcon path="preservation" /> 20 + <PathIcon path="remembrance" /> 21 + </div> 22 + </Story>
+961 -1693
pnpm-lock.yaml
··· 8 8 app: 9 9 '@better-auth/drizzle-adapter': 10 10 specifier: ^1.5.4 11 - version: 1.5.4 11 + version: 1.5.5 12 12 '@fontsource-variable/fraunces': 13 13 specifier: ^5.2.9 14 14 version: 5.2.9 ··· 23 23 version: 8.18.0 24 24 auth: 25 25 specifier: ^1.5.0 26 - version: 1.5.4 26 + version: 1.5.5 27 27 better-auth: 28 28 specifier: ^1.5.0 29 - version: 1.5.4 29 + version: 1.5.5 30 30 dotenv: 31 31 specifier: ^17.3.1 32 32 version: 17.3.1 33 33 drizzle-kit: 34 34 specifier: ^0.31.9 35 - version: 0.31.9 35 + version: 0.31.10 36 36 drizzle-orm: 37 37 specifier: ^0.45.1 38 38 version: 0.45.1 ··· 44 44 version: 8.20.0 45 45 resend: 46 46 specifier: ^6.9.3 47 - version: 6.9.3 47 + version: 6.9.4 48 48 ts-dedent: 49 49 specifier: ^2.2.0 50 50 version: 2.2.0 ··· 72 72 version: 4.67.0 73 73 storybook: 74 74 '@storybook/addon-a11y': 75 - specifier: ^10.2.19 76 - version: 10.2.19 75 + specifier: ^10.3.0 76 + version: 10.3.0 77 77 '@storybook/addon-docs': 78 - specifier: ^10.2.19 79 - version: 10.2.19 78 + specifier: ^10.3.0 79 + version: 10.3.0 80 80 '@storybook/addon-svelte-csf': 81 - specifier: ^5.0.11 82 - version: 5.0.11 81 + specifier: ^5.0.12 82 + version: 5.0.12 83 83 '@storybook/addon-themes': 84 - specifier: ^10.2.19 85 - version: 10.2.19 84 + specifier: ^10.3.0 85 + version: 10.3.0 86 86 '@storybook/addon-vitest': 87 - specifier: ^10.2.19 88 - version: 10.2.19 87 + specifier: ^10.3.0 88 + version: 10.3.0 89 89 '@storybook/svelte': 90 - specifier: ^10.2.19 91 - version: 10.2.19 90 + specifier: ^10.3.0 91 + version: 10.3.0 92 92 '@storybook/sveltekit': 93 - specifier: ^10.2.19 94 - version: 10.2.19 93 + specifier: ^10.3.0 94 + version: 10.3.0 95 95 chromatic: 96 96 specifier: ^13.3.5 97 97 version: 13.3.5 98 98 storybook: 99 - specifier: ^10.2.19 100 - version: 10.2.19 99 + specifier: ^10.3.0 100 + version: 10.3.0 101 101 svelte: 102 102 '@lucide/svelte': 103 - specifier: ^0.562.0 104 - version: 0.562.0 103 + specifier: ^0.577.0 104 + version: 0.577.0 105 105 '@sveltejs/adapter-auto': 106 106 specifier: ^7.0.0 107 107 version: 7.0.1 ··· 110 110 version: 7.2.8 111 111 '@sveltejs/kit': 112 112 specifier: ^2.53.4 113 - version: 2.53.4 113 + version: 2.55.0 114 114 '@sveltejs/package': 115 115 specifier: ^2.5.4 116 116 version: 2.5.7 ··· 128 128 version: 1.1.0 129 129 svelte: 130 130 specifier: ^5.53.6 131 - version: 5.53.7 131 + version: 5.54.0 132 132 svelte-check: 133 133 specifier: ^4.4.4 134 - version: 4.4.4 134 + version: 4.4.5 135 135 sveltekit-superforms: 136 136 specifier: ^2.30.0 137 137 version: 2.30.0 138 138 vitest-browser-svelte: 139 139 specifier: ^2.0.2 140 - version: 2.0.2 140 + version: 2.1.0 141 141 tailwind: 142 142 '@tailwindcss/vite': 143 - specifier: 0.0.0-insiders.a4be983 144 - version: 0.0.0-insiders.a4be983 143 + specifier: ^4.2.2 144 + version: 4.2.2 145 145 clsx: 146 146 specifier: ^2.1.1 147 147 version: 2.1.1 ··· 152 152 specifier: ^3.2.2 153 153 version: 3.2.2 154 154 tailwindcss: 155 - specifier: 0.0.0-insiders.a4be983 156 - version: 0.0.0-insiders.a4be983 155 + specifier: ^4.2.2 156 + version: 4.2.2 157 157 tw-animate-css: 158 158 specifier: ^1.4.0 159 159 version: 1.4.0 ··· 168 168 specifier: ^4.1.0 169 169 version: 4.1.0 170 170 lightningcss: 171 - specifier: ^1.31.1 172 - version: 1.31.1 171 + specifier: ^1.32.0 172 + version: 1.32.0 173 173 oxfmt: 174 - specifier: ^0.40.0 175 - version: 0.40.0 174 + specifier: ^0.41.0 175 + version: 0.41.0 176 176 oxlint: 177 - specifier: ^1.55.0 178 - version: 1.55.0 177 + specifier: ^1.56.0 178 + version: 1.56.0 179 179 oxlint-tsgolint: 180 180 specifier: ^0.16.0 181 181 version: 0.16.0 ··· 186 186 specifier: ^0.3.18 187 187 version: 0.3.18 188 188 tsdown: 189 - specifier: ^0.21.2 190 - version: 0.21.2 189 + specifier: ^0.21.4 190 + version: 0.21.4 191 191 vite: 192 192 specifier: ^8.0.0 193 193 version: 8.0.0 ··· 201 201 devDependencies: 202 202 '@storybook/addon-a11y': 203 203 specifier: catalog:storybook 204 - version: 10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)) 204 + version: 10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)) 205 205 '@storybook/addon-docs': 206 206 specifier: catalog:storybook 207 - version: 10.2.19(@types/react@19.2.14)(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 207 + version: 10.3.0(@types/react@19.2.14)(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 208 208 '@storybook/addon-svelte-csf': 209 209 specifier: catalog:storybook 210 - version: 5.0.11(@storybook/svelte@10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7))(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 210 + version: 5.0.12(@storybook/svelte@10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0))(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 211 211 '@storybook/addon-themes': 212 212 specifier: catalog:storybook 213 - version: 10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)) 213 + version: 10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)) 214 214 '@storybook/addon-vitest': 215 215 specifier: catalog:storybook 216 - version: 10.2.19(@vitest/browser-playwright@4.1.0)(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0))(@vitest/runner@4.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vitest@4.1.0) 216 + version: 10.3.0(@vitest/browser-playwright@4.1.0)(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0))(@vitest/runner@4.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vitest@4.1.0) 217 217 '@storybook/svelte': 218 218 specifier: catalog:storybook 219 - version: 10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7) 219 + version: 10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0) 220 220 '@storybook/sveltekit': 221 221 specifier: catalog:storybook 222 - version: 10.2.19(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 222 + version: 10.3.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 223 223 '@types/node': 224 224 specifier: catalog:dev 225 225 version: 25.5.0 226 226 '@vitest/coverage-v8': 227 227 specifier: catalog:voidzero 228 - version: 4.1.0(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0))(vitest@4.1.0) 228 + version: 4.1.0(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0))(vitest@4.1.0) 229 229 '@vitest/ui': 230 230 specifier: catalog:voidzero 231 231 version: 4.1.0(vitest@4.1.0) ··· 234 234 version: 2.1.1 235 235 eslint-plugin-svelte: 236 236 specifier: catalog:dev 237 - version: 3.15.2(eslint@10.0.2(jiti@2.6.1))(svelte@5.53.7) 237 + version: 3.15.2(eslint@10.0.3(jiti@2.6.1))(svelte@5.54.0) 238 238 node-modules-inspector: 239 239 specifier: catalog:dev 240 240 version: 1.4.2 241 241 oxfmt: 242 242 specifier: catalog:voidzero 243 - version: 0.40.0 243 + version: 0.41.0 244 244 oxlint: 245 245 specifier: catalog:voidzero 246 - version: 1.55.0(oxlint-tsgolint@0.16.0) 246 + version: 1.56.0(oxlint-tsgolint@0.16.0) 247 247 oxlint-tsgolint: 248 248 specifier: catalog:voidzero 249 249 version: 0.16.0 ··· 252 252 version: 0.3.18 253 253 storybook: 254 254 specifier: catalog:storybook 255 - version: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 255 + version: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 256 256 tailwind-merge: 257 257 specifier: catalog:tailwind 258 258 version: 3.5.0 259 259 tailwind-variants: 260 260 specifier: catalog:tailwind 261 - version: 3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.1) 261 + version: 3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.2) 262 262 tsdown: 263 263 specifier: catalog:voidzero 264 - version: 0.21.2(publint@0.3.18)(typescript@5.9.3) 264 + version: 0.21.4(publint@0.3.18)(typescript@5.9.3) 265 265 typescript: 266 266 specifier: catalog:dev 267 267 version: 5.9.3 268 268 vite: 269 269 specifier: catalog:voidzero 270 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 270 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 271 271 vitest: 272 272 specifier: catalog:voidzero 273 - version: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 273 + version: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 274 274 wrangler: 275 275 specifier: catalog:dev 276 - version: 4.67.0(@cloudflare/workers-types@4.20260306.1) 276 + version: 4.67.0(@cloudflare/workers-types@4.20260317.1) 277 277 278 278 app: 279 279 dependencies: 280 280 '@better-auth/drizzle-adapter': 281 281 specifier: catalog:app 282 - version: 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))) 282 + version: 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0)) 283 283 '@fontsource-variable/fraunces': 284 284 specifier: catalog:app 285 285 version: 5.2.9 ··· 291 291 version: 5.2.1 292 292 '@lucide/svelte': 293 293 specifier: catalog:svelte 294 - version: 0.562.0(svelte@5.53.7) 294 + version: 0.577.0(svelte@5.54.0) 295 295 '@starlight/icons': 296 296 specifier: link:../packages/icons 297 297 version: link:../packages/icons ··· 303 303 version: link:../packages/types 304 304 better-auth: 305 305 specifier: catalog:app 306 - version: 1.5.4(0b23cafb484f1c43f492f8eac2c7dca0) 306 + version: 1.5.5(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(drizzle-kit@0.31.10)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0))(mongodb@7.1.0)(pg@8.20.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.54.0)(vitest@4.1.0)(vue@3.5.30(typescript@5.9.3)) 307 307 bits-ui: 308 308 specifier: catalog:svelte 309 - version: 2.16.3(@internationalized/date@3.12.0)(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7) 309 + version: 2.16.3(@internationalized/date@3.12.0)(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0) 310 310 clsx: 311 311 specifier: catalog:tailwind 312 312 version: 2.1.1 313 313 drizzle-orm: 314 314 specifier: catalog:app 315 - version: 0.45.1(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 315 + version: 0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0) 316 316 lorem-ipsum: 317 317 specifier: catalog:app 318 318 version: 2.0.8 319 319 mode-watcher: 320 320 specifier: catalog:svelte 321 - version: 1.1.0(svelte@5.53.7) 321 + version: 1.1.0(svelte@5.54.0) 322 322 pg: 323 323 specifier: catalog:app 324 324 version: 8.20.0 325 325 resend: 326 326 specifier: catalog:app 327 - version: 6.9.3 327 + version: 6.9.4 328 328 sveltekit-superforms: 329 329 specifier: catalog:svelte 330 - version: 2.30.0(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(@types/json-schema@7.0.15)(svelte@5.53.7)(typescript@5.9.3) 330 + version: 2.30.0(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(@types/json-schema@7.0.15)(svelte@5.54.0)(typescript@5.9.3) 331 331 tailwind-merge: 332 332 specifier: catalog:tailwind 333 333 version: 3.5.0 334 334 tailwind-variants: 335 335 specifier: catalog:tailwind 336 - version: 3.2.2(tailwind-merge@3.5.0)(tailwindcss@0.0.0-insiders.a4be983) 336 + version: 3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.2) 337 337 ts-dedent: 338 338 specifier: catalog:app 339 339 version: 2.2.0 ··· 349 349 version: link:../packages/storybook-utils 350 350 '@sveltejs/adapter-cloudflare': 351 351 specifier: catalog:svelte 352 - version: 7.2.8(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(wrangler@4.67.0(@cloudflare/workers-types@4.20260306.1)) 352 + version: 7.2.8(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(wrangler@4.67.0(@cloudflare/workers-types@4.20260317.1)) 353 353 '@sveltejs/kit': 354 354 specifier: catalog:svelte 355 - version: 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 355 + version: 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 356 356 '@sveltejs/vite-plugin-svelte': 357 357 specifier: catalog:svelte 358 - version: 7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 358 + version: 7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 359 359 '@tailwindcss/vite': 360 360 specifier: catalog:tailwind 361 - version: 0.0.0-insiders.a4be983(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 361 + version: 4.2.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 362 362 '@tanstack/svelte-table': 363 363 specifier: catalog:svelte 364 - version: tanstack-table-8-svelte-5@0.1.2(svelte@5.53.7) 364 + version: tanstack-table-8-svelte-5@0.1.2(svelte@5.54.0) 365 365 '@types/pg': 366 366 specifier: catalog:app 367 367 version: 8.18.0 368 368 '@vitest/browser-playwright': 369 369 specifier: catalog:voidzero 370 - version: 4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))(vitest@4.1.0) 370 + version: 4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0) 371 371 auth: 372 372 specifier: catalog:app 373 - version: 1.5.4(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(better-call@1.3.2(zod@4.3.6))(drizzle-kit@0.31.9)(jose@6.2.0)(kysely@0.28.11)(mongodb@7.1.0)(mysql2@3.15.3)(nanostores@1.1.1)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.53.7)(typescript@5.9.3)(vitest@4.1.0) 373 + version: 1.5.5(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(better-call@1.3.2(zod@4.3.6))(drizzle-kit@0.31.10)(jose@6.2.2)(kysely@0.28.13)(magicast@0.5.2)(mongodb@7.1.0)(nanostores@1.2.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.54.0)(typescript@5.9.3)(vitest@4.1.0)(vue@3.5.30(typescript@5.9.3)) 374 374 chromatic: 375 375 specifier: catalog:storybook 376 376 version: 13.3.5 ··· 379 379 version: 17.3.1 380 380 drizzle-kit: 381 381 specifier: catalog:app 382 - version: 0.31.9 382 + version: 0.31.10 383 383 lightningcss: 384 384 specifier: catalog:voidzero 385 - version: 1.31.1 385 + version: 1.32.0 386 386 playwright: 387 387 specifier: catalog:voidzero 388 388 version: 1.58.2 389 389 svelte: 390 390 specifier: catalog:svelte 391 - version: 5.53.7 391 + version: 5.54.0 392 392 svelte-check: 393 393 specifier: catalog:svelte 394 - version: 4.4.4(picomatch@4.0.3)(svelte@5.53.7)(typescript@5.9.3) 394 + version: 4.4.5(picomatch@4.0.3)(svelte@5.54.0)(typescript@5.9.3) 395 395 tailwindcss: 396 396 specifier: catalog:tailwind 397 - version: 0.0.0-insiders.a4be983 397 + version: 4.2.2 398 398 vitest-browser-svelte: 399 399 specifier: catalog:svelte 400 - version: 2.0.2(svelte@5.53.7)(vitest@4.1.0) 400 + version: 2.1.0(svelte@5.54.0)(vitest@4.1.0) 401 401 402 402 packages/icons: 403 403 dependencies: 404 404 '@lucide/svelte': 405 405 specifier: 0.x 406 - version: 0.577.0(svelte@5.53.7) 406 + version: 0.577.0(svelte@5.54.0) 407 407 '@starlight/types': 408 408 specifier: workspace:../types 409 409 version: link:../types 410 410 svelte: 411 411 specifier: catalog:svelte 412 - version: 5.53.7 412 + version: 5.54.0 413 413 devDependencies: 414 + '@starlight/storybook-utils': 415 + specifier: link:../storybook-utils 416 + version: link:../storybook-utils 414 417 '@sveltejs/adapter-auto': 415 418 specifier: catalog:svelte 416 - version: 7.0.1(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))) 419 + version: 7.0.1(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))) 417 420 '@sveltejs/kit': 418 421 specifier: catalog:svelte 419 - version: 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 422 + version: 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 420 423 '@sveltejs/package': 421 424 specifier: catalog:svelte 422 - version: 2.5.7(svelte@5.53.7)(typescript@5.9.3) 425 + version: 2.5.7(svelte@5.54.0)(typescript@5.9.3) 423 426 '@sveltejs/vite-plugin-svelte': 424 427 specifier: catalog:svelte 425 - version: 7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 428 + version: 7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 426 429 '@tailwindcss/vite': 427 430 specifier: catalog:tailwind 428 - version: 0.0.0-insiders.a4be983(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 431 + version: 4.2.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 429 432 svelte-check: 430 433 specifier: catalog:svelte 431 - version: 4.4.4(picomatch@4.0.3)(svelte@5.53.7)(typescript@5.9.3) 434 + version: 4.4.5(picomatch@4.0.3)(svelte@5.54.0)(typescript@5.9.3) 435 + svgson: 436 + specifier: ^5.3.1 437 + version: 5.3.1 432 438 tailwindcss: 433 439 specifier: catalog:tailwind 434 - version: 0.0.0-insiders.a4be983 440 + version: 4.2.2 435 441 typescript: 436 442 specifier: catalog:dev 437 443 version: 5.9.3 ··· 443 449 version: link:../types 444 450 storybook: 445 451 specifier: 10.x 446 - version: 10.2.16(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 452 + version: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 447 453 devDependencies: 448 454 typescript: 449 455 specifier: catalog:dev ··· 560 566 resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 561 567 engines: {node: '>=6.9.0'} 562 568 563 - '@babel/helper-string-parser@8.0.0-rc.2': 564 - resolution: {integrity: sha512-noLx87RwlBEMrTzncWd/FvTxoJ9+ycHNg0n8yyYydIoDsLZuxknKgWRJUqcrVkNrJ74uGyhWQzQaS3q8xfGAhQ==} 569 + '@babel/helper-string-parser@8.0.0-rc.3': 570 + resolution: {integrity: sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==} 565 571 engines: {node: ^20.19.0 || >=22.12.0} 566 572 567 573 '@babel/helper-validator-identifier@7.28.5': ··· 576 582 resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 577 583 engines: {node: '>=6.9.0'} 578 584 579 - '@babel/helpers@7.28.6': 580 - resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==} 585 + '@babel/helpers@7.29.2': 586 + resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==} 581 587 engines: {node: '>=6.9.0'} 582 588 583 - '@babel/parser@7.29.0': 584 - resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==} 589 + '@babel/parser@7.29.2': 590 + resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} 585 591 engines: {node: '>=6.0.0'} 586 592 hasBin: true 587 593 ··· 650 656 peerDependencies: 651 657 '@babel/core': ^7.0.0-0 652 658 653 - '@babel/runtime@7.28.6': 654 - resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==} 659 + '@babel/runtime@7.29.2': 660 + resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==} 655 661 engines: {node: '>=6.9.0'} 656 662 657 663 '@babel/template@7.28.6': ··· 674 680 resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} 675 681 engines: {node: '>=18'} 676 682 677 - '@better-auth/core@1.5.4': 678 - resolution: {integrity: sha512-k5AdwPRQETZn0vdB60EB9CDxxfllpJXKqVxTjyXIUSRz7delNGlU0cR/iRP3VfVJwvYR1NbekphBDNo+KGoEzQ==} 683 + '@better-auth/core@1.5.5': 684 + resolution: {integrity: sha512-1oR/2jAp821Dcf67kQYHUoyNcdc1TcShfw4QMK0YTVntuRES5mUOyvEJql5T6eIuLfaqaN4LOF78l0FtF66HXA==} 679 685 peerDependencies: 680 686 '@better-auth/utils': 0.3.1 681 687 '@better-fetch/fetch': 1.1.21 ··· 688 694 '@cloudflare/workers-types': 689 695 optional: true 690 696 691 - '@better-auth/drizzle-adapter@1.5.4': 692 - resolution: {integrity: sha512-4M4nMAWrDd3TmpV6dONkJjybBVKRZghe5Oj0NNyDEoXubxastQdO7Sb5B54I1rTx5yoMgsqaB+kbJnu/9UgjQg==} 697 + '@better-auth/drizzle-adapter@1.5.5': 698 + resolution: {integrity: sha512-HAi9xAP40oDt48QZeYBFTcmg3vt1Jik90GwoRIfangd7VGbxesIIDBJSnvwMbZ52GBIc6+V4FRw9lasNiNrPfw==} 693 699 peerDependencies: 694 - '@better-auth/core': 1.5.4 700 + '@better-auth/core': 1.5.5 695 701 '@better-auth/utils': ^0.3.0 696 702 drizzle-orm: '>=0.41.0' 703 + peerDependenciesMeta: 704 + drizzle-orm: 705 + optional: true 697 706 698 - '@better-auth/kysely-adapter@1.5.4': 699 - resolution: {integrity: sha512-DPww7rIfz6Ed7dZlJSW9xMQ42VKaJLB5Cs+pPqd+UHKRyighKjf3VgvMIcAdFPc4olQ0qRHo3+ZJhFlBCxRhxA==} 707 + '@better-auth/kysely-adapter@1.5.5': 708 + resolution: {integrity: sha512-LmHffIVnqbfsxcxckMOoE8MwibWrbVFch+kwPKJ5OFDFv6lin75ufN7ZZ7twH0IMPLT/FcgzaRjP8jRrXRef9g==} 700 709 peerDependencies: 701 - '@better-auth/core': 1.5.4 710 + '@better-auth/core': 1.5.5 702 711 '@better-auth/utils': ^0.3.0 703 712 kysely: ^0.27.0 || ^0.28.0 704 713 705 - '@better-auth/memory-adapter@1.5.4': 706 - resolution: {integrity: sha512-iiWYut9rbQqiAsgRBtj6+nxanwjapxRgpIJbiS2o81h7b9iclE0AiDA0Foes590gdFQvskNauZcCpuF8ytxthg==} 714 + '@better-auth/memory-adapter@1.5.5': 715 + resolution: {integrity: sha512-4X0j1/2L+nsgmObjmy9xEGUFWUv38Qjthp558fwS3DAp6ueWWyCaxaD6VJZ7m5qPNMrsBStO5WGP8CmJTEWm7g==} 707 716 peerDependencies: 708 - '@better-auth/core': 1.5.4 717 + '@better-auth/core': 1.5.5 709 718 '@better-auth/utils': ^0.3.0 710 719 711 - '@better-auth/mongo-adapter@1.5.4': 712 - resolution: {integrity: sha512-ArzJN5Obk6i6+vLK1HpPzLIcsjxZYXPPUvxVU8eyU5HyoUT2MlswWfPQ8UJAKPn0iq/T4PVp/wZcQMhWk1tuNA==} 720 + '@better-auth/mongo-adapter@1.5.5': 721 + resolution: {integrity: sha512-P1J9ljL5X5k740I8Rx1esPWNgWYPdJR5hf2CY7BwDSrQFPUHuzeCg0YhtEEP55niNateTXhBqGAcy0fVOeamZg==} 713 722 peerDependencies: 714 - '@better-auth/core': 1.5.4 723 + '@better-auth/core': 1.5.5 715 724 '@better-auth/utils': ^0.3.0 716 725 mongodb: ^6.0.0 || ^7.0.0 717 726 718 - '@better-auth/prisma-adapter@1.5.4': 719 - resolution: {integrity: sha512-ZQTbcBopw/ezjjbNFsfR3CRp0QciC4tJCarAnB5G9fZtUYbDjfY0vZOxIRmU4kI3x755CXQpGqTrkwmXaMRa3w==} 727 + '@better-auth/prisma-adapter@1.5.5': 728 + resolution: {integrity: sha512-CliDd78CXHzzwQIXhCdwGr5Ml53i6JdCHWV7PYwTIJz9EAm6qb2RVBdpP3nqEfNjINGM22A6gfleCgCdZkTIZg==} 720 729 peerDependencies: 721 - '@better-auth/core': 1.5.4 730 + '@better-auth/core': 1.5.5 722 731 '@better-auth/utils': ^0.3.0 723 732 '@prisma/client': ^5.0.0 || ^6.0.0 || ^7.0.0 724 733 prisma: ^5.0.0 || ^6.0.0 || ^7.0.0 734 + peerDependenciesMeta: 735 + '@prisma/client': 736 + optional: true 737 + prisma: 738 + optional: true 725 739 726 - '@better-auth/telemetry@1.5.4': 727 - resolution: {integrity: sha512-mGXTY7Ecxo7uvlMr6TFCBUvlH0NUMOeE9LKgPhG4HyhBN6VfCEg/DD9PG0Z2IatmMWQbckkt7ox5A0eBpG9m5w==} 740 + '@better-auth/telemetry@1.5.5': 741 + resolution: {integrity: sha512-1+lklxArn4IMHuU503RcPdXrSG2tlXt4jnGG3omolmspQ7tktg/Y9XO/yAkYDurtvMn1xJ8X1Ov01Ji/r5s9BQ==} 728 742 peerDependencies: 729 - '@better-auth/core': 1.5.4 743 + '@better-auth/core': 1.5.5 730 744 731 745 '@better-auth/utils@0.3.1': 732 746 resolution: {integrity: sha512-+CGp4UmZSUrHHnpHhLPYu6cV+wSUSvVbZbNykxhUDocpVNTo9uFFxw/NqJlh1iC4wQ9HKKWGCKuZ5wUgS0v6Kg==} ··· 798 812 cpu: [x64] 799 813 os: [win32] 800 814 801 - '@cloudflare/workers-types@4.20260306.1': 802 - resolution: {integrity: sha512-1gtiB0nm0Uji6VKHprvL1ZyFtdHZSR907lU2fbBioMurJAF4tQPoafJFJp4oeViUiMVUEqkp0Eh0dcbcKoHoow==} 815 + '@cloudflare/workers-types@4.20260317.1': 816 + resolution: {integrity: sha512-+G4eVwyCpm8Au1ex8vQBCuA9wnwqetz4tPNRoB/53qvktERWBRMQnrtvC1k584yRE3emMThtuY0gWshvSJ++PQ==} 803 817 804 818 '@cspotcode/source-map-support@0.8.1': 805 819 resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} ··· 807 821 808 822 '@drizzle-team/brocli@0.10.2': 809 823 resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==} 810 - 811 - '@electric-sql/pglite-socket@0.0.20': 812 - resolution: {integrity: sha512-J5nLGsicnD9wJHnno9r+DGxfcZWh+YJMCe0q/aCgtG6XOm9Z7fKeite8IZSNXgZeGltSigM9U/vAWZQWdgcSFg==} 813 - hasBin: true 814 - peerDependencies: 815 - '@electric-sql/pglite': 0.3.15 816 - 817 - '@electric-sql/pglite-tools@0.2.20': 818 - resolution: {integrity: sha512-BK50ZnYa3IG7ztXhtgYf0Q7zijV32Iw1cYS8C+ThdQlwx12V5VZ9KRJ42y82Hyb4PkTxZQklVQA9JHyUlex33A==} 819 - peerDependencies: 820 - '@electric-sql/pglite': 0.3.15 821 - 822 - '@electric-sql/pglite@0.3.15': 823 - resolution: {integrity: sha512-Cj++n1Mekf9ETfdc16TlDi+cDDQF0W7EcbyRHYOAeZdsAe8M/FJg18itDTSwyHfar2WIezawM9o0EKaRGVKygQ==} 824 824 825 825 '@emnapi/core@1.9.0': 826 826 resolution: {integrity: sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w==} ··· 1496 1496 '@hapi/topo@5.1.0': 1497 1497 resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} 1498 1498 1499 - '@hono/node-server@1.19.9': 1500 - resolution: {integrity: sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==} 1501 - engines: {node: '>=18.14.1'} 1502 - peerDependencies: 1503 - hono: ^4 1504 - 1505 1499 '@humanfs/core@0.19.1': 1506 1500 resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 1507 1501 engines: {node: '>=18.18.0'} ··· 1696 1690 '@jsr/nc__whatwg-infra@1.1.0': 1697 1691 resolution: {integrity: sha512-jNwEWSMtZh/afZIcNBGW7qjukYn+0P4cswPBifmzHDavPuoFgIoKelvLA9Gp7ogaY4PziqDChH9fBOldLrrNwA==, tarball: https://npm.jsr.io/~/11/@jsr/nc__whatwg-infra/1.1.0.tgz} 1698 1692 1699 - '@lucide/svelte@0.562.0': 1700 - resolution: {integrity: sha512-wDMULwtTFN2Sc/TFBm6gfuVCNb4Y5P9LDrwxNnUbV52+IEU7NXZmvxwXoz+vrrpad6Xupq+Hw5eUlqIHEGhouw==} 1701 - peerDependencies: 1702 - svelte: ^5 1703 - 1704 1693 '@lucide/svelte@0.577.0': 1705 1694 resolution: {integrity: sha512-0P6mkySd2MapIEgq08tADPmcN4DHndC/02PWwaLkOerXlx5Sv9aT4BxyXLIY+eccr0g/nEyCYiJesqS61YdBZQ==} 1706 1695 peerDependencies: ··· 1737 1726 '@oxc-project/types@0.115.0': 1738 1727 resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==} 1739 1728 1740 - '@oxfmt/binding-android-arm-eabi@0.40.0': 1741 - resolution: {integrity: sha512-S6zd5r1w/HmqR8t0CTnGjFTBLDq2QKORPwriCHxo4xFNuhmOTABGjPaNvCJJVnrKBLsohOeiDX3YqQfJPF+FXw==} 1729 + '@oxfmt/binding-android-arm-eabi@0.41.0': 1730 + resolution: {integrity: sha512-REfrqeMKGkfMP+m/ScX4f5jJBSmVNYcpoDF8vP8f8eYPDuPGZmzp56NIUsYmx3h7f6NzC6cE3gqh8GDWrJHCKw==} 1742 1731 engines: {node: ^20.19.0 || >=22.12.0} 1743 1732 cpu: [arm] 1744 1733 os: [android] 1745 1734 1746 - '@oxfmt/binding-android-arm64@0.40.0': 1747 - resolution: {integrity: sha512-/mbS9UUP/5Vbl2D6osIdcYiP0oie63LKMoTyGj5hyMCK/SFkl3EhtyRAfdjPvuvHC0SXdW6ePaTKkBSq1SNcIw==} 1735 + '@oxfmt/binding-android-arm64@0.41.0': 1736 + resolution: {integrity: sha512-s0b1dxNgb2KomspFV2LfogC2XtSJB42POXF4bMCLJyvQmAGos4ZtjGPfQreToQEaY0FQFjz3030ggI36rF1q5g==} 1748 1737 engines: {node: ^20.19.0 || >=22.12.0} 1749 1738 cpu: [arm64] 1750 1739 os: [android] 1751 1740 1752 - '@oxfmt/binding-darwin-arm64@0.40.0': 1753 - resolution: {integrity: sha512-wRt8fRdfLiEhnRMBonlIbKrJWixoEmn6KCjKE9PElnrSDSXETGZfPb8ee+nQNTobXkCVvVLytp2o0obAsxl78Q==} 1741 + '@oxfmt/binding-darwin-arm64@0.41.0': 1742 + resolution: {integrity: sha512-EGXGualADbv/ZmamE7/2DbsrYmjoPlAmHEpTL4vapLF4EfVD6fr8/uQDFnPJkUBjiSWFJZtFNsGeN1B6V3owmA==} 1754 1743 engines: {node: ^20.19.0 || >=22.12.0} 1755 1744 cpu: [arm64] 1756 1745 os: [darwin] 1757 1746 1758 - '@oxfmt/binding-darwin-x64@0.40.0': 1759 - resolution: {integrity: sha512-fzowhqbOE/NRy+AE5ob0+Y4X243WbWzDb00W+pKwD7d9tOqsAFbtWUwIyqqCoCLxj791m2xXIEeLH/3uz7zCCg==} 1747 + '@oxfmt/binding-darwin-x64@0.41.0': 1748 + resolution: {integrity: sha512-WxySJEvdQQYMmyvISH3qDpTvoS0ebnIP63IMxLLWowJyPp/AAH0hdWtlo+iGNK5y3eVfa5jZguwNaQkDKWpGSw==} 1760 1749 engines: {node: ^20.19.0 || >=22.12.0} 1761 1750 cpu: [x64] 1762 1751 os: [darwin] 1763 1752 1764 - '@oxfmt/binding-freebsd-x64@0.40.0': 1765 - resolution: {integrity: sha512-agZ9ITaqdBjcerRRFEHB8s0OyVcQW8F9ZxsszjxzeSthQ4fcN2MuOtQFWec1ed8/lDa50jSLHVE2/xPmTgtCfQ==} 1753 + '@oxfmt/binding-freebsd-x64@0.41.0': 1754 + resolution: {integrity: sha512-Y2kzMkv3U3oyuYaR4wTfGjOTYTXiFC/hXmG0yVASKkbh02BJkvD98Ij8bIevr45hNZ0DmZEgqiXF+9buD4yMYQ==} 1766 1755 engines: {node: ^20.19.0 || >=22.12.0} 1767 1756 cpu: [x64] 1768 1757 os: [freebsd] 1769 1758 1770 - '@oxfmt/binding-linux-arm-gnueabihf@0.40.0': 1771 - resolution: {integrity: sha512-ZM2oQ47p28TP1DVIp7HL1QoMUgqlBFHey0ksHct7tMXoU5BqjNvPWw7888azzMt25lnyPODVuye1wvNbvVUFOA==} 1759 + '@oxfmt/binding-linux-arm-gnueabihf@0.41.0': 1760 + resolution: {integrity: sha512-ptazDjdUyhket01IjPTT6ULS1KFuBfTUU97osTP96X5y/0oso+AgAaJzuH81oP0+XXyrWIHbRzozSAuQm4p48g==} 1772 1761 engines: {node: ^20.19.0 || >=22.12.0} 1773 1762 cpu: [arm] 1774 1763 os: [linux] 1775 1764 1776 - '@oxfmt/binding-linux-arm-musleabihf@0.40.0': 1777 - resolution: {integrity: sha512-RBFPAxRAIsMisKM47Oe6Lwdv6agZYLz02CUhVCD1sOv5ajAcRMrnwCFBPWwGXpazToW2mjnZxFos8TuFjTU15A==} 1765 + '@oxfmt/binding-linux-arm-musleabihf@0.41.0': 1766 + resolution: {integrity: sha512-UkoL2OKxFD+56bPEBcdGn+4juTW4HRv/T6w1dIDLnvKKWr6DbarB/mtHXlADKlFiJubJz8pRkttOR7qjYR6lTA==} 1778 1767 engines: {node: ^20.19.0 || >=22.12.0} 1779 1768 cpu: [arm] 1780 1769 os: [linux] 1781 1770 1782 - '@oxfmt/binding-linux-arm64-gnu@0.40.0': 1783 - resolution: {integrity: sha512-Nb2XbQ+wV3W2jSIihXdPj7k83eOxeSgYP3N/SRXvQ6ZYPIk6Q86qEh5Gl/7OitX3bQoQrESqm1yMLvZV8/J7dA==} 1771 + '@oxfmt/binding-linux-arm64-gnu@0.41.0': 1772 + resolution: {integrity: sha512-gofu0PuumSOHYczD8p62CPY4UF6ee+rSLZJdUXkpwxg6pILiwSDBIouPskjF/5nF3A7QZTz2O9KFNkNxxFN9tA==} 1784 1773 engines: {node: ^20.19.0 || >=22.12.0} 1785 1774 cpu: [arm64] 1786 1775 os: [linux] 1787 1776 libc: [glibc] 1788 1777 1789 - '@oxfmt/binding-linux-arm64-musl@0.40.0': 1790 - resolution: {integrity: sha512-tGmWhLD/0YMotCdfezlT6tC/MJG/wKpo4vnQ3Cq+4eBk/BwNv7EmkD0VkD5F/dYkT3b8FNU01X2e8vvJuWoM1w==} 1778 + '@oxfmt/binding-linux-arm64-musl@0.41.0': 1779 + resolution: {integrity: sha512-VfVZxL0+6RU86T8F8vKiDBa+iHsr8PAjQmKGBzSCAX70b6x+UOMFl+2dNihmKmUwqkCazCPfYjt6SuAPOeQJ3g==} 1791 1780 engines: {node: ^20.19.0 || >=22.12.0} 1792 1781 cpu: [arm64] 1793 1782 os: [linux] 1794 1783 libc: [musl] 1795 1784 1796 - '@oxfmt/binding-linux-ppc64-gnu@0.40.0': 1797 - resolution: {integrity: sha512-rVbFyM3e7YhkVnp0IVYjaSHfrBWcTRWb60LEcdNAJcE2mbhTpbqKufx0FrhWfoxOrW/+7UJonAOShoFFLigDqQ==} 1785 + '@oxfmt/binding-linux-ppc64-gnu@0.41.0': 1786 + resolution: {integrity: sha512-bwzokz2eGvdfJbc0i+zXMJ4BBjQPqg13jyWpEEZDOrBCQ91r8KeY2Mi2kUeuMTZNFXju+jcAbAbpyJxRGla0eg==} 1798 1787 engines: {node: ^20.19.0 || >=22.12.0} 1799 1788 cpu: [ppc64] 1800 1789 os: [linux] 1801 1790 libc: [glibc] 1802 1791 1803 - '@oxfmt/binding-linux-riscv64-gnu@0.40.0': 1804 - resolution: {integrity: sha512-3ZqBw14JtWeEoLiioJcXSJz8RQyPE+3jLARnYM1HdPzZG4vk+Ua8CUupt2+d+vSAvMyaQBTN2dZK+kbBS/j5mA==} 1792 + '@oxfmt/binding-linux-riscv64-gnu@0.41.0': 1793 + resolution: {integrity: sha512-POLM//PCH9uqDeNDwWL3b3DkMmI3oI2cU6hwc2lnztD1o7dzrQs3R9nq555BZ6wI7t2lyhT9CS+CRaz5X0XqLA==} 1805 1794 engines: {node: ^20.19.0 || >=22.12.0} 1806 1795 cpu: [riscv64] 1807 1796 os: [linux] 1808 1797 libc: [glibc] 1809 1798 1810 - '@oxfmt/binding-linux-riscv64-musl@0.40.0': 1811 - resolution: {integrity: sha512-JJ4PPSdcbGBjPvb+O7xYm2FmAsKCyuEMYhqatBAHMp/6TA6rVlf9Z/sYPa4/3Bommb+8nndm15SPFRHEPU5qFA==} 1799 + '@oxfmt/binding-linux-riscv64-musl@0.41.0': 1800 + resolution: {integrity: sha512-NNK7PzhFqLUwx/G12Xtm6scGv7UITvyGdAR5Y+TlqsG+essnuRWR4jRNODWRjzLZod0T3SayRbnkSIWMBov33w==} 1812 1801 engines: {node: ^20.19.0 || >=22.12.0} 1813 1802 cpu: [riscv64] 1814 1803 os: [linux] 1815 1804 libc: [musl] 1816 1805 1817 - '@oxfmt/binding-linux-s390x-gnu@0.40.0': 1818 - resolution: {integrity: sha512-Kp0zNJoX9Ik77wUya2tpBY3W9f40VUoMQLWVaob5SgCrblH/t2xr/9B2bWHfs0WCefuGmqXcB+t0Lq77sbBmZw==} 1806 + '@oxfmt/binding-linux-s390x-gnu@0.41.0': 1807 + resolution: {integrity: sha512-qVf/zDC5cN9eKe4qI/O/m445er1IRl6swsSl7jHkqmOSVfknwCe5JXitYjZca+V/cNJSU/xPlC5EFMabMMFDpw==} 1819 1808 engines: {node: ^20.19.0 || >=22.12.0} 1820 1809 cpu: [s390x] 1821 1810 os: [linux] 1822 1811 libc: [glibc] 1823 1812 1824 - '@oxfmt/binding-linux-x64-gnu@0.40.0': 1825 - resolution: {integrity: sha512-7YTCNzleWTaQTqNGUNQ66qVjpoV6DjbCOea+RnpMBly2bpzrI/uu7Rr+2zcgRfNxyjXaFTVQKaRKjqVdeUfeVA==} 1813 + '@oxfmt/binding-linux-x64-gnu@0.41.0': 1814 + resolution: {integrity: sha512-ojxYWu7vUb6ysYqVCPHuAPVZHAI40gfZ0PDtZAMwVmh2f0V8ExpPIKoAKr7/8sNbAXJBBpZhs2coypIo2jJX4w==} 1826 1815 engines: {node: ^20.19.0 || >=22.12.0} 1827 1816 cpu: [x64] 1828 1817 os: [linux] 1829 1818 libc: [glibc] 1830 1819 1831 - '@oxfmt/binding-linux-x64-musl@0.40.0': 1832 - resolution: {integrity: sha512-hWnSzJ0oegeOwfOEeejYXfBqmnRGHusgtHfCPzmvJvHTwy1s3Neo59UKc1CmpE3zxvrCzJoVHos0rr97GHMNPw==} 1820 + '@oxfmt/binding-linux-x64-musl@0.41.0': 1821 + resolution: {integrity: sha512-O2exZLBxoCMIv2vlvcbkdedazJPTdG0VSup+0QUCfYQtx751zCZNboX2ZUOiQ/gDTdhtXvSiot0h6GEGkOyalA==} 1833 1822 engines: {node: ^20.19.0 || >=22.12.0} 1834 1823 cpu: [x64] 1835 1824 os: [linux] 1836 1825 libc: [musl] 1837 1826 1838 - '@oxfmt/binding-openharmony-arm64@0.40.0': 1839 - resolution: {integrity: sha512-28sJC1lR4qtBJGzSRRbPnSW3GxU2+4YyQFE6rCmsUYqZ5XYH8jg0/w+CvEzQ8TuAQz5zLkcA25nFQGwoU0PT3Q==} 1827 + '@oxfmt/binding-openharmony-arm64@0.41.0': 1828 + resolution: {integrity: sha512-N+31/VoL+z+NNBt8viy3I4NaIdPbiYeOnB884LKqvXldaE2dRztdPv3q5ipfZYv0RwFp7JfqS4I27K/DSHCakg==} 1840 1829 engines: {node: ^20.19.0 || >=22.12.0} 1841 1830 cpu: [arm64] 1842 1831 os: [openharmony] 1843 1832 1844 - '@oxfmt/binding-win32-arm64-msvc@0.40.0': 1845 - resolution: {integrity: sha512-cDkRnyT0dqwF5oIX1Cv59HKCeZQFbWWdUpXa3uvnHFT2iwYSSZspkhgjXjU6iDp5pFPaAEAe9FIbMoTgkTmKPg==} 1833 + '@oxfmt/binding-win32-arm64-msvc@0.41.0': 1834 + resolution: {integrity: sha512-Z7NAtu/RN8kjCQ1y5oDD0nTAeRswh3GJ93qwcW51srmidP7XPBmZbLlwERu1W5veCevQJtPS9xmkpcDTYsGIwQ==} 1846 1835 engines: {node: ^20.19.0 || >=22.12.0} 1847 1836 cpu: [arm64] 1848 1837 os: [win32] 1849 1838 1850 - '@oxfmt/binding-win32-ia32-msvc@0.40.0': 1851 - resolution: {integrity: sha512-7rPemBJjqm5Gkv6ZRCPvK8lE6AqQ/2z31DRdWazyx2ZvaSgL7QGofHXHNouRpPvNsT9yxRNQJgigsWkc+0qg4w==} 1839 + '@oxfmt/binding-win32-ia32-msvc@0.41.0': 1840 + resolution: {integrity: sha512-uNxxP3l4bJ6VyzIeRqCmBU2Q0SkCFgIhvx9/9dJ9V8t/v+jP1IBsuaLwCXGR8JPHtkj4tFp+RHtUmU2ZYAUpMA==} 1852 1841 engines: {node: ^20.19.0 || >=22.12.0} 1853 1842 cpu: [ia32] 1854 1843 os: [win32] 1855 1844 1856 - '@oxfmt/binding-win32-x64-msvc@0.40.0': 1857 - resolution: {integrity: sha512-/Zmj0yTYSvmha6TG1QnoLqVT7ZMRDqXvFXXBQpIjteEwx9qvUYMBH2xbiOFhDeMUJkGwC3D6fdKsFtaqUvkwNA==} 1845 + '@oxfmt/binding-win32-x64-msvc@0.41.0': 1846 + resolution: {integrity: sha512-49ZSpbZ1noozyPapE8SUOSm3IN0Ze4b5nkO+4+7fq6oEYQQJFhE0saj5k/Gg4oewVPdjn0L3ZFeWk2Vehjcw7A==} 1858 1847 engines: {node: ^20.19.0 || >=22.12.0} 1859 1848 cpu: [x64] 1860 1849 os: [win32] ··· 1889 1878 cpu: [x64] 1890 1879 os: [win32] 1891 1880 1892 - '@oxlint/binding-android-arm-eabi@1.55.0': 1893 - resolution: {integrity: sha512-NhvgAhncTSOhRahQSCnkK/4YIGPjTmhPurQQ2dwt2IvwCMTvZRW5vF2K10UBOxFve4GZDMw6LtXZdC2qeuYIVQ==} 1881 + '@oxlint/binding-android-arm-eabi@1.56.0': 1882 + resolution: {integrity: sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A==} 1894 1883 engines: {node: ^20.19.0 || >=22.12.0} 1895 1884 cpu: [arm] 1896 1885 os: [android] 1897 1886 1898 - '@oxlint/binding-android-arm64@1.55.0': 1899 - resolution: {integrity: sha512-P9iWRh+Ugqhg+D7rkc7boHX8o3H2h7YPcZHQIgvVBgnua5tk4LR2L+IBlreZs58/95cd2x3/004p5VsQM9z4SA==} 1887 + '@oxlint/binding-android-arm64@1.56.0': 1888 + resolution: {integrity: sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg==} 1900 1889 engines: {node: ^20.19.0 || >=22.12.0} 1901 1890 cpu: [arm64] 1902 1891 os: [android] 1903 1892 1904 - '@oxlint/binding-darwin-arm64@1.55.0': 1905 - resolution: {integrity: sha512-esakkJIt7WFAhT30P/Qzn96ehFpzdZ1mNuzpOb8SCW7lI4oB8VsyQnkSHREM671jfpuBb/o2ppzBCx5l0jpgMA==} 1893 + '@oxlint/binding-darwin-arm64@1.56.0': 1894 + resolution: {integrity: sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw==} 1906 1895 engines: {node: ^20.19.0 || >=22.12.0} 1907 1896 cpu: [arm64] 1908 1897 os: [darwin] 1909 1898 1910 - '@oxlint/binding-darwin-x64@1.55.0': 1911 - resolution: {integrity: sha512-xDMFRCCAEK9fOH6As2z8ELsC+VDGSFRHwIKVSilw+xhgLwTDFu37rtmRbmUlx8rRGS6cWKQPTc47AVxAZEVVPQ==} 1899 + '@oxlint/binding-darwin-x64@1.56.0': 1900 + resolution: {integrity: sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ==} 1912 1901 engines: {node: ^20.19.0 || >=22.12.0} 1913 1902 cpu: [x64] 1914 1903 os: [darwin] 1915 1904 1916 - '@oxlint/binding-freebsd-x64@1.55.0': 1917 - resolution: {integrity: sha512-mYZqnwUD7ALCRxGenyLd1uuG+rHCL+OTT6S8FcAbVm/ZT2AZMGjvibp3F6k1SKOb2aeqFATmwRykrE41Q0GWVw==} 1905 + '@oxlint/binding-freebsd-x64@1.56.0': 1906 + resolution: {integrity: sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg==} 1918 1907 engines: {node: ^20.19.0 || >=22.12.0} 1919 1908 cpu: [x64] 1920 1909 os: [freebsd] 1921 1910 1922 - '@oxlint/binding-linux-arm-gnueabihf@1.55.0': 1923 - resolution: {integrity: sha512-LcX6RYcF9vL9ESGwJW3yyIZ/d/ouzdOKXxCdey1q0XJOW1asrHsIg5MmyKdEBR4plQx+shvYeQne7AzW5f3T1w==} 1911 + '@oxlint/binding-linux-arm-gnueabihf@1.56.0': 1912 + resolution: {integrity: sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg==} 1924 1913 engines: {node: ^20.19.0 || >=22.12.0} 1925 1914 cpu: [arm] 1926 1915 os: [linux] 1927 1916 1928 - '@oxlint/binding-linux-arm-musleabihf@1.55.0': 1929 - resolution: {integrity: sha512-C+8GS1rPtK+dI7mJFkqoRBkDuqbrNihnyYQsJPS9ez+8zF9JzfvU19lawqt4l/Y23o5uQswE/DORa8aiXUih3w==} 1917 + '@oxlint/binding-linux-arm-musleabihf@1.56.0': 1918 + resolution: {integrity: sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ==} 1930 1919 engines: {node: ^20.19.0 || >=22.12.0} 1931 1920 cpu: [arm] 1932 1921 os: [linux] 1933 1922 1934 - '@oxlint/binding-linux-arm64-gnu@1.55.0': 1935 - resolution: {integrity: sha512-ErLE4XbmcCopA4/CIDiH6J1IAaDOMnf/KSx/aFObs4/OjAAM3sFKWGZ57pNOMxhhyBdcmcXwYymph9GwcpcqgQ==} 1923 + '@oxlint/binding-linux-arm64-gnu@1.56.0': 1924 + resolution: {integrity: sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A==} 1936 1925 engines: {node: ^20.19.0 || >=22.12.0} 1937 1926 cpu: [arm64] 1938 1927 os: [linux] 1939 1928 libc: [glibc] 1940 1929 1941 - '@oxlint/binding-linux-arm64-musl@1.55.0': 1942 - resolution: {integrity: sha512-/kp65avi6zZfqEng56TTuhiy3P/3pgklKIdf38yvYeJ9/PgEeRA2A2AqKAKbZBNAqUzrzHhz9jF6j/PZvhJzTQ==} 1930 + '@oxlint/binding-linux-arm64-musl@1.56.0': 1931 + resolution: {integrity: sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g==} 1943 1932 engines: {node: ^20.19.0 || >=22.12.0} 1944 1933 cpu: [arm64] 1945 1934 os: [linux] 1946 1935 libc: [musl] 1947 1936 1948 - '@oxlint/binding-linux-ppc64-gnu@1.55.0': 1949 - resolution: {integrity: sha512-A6pTdXwcEEwL/nmz0eUJ6WxmxcoIS+97GbH96gikAyre3s5deC7sts38ZVVowjS2QQFuSWkpA4ZmQC0jZSNvJQ==} 1937 + '@oxlint/binding-linux-ppc64-gnu@1.56.0': 1938 + resolution: {integrity: sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA==} 1950 1939 engines: {node: ^20.19.0 || >=22.12.0} 1951 1940 cpu: [ppc64] 1952 1941 os: [linux] 1953 1942 libc: [glibc] 1954 1943 1955 - '@oxlint/binding-linux-riscv64-gnu@1.55.0': 1956 - resolution: {integrity: sha512-clj0lnIN+V52G9tdtZl0LbdTSurnZ1NZj92Je5X4lC7gP5jiCSW+Y/oiDiSauBAD4wrHt2S7nN3pA0zfKYK/6Q==} 1944 + '@oxlint/binding-linux-riscv64-gnu@1.56.0': 1945 + resolution: {integrity: sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg==} 1957 1946 engines: {node: ^20.19.0 || >=22.12.0} 1958 1947 cpu: [riscv64] 1959 1948 os: [linux] 1960 1949 libc: [glibc] 1961 1950 1962 - '@oxlint/binding-linux-riscv64-musl@1.55.0': 1963 - resolution: {integrity: sha512-NNu08pllN5x/O94/sgR3DA8lbrGBnTHsINZZR0hcav1sj79ksTiKKm1mRzvZvacwQ0hUnGinFo+JO75ok2PxYg==} 1951 + '@oxlint/binding-linux-riscv64-musl@1.56.0': 1952 + resolution: {integrity: sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA==} 1964 1953 engines: {node: ^20.19.0 || >=22.12.0} 1965 1954 cpu: [riscv64] 1966 1955 os: [linux] 1967 1956 libc: [musl] 1968 1957 1969 - '@oxlint/binding-linux-s390x-gnu@1.55.0': 1970 - resolution: {integrity: sha512-BvfQz3PRlWZRoEZ17dZCqgQsMRdpzGZomJkVATwCIGhHVVeHJMQdmdXPSjcT1DCNUrOjXnVyj1RGDj5+/Je2+Q==} 1958 + '@oxlint/binding-linux-s390x-gnu@1.56.0': 1959 + resolution: {integrity: sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ==} 1971 1960 engines: {node: ^20.19.0 || >=22.12.0} 1972 1961 cpu: [s390x] 1973 1962 os: [linux] 1974 1963 libc: [glibc] 1975 1964 1976 - '@oxlint/binding-linux-x64-gnu@1.55.0': 1977 - resolution: {integrity: sha512-ngSOoFCSBMKVQd24H8zkbcBNc7EHhjnF1sv3mC9NNXQ/4rRjI/4Dj9+9XoDZeFEkF1SX1COSBXF1b2Pr9rqdEw==} 1965 + '@oxlint/binding-linux-x64-gnu@1.56.0': 1966 + resolution: {integrity: sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ==} 1978 1967 engines: {node: ^20.19.0 || >=22.12.0} 1979 1968 cpu: [x64] 1980 1969 os: [linux] 1981 1970 libc: [glibc] 1982 1971 1983 - '@oxlint/binding-linux-x64-musl@1.55.0': 1984 - resolution: {integrity: sha512-BDpP7W8GlaG7BR6QjGZAleYzxoyKc/D24spZIF2mB3XsfALQJJT/OBmP8YpeTb1rveFSBHzl8T7l0aqwkWNdGA==} 1972 + '@oxlint/binding-linux-x64-musl@1.56.0': 1973 + resolution: {integrity: sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA==} 1985 1974 engines: {node: ^20.19.0 || >=22.12.0} 1986 1975 cpu: [x64] 1987 1976 os: [linux] 1988 1977 libc: [musl] 1989 1978 1990 - '@oxlint/binding-openharmony-arm64@1.55.0': 1991 - resolution: {integrity: sha512-PS6GFvmde/pc3fCA2Srt51glr8Lcxhpf6WIBFfLphndjRrD34NEcses4TSxQrEcxYo6qVywGfylM0ZhSCF2gGA==} 1979 + '@oxlint/binding-openharmony-arm64@1.56.0': 1980 + resolution: {integrity: sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg==} 1992 1981 engines: {node: ^20.19.0 || >=22.12.0} 1993 1982 cpu: [arm64] 1994 1983 os: [openharmony] 1995 1984 1996 - '@oxlint/binding-win32-arm64-msvc@1.55.0': 1997 - resolution: {integrity: sha512-P6JcLJGs/q1UOvDLzN8otd9JsH4tsuuPDv+p7aHqHM3PrKmYdmUvkNj4K327PTd35AYcznOCN+l4ZOaq76QzSw==} 1985 + '@oxlint/binding-win32-arm64-msvc@1.56.0': 1986 + resolution: {integrity: sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g==} 1998 1987 engines: {node: ^20.19.0 || >=22.12.0} 1999 1988 cpu: [arm64] 2000 1989 os: [win32] 2001 1990 2002 - '@oxlint/binding-win32-ia32-msvc@1.55.0': 2003 - resolution: {integrity: sha512-gzkk4zE2zsE+WmRxFOiAZHpCpUNDFytEakqNXoNHW+PnYEOTPKDdW6nrzgSeTbGKVPXNAKQnRnMgrh7+n3Xueg==} 1991 + '@oxlint/binding-win32-ia32-msvc@1.56.0': 1992 + resolution: {integrity: sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A==} 2004 1993 engines: {node: ^20.19.0 || >=22.12.0} 2005 1994 cpu: [ia32] 2006 1995 os: [win32] 2007 1996 2008 - '@oxlint/binding-win32-x64-msvc@1.55.0': 2009 - resolution: {integrity: sha512-ZFALNow2/og75gvYzNP7qe+rREQ5xunktwA+lgykoozHZ6hw9bqg4fn5j2UvG4gIn1FXqrZHkOAXuPf5+GOYTQ==} 1997 + '@oxlint/binding-win32-x64-msvc@1.56.0': 1998 + resolution: {integrity: sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ==} 2010 1999 engines: {node: ^20.19.0 || >=22.12.0} 2011 2000 cpu: [x64] 2012 2001 os: [win32] 2002 + 2003 + '@playwright/test@1.58.2': 2004 + resolution: {integrity: sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==} 2005 + engines: {node: '>=18'} 2006 + hasBin: true 2013 2007 2014 2008 '@polka/url@1.0.0-next.29': 2015 2009 resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} ··· 2023 2017 '@poppinss/exception@1.2.3': 2024 2018 resolution: {integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==} 2025 2019 2026 - '@poppinss/macroable@1.1.0': 2027 - resolution: {integrity: sha512-y/YKzZDuG8XrpXpM7Z1RdQpiIc0MAKyva24Ux1PB4aI7RiSI/79K8JVDcdyubriTm7vJ1LhFs8CrZpmPnx/8Pw==} 2020 + '@poppinss/macroable@1.1.2': 2021 + resolution: {integrity: sha512-FAVBRzzWhYP5mA3lCwLH1A0fKBqq5anyjGet90Z81aRK5c/+LTGUE1zJhZrErjaenBSOOI9BVUs3WVmotneFQA==} 2028 2022 2029 - '@prisma/client-runtime-utils@7.4.2': 2030 - resolution: {integrity: sha512-cID+rzOEb38VyMsx5LwJMEY4NGIrWCNpKu/0ImbeooQ2Px7TI+kOt7cm0NelxUzF2V41UVVXAmYjANZQtCu1/Q==} 2023 + '@prisma/client-runtime-utils@7.5.0': 2024 + resolution: {integrity: sha512-KnJ2b4Si/pcWEtK68uM+h0h1oh80CZt2suhLTVuLaSKg4n58Q9jBF/A42Kw6Ma+aThy1yAhfDeTC0JvEmeZnFQ==} 2031 2025 2032 - '@prisma/client@7.4.2': 2033 - resolution: {integrity: sha512-ts2mu+cQHriAhSxngO3StcYubBGTWDtu/4juZhXCUKOwgh26l+s4KD3vT2kMUzFyrYnll9u/3qWrtzRv9CGWzA==} 2026 + '@prisma/client@7.5.0': 2027 + resolution: {integrity: sha512-h4hF9ctp+kSRs7ENHGsFQmHAgHcfkOCxbYt6Ti9Xi8x7D+kP4tTi9x51UKmiTH/OqdyJAO+8V+r+JA5AWdav7w==} 2034 2028 engines: {node: ^20.19 || ^22.12 || >=24.0} 2035 2029 peerDependencies: 2036 2030 prisma: '*' ··· 2040 2034 optional: true 2041 2035 typescript: 2042 2036 optional: true 2043 - 2044 - '@prisma/config@7.4.2': 2045 - resolution: {integrity: sha512-CftBjWxav99lzY1Z4oDgomdb1gh9BJFAOmWF6P2v1xRfXqQb56DfBub+QKcERRdNoAzCb3HXy3Zii8Vb4AsXhg==} 2046 - 2047 - '@prisma/debug@7.2.0': 2048 - resolution: {integrity: sha512-YSGTiSlBAVJPzX4ONZmMotL+ozJwQjRmZweQNIq/ER0tQJKJynNkRB3kyvt37eOfsbMCXk3gnLF6J9OJ4QWftw==} 2049 - 2050 - '@prisma/debug@7.4.2': 2051 - resolution: {integrity: sha512-aP7qzu+g/JnbF6U69LMwHoUkELiserKmWsE2shYuEpNUJ4GrtxBCvZwCyCBHFSH2kLTF2l1goBlBh4wuvRq62w==} 2052 - 2053 - '@prisma/dev@0.20.0': 2054 - resolution: {integrity: sha512-ovlBYwWor0OzG+yH4J3Ot+AneD818BttLA+Ii7wjbcLHUrnC4tbUPVGyNd3c/+71KETPKZfjhkTSpdS15dmXNQ==} 2055 - 2056 - '@prisma/engines-version@7.5.0-10.94a226be1cf2967af2541cca5529f0f7ba866919': 2057 - resolution: {integrity: sha512-5FIKY3KoYQlBuZC2yc16EXfVRQ8HY+fLqgxkYfWCtKhRb3ajCRzP/rPeoSx11+NueJDANdh4hjY36mdmrTcGSg==} 2058 - 2059 - '@prisma/engines@7.4.2': 2060 - resolution: {integrity: sha512-B+ZZhI4rXlzjVqRw/93AothEKOU5/x4oVyJFGo9RpHPnBwaPwk4Pi0Q4iGXipKxeXPs/dqljgNBjK0m8nocOJA==} 2061 - 2062 - '@prisma/fetch-engine@7.4.2': 2063 - resolution: {integrity: sha512-f/c/MwYpdJO7taLETU8rahEstLeXfYgQGlz5fycG7Fbmva3iPdzGmjiSWHeSWIgNnlXnelUdCJqyZnFocurZuA==} 2064 - 2065 - '@prisma/get-platform@7.2.0': 2066 - resolution: {integrity: sha512-k1V0l0Td1732EHpAfi2eySTezyllok9dXb6UQanajkJQzPUGi3vO2z7jdkz67SypFTdmbnyGYxvEvYZdZsMAVA==} 2067 - 2068 - '@prisma/get-platform@7.4.2': 2069 - resolution: {integrity: sha512-UTnChXRwiauzl/8wT4hhe7Xmixja9WE28oCnGpBtRejaHhvekx5kudr3R4Y9mLSA0kqGnAMeyTiKwDVMjaEVsw==} 2070 - 2071 - '@prisma/query-plan-executor@7.2.0': 2072 - resolution: {integrity: sha512-EOZmNzcV8uJ0mae3DhTsiHgoNCuu1J9mULQpGCh62zN3PxPTd+qI9tJvk5jOst8WHKQNwJWR3b39t0XvfBB0WQ==} 2073 - 2074 - '@prisma/studio-core@0.13.1': 2075 - resolution: {integrity: sha512-agdqaPEePRHcQ7CexEfkX1RvSH9uWDb6pXrZnhCRykhDFAV0/0P3d07WtfiY8hZWb7oRU4v+NkT4cGFHkQJIPg==} 2076 - peerDependencies: 2077 - '@types/react': ^18.0.0 || ^19.0.0 2078 - react: ^18.0.0 || ^19.0.0 2079 - react-dom: ^18.0.0 || ^19.0.0 2080 2037 2081 2038 '@publint/pack@0.1.4': 2082 2039 resolution: {integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ==} ··· 2183 2140 '@rolldown/pluginutils@1.0.0-rc.9': 2184 2141 resolution: {integrity: sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==} 2185 2142 2186 - '@rollup/rollup-android-arm-eabi@4.59.0': 2187 - resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==} 2188 - cpu: [arm] 2189 - os: [android] 2190 - 2191 - '@rollup/rollup-android-arm64@4.59.0': 2192 - resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==} 2193 - cpu: [arm64] 2194 - os: [android] 2195 - 2196 - '@rollup/rollup-darwin-arm64@4.59.0': 2197 - resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==} 2198 - cpu: [arm64] 2199 - os: [darwin] 2200 - 2201 - '@rollup/rollup-darwin-x64@4.59.0': 2202 - resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==} 2203 - cpu: [x64] 2204 - os: [darwin] 2205 - 2206 - '@rollup/rollup-freebsd-arm64@4.59.0': 2207 - resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==} 2208 - cpu: [arm64] 2209 - os: [freebsd] 2210 - 2211 - '@rollup/rollup-freebsd-x64@4.59.0': 2212 - resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==} 2213 - cpu: [x64] 2214 - os: [freebsd] 2215 - 2216 - '@rollup/rollup-linux-arm-gnueabihf@4.59.0': 2217 - resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==} 2218 - cpu: [arm] 2219 - os: [linux] 2220 - libc: [glibc] 2221 - 2222 - '@rollup/rollup-linux-arm-musleabihf@4.59.0': 2223 - resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==} 2224 - cpu: [arm] 2225 - os: [linux] 2226 - libc: [musl] 2227 - 2228 - '@rollup/rollup-linux-arm64-gnu@4.59.0': 2229 - resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==} 2230 - cpu: [arm64] 2231 - os: [linux] 2232 - libc: [glibc] 2233 - 2234 - '@rollup/rollup-linux-arm64-musl@4.59.0': 2235 - resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==} 2236 - cpu: [arm64] 2237 - os: [linux] 2238 - libc: [musl] 2239 - 2240 - '@rollup/rollup-linux-loong64-gnu@4.59.0': 2241 - resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==} 2242 - cpu: [loong64] 2243 - os: [linux] 2244 - libc: [glibc] 2245 - 2246 - '@rollup/rollup-linux-loong64-musl@4.59.0': 2247 - resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==} 2248 - cpu: [loong64] 2249 - os: [linux] 2250 - libc: [musl] 2251 - 2252 - '@rollup/rollup-linux-ppc64-gnu@4.59.0': 2253 - resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==} 2254 - cpu: [ppc64] 2255 - os: [linux] 2256 - libc: [glibc] 2257 - 2258 - '@rollup/rollup-linux-ppc64-musl@4.59.0': 2259 - resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==} 2260 - cpu: [ppc64] 2261 - os: [linux] 2262 - libc: [musl] 2263 - 2264 - '@rollup/rollup-linux-riscv64-gnu@4.59.0': 2265 - resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==} 2266 - cpu: [riscv64] 2267 - os: [linux] 2268 - libc: [glibc] 2269 - 2270 - '@rollup/rollup-linux-riscv64-musl@4.59.0': 2271 - resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==} 2272 - cpu: [riscv64] 2273 - os: [linux] 2274 - libc: [musl] 2275 - 2276 - '@rollup/rollup-linux-s390x-gnu@4.59.0': 2277 - resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==} 2278 - cpu: [s390x] 2279 - os: [linux] 2280 - libc: [glibc] 2281 - 2282 - '@rollup/rollup-linux-x64-gnu@4.59.0': 2283 - resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==} 2284 - cpu: [x64] 2285 - os: [linux] 2286 - libc: [glibc] 2287 - 2288 - '@rollup/rollup-linux-x64-musl@4.59.0': 2289 - resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==} 2290 - cpu: [x64] 2291 - os: [linux] 2292 - libc: [musl] 2293 - 2294 - '@rollup/rollup-openbsd-x64@4.59.0': 2295 - resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==} 2296 - cpu: [x64] 2297 - os: [openbsd] 2298 - 2299 - '@rollup/rollup-openharmony-arm64@4.59.0': 2300 - resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==} 2301 - cpu: [arm64] 2302 - os: [openharmony] 2303 - 2304 - '@rollup/rollup-win32-arm64-msvc@4.59.0': 2305 - resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==} 2306 - cpu: [arm64] 2307 - os: [win32] 2308 - 2309 - '@rollup/rollup-win32-ia32-msvc@4.59.0': 2310 - resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==} 2311 - cpu: [ia32] 2312 - os: [win32] 2313 - 2314 - '@rollup/rollup-win32-x64-gnu@4.59.0': 2315 - resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==} 2316 - cpu: [x64] 2317 - os: [win32] 2318 - 2319 - '@rollup/rollup-win32-x64-msvc@4.59.0': 2320 - resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==} 2321 - cpu: [x64] 2322 - os: [win32] 2323 - 2324 2143 '@sideway/address@4.1.5': 2325 2144 resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} 2326 2145 ··· 2334 2153 resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==} 2335 2154 engines: {node: '>=18'} 2336 2155 2337 - '@speed-highlight/core@1.2.14': 2338 - resolution: {integrity: sha512-G4ewlBNhUtlLvrJTb88d2mdy2KRijzs4UhnlrOSRT4bmjh/IqNElZa3zkrZ+TC47TwtlDWzVLFADljF1Ijp5hA==} 2156 + '@speed-highlight/core@1.2.15': 2157 + resolution: {integrity: sha512-BMq1K3DsElxDWawkX6eLg9+CKJrTVGCBAWVuHXVUV2u0s2711qiChLSId6ikYPfxhdYocLNt3wWwSvDiTvFabw==} 2339 2158 2340 2159 '@stablelib/base64@1.0.1': 2341 2160 resolution: {integrity: sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==} ··· 2343 2162 '@standard-schema/spec@1.1.0': 2344 2163 resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 2345 2164 2346 - '@storybook/addon-a11y@10.2.19': 2347 - resolution: {integrity: sha512-SJGf1ghCoRVlwyiRwz5GiHuNvu7C5iCDNIRJW8WGOJlnoQa3rYaY7WJ/8a/eT9N8buIscL9AYWudhh5zsI1W3g==} 2165 + '@storybook/addon-a11y@10.3.0': 2166 + resolution: {integrity: sha512-GOQP8kp0Pos3weW00U5FC2azt1zZQOcyihP+tINQO6/MDA3hts0rKMbS5+MyVULX7A5JE5uk7SzcZQj+EZ8Yrg==} 2348 2167 peerDependencies: 2349 - storybook: ^10.2.19 2168 + storybook: ^10.3.0 2350 2169 2351 - '@storybook/addon-docs@10.2.19': 2352 - resolution: {integrity: sha512-tXugthdzjX5AkGWDSP4pnRgA/CWlOaEKp/+y9JOGXHLQmm1GHjW+4brNvNkKbjBl06LALXwlcTOyU4lyVRDLAw==} 2170 + '@storybook/addon-docs@10.3.0': 2171 + resolution: {integrity: sha512-g9bc4YDiy4g/peLsUDmVcy2q/QXI3eHCQtHrVp2sHWef2SYjwUJ2+TOtJHScO8LuKhGnU3h2UeE59tPWTF2quw==} 2353 2172 peerDependencies: 2354 - storybook: ^10.2.19 2173 + storybook: ^10.3.0 2355 2174 2356 - '@storybook/addon-svelte-csf@5.0.11': 2357 - resolution: {integrity: sha512-grfiAAl0lsPph33NV/lJkDOC4JfrHYUacX0DuUA7/0vBcihlUaX1w7AMMZ9rMrhbCyeM1imz/2rp3FeOMb7EgQ==} 2175 + '@storybook/addon-svelte-csf@5.0.12': 2176 + resolution: {integrity: sha512-bT7Xaxk9hQ8ZGNVtUN9IVe5ZqJAbO5iSE0TBdMsIPmY6qSG0WTm3H7HqUsb/+EdHOjykmTf2Tbs3eJt8jkpwVg==} 2358 2177 peerDependencies: 2359 - '@storybook/svelte': ^0.0.0-0 || ^8.2.0 || ^9.0.0 || ^9.1.0-0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 2178 + '@storybook/svelte': ^0.0.0-0 || ^8.2.0 || ^9.0.0 || ^9.1.0-0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 || ^10.4.0-0 2360 2179 '@sveltejs/vite-plugin-svelte': ^4.0.0 || ^5.0.0 || ^6.0.0 2361 - storybook: ^0.0.0-0 || ^8.2.0 || ^9.0.0 || ^9.1.0-0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 2180 + storybook: ^0.0.0-0 || ^8.2.0 || ^9.0.0 || ^9.1.0-0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 || ^10.4.0-0 2362 2181 svelte: ^5.0.0 2363 2182 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 2364 2183 2365 - '@storybook/addon-themes@10.2.19': 2366 - resolution: {integrity: sha512-TzcX/aqzZrQUypDATywLOenVoa1CTXBthODoY9odLsLLrxVaoeqsAdulkmOjeppKR1FigcERyIjIWPB8W48dag==} 2184 + '@storybook/addon-themes@10.3.0': 2185 + resolution: {integrity: sha512-tMNRnEXv91u2lYgyUUAPhWiPD2XTLw2prj6r9/e9wmKYqJ5a2q0gQ7MiGzbgNYWmqq+DZ7g4vvGt8MXt2GmSHQ==} 2367 2186 peerDependencies: 2368 - storybook: ^10.2.19 2187 + storybook: ^10.3.0 2369 2188 2370 - '@storybook/addon-vitest@10.2.19': 2371 - resolution: {integrity: sha512-mx7B8QBT4YFLJ6+30rVxRfJNMDrIfVjJBWtdhP4mbZCS2IuoKAqf28KaC4ZZ4/UWAxjA/8VSQrV9CpXArepMlg==} 2189 + '@storybook/addon-vitest@10.3.0': 2190 + resolution: {integrity: sha512-DOLlnWhQ0IhTGaBJfymSVkSt6ECZLskdvZK/CtgThpubGuOoTToUsso9RNhzIZjYxKT2QwvGRPJENQmv5XOqeg==} 2372 2191 peerDependencies: 2373 2192 '@vitest/browser': ^3.0.0 || ^4.0.0 2374 2193 '@vitest/browser-playwright': ^4.0.0 2375 2194 '@vitest/runner': ^3.0.0 || ^4.0.0 2376 - storybook: ^10.2.19 2195 + storybook: ^10.3.0 2377 2196 vitest: ^3.0.0 || ^4.0.0 2378 2197 peerDependenciesMeta: 2379 2198 '@vitest/browser': ··· 2385 2204 vitest: 2386 2205 optional: true 2387 2206 2388 - '@storybook/builder-vite@10.2.19': 2389 - resolution: {integrity: sha512-a59xALzM9GeYh6p+wzAeBbDyIe+qyrC4nxS3QNzb5i2ZOhrq1iIpvnDaOWe80NC8mV3IlqUEGY8Uawkf//1Rmg==} 2207 + '@storybook/builder-vite@10.3.0': 2208 + resolution: {integrity: sha512-T7LfZPE31j94Jkk66bnsxMibBnbLYmebLIDgPSYzeN3ZkjPfoFhhi2+8Zxneth5cQCGRkCAhRTV0tYmFp1+H6g==} 2390 2209 peerDependencies: 2391 - storybook: ^10.2.19 2210 + storybook: ^10.3.0 2392 2211 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 2393 2212 2394 - '@storybook/csf-plugin@10.2.19': 2395 - resolution: {integrity: sha512-BpjYIOdyQn/Rm6MjUAc5Gl8HlARZrskD/OhUNShiOh2fznb523dHjiE5mbU1kKM/+L1uvRlEqqih40rTx+xCrg==} 2213 + '@storybook/csf-plugin@10.3.0': 2214 + resolution: {integrity: sha512-zlBnNpv0wtmICdQPDoY91HNzn6BNqnS2hur580J+qJtcP+5ZOYU7+gNyU+vfAnQuLEWbPz34rx8b1cTzXZQCDg==} 2396 2215 peerDependencies: 2397 2216 esbuild: '*' 2398 2217 rollup: '*' 2399 - storybook: ^10.2.19 2218 + storybook: ^10.3.0 2400 2219 vite: '*' 2401 2220 webpack: '*' 2402 2221 peerDependenciesMeta: ··· 2421 2240 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 2422 2241 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 2423 2242 2424 - '@storybook/react-dom-shim@10.2.19': 2425 - resolution: {integrity: sha512-BXCEfBGVBRYBTYeBeH/PJsy0Bq5MERe/HiaylR+ah/XrvIr2Z9bkne1J8yYiXCjiyq5HQa7Bj11roz0+vyUaEw==} 2243 + '@storybook/react-dom-shim@10.3.0': 2244 + resolution: {integrity: sha512-dmAnIjkMmUYZCdg3FUL83Lavybin3bYKRNRXFZq1okCH8SINa2J+zKEzJhPlqixAKkbd7x1PFDgXnxxM/Nisig==} 2426 2245 peerDependencies: 2427 2246 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 2428 2247 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 2429 - storybook: ^10.2.19 2248 + storybook: ^10.3.0 2430 2249 2431 - '@storybook/svelte-vite@10.2.19': 2432 - resolution: {integrity: sha512-nMSctY8YgRAmIjfU/7/Kp7Ujyx7UvJc+QD+pP/UKBG8Rjd4It88t6BWVzTjzPF+8byCxQxaWtyYugyrN1itLzw==} 2250 + '@storybook/svelte-vite@10.3.0': 2251 + resolution: {integrity: sha512-FC8wzvLOB7/ybCOfp90ApBxrpS0AD+XwqltymePtqFkzd2vEMWO7HYl0O8NCflkMY2SQ7+UiZ5m0I25DPUZ+9Q==} 2433 2252 peerDependencies: 2434 2253 '@sveltejs/vite-plugin-svelte': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 2435 - storybook: ^10.2.19 2254 + storybook: ^10.3.0 2436 2255 svelte: ^5.0.0 2437 2256 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 2438 2257 2439 - '@storybook/svelte@10.2.19': 2440 - resolution: {integrity: sha512-M/u/6mRskNjRqGRpzx8IPJvjRQNa0KNoca9GxOa8hTr4c6/mhPZuGyPDHgGvgt5OUX9xdP8vE31I9kv7maw7aA==} 2258 + '@storybook/svelte@10.3.0': 2259 + resolution: {integrity: sha512-FxUO40O8oYk1o1fpINP5dDp5+UW+wFI7PtJ/kNUOGmhA18s3XiPI5rB1+40kPWDAl8oY9v44CixRxEzwfP50MQ==} 2441 2260 peerDependencies: 2442 - storybook: ^10.2.19 2261 + storybook: ^10.3.0 2443 2262 svelte: ^5.0.0 2444 2263 2445 - '@storybook/sveltekit@10.2.19': 2446 - resolution: {integrity: sha512-8D24gyV7jq+FO+wmRDIgb4vYw2FC7QIrRpSKR6E6b6XqX0QrgVVevLI1nmAZaa3Mex4rpPBI32NLwzjSKOdBiw==} 2264 + '@storybook/sveltekit@10.3.0': 2265 + resolution: {integrity: sha512-vS6R5mEwKFCRWzRAnP2XMWgdwhaKVsdNBVHzcAwu+bEtkQjgWCjiZunzO8xRc65iMUT225NTs7JAZKKVu96XpQ==} 2447 2266 peerDependencies: 2448 - storybook: ^10.2.19 2267 + storybook: ^10.3.0 2449 2268 svelte: ^5.0.0 2450 2269 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 2451 2270 ··· 2465 2284 '@sveltejs/kit': ^2.0.0 2466 2285 wrangler: ^4.0.0 2467 2286 2468 - '@sveltejs/kit@2.53.4': 2469 - resolution: {integrity: sha512-iAIPEahFgDJJyvz8g0jP08KvqnM6JvdW8YfsygZ+pMeMvyM2zssWMltcsotETvjSZ82G3VlitgDtBIvpQSZrTA==} 2287 + '@sveltejs/kit@2.55.0': 2288 + resolution: {integrity: sha512-MdFRjevVxmAknf2NbaUkDF16jSIzXMWd4Nfah0Qp8TtQVoSp3bV4jKt8mX7z7qTUTWvgSaxtR0EG5WJf53gcuA==} 2470 2289 engines: {node: '>=18.13'} 2471 2290 hasBin: true 2472 2291 peerDependencies: ··· 2498 2317 '@swc/helpers@0.5.19': 2499 2318 resolution: {integrity: sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA==} 2500 2319 2501 - '@tailwindcss/node@0.0.0-insiders.a4be983': 2502 - resolution: {integrity: sha512-C3IE42SE0fdeJOMYajvPl5WfdGwB5bUrD8lH/swWWtjGfsw10Sm1wZPYDOIv3H68MwzIvH5fu5XuvggzoNyQgQ==} 2320 + '@tailwindcss/node@4.2.2': 2321 + resolution: {integrity: sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==} 2503 2322 2504 - '@tailwindcss/oxide-android-arm64@0.0.0-insiders.a4be983': 2505 - resolution: {integrity: sha512-QPXLdpkt8eO2DplhJaHZMvWOgtpbdmzGR6zg7rzqftUX93/+VEQDGayrDgTUMf7VdG8ubNWMniCXk1Nx3z/IiA==} 2323 + '@tailwindcss/oxide-android-arm64@4.2.2': 2324 + resolution: {integrity: sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==} 2506 2325 engines: {node: '>= 20'} 2507 2326 cpu: [arm64] 2508 2327 os: [android] 2509 2328 2510 - '@tailwindcss/oxide-darwin-arm64@0.0.0-insiders.a4be983': 2511 - resolution: {integrity: sha512-cTd6AUnuhFKnXNJ0l3zSeEwMfrk3BE0hcNOeomV++peyskz7jq3ui1N0ZJjuk2nNSZY299fuLMABXTt2RkSpUw==} 2329 + '@tailwindcss/oxide-darwin-arm64@4.2.2': 2330 + resolution: {integrity: sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==} 2512 2331 engines: {node: '>= 20'} 2513 2332 cpu: [arm64] 2514 2333 os: [darwin] 2515 2334 2516 - '@tailwindcss/oxide-darwin-x64@0.0.0-insiders.a4be983': 2517 - resolution: {integrity: sha512-9QiMBcXxvceotRz7kSDqHhPMTRhsLCA8IBw4OEjTDCtlmKl3oQlTSGD/F7sXBkV/KsWU5PB++nydg90AN+GIDQ==} 2335 + '@tailwindcss/oxide-darwin-x64@4.2.2': 2336 + resolution: {integrity: sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==} 2518 2337 engines: {node: '>= 20'} 2519 2338 cpu: [x64] 2520 2339 os: [darwin] 2521 2340 2522 - '@tailwindcss/oxide-freebsd-x64@0.0.0-insiders.a4be983': 2523 - resolution: {integrity: sha512-IGzJrzPN+BmqxVAwtAyf5R8w/Vxm9c7wAJjVq1fZNsdnETGf+judKfNgqiYA3Q9nnGrAWE1fOfdW4zJJCOIoag==} 2341 + '@tailwindcss/oxide-freebsd-x64@4.2.2': 2342 + resolution: {integrity: sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==} 2524 2343 engines: {node: '>= 20'} 2525 2344 cpu: [x64] 2526 2345 os: [freebsd] 2527 2346 2528 - '@tailwindcss/oxide-linux-arm-gnueabihf@0.0.0-insiders.a4be983': 2529 - resolution: {integrity: sha512-WRCNnn8J2XWxTDimezXTl6itdr/9a6beXiN4VNGRtQlxrEAvTp+i1YQN75JzZ1GqaZGzibc072/UJsiT0TMXnw==} 2347 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.2': 2348 + resolution: {integrity: sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==} 2530 2349 engines: {node: '>= 20'} 2531 2350 cpu: [arm] 2532 2351 os: [linux] 2533 2352 2534 - '@tailwindcss/oxide-linux-arm64-gnu@0.0.0-insiders.a4be983': 2535 - resolution: {integrity: sha512-hnjLIq/FqKc8QmTuf4imLy8GJNDXFx4WYNM8ctGkqcatigq6KqRI8OJa2yE1P+JGLVoDebqrIKHFuMaYPvGXyA==} 2353 + '@tailwindcss/oxide-linux-arm64-gnu@4.2.2': 2354 + resolution: {integrity: sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==} 2536 2355 engines: {node: '>= 20'} 2537 2356 cpu: [arm64] 2538 2357 os: [linux] 2539 2358 libc: [glibc] 2540 2359 2541 - '@tailwindcss/oxide-linux-arm64-musl@0.0.0-insiders.a4be983': 2542 - resolution: {integrity: sha512-nq1SFSX67jsQCzmpdZtG9YyXYDV4ioi3V3R4sznDiy3lSN0h8yN0AtqCyG3aUFOmzGns/yCwk5b3eMa43wBGSg==} 2360 + '@tailwindcss/oxide-linux-arm64-musl@4.2.2': 2361 + resolution: {integrity: sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==} 2543 2362 engines: {node: '>= 20'} 2544 2363 cpu: [arm64] 2545 2364 os: [linux] 2546 2365 libc: [musl] 2547 2366 2548 - '@tailwindcss/oxide-linux-x64-gnu@0.0.0-insiders.a4be983': 2549 - resolution: {integrity: sha512-Snt+MxaiuP/cpCKDyY0TTOc4UTHYtbAN9zDIU7WvZ1Zjb1aXDG1AYc3sxFjAfWW6rCvvCIoglPWjxlqr8CIIjA==} 2367 + '@tailwindcss/oxide-linux-x64-gnu@4.2.2': 2368 + resolution: {integrity: sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==} 2550 2369 engines: {node: '>= 20'} 2551 2370 cpu: [x64] 2552 2371 os: [linux] 2553 2372 libc: [glibc] 2554 2373 2555 - '@tailwindcss/oxide-linux-x64-musl@0.0.0-insiders.a4be983': 2556 - resolution: {integrity: sha512-Olvek6JU5oJ8w0JPttxPtPDQlpeQPm0wggrCFYSjKl3mjWMmzORF3bNoxxK49j9Rjpcq4RMqweUbsgGvuYLBcA==} 2374 + '@tailwindcss/oxide-linux-x64-musl@4.2.2': 2375 + resolution: {integrity: sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==} 2557 2376 engines: {node: '>= 20'} 2558 2377 cpu: [x64] 2559 2378 os: [linux] 2560 2379 libc: [musl] 2561 2380 2562 - '@tailwindcss/oxide-wasm32-wasi@0.0.0-insiders.a4be983': 2563 - resolution: {integrity: sha512-erq7vm6N+/J922cPZueUtJer7WtGY2/WYOceo/YTdC9vQfQQByXice3dpSh50ThA9xLGVwArbwxnHrv1ptG1rg==} 2381 + '@tailwindcss/oxide-wasm32-wasi@4.2.2': 2382 + resolution: {integrity: sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==} 2564 2383 engines: {node: '>=14.0.0'} 2565 2384 cpu: [wasm32] 2566 2385 bundledDependencies: ··· 2571 2390 - '@emnapi/wasi-threads' 2572 2391 - tslib 2573 2392 2574 - '@tailwindcss/oxide-win32-arm64-msvc@0.0.0-insiders.a4be983': 2575 - resolution: {integrity: sha512-Z6Rbc15RoPVdi539zuRuGdGGJR4ulKPtgDSrmrxBVYbocxpO/WR931aqV12a/XYGF3PsMe6TABxnzNVvhPSr4A==} 2393 + '@tailwindcss/oxide-win32-arm64-msvc@4.2.2': 2394 + resolution: {integrity: sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==} 2576 2395 engines: {node: '>= 20'} 2577 2396 cpu: [arm64] 2578 2397 os: [win32] 2579 2398 2580 - '@tailwindcss/oxide-win32-x64-msvc@0.0.0-insiders.a4be983': 2581 - resolution: {integrity: sha512-KP0pSCcUdiqkvqWP1GuMlYOrJ41QPIuLD/dQB1XrFziJl2jIAzgf0JdH0kO4BBqGgE3230NzNyM/TQmKFz7ZHA==} 2399 + '@tailwindcss/oxide-win32-x64-msvc@4.2.2': 2400 + resolution: {integrity: sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==} 2582 2401 engines: {node: '>= 20'} 2583 2402 cpu: [x64] 2584 2403 os: [win32] 2585 2404 2586 - '@tailwindcss/oxide@0.0.0-insiders.a4be983': 2587 - resolution: {integrity: sha512-BJNkYUNrB58aBOZNqLJeiciq610hRuePKFNdUR7HwA0Qq/rDJ1hsKtl7LLqc1kY6m8lFtMn/Ub7+4jvew13pOg==} 2405 + '@tailwindcss/oxide@4.2.2': 2406 + resolution: {integrity: sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==} 2588 2407 engines: {node: '>= 20'} 2589 2408 2590 - '@tailwindcss/vite@0.0.0-insiders.a4be983': 2591 - resolution: {integrity: sha512-CKegKQDeoFMT+/dUicoQdKWwi8xbd2AZ1lroQUm73B51YfDPE3ROHxoIYfZoX8DWxux0ZEbqN07U8P+5nei3nA==} 2409 + '@tailwindcss/vite@4.2.2': 2410 + resolution: {integrity: sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==} 2592 2411 peerDependencies: 2593 2412 vite: ^5.2.0 || ^6 || ^7 || ^8 2594 2413 ··· 2683 2502 '@types/json-schema': 2684 2503 optional: true 2685 2504 2686 - '@valibot/to-json-schema@1.5.0': 2687 - resolution: {integrity: sha512-GE7DmSr1C2UCWPiV0upRH6mv0cCPsqYGs819fb6srCS1tWhyXrkGGe+zxUiwzn/L1BOfADH4sNjY/YHCuP8phQ==} 2505 + '@typescript-eslint/types@8.57.1': 2506 + resolution: {integrity: sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==} 2507 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2508 + 2509 + '@valibot/to-json-schema@1.6.0': 2510 + resolution: {integrity: sha512-d6rYyK5KVa2XdqamWgZ4/Nr+cXhxjy7lmpe6Iajw15J/jmU+gyxl2IEd1Otg1d7Rl3gOQL5reulnSypzBtYy1A==} 2688 2511 peerDependencies: 2689 - valibot: ^1.2.0 2512 + valibot: ^1.3.0 2690 2513 2691 2514 '@vinejs/compiler@3.0.0': 2692 2515 resolution: {integrity: sha512-v9Lsv59nR56+bmy2p0+czjZxsLHwaibJ+SV5iK9JJfehlJMa501jUJQqqz4X/OqKXrxtE3uTQmSqjUqzF3B2mw==} ··· 2762 2585 '@vitest/utils@4.1.0': 2763 2586 resolution: {integrity: sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==} 2764 2587 2588 + '@vue/compiler-core@3.5.30': 2589 + resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==} 2590 + 2591 + '@vue/compiler-dom@3.5.30': 2592 + resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==} 2593 + 2594 + '@vue/compiler-sfc@3.5.30': 2595 + resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==} 2596 + 2597 + '@vue/compiler-ssr@3.5.30': 2598 + resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==} 2599 + 2600 + '@vue/reactivity@3.5.30': 2601 + resolution: {integrity: sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==} 2602 + 2603 + '@vue/runtime-core@3.5.30': 2604 + resolution: {integrity: sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==} 2605 + 2606 + '@vue/runtime-dom@3.5.30': 2607 + resolution: {integrity: sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==} 2608 + 2609 + '@vue/server-renderer@3.5.30': 2610 + resolution: {integrity: sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==} 2611 + peerDependencies: 2612 + vue: 3.5.30 2613 + 2614 + '@vue/shared@3.5.30': 2615 + resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==} 2616 + 2765 2617 acorn-jsx@5.3.2: 2766 2618 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 2767 2619 peerDependencies: ··· 2826 2678 ast-v8-to-istanbul@1.0.0: 2827 2679 resolution: {integrity: sha512-1fSfIwuDICFA4LKkCzRPO7F0hzFf0B7+Xqrl27ynQaa+Rh0e1Es0v6kWHPott3lU10AyAr7oKHa65OppjLn3Rg==} 2828 2680 2829 - auth@1.5.4: 2830 - resolution: {integrity: sha512-zXHSeeBXXFWnThRbmBBSEnjy0NFuhAxxQenUBhf6dFnxFnnAWRLYKA9YNSxCFnSsi2P7uzVba1ohBf9WiyrPuQ==} 2681 + auth@1.5.5: 2682 + resolution: {integrity: sha512-PTDF9S3vQf9hsXOF0FRvvdusME9xEsckyL0ZpoDPflcLB5UfZkWrfvzC3TLpL+ZpgZZRAXL2i1ab1rhwncLM5g==} 2831 2683 hasBin: true 2832 - 2833 - aws-ssl-profiles@1.1.2: 2834 - resolution: {integrity: sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==} 2835 - engines: {node: '>= 6.0.0'} 2836 2684 2837 2685 axe-core@4.11.1: 2838 2686 resolution: {integrity: sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==} ··· 2846 2694 resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} 2847 2695 engines: {node: 18 || 20 || >=22} 2848 2696 2849 - baseline-browser-mapping@2.10.0: 2850 - resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==} 2697 + baseline-browser-mapping@2.10.8: 2698 + resolution: {integrity: sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==} 2851 2699 engines: {node: '>=6.0.0'} 2852 2700 hasBin: true 2853 2701 2854 - better-auth@1.5.4: 2855 - resolution: {integrity: sha512-ReykcEKx6Kp9560jG1wtlDBnftA7L7xb3ZZdDWm5yGXKKe2pUf+oBjH0fqekrkRII0m4XBVQbQ0mOrFv+3FdYg==} 2702 + better-auth@1.5.5: 2703 + resolution: {integrity: sha512-GpVPaV1eqr3mOovKfghJXXk6QvlcVeFbS3z+n+FPDid5rK/2PchnDtiaVCzWyXA9jH2KkirOfl+JhAUvnja0Eg==} 2856 2704 peerDependencies: 2857 2705 '@lynx-js/react': '*' 2858 2706 '@prisma/client': ^5.0.0 || ^6.0.0 || ^7.0.0 ··· 2954 2802 resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} 2955 2803 engines: {node: '>=18'} 2956 2804 2957 - c12@3.1.0: 2958 - resolution: {integrity: sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==} 2959 - peerDependencies: 2960 - magicast: ^0.3.5 2961 - peerDependenciesMeta: 2962 - magicast: 2963 - optional: true 2964 - 2965 2805 c12@3.3.3: 2966 2806 resolution: {integrity: sha512-750hTRvgBy5kcMNPdh95Qo+XUBeGo8C7nsKSmedDmaQI+E0r82DwHeM6vBewDe4rGFbnxoa4V9pw+sPh5+Iz8Q==} 2967 2807 peerDependencies: ··· 2978 2818 resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 2979 2819 engines: {node: '>=16'} 2980 2820 2981 - caniuse-lite@1.0.30001777: 2982 - resolution: {integrity: sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==} 2821 + caniuse-lite@1.0.30001780: 2822 + resolution: {integrity: sha512-llngX0E7nQci5BPJDqoZSbuZ5Bcs9F5db7EtgfwBerX9XGtkkiO4NwfDDIRzHTTwcYC8vC7bmeUEPGrKlR/TkQ==} 2983 2823 2984 2824 chai@5.3.3: 2985 2825 resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} ··· 3083 2923 csstype@3.2.3: 3084 2924 resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} 3085 2925 3086 - dayjs@1.11.19: 3087 - resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==} 2926 + dayjs@1.11.20: 2927 + resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==} 3088 2928 3089 2929 debug@4.4.3: 3090 2930 resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} ··· 3113 2953 deep-is@0.1.4: 3114 2954 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 3115 2955 3116 - deepmerge-ts@7.1.5: 3117 - resolution: {integrity: sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==} 3118 - engines: {node: '>=16.0.0'} 2956 + deep-rename-keys@0.2.1: 2957 + resolution: {integrity: sha512-RHd9ABw4Fvk+gYDWqwOftG849x0bYOySl/RgX0tLI9i27ZIeSO91mLZJEp7oPHOMFqHvpgu21YptmDt0FYD/0A==} 2958 + engines: {node: '>=0.10.0'} 3119 2959 3120 2960 deepmerge@4.3.1: 3121 2961 resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} ··· 3136 2976 defu@6.1.4: 3137 2977 resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 3138 2978 3139 - denque@2.1.0: 3140 - resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} 3141 - engines: {node: '>=0.10'} 3142 - 3143 2979 dequal@2.0.3: 3144 2980 resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 3145 2981 engines: {node: '>=6'} ··· 3151 2987 resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 3152 2988 engines: {node: '>=8'} 3153 2989 3154 - devalue@5.6.3: 3155 - resolution: {integrity: sha512-nc7XjUU/2Lb+SvEFVGcWLiKkzfw8+qHI7zn8WYXKkLMgfGSHbgCEaR6bJpev8Cm6Rmrb19Gfd/tZvGqx9is3wg==} 2990 + devalue@5.6.4: 2991 + resolution: {integrity: sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==} 3156 2992 3157 2993 dlv@1.1.3: 3158 2994 resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} ··· 3163 2999 dom-accessibility-api@0.6.3: 3164 3000 resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} 3165 3001 3166 - dotenv@16.6.1: 3167 - resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} 3168 - engines: {node: '>=12'} 3169 - 3170 3002 dotenv@17.3.1: 3171 3003 resolution: {integrity: sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==} 3172 3004 engines: {node: '>=12'} 3173 3005 3174 - drizzle-kit@0.31.9: 3175 - resolution: {integrity: sha512-GViD3IgsXn7trFyBUUHyTFBpH/FsHTxYJ66qdbVggxef4UBPHRYxQaRzYLTuekYnk9i5FIEL9pbBIwMqX/Uwrg==} 3006 + drizzle-kit@0.31.10: 3007 + resolution: {integrity: sha512-7OZcmQUrdGI+DUNNsKBn1aW8qSoKuTH7d0mYgSP8bAzdFzKoovxEFnoGQp2dVs82EOJeYycqRtciopszwUf8bw==} 3176 3008 hasBin: true 3177 3009 3178 3010 drizzle-orm@0.41.0: ··· 3365 3197 oxc-resolver: 3366 3198 optional: true 3367 3199 3368 - effect@3.18.4: 3369 - resolution: {integrity: sha512-b1LXQJLe9D11wfnOKAk3PKxuqYshQ0Heez+y5pnkd3jLj1yx9QhM72zZ9uUrOQyNvrs2GZZd/3maL0ZV18YuDA==} 3370 - 3371 - effect@3.19.19: 3372 - resolution: {integrity: sha512-Yc8U/SVXo2dHnaP7zNBlAo83h/nzSJpi7vph6Hzyl4ulgMBIgPmz3UzOjb9sBgpFE00gC0iETR244sfXDNLHRg==} 3200 + effect@3.20.0: 3201 + resolution: {integrity: sha512-qMLfDJscrNG8p/aw+IkT9W7fgj50Z4wG5bLBy0Txsxz8iUHjDIkOgO3SV0WZfnQbNG2VJYb0b+rDLMrhM4+Krw==} 3373 3202 3374 - electron-to-chromium@1.5.307: 3375 - resolution: {integrity: sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==} 3203 + electron-to-chromium@1.5.321: 3204 + resolution: {integrity: sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ==} 3376 3205 3377 3206 empathic@2.0.0: 3378 3207 resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} 3379 3208 engines: {node: '>=14'} 3380 3209 3381 - enhanced-resolve@5.20.0: 3382 - resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==} 3210 + enhanced-resolve@5.20.1: 3211 + resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==} 3383 3212 engines: {node: '>=10.13.0'} 3213 + 3214 + entities@7.0.1: 3215 + resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} 3216 + engines: {node: '>=0.12'} 3384 3217 3385 3218 error-stack-parser-es@1.0.5: 3386 3219 resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==} ··· 3390 3223 3391 3224 es-toolkit@1.45.1: 3392 3225 resolution: {integrity: sha512-/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw==} 3393 - 3394 - esbuild-register@3.6.0: 3395 - resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} 3396 - peerDependencies: 3397 - esbuild: '>=0.12 <1' 3398 3226 3399 3227 esbuild@0.18.20: 3400 3228 resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} ··· 3454 3282 resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} 3455 3283 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 3456 3284 3457 - eslint@10.0.2: 3458 - resolution: {integrity: sha512-uYixubwmqJZH+KLVYIVKY1JQt7tysXhtj21WSvjcSmU5SVNzMus1bgLe+pAt816yQ8opKfheVVoPLqvVMGejYw==} 3285 + eslint@10.0.3: 3286 + resolution: {integrity: sha512-COV33RzXZkqhG9P2rZCFl9ZmJ7WL+gQSCRzE7RhkbclbQPtLAWReL7ysA0Sh4c8Im2U9ynybdR56PV0XcKvqaQ==} 3459 3287 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 3460 3288 hasBin: true 3461 3289 peerDependencies: ··· 3490 3318 esrap@1.4.9: 3491 3319 resolution: {integrity: sha512-3OMlcd0a03UGuZpPeUC1HxR3nA23l+HEyCiZw3b3FumJIN9KphoGzDJKMXI1S72jVS1dsenDyQC0kJlO1U9E1g==} 3492 3320 3493 - esrap@2.2.3: 3494 - resolution: {integrity: sha512-8fOS+GIGCQZl/ZIlhl59htOlms6U8NvX6ZYgYHpRU/b6tVSh3uHkOHZikl3D4cMbYM0JlpBe+p/BkZEi8J9XIQ==} 3321 + esrap@2.2.4: 3322 + resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==} 3495 3323 3496 3324 esrecurse@4.3.0: 3497 3325 resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} ··· 3500 3328 estraverse@5.3.0: 3501 3329 resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 3502 3330 engines: {node: '>=4.0'} 3331 + 3332 + estree-walker@2.0.2: 3333 + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 3503 3334 3504 3335 estree-walker@3.0.3: 3505 3336 resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} ··· 3508 3339 resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 3509 3340 engines: {node: '>=0.10.0'} 3510 3341 3342 + eventemitter3@2.0.3: 3343 + resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==} 3344 + 3511 3345 expect-type@1.3.0: 3512 3346 resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} 3513 3347 engines: {node: '>=12.0.0'} ··· 3562 3396 flatted@3.4.0: 3563 3397 resolution: {integrity: sha512-kC6Bb+ooptOIvWj5B63EQWkF0FEnNjV2ZNkLMLZRDDduIiWeFF4iKnslwhiWxjAdbg4NzTNo6h0qLuvFrcx+Sw==} 3564 3398 3565 - flatted@3.4.1: 3566 - resolution: {integrity: sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==} 3567 - 3568 - foreground-child@3.3.1: 3569 - resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 3570 - engines: {node: '>=14'} 3399 + flatted@3.4.2: 3400 + resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==} 3571 3401 3572 3402 fsevents@2.3.2: 3573 3403 resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} ··· 3578 3408 resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 3579 3409 engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 3580 3410 os: [darwin] 3581 - 3582 - generate-function@2.3.1: 3583 - resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==} 3584 3411 3585 3412 gensync@1.0.0-beta.2: 3586 3413 resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} ··· 3607 3434 graceful-fs@4.2.11: 3608 3435 resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 3609 3436 3610 - grammex@3.1.12: 3611 - resolution: {integrity: sha512-6ufJOsSA7LcQehIJNCO7HIBykfM7DXQual0Ny780/DEcJIpBlHRvcqEBWGPYd7hrXL2GJ3oJI1MIhaXjWmLQOQ==} 3612 - 3613 - graphmatch@1.1.1: 3614 - resolution: {integrity: sha512-5ykVn/EXM1hF0XCaWh05VbYvEiOL2lY1kBxZtaYsyvjp7cmWOU1XsAdfQBwClraEofXDT197lFbXOEVMHpvQOg==} 3615 - 3616 - h3@1.15.6: 3617 - resolution: {integrity: sha512-oi15ESLW5LRthZ+qPCi5GNasY/gvynSKUQxgiovrY63bPAtG59wtM+LSrlcwvOHAXzGrXVLnI97brbkdPF9WoQ==} 3437 + h3@1.15.8: 3438 + resolution: {integrity: sha512-iOH6Vl8mGd9nNfu9C0IZ+GuOAfJHcyf3VriQxWaSWIB76Fg4BnFuk4cxBxjmQSSxJS664+pgjP6e7VBnUzFfcg==} 3618 3439 3619 3440 has-flag@4.0.0: 3620 3441 resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 3621 3442 engines: {node: '>=8'} 3622 3443 3623 - hono@4.11.4: 3624 - resolution: {integrity: sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==} 3625 - engines: {node: '>=16.9.0'} 3626 - 3627 - hookable@6.0.1: 3628 - resolution: {integrity: sha512-uKGyY8BuzN/a5gvzvA+3FVWo0+wUjgtfSdnmjtrOVwQCZPHpHDH2WRO3VZSOeluYrHoDCiXFffZXs8Dj1ULWtw==} 3444 + hookable@6.1.0: 3445 + resolution: {integrity: sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==} 3629 3446 3630 3447 html-escaper@2.0.2: 3631 3448 resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 3632 - 3633 - http-status-codes@2.3.0: 3634 - resolution: {integrity: sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==} 3635 - 3636 - iconv-lite@0.7.2: 3637 - resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==} 3638 - engines: {node: '>=0.10.0'} 3639 3449 3640 3450 ignore@5.3.2: 3641 3451 resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} ··· 3659 3469 iron-webcrypto@1.2.1: 3660 3470 resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 3661 3471 3472 + is-buffer@1.1.6: 3473 + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} 3474 + 3662 3475 is-docker@3.0.0: 3663 3476 resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 3664 3477 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} ··· 3680 3493 resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 3681 3494 engines: {node: '>=14.16'} 3682 3495 hasBin: true 3683 - 3684 - is-property@1.0.2: 3685 - resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==} 3686 3496 3687 3497 is-reference@3.0.3: 3688 3498 resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} ··· 3713 3523 joi@17.13.3: 3714 3524 resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} 3715 3525 3716 - jose@6.2.0: 3717 - resolution: {integrity: sha512-xsfE1TcSCbUdo6U07tR0mvhg0flGxU8tPLbF03mirl2ukGQENhUg4ubGYQnhVH0b5stLlPM+WOqDkEl1R1y5sQ==} 3526 + jose@6.2.2: 3527 + resolution: {integrity: sha512-d7kPDd34KO/YnzaDOlikGpOurfF0ByC2sEV4cANCtdqLlTfBlw2p14O/5d/zv40gJPbIQxfES3nSx1/oYNyuZQ==} 3718 3528 3719 3529 js-tokens@10.0.0: 3720 3530 resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==} ··· 3752 3562 keyv@4.5.4: 3753 3563 resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 3754 3564 3565 + kind-of@3.2.2: 3566 + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} 3567 + engines: {node: '>=0.10.0'} 3568 + 3755 3569 kleur@3.0.3: 3756 3570 resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 3757 3571 engines: {node: '>=6'} ··· 3763 3577 known-css-properties@0.37.0: 3764 3578 resolution: {integrity: sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==} 3765 3579 3766 - kysely@0.28.11: 3767 - resolution: {integrity: sha512-zpGIFg0HuoC893rIjYX1BETkVWdDnzTzF5e0kWXJFg5lE0k1/LfNWBejrcnOFu8Q2Rfq/hTDTU7XLUM8QOrpzg==} 3580 + kysely@0.28.13: 3581 + resolution: {integrity: sha512-jCkYDvlfzOyHaVsrvR4vnNZxG30oNv2jbbFBjTQAUG8n0h07HW0sZJHk4KAQIRyu9ay+Rg+L8qGa3lwt8Gve9w==} 3768 3582 engines: {node: '>=20.0.0'} 3769 3583 3770 3584 launch-editor@2.13.1: ··· 3774 3588 resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 3775 3589 engines: {node: '>= 0.8.0'} 3776 3590 3777 - libphonenumber-js@1.12.38: 3778 - resolution: {integrity: sha512-vwzxmasAy9hZigxtqTbFEwp8ZdZ975TiqVDwj5bKx5sR+zi5ucUQy9mbVTkKM9GzqdLdxux/hTw2nmN5J7POMA==} 3779 - 3780 - lightningcss-android-arm64@1.31.1: 3781 - resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==} 3782 - engines: {node: '>= 12.0.0'} 3783 - cpu: [arm64] 3784 - os: [android] 3591 + libphonenumber-js@1.12.40: 3592 + resolution: {integrity: sha512-HKGs7GowShNls3Zh+7DTr6wYpPk5jC78l508yQQY3e8ZgJChM3A9JZghmMJZuK+5bogSfuTafpjksGSR3aMIEg==} 3785 3593 3786 3594 lightningcss-android-arm64@1.32.0: 3787 3595 resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} ··· 3789 3597 cpu: [arm64] 3790 3598 os: [android] 3791 3599 3792 - lightningcss-darwin-arm64@1.31.1: 3793 - resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==} 3794 - engines: {node: '>= 12.0.0'} 3795 - cpu: [arm64] 3796 - os: [darwin] 3797 - 3798 3600 lightningcss-darwin-arm64@1.32.0: 3799 3601 resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} 3800 3602 engines: {node: '>= 12.0.0'} 3801 3603 cpu: [arm64] 3802 3604 os: [darwin] 3803 3605 3804 - lightningcss-darwin-x64@1.31.1: 3805 - resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==} 3806 - engines: {node: '>= 12.0.0'} 3807 - cpu: [x64] 3808 - os: [darwin] 3809 - 3810 3606 lightningcss-darwin-x64@1.32.0: 3811 3607 resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} 3812 3608 engines: {node: '>= 12.0.0'} 3813 3609 cpu: [x64] 3814 3610 os: [darwin] 3815 3611 3816 - lightningcss-freebsd-x64@1.31.1: 3817 - resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==} 3818 - engines: {node: '>= 12.0.0'} 3819 - cpu: [x64] 3820 - os: [freebsd] 3821 - 3822 3612 lightningcss-freebsd-x64@1.32.0: 3823 3613 resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} 3824 3614 engines: {node: '>= 12.0.0'} 3825 3615 cpu: [x64] 3826 3616 os: [freebsd] 3827 3617 3828 - lightningcss-linux-arm-gnueabihf@1.31.1: 3829 - resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==} 3830 - engines: {node: '>= 12.0.0'} 3831 - cpu: [arm] 3832 - os: [linux] 3833 - 3834 3618 lightningcss-linux-arm-gnueabihf@1.32.0: 3835 3619 resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} 3836 3620 engines: {node: '>= 12.0.0'} 3837 3621 cpu: [arm] 3838 3622 os: [linux] 3839 3623 3840 - lightningcss-linux-arm64-gnu@1.31.1: 3841 - resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==} 3842 - engines: {node: '>= 12.0.0'} 3843 - cpu: [arm64] 3844 - os: [linux] 3845 - libc: [glibc] 3846 - 3847 3624 lightningcss-linux-arm64-gnu@1.32.0: 3848 3625 resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} 3849 3626 engines: {node: '>= 12.0.0'} ··· 3851 3628 os: [linux] 3852 3629 libc: [glibc] 3853 3630 3854 - lightningcss-linux-arm64-musl@1.31.1: 3855 - resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==} 3856 - engines: {node: '>= 12.0.0'} 3857 - cpu: [arm64] 3858 - os: [linux] 3859 - libc: [musl] 3860 - 3861 3631 lightningcss-linux-arm64-musl@1.32.0: 3862 3632 resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} 3863 3633 engines: {node: '>= 12.0.0'} ··· 3865 3635 os: [linux] 3866 3636 libc: [musl] 3867 3637 3868 - lightningcss-linux-x64-gnu@1.31.1: 3869 - resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==} 3870 - engines: {node: '>= 12.0.0'} 3871 - cpu: [x64] 3872 - os: [linux] 3873 - libc: [glibc] 3874 - 3875 3638 lightningcss-linux-x64-gnu@1.32.0: 3876 3639 resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} 3877 3640 engines: {node: '>= 12.0.0'} ··· 3879 3642 os: [linux] 3880 3643 libc: [glibc] 3881 3644 3882 - lightningcss-linux-x64-musl@1.31.1: 3883 - resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==} 3884 - engines: {node: '>= 12.0.0'} 3885 - cpu: [x64] 3886 - os: [linux] 3887 - libc: [musl] 3888 - 3889 3645 lightningcss-linux-x64-musl@1.32.0: 3890 3646 resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} 3891 3647 engines: {node: '>= 12.0.0'} ··· 3893 3649 os: [linux] 3894 3650 libc: [musl] 3895 3651 3896 - lightningcss-win32-arm64-msvc@1.31.1: 3897 - resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==} 3898 - engines: {node: '>= 12.0.0'} 3899 - cpu: [arm64] 3900 - os: [win32] 3901 - 3902 3652 lightningcss-win32-arm64-msvc@1.32.0: 3903 3653 resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} 3904 3654 engines: {node: '>= 12.0.0'} 3905 3655 cpu: [arm64] 3906 3656 os: [win32] 3907 3657 3908 - lightningcss-win32-x64-msvc@1.31.1: 3909 - resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==} 3910 - engines: {node: '>= 12.0.0'} 3911 - cpu: [x64] 3912 - os: [win32] 3913 - 3914 3658 lightningcss-win32-x64-msvc@1.32.0: 3915 3659 resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} 3916 3660 engines: {node: '>= 12.0.0'} 3917 3661 cpu: [x64] 3918 3662 os: [win32] 3919 3663 3920 - lightningcss@1.31.1: 3921 - resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==} 3922 - engines: {node: '>= 12.0.0'} 3923 - 3924 3664 lightningcss@1.32.0: 3925 3665 resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} 3926 3666 engines: {node: '>= 12.0.0'} ··· 3939 3679 lodash@4.17.21: 3940 3680 resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 3941 3681 3942 - long@5.3.2: 3943 - resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==} 3944 - 3945 3682 lorem-ipsum@2.0.8: 3946 3683 resolution: {integrity: sha512-5RIwHuCb979RASgCJH0VKERn9cQo/+NcAi2BMe9ddj+gp7hujl6BI+qdOG4nVsLDpwWEJwTVYXNKP6BGgbcoGA==} 3947 3684 engines: {node: '>= 8.x', npm: '>= 5.x'} ··· 3950 3687 loupe@3.2.1: 3951 3688 resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} 3952 3689 3953 - lru-cache@11.2.6: 3954 - resolution: {integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==} 3690 + lru-cache@11.2.7: 3691 + resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==} 3955 3692 engines: {node: 20 || >=22} 3956 3693 3957 3694 lru-cache@5.1.1: 3958 3695 resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 3959 - 3960 - lru.min@1.1.4: 3961 - resolution: {integrity: sha512-DqC6n3QQ77zdFpCMASA1a3Jlb64Hv2N2DciFGkO/4L9+q/IpIAuRlKOvCXabtRW6cQf8usbmM6BE/TOPysCdIA==} 3962 - engines: {bun: '>=1.0.0', deno: '>=1.30.0', node: '>=8.0.0'} 3963 3696 3964 3697 lz-string@1.5.0: 3965 3698 resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} ··· 4044 3777 ms@2.1.3: 4045 3778 resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 4046 3779 4047 - mysql2@3.15.3: 4048 - resolution: {integrity: sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==} 4049 - engines: {node: '>= 8.0'} 4050 - 4051 - named-placeholders@1.1.6: 4052 - resolution: {integrity: sha512-Tz09sEL2EEuv5fFowm419c1+a/jSMiBjI9gHxVLrVdbUkkNUUfjsVYs9pVZu5oCon/kmRh9TfLEObFtkVxmY0w==} 4053 - engines: {node: '>=8.0.0'} 4054 - 4055 3780 nanoid@3.3.11: 4056 3781 resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 4057 3782 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 4058 3783 hasBin: true 4059 3784 4060 - nanostores@1.1.1: 4061 - resolution: {integrity: sha512-EYJqS25r2iBeTtGQCHidXl1VfZ1jXM7Q04zXJOrMlxVVmD0ptxJaNux92n1mJ7c5lN3zTq12MhH/8x59nP+qmg==} 3785 + nanostores@1.2.0: 3786 + resolution: {integrity: sha512-F0wCzbsH80G7XXo0Jd9/AVQC7ouWY6idUCTnMwW5t/Rv9W8qmO6endavDwg7TNp5GbugwSukFMVZqzPSrSMndg==} 4062 3787 engines: {node: ^20.0.0 || >=22.0.0} 4063 3788 4064 3789 natural-compare@1.4.0: ··· 4114 3839 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 4115 3840 engines: {node: '>= 0.8.0'} 4116 3841 4117 - oxfmt@0.40.0: 4118 - resolution: {integrity: sha512-g0C3I7xUj4b4DcagevM9kgH6+pUHytikxUcn3/VUkvzTNaaXBeyZqb7IBsHwojeXm4mTBEC/aBjBTMVUkZwWUQ==} 3842 + oxfmt@0.41.0: 3843 + resolution: {integrity: sha512-sKLdJZdQ3bw6x9qKiT7+eID4MNEXlDHf5ZacfIircrq6Qwjk0L6t2/JQlZZrVHTXJawK3KaMuBoJnEJPcqCEdg==} 4119 3844 engines: {node: ^20.19.0 || >=22.12.0} 4120 3845 hasBin: true 4121 3846 ··· 4123 3848 resolution: {integrity: sha512-4RuJK2jP08XwqtUu+5yhCbxEauCm6tv2MFHKEMsjbosK2+vy5us82oI3VLuHwbNyZG7ekZA26U2LLHnGR4frIA==} 4124 3849 hasBin: true 4125 3850 4126 - oxlint@1.55.0: 4127 - resolution: {integrity: sha512-T+FjepiyWpaZMhekqRpH8Z3I4vNM610p6w+Vjfqgj5TZUxHXl7N8N5IPvmOU8U4XdTRxqtNNTh9Y4hLtr7yvFg==} 3851 + oxlint@1.56.0: 3852 + resolution: {integrity: sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g==} 4128 3853 engines: {node: ^20.19.0 || >=22.12.0} 4129 3854 hasBin: true 4130 3855 peerDependencies: ··· 4166 3891 resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} 4167 3892 engines: {node: '>= 14.16'} 4168 3893 4169 - perfect-debounce@1.0.0: 4170 - resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} 4171 - 4172 3894 perfect-debounce@2.1.0: 4173 3895 resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==} 4174 3896 ··· 4288 4010 resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} 4289 4011 engines: {node: '>=0.10.0'} 4290 4012 4291 - postgres@3.4.7: 4292 - resolution: {integrity: sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==} 4293 - engines: {node: '>=12'} 4294 - 4295 4013 powershell-utils@0.1.0: 4296 4014 resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==} 4297 4015 engines: {node: '>=20'} ··· 4309 4027 resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} 4310 4028 engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 4311 4029 4312 - prisma@7.4.2: 4313 - resolution: {integrity: sha512-2bP8Ruww3Q95Z2eH4Yqh4KAENRsj/SxbdknIVBfd6DmjPwmpsC4OVFMLOeHt6tM3Amh8ebjvstrUz3V/hOe1dA==} 4314 - engines: {node: ^20.19 || ^22.12 || >=24.0} 4315 - hasBin: true 4316 - peerDependencies: 4317 - better-sqlite3: '>=9.0.0' 4318 - typescript: '>=5.4.0' 4319 - peerDependenciesMeta: 4320 - better-sqlite3: 4321 - optional: true 4322 - typescript: 4323 - optional: true 4324 - 4325 4030 prompts@2.4.2: 4326 4031 resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 4327 4032 engines: {node: '>= 6'} 4328 - 4329 - proper-lockfile@4.1.2: 4330 - resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} 4331 4033 4332 4034 property-expr@2.0.6: 4333 4035 resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==} ··· 4388 4090 resolution: {integrity: sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==} 4389 4091 engines: {node: '>=8'} 4390 4092 4391 - remeda@2.33.4: 4392 - resolution: {integrity: sha512-ygHswjlc/opg2VrtiYvUOPLjxjtdKvjGz1/plDhkG66hjNjFr1xmfrs2ClNFo/E6TyUFiwYNh53bKV26oBoMGQ==} 4093 + rename-keys@1.2.0: 4094 + resolution: {integrity: sha512-U7XpAktpbSgHTRSNRrjKSrjYkZKuhUukfoBlXWXUExCAqhzh1TU3BDRAfJmarcl5voKS+pbKU9MvyLWKZ4UEEg==} 4095 + engines: {node: '>= 0.8.0'} 4393 4096 4394 - resend@6.9.3: 4395 - resolution: {integrity: sha512-GRXjH9XZBJA+daH7bBVDuTShr22iWCxXA8P7t495G4dM/RC+d+3gHBK/6bz9K6Vpcq11zRQKmD+B+jECwQlyGQ==} 4097 + resend@6.9.4: 4098 + resolution: {integrity: sha512-/M3dsJzu5OgozqVsA4Psd/1L7EdePgOIIxClas453GOQYFG3VHc2ZyCHZFlvqsc9aZCCd2BJRRqZgWC8D9c7/g==} 4396 4099 engines: {node: '>=20'} 4397 4100 peerDependencies: 4398 4101 '@react-email/render': '*' ··· 4402 4105 4403 4106 resolve-pkg-maps@1.0.0: 4404 4107 resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 4405 - 4406 - retry@0.12.0: 4407 - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} 4408 - engines: {node: '>= 4'} 4409 4108 4410 4109 rolldown-plugin-dts@0.22.5: 4411 4110 resolution: {integrity: sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==} ··· 4429 4128 rolldown@1.0.0-rc.9: 4430 4129 resolution: {integrity: sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==} 4431 4130 engines: {node: ^20.19.0 || >=22.12.0} 4432 - hasBin: true 4433 - 4434 - rollup@4.59.0: 4435 - resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==} 4436 - engines: {node: '>=18.0.0', npm: '>=8.0.0'} 4437 4131 hasBin: true 4438 4132 4439 4133 rou3@0.7.12: ··· 4466 4160 resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 4467 4161 engines: {node: '>=6'} 4468 4162 4469 - safer-buffer@2.1.2: 4470 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 4471 - 4472 4163 scheduler@0.27.0: 4473 4164 resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} 4474 4165 ··· 4484 4175 engines: {node: '>=10'} 4485 4176 hasBin: true 4486 4177 4487 - seq-queue@0.0.5: 4488 - resolution: {integrity: sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==} 4489 - 4490 4178 set-cookie-parser@3.0.1: 4491 4179 resolution: {integrity: sha512-n7Z7dXZhJbwuAHhNzkTti6Aw9QDDjZtm3JTpTGATIdNzdQz5GuFs22w90BcvF4INfnrL5xrX3oGsuqO5Dx3A1Q==} 4492 4180 ··· 4509 4197 siginfo@2.0.0: 4510 4198 resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 4511 4199 4512 - signal-exit@3.0.7: 4513 - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 4514 - 4515 - signal-exit@4.1.0: 4516 - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 4517 - engines: {node: '>=14'} 4518 - 4519 4200 sirv@3.0.2: 4520 4201 resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} 4521 4202 engines: {node: '>=18'} ··· 4541 4222 resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 4542 4223 engines: {node: '>= 10.x'} 4543 4224 4544 - sqlstring@2.3.3: 4545 - resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==} 4546 - engines: {node: '>= 0.6'} 4547 - 4548 4225 stackback@0.0.2: 4549 4226 resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 4550 4227 4551 4228 standardwebhooks@1.0.0: 4552 4229 resolution: {integrity: sha512-BbHGOQK9olHPMvQNHWul6MYlrRTAOKn03rOe4A8O3CLWhNf4YHBqq2HJKKC+sfqpxiBY52pNeesD6jIiLDz8jg==} 4553 4230 4554 - std-env@3.10.0: 4555 - resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} 4556 - 4557 4231 std-env@4.0.0: 4558 4232 resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==} 4559 4233 4560 - storybook@10.2.16: 4561 - resolution: {integrity: sha512-Az1Qro0XjCBttsuO55H2aIGPYqGx00T8O3o29rLQswOyZhgAVY9H2EnJiVsfmSG1Kwt8qYTVv7VxzLlqDxropA==} 4562 - hasBin: true 4563 - peerDependencies: 4564 - prettier: ^2 || ^3 4565 - peerDependenciesMeta: 4566 - prettier: 4567 - optional: true 4568 - 4569 - storybook@10.2.19: 4570 - resolution: {integrity: sha512-UUm5eGSm6BLhkcFP0WbxkmAHJZfVN2ViLpIZOqiIPS++q32VYn+CLFC0lrTYTDqYvaG7i4BK4uowXYujzE4NdQ==} 4234 + storybook@10.3.0: 4235 + resolution: {integrity: sha512-OpLdng98l7cACuqBoQwewx21Vhgl9XPssgLdXQudW0+N5QPjinWXZpZCquZpXpNCyw5s5BFAcv+jKB3Qkf9jeA==} 4571 4236 hasBin: true 4572 4237 peerDependencies: 4573 4238 prettier: ^2 || ^3 ··· 4603 4268 peerDependencies: 4604 4269 svelte: ^5.0.0 4605 4270 4606 - svelte-check@4.4.4: 4607 - resolution: {integrity: sha512-F1pGqXc710Oi/wTI4d/x7d6lgPwwfx1U6w3Q35n4xsC2e8C/yN2sM1+mWxjlMcpAfWucjlq4vPi+P4FZ8a14sQ==} 4271 + svelte-check@4.4.5: 4272 + resolution: {integrity: sha512-1bSwIRCvvmSHrlK52fOlZmVtUZgil43jNL/2H18pRpa+eQjzGt6e3zayxhp1S7GajPFKNM/2PMCG+DZFHlG9fw==} 4608 4273 engines: {node: '>= 18.0.0'} 4609 4274 hasBin: true 4610 4275 peerDependencies: ··· 4632 4297 peerDependencies: 4633 4298 svelte: ^5.0.0 4634 4299 4635 - svelte2tsx@0.7.51: 4636 - resolution: {integrity: sha512-YbVMQi5LtQkVGOMdATTY8v3SMtkNjzYtrVDGaN3Bv+0LQ47tGXu/Oc8ryTkcYuEJWTZFJ8G2+2I8ORcQVGt9Ag==} 4637 - peerDependencies: 4638 - svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 4639 - typescript: ^4.9.4 || ^5.0.0 4640 - 4641 4300 svelte2tsx@0.7.52: 4642 4301 resolution: {integrity: sha512-svdT1FTrCLpvlU62evO5YdJt/kQ7nxgQxII/9BpQUvKr+GJRVdAXNVw8UWOt0fhoe5uWKyU0WsUTMRVAtRbMQg==} 4643 4302 peerDependencies: 4644 4303 svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 4645 4304 typescript: ^4.9.4 || ^5.0.0 4646 4305 4647 - svelte@5.53.7: 4648 - resolution: {integrity: sha512-uxck1KI7JWtlfP3H6HOWi/94soAl23jsGJkBzN2BAWcQng0+lTrRNhxActFqORgnO9BHVd1hKJhG+ljRuIUWfQ==} 4306 + svelte@5.54.0: 4307 + resolution: {integrity: sha512-TTDxwYnHkova6Wsyj1PGt9TByuWqvMoeY1bQiuAf2DM/JeDSMw7FjRKzk8K/5mJ99vGOKhbCqTDpyAKwjp4igg==} 4649 4308 engines: {node: '>=18'} 4650 4309 4651 4310 sveltekit-superforms@2.30.0: ··· 4654 4313 '@sveltejs/kit': 1.x || 2.x 4655 4314 svelte: 3.x || 4.x || >=5.0.0-next.51 4656 4315 4657 - svix@1.84.1: 4658 - resolution: {integrity: sha512-K8DPPSZaW/XqXiz1kEyzSHYgmGLnhB43nQCMeKjWGCUpLIpAMMM8kx3rVVOSm6Bo6EHyK1RQLPT4R06skM/MlQ==} 4316 + svgson@5.3.1: 4317 + resolution: {integrity: sha512-qdPgvUNWb40gWktBJnbJRelWcPzkLed/ShhnRsjbayXz8OtdPOzbil9jtiZdrYvSDumAz/VNQr6JaNfPx/gvPA==} 4318 + 4319 + svix@1.86.0: 4320 + resolution: {integrity: sha512-/HTvXwjLJe1l/MsLXAO1ddCYxElJk4eNR4DzOjDOEmGrPN/3BtBE8perGwMAaJ2sT5T172VkBYzmHcjUfM1JRQ==} 4659 4321 4660 4322 tabbable@6.4.0: 4661 4323 resolution: {integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==} ··· 4677 4339 tailwind-merge: 4678 4340 optional: true 4679 4341 4680 - tailwindcss@0.0.0-insiders.a4be983: 4681 - resolution: {integrity: sha512-dZFtkv4RXDnxhEpl0hZz3RuSSQpPB/73f0cjUDHGyH18XxWPRtz0CQZLhm9R3H4kNiRlkuyA0TIzPLDNUcrSyQ==} 4682 - 4683 - tailwindcss@4.2.1: 4684 - resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==} 4342 + tailwindcss@4.2.2: 4343 + resolution: {integrity: sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==} 4685 4344 4686 4345 tanstack-table-8-svelte-5@0.1.2: 4687 4346 resolution: {integrity: sha512-wMRu7Y709GpRrbPSN6uiYPCsNk5J/ZjvNuHGCbSUNNZEs1u4q09qnoTbY1EcwGAb3RkDEHEyrE9ArJNT4w0HOg==} ··· 4701 4360 tinybench@2.9.0: 4702 4361 resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 4703 4362 4704 - tinyexec@1.0.2: 4705 - resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} 4363 + tinyexec@1.0.4: 4364 + resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==} 4706 4365 engines: {node: '>=18'} 4707 4366 4708 4367 tinyglobby@0.2.15: ··· 4751 4410 resolution: {integrity: sha512-Du/ZW2RfwV/D4cmA5rXafYjBQVuvu4qGiEEla4EmEHVHgRdx68Gftx7i66jn2bzHPwSVZY36Ae6OuDn9el4ZKA==} 4752 4411 engines: {node: '>=14.13.1'} 4753 4412 4754 - tsdown@0.21.2: 4755 - resolution: {integrity: sha512-pP8eAcd1XAWjl5gjosuJs0BAuVoheUe3V8VDHx31QK7YOgXjcCMsBSyFWO3CMh/CSUkjRUzR96JtGH3WJFTExQ==} 4413 + tsdown@0.21.4: 4414 + resolution: {integrity: sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==} 4756 4415 engines: {node: '>=20.19.0'} 4757 4416 hasBin: true 4758 4417 peerDependencies: 4759 4418 '@arethetypeswrong/core': ^0.18.1 4760 - '@tsdown/css': 0.21.2 4761 - '@tsdown/exe': 0.21.2 4419 + '@tsdown/css': 0.21.4 4420 + '@tsdown/exe': 0.21.4 4762 4421 '@vitejs/devtools': '*' 4763 4422 publint: ^0.3.0 4764 4423 typescript: ^5.0.0 ··· 4781 4440 4782 4441 tslib@2.8.1: 4783 4442 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 4443 + 4444 + tsx@4.21.0: 4445 + resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==} 4446 + engines: {node: '>=18.0.0'} 4447 + hasBin: true 4784 4448 4785 4449 tw-animate-css@1.4.0: 4786 4450 resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==} ··· 4924 4588 resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} 4925 4589 hasBin: true 4926 4590 4927 - valibot@1.2.0: 4928 - resolution: {integrity: sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==} 4591 + valibot@1.3.1: 4592 + resolution: {integrity: sha512-sfdRir/QFM0JaF22hqTroPc5xy4DimuGQVKFrzF1YfGwaS1nJot3Y8VqMdLO2Lg27fMzat2yD3pY5PbAYO39Gg==} 4929 4593 peerDependencies: 4930 4594 typescript: '>=5' 4931 4595 peerDependenciesMeta: ··· 4987 4651 vite: 4988 4652 optional: true 4989 4653 4990 - vitest-browser-svelte@2.0.2: 4991 - resolution: {integrity: sha512-OLJVYoIYflwToFIy3s41pZ9mVp6dwXfYd8IIsWoc57g8DyN3SxsNJ5GB1xWFPxLFlKM+1MPExjPxLaqdELrfRQ==} 4654 + vitest-browser-svelte@2.1.0: 4655 + resolution: {integrity: sha512-Uqcqn9gKhYoNOn5uGOQHSPIEGHgIz25zPP6R63LQ5+yEVHfDXdOKBMba9pBlPIgp31AxYbV9h43j9+W+5M5y+A==} 4992 4656 peerDependencies: 4993 4657 svelte: ^3 || ^4 || ^5 || ^5.0.0-next.0 4994 4658 vitest: ^4.0.0 ··· 5028 4692 jsdom: 5029 4693 optional: true 5030 4694 4695 + vue@3.5.30: 4696 + resolution: {integrity: sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==} 4697 + peerDependencies: 4698 + typescript: '*' 4699 + peerDependenciesMeta: 4700 + typescript: 4701 + optional: true 4702 + 5031 4703 webidl-conversions@7.0.0: 5032 4704 resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} 5033 4705 engines: {node: '>=12'} ··· 5104 4776 resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==} 5105 4777 engines: {node: '>=20'} 5106 4778 4779 + xml-lexer@0.2.2: 4780 + resolution: {integrity: sha512-G0i98epIwiUEiKmMcavmVdhtymW+pCAohMRgybyIME9ygfVu8QheIi+YoQh3ngiThsT0SQzJT4R0sKDEv8Ou0w==} 4781 + 4782 + xml-reader@2.4.3: 4783 + resolution: {integrity: sha512-xWldrIxjeAMAu6+HSf9t50ot1uL5M+BtOidRCWHXIeewvSeIpscWCsp4Zxjk8kHHhdqFBrfK8U0EJeCcnyQ/gA==} 4784 + 5107 4785 xtend@4.0.2: 5108 4786 resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 5109 4787 engines: {node: '>=0.4'} ··· 5139 4817 5140 4818 yup@1.7.1: 5141 4819 resolution: {integrity: sha512-GKHFX2nXul2/4Dtfxhozv701jLQHdf6J34YDh2cEkpqoo8le5Mg6/LrdseVLrFarmFygZTlfIhHx/QKfb/QWXw==} 5142 - 5143 - zeptomatch@2.1.0: 5144 - resolution: {integrity: sha512-KiGErG2J0G82LSpniV0CtIzjlJ10E04j02VOudJsPyPwNZgGnRKQy7I1R7GMyg/QswnE4l7ohSGrQbQbjXPPDA==} 5145 4820 5146 4821 zimmerframe@1.1.2: 5147 4822 resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==} ··· 5183 4858 '@babel/generator': 7.29.1 5184 4859 '@babel/helper-compilation-targets': 7.28.6 5185 4860 '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) 5186 - '@babel/helpers': 7.28.6 5187 - '@babel/parser': 7.29.0 4861 + '@babel/helpers': 7.29.2 4862 + '@babel/parser': 7.29.2 5188 4863 '@babel/template': 7.28.6 5189 4864 '@babel/traverse': 7.29.0 5190 4865 '@babel/types': 7.29.0 ··· 5199 4874 5200 4875 '@babel/generator@7.29.1': 5201 4876 dependencies: 5202 - '@babel/parser': 7.29.0 4877 + '@babel/parser': 7.29.2 5203 4878 '@babel/types': 7.29.0 5204 4879 '@jridgewell/gen-mapping': 0.3.13 5205 4880 '@jridgewell/trace-mapping': 0.3.31 ··· 5288 4963 5289 4964 '@babel/helper-string-parser@7.27.1': {} 5290 4965 5291 - '@babel/helper-string-parser@8.0.0-rc.2': {} 4966 + '@babel/helper-string-parser@8.0.0-rc.3': {} 5292 4967 5293 4968 '@babel/helper-validator-identifier@7.28.5': {} 5294 4969 ··· 5296 4971 5297 4972 '@babel/helper-validator-option@7.27.1': {} 5298 4973 5299 - '@babel/helpers@7.28.6': 4974 + '@babel/helpers@7.29.2': 5300 4975 dependencies: 5301 4976 '@babel/template': 7.28.6 5302 4977 '@babel/types': 7.29.0 5303 4978 5304 - '@babel/parser@7.29.0': 4979 + '@babel/parser@7.29.2': 5305 4980 dependencies: 5306 4981 '@babel/types': 7.29.0 5307 4982 ··· 5390 5065 transitivePeerDependencies: 5391 5066 - supports-color 5392 5067 5393 - '@babel/runtime@7.28.6': {} 5068 + '@babel/runtime@7.29.2': {} 5394 5069 5395 5070 '@babel/template@7.28.6': 5396 5071 dependencies: 5397 5072 '@babel/code-frame': 7.29.0 5398 - '@babel/parser': 7.29.0 5073 + '@babel/parser': 7.29.2 5399 5074 '@babel/types': 7.29.0 5400 5075 5401 5076 '@babel/traverse@7.29.0': ··· 5403 5078 '@babel/code-frame': 7.29.0 5404 5079 '@babel/generator': 7.29.1 5405 5080 '@babel/helper-globals': 7.28.0 5406 - '@babel/parser': 7.29.0 5081 + '@babel/parser': 7.29.2 5407 5082 '@babel/template': 7.28.6 5408 5083 '@babel/types': 7.29.0 5409 5084 debug: 4.4.3 ··· 5417 5092 5418 5093 '@babel/types@8.0.0-rc.2': 5419 5094 dependencies: 5420 - '@babel/helper-string-parser': 8.0.0-rc.2 5095 + '@babel/helper-string-parser': 8.0.0-rc.3 5421 5096 '@babel/helper-validator-identifier': 8.0.0-rc.2 5422 5097 5423 5098 '@bcoe/v8-coverage@1.0.2': {} 5424 5099 5425 - '@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1)': 5100 + '@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0)': 5426 5101 dependencies: 5427 5102 '@better-auth/utils': 0.3.1 5428 5103 '@better-fetch/fetch': 1.1.21 5429 5104 '@standard-schema/spec': 1.1.0 5430 5105 better-call: 1.3.2(zod@4.3.6) 5431 - jose: 6.2.0 5432 - kysely: 0.28.11 5433 - nanostores: 1.1.1 5106 + jose: 6.2.2 5107 + kysely: 0.28.13 5108 + nanostores: 1.2.0 5434 5109 zod: 4.3.6 5435 5110 optionalDependencies: 5436 - '@cloudflare/workers-types': 4.20260306.1 5111 + '@cloudflare/workers-types': 4.20260317.1 5437 5112 5438 - '@better-auth/drizzle-adapter@1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)))': 5113 + '@better-auth/drizzle-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0))': 5439 5114 dependencies: 5440 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 5115 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 5441 5116 '@better-auth/utils': 0.3.1 5442 - drizzle-orm: 0.41.0(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 5117 + optionalDependencies: 5118 + drizzle-orm: 0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0) 5443 5119 5444 - '@better-auth/drizzle-adapter@1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)))': 5120 + '@better-auth/drizzle-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0))': 5445 5121 dependencies: 5446 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 5122 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 5447 5123 '@better-auth/utils': 0.3.1 5448 - drizzle-orm: 0.45.1(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 5124 + optionalDependencies: 5125 + drizzle-orm: 0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0) 5449 5126 5450 - '@better-auth/kysely-adapter@1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(kysely@0.28.11)': 5127 + '@better-auth/kysely-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(kysely@0.28.13)': 5451 5128 dependencies: 5452 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 5129 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 5453 5130 '@better-auth/utils': 0.3.1 5454 - kysely: 0.28.11 5131 + kysely: 0.28.13 5455 5132 5456 - '@better-auth/memory-adapter@1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)': 5133 + '@better-auth/memory-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)': 5457 5134 dependencies: 5458 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 5135 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 5459 5136 '@better-auth/utils': 0.3.1 5460 5137 5461 - '@better-auth/mongo-adapter@1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(mongodb@7.1.0)': 5138 + '@better-auth/mongo-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(mongodb@7.1.0)': 5462 5139 dependencies: 5463 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 5140 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 5464 5141 '@better-auth/utils': 0.3.1 5465 5142 mongodb: 7.1.0 5466 5143 5467 - '@better-auth/prisma-adapter@1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))': 5144 + '@better-auth/prisma-adapter@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(@prisma/client@7.5.0(typescript@5.9.3))': 5468 5145 dependencies: 5469 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 5146 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 5470 5147 '@better-auth/utils': 0.3.1 5471 - '@prisma/client': 7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3) 5472 - prisma: 7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) 5148 + optionalDependencies: 5149 + '@prisma/client': 7.5.0(typescript@5.9.3) 5473 5150 5474 - '@better-auth/telemetry@1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))': 5151 + '@better-auth/telemetry@1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))': 5475 5152 dependencies: 5476 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 5153 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 5477 5154 '@better-auth/utils': 0.3.1 5478 5155 '@better-fetch/fetch': 1.1.21 5479 5156 ··· 5532 5209 '@cloudflare/workerd-windows-64@1.20260219.0': 5533 5210 optional: true 5534 5211 5535 - '@cloudflare/workers-types@4.20260306.1': {} 5212 + '@cloudflare/workers-types@4.20260317.1': {} 5536 5213 5537 5214 '@cspotcode/source-map-support@0.8.1': 5538 5215 dependencies: 5539 5216 '@jridgewell/trace-mapping': 0.3.9 5540 5217 5541 5218 '@drizzle-team/brocli@0.10.2': {} 5542 - 5543 - '@electric-sql/pglite-socket@0.0.20(@electric-sql/pglite@0.3.15)': 5544 - dependencies: 5545 - '@electric-sql/pglite': 0.3.15 5546 - 5547 - '@electric-sql/pglite-tools@0.2.20(@electric-sql/pglite@0.3.15)': 5548 - dependencies: 5549 - '@electric-sql/pglite': 0.3.15 5550 - 5551 - '@electric-sql/pglite@0.3.15': {} 5552 5219 5553 5220 '@emnapi/core@1.9.0': 5554 5221 dependencies: ··· 5876 5543 '@esbuild/win32-x64@0.27.4': 5877 5544 optional: true 5878 5545 5879 - '@eslint-community/eslint-utils@4.9.1(eslint@10.0.2(jiti@2.6.1))': 5546 + '@eslint-community/eslint-utils@4.9.1(eslint@10.0.3(jiti@2.6.1))': 5880 5547 dependencies: 5881 - eslint: 10.0.2(jiti@2.6.1) 5548 + eslint: 10.0.3(jiti@2.6.1) 5882 5549 eslint-visitor-keys: 3.4.3 5883 5550 5884 5551 '@eslint-community/regexpp@4.12.2': {} ··· 5933 5600 dependencies: 5934 5601 '@hapi/hoek': 9.3.0 5935 5602 optional: true 5936 - 5937 - '@hono/node-server@1.19.9(hono@4.11.4)': 5938 - dependencies: 5939 - hono: 4.11.4 5940 5603 5941 5604 '@humanfs/core@0.19.1': {} 5942 5605 ··· 6075 5738 6076 5739 '@jsr/nc__whatwg-infra@1.1.0': {} 6077 5740 6078 - '@lucide/svelte@0.562.0(svelte@5.53.7)': 6079 - dependencies: 6080 - svelte: 5.53.7 6081 - 6082 - '@lucide/svelte@0.577.0(svelte@5.53.7)': 5741 + '@lucide/svelte@0.577.0(svelte@5.54.0)': 6083 5742 dependencies: 6084 - svelte: 5.53.7 5743 + svelte: 5.54.0 6085 5744 6086 5745 '@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.4)': 6087 5746 dependencies: ··· 6113 5772 6114 5773 '@oxc-project/types@0.115.0': {} 6115 5774 6116 - '@oxfmt/binding-android-arm-eabi@0.40.0': 5775 + '@oxfmt/binding-android-arm-eabi@0.41.0': 6117 5776 optional: true 6118 5777 6119 - '@oxfmt/binding-android-arm64@0.40.0': 5778 + '@oxfmt/binding-android-arm64@0.41.0': 6120 5779 optional: true 6121 5780 6122 - '@oxfmt/binding-darwin-arm64@0.40.0': 5781 + '@oxfmt/binding-darwin-arm64@0.41.0': 6123 5782 optional: true 6124 5783 6125 - '@oxfmt/binding-darwin-x64@0.40.0': 5784 + '@oxfmt/binding-darwin-x64@0.41.0': 6126 5785 optional: true 6127 5786 6128 - '@oxfmt/binding-freebsd-x64@0.40.0': 5787 + '@oxfmt/binding-freebsd-x64@0.41.0': 6129 5788 optional: true 6130 5789 6131 - '@oxfmt/binding-linux-arm-gnueabihf@0.40.0': 5790 + '@oxfmt/binding-linux-arm-gnueabihf@0.41.0': 6132 5791 optional: true 6133 5792 6134 - '@oxfmt/binding-linux-arm-musleabihf@0.40.0': 5793 + '@oxfmt/binding-linux-arm-musleabihf@0.41.0': 6135 5794 optional: true 6136 5795 6137 - '@oxfmt/binding-linux-arm64-gnu@0.40.0': 5796 + '@oxfmt/binding-linux-arm64-gnu@0.41.0': 6138 5797 optional: true 6139 5798 6140 - '@oxfmt/binding-linux-arm64-musl@0.40.0': 5799 + '@oxfmt/binding-linux-arm64-musl@0.41.0': 6141 5800 optional: true 6142 5801 6143 - '@oxfmt/binding-linux-ppc64-gnu@0.40.0': 5802 + '@oxfmt/binding-linux-ppc64-gnu@0.41.0': 6144 5803 optional: true 6145 5804 6146 - '@oxfmt/binding-linux-riscv64-gnu@0.40.0': 5805 + '@oxfmt/binding-linux-riscv64-gnu@0.41.0': 6147 5806 optional: true 6148 5807 6149 - '@oxfmt/binding-linux-riscv64-musl@0.40.0': 5808 + '@oxfmt/binding-linux-riscv64-musl@0.41.0': 6150 5809 optional: true 6151 5810 6152 - '@oxfmt/binding-linux-s390x-gnu@0.40.0': 5811 + '@oxfmt/binding-linux-s390x-gnu@0.41.0': 6153 5812 optional: true 6154 5813 6155 - '@oxfmt/binding-linux-x64-gnu@0.40.0': 5814 + '@oxfmt/binding-linux-x64-gnu@0.41.0': 6156 5815 optional: true 6157 5816 6158 - '@oxfmt/binding-linux-x64-musl@0.40.0': 5817 + '@oxfmt/binding-linux-x64-musl@0.41.0': 6159 5818 optional: true 6160 5819 6161 - '@oxfmt/binding-openharmony-arm64@0.40.0': 5820 + '@oxfmt/binding-openharmony-arm64@0.41.0': 6162 5821 optional: true 6163 5822 6164 - '@oxfmt/binding-win32-arm64-msvc@0.40.0': 5823 + '@oxfmt/binding-win32-arm64-msvc@0.41.0': 6165 5824 optional: true 6166 5825 6167 - '@oxfmt/binding-win32-ia32-msvc@0.40.0': 5826 + '@oxfmt/binding-win32-ia32-msvc@0.41.0': 6168 5827 optional: true 6169 5828 6170 - '@oxfmt/binding-win32-x64-msvc@0.40.0': 5829 + '@oxfmt/binding-win32-x64-msvc@0.41.0': 6171 5830 optional: true 6172 5831 6173 5832 '@oxlint-tsgolint/darwin-arm64@0.16.0': ··· 6188 5847 '@oxlint-tsgolint/win32-x64@0.16.0': 6189 5848 optional: true 6190 5849 6191 - '@oxlint/binding-android-arm-eabi@1.55.0': 5850 + '@oxlint/binding-android-arm-eabi@1.56.0': 6192 5851 optional: true 6193 5852 6194 - '@oxlint/binding-android-arm64@1.55.0': 5853 + '@oxlint/binding-android-arm64@1.56.0': 6195 5854 optional: true 6196 5855 6197 - '@oxlint/binding-darwin-arm64@1.55.0': 5856 + '@oxlint/binding-darwin-arm64@1.56.0': 6198 5857 optional: true 6199 5858 6200 - '@oxlint/binding-darwin-x64@1.55.0': 5859 + '@oxlint/binding-darwin-x64@1.56.0': 6201 5860 optional: true 6202 5861 6203 - '@oxlint/binding-freebsd-x64@1.55.0': 5862 + '@oxlint/binding-freebsd-x64@1.56.0': 6204 5863 optional: true 6205 5864 6206 - '@oxlint/binding-linux-arm-gnueabihf@1.55.0': 5865 + '@oxlint/binding-linux-arm-gnueabihf@1.56.0': 6207 5866 optional: true 6208 5867 6209 - '@oxlint/binding-linux-arm-musleabihf@1.55.0': 5868 + '@oxlint/binding-linux-arm-musleabihf@1.56.0': 6210 5869 optional: true 6211 5870 6212 - '@oxlint/binding-linux-arm64-gnu@1.55.0': 5871 + '@oxlint/binding-linux-arm64-gnu@1.56.0': 6213 5872 optional: true 6214 5873 6215 - '@oxlint/binding-linux-arm64-musl@1.55.0': 5874 + '@oxlint/binding-linux-arm64-musl@1.56.0': 6216 5875 optional: true 6217 5876 6218 - '@oxlint/binding-linux-ppc64-gnu@1.55.0': 5877 + '@oxlint/binding-linux-ppc64-gnu@1.56.0': 6219 5878 optional: true 6220 5879 6221 - '@oxlint/binding-linux-riscv64-gnu@1.55.0': 5880 + '@oxlint/binding-linux-riscv64-gnu@1.56.0': 6222 5881 optional: true 6223 5882 6224 - '@oxlint/binding-linux-riscv64-musl@1.55.0': 5883 + '@oxlint/binding-linux-riscv64-musl@1.56.0': 6225 5884 optional: true 6226 5885 6227 - '@oxlint/binding-linux-s390x-gnu@1.55.0': 5886 + '@oxlint/binding-linux-s390x-gnu@1.56.0': 6228 5887 optional: true 6229 5888 6230 - '@oxlint/binding-linux-x64-gnu@1.55.0': 5889 + '@oxlint/binding-linux-x64-gnu@1.56.0': 6231 5890 optional: true 6232 5891 6233 - '@oxlint/binding-linux-x64-musl@1.55.0': 5892 + '@oxlint/binding-linux-x64-musl@1.56.0': 6234 5893 optional: true 6235 5894 6236 - '@oxlint/binding-openharmony-arm64@1.55.0': 5895 + '@oxlint/binding-openharmony-arm64@1.56.0': 6237 5896 optional: true 6238 5897 6239 - '@oxlint/binding-win32-arm64-msvc@1.55.0': 5898 + '@oxlint/binding-win32-arm64-msvc@1.56.0': 6240 5899 optional: true 6241 5900 6242 - '@oxlint/binding-win32-ia32-msvc@1.55.0': 5901 + '@oxlint/binding-win32-ia32-msvc@1.56.0': 6243 5902 optional: true 6244 5903 6245 - '@oxlint/binding-win32-x64-msvc@1.55.0': 5904 + '@oxlint/binding-win32-x64-msvc@1.56.0': 6246 5905 optional: true 6247 5906 5907 + '@playwright/test@1.58.2': 5908 + dependencies: 5909 + playwright: 1.58.2 5910 + 6248 5911 '@polka/url@1.0.0-next.29': {} 6249 5912 6250 5913 '@poppinss/colors@4.1.6': ··· 6259 5922 6260 5923 '@poppinss/exception@1.2.3': {} 6261 5924 6262 - '@poppinss/macroable@1.1.0': 5925 + '@poppinss/macroable@1.1.2': 6263 5926 optional: true 6264 5927 6265 - '@prisma/client-runtime-utils@7.4.2': {} 5928 + '@prisma/client-runtime-utils@7.5.0': {} 6266 5929 6267 - '@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3)': 5930 + '@prisma/client@7.5.0(typescript@5.9.3)': 6268 5931 dependencies: 6269 - '@prisma/client-runtime-utils': 7.4.2 5932 + '@prisma/client-runtime-utils': 7.5.0 6270 5933 optionalDependencies: 6271 - prisma: 7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) 6272 5934 typescript: 5.9.3 6273 5935 6274 - '@prisma/config@7.4.2': 6275 - dependencies: 6276 - c12: 3.1.0 6277 - deepmerge-ts: 7.1.5 6278 - effect: 3.18.4 6279 - empathic: 2.0.0 6280 - transitivePeerDependencies: 6281 - - magicast 6282 - 6283 - '@prisma/debug@7.2.0': {} 6284 - 6285 - '@prisma/debug@7.4.2': {} 6286 - 6287 - '@prisma/dev@0.20.0(typescript@5.9.3)': 6288 - dependencies: 6289 - '@electric-sql/pglite': 0.3.15 6290 - '@electric-sql/pglite-socket': 0.0.20(@electric-sql/pglite@0.3.15) 6291 - '@electric-sql/pglite-tools': 0.2.20(@electric-sql/pglite@0.3.15) 6292 - '@hono/node-server': 1.19.9(hono@4.11.4) 6293 - '@mrleebo/prisma-ast': 0.13.1 6294 - '@prisma/get-platform': 7.2.0 6295 - '@prisma/query-plan-executor': 7.2.0 6296 - foreground-child: 3.3.1 6297 - get-port-please: 3.2.0 6298 - hono: 4.11.4 6299 - http-status-codes: 2.3.0 6300 - pathe: 2.0.3 6301 - proper-lockfile: 4.1.2 6302 - remeda: 2.33.4 6303 - std-env: 3.10.0 6304 - valibot: 1.2.0(typescript@5.9.3) 6305 - zeptomatch: 2.1.0 6306 - transitivePeerDependencies: 6307 - - typescript 6308 - 6309 - '@prisma/engines-version@7.5.0-10.94a226be1cf2967af2541cca5529f0f7ba866919': {} 6310 - 6311 - '@prisma/engines@7.4.2': 6312 - dependencies: 6313 - '@prisma/debug': 7.4.2 6314 - '@prisma/engines-version': 7.5.0-10.94a226be1cf2967af2541cca5529f0f7ba866919 6315 - '@prisma/fetch-engine': 7.4.2 6316 - '@prisma/get-platform': 7.4.2 6317 - 6318 - '@prisma/fetch-engine@7.4.2': 6319 - dependencies: 6320 - '@prisma/debug': 7.4.2 6321 - '@prisma/engines-version': 7.5.0-10.94a226be1cf2967af2541cca5529f0f7ba866919 6322 - '@prisma/get-platform': 7.4.2 6323 - 6324 - '@prisma/get-platform@7.2.0': 6325 - dependencies: 6326 - '@prisma/debug': 7.2.0 6327 - 6328 - '@prisma/get-platform@7.4.2': 6329 - dependencies: 6330 - '@prisma/debug': 7.4.2 6331 - 6332 - '@prisma/query-plan-executor@7.2.0': {} 6333 - 6334 - '@prisma/studio-core@0.13.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': 6335 - dependencies: 6336 - '@types/react': 19.2.14 6337 - react: 19.2.4 6338 - react-dom: 19.2.4(react@19.2.4) 6339 - 6340 5936 '@publint/pack@0.1.4': {} 6341 5937 6342 5938 '@quansync/fs@1.0.0': ··· 6392 5988 6393 5989 '@rolldown/pluginutils@1.0.0-rc.9': {} 6394 5990 6395 - '@rollup/rollup-android-arm-eabi@4.59.0': 6396 - optional: true 6397 - 6398 - '@rollup/rollup-android-arm64@4.59.0': 6399 - optional: true 6400 - 6401 - '@rollup/rollup-darwin-arm64@4.59.0': 6402 - optional: true 6403 - 6404 - '@rollup/rollup-darwin-x64@4.59.0': 6405 - optional: true 6406 - 6407 - '@rollup/rollup-freebsd-arm64@4.59.0': 6408 - optional: true 6409 - 6410 - '@rollup/rollup-freebsd-x64@4.59.0': 6411 - optional: true 6412 - 6413 - '@rollup/rollup-linux-arm-gnueabihf@4.59.0': 6414 - optional: true 6415 - 6416 - '@rollup/rollup-linux-arm-musleabihf@4.59.0': 6417 - optional: true 6418 - 6419 - '@rollup/rollup-linux-arm64-gnu@4.59.0': 6420 - optional: true 6421 - 6422 - '@rollup/rollup-linux-arm64-musl@4.59.0': 6423 - optional: true 6424 - 6425 - '@rollup/rollup-linux-loong64-gnu@4.59.0': 6426 - optional: true 6427 - 6428 - '@rollup/rollup-linux-loong64-musl@4.59.0': 6429 - optional: true 6430 - 6431 - '@rollup/rollup-linux-ppc64-gnu@4.59.0': 6432 - optional: true 6433 - 6434 - '@rollup/rollup-linux-ppc64-musl@4.59.0': 6435 - optional: true 6436 - 6437 - '@rollup/rollup-linux-riscv64-gnu@4.59.0': 6438 - optional: true 6439 - 6440 - '@rollup/rollup-linux-riscv64-musl@4.59.0': 6441 - optional: true 6442 - 6443 - '@rollup/rollup-linux-s390x-gnu@4.59.0': 6444 - optional: true 6445 - 6446 - '@rollup/rollup-linux-x64-gnu@4.59.0': 6447 - optional: true 6448 - 6449 - '@rollup/rollup-linux-x64-musl@4.59.0': 6450 - optional: true 6451 - 6452 - '@rollup/rollup-openbsd-x64@4.59.0': 6453 - optional: true 6454 - 6455 - '@rollup/rollup-openharmony-arm64@4.59.0': 6456 - optional: true 6457 - 6458 - '@rollup/rollup-win32-arm64-msvc@4.59.0': 6459 - optional: true 6460 - 6461 - '@rollup/rollup-win32-ia32-msvc@4.59.0': 6462 - optional: true 6463 - 6464 - '@rollup/rollup-win32-x64-gnu@4.59.0': 6465 - optional: true 6466 - 6467 - '@rollup/rollup-win32-x64-msvc@4.59.0': 6468 - optional: true 6469 - 6470 5991 '@sideway/address@4.1.5': 6471 5992 dependencies: 6472 5993 '@hapi/hoek': 9.3.0 ··· 6480 6001 6481 6002 '@sindresorhus/is@7.2.0': {} 6482 6003 6483 - '@speed-highlight/core@1.2.14': {} 6004 + '@speed-highlight/core@1.2.15': {} 6484 6005 6485 6006 '@stablelib/base64@1.0.1': {} 6486 6007 6487 6008 '@standard-schema/spec@1.1.0': {} 6488 6009 6489 - '@storybook/addon-a11y@10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))': 6010 + '@storybook/addon-a11y@10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))': 6490 6011 dependencies: 6491 6012 '@storybook/global': 5.0.0 6492 6013 axe-core: 4.11.1 6493 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6014 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6494 6015 6495 - '@storybook/addon-docs@10.2.19(@types/react@19.2.14)(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6016 + '@storybook/addon-docs@10.3.0(@types/react@19.2.14)(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6496 6017 dependencies: 6497 6018 '@mdx-js/react': 3.1.1(@types/react@19.2.14)(react@19.2.4) 6498 - '@storybook/csf-plugin': 10.2.19(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6019 + '@storybook/csf-plugin': 10.3.0(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6499 6020 '@storybook/icons': 2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6500 - '@storybook/react-dom-shim': 10.2.19(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)) 6021 + '@storybook/react-dom-shim': 10.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)) 6501 6022 react: 19.2.4 6502 6023 react-dom: 19.2.4(react@19.2.4) 6503 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6024 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6504 6025 ts-dedent: 2.2.0 6505 6026 transitivePeerDependencies: 6506 6027 - '@types/react' ··· 6509 6030 - vite 6510 6031 - webpack 6511 6032 6512 - '@storybook/addon-svelte-csf@5.0.11(@storybook/svelte@10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7))(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6033 + '@storybook/addon-svelte-csf@5.0.12(@storybook/svelte@10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0))(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6513 6034 dependencies: 6514 6035 '@storybook/csf': 0.1.13 6515 - '@storybook/svelte': 10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7) 6516 - '@sveltejs/vite-plugin-svelte': 7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6036 + '@storybook/svelte': 10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0) 6037 + '@sveltejs/vite-plugin-svelte': 7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6517 6038 dedent: 1.7.2 6518 6039 es-toolkit: 1.45.1 6519 6040 esrap: 1.4.9 6520 6041 magic-string: 0.30.21 6521 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6522 - svelte: 5.53.7 6523 - svelte-ast-print: 0.4.2(svelte@5.53.7) 6524 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6042 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6043 + svelte: 5.54.0 6044 + svelte-ast-print: 0.4.2(svelte@5.54.0) 6045 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6525 6046 zimmerframe: 1.1.4 6526 6047 transitivePeerDependencies: 6527 6048 - babel-plugin-macros 6528 6049 6529 - '@storybook/addon-themes@10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))': 6050 + '@storybook/addon-themes@10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))': 6530 6051 dependencies: 6531 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6052 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6532 6053 ts-dedent: 2.2.0 6533 6054 6534 - '@storybook/addon-vitest@10.2.19(@vitest/browser-playwright@4.1.0)(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0))(@vitest/runner@4.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vitest@4.1.0)': 6055 + '@storybook/addon-vitest@10.3.0(@vitest/browser-playwright@4.1.0)(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0))(@vitest/runner@4.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vitest@4.1.0)': 6535 6056 dependencies: 6536 6057 '@storybook/global': 5.0.0 6537 6058 '@storybook/icons': 2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6538 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6059 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6539 6060 optionalDependencies: 6540 - '@vitest/browser': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0) 6541 - '@vitest/browser-playwright': 4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0) 6061 + '@vitest/browser': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0) 6062 + '@vitest/browser-playwright': 4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0) 6542 6063 '@vitest/runner': 4.1.0 6543 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6064 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6544 6065 transitivePeerDependencies: 6545 6066 - react 6546 6067 - react-dom 6547 6068 6548 - '@storybook/builder-vite@10.2.19(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6069 + '@storybook/builder-vite@10.3.0(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6549 6070 dependencies: 6550 - '@storybook/csf-plugin': 10.2.19(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6551 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6071 + '@storybook/csf-plugin': 10.3.0(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6072 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6552 6073 ts-dedent: 2.2.0 6553 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6074 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6554 6075 transitivePeerDependencies: 6555 6076 - esbuild 6556 6077 - rollup 6557 6078 - webpack 6558 6079 6559 - '@storybook/csf-plugin@10.2.19(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6080 + '@storybook/csf-plugin@10.3.0(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6560 6081 dependencies: 6561 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6082 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6562 6083 unplugin: 2.3.11 6563 6084 optionalDependencies: 6564 6085 esbuild: 0.27.4 6565 - rollup: 4.59.0 6566 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6086 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6567 6087 6568 6088 '@storybook/csf@0.1.13': 6569 6089 dependencies: ··· 6576 6096 react: 19.2.4 6577 6097 react-dom: 19.2.4(react@19.2.4) 6578 6098 6579 - '@storybook/react-dom-shim@10.2.19(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))': 6099 + '@storybook/react-dom-shim@10.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))': 6580 6100 dependencies: 6581 6101 react: 19.2.4 6582 6102 react-dom: 19.2.4(react@19.2.4) 6583 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6103 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6584 6104 6585 - '@storybook/svelte-vite@10.2.19(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6105 + '@storybook/svelte-vite@10.3.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6586 6106 dependencies: 6587 - '@storybook/builder-vite': 10.2.19(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6588 - '@storybook/svelte': 10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7) 6589 - '@sveltejs/vite-plugin-svelte': 7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6107 + '@storybook/builder-vite': 10.3.0(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6108 + '@storybook/svelte': 10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0) 6109 + '@sveltejs/vite-plugin-svelte': 7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6590 6110 magic-string: 0.30.21 6591 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6592 - svelte: 5.53.7 6593 - svelte2tsx: 0.7.52(svelte@5.53.7)(typescript@5.9.3) 6111 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6112 + svelte: 5.54.0 6113 + svelte2tsx: 0.7.52(svelte@5.54.0)(typescript@5.9.3) 6594 6114 typescript: 5.9.3 6595 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6115 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6596 6116 transitivePeerDependencies: 6597 6117 - esbuild 6598 6118 - rollup 6599 6119 - webpack 6600 6120 6601 - '@storybook/svelte@10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7)': 6121 + '@storybook/svelte@10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0)': 6602 6122 dependencies: 6603 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6604 - svelte: 5.53.7 6123 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6124 + svelte: 5.54.0 6605 6125 ts-dedent: 2.2.0 6606 6126 type-fest: 2.19.0 6607 6127 6608 - '@storybook/sveltekit@10.2.19(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6128 + '@storybook/sveltekit@10.3.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6609 6129 dependencies: 6610 - '@storybook/builder-vite': 10.2.19(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6611 - '@storybook/svelte': 10.2.19(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7) 6612 - '@storybook/svelte-vite': 10.2.19(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(esbuild@0.27.4)(rollup@4.59.0)(storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6613 - storybook: 10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6614 - svelte: 5.53.7 6615 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6130 + '@storybook/builder-vite': 10.3.0(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6131 + '@storybook/svelte': 10.3.0(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0) 6132 + '@storybook/svelte-vite': 10.3.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(esbuild@0.27.4)(storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6133 + storybook: 10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 6134 + svelte: 5.54.0 6135 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6616 6136 transitivePeerDependencies: 6617 6137 - '@sveltejs/vite-plugin-svelte' 6618 6138 - esbuild ··· 6623 6143 dependencies: 6624 6144 acorn: 8.16.0 6625 6145 6626 - '@sveltejs/adapter-auto@7.0.1(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))': 6146 + '@sveltejs/adapter-auto@7.0.1(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))': 6627 6147 dependencies: 6628 - '@sveltejs/kit': 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6148 + '@sveltejs/kit': 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6629 6149 6630 - '@sveltejs/adapter-cloudflare@7.2.8(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(wrangler@4.67.0(@cloudflare/workers-types@4.20260306.1))': 6150 + '@sveltejs/adapter-cloudflare@7.2.8(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(wrangler@4.67.0(@cloudflare/workers-types@4.20260317.1))': 6631 6151 dependencies: 6632 - '@cloudflare/workers-types': 4.20260306.1 6633 - '@sveltejs/kit': 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6152 + '@cloudflare/workers-types': 4.20260317.1 6153 + '@sveltejs/kit': 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6634 6154 worktop: 0.8.0-next.18 6635 - wrangler: 4.67.0(@cloudflare/workers-types@4.20260306.1) 6155 + wrangler: 4.67.0(@cloudflare/workers-types@4.20260317.1) 6636 6156 6637 - '@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))': 6157 + '@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6638 6158 dependencies: 6639 6159 '@standard-schema/spec': 1.1.0 6640 6160 '@sveltejs/acorn-typescript': 1.0.9(acorn@8.16.0) 6641 - '@sveltejs/vite-plugin-svelte': 7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6161 + '@sveltejs/vite-plugin-svelte': 7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6642 6162 '@types/cookie': 0.6.0 6643 6163 acorn: 8.16.0 6644 6164 cookie: 0.6.0 6645 - devalue: 5.6.3 6165 + devalue: 5.6.4 6646 6166 esm-env: 1.2.2 6647 6167 kleur: 4.1.5 6648 6168 magic-string: 0.30.21 6649 6169 mrmime: 2.0.1 6650 6170 set-cookie-parser: 3.0.1 6651 6171 sirv: 3.0.2 6652 - svelte: 5.53.7 6653 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1) 6654 - optionalDependencies: 6655 - typescript: 5.9.3 6656 - 6657 - '@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6658 - dependencies: 6659 - '@standard-schema/spec': 1.1.0 6660 - '@sveltejs/acorn-typescript': 1.0.9(acorn@8.16.0) 6661 - '@sveltejs/vite-plugin-svelte': 7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6662 - '@types/cookie': 0.6.0 6663 - acorn: 8.16.0 6664 - cookie: 0.6.0 6665 - devalue: 5.6.3 6666 - esm-env: 1.2.2 6667 - kleur: 4.1.5 6668 - magic-string: 0.30.21 6669 - mrmime: 2.0.1 6670 - set-cookie-parser: 3.0.1 6671 - sirv: 3.0.2 6672 - svelte: 5.53.7 6673 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6172 + svelte: 5.54.0 6173 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6674 6174 optionalDependencies: 6675 6175 typescript: 5.9.3 6676 6176 6677 - '@sveltejs/package@2.5.7(svelte@5.53.7)(typescript@5.9.3)': 6177 + '@sveltejs/package@2.5.7(svelte@5.54.0)(typescript@5.9.3)': 6678 6178 dependencies: 6679 6179 chokidar: 5.0.0 6680 6180 kleur: 4.1.5 6681 6181 sade: 1.8.1 6682 6182 semver: 7.7.4 6683 - svelte: 5.53.7 6684 - svelte2tsx: 0.7.51(svelte@5.53.7)(typescript@5.9.3) 6183 + svelte: 5.54.0 6184 + svelte2tsx: 0.7.52(svelte@5.54.0)(typescript@5.9.3) 6685 6185 transitivePeerDependencies: 6686 6186 - typescript 6687 6187 6688 - '@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))': 6188 + '@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6689 6189 dependencies: 6690 6190 deepmerge: 4.3.1 6691 6191 magic-string: 0.30.21 6692 6192 obug: 2.1.1 6693 - svelte: 5.53.7 6694 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1) 6695 - vitefu: 1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6696 - 6697 - '@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6698 - dependencies: 6699 - deepmerge: 4.3.1 6700 - magic-string: 0.30.21 6701 - obug: 2.1.1 6702 - svelte: 5.53.7 6703 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6704 - vitefu: 1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6193 + svelte: 5.54.0 6194 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6195 + vitefu: 1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6705 6196 6706 6197 '@swc/helpers@0.5.19': 6707 6198 dependencies: 6708 6199 tslib: 2.8.1 6709 6200 6710 - '@tailwindcss/node@0.0.0-insiders.a4be983': 6201 + '@tailwindcss/node@4.2.2': 6711 6202 dependencies: 6712 6203 '@jridgewell/remapping': 2.3.5 6713 - enhanced-resolve: 5.20.0 6204 + enhanced-resolve: 5.20.1 6714 6205 jiti: 2.6.1 6715 - lightningcss: 1.31.1 6206 + lightningcss: 1.32.0 6716 6207 magic-string: 0.30.21 6717 6208 source-map-js: 1.2.1 6718 - tailwindcss: 0.0.0-insiders.a4be983 6209 + tailwindcss: 4.2.2 6719 6210 6720 - '@tailwindcss/oxide-android-arm64@0.0.0-insiders.a4be983': 6211 + '@tailwindcss/oxide-android-arm64@4.2.2': 6721 6212 optional: true 6722 6213 6723 - '@tailwindcss/oxide-darwin-arm64@0.0.0-insiders.a4be983': 6214 + '@tailwindcss/oxide-darwin-arm64@4.2.2': 6724 6215 optional: true 6725 6216 6726 - '@tailwindcss/oxide-darwin-x64@0.0.0-insiders.a4be983': 6217 + '@tailwindcss/oxide-darwin-x64@4.2.2': 6727 6218 optional: true 6728 6219 6729 - '@tailwindcss/oxide-freebsd-x64@0.0.0-insiders.a4be983': 6220 + '@tailwindcss/oxide-freebsd-x64@4.2.2': 6730 6221 optional: true 6731 6222 6732 - '@tailwindcss/oxide-linux-arm-gnueabihf@0.0.0-insiders.a4be983': 6223 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.2': 6733 6224 optional: true 6734 6225 6735 - '@tailwindcss/oxide-linux-arm64-gnu@0.0.0-insiders.a4be983': 6226 + '@tailwindcss/oxide-linux-arm64-gnu@4.2.2': 6736 6227 optional: true 6737 6228 6738 - '@tailwindcss/oxide-linux-arm64-musl@0.0.0-insiders.a4be983': 6229 + '@tailwindcss/oxide-linux-arm64-musl@4.2.2': 6739 6230 optional: true 6740 6231 6741 - '@tailwindcss/oxide-linux-x64-gnu@0.0.0-insiders.a4be983': 6232 + '@tailwindcss/oxide-linux-x64-gnu@4.2.2': 6742 6233 optional: true 6743 6234 6744 - '@tailwindcss/oxide-linux-x64-musl@0.0.0-insiders.a4be983': 6235 + '@tailwindcss/oxide-linux-x64-musl@4.2.2': 6745 6236 optional: true 6746 6237 6747 - '@tailwindcss/oxide-wasm32-wasi@0.0.0-insiders.a4be983': 6238 + '@tailwindcss/oxide-wasm32-wasi@4.2.2': 6748 6239 optional: true 6749 6240 6750 - '@tailwindcss/oxide-win32-arm64-msvc@0.0.0-insiders.a4be983': 6241 + '@tailwindcss/oxide-win32-arm64-msvc@4.2.2': 6751 6242 optional: true 6752 6243 6753 - '@tailwindcss/oxide-win32-x64-msvc@0.0.0-insiders.a4be983': 6244 + '@tailwindcss/oxide-win32-x64-msvc@4.2.2': 6754 6245 optional: true 6755 6246 6756 - '@tailwindcss/oxide@0.0.0-insiders.a4be983': 6247 + '@tailwindcss/oxide@4.2.2': 6757 6248 optionalDependencies: 6758 - '@tailwindcss/oxide-android-arm64': 0.0.0-insiders.a4be983 6759 - '@tailwindcss/oxide-darwin-arm64': 0.0.0-insiders.a4be983 6760 - '@tailwindcss/oxide-darwin-x64': 0.0.0-insiders.a4be983 6761 - '@tailwindcss/oxide-freebsd-x64': 0.0.0-insiders.a4be983 6762 - '@tailwindcss/oxide-linux-arm-gnueabihf': 0.0.0-insiders.a4be983 6763 - '@tailwindcss/oxide-linux-arm64-gnu': 0.0.0-insiders.a4be983 6764 - '@tailwindcss/oxide-linux-arm64-musl': 0.0.0-insiders.a4be983 6765 - '@tailwindcss/oxide-linux-x64-gnu': 0.0.0-insiders.a4be983 6766 - '@tailwindcss/oxide-linux-x64-musl': 0.0.0-insiders.a4be983 6767 - '@tailwindcss/oxide-wasm32-wasi': 0.0.0-insiders.a4be983 6768 - '@tailwindcss/oxide-win32-arm64-msvc': 0.0.0-insiders.a4be983 6769 - '@tailwindcss/oxide-win32-x64-msvc': 0.0.0-insiders.a4be983 6770 - 6771 - '@tailwindcss/vite@0.0.0-insiders.a4be983(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))': 6772 - dependencies: 6773 - '@tailwindcss/node': 0.0.0-insiders.a4be983 6774 - '@tailwindcss/oxide': 0.0.0-insiders.a4be983 6775 - tailwindcss: 0.0.0-insiders.a4be983 6776 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1) 6249 + '@tailwindcss/oxide-android-arm64': 4.2.2 6250 + '@tailwindcss/oxide-darwin-arm64': 4.2.2 6251 + '@tailwindcss/oxide-darwin-x64': 4.2.2 6252 + '@tailwindcss/oxide-freebsd-x64': 4.2.2 6253 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.2 6254 + '@tailwindcss/oxide-linux-arm64-gnu': 4.2.2 6255 + '@tailwindcss/oxide-linux-arm64-musl': 4.2.2 6256 + '@tailwindcss/oxide-linux-x64-gnu': 4.2.2 6257 + '@tailwindcss/oxide-linux-x64-musl': 4.2.2 6258 + '@tailwindcss/oxide-wasm32-wasi': 4.2.2 6259 + '@tailwindcss/oxide-win32-arm64-msvc': 4.2.2 6260 + '@tailwindcss/oxide-win32-x64-msvc': 4.2.2 6777 6261 6778 - '@tailwindcss/vite@0.0.0-insiders.a4be983(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 6262 + '@tailwindcss/vite@4.2.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6779 6263 dependencies: 6780 - '@tailwindcss/node': 0.0.0-insiders.a4be983 6781 - '@tailwindcss/oxide': 0.0.0-insiders.a4be983 6782 - tailwindcss: 0.0.0-insiders.a4be983 6783 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6264 + '@tailwindcss/node': 4.2.2 6265 + '@tailwindcss/oxide': 4.2.2 6266 + tailwindcss: 4.2.2 6267 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 6784 6268 6785 6269 '@tanstack/table-core@8.21.3': {} 6786 6270 6787 6271 '@testing-library/dom@10.4.1': 6788 6272 dependencies: 6789 6273 '@babel/code-frame': 7.29.0 6790 - '@babel/runtime': 7.28.6 6274 + '@babel/runtime': 7.29.2 6791 6275 '@types/aria-query': 5.0.4 6792 6276 aria-query: 5.3.0 6793 6277 dom-accessibility-api: 0.5.16 ··· 6804 6288 picocolors: 1.1.1 6805 6289 redent: 3.0.0 6806 6290 6807 - '@testing-library/svelte-core@1.0.0(svelte@5.53.7)': 6291 + '@testing-library/svelte-core@1.0.0(svelte@5.54.0)': 6808 6292 dependencies: 6809 - svelte: 5.53.7 6293 + svelte: 5.54.0 6810 6294 6811 6295 '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)': 6812 6296 dependencies: ··· 6877 6361 '@types/json-schema': 7.0.15 6878 6362 optional: true 6879 6363 6880 - '@valibot/to-json-schema@1.5.0(valibot@1.2.0(typescript@5.9.3))': 6364 + '@typescript-eslint/types@8.57.1': {} 6365 + 6366 + '@valibot/to-json-schema@1.6.0(valibot@1.3.1(typescript@5.9.3))': 6881 6367 dependencies: 6882 - valibot: 1.2.0(typescript@5.9.3) 6368 + valibot: 1.3.1(typescript@5.9.3) 6883 6369 optional: true 6884 6370 6885 6371 '@vinejs/compiler@3.0.0': ··· 6887 6373 6888 6374 '@vinejs/vine@3.0.1': 6889 6375 dependencies: 6890 - '@poppinss/macroable': 1.1.0 6376 + '@poppinss/macroable': 1.1.2 6891 6377 '@types/validator': 13.15.10 6892 6378 '@vinejs/compiler': 3.0.0 6893 6379 camelcase: 8.0.0 6894 - dayjs: 1.11.19 6380 + dayjs: 1.11.20 6895 6381 dlv: 1.1.3 6896 6382 normalize-url: 8.1.1 6897 6383 validator: 13.15.26 6898 6384 optional: true 6899 6385 6900 - '@vitest/browser-playwright@4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))(vitest@4.1.0)': 6386 + '@vitest/browser-playwright@4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0)': 6901 6387 dependencies: 6902 - '@vitest/browser': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))(vitest@4.1.0) 6903 - '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6388 + '@vitest/browser': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0) 6389 + '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6904 6390 playwright: 1.58.2 6905 6391 tinyrainbow: 3.1.0 6906 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6392 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6907 6393 transitivePeerDependencies: 6908 6394 - bufferutil 6909 6395 - msw 6910 6396 - utf-8-validate 6911 6397 - vite 6912 6398 6913 - '@vitest/browser-playwright@4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0)': 6914 - dependencies: 6915 - '@vitest/browser': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0) 6916 - '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6917 - playwright: 1.58.2 6918 - tinyrainbow: 3.1.0 6919 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6920 - transitivePeerDependencies: 6921 - - bufferutil 6922 - - msw 6923 - - utf-8-validate 6924 - - vite 6925 - optional: true 6926 - 6927 - '@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))(vitest@4.1.0)': 6399 + '@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0)': 6928 6400 dependencies: 6929 6401 '@blazediff/core': 1.9.1 6930 - '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6402 + '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6931 6403 '@vitest/utils': 4.1.0 6932 6404 magic-string: 0.30.21 6933 6405 pngjs: 7.0.0 6934 6406 sirv: 3.0.2 6935 6407 tinyrainbow: 3.1.0 6936 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6408 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6937 6409 ws: 8.19.0 6938 6410 transitivePeerDependencies: 6939 6411 - bufferutil ··· 6941 6413 - utf-8-validate 6942 6414 - vite 6943 6415 6944 - '@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0)': 6945 - dependencies: 6946 - '@blazediff/core': 1.9.1 6947 - '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6948 - '@vitest/utils': 4.1.0 6949 - magic-string: 0.30.21 6950 - pngjs: 7.0.0 6951 - sirv: 3.0.2 6952 - tinyrainbow: 3.1.0 6953 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6954 - ws: 8.19.0 6955 - transitivePeerDependencies: 6956 - - bufferutil 6957 - - msw 6958 - - utf-8-validate 6959 - - vite 6960 - optional: true 6961 - 6962 - '@vitest/coverage-v8@4.1.0(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0))(vitest@4.1.0)': 6416 + '@vitest/coverage-v8@4.1.0(@vitest/browser@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0))(vitest@4.1.0)': 6963 6417 dependencies: 6964 6418 '@bcoe/v8-coverage': 1.0.2 6965 6419 '@vitest/utils': 4.1.0 ··· 6971 6425 obug: 2.1.1 6972 6426 std-env: 4.0.0 6973 6427 tinyrainbow: 3.1.0 6974 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 6428 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6975 6429 optionalDependencies: 6976 - '@vitest/browser': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0) 6430 + '@vitest/browser': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0) 6977 6431 6978 6432 '@vitest/expect@3.2.4': 6979 6433 dependencies: ··· 6992 6446 chai: 6.2.2 6993 6447 tinyrainbow: 3.1.0 6994 6448 6995 - '@vitest/mocker@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))': 6449 + '@vitest/mocker@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))': 6996 6450 dependencies: 6997 6451 '@vitest/spy': 4.1.0 6998 6452 estree-walker: 3.0.3 6999 6453 magic-string: 0.30.21 7000 6454 optionalDependencies: 7001 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1) 7002 - 7003 - '@vitest/mocker@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))': 7004 - dependencies: 7005 - '@vitest/spy': 4.1.0 7006 - estree-walker: 3.0.3 7007 - magic-string: 0.30.21 7008 - optionalDependencies: 7009 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 6455 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 7010 6456 7011 6457 '@vitest/pretty-format@3.2.4': 7012 6458 dependencies: ··· 7043 6489 sirv: 3.0.2 7044 6490 tinyglobby: 0.2.15 7045 6491 tinyrainbow: 3.1.0 7046 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6492 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 7047 6493 7048 6494 '@vitest/utils@3.2.4': 7049 6495 dependencies: ··· 7057 6503 convert-source-map: 2.0.0 7058 6504 tinyrainbow: 3.1.0 7059 6505 6506 + '@vue/compiler-core@3.5.30': 6507 + dependencies: 6508 + '@babel/parser': 7.29.2 6509 + '@vue/shared': 3.5.30 6510 + entities: 7.0.1 6511 + estree-walker: 2.0.2 6512 + source-map-js: 1.2.1 6513 + optional: true 6514 + 6515 + '@vue/compiler-dom@3.5.30': 6516 + dependencies: 6517 + '@vue/compiler-core': 3.5.30 6518 + '@vue/shared': 3.5.30 6519 + optional: true 6520 + 6521 + '@vue/compiler-sfc@3.5.30': 6522 + dependencies: 6523 + '@babel/parser': 7.29.2 6524 + '@vue/compiler-core': 3.5.30 6525 + '@vue/compiler-dom': 3.5.30 6526 + '@vue/compiler-ssr': 3.5.30 6527 + '@vue/shared': 3.5.30 6528 + estree-walker: 2.0.2 6529 + magic-string: 0.30.21 6530 + postcss: 8.5.8 6531 + source-map-js: 1.2.1 6532 + optional: true 6533 + 6534 + '@vue/compiler-ssr@3.5.30': 6535 + dependencies: 6536 + '@vue/compiler-dom': 3.5.30 6537 + '@vue/shared': 3.5.30 6538 + optional: true 6539 + 6540 + '@vue/reactivity@3.5.30': 6541 + dependencies: 6542 + '@vue/shared': 3.5.30 6543 + optional: true 6544 + 6545 + '@vue/runtime-core@3.5.30': 6546 + dependencies: 6547 + '@vue/reactivity': 3.5.30 6548 + '@vue/shared': 3.5.30 6549 + optional: true 6550 + 6551 + '@vue/runtime-dom@3.5.30': 6552 + dependencies: 6553 + '@vue/reactivity': 3.5.30 6554 + '@vue/runtime-core': 3.5.30 6555 + '@vue/shared': 3.5.30 6556 + csstype: 3.2.3 6557 + optional: true 6558 + 6559 + '@vue/server-renderer@3.5.30(vue@3.5.30(typescript@5.9.3))': 6560 + dependencies: 6561 + '@vue/compiler-ssr': 3.5.30 6562 + '@vue/shared': 3.5.30 6563 + vue: 3.5.30(typescript@5.9.3) 6564 + optional: true 6565 + 6566 + '@vue/shared@3.5.30': 6567 + optional: true 6568 + 7060 6569 acorn-jsx@5.3.2(acorn@8.16.0): 7061 6570 dependencies: 7062 6571 acorn: 8.16.0 ··· 7121 6630 estree-walker: 3.0.3 7122 6631 js-tokens: 10.0.0 7123 6632 7124 - auth@1.5.4(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(better-call@1.3.2(zod@4.3.6))(drizzle-kit@0.31.9)(jose@6.2.0)(kysely@0.28.11)(mongodb@7.1.0)(mysql2@3.15.3)(nanostores@1.1.1)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.53.7)(typescript@5.9.3)(vitest@4.1.0): 6633 + auth@1.5.5(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(better-call@1.3.2(zod@4.3.6))(drizzle-kit@0.31.10)(jose@6.2.2)(kysely@0.28.13)(magicast@0.5.2)(mongodb@7.1.0)(nanostores@1.2.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.54.0)(typescript@5.9.3)(vitest@4.1.0)(vue@3.5.30(typescript@5.9.3)): 7125 6634 dependencies: 7126 6635 '@babel/core': 7.29.0 7127 6636 '@babel/preset-react': 7.28.5(@babel/core@7.29.0) 7128 6637 '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0) 7129 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 7130 - '@better-auth/telemetry': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1)) 6638 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 6639 + '@better-auth/telemetry': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0)) 7131 6640 '@better-auth/utils': 0.3.1 7132 6641 '@clack/prompts': 0.11.0 7133 6642 '@mrleebo/prisma-ast': 0.13.1 7134 - '@prisma/client': 7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3) 6643 + '@prisma/client': 7.5.0(typescript@5.9.3) 7135 6644 '@types/pg': 8.18.0 7136 - better-auth: 1.5.4(0adf6813cace490eb803683e2d420980) 7137 - c12: 3.3.3 6645 + better-auth: 1.5.5(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(drizzle-kit@0.31.10)(drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0))(mongodb@7.1.0)(pg@8.20.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.54.0)(vitest@4.1.0)(vue@3.5.30(typescript@5.9.3)) 6646 + c12: 3.3.3(magicast@0.5.2) 7138 6647 chalk: 5.6.2 7139 6648 commander: 12.1.0 7140 6649 dotenv: 17.3.1 7141 - drizzle-orm: 0.41.0(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 6650 + drizzle-orm: 0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0) 6651 + get-tsconfig: 4.13.6 7142 6652 open: 10.2.0 7143 6653 pg: 8.20.0 7144 6654 prettier: 3.8.1 ··· 7194 6704 - vitest 7195 6705 - vue 7196 6706 7197 - aws-ssl-profiles@1.1.2: {} 7198 - 7199 6707 axe-core@4.11.1: {} 7200 6708 7201 6709 axobject-query@4.1.0: {} 7202 6710 7203 6711 balanced-match@4.0.4: {} 7204 6712 7205 - baseline-browser-mapping@2.10.0: {} 6713 + baseline-browser-mapping@2.10.8: {} 7206 6714 7207 - better-auth@1.5.4(0adf6813cace490eb803683e2d420980): 6715 + better-auth@1.5.5(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(drizzle-kit@0.31.10)(drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0))(mongodb@7.1.0)(pg@8.20.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.54.0)(vitest@4.1.0)(vue@3.5.30(typescript@5.9.3)): 7208 6716 dependencies: 7209 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 7210 - '@better-auth/drizzle-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))) 7211 - '@better-auth/kysely-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(kysely@0.28.11) 7212 - '@better-auth/memory-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1) 7213 - '@better-auth/mongo-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(mongodb@7.1.0) 7214 - '@better-auth/prisma-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 7215 - '@better-auth/telemetry': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1)) 6717 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 6718 + '@better-auth/drizzle-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0)) 6719 + '@better-auth/kysely-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(kysely@0.28.13) 6720 + '@better-auth/memory-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1) 6721 + '@better-auth/mongo-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(mongodb@7.1.0) 6722 + '@better-auth/prisma-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(@prisma/client@7.5.0(typescript@5.9.3)) 6723 + '@better-auth/telemetry': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0)) 7216 6724 '@better-auth/utils': 0.3.1 7217 6725 '@better-fetch/fetch': 1.1.21 7218 6726 '@noble/ciphers': 2.1.1 7219 6727 '@noble/hashes': 2.0.1 7220 6728 better-call: 1.3.2(zod@4.3.6) 7221 6729 defu: 6.1.4 7222 - jose: 6.2.0 7223 - kysely: 0.28.11 7224 - nanostores: 1.1.1 6730 + jose: 6.2.2 6731 + kysely: 0.28.13 6732 + nanostores: 1.2.0 7225 6733 zod: 4.3.6 7226 6734 optionalDependencies: 7227 - '@prisma/client': 7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3) 7228 - '@sveltejs/kit': 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 7229 - drizzle-kit: 0.31.9 7230 - drizzle-orm: 0.41.0(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 6735 + '@prisma/client': 7.5.0(typescript@5.9.3) 6736 + '@sveltejs/kit': 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6737 + drizzle-kit: 0.31.10 6738 + drizzle-orm: 0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0) 7231 6739 mongodb: 7.1.0 7232 - mysql2: 3.15.3 7233 6740 pg: 8.20.0 7234 - prisma: 7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) 7235 6741 react: 19.2.4 7236 6742 react-dom: 19.2.4(react@19.2.4) 7237 - svelte: 5.53.7 7238 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6743 + svelte: 5.54.0 6744 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6745 + vue: 3.5.30(typescript@5.9.3) 7239 6746 transitivePeerDependencies: 7240 6747 - '@cloudflare/workers-types' 7241 6748 7242 - better-auth@1.5.4(0b23cafb484f1c43f492f8eac2c7dca0): 6749 + better-auth@1.5.5(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(drizzle-kit@0.31.10)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0))(mongodb@7.1.0)(pg@8.20.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.54.0)(vitest@4.1.0)(vue@3.5.30(typescript@5.9.3)): 7243 6750 dependencies: 7244 - '@better-auth/core': 1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1) 7245 - '@better-auth/drizzle-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))) 7246 - '@better-auth/kysely-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(kysely@0.28.11) 7247 - '@better-auth/memory-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1) 7248 - '@better-auth/mongo-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(mongodb@7.1.0) 7249 - '@better-auth/prisma-adapter': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1))(@better-auth/utils@0.3.1)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 7250 - '@better-auth/telemetry': 1.5.4(@better-auth/core@1.5.4(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260306.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.0)(kysely@0.28.11)(nanostores@1.1.1)) 6751 + '@better-auth/core': 1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0) 6752 + '@better-auth/drizzle-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0)) 6753 + '@better-auth/kysely-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(kysely@0.28.13) 6754 + '@better-auth/memory-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1) 6755 + '@better-auth/mongo-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(mongodb@7.1.0) 6756 + '@better-auth/prisma-adapter': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0))(@better-auth/utils@0.3.1)(@prisma/client@7.5.0(typescript@5.9.3)) 6757 + '@better-auth/telemetry': 1.5.5(@better-auth/core@1.5.5(@better-auth/utils@0.3.1)(@better-fetch/fetch@1.1.21)(@cloudflare/workers-types@4.20260317.1)(better-call@1.3.2(zod@4.3.6))(jose@6.2.2)(kysely@0.28.13)(nanostores@1.2.0)) 7251 6758 '@better-auth/utils': 0.3.1 7252 6759 '@better-fetch/fetch': 1.1.21 7253 6760 '@noble/ciphers': 2.1.1 7254 6761 '@noble/hashes': 2.0.1 7255 6762 better-call: 1.3.2(zod@4.3.6) 7256 6763 defu: 6.1.4 7257 - jose: 6.2.0 7258 - kysely: 0.28.11 7259 - nanostores: 1.1.1 6764 + jose: 6.2.2 6765 + kysely: 0.28.13 6766 + nanostores: 1.2.0 7260 6767 zod: 4.3.6 7261 6768 optionalDependencies: 7262 - '@prisma/client': 7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3) 7263 - '@sveltejs/kit': 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 7264 - drizzle-kit: 0.31.9 7265 - drizzle-orm: 0.45.1(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)) 6769 + '@prisma/client': 7.5.0(typescript@5.9.3) 6770 + '@sveltejs/kit': 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6771 + drizzle-kit: 0.31.10 6772 + drizzle-orm: 0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0) 7266 6773 mongodb: 7.1.0 7267 - mysql2: 3.15.3 7268 6774 pg: 8.20.0 7269 - prisma: 7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) 7270 6775 react: 19.2.4 7271 6776 react-dom: 19.2.4(react@19.2.4) 7272 - svelte: 5.53.7 7273 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 6777 + svelte: 5.54.0 6778 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 6779 + vue: 3.5.30(typescript@5.9.3) 7274 6780 transitivePeerDependencies: 7275 6781 - '@cloudflare/workers-types' 7276 6782 ··· 7285 6791 7286 6792 birpc@4.0.0: {} 7287 6793 7288 - bits-ui@2.16.3(@internationalized/date@3.12.0)(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7): 6794 + bits-ui@2.16.3(@internationalized/date@3.12.0)(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0): 7289 6795 dependencies: 7290 6796 '@floating-ui/core': 1.7.5 7291 6797 '@floating-ui/dom': 1.7.6 7292 6798 '@internationalized/date': 3.12.0 7293 6799 esm-env: 1.2.2 7294 - runed: 0.35.1(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7) 7295 - svelte: 5.53.7 7296 - svelte-toolbelt: 0.10.6(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7) 6800 + runed: 0.35.1(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0) 6801 + svelte: 5.54.0 6802 + svelte-toolbelt: 0.10.6(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0) 7297 6803 tabbable: 6.4.0 7298 6804 transitivePeerDependencies: 7299 6805 - '@sveltejs/kit' ··· 7306 6812 7307 6813 browserslist@4.28.1: 7308 6814 dependencies: 7309 - baseline-browser-mapping: 2.10.0 7310 - caniuse-lite: 1.0.30001777 7311 - electron-to-chromium: 1.5.307 6815 + baseline-browser-mapping: 2.10.8 6816 + caniuse-lite: 1.0.30001780 6817 + electron-to-chromium: 1.5.321 7312 6818 node-releases: 2.0.36 7313 6819 update-browserslist-db: 1.2.3(browserslist@4.28.1) 7314 6820 ··· 7320 6826 dependencies: 7321 6827 run-applescript: 7.1.0 7322 6828 7323 - c12@3.1.0: 7324 - dependencies: 7325 - chokidar: 4.0.3 7326 - confbox: 0.2.4 7327 - defu: 6.1.4 7328 - dotenv: 16.6.1 7329 - exsolve: 1.0.8 7330 - giget: 2.0.0 7331 - jiti: 2.6.1 7332 - ohash: 2.0.11 7333 - pathe: 2.0.3 7334 - perfect-debounce: 1.0.0 7335 - pkg-types: 2.3.0 7336 - rc9: 2.1.2 7337 - 7338 - c12@3.3.3: 6829 + c12@3.3.3(magicast@0.5.2): 7339 6830 dependencies: 7340 6831 chokidar: 5.0.0 7341 6832 confbox: 0.2.4 ··· 7349 6840 perfect-debounce: 2.1.0 7350 6841 pkg-types: 2.3.0 7351 6842 rc9: 2.1.2 6843 + optionalDependencies: 6844 + magicast: 0.5.2 7352 6845 7353 6846 cac@7.0.0: {} 7354 6847 7355 6848 camelcase@8.0.0: 7356 6849 optional: true 7357 6850 7358 - caniuse-lite@1.0.30001777: {} 6851 + caniuse-lite@1.0.30001780: {} 7359 6852 7360 6853 chai@5.3.3: 7361 6854 dependencies: ··· 7399 6892 class-validator@0.14.4: 7400 6893 dependencies: 7401 6894 '@types/validator': 13.15.10 7402 - libphonenumber-js: 1.12.38 6895 + libphonenumber-js: 1.12.40 7403 6896 validator: 13.15.26 7404 6897 optional: true 7405 6898 ··· 7439 6932 7440 6933 csstype@3.2.3: {} 7441 6934 7442 - dayjs@1.11.19: 6935 + dayjs@1.11.20: 7443 6936 optional: true 7444 6937 7445 6938 debug@4.4.3: ··· 7454 6947 7455 6948 deep-is@0.1.4: {} 7456 6949 7457 - deepmerge-ts@7.1.5: {} 6950 + deep-rename-keys@0.2.1: 6951 + dependencies: 6952 + kind-of: 3.2.2 6953 + rename-keys: 1.2.0 7458 6954 7459 6955 deepmerge@4.3.1: {} 7460 6956 ··· 7469 6965 7470 6966 defu@6.1.4: {} 7471 6967 7472 - denque@2.1.0: {} 7473 - 7474 6968 dequal@2.0.3: {} 7475 6969 7476 6970 destr@2.0.5: {} 7477 6971 7478 6972 detect-libc@2.1.2: {} 7479 6973 7480 - devalue@5.6.3: {} 6974 + devalue@5.6.4: {} 7481 6975 7482 6976 dlv@1.1.3: 7483 6977 optional: true ··· 7486 6980 7487 6981 dom-accessibility-api@0.6.3: {} 7488 6982 7489 - dotenv@16.6.1: {} 7490 - 7491 6983 dotenv@17.3.1: {} 7492 6984 7493 - drizzle-kit@0.31.9: 6985 + drizzle-kit@0.31.10: 7494 6986 dependencies: 7495 6987 '@drizzle-team/brocli': 0.10.2 7496 6988 '@esbuild-kit/esm-loader': 2.6.5 7497 6989 esbuild: 0.25.12 7498 - esbuild-register: 3.6.0(esbuild@0.25.12) 7499 - transitivePeerDependencies: 7500 - - supports-color 6990 + tsx: 4.21.0 7501 6991 7502 - drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)): 6992 + drizzle-orm@0.41.0(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0): 7503 6993 optionalDependencies: 7504 - '@cloudflare/workers-types': 4.20260306.1 7505 - '@electric-sql/pglite': 0.3.15 7506 - '@prisma/client': 7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3) 6994 + '@cloudflare/workers-types': 4.20260317.1 6995 + '@prisma/client': 7.5.0(typescript@5.9.3) 7507 6996 '@types/pg': 8.18.0 7508 - kysely: 0.28.11 7509 - mysql2: 3.15.3 6997 + kysely: 0.28.13 7510 6998 pg: 8.20.0 7511 - postgres: 3.4.7 7512 - prisma: 7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) 7513 6999 7514 - drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260306.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.11)(mysql2@3.15.3)(pg@8.20.0)(postgres@3.4.7)(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)): 7000 + drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@prisma/client@7.5.0(typescript@5.9.3))(@types/pg@8.18.0)(kysely@0.28.13)(pg@8.20.0): 7515 7001 optionalDependencies: 7516 - '@cloudflare/workers-types': 4.20260306.1 7517 - '@electric-sql/pglite': 0.3.15 7518 - '@prisma/client': 7.4.2(prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(typescript@5.9.3) 7002 + '@cloudflare/workers-types': 4.20260317.1 7003 + '@prisma/client': 7.5.0(typescript@5.9.3) 7519 7004 '@types/pg': 8.18.0 7520 - kysely: 0.28.11 7521 - mysql2: 3.15.3 7005 + kysely: 0.28.13 7522 7006 pg: 8.20.0 7523 - postgres: 3.4.7 7524 - prisma: 7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) 7525 7007 7526 7008 dts-resolver@2.1.3: {} 7527 7009 7528 - effect@3.18.4: 7529 - dependencies: 7530 - '@standard-schema/spec': 1.1.0 7531 - fast-check: 3.23.2 7532 - 7533 - effect@3.19.19: 7010 + effect@3.20.0: 7534 7011 dependencies: 7535 7012 '@standard-schema/spec': 1.1.0 7536 7013 fast-check: 3.23.2 7537 7014 optional: true 7538 7015 7539 - electron-to-chromium@1.5.307: {} 7016 + electron-to-chromium@1.5.321: {} 7540 7017 7541 7018 empathic@2.0.0: {} 7542 7019 7543 - enhanced-resolve@5.20.0: 7020 + enhanced-resolve@5.20.1: 7544 7021 dependencies: 7545 7022 graceful-fs: 4.2.11 7546 7023 tapable: 2.3.0 7024 + 7025 + entities@7.0.1: 7026 + optional: true 7547 7027 7548 7028 error-stack-parser-es@1.0.5: {} 7549 7029 ··· 7551 7031 7552 7032 es-toolkit@1.45.1: {} 7553 7033 7554 - esbuild-register@3.6.0(esbuild@0.25.12): 7555 - dependencies: 7556 - debug: 4.4.3 7557 - esbuild: 0.25.12 7558 - transitivePeerDependencies: 7559 - - supports-color 7560 - 7561 7034 esbuild@0.18.20: 7562 7035 optionalDependencies: 7563 7036 '@esbuild/android-arm': 0.18.20 ··· 7674 7147 7675 7148 escape-string-regexp@4.0.0: {} 7676 7149 7677 - eslint-plugin-svelte@3.15.2(eslint@10.0.2(jiti@2.6.1))(svelte@5.53.7): 7150 + eslint-plugin-svelte@3.15.2(eslint@10.0.3(jiti@2.6.1))(svelte@5.54.0): 7678 7151 dependencies: 7679 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.2(jiti@2.6.1)) 7152 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1)) 7680 7153 '@jridgewell/sourcemap-codec': 1.5.5 7681 - eslint: 10.0.2(jiti@2.6.1) 7154 + eslint: 10.0.3(jiti@2.6.1) 7682 7155 esutils: 2.0.3 7683 7156 globals: 16.5.0 7684 7157 known-css-properties: 0.37.0 ··· 7686 7159 postcss-load-config: 3.1.4(postcss@8.5.8) 7687 7160 postcss-safe-parser: 7.0.1(postcss@8.5.8) 7688 7161 semver: 7.7.4 7689 - svelte-eslint-parser: 1.6.0(svelte@5.53.7) 7162 + svelte-eslint-parser: 1.6.0(svelte@5.54.0) 7690 7163 optionalDependencies: 7691 - svelte: 5.53.7 7164 + svelte: 5.54.0 7692 7165 transitivePeerDependencies: 7693 7166 - ts-node 7694 7167 ··· 7710 7183 7711 7184 eslint-visitor-keys@5.0.1: {} 7712 7185 7713 - eslint@10.0.2(jiti@2.6.1): 7186 + eslint@10.0.3(jiti@2.6.1): 7714 7187 dependencies: 7715 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.2(jiti@2.6.1)) 7188 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1)) 7716 7189 '@eslint-community/regexpp': 4.12.2 7717 7190 '@eslint/config-array': 0.23.3 7718 7191 '@eslint/config-helpers': 0.5.3 ··· 7776 7249 dependencies: 7777 7250 '@jridgewell/sourcemap-codec': 1.5.5 7778 7251 7779 - esrap@2.2.3: 7252 + esrap@2.2.4: 7780 7253 dependencies: 7781 7254 '@jridgewell/sourcemap-codec': 1.5.5 7255 + '@typescript-eslint/types': 8.57.1 7782 7256 7783 7257 esrecurse@4.3.0: 7784 7258 dependencies: ··· 7786 7260 7787 7261 estraverse@5.3.0: {} 7788 7262 7263 + estree-walker@2.0.2: 7264 + optional: true 7265 + 7789 7266 estree-walker@3.0.3: 7790 7267 dependencies: 7791 7268 '@types/estree': 1.0.8 7792 7269 7793 7270 esutils@2.0.3: {} 7794 7271 7272 + eventemitter3@2.0.3: {} 7273 + 7795 7274 expect-type@1.3.0: {} 7796 7275 7797 7276 exsolve@1.0.8: {} ··· 7799 7278 fast-check@3.23.2: 7800 7279 dependencies: 7801 7280 pure-rand: 6.1.0 7281 + optional: true 7802 7282 7803 7283 fast-deep-equal@3.1.3: {} 7804 7284 ··· 7827 7307 7828 7308 flat-cache@4.0.1: 7829 7309 dependencies: 7830 - flatted: 3.4.1 7310 + flatted: 3.4.2 7831 7311 keyv: 4.5.4 7832 7312 7833 7313 flatted@3.4.0: {} 7834 7314 7835 - flatted@3.4.1: {} 7836 - 7837 - foreground-child@3.3.1: 7838 - dependencies: 7839 - cross-spawn: 7.0.6 7840 - signal-exit: 4.1.0 7315 + flatted@3.4.2: {} 7841 7316 7842 7317 fsevents@2.3.2: 7843 7318 optional: true 7844 7319 7845 7320 fsevents@2.3.3: 7846 7321 optional: true 7847 - 7848 - generate-function@2.3.1: 7849 - dependencies: 7850 - is-property: 1.0.2 7851 7322 7852 7323 gensync@1.0.0-beta.2: {} 7853 7324 ··· 7874 7345 7875 7346 graceful-fs@4.2.11: {} 7876 7347 7877 - grammex@3.1.12: {} 7878 - 7879 - graphmatch@1.1.1: {} 7880 - 7881 - h3@1.15.6: 7348 + h3@1.15.8: 7882 7349 dependencies: 7883 7350 cookie-es: 1.2.2 7884 7351 crossws: 0.3.5 ··· 7892 7359 7893 7360 has-flag@4.0.0: {} 7894 7361 7895 - hono@4.11.4: {} 7896 - 7897 - hookable@6.0.1: {} 7362 + hookable@6.1.0: {} 7898 7363 7899 7364 html-escaper@2.0.2: {} 7900 7365 7901 - http-status-codes@2.3.0: {} 7902 - 7903 - iconv-lite@0.7.2: 7904 - dependencies: 7905 - safer-buffer: 2.1.2 7906 - 7907 7366 ignore@5.3.2: {} 7908 7367 7909 7368 import-without-cache@0.2.5: {} ··· 7915 7374 inline-style-parser@0.2.7: {} 7916 7375 7917 7376 iron-webcrypto@1.2.1: {} 7377 + 7378 + is-buffer@1.1.6: {} 7918 7379 7919 7380 is-docker@3.0.0: {} 7920 7381 ··· 7930 7391 dependencies: 7931 7392 is-docker: 3.0.0 7932 7393 7933 - is-property@1.0.2: {} 7934 - 7935 7394 is-reference@3.0.3: 7936 7395 dependencies: 7937 7396 '@types/estree': 1.0.8 ··· 7966 7425 '@sideway/pinpoint': 2.0.0 7967 7426 optional: true 7968 7427 7969 - jose@6.2.0: {} 7428 + jose@6.2.2: {} 7970 7429 7971 7430 js-tokens@10.0.0: {} 7972 7431 ··· 7982 7441 7983 7442 json-schema-to-ts@3.1.1: 7984 7443 dependencies: 7985 - '@babel/runtime': 7.28.6 7444 + '@babel/runtime': 7.29.2 7986 7445 ts-algebra: 2.0.0 7987 7446 optional: true 7988 7447 ··· 7996 7455 dependencies: 7997 7456 json-buffer: 3.0.1 7998 7457 7458 + kind-of@3.2.2: 7459 + dependencies: 7460 + is-buffer: 1.1.6 7461 + 7999 7462 kleur@3.0.3: {} 8000 7463 8001 7464 kleur@4.1.5: {} 8002 7465 8003 7466 known-css-properties@0.37.0: {} 8004 7467 8005 - kysely@0.28.11: {} 7468 + kysely@0.28.13: {} 8006 7469 8007 7470 launch-editor@2.13.1: 8008 7471 dependencies: ··· 8014 7477 prelude-ls: 1.2.1 8015 7478 type-check: 0.4.0 8016 7479 8017 - libphonenumber-js@1.12.38: 8018 - optional: true 8019 - 8020 - lightningcss-android-arm64@1.31.1: 7480 + libphonenumber-js@1.12.40: 8021 7481 optional: true 8022 7482 8023 7483 lightningcss-android-arm64@1.32.0: 8024 7484 optional: true 8025 7485 8026 - lightningcss-darwin-arm64@1.31.1: 8027 - optional: true 8028 - 8029 7486 lightningcss-darwin-arm64@1.32.0: 8030 7487 optional: true 8031 7488 8032 - lightningcss-darwin-x64@1.31.1: 8033 - optional: true 8034 - 8035 7489 lightningcss-darwin-x64@1.32.0: 8036 7490 optional: true 8037 7491 8038 - lightningcss-freebsd-x64@1.31.1: 8039 - optional: true 8040 - 8041 7492 lightningcss-freebsd-x64@1.32.0: 8042 7493 optional: true 8043 7494 8044 - lightningcss-linux-arm-gnueabihf@1.31.1: 8045 - optional: true 8046 - 8047 7495 lightningcss-linux-arm-gnueabihf@1.32.0: 8048 7496 optional: true 8049 7497 8050 - lightningcss-linux-arm64-gnu@1.31.1: 8051 - optional: true 8052 - 8053 7498 lightningcss-linux-arm64-gnu@1.32.0: 8054 7499 optional: true 8055 7500 8056 - lightningcss-linux-arm64-musl@1.31.1: 8057 - optional: true 8058 - 8059 7501 lightningcss-linux-arm64-musl@1.32.0: 8060 - optional: true 8061 - 8062 - lightningcss-linux-x64-gnu@1.31.1: 8063 7502 optional: true 8064 7503 8065 7504 lightningcss-linux-x64-gnu@1.32.0: 8066 7505 optional: true 8067 7506 8068 - lightningcss-linux-x64-musl@1.31.1: 8069 - optional: true 8070 - 8071 7507 lightningcss-linux-x64-musl@1.32.0: 8072 7508 optional: true 8073 7509 8074 - lightningcss-win32-arm64-msvc@1.31.1: 8075 - optional: true 8076 - 8077 7510 lightningcss-win32-arm64-msvc@1.32.0: 8078 7511 optional: true 8079 7512 8080 - lightningcss-win32-x64-msvc@1.31.1: 8081 - optional: true 8082 - 8083 7513 lightningcss-win32-x64-msvc@1.32.0: 8084 7514 optional: true 8085 7515 8086 - lightningcss@1.31.1: 8087 - dependencies: 8088 - detect-libc: 2.1.2 8089 - optionalDependencies: 8090 - lightningcss-android-arm64: 1.31.1 8091 - lightningcss-darwin-arm64: 1.31.1 8092 - lightningcss-darwin-x64: 1.31.1 8093 - lightningcss-freebsd-x64: 1.31.1 8094 - lightningcss-linux-arm-gnueabihf: 1.31.1 8095 - lightningcss-linux-arm64-gnu: 1.31.1 8096 - lightningcss-linux-arm64-musl: 1.31.1 8097 - lightningcss-linux-x64-gnu: 1.31.1 8098 - lightningcss-linux-x64-musl: 1.31.1 8099 - lightningcss-win32-arm64-msvc: 1.31.1 8100 - lightningcss-win32-x64-msvc: 1.31.1 8101 - 8102 7516 lightningcss@1.32.0: 8103 7517 dependencies: 8104 7518 detect-libc: 2.1.2 ··· 8125 7539 8126 7540 lodash@4.17.21: {} 8127 7541 8128 - long@5.3.2: {} 8129 - 8130 7542 lorem-ipsum@2.0.8: 8131 7543 dependencies: 8132 7544 commander: 9.5.0 8133 7545 8134 7546 loupe@3.2.1: {} 8135 7547 8136 - lru-cache@11.2.6: {} 7548 + lru-cache@11.2.7: {} 8137 7549 8138 7550 lru-cache@5.1.1: 8139 7551 dependencies: 8140 7552 yallist: 3.1.1 8141 - 8142 - lru.min@1.1.4: {} 8143 7553 8144 7554 lz-string@1.5.0: {} 8145 7555 ··· 8149 7559 8150 7560 magicast@0.5.2: 8151 7561 dependencies: 8152 - '@babel/parser': 7.29.0 7562 + '@babel/parser': 7.29.2 8153 7563 '@babel/types': 7.29.0 8154 7564 source-map-js: 1.2.1 8155 7565 ··· 8186 7596 pkg-types: 1.3.1 8187 7597 ufo: 1.6.3 8188 7598 8189 - mode-watcher@1.1.0(svelte@5.53.7): 7599 + mode-watcher@1.1.0(svelte@5.54.0): 8190 7600 dependencies: 8191 - runed: 0.25.0(svelte@5.53.7) 8192 - svelte: 5.53.7 8193 - svelte-toolbelt: 0.7.1(svelte@5.53.7) 7601 + runed: 0.25.0(svelte@5.54.0) 7602 + svelte: 5.54.0 7603 + svelte-toolbelt: 0.7.1(svelte@5.54.0) 8194 7604 8195 7605 mongodb-connection-string-url@7.0.1: 8196 7606 dependencies: ··· 8209 7619 8210 7620 ms@2.1.3: {} 8211 7621 8212 - mysql2@3.15.3: 8213 - dependencies: 8214 - aws-ssl-profiles: 1.1.2 8215 - denque: 2.1.0 8216 - generate-function: 2.3.1 8217 - iconv-lite: 0.7.2 8218 - long: 5.3.2 8219 - lru.min: 1.1.4 8220 - named-placeholders: 1.1.6 8221 - seq-queue: 0.0.5 8222 - sqlstring: 2.3.3 8223 - 8224 - named-placeholders@1.1.6: 8225 - dependencies: 8226 - lru.min: 1.1.4 8227 - 8228 7622 nanoid@3.3.11: {} 8229 7623 8230 - nanostores@1.1.1: {} 7624 + nanostores@1.2.0: {} 8231 7625 8232 7626 natural-compare@1.4.0: {} 8233 7627 ··· 8242 7636 cac: 7.0.0 8243 7637 fast-npm-meta: 1.4.2 8244 7638 get-port-please: 3.2.0 8245 - h3: 1.15.6 7639 + h3: 1.15.8 8246 7640 launch-editor: 2.13.1 8247 7641 mlly: 1.8.1 8248 7642 mrmime: 2.0.1 ··· 8289 7683 pkg-types: 2.3.0 8290 7684 publint: 0.3.18 8291 7685 semver: 7.7.4 8292 - tinyexec: 1.0.2 7686 + tinyexec: 1.0.4 8293 7687 8294 7688 node-releases@2.0.36: {} 8295 7689 ··· 8302 7696 dependencies: 8303 7697 citty: 0.2.1 8304 7698 pathe: 2.0.3 8305 - tinyexec: 1.0.2 7699 + tinyexec: 1.0.4 8306 7700 8307 7701 obug@2.1.1: {} 8308 7702 ··· 8339 7733 type-check: 0.4.0 8340 7734 word-wrap: 1.2.5 8341 7735 8342 - oxfmt@0.40.0: 7736 + oxfmt@0.41.0: 8343 7737 dependencies: 8344 7738 tinypool: 2.1.0 8345 7739 optionalDependencies: 8346 - '@oxfmt/binding-android-arm-eabi': 0.40.0 8347 - '@oxfmt/binding-android-arm64': 0.40.0 8348 - '@oxfmt/binding-darwin-arm64': 0.40.0 8349 - '@oxfmt/binding-darwin-x64': 0.40.0 8350 - '@oxfmt/binding-freebsd-x64': 0.40.0 8351 - '@oxfmt/binding-linux-arm-gnueabihf': 0.40.0 8352 - '@oxfmt/binding-linux-arm-musleabihf': 0.40.0 8353 - '@oxfmt/binding-linux-arm64-gnu': 0.40.0 8354 - '@oxfmt/binding-linux-arm64-musl': 0.40.0 8355 - '@oxfmt/binding-linux-ppc64-gnu': 0.40.0 8356 - '@oxfmt/binding-linux-riscv64-gnu': 0.40.0 8357 - '@oxfmt/binding-linux-riscv64-musl': 0.40.0 8358 - '@oxfmt/binding-linux-s390x-gnu': 0.40.0 8359 - '@oxfmt/binding-linux-x64-gnu': 0.40.0 8360 - '@oxfmt/binding-linux-x64-musl': 0.40.0 8361 - '@oxfmt/binding-openharmony-arm64': 0.40.0 8362 - '@oxfmt/binding-win32-arm64-msvc': 0.40.0 8363 - '@oxfmt/binding-win32-ia32-msvc': 0.40.0 8364 - '@oxfmt/binding-win32-x64-msvc': 0.40.0 7740 + '@oxfmt/binding-android-arm-eabi': 0.41.0 7741 + '@oxfmt/binding-android-arm64': 0.41.0 7742 + '@oxfmt/binding-darwin-arm64': 0.41.0 7743 + '@oxfmt/binding-darwin-x64': 0.41.0 7744 + '@oxfmt/binding-freebsd-x64': 0.41.0 7745 + '@oxfmt/binding-linux-arm-gnueabihf': 0.41.0 7746 + '@oxfmt/binding-linux-arm-musleabihf': 0.41.0 7747 + '@oxfmt/binding-linux-arm64-gnu': 0.41.0 7748 + '@oxfmt/binding-linux-arm64-musl': 0.41.0 7749 + '@oxfmt/binding-linux-ppc64-gnu': 0.41.0 7750 + '@oxfmt/binding-linux-riscv64-gnu': 0.41.0 7751 + '@oxfmt/binding-linux-riscv64-musl': 0.41.0 7752 + '@oxfmt/binding-linux-s390x-gnu': 0.41.0 7753 + '@oxfmt/binding-linux-x64-gnu': 0.41.0 7754 + '@oxfmt/binding-linux-x64-musl': 0.41.0 7755 + '@oxfmt/binding-openharmony-arm64': 0.41.0 7756 + '@oxfmt/binding-win32-arm64-msvc': 0.41.0 7757 + '@oxfmt/binding-win32-ia32-msvc': 0.41.0 7758 + '@oxfmt/binding-win32-x64-msvc': 0.41.0 8365 7759 8366 7760 oxlint-tsgolint@0.16.0: 8367 7761 optionalDependencies: ··· 8372 7766 '@oxlint-tsgolint/win32-arm64': 0.16.0 8373 7767 '@oxlint-tsgolint/win32-x64': 0.16.0 8374 7768 8375 - oxlint@1.55.0(oxlint-tsgolint@0.16.0): 7769 + oxlint@1.56.0(oxlint-tsgolint@0.16.0): 8376 7770 optionalDependencies: 8377 - '@oxlint/binding-android-arm-eabi': 1.55.0 8378 - '@oxlint/binding-android-arm64': 1.55.0 8379 - '@oxlint/binding-darwin-arm64': 1.55.0 8380 - '@oxlint/binding-darwin-x64': 1.55.0 8381 - '@oxlint/binding-freebsd-x64': 1.55.0 8382 - '@oxlint/binding-linux-arm-gnueabihf': 1.55.0 8383 - '@oxlint/binding-linux-arm-musleabihf': 1.55.0 8384 - '@oxlint/binding-linux-arm64-gnu': 1.55.0 8385 - '@oxlint/binding-linux-arm64-musl': 1.55.0 8386 - '@oxlint/binding-linux-ppc64-gnu': 1.55.0 8387 - '@oxlint/binding-linux-riscv64-gnu': 1.55.0 8388 - '@oxlint/binding-linux-riscv64-musl': 1.55.0 8389 - '@oxlint/binding-linux-s390x-gnu': 1.55.0 8390 - '@oxlint/binding-linux-x64-gnu': 1.55.0 8391 - '@oxlint/binding-linux-x64-musl': 1.55.0 8392 - '@oxlint/binding-openharmony-arm64': 1.55.0 8393 - '@oxlint/binding-win32-arm64-msvc': 1.55.0 8394 - '@oxlint/binding-win32-ia32-msvc': 1.55.0 8395 - '@oxlint/binding-win32-x64-msvc': 1.55.0 7771 + '@oxlint/binding-android-arm-eabi': 1.56.0 7772 + '@oxlint/binding-android-arm64': 1.56.0 7773 + '@oxlint/binding-darwin-arm64': 1.56.0 7774 + '@oxlint/binding-darwin-x64': 1.56.0 7775 + '@oxlint/binding-freebsd-x64': 1.56.0 7776 + '@oxlint/binding-linux-arm-gnueabihf': 1.56.0 7777 + '@oxlint/binding-linux-arm-musleabihf': 1.56.0 7778 + '@oxlint/binding-linux-arm64-gnu': 1.56.0 7779 + '@oxlint/binding-linux-arm64-musl': 1.56.0 7780 + '@oxlint/binding-linux-ppc64-gnu': 1.56.0 7781 + '@oxlint/binding-linux-riscv64-gnu': 1.56.0 7782 + '@oxlint/binding-linux-riscv64-musl': 1.56.0 7783 + '@oxlint/binding-linux-s390x-gnu': 1.56.0 7784 + '@oxlint/binding-linux-x64-gnu': 1.56.0 7785 + '@oxlint/binding-linux-x64-musl': 1.56.0 7786 + '@oxlint/binding-openharmony-arm64': 1.56.0 7787 + '@oxlint/binding-win32-arm64-msvc': 1.56.0 7788 + '@oxlint/binding-win32-ia32-msvc': 1.56.0 7789 + '@oxlint/binding-win32-x64-msvc': 1.56.0 8396 7790 oxlint-tsgolint: 0.16.0 8397 7791 8398 7792 p-limit@3.1.0: ··· 8418 7812 pathe@2.0.3: {} 8419 7813 8420 7814 pathval@2.0.1: {} 8421 - 8422 - perfect-debounce@1.0.0: {} 8423 7815 8424 7816 perfect-debounce@2.1.0: {} 8425 7817 ··· 8524 7916 dependencies: 8525 7917 xtend: 4.0.2 8526 7918 8527 - postgres@3.4.7: {} 8528 - 8529 7919 powershell-utils@0.1.0: {} 8530 7920 8531 7921 prelude-ls@1.2.1: {} ··· 8538 7928 ansi-styles: 5.2.0 8539 7929 react-is: 17.0.2 8540 7930 8541 - prisma@7.4.2(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3): 8542 - dependencies: 8543 - '@prisma/config': 7.4.2 8544 - '@prisma/dev': 0.20.0(typescript@5.9.3) 8545 - '@prisma/engines': 7.4.2 8546 - '@prisma/studio-core': 0.13.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 8547 - mysql2: 3.15.3 8548 - postgres: 3.4.7 8549 - optionalDependencies: 8550 - typescript: 5.9.3 8551 - transitivePeerDependencies: 8552 - - '@types/react' 8553 - - magicast 8554 - - react 8555 - - react-dom 8556 - 8557 7931 prompts@2.4.2: 8558 7932 dependencies: 8559 7933 kleur: 3.0.3 8560 7934 sisteransi: 1.0.5 8561 7935 8562 - proper-lockfile@4.1.2: 8563 - dependencies: 8564 - graceful-fs: 4.2.11 8565 - retry: 0.12.0 8566 - signal-exit: 3.0.7 8567 - 8568 7936 property-expr@2.0.6: 8569 7937 optional: true 8570 7938 ··· 8577 7945 8578 7946 punycode@2.3.1: {} 8579 7947 8580 - pure-rand@6.1.0: {} 7948 + pure-rand@6.1.0: 7949 + optional: true 8581 7950 8582 7951 quansync@1.0.0: {} 8583 7952 ··· 8618 7987 8619 7988 regexparam@3.0.0: {} 8620 7989 8621 - remeda@2.33.4: {} 7990 + rename-keys@1.2.0: {} 8622 7991 8623 - resend@6.9.3: 7992 + resend@6.9.4: 8624 7993 dependencies: 8625 7994 postal-mime: 2.7.3 8626 - svix: 1.84.1 7995 + svix: 1.86.0 8627 7996 8628 7997 resolve-pkg-maps@1.0.0: {} 8629 - 8630 - retry@0.12.0: {} 8631 7998 8632 7999 rolldown-plugin-dts@0.22.5(rolldown@1.0.0-rc.9)(typescript@5.9.3): 8633 8000 dependencies: ··· 8667 8034 '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.9 8668 8035 '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.9 8669 8036 8670 - rollup@4.59.0: 8671 - dependencies: 8672 - '@types/estree': 1.0.8 8673 - optionalDependencies: 8674 - '@rollup/rollup-android-arm-eabi': 4.59.0 8675 - '@rollup/rollup-android-arm64': 4.59.0 8676 - '@rollup/rollup-darwin-arm64': 4.59.0 8677 - '@rollup/rollup-darwin-x64': 4.59.0 8678 - '@rollup/rollup-freebsd-arm64': 4.59.0 8679 - '@rollup/rollup-freebsd-x64': 4.59.0 8680 - '@rollup/rollup-linux-arm-gnueabihf': 4.59.0 8681 - '@rollup/rollup-linux-arm-musleabihf': 4.59.0 8682 - '@rollup/rollup-linux-arm64-gnu': 4.59.0 8683 - '@rollup/rollup-linux-arm64-musl': 4.59.0 8684 - '@rollup/rollup-linux-loong64-gnu': 4.59.0 8685 - '@rollup/rollup-linux-loong64-musl': 4.59.0 8686 - '@rollup/rollup-linux-ppc64-gnu': 4.59.0 8687 - '@rollup/rollup-linux-ppc64-musl': 4.59.0 8688 - '@rollup/rollup-linux-riscv64-gnu': 4.59.0 8689 - '@rollup/rollup-linux-riscv64-musl': 4.59.0 8690 - '@rollup/rollup-linux-s390x-gnu': 4.59.0 8691 - '@rollup/rollup-linux-x64-gnu': 4.59.0 8692 - '@rollup/rollup-linux-x64-musl': 4.59.0 8693 - '@rollup/rollup-openbsd-x64': 4.59.0 8694 - '@rollup/rollup-openharmony-arm64': 4.59.0 8695 - '@rollup/rollup-win32-arm64-msvc': 4.59.0 8696 - '@rollup/rollup-win32-ia32-msvc': 4.59.0 8697 - '@rollup/rollup-win32-x64-gnu': 4.59.0 8698 - '@rollup/rollup-win32-x64-msvc': 4.59.0 8699 - fsevents: 2.3.3 8700 - optional: true 8701 - 8702 8037 rou3@0.7.12: {} 8703 8038 8704 8039 run-applescript@7.1.0: {} 8705 8040 8706 - runed@0.23.4(svelte@5.53.7): 8041 + runed@0.23.4(svelte@5.54.0): 8707 8042 dependencies: 8708 8043 esm-env: 1.2.2 8709 - svelte: 5.53.7 8044 + svelte: 5.54.0 8710 8045 8711 - runed@0.25.0(svelte@5.53.7): 8046 + runed@0.25.0(svelte@5.54.0): 8712 8047 dependencies: 8713 8048 esm-env: 1.2.2 8714 - svelte: 5.53.7 8049 + svelte: 5.54.0 8715 8050 8716 - runed@0.35.1(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7): 8051 + runed@0.35.1(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0): 8717 8052 dependencies: 8718 8053 dequal: 2.0.3 8719 8054 esm-env: 1.2.2 8720 8055 lz-string: 1.5.0 8721 - svelte: 5.53.7 8056 + svelte: 5.54.0 8722 8057 optionalDependencies: 8723 - '@sveltejs/kit': 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 8058 + '@sveltejs/kit': 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 8724 8059 8725 8060 sade@1.8.1: 8726 8061 dependencies: 8727 8062 mri: 1.2.0 8728 8063 8729 - safer-buffer@2.1.2: {} 8730 - 8731 8064 scheduler@0.27.0: {} 8732 8065 8733 8066 scule@1.3.0: {} ··· 8735 8068 semver@6.3.1: {} 8736 8069 8737 8070 semver@7.7.4: {} 8738 - 8739 - seq-queue@0.0.5: {} 8740 8071 8741 8072 set-cookie-parser@3.0.1: {} 8742 8073 ··· 8781 8112 8782 8113 siginfo@2.0.0: {} 8783 8114 8784 - signal-exit@3.0.7: {} 8785 - 8786 - signal-exit@4.1.0: {} 8787 - 8788 8115 sirv@3.0.2: 8789 8116 dependencies: 8790 8117 '@polka/url': 1.0.0-next.29 ··· 8807 8134 memory-pager: 1.5.0 8808 8135 8809 8136 split2@4.2.0: {} 8810 - 8811 - sqlstring@2.3.3: {} 8812 8137 8813 8138 stackback@0.0.2: {} 8814 8139 ··· 8817 8142 '@stablelib/base64': 1.0.1 8818 8143 fast-sha256: 1.3.0 8819 8144 8820 - std-env@3.10.0: {} 8821 - 8822 8145 std-env@4.0.0: {} 8823 8146 8824 - storybook@10.2.16(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4): 8825 - dependencies: 8826 - '@storybook/global': 5.0.0 8827 - '@storybook/icons': 2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) 8828 - '@testing-library/jest-dom': 6.9.1 8829 - '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) 8830 - '@vitest/expect': 3.2.4 8831 - '@vitest/spy': 3.2.4 8832 - esbuild: 0.27.3 8833 - open: 10.2.0 8834 - recast: 0.23.11 8835 - semver: 7.7.4 8836 - use-sync-external-store: 1.6.0(react@19.2.4) 8837 - ws: 8.19.0 8838 - optionalDependencies: 8839 - prettier: 3.8.1 8840 - transitivePeerDependencies: 8841 - - '@testing-library/dom' 8842 - - bufferutil 8843 - - react 8844 - - react-dom 8845 - - utf-8-validate 8846 - 8847 - storybook@10.2.19(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4): 8147 + storybook@10.3.0(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4): 8848 8148 dependencies: 8849 8149 '@storybook/global': 5.0.0 8850 8150 '@storybook/icons': 2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) ··· 8886 8186 dependencies: 8887 8187 has-flag: 4.0.0 8888 8188 8889 - svelte-ast-print@0.4.2(svelte@5.53.7): 8189 + svelte-ast-print@0.4.2(svelte@5.54.0): 8890 8190 dependencies: 8891 8191 esrap: 1.2.2 8892 - svelte: 5.53.7 8192 + svelte: 5.54.0 8893 8193 zimmerframe: 1.1.2 8894 8194 8895 - svelte-check@4.4.4(picomatch@4.0.3)(svelte@5.53.7)(typescript@5.9.3): 8195 + svelte-check@4.4.5(picomatch@4.0.3)(svelte@5.54.0)(typescript@5.9.3): 8896 8196 dependencies: 8897 8197 '@jridgewell/trace-mapping': 0.3.31 8898 8198 chokidar: 4.0.3 8899 8199 fdir: 6.5.0(picomatch@4.0.3) 8900 8200 picocolors: 1.1.1 8901 8201 sade: 1.8.1 8902 - svelte: 5.53.7 8202 + svelte: 5.54.0 8903 8203 typescript: 5.9.3 8904 8204 transitivePeerDependencies: 8905 8205 - picomatch 8906 8206 8907 - svelte-eslint-parser@1.6.0(svelte@5.53.7): 8207 + svelte-eslint-parser@1.6.0(svelte@5.54.0): 8908 8208 dependencies: 8909 8209 eslint-scope: 8.4.0 8910 8210 eslint-visitor-keys: 4.2.1 ··· 8914 8214 postcss-selector-parser: 7.1.1 8915 8215 semver: 7.7.4 8916 8216 optionalDependencies: 8917 - svelte: 5.53.7 8217 + svelte: 5.54.0 8918 8218 8919 - svelte-toolbelt@0.10.6(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7): 8219 + svelte-toolbelt@0.10.6(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0): 8920 8220 dependencies: 8921 8221 clsx: 2.1.1 8922 - runed: 0.35.1(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7) 8222 + runed: 0.35.1(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0) 8923 8223 style-to-object: 1.0.14 8924 - svelte: 5.53.7 8224 + svelte: 5.54.0 8925 8225 transitivePeerDependencies: 8926 8226 - '@sveltejs/kit' 8927 8227 8928 - svelte-toolbelt@0.7.1(svelte@5.53.7): 8228 + svelte-toolbelt@0.7.1(svelte@5.54.0): 8929 8229 dependencies: 8930 8230 clsx: 2.1.1 8931 - runed: 0.23.4(svelte@5.53.7) 8231 + runed: 0.23.4(svelte@5.54.0) 8932 8232 style-to-object: 1.0.14 8933 - svelte: 5.53.7 8233 + svelte: 5.54.0 8934 8234 8935 - svelte2tsx@0.7.51(svelte@5.53.7)(typescript@5.9.3): 8235 + svelte2tsx@0.7.52(svelte@5.54.0)(typescript@5.9.3): 8936 8236 dependencies: 8937 8237 dedent-js: 1.0.1 8938 8238 scule: 1.3.0 8939 - svelte: 5.53.7 8239 + svelte: 5.54.0 8940 8240 typescript: 5.9.3 8941 8241 8942 - svelte2tsx@0.7.52(svelte@5.53.7)(typescript@5.9.3): 8943 - dependencies: 8944 - dedent-js: 1.0.1 8945 - scule: 1.3.0 8946 - svelte: 5.53.7 8947 - typescript: 5.9.3 8948 - 8949 - svelte@5.53.7: 8242 + svelte@5.54.0: 8950 8243 dependencies: 8951 8244 '@jridgewell/remapping': 2.3.5 8952 8245 '@jridgewell/sourcemap-codec': 1.5.5 ··· 8957 8250 aria-query: 5.3.1 8958 8251 axobject-query: 4.1.0 8959 8252 clsx: 2.1.1 8960 - devalue: 5.6.3 8253 + devalue: 5.6.4 8961 8254 esm-env: 1.2.2 8962 - esrap: 2.2.3 8255 + esrap: 2.2.4 8963 8256 is-reference: 3.0.3 8964 8257 locate-character: 3.0.0 8965 8258 magic-string: 0.30.21 8966 8259 zimmerframe: 1.1.4 8967 8260 8968 - sveltekit-superforms@2.30.0(@sveltejs/kit@2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(@types/json-schema@7.0.15)(svelte@5.53.7)(typescript@5.9.3): 8261 + sveltekit-superforms@2.30.0(@sveltejs/kit@2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(@types/json-schema@7.0.15)(svelte@5.54.0)(typescript@5.9.3): 8969 8262 dependencies: 8970 - '@sveltejs/kit': 2.53.4(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.53.7)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)))(svelte@5.53.7)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 8971 - devalue: 5.6.3 8263 + '@sveltejs/kit': 2.55.0(@sveltejs/vite-plugin-svelte@7.0.0(svelte@5.54.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)))(svelte@5.54.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 8264 + devalue: 5.6.4 8972 8265 memoize-weak: 1.0.2 8973 - svelte: 5.53.7 8266 + svelte: 5.54.0 8974 8267 ts-deepmerge: 7.0.3 8975 8268 optionalDependencies: 8976 8269 '@exodus/schemasafe': 1.3.0 8977 8270 '@standard-schema/spec': 1.1.0 8978 8271 '@typeschema/class-validator': 0.3.0(@types/json-schema@7.0.15)(class-validator@0.14.4) 8979 - '@valibot/to-json-schema': 1.5.0(valibot@1.2.0(typescript@5.9.3)) 8272 + '@valibot/to-json-schema': 1.6.0(valibot@1.3.1(typescript@5.9.3)) 8980 8273 '@vinejs/vine': 3.0.1 8981 8274 arktype: 2.2.0 8982 8275 class-validator: 0.14.4 8983 - effect: 3.19.19 8276 + effect: 3.20.0 8984 8277 joi: 17.13.3 8985 8278 json-schema-to-ts: 3.1.1 8986 8279 superstruct: 2.0.2 8987 8280 typebox: 1.1.6 8988 - valibot: 1.2.0(typescript@5.9.3) 8281 + valibot: 1.3.1(typescript@5.9.3) 8989 8282 yup: 1.7.1 8990 8283 zod: 4.3.6 8991 8284 zod-v3-to-json-schema: 4.0.0(zod@4.3.6) ··· 8993 8286 - '@types/json-schema' 8994 8287 - typescript 8995 8288 8996 - svix@1.84.1: 8289 + svgson@5.3.1: 8290 + dependencies: 8291 + deep-rename-keys: 0.2.1 8292 + xml-reader: 2.4.3 8293 + 8294 + svix@1.86.0: 8997 8295 dependencies: 8998 8296 standardwebhooks: 1.0.0 8999 8297 uuid: 10.0.0 ··· 9004 8302 9005 8303 tailwind-merge@3.5.0: {} 9006 8304 9007 - tailwind-variants@3.2.2(tailwind-merge@3.5.0)(tailwindcss@0.0.0-insiders.a4be983): 8305 + tailwind-variants@3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.2): 9008 8306 dependencies: 9009 - tailwindcss: 0.0.0-insiders.a4be983 8307 + tailwindcss: 4.2.2 9010 8308 optionalDependencies: 9011 8309 tailwind-merge: 3.5.0 9012 8310 9013 - tailwind-variants@3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.1): 9014 - dependencies: 9015 - tailwindcss: 4.2.1 9016 - optionalDependencies: 9017 - tailwind-merge: 3.5.0 8311 + tailwindcss@4.2.2: {} 9018 8312 9019 - tailwindcss@0.0.0-insiders.a4be983: {} 9020 - 9021 - tailwindcss@4.2.1: {} 9022 - 9023 - tanstack-table-8-svelte-5@0.1.2(svelte@5.53.7): 8313 + tanstack-table-8-svelte-5@0.1.2(svelte@5.54.0): 9024 8314 dependencies: 9025 8315 '@tanstack/table-core': 8.21.3 9026 - svelte: 5.53.7 8316 + svelte: 5.54.0 9027 8317 9028 8318 tapable@2.3.0: {} 9029 8319 ··· 9034 8324 9035 8325 tinybench@2.9.0: {} 9036 8326 9037 - tinyexec@1.0.2: {} 8327 + tinyexec@1.0.4: {} 9038 8328 9039 8329 tinyglobby@0.2.15: 9040 8330 dependencies: ··· 9067 8357 9068 8358 ts-deepmerge@7.0.3: {} 9069 8359 9070 - tsdown@0.21.2(publint@0.3.18)(typescript@5.9.3): 8360 + tsdown@0.21.4(publint@0.3.18)(typescript@5.9.3): 9071 8361 dependencies: 9072 8362 ansis: 4.2.0 9073 8363 cac: 7.0.0 9074 8364 defu: 6.1.4 9075 8365 empathic: 2.0.0 9076 - hookable: 6.0.1 8366 + hookable: 6.1.0 9077 8367 import-without-cache: 0.2.5 9078 8368 obug: 2.1.1 9079 8369 picomatch: 4.0.3 9080 8370 rolldown: 1.0.0-rc.9 9081 8371 rolldown-plugin-dts: 0.22.5(rolldown@1.0.0-rc.9)(typescript@5.9.3) 9082 8372 semver: 7.7.4 9083 - tinyexec: 1.0.2 8373 + tinyexec: 1.0.4 9084 8374 tinyglobby: 0.2.15 9085 8375 tree-kill: 1.2.2 9086 8376 unconfig-core: 7.5.0 ··· 9097 8387 9098 8388 tslib@2.8.1: {} 9099 8389 8390 + tsx@4.21.0: 8391 + dependencies: 8392 + esbuild: 0.27.4 8393 + get-tsconfig: 4.13.6 8394 + optionalDependencies: 8395 + fsevents: 2.3.3 8396 + 9100 8397 tw-animate-css@1.4.0: {} 9101 8398 9102 8399 type-check@0.4.0: ··· 9155 8452 anymatch: 3.1.3 9156 8453 chokidar: 5.0.0 9157 8454 destr: 2.0.5 9158 - h3: 1.15.6 9159 - lru-cache: 11.2.6 8455 + h3: 1.15.8 8456 + lru-cache: 11.2.7 9160 8457 node-fetch-native: 1.6.7 9161 8458 ofetch: 1.5.1 9162 8459 ufo: 1.6.3 ··· 9179 8476 9180 8477 uuid@10.0.0: {} 9181 8478 9182 - valibot@1.2.0(typescript@5.9.3): 8479 + valibot@1.3.1(typescript@5.9.3): 9183 8480 optionalDependencies: 9184 8481 typescript: 5.9.3 8482 + optional: true 9185 8483 9186 8484 validator@13.15.26: 9187 8485 optional: true 9188 8486 9189 - vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1): 9190 - dependencies: 9191 - '@oxc-project/runtime': 0.115.0 9192 - lightningcss: 1.32.0 9193 - picomatch: 4.0.3 9194 - postcss: 8.5.8 9195 - rolldown: 1.0.0-rc.9 9196 - tinyglobby: 0.2.15 9197 - optionalDependencies: 9198 - '@types/node': 25.5.0 9199 - esbuild: 0.25.12 9200 - fsevents: 2.3.3 9201 - jiti: 2.6.1 9202 - 9203 - vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1): 8487 + vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0): 9204 8488 dependencies: 9205 8489 '@oxc-project/runtime': 0.115.0 9206 8490 lightningcss: 1.32.0 ··· 9213 8497 esbuild: 0.27.4 9214 8498 fsevents: 2.3.3 9215 8499 jiti: 2.6.1 8500 + tsx: 4.21.0 9216 8501 9217 - vitefu@1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)): 8502 + vitefu@1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)): 9218 8503 optionalDependencies: 9219 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1) 8504 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 9220 8505 9221 - vitefu@1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)): 9222 - optionalDependencies: 9223 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 9224 - 9225 - vitest-browser-svelte@2.0.2(svelte@5.53.7)(vitest@4.1.0): 8506 + vitest-browser-svelte@2.1.0(svelte@5.54.0)(vitest@4.1.0): 9226 8507 dependencies: 9227 - '@testing-library/svelte-core': 1.0.0(svelte@5.53.7) 9228 - svelte: 5.53.7 9229 - vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 8508 + '@playwright/test': 1.58.2 8509 + '@testing-library/svelte-core': 1.0.0(svelte@5.54.0) 8510 + svelte: 5.54.0 8511 + vitest: 4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 9230 8512 9231 - vitest@4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)): 8513 + vitest@4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)): 9232 8514 dependencies: 9233 8515 '@vitest/expect': 4.1.0 9234 - '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1)) 8516 + '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0)) 9235 8517 '@vitest/pretty-format': 4.1.0 9236 8518 '@vitest/runner': 4.1.0 9237 8519 '@vitest/snapshot': 4.1.0 ··· 9245 8527 picomatch: 4.0.3 9246 8528 std-env: 4.0.0 9247 8529 tinybench: 2.9.0 9248 - tinyexec: 1.0.2 8530 + tinyexec: 1.0.4 9249 8531 tinyglobby: 0.2.15 9250 8532 tinyrainbow: 3.1.0 9251 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1) 8533 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0) 9252 8534 why-is-node-running: 2.3.0 9253 8535 optionalDependencies: 9254 8536 '@types/node': 25.5.0 9255 - '@vitest/browser-playwright': 4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.25.12)(jiti@2.6.1))(vitest@4.1.0) 8537 + '@vitest/browser-playwright': 4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(tsx@4.21.0))(vitest@4.1.0) 9256 8538 '@vitest/ui': 4.1.0(vitest@4.1.0) 9257 8539 transitivePeerDependencies: 9258 8540 - msw 9259 8541 9260 - vitest@4.1.0(@types/node@25.5.0)(@vitest/browser-playwright@4.1.0)(@vitest/ui@4.1.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)): 8542 + vue@3.5.30(typescript@5.9.3): 9261 8543 dependencies: 9262 - '@vitest/expect': 4.1.0 9263 - '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)) 9264 - '@vitest/pretty-format': 4.1.0 9265 - '@vitest/runner': 4.1.0 9266 - '@vitest/snapshot': 4.1.0 9267 - '@vitest/spy': 4.1.0 9268 - '@vitest/utils': 4.1.0 9269 - es-module-lexer: 2.0.0 9270 - expect-type: 1.3.0 9271 - magic-string: 0.30.21 9272 - obug: 2.1.1 9273 - pathe: 2.0.3 9274 - picomatch: 4.0.3 9275 - std-env: 4.0.0 9276 - tinybench: 2.9.0 9277 - tinyexec: 1.0.2 9278 - tinyglobby: 0.2.15 9279 - tinyrainbow: 3.1.0 9280 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1) 9281 - why-is-node-running: 2.3.0 8544 + '@vue/compiler-dom': 3.5.30 8545 + '@vue/compiler-sfc': 3.5.30 8546 + '@vue/runtime-dom': 3.5.30 8547 + '@vue/server-renderer': 3.5.30(vue@3.5.30(typescript@5.9.3)) 8548 + '@vue/shared': 3.5.30 9282 8549 optionalDependencies: 9283 - '@types/node': 25.5.0 9284 - '@vitest/browser-playwright': 4.1.0(playwright@1.58.2)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1))(vitest@4.1.0) 9285 - '@vitest/ui': 4.1.0(vitest@4.1.0) 9286 - transitivePeerDependencies: 9287 - - msw 8550 + typescript: 5.9.3 8551 + optional: true 9288 8552 9289 8553 webidl-conversions@7.0.0: {} 9290 8554 ··· 9319 8583 mrmime: 2.0.1 9320 8584 regexparam: 3.0.0 9321 8585 9322 - wrangler@4.67.0(@cloudflare/workers-types@4.20260306.1): 8586 + wrangler@4.67.0(@cloudflare/workers-types@4.20260317.1): 9323 8587 dependencies: 9324 8588 '@cloudflare/kv-asset-handler': 0.4.2 9325 8589 '@cloudflare/unenv-preset': 2.14.0(unenv@2.0.0-rc.24)(workerd@1.20260219.0) ··· 9330 8594 unenv: 2.0.0-rc.24 9331 8595 workerd: 1.20260219.0 9332 8596 optionalDependencies: 9333 - '@cloudflare/workers-types': 4.20260306.1 8597 + '@cloudflare/workers-types': 4.20260317.1 9334 8598 fsevents: 2.3.3 9335 8599 transitivePeerDependencies: 9336 8600 - bufferutil ··· 9349 8613 is-wsl: 3.1.1 9350 8614 powershell-utils: 0.1.0 9351 8615 8616 + xml-lexer@0.2.2: 8617 + dependencies: 8618 + eventemitter3: 2.0.3 8619 + 8620 + xml-reader@2.4.3: 8621 + dependencies: 8622 + eventemitter3: 2.0.3 8623 + xml-lexer: 0.2.2 8624 + 9352 8625 xtend@4.0.2: {} 9353 8626 9354 8627 yallist@3.1.1: {} ··· 9374 8647 dependencies: 9375 8648 '@poppinss/colors': 4.1.6 9376 8649 '@poppinss/dumper': 0.6.5 9377 - '@speed-highlight/core': 1.2.14 8650 + '@speed-highlight/core': 1.2.15 9378 8651 cookie: 1.1.1 9379 8652 youch-core: 0.3.3 9380 8653 ··· 9385 8658 toposort: 2.0.2 9386 8659 type-fest: 2.19.0 9387 8660 optional: true 9388 - 9389 - zeptomatch@2.1.0: 9390 - dependencies: 9391 - grammex: 3.1.12 9392 - graphmatch: 1.1.1 9393 8661 9394 8662 zimmerframe@1.1.2: {} 9395 8663
+20 -25
pnpm-workspace.yaml
··· 2 2 - packages/** 3 3 - app 4 4 5 + allowBuilds: 6 + esbuild: true 7 + sharp: true 8 + workerd: true 9 + 5 10 catalogs: 6 11 app: 7 12 '@better-auth/drizzle-adapter': ^1.5.4 ··· 27 32 typescript: ^5.9.3 28 33 wrangler: 4.67.0 29 34 storybook: 30 - '@storybook/addon-a11y': ^10.2.19 31 - '@storybook/addon-docs': ^10.2.19 32 - '@storybook/addon-svelte-csf': ^5.0.11 33 - '@storybook/addon-themes': ^10.2.19 34 - '@storybook/addon-vitest': ^10.2.19 35 - '@storybook/svelte': ^10.2.19 36 - '@storybook/sveltekit': ^10.2.19 35 + '@storybook/addon-a11y': ^10.3.0 36 + '@storybook/addon-docs': ^10.3.0 37 + '@storybook/addon-svelte-csf': ^5.0.12 38 + '@storybook/addon-themes': ^10.3.0 39 + '@storybook/addon-vitest': ^10.3.0 40 + '@storybook/svelte': ^10.3.0 41 + '@storybook/sveltekit': ^10.3.0 37 42 chromatic: ^13.3.5 38 - storybook: ^10.2.19 43 + storybook: ^10.3.0 39 44 svelte: 40 - '@lucide/svelte': ^0.562.0 45 + '@lucide/svelte': ^0.577.0 41 46 '@sveltejs/adapter-auto': ^7.0.0 42 47 '@sveltejs/adapter-cloudflare': ^7.2.8 43 48 '@sveltejs/kit': ^2.53.4 ··· 51 56 sveltekit-superforms: ^2.30.0 52 57 vitest-browser-svelte: ^2.0.2 53 58 tailwind: 54 - '@tailwindcss/vite': 0.0.0-insiders.a4be983 59 + '@tailwindcss/vite': ^4.2.2 55 60 clsx: ^2.1.1 56 61 tailwind-merge: ^3.5.0 57 62 tailwind-variants: ^3.2.2 58 - tailwindcss: 0.0.0-insiders.a4be983 63 + tailwindcss: ^4.2.2 59 64 tw-animate-css: ^1.4.0 60 65 voidzero: 61 66 '@vitest/browser-playwright': ^4.1.0 62 67 '@vitest/coverage-v8': ^4.1.0 63 68 '@vitest/ui': ^4.1.0 64 - lightningcss: ^1.31.1 65 - oxfmt: ^0.40.0 66 - oxlint: ^1.55.0 69 + lightningcss: ^1.32.0 70 + oxfmt: ^0.41.0 71 + oxlint: ^1.56.0 67 72 oxlint-tsgolint: ^0.16.0 68 73 playwright: ^1.58.2 69 74 publint: ^0.3.18 70 - tsdown: ^0.21.2 75 + tsdown: ^0.21.4 71 76 vite: ^8.0.0 72 77 vitest: ^4.1.0 73 78 74 79 linkWorkspacePackages: deep 75 - 76 - onlyBuiltDependencies: 77 - - '@prisma/client' 78 - - '@prisma/engines' 79 - - better-sqlite3 80 - - core-js 81 - - prisma 82 - - protobufjs 83 - - sharp 84 - - workerd