repo
stringlengths 26
115
| file
stringlengths 54
212
| language
stringclasses 2
values | license
stringclasses 16
values | content
stringlengths 19
1.07M
|
---|---|---|---|---|
https://github.com/SWATEngineering/Docs | https://raw.githubusercontent.com/SWATEngineering/Docs/main/src/3_PB/SpecificaTecnica/content.typ | typst | MIT License | #import "functions.typ": glossary, team
#import "../AnalisiDeiRequisiti/content.typ": requisiti_funzionali_con_codice, requisiti_qualita_con_codice, requisiti_vincolo_con_codice
#import "@preview/cetz:0.2.0": *
#import chart
/*************************************/
/* INSERIRE SOTTO IL CONTENUTO */
/*************************************/
= Introduzione
== Scopo del documento
Il presente documento si propone come risorsa esaustiva per la comprensione degli aspetti tecnici chiave del progetto "InnovaCity".
La sua finalità primaria è fornire una descrizione dettagliata e approfondita dell'architettura implementativa del #glossary[sistema].
Nel contesto dell'#glossary[architettura], si prevede un'analisi approfondita che si estenda anche al livello di design più basso. Ciò include la definizione e la spiegazione dettagliata dei #glossary[design pattern] e degli idiomi utilizzati nel contesto del progetto.
L'obiettivo principale del presente documento è triplice: innanzitutto, motivare le scelte di sviluppo adottate; in secondo luogo, fungere da guida fondamentale per l'attività di codifica; infine, monitorare la copertura dei requisiti identificati nel documento _Analisi dei Requisiti v2.0_.
Alla luce del modello di sviluppo agile individuato dal team, la redazione del documento segue un approccio iterativo. L'adeguatezza del documento e dell'#glossary[architettura] individuata viene costantemente monitorata e modificata sulla base dei requisiti e dei feedback ricevuti da parte della Proponente.
== Scopo del prodotto
Lo scopo del prodotto è la realizzazione di un sistema di persistenza dati e successiva visualizzazione di questi, provenienti da sensori dislocati geograficamente. Tale piattaforma consentirà all'#glossary("amministratore pubblico") di acquisire una panoramica completa delle condizioni della città, facilitando così la presa di decisioni informate e tempestive riguardo alla gestione delle risorse e all'implementazione di servizi.
== Glossario
Al fine di evitare possibili ambiguità relative al linguaggio utilizzato nei documenti, viene fornito il _Glossario v2.0_, nel quale sono presenti tutte le definizioni di termini aventi uno specifico significato che vuole essere disambiguato. Tali termini, sono scritti in corsivo e marcati con una G a pedice.
== Riferimenti
=== Riferimenti normativi
- Capitolato C6 - InnovaCity: Smart city monitoring platform:
#link("https://www.math.unipd.it/~tullio/IS-1/2023/Progetto/C6.pdf") (21/03/2024) \
#link("https://www.math.unipd.it/~tullio/IS-1/2023/Progetto/C6p.pdf") (20/02/2024)
- _Norme di Progetto v2.0_
- _Analisi dei Requisiti v2.0_
- Regolamento progetto didattico:
#link("https://www.math.unipd.it/~tullio/IS-1/2023/Dispense/PD2.pdf") (20/02/2024)
=== Riferimenti informativi
- <NAME>., <NAME>., <NAME>., & <NAME>. (1994). *Design Patterns: Elements of Reusable Object-Oriented Software.* Addison-Wesley.
/*in caso aggiungere qualche riferimento sui dataflow diagram*/
- Diagrammi delle classi (UML) - corso di Ingegneria del Software a.a. 2023/2024: \
#link("https://www.math.unipd.it/~rcardin/swea/2023/Diagrammi%20delle%20Classi.pdf") (4/03/2024) \
- Diagrammi di Sequenza (UML) - corso di Ingegneria del Software a.a. 2023/2024: \
#link("https://www.math.unipd.it/~rcardin/swea/2022/Diagrammi%20di%20Sequenza.pdf") (20/02/2024) \ /*se non li mettiamo si possono anche togliere*/
- Progettazione - corso di Ingegneria del Software a.a. 2023/2024: \
#link("https://www.math.unipd.it/~tullio/IS-1/2023/Dispense/T6.pdf") (21/03/2024) \
- Architetture #[#sym.kappa] & #[#sym.lambda]:
- #link("https://imply.io/blog/building-event-analytics-pipeline-with-confluent-cloud-and-imply-real-time-database-polaris/") (28/02/2024)
- #link("https://medium.com/sysco-labs/real-time-sales-analytics-using-kappa-architecture-852dc84bfe7b") (28/02/2024)
=== Riferimenti tecnici
- *#glossary[Python]*: #link("https://docs.python.org/3/"); (4/03/2024)
- *#glossary[Grafana]*: #link("https://grafana.com/docs/grafana/latest/"); (21/03/2024)
- *Apache #glossary[Kafka]*: #link("https://kafka.apache.org/20/documentation.html"); (4/03/2024)
- *#glossary[Clickhouse]*: #link("https://clickhouse.com/docs"); (4/03/2024)
- *Confluent Kafka*:#link("https://docs.confluent.io/kafka-clients/python/current/overview.html"); (20/02/2024)
- *Docker*: #link("https://docs.docker.com/"); (4/03/2024)
#pagebreak()
= Tecnologie
Questa sezione si propone di offrire una panoramica sintetica delle tecnologie adottate. Questo breve paragrafo introduttivo fornisce un quadro generale delle piattaforme, dei linguaggi di programmazione, dei #glossary[framework] e di altre risorse tecnologiche che costituiscono le basi del nostro progetto.
== Linguaggi e formati dati
#set par(
justify: false,
)
#figure(
table(
columns:(auto,auto,110pt,auto),
align: (x, y) => (center, center, center,center).at(x),
fill:(_,row) => if row==0 {luma(150)} else if calc.odd(row) { luma(220)} else {white},
[*Tecnologia*],[*Descrizione*],[*Uso*],[*Versione/Standard*],
[#glossary[Python]], [Linguaggio di programmazione ad alto livello, interpretato, multi paradigma.],[Creazione dei simulatori di dati.], [3.11],
[SQL], [Linguaggio standard per la gestione e la manipolazione dei database che lo supportano.],[Gestione e manipolazione del database #glossary[ClickHouse].], [ANSI SQL],
[YAML], [Formato di serializzazione dei dati leggibile dall'uomo comunemente utilizzato per la configurazione dei servizi e lo scambio di dati tra programmi.],[Configurazione di #glossary[Docker Compose].], [1.2.2],
[#glossary[JSON]], [Formato leggero per lo scambio di dati, facile da leggere e scrivere per gli esseri umani e facile da analizzare e generare per le macchine.],[Configurazione dei simulatori di dati, formato dei messaggi spediti dai simulatori al #glossary[broker] dati, configurazione delle dashboard #glossary[Grafana].], [2020-12]),
caption: [Tabella tecnologie per la Codifica: Linguaggi e formati dati.])
#set par(
justify: true,
)
== #glossary[Framework] e librerie
#figure(
table(
columns:(70pt,auto,110pt,auto),
align: (x, y) => (center, center, center, center).at(x),
fill:(_,row) => if row==0 {luma(150)} else if calc.odd(row) { luma(220)} else {white},
[*Tecnologia*],[*Descrizione*],[*Uso*],[*Versione*],
[Confluent Kafka], [Libreria #glossary[Python] progettata per agevolare la produzione e il consumo di messaggi all'interno di un ambiente _Apache_ #glossary[Kafka]. Questa libreria fornisce agli sviluppatori gli strumenti necessari per interagire con efficacia con #glossary[Kafka], consentendo loro di scrivere codice #glossary[Python] per inviare e ricevere messaggi tramite il sistema di messaggistica distribuita di #glossary[Kafka]. Grazie a Confluent Kafka, è possibile implementare in modo efficiente la comunicazione asincrona e la gestione dei flussi di dati all'interno delle applicazioni #glossary[Python], sfruttando le potenzialità di _Apache_ #glossary[Kafka] per garantire scalabilità, affidabilità e prestazioni ottimali.], [Interfaccia del codice #glossary[Python] dei simulatori con il message #glossary[broker] #glossary[Kafka].], [1.9],
),
caption: [Tabella tecnologie per la Codifica: #glossary[Framework] e librerie])
#pagebreak()
== Servizi della pipeline
#figure(
table(
columns:(70pt,auto, 110pt,60pt),
align: (x, y) => (center, center, center, center).at(x),
fill:(_,row) => if row==0 {luma(150)} else if calc.odd(row) { luma(220)} else {white},
[*Tecnologia*],[*Descrizione*],[*Uso*],[*Versione*],
[#glossary[Clickhouse]], [Sistema di gestione dei database (DBMS) colonnari, progettato per l'analisi dei dati in tempo reale. È ottimizzato nei casi d'uso OLAP per eseguire query analitiche su grandi volumi di dati in modo efficiente.], [Archiviazione e estrazione di dati aggregati.], [172.16.58.3],
[ClickHouse Kafka Table Engine], [Motore di archiviazione di #glossary[ClickHouse] che consente di leggere i dati da un server #glossary[Kafka] e di archiviarli in tabelle di #glossary[ClickHouse].], [Svolge il ruolo di consumatore per #glossary[Kafka] per il recupero e l'archiviazione dei dati.], [172.16.58.3],
[_Apache_ #glossary[Kafka]], [Piattaforma di streaming di dati distribuita e scalabile, progettata per la gestione di flussi di dati in tempo reale. È ampiamente utilizzato per l'elaborazione di eventi, la messaggistica asincrona e la creazione di pipeline dati #glossary[real-time].], [Riceve in modo asincrono i dati provenienti dai simulatori in formato #glossary[JSON] e li rende disponibili ai suoi consumatori.], [3.7.0],
[#glossary[Grafana]], [Piattaforma open source per il monitoraggio e l'analisi dei dati. Fornisce strumenti per la visualizzazione di metriche e log, la creazione di #glossary[dashboard] interattive e la generazione di avvisi in tempo reale.], [Visualizzazione sottoforma di #glossary[dashboard] e analisi dei dati recuperati dal database.],[10.3],
[Grafana ClickHouse Data Source], [Plugin per #glossary[Grafana] che consente di interrogare e visualizzare i dati di #glossary[ClickHouse] in #glossary[Grafana].], [Interrogazione al database di Clickhouse per la visualizzazione dei dati in #glossary[Grafana].], [4.0.3],
[Docker], [Piattaforma open-source che permette di creare, distribuire e gestire applicazioni in contenitori virtuali.],[Creare in modo riproducibile ambienti software per i simulatori, #glossary[ClickHouse], #glossary[Kafka] e #glossary[Grafana].], [25.0.3],
[#glossary[Docker Compose]], [Strumento per definire e gestire applicazioni multi-container Docker attraverso file YAML.],[Gestione automatica e centralizzata dei container che costituiscono il #glossary[sistema].], [2.24.6]
),
caption: [Tabella tecnologie per la Codifica: Servizi della pipeline.])
#pagebreak()
== Analisi e test
#figure(
table(
columns:(70pt,auto, 110pt, auto),
align: (x, y) => (center, center, center, center).at(x),
fill:(_,row) => if row==0 {luma(150)} else if calc.odd(row) { luma(220)} else {white},
[*Tecnologia*],[*Descrizione*],[*Uso*],[*Versione*],
[PEP8], [Stile di codifica per il codice #glossary[Python] che definisce le linee guida per la formattazione del codice, rendendolo più leggibile e uniforme.],[Miglioramento stilistico del codice.], [1.7.1],
[Pylint], [Strumento di analisi statica del codice #glossary[Python]. Attraverso la scansione del codice, identifica potenziali errori, incongruenze stilistiche e altre possibili problematiche; aiuta a garantire la correttezza, la leggibilità e la manutenibilità del codice.],[Analisi statica.], [3.1.0],
[Pytest], [Framework di test progettato per #glossary[Python], noto per la sua flessibilità e semplicità d'uso. Offre agli sviluppatori un ambiente intuitivo per scrivere e eseguire test per verificare la correttezza e l'affidabilità del codice. Con Pytest è possibile effettuare una vasta gamma di test, tra cui test di unità, integrazione e accettazione, garantendo una copertura completa dei casi di test.],[Test di unità e test di integrazione], [8.1.1]
),
caption: [Tabella tecnologie per l'analisi del codice.])
#pagebreak()
= #glossary[Architettura] del #glossary[sistema]
== Modello architetturale
Il #glossary[sistema] richiede la capacità di processare dati provenienti da varie fonti, in tempo reale, e di offrire una visualizzazione immediata e continua di tali dati, consentendo di monitorarne gli andamenti.
Per questo tipo di scopo le due architetture consigliate sono la:
- *#[#sym.lambda]-architecture*: che prevede di elaborare i dati in due flussi separati, uno per i dati in tempo reale (streaming) e uno per i dati storici. I dati in tempo reale vengono elaborati immediatamente per fornire risposte rapide, mentre i dati storici vengono elaborati in batch per fornire risposte più complete o elaborate nel tempo. Alla fine, i risultati dei due flussi vengono combinati per fornire una visione completa dei dati;
- *Vantaggi*: permette di elaborare i dati in tempo reale e batch, è fault tolerant e consistente tra i due flussi;
- *Svantaggi*: complessità di gestione del #glossary[sistema], logica di computazione duplicata e complessità di manutenzione;
- *#[#sym.kappa]-architecture*: semplifica la struttura della #[#sym.lambda]-architecture, rimuovendo il flusso di batch, lasciando solamente quello di stream. Tutti i dati vengono quindi elaborati in tempo reale utilizzando un sistema di elaborazione dei dati in streaming. Questo fa si che i dati vengono elaborati una sola volta, riducendo la complessità complessiva del #glossary[sistema]\;
- *Vantaggi*: riduzione della complessità del #glossary[sistema], logica di computazione non duplicata e complessità di manutenzione ridotta, inoltre permette una bassa latenza e scala facilmente con il volume dei dati;
- *Svantaggi*: non adatto per tutti i casi d'uso, in quanto non permette di elaborare i dati in batch.
Per quanto appena descritto, la #[#sym.kappa]-architecture è la soluzione più adatta, in quanto specifica per il nostro caso d'uso. I vantaggi dati dalla #[#sym.lambda]-architecture non risultano utili per i nostri fini; Risulta invece vantaggioso avere un'unica pipeline di elaborazione dei dati in streaming.
Si ha appunto bisogno di lavorare con dati in tempo reale, evitando di gestire la lavorazione dei dati in due posti diversi con diverse tecnologie, che porterebbe ad una complessità di manutenzione maggiore, logica di computazione duplicata e complessità di gestione del #glossary[sistema] in generale.
Possiamo quindi compartimentalizzare le varie componenti del sistema in questo modo:
#figure(
image("Schema Componenti Sistema.png"),
caption: "Schema delle componenti del sistema."
)
- *Data source*: le sorgenti dati sono i sensori IoT sparsi nella città, capaci di inviare messaggi contenenti misurazioni, ad intervalli regolari, mediante protocollo #glossary("Kafka"), allo streaming layer;
- *Streaming layer*: lo streaming layer si occupa di gestire i dati in arrivo in tempo reale, per andarli sistematicamente a persistere nello storage layer. Questo layer è composto da:
- *Apache Kafka*: che svolgerà il ruolo di #glossary[broker] dati;
- *ClickHouse Kafka table engine*: che svolgerà il ruolo di consumatore, al fine di leggere i dati dal server #glossary[Kafka] per poi persisterli nello storage layer.
- *Storage layer*: si occupa della persistenza dei dati e, grazie alle funzionalità OLAP offerte dal database #glossary[ClickHouse], di effettuare analisi in tempo reale;
- *Visualization Layer*: composto unicamente da #glossary[Grafana], questo layer si occupa di visualizzare i dati elaborati, in tempo reale.
== Diagramma del flusso di dati (#glossary[data flow diagram])
Per illustrare il funzionamento del #glossary[sistema], abbiamo utilizzato un diagramma di flusso dei dati. Questo diagramma ha permesso di rappresentare in modo chiaro e intuitivo il percorso dei dati attraverso il #glossary[sistema] e le relative elaborazioni su di essi. Abbiamo quindi identificato le diverse entità coinvolte nel processo e le relazioni tra di esse, fornendo una panoramica dettagliata di come i dati vengono acquisiti, elaborati, archiviati e visualizzati.
#figure(
image("DFDDiagram1.jpg",width: 120%),
caption: "Diagramma data flow relativo al percorso dei dati."
)
- *Generazione dei dati*: una varietà di simulatori di sensori di dati ambientali e urbanistici (entità esterne) sono utilizzati per misurare una vasta gamma di parametri. Questi simulatori forniscono dati, in modalità continua, relativi a:
+ Temperatura;
+ Umidità;
+ Vento;
+ Precipitazioni atmosferiche;
+ Inquinamento atmosferico;
+ Livello dei bacini idrici;
+ Disponibilità di parcheggi;
+ Erogazione delle colonne di ricarica;
+ Riempimento delle zone ecologiche;
+ Livelli di congestione stradale;
+ Batteria delle biciclette elettriche.
- *Invio al #glossary[broker] dei dati*: i dati generati dai sensori vengono inviati al #glossary[broker] dati, in questo contesto #glossary[Kafka]. Quest'ultimo offre un meccanismo di messaggistica distribuita in grado di gestire grandi volumi di dati in tempo reale;
- *Engine interno (archiviatore)*: l'archiviatore, rappresentato dal motore interno "Kafka" di #glossary[ClickHouse], agisce direttamente come consumatore dei dati provenienti dal #glossary[broker] dati. Questo avviene tramite la connessione a specifici #glossary[topic] in #glossary[Kafka], ognuno associato a un tipo di #glossary[sensore] distinto. Successivamente, i dati corrispondenti vengono archiviati nelle rispettive tabelle del database;
- *Aggregazione*: i dati corrispondenti a temperatura, umidità, precipitazioni, inquinamento atmosferico e livello dei bacini idrici vengono aggregati in tabelle apposite attraverso l'utilizzo di #glossary[materialized views]. Per ognuno dei tipi di dato citati sopra, vengono aggregati i dati per determinati intervalli di tempo in modo da poter inserire le medie calcolate in tabelle apposite in modo efficiente. Vengono effettuate due aggregazioni distinte per ogni tipo di dato di interesse:
- Aggregazione per intervalli di 1 minuto; viene utilizzata per mostrare l'andamento in media aritmetica del singolo #glossary[sensore] di un determinato tipo, utilizzando un intervallo di tempo sufficientemente piccolo per poter analizzare i dati in tempo reale;
- Aggregazione per intervalli di 5 minuti; viene utilizzata per mostrare l'andamento in media aritmetica di tutti i sensori di un determinato tipo, utilizzando un intervallo di tempo sufficientemente ampio per poter individuare facilmente eventuali trend dei dati;
- *Interrogazioni (query)*: vengono effettuate varie interrogazioni e analisi sui dati memorizzati all'interno delle tabelle;
- *Dashboard*: l'#glossary[amministratore pubblico] visualizza i dati restituiti in output dalle query ed elaborati attraverso delle #glossary[dashboard], sulla una piattaforma #glossary[Grafana]\;
- *Notifica*: in caso di superamento di determinate soglie pre-impostate, relative ai dati restituiti dalla query, viene inviata una notifica ad un canale appositamente impostato nella piattaforma Discord in modo che possa essere visionata dall'#glossary[amministratore pubblico].
== Struttura dei container
Abbiamo adottato una struttura basata su container per il nostro sistema, utilizzando Docker e #glossary[Docker Compose] per gestire l'ambiente di sviluppo e produzione. Questa decisione è stata presa per diversi motivi:
- *Isolamento delle risorse*: utilizzando i container, è possibile isolare ogni componente del #glossary[sistema], garantendo che le dipendenze siano gestite in modo efficiente e che le modifiche ad un componente non influiscano sugli altri;
- *Portabilità*: i container forniscono un ambiente consistente in cui il software può essere eseguito indipendentemente dal sistema operativo sottostante. Questo consente di distribuire il #glossary[sistema] su diverse piattaforme senza doversi preoccupare delle differenze di configurazione;
- *Gestione semplificata delle dipendenze*: con #glossary[Docker Compose], si possono definire facilmente le dipendenze tra i diversi servizi del #glossary[sistema] e avviare l'intera infrastruttura con un singolo comando. Questo semplifica lo sviluppo e il testing del #glossary[sistema].
=== Configurazione dei servizi
Abbiamo definito diversi servizi all'interno del file docker-compose.yml, ognuno dei quali rappresenta una componente critica del #glossary[sistema]. Di seguito sono elencati i principali servizi insieme alla loro configurazione:
==== Servizio Kafka
- Immagine: bitnami/kafka:3.7.0
- Porte esposte: 9093:9093
- Variabili d'ambiente: configurazioni specifiche per #glossary[Kafka], incluse le porte, gli host e le impostazioni di sicurezza;
- Healthcheck: verifica periodica dello stato di salute di #glossary[Kafka] per garantire il suo corretto funzionamento.
==== Servizio ClickHouse
- Immagine: clickhouse/clickhouse-server:24-alpine
- Porte esposte: 8123:8123
- Variabili d'ambiente: configurazioni per la creazione del database iniziale e l'autenticazione dell'utente;
- Volume: montaggio di file di configurazione specifici e di script per l'inizializzazione del database.
- Healthcheck: verifica periodica dello stato di salute di #glossary[ClickHouse].
==== Servizio Grafana
- Immagine: grafana/grafana-oss:10.3.0
- Porte esposte: 3000:3000
- Volume: montaggio di configurazioni e #glossary[dashboard] personalizzate per #glossary[Grafana];
- Variabili d'ambiente: configurazioni per l'autenticazione e l'installazione di plugin;
- Dipendenze: dipendenza dal servizio #glossary[ClickHouse] per garantire che #glossary[Grafana] abbia accesso ai dati.
==== Servizio Simulators
- Build: utilizzo di un Dockerfile personalizzato per costruire il servizio;
- Variabili d'ambiente: configurazioni per il simulatore, incluse le impostazioni del fuso orario e l'host #glossary[Kafka];
- Dipendenze: dipendenza dal servizio #glossary[Kafka] per garantire una corretta comunicazione.
=== Profili
Ogni servizio è stato configurato per supportare i profili "dev" e "prod", permettendo una gestione flessibile delle configurazioni in base all'ambiente di deployment.
Questa struttura containerizzata consente di rendere il #glossary[sistema] modularizzato, scalabile e facilmente gestibile in ambienti di sviluppo e produzione.
== Database
Lo scopo del database è quello di memorizzare i dati provenienti dai sensori, in modo da poterli analizzare e visualizzare in seguito. I dati di un #glossary[sensore] vengono acquisiti tramite un #glossary[topic] #glossary[Kafka], associato ad un tipo di #glossary[sensore], e poi memorizzati in apposite tabelle.
=== Struttura
==== Tabella di accodamento
Ad ogni tipo di #glossary[sensore] viene assegnata una tabella con il nome definito come: \*tipo\*+topic+kafka. Questa conterrà, per ogni messaggio proveniente dal #glossary[topic] dedicato, un record contenente una stringa con all'interno tutti i dati grezzi provenienti dai sensori di quel tipo, che sono in formato #glossary[JSON] e contengono, oltre alla rilevazione con relativo timestamp, anche il nome e la tipologia del #glossary[sensore] e le sue coordinate geografiche. Le tabelle di questo tipo vengono popolate tramite il "ClickHouse Kafka table engine", che si occupa di leggere la stringa di dati, dal #glossary[topic] di #glossary[Kafka] e di "iniettarla" all'interno della tabella; per compiere quest'operazione è necessario specificare il motore di archiviazione "Kafka".
==== Tabella #glossary[time series]
Per ogni tipo di #glossary[sensore] viene creata una tabella #glossary[time series], con il nome definito come: \*tipo\*. Il suo scopo è gestire in modo efficiente i dati di tipo #glossary[time series], tramite il motore di archiviazione MergeTree. Queste tabelle vengono popolate tramite delle #glossary[materialized views] a partire dalle tabelle di accodamento; vengono inoltre ordinate per #glossary[sensore] e per timestamp.
==== Tabella dati aggregati
Questo tipo di tabelle aggrega i dati provenienti dalle tabelle #glossary[time series] in modo da poter effettuare analisi su intervalli temporali specifici. Ad esempio:
- Media aritmetica dell'andamento di un singolo #glossary[sensore] di un determinato tipo con campionamenti ogni minuto;
- Media aritmetica dell'andamento di tutti i sensori di un determinato tipo con campionamenti ogni cinque minuti.
Per il loro popolamento si utilizzano le #glossary[materialized views], che permettono di inserire i dati risultanti da una query, tra i quali la media.
==== Motori di archiviazione
#glossary[ClickHouse] offre diversi motori di archiviazione, ognuno con caratteristiche specifiche. Per il nostro caso d'uso, facciamo uso dei seguenti:
- *Kafka*: permette di leggere la stringa contenente i dati in formato #glossary[JSON] dal #glossary[broker] dati, e di iniettarla all'interno delle tabelle di accodamento;
- *MergeTree*: particolarmente adatto per la gestione di dati di tipo #glossary[time series], in quanto permette di effettuare operazioni di inserimento ed eliminazione in modo efficiente, e di effettuare query su intervalli di tempo specifici.
=== Schema
Il database è caratterizzato da un determinato schema per ogni tipo di #glossary[sensore]\; di seguito vengono illustrate, tramite un esempio, le due tipologie di schema utilizzate a seconda del tipo di #glossary[sensore].
==== Sensore per il vento
#figure(
image("DBscheme/DB_Wind.svg",width:100%),
caption: [Schema delle tabelle per il #glossary[sensore] del vento]
)
Ad esempio la funzione `JSONExtractString` è una funzione di #glossary[ClickHouse] che permette di estrarre una stringa da un campo #glossary[JSON]\; in questo caso, viene utilizzata per estrarre il campo "name" dal campo "data" del messaggio #glossary[JSON]. Lo stesso vale per le altre funzioni utilizzate: `JSONExtractFloat`, e `JSONExtractInt` e per i rimanenti campi.
#pagebreak()
==== Sensore pluviometrico
#figure(
image("DBscheme/DB_Rain.svg",width:100%),
caption: [Schema delle tabelle per il #glossary[sensore] pluviometrico]
)
Questo tipo di schema presenta in più, rispetto a quello precedente due tabelle per dati aggregati. La tabella "rain1m" contiene la media aritmetica, ottenuta aggregando i dati della pioggia ogni minuto per ciascun #glossary[sensore]\; invece, la tabella "rain5m_overall" contiene la media aritmetica, ottenuta aggregando i dati della pioggia ogni cinque minuti per tutti i sensori che monitorano le precipitazioni. Questi tipi di tabelle vengono popolati tramite delle #glossary[materialized views].
#pagebreak()
== #glossary[Architettura] dei simulatori
Nonostante i simulatori non siano ufficialmente considerati parte integrante del prodotto dalla Proponente, il nostro team, nell'ambito del progetto didattico, ha scelto di dedicare alcune risorse alla progettazione di questa componente.
Nei paragrafi successivi viene mostrata l'#glossary[architettura] individuata, tramite l'utilizzo di Diagrammi delle Classi e relative rapide descrizioni. Inoltre vengono motivati i #glossary[design pattern] individuati e le decisioni progettuali rilevanti. Successivamente, per ogni classe vengono illustrati metodi e attributi.
=== Struttura generale
#figure(
image("diagrammiclassi/struttura.jpg",width:100%),
caption: [Diagramma delle classi 2]
)
La classe _SimulatorExecutorFactoryTemplate_ è implementazione del #glossary[design pattern] _Template_, si occupa di invocare la creazione dei singoli simulatori per poi restituire un _SimulatorExecutor_ che avrà il compito di orchestrarli. Il metodo utilizzato per la creazione del singolo simulatore viene ereditato ed implementato diversamente, a seconda del tipo di _Writer_ che si vuole utilizzare, da parte delle classi _KafkaSimulatorExecutorFactory_ e _StdoutSimulatorExecutorFactory_; entrambe sono implementazioni del #glossary[design pattern] _Factory_, in quanto si occupano della creazione vera e propria dei simulatori a partire da un file di configurazione che viene passato tramite costruzione.
I simulatori sono istanze delle classe _SimulatorThread_: tale classe eredita dalla classe _Thread_ della Standard Library, in modo tale che l'esecuzione dei simulatori possa essere parallela.
#figure(
image("diagrammiclassi/simulator.jpg",width:95%),
caption: [Diagramma delle classi 2]
)
La classe _SensorSimulatorStrategy_ è realizzazione del design pattern _Strategy_, dove ogni strategia rappresenta una tipologia di #glossary[sensore] simulato differente. Al fine di garantire la possibilità di effettuare unit-testing sul comportamento dei simulatori di sensori tale classe riceve tramite costruttore un oggetto di tipo _Random_ e un oggetto di tipo _Datetime_.
Tali strategie verranno poi assegnate ad un _SimulatorThread_.
#figure(
image("diagrammiclassi/writer.jpg",width:100%),
caption: [Diagramma delle classi 3]
)
Anche la classe _Writer_ realizza il design pattern _Strategy_. Sono state progettate due strategie, la prima, (_KafkaWriter_), atta a permettere al simulatore di inviare i messaggi contenenti i dati della rilevazione a #glossary("Kafka"), mentre la seconda atta a permettere al simulatore di stampare i risultati su terminale al fine di poterne testare il comportamento. Inoltre l'applicazione di tale #glossary[design pattern] potrebbe consentire di realizzare il componente di scrittura anche per eventuali #glossary[broker] dati alternativi, nel momento in cui ce ne sia il bisogno.
Nello specifico, la classe _KafkaWriter_ realizza il suo scopo tramite l'impiego del #glossary[design pattern] _Adapter_, nella sua variante _Object Adapter_. Viene infatti fatto utilizzo della classe _Producer_ della liberia _confluent_kafka_. Dato che tale classe potrebbe essere soggetta a variazioni non controllabili da noi, si è deciso di utilizzare tale pattern per permettere di rispondere prontamente a tali cambiamenti, spostandone la complessità proprio nell'adapter.
=== Classi: metodi e attributi
Si procede alla descrizione di classi e interfacce progettate dal team.
Non vengono menzionati i costruttori.
==== SimulatorExecutorFactoryTemplate (Classe)
===== Attributi
- *configs: String [Protetto]*: contenuto del file di configurazione dei simulatori;
- *simulators: SimulatorThread[\*] [Protetto]*: lista di oggetti _SimulatorThread_.
===== Metodi
- *create_simulator(config: Map, simulator_type: SensorTypes, cls: «type» SensorSimulatorStrategy): void [Protetto]*: metodo astratto, implementato dalle classi _KafkaSimulatorExecutorFactory_ e _StdoutSimulatorExecutorFactory_;
- *create(): SimulatorExecutor [Pubblico]*: dopo aver invocato la creazione dei singoli simulatori, si occupa di costruire un oggetto della classe _SimulatorExecutor_ inserendoli al suo interno.
==== KafkaSimulatorExecutorFactory (Classe)
===== Attributi
- *data_broker_host: String [Privato]*: indirizzo ip della macchina che ospita il message #glossary[broker];
- *data_broker_port: int [Privato]*: porta della macchina che ospita il message #glossary[broker];
- *writers: Map<\String, KafkaWriter> [Privato]*: dizionario con chiavi di tipo String e valori di tipo _KafkaWriter_;
- *simulators_counter: Map<\String, int> [Privato]*: dizionario con chiavi di tipo String e valori di tipo int, per fare in modo che al nome del simulatore sia associato un valore numerico.
===== Metodi
- *create_simulator(config: Dict, simulator_type: SensorTypes, cls: «type» SensorSimulatorStrategy): void [Protetto]*: utilizza il contenuto del file di configurazione passato tramite costruzione per costruire gli oggetti di tipo _SimulatorThread_ che rappresentano i simulatori richiesti.
==== StdoutSimulatorExecutorFactory (Classe)
===== Attributi
- *simulators_counter: Map<\String, int> [Privato]*: dizionario per fare in modo che al nome del simulatore sia associato un valore numerico;
- *writer: StdoutWriter [Privato]*: oggetto della classe _StdoutWriter_.
===== Metodi
- *create_simulator(config: Map, simulator_type: SensorTypes, cls: «type» SensorSimulatorStrategy): void [Protetto]*: utilizza il contenuto del file di configurazione passato tramite costruzione per costruire gli oggetti di tipo _SimulatorThread_ che rappresentano i simulatori richiesti.
==== SimulatorExecutor (Classe)
===== Attributi
- *simulators: SimulatorThread[\*] [Privato]*: lista di oggetti _SimulatorThread_.
===== Metodi
- *run_all(): void [Pubblico]*: metodo che avvia la simulazione di tutti i _SimulatorThread_;
- *stop_all(): void [Pubblico]*: metodo che arresta la simulazione di tutti i _SimulatorThread_.
==== SimulatorThread (Classe)
===== Attributi
- *wait_time_in_seconds: int [Privato]*: intervallo di tempo (in secondi) che trascorre tra una simulazione e quella successiva;
- *is_running: bool [Privato]*: attributo che indica se al momento il simulatore sta producendo dati;
- *simulator: SensorSimulatorStrategy [Privato]*: oggetto della classe _SensorSimulatorStrategy_;
- *writer: WriterStrategy [Privato]*: oggetto della classe _WriterStrategy_.
===== Metodi
- *run(): void[Pubblico]*: metodo che avvia la simulazione del singolo _SimulatorThread_;
- *stop(): void[Pubblico]*: metodo che arresta la simulazione del singolo _SimulatorThread_.
==== SensorSimulatorStrategy (Classe)
===== Attributi
- *sensor_name: String [Protetto]*: nome identificativo del sensore\;
- *random_obj: Random [Protetto]*: oggetto della classe Random della libreria Standard di #glossary("Python")\;
- *datetime_obj: Datetime [Protetto]*: oggetto della classe Datetime della libreria Standard di #glossary("Python")\;
- *coordinates: Coordinates [Protetto]*: oggetto della classe Coordinates.
===== Metodi
- *simulate(): String [Pubblico]*: metodo astratto, implementato dalle classi che definiscono il comportamento dei singoli simulatori.
==== Coordinates (Classe)
===== Attributi
- *longitude: float [Privato]*: longitudine geografica,
- *latitude: float [Privato]*: latitudine geografica.
===== Metodi
- *getGeoJSON(): String [Pubblico]*: restituisce le coordinate geografiche nel formato GeoJSON.
==== SensorTypes (Class)
===== Attributi
- TEMPERATURE: String [Public];
- HUMIDITY: String [Public];
- WIND: String [Public];
- RAIN: String [Public];
- RESERVOIR: String [Public];
- AIR_POLLUTION: String [Public];
- PARKING: String [Public];
- CHARGING_STATION: String [Public];
- ECO_ZONE: String [Public];
- TRAFFIC: String [Public];
- ELECTRIC_BICYCLE: String [Public].
==== WriterStrategy (interfaccia)
===== Metodi
- *write(to_write: String): void [Pubblico]*: metodo astratto, implementato dalle classi _StdoutWriter_ e _KafkaWriter_.
==== StdOutWriter (Classe)
===== Metodi
- *write(to_write: String): void [Pubblico]*: scrive il messaggio contenuto nella stringa passata come parametro su standard output.
==== KafkaWriter (Classe)
===== Attributi
- *producer: TargetProducer [Privato]*: oggetto della classe _TargetProducer_.
===== Metodi
- *write(to_write: String): void [Pubblico]*: invoca la scrittura del messaggio contenuto nella stringa passata come parametro sul #glossary[topic] corrispondente alla tipologia del simulatore nel #glossary[broker].
==== TargetProducer (Interfaccia)
===== Metodi
- *produce(message: String, callback: Function): void [Pubblico]*: metodo astratto, utilizzato dal client per inviare il messaggio a #glossary[Kafka].
==== AdapterProducer (Interfaccia)
===== Attributi
- *adaptee: Producer [Privato]*: oggetto della classe _Producer_ della libreria _Confluent Kafka_;
- *topic: SensorTypes [Privato]*: oggetto della classe _SensorTypes_, rappresenta il #glossary[topic] all'interno del #glossary[broker] nel quale viene inserito il messaggio da scrivere.
===== Metodi
- *produce(message: String, callback: Function): void [Pubblico]*: metodo che richiama il metodo _produce()_ dell'oggetto _adaptee_ di tipo _Producer_ della libreria _Confluent Kafka_.
== Messaggi ed Eventi
=== Kafka Topics
I #glossary[topic] in #glossary[Kafka] possono essere visti come le tabelle di un database, servono per separare logicamente diversi tipi di messaggi o eventi che vengono inseriti nel #glossary[sistema].
In questo caso vengono utilizzati per separare i messaggi provenienti dai diversi tipi di #glossary[sensore]\; questo permette poi di andare a creare all'interno di ClickHouse delle "tabelle consumatrici" che prendono i dati in automatico, grazie al fatto che avendo separati logicamente i #glossary[topic], i messaggi all'interno di ognuno di essi hanno tutti lo stesso formato.
=== Struttura dei messaggi
La struttura di un messaggio o evento, descritta in JSON sarà la seguente:
```json
{
"type": "SomethingSimulator",
"timestamp": "2024-01-10 00:00:00",
"readings":[
{
"type": "Speed",
"value": "00.00"
},
{
"type": "Direction",
"value": "270"
}
],
"nome": "Significant Name",
"location":{
"type": "Point",
"coordinates": [00.000000, 00.000000]
}
}
```
Gli oggetti all'interno di "readings" sono solamente esempi, è possibile inserirne uno solo, come ad esempio per i sensori di temperatura, che avranno solamente la lettura omonima, oppure, come nel caso del #glossary[sensore] del vento averne due: la velocità e la direzione.
#pagebreak()
== Configurazione visualizzazione e sistema di allerta
=== Dashboard
La visualizzazione dei dati attraverso #glossary[pannelli] si compone delle seguenti #glossary[dashboard] in #glossary[Grafana]. Le configurazioni delle #glossary[dashboard] vengono salvate in formato #glossary[JSON], il che permette di svilupparle e manutenerle agevolmente. I dati per la visualizzazione sono prelevati dalle tabelle di #glossary[ClickHouse] tramite query sulle tabelle #glossary[time series] e di dati aggregati. Di seguito vengono descritte le #glossary[dashboard] realizzate all'interno del visualization layer:
- *Ambientale*: visualizzazione dei dati relativi a temperatura, umidità, inquinamento dell'aria, vento e precipitazioni atmosferiche, tramite grafici a linee, mappe e indicatori numerici; include, inoltre, una mappa che illustra la posizione dei sensori e il loro tipo, riconoscibile grazie ad un colore apposito;
- *Urbanistica*: visualizzazione dei dati relativi a parcheggi, colonne di ricarica, zone ecologiche, livello di congestione stradale e batteria delle biciclette elettriche, tramite mappe ed indicatori numerici;
- *Dati grezzi*: visualizzazione dei dati grezzi provenienti dai sensori, tramite una tabella che mostra i dati in tempo reale, con la possibilità di filtrare per specifico #glossary[sensore] e per tipo;
- *Superamento soglie*: visualizzazione dei dati relativi al superamento delle soglie di allerta per i diversi tipi di sensori; i dati superanti le soglie pre-impostate vengono visualizzati tramite una tabella che mostra il nome del #glossary[sensore] che ha effettuato la misurazione, il valore rilevato e il timestamp corrispondente.
=== Sistema di notifica
Per soddisfare i requisiti di ricezione di notifiche relativi a dati, che abbiano superato un determinata soglia, il team decide di utilizzare il sistema di allerting integrato in #glossary[Grafana]. Questo sistema si rivela efficace grazie alla sua capacità di integrarsi con diverse piattaforme di messaggistica in tempo reale, tra le quali Discord.
Una volta che un'allerta viene rilevata, passa attraverso tre stati distinti:
- in attesa (pending): l'allerta è stata innescata ma la sua conferma è ancora in corso. Questo stato è tipicamente utilizzato per regolare l'invio delle notifiche, assicurandosi che l'allerta sia stabile prima di comunicare il problema alla sua origine;
- attiva (firing): l'allerta è stata confermata e la condizione critica è stata verificata, di conseguenza vengono inviate le notifiche ai canali configurati;
- ok: la situazione che ha innescato l'allerta è tornata alla normalità.
Nella realizzazione del componente di notifica il team ha optato per mantenerlo il più semplice possibile, evitando lo stazionamento dell'allerta nella fase di "pending", in modo tale che ogni allerta venga notificata appena rilevata.
Inoltre, è risultato preferibile la rimozione delle notifiche relative al rientro nella condizione di "ok".
Ogni allerta viene definita all'interno di un "alert group" a sé stante, in modo tale che ognuna sia eseguita in contemporanea alle altre. Ogni regola verifica, a intervalli regolari di 5 minuti, se il superamento della soglia impostata si sia verificato nell'intervallo dei 5 minuti precedenti; inoltre, trattiene il valore massimo tra quelli superanti la soglia, per ogni singolo #glossary[sensore].
#glossary("Grafana") permette inoltre di inserire ulteriori configurazioni relative propriamente alle modalità di invio e alla personalizzazione delle notifiche nelle sezioni "Notification Policy" e "Contact Points", garantendo un maggiore controllo e una maggiore flessibilità nella gestione delle notifiche.
Sia le regole di allerta, le configurazioni dei canali di notifica, che le "Notification Policy", possono essere impostate tramite l'interfaccia grafica; successivamente, possono essere esportate in vari formati e inserite in file di configurazione appropriati, all'interno della directory /provisoning/alerting per garantire la persistenza. Nel nostro caso si è scelto di utilizzare il formato #glossary[JSON].
Relativamente a questi elementi di configurazione, per garantire che il sistema di notifica rimanga semplice e intuitivo, ci si limita a configurare il canale di notifica e il formato delle notifiche stesse, oltre alle configurazioni relative alla loro frequenza.
Si è deciso di utilizzare Discord come canale di notifica preferenziale: nello specifico per la sua configurazione è necessario inserire il corrispondente webhook URL.
#pagebreak()
= Tracciamento dei requisiti
In questa sezione si va a mostrare, secondo quanto riportato dal documento _Norme di Progetto v2.0_, la soddisfazione dei singoli requisiti presenti, in base al tipo previsto e opportunamente classificato sotto.
== Tabella dei requisiti soddisfatti
Si vuole riportare ciascun requisito mediante il corrispondente codice, utilizzando le seguenti sigle, le quali indicano:
- RO - Requisito Obbligatorio;
- RD - Requisito Desiderabile;
- RP - Requisito Opzionale.
Rispetto alla stessa tabella ritrovabile nel documento _Analisi dei Requisiti v2.0_, qui è presente una colonna _Stato_ indicante la soddisfazione di tale requisito.
/*L'array deve contenere i numeri dei requisiti da soddisfare, espressi come stringa*/
/*Esempio: #let satisfied = ("1","5","18")*/
#let satisfied_funz = (
"1","2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63"
)
#let satisfied_vinc = (
"1","2", "3", "4", "5", "6", "7", "8", "9"
)
#let satisfied_qual = (
"1","2", "3", "4", "6", "7", "8", "9", "10", "11"
)
#let requisiti_funz = requisiti_funzionali_con_codice.map(req => {
if(satisfied_funz.contains(req.at(0).slice(3))){
return (req.at(0),req.at(2),"Soddisfatto")
}
return (req.at(0),req.at(2),"Non soddisfatto")
})
#let requisiti_vinc = requisiti_vincolo_con_codice.map(req => {
if(satisfied_vinc.contains(req.at(0).slice(3))){
return (req.at(0),req.at(2),"Soddisfatto")
}
return (req.at(0),req.at(2),"Non soddisfatto")
})
#let requisiti_qual = requisiti_qualita_con_codice.map(req => {
if(satisfied_qual.contains(req.at(0).slice(3))){
return (req.at(0),req.at(2),"Soddisfatto")
}
return (req.at(0),req.at(2),"Non soddisfatto")
})
#show figure: set block(breakable: true)
#figure(
table(
columns: (1fr,7fr,auto),
align: (center,left,center),
fill:(_,row) =>if row==0 {luma(150)} else if calc.odd(row) { luma(220)} else {white},
[*Codice*],[*Descrizione*],[*Stato*],
..requisiti_funz.map(item => (item.at(0),item.at(1),item.at(2))).flatten().map(item => [#item])
),caption: "Tabella dei requisiti funzionali con annesso stato di soddisfacimento.")
#show figure: set block(breakable: true)
#figure(
table(
columns: (1fr,7fr,auto),
align: (center,left,center),
fill:(_,row) =>if row==0 {luma(150)} else if calc.odd(row) { luma(220)} else {white},
[*Codice*],[*Descrizione*],[*Stato*],
..requisiti_vinc.map(item => (item.at(0),item.at(1),item.at(2))).flatten().map(item => [#item])
),caption: "Tabella dei requisiti di vincolo con annesso stato di soddisfacimento.")
#show figure: set block(breakable: true)
#figure(
table(
columns: (1fr,7fr,auto),
align: (center,left,center),
fill:(_,row) =>if row==0 {luma(150)} else if calc.odd(row) { luma(220)} else {white},
[*Codice*],[*Descrizione*],[*Stato*],
..requisiti_qual.map(item => (item.at(0),item.at(1),item.at(2))).flatten().map(item => [#item])
),caption: "Tabella dei requisiti di qualità con annesso stato di soddisfacimento.")
#let numRequisitiSoddisfatti = requisiti_funz.filter(el => el.at(2).contains("Soddisfatto")).len() + requisiti_vinc.filter(el => el.at(2).contains("Soddisfatto")).len() + requisiti_qual.filter(el => el.at(2).contains("Soddisfatto")).len()
#let numTotaleRequisiti = requisiti_funz.len() + requisiti_vinc.len() + requisiti_qual.len()
#pagebreak()
== Grafici requisiti soddisfatti
Riguardo alla soddisfazione dei requisiti il gruppo SWAT Engineering ha soddisfatto #numRequisitiSoddisfatti su #numTotaleRequisiti, arrivando ad una copertura del #int(numRequisitiSoddisfatti/numTotaleRequisiti*100+0.50)%.
#let data = (
/* CONTEGGIO REQUISITI SODDISFATTI */
("Soddisfatti",numRequisitiSoddisfatti),
/* CONTEGGIO REQUISITI NON SODDISFATTI*/
("Non soddisfatti",numTotaleRequisiti - numRequisitiSoddisfatti),
)
#let piechart-config = (
radius: 3,
gap: 0deg,
slice-style: palette.new(colors: (rgb(153, 255, 153), rgb(255, 128, 128))),
label-key: (0),
value-key: (1),
outer-label: (content: "%"),
)
#let colors = (rgb(153, 255, 153), rgb(255, 128, 128))
#let types = ("Soddisfatti","Non soddisfatti")
#let types-legend = rect(stroke: 0.5pt + luma(140))[
#let tuples = types.zip(colors)
#stack(
spacing: 0.75em,
dir: ltr,
..tuples.map(tuple => stack(
dir: ltr,
spacing: 0.25em,
rect(stroke: 0.75pt, fill: tuple.at(1), width: 0.75em, height: 0.75em), tuple.at(0)
))
)
]
#figure({
types-legend
canvas({
import draw: *
chart.piechart(
data,
..piechart-config
)
})
},
caption: "Requisiti soddisfatti rispetto al totale.",
kind: "chart",
supplement: "Grafico")
/* REQUISITI OBBLIGATORI */
#let req_obbligatori = requisiti_funz.filter(el => el.at(0).contains("RO")).len() +requisiti_vinc.filter(el => el.at(0).contains("RO")).len() + requisiti_qual.filter(el => el.at(0).contains("RO")).len()
#let req_obbligatori_soddisfatti = requisiti_funz.filter(el => el.at(0).contains("RO")).filter(el => el.at(0).slice(3) in satisfied_funz).len() +requisiti_vinc.filter(el => el.at(0).contains("RO")).filter(el => el.at(0).slice(3) in satisfied_funz).len() + requisiti_qual.filter(el => el.at(0).contains("RO")).filter(el => el.at(0).slice(3) in satisfied_funz).len()
/* REQUISITI DESIDERABILI */
#let req_desiderabili = requisiti_funz.filter(el => el.at(0).contains("RD")).len() +requisiti_vinc.filter(el => el.at(0).contains("RD")).len() + requisiti_qual.filter(el => el.at(0).contains("RD")).len()
#let req_desiderabili_soddisfatti = requisiti_funz.filter(el => el.at(0).contains("RD")).filter(el => el.at(0).slice(3) in satisfied_funz).len() +requisiti_vinc.filter(el => el.at(0).contains("RD")).filter(el => el.at(0).slice(3) in satisfied_funz).len() + requisiti_qual.filter(el => el.at(0).contains("RD")).filter(el => el.at(0).slice(3) in satisfied_funz).len()
/* REQUISITI OPZIONALI */
#let req_opzionali = requisiti_funz.filter(el => el.at(0).contains("RP")).len() +requisiti_vinc.filter(el => el.at(0).contains("RP")).len() + requisiti_qual.filter(el => el.at(0).contains("RP")).len()
#let req_opzionali_soddisfatti = requisiti_funz.filter(el => el.at(0).contains("RP")).filter(el => el.at(0).slice(3) in satisfied_funz).len() +requisiti_vinc.filter(el => el.at(0).contains("RP")).filter(el => el.at(0).slice(3) in satisfied_funz).len() + requisiti_qual.filter(el => el.at(0).contains("RP")).filter(el => el.at(0).slice(3) in satisfied_funz).len()
#let data_obb = (
/* CONTEGGIO REQUISITI OBBLIGATORI SODDISFATTI*/
("Soddisfatti",req_obbligatori_soddisfatti),
/* CONTEGGIO REQUISITI OBBLIGATORI NON SODDISFATTI */
("Non soddisfatti",req_obbligatori - req_obbligatori_soddisfatti),
)
#let data_des = (
/* CONTEGGIO REQUISITI DESIDERABILI SODDISFATTI*/
("Soddisfatti",req_desiderabili_soddisfatti),
/* CONTEGGIO REQUISITI DESIDERABILI NON SODDISFATTI */
("Non soddisfatti",req_desiderabili - req_desiderabili_soddisfatti),
)
#let data_opz = (
/* CONTEGGIO REQUISITI OPZIONALI SODDISFATTI*/
("Soddisfatti",req_opzionali_soddisfatti),
/* CONTEGGIO REQUISITI OPZIONALI NON SODDISFATTI */
("Non soddisfatti",req_opzionali - req_opzionali_soddisfatti),
)
Per quanto riguarda la copertura dei requisiti obbligatori, la copertura rilevata è di #req_obbligatori_soddisfatti su #req_obbligatori requisiti, arrivando quindi ad un #int(req_obbligatori_soddisfatti / req_obbligatori * 100 + 0.5)% sul totale.
#figure({
types-legend
canvas({
import draw: *
chart.piechart(
data_obb,
..piechart-config
)
})
},
caption: "Requisiti obbligatori soddisfatti rispetto al totale.",
kind: "chart",
supplement: "Grafico")
#pagebreak()
In termini di soddisfacimento dei requisiti desiderabili, è stata raggiunta una copertura del #int(req_desiderabili_soddisfatti / req_desiderabili * 100 + 0.5)%, con #req_desiderabili_soddisfatti su #req_desiderabili.
#figure({
types-legend
canvas({
import draw: *
chart.piechart(
data_des,
..piechart-config
)
})
},
caption: "Requisiti desiderabili soddisfatti rispetto al totale.",
kind: "chart",
supplement: "Grafico")
Per quanto concerne l'adempimento dei requisiti opzionali, abbiamo conseguito una percentuale del #int(req_opzionali_soddisfatti / req_opzionali * 100 + 0.5)% sul totale, con #req_opzionali_soddisfatti su #req_opzionali requisiti considerati.
#figure({
types-legend
canvas({
import draw: *
chart.piechart(
data_opz,
..piechart-config
)
})
},
caption: "Requisiti opzionali soddisfatti rispetto al totale.",
kind: "chart",
supplement: "Grafico") |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/visualize/stroke_04.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Line joins
#stack(
dir: ltr,
spacing: 1em,
polygon(stroke: (thickness: 4pt, paint: blue, join: "round"),
(0pt, 20pt), (15pt, 0pt), (0pt, 40pt), (15pt, 45pt)),
polygon(stroke: (thickness: 4pt, paint: blue, join: "bevel"),
(0pt, 20pt), (15pt, 0pt), (0pt, 40pt), (15pt, 45pt)),
polygon(stroke: (thickness: 4pt, paint: blue, join: "miter"),
(0pt, 20pt), (15pt, 0pt), (0pt, 40pt), (15pt, 45pt)),
polygon(stroke: (thickness: 4pt, paint: blue, join: "miter", miter-limit: 20.0),
(0pt, 20pt), (15pt, 0pt), (0pt, 40pt), (15pt, 45pt)),
) |
https://github.com/pku-typst/meppp | https://raw.githubusercontent.com/pku-typst/meppp/main/template.typ | typst | MIT License | #import "table.typ": meppp-tl-table
#import "@preview/cuti:0.2.1": show-cn-fakebold
#let meppp-lab-report(
title: "",
author: "",
info: [],
abstract: [],
keywords: (),
author-footnote: [],
heading-numbering-array: ("I", "A", "1", "a"),
heading-suffix: ". ",
doc,
) = {
// Fake bold for Chinese characters
show: show-cn-fakebold
// footnote settings
show footnote.entry: set align(left)
set footnote.entry(separator: {
set align(left)
line(length: 30%)
})
set page(
paper: "a4",
numbering: "1",
margin: (
top: 2cm,
bottom: 1.6cm,
x: 2.5cm,
),
)
set text(
font: (
"Times New Roman",
"SimSun",
),
lang: "zh",
)
set par(
first-line-indent: 2em,
leading: 2em,
justify: true,
)
set block(spacing: 2em)
set align(center)
// title
text(16pt, font: "SimHei")[
#strong(title)\
]
// author
text(14pt, font: "STFangsong")[
#author
]
if author-footnote != [] {
footnote(
numbering: "*",
author-footnote,
)
}
[\ ]
// info, e.g. school & studentid
text(12pt, info)
// (optional) abstract & keywords
set align(left)
if abstract != [] {
pad(
left: 2em,
right: 2em,
par(leading: 1.5em)[
\
#h(2em)
#abstract \ \
#text(font: "SimHei")[*关键词:*]
#for keyword in keywords {
keyword + [, ]
}\
],
)
}
// heading numbering
set heading(
numbering: (..args) => {
let nums = args.pos()
let level = nums.len() - 1
let num = numbering(heading-numbering-array.at(level), nums.at(level))
[#num#heading-suffix]
},
bookmarked: true,
)
// heading styling
show heading: it => {
set block(spacing: 2em)
set par(first-line-indent: 0em)
set text(
if it.level == 1 {
16pt
} else if it.level == 2 {
14pt
} else {
12pt
},
weight: "medium",
font: ("STFangsong"),
)
if it.numbering != none {
counter(heading).display(it.numbering)
}
it.body
}
// figure numbering
set figure(supplement: "图")
show figure.caption: set text(10pt)
set cite(style: "gb-7714-2015-numeric")
set text(12pt)
set bibliography(
style: "gb-7714-2015-numeric",
title: none,
)
show bibliography: bib => {
[\ \ ]
align(center, line(length: 50%))
bib
}
doc
}
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/terms_03.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test style change.
#set text(8pt)
/ First list: #lorem(6)
#set terms(hanging-indent: 30pt)
/ Second list: #lorem(5)
|
https://github.com/SkiFire13/master-thesis | https://raw.githubusercontent.com/SkiFire13/master-thesis/master/chapters/5-conclusion.typ | typst | = Conclusions <section-conclusions>
We have seen how common systems of fixpoint equations are, especially in model checking, and how we can characterize them using a particular parity game called the powerset game. We have also seen how the moves of this game can be reduced and efficiently expressed using a logic for upward closed sets, which also fits a local algorithm for solving the game. We have then considered a pair of algorithms for locally solving parity games based on strategies.
Our contribution has then been to adapt such algorithms to be used with the powerset game, in particular bridging the conflicting requirements of the two by converting the powerset game to a total parity game, generalizing subgames to consider a subset of edges rather than vertices. This also resulted in the need for a lazy generation of symbolic moves through formula iterators, which also required an adaptation of the simplification process of the corresponding formulas to work on such iterators. In this process we have also introduced a series of small optimizations, most notably the ability to compute play profiles while expanding, which avoids potentially expensive valuation steps. We have then implemented a tool based on our theoretical work, which we have compared against LCSFE, an existing implementation with similar ideas, showing that we have improved over it, in some cases even by orders of magnitude.
#heading(outlined: false, level: 2, numbering: none)[Future work]
Although the focus of the game characterization is to be as general as possible, which we have also shown by providing a formulation of bisimilarity using logic formulas, the performance is still quite questionable. A possible improvement in this area could be obtained by integrating different parity game algorithms while keeping the local approach, for example the recent quasi-polynomial algorithms @firstquasipoly @zielonkaquasipoly seems to be very good candidates for this.
There also seems to be a lot of room for smarter expansion schemes by combining the informations given by play profiles with symbolic formulas. In particular we believe it could be possible to simplify some formulas such that moves that lead to better improvements are preferred over those that do not. Ultimately the goal would be to include the most critical edges in the expansion as soon as possible, so that the optimal strategy becomes known earlier.
The use of a logic to express symbolic moves also suggests that it might be possible to use symbolic data structures like _Binary Decision Diagrams_ (BDDs) to represent them, possibly improving their efficiency. This might in turn open new possibilities to the usage of symbolic moves thanks to making them easier and faster to manipulate, especially in combination with the previous point.
Another challenge involves integrating up-to techniques @baldan_upto, possibly in a generic way, which could result in speed ups by orders of magnitude. However the problem of efficiently determining when to apply them is still open. We suspect that the previously mentioned use of BDDs might help with this though.
Finally, further work could be done on the adaptation of the different domains. Our $mu$-calculus and bisimilarity adaptations currently expect a full labelled transition system to be given ahead of time, which sometimes may be too prohibitive and more in general reduce the benefits of a local algorithm. However in principle this could be generated on the fly, avoiding the need to generate parts of the model that are not necessary. The implementation of more and varied domain, like for example the previously mentioned Łukasiewicz $mu$-calculus and abstract interpretation techniques, is also a possibility for further work to show the generality of the game characterization for solving systems of fixpoint equations.
|
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/058%20-%20Duskmourn%3A%20House%20of%20Horror/007_Episode%204%3A%20Don't%20Give%20Up.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Episode 4: Don't Give Up",
set_name: "Duskmourn: House of Horror",
story_date: datetime(day: 26, month: 08, year: 2024),
author: "<NAME>",
doc
)
The gleaming golden shadow of Kyodai led them onward—although "led" might have been the wrong description. It wasn't clear the tiny dragon knew it was being followed or understood where they were going. It had started moving when the Wanderer asked it to help them find Nashi, but it hadn't responded to any requests since then, not even when she asked it to slow down.
The glimmer could move through the House without fear. Winter said glimmers went out sometimes, or were extinguished, but not how or why that happened, and not whether there was some monster in the House dedicated specifically to the snuffing out of hopes. If there was, it moved in shadows, and no one ever saw it strike. The glimmer continued at the same pace, even as it undulated through rooms filled with writhing mist, past hulking things with skins like jagged obsidian spikes that ripped and tore at the remains of something unlucky enough to catch their attention, past eyeless masses of flesh and crawling masses of eyes. All those horrors ignored it, letting it go peacefully on its way.
Winter, Niko, and the Wanderer followed the glimmer, moving with less careless confidence of their own survival as they had to cross every room it drifted through on foot and without attracting attention. During one of the rare moments when nothing horrific was nearby, Winter muttered sourly, "Something should have jumped us by now."
"Let's not borrow trouble," said Niko.
"I'm not," said Winter. "If the House is letting us pass, that just means it has something planned."
"So we stay sharp," said the Wanderer, and the group kept moving, following her glimmer into a long gallery filled with gold-framed mirrors. Half were broken, shards of glass littering the floor. The other half reflected a strange, irregular distortion.
Niko had been on Kaldheim long enough to have seen the dancing rainbows of Esika's ribbons refracted through frozen mist, shattered into a thousand individual specks of light and color. This was like that, but … lifeless. It was just as brilliant, just as dazzlingly hypnotic, but at the same time, it was dead.
Winter kept going until he realized both his companions had stopped to stare at the mirrors. Only then did he pause and backtrack to see what they were looking at. Kyodai followed, showing awareness of the situation for the first time since their journey started. Winter stiffened when he saw the jittering color reflected in the glass. Swearing under his breath, he grabbed Niko by the arm and tried to drag them away from the mirror they were staring into.
"We need to move," he said. "We're too exposed here, we can't just stand around waiting for them to finish manifesting."
"Them who?" asked Niko.
"The glitch ghosts," said Winter. "They use reflective surfaces to enter the House. For the longest time, we thought it was proof that somewhere we'd find a bunch of mirrors that were actually windows and would let us get out, but no. Turns out you can only come and go if you're someone who died outside the House and somehow got as trapped as all the rest of us."
As if summoned by his explanation, a shuddering entity began to drag itself from the mirror frame, the shifting, refracting light moving with it as it resolved into a humanoid shape and reached for Niko. Echoes of its limbs followed along behind it, creating a jittering cloud of half-sketched distortions, like the figure was existing in every time at the same time, simultaneously spreading itself across probabilities. It didn't look solid, but it looked deadly all the same.
The vague impression of a face formed out of the smooth front of its "head," and its new mouth gaped wide, straining toward Niko even as it continued reaching out.
Niko's eyes widened. "No," they said, breaking out of their momentary fugue. "No, I do not think we'll be doing that." They reached into the empty air beside them and pulled out a glistening shard of blue-tinged magical force, spinning it on their palm before they flung it at the entity.
It struck without striking, enveloped without enveloping. The shard hit the entity, and the entity was gone, while the shard remained, now filled with a dancing, multicolored film of ever-changing light.
The mirror went dull, not reflecting Niko, but no longer filled with light, either. Niko plucked the shard from the air and spun it one more time as they studied its occupant, then lowered it, holding it close to their hip.
They turned to find Winter staring at them. They lifted a brow. "Yes?" they asked.
"That was … you can't fight one of them," said Winter. "They take you and you die. Or you use a ghost-catcher to banish them outside, where they came from in the first place. What you just did isn't possible!"
"I guess no one told the mirror-thing that," said Niko.
The golden glimmer of Kyodai was still visible at the end of the hall, the Wanderer close behind. The glimmer had apparently managed to break her from her own fugue, and she was back to following it along the path that would hopefully lead them to Nashi. Niko and Winter hurried after them, and the four pressed on into the House.
It was hard to call what they were doing "going deeper," because there was no sense of beginning or end in the labyrinth of rooms and hallways that spiraled out around them. Niko's attempts to use logic to understand the architecture had long since crumbled and fallen to dust, impossible to maintain in the face of the House's stubborn refusal to adhere to consistent rules. After the hall of mirrors, they crossed an echoing, empty ballroom whose ceiling was concealed by a solid mass of cobwebs that pulsed and shook as if something unseen moved overhead, aware of them but not yet attacking.
That room exited, not onto another clearly enclosed space, but into what looked like a slice of forest encased in the glass and metal filigree walls of an orangery. They towered taller even than the trees, forming a peaked dome overhead, and the air, while it smelled of loam and green, growing things, was as static and stagnant as anything indoors.
"We're still inside," said the Wanderer.
Winter frowned at her. "Of course we are," he said. "Everything is inside. Don't you realize that yet? There's no outside left. The House took it all years ago, and now everything is inside, except for the glitch ghosts and the emptiness they come from."
"Someone must have built this place," said the Wanderer. "They can't have done that if they were already trapped inside it."
Winter scoffed.
The glimmer was leading them toward the trees. The trio moved closer together as they followed, feeling small and inconsequential in the shadow of this captive forest. There was something so profoundly unnatural about the scene that it set their already unsettled nerves jangling, and Niko had to fight not to create a fresh shard, just to have a weapon in their hand. The Wanderer drew her sword as she walked, holding the blade low and braced ready in front of her.
The glimmer abruptly stopped and began to twine in circles in the air, glow illuminating the trees around it. The Wanderer paused, frowning, then walked toward it with her free hand outstretched, palm turned to what should have been the sky.
The glimmer stopped turning and settled, for just a moment, onto her hand. Then it rose and flitted to hang over her shoulder. She looked deeper into the trees and staggered back, barely managing to swallow a gasp.
"What is it?" asked Winter, voice low.
She shook her head fiercely as she turned to face her companions, then made a sharp gesture with her free hand. They looked blank. She made the gesture again, then sighed, and whispered, "Ahead. Make no sound."
Together, the three clustered to look through the break in the trees and beheld a nightmare.
A cold fire burned at the center of a seemingly natural clearing, its edges uneven and studded with rocks and roots. The sparks flying from the flames took the form of snowflakes rather than cinders, glowing blue-white as they drifted to the ground.
Barrel-shaped wicker cages grew around the "fire," appearing to have been planted rather than constructed; their trunks led to thick roots that pierced the ground like nails. There were seven in all, four of them occupied by humanoid rats who shied away from the bars surrounding them, snarling and snapping their teeth like the terrified captives that they were. Outside the cages, their captors danced and gamboled.
The captives were easy enough to classify—rat-people weren't something Niko was familiar with, but they were no true stretch when set against the satyrs and centaurs of their home. People with animal aspects were so common on Theros that it was a bit more surprising that there #emph[weren't] rat-people. The captors were another matter. Spindly and strange, they looked more like constructs of wicker and bundled sticks than anything else. Some were decorated with flowers, mimicking hair or other ornamentation; one was wearing what looked almost like a gown woven from thorny briars. They moved stiffly, as befit creatures made of wood, and as they passed the cages, they reached out to rattle them, sending their captives scrambling to the other side.
"Nashi," breathed the Wanderer, eyes fixed on the smallest of the rat-people, who sat at the bottom of his cage, arms around his knees. He didn't snarl as the dancers passed his cage, only stared at them with silent fury, watching their every move. It was almost like he was trying to memorize them for later, whatever good that was going to do.
The other three rat-people were less restrained. One of them lunged at the hand that shook their cage, biting the air only inches from the creature's twig-and-tangle "fingers." In reply, the creature stopped dancing and began to snap, a strange, terrible clicking sound that nonetheless provided a small amount of cover as Winter whispered, "Wickerfolk. We should go. Your friend is already lost."
"We've heard that before, about other friends, in other places," whispered the Wanderer, sword raised and at the ready.
In the clearing, the wickerfolk opened the cage and reached out, grabbing the rat-person by the wrist and driving its fingers deep into the rat-person's flesh at the same time. The rat screamed, a terrible, wailing sound, but didn't bite at the offending hand. It was more like they were terrified of it.
The wickerfolk let go and stepped back, leaving gaping holes in the rat-person's arm. Holes that didn't bleed, but oozed a slow, amber-colored sap for only an instant before fresh green shoots burst out of the wound.
The rat-person screamed again. The Wanderer, who was the only one to recognize the shoots as green Kamigawan bamboo, clapped a hand over her mouth. The shoots continued to grow, faster and faster, winding around the rat-person until they were completely obscured. There was a final, sickening crunch, and the screaming stopped. The rat-person was gone, leaving a woven wicker doll behind, lifeless and limp.
Until it started to move, jerky and stiff, and climbed out of the cage to join the other dancers around the frozen fire. It was shorter than most of the other creatures—but not all of them, Niko realized with dawning horror. Three others were short and slight, with "tails" made of twisted root or tangled briar that mimicked the anatomy of the rat-people.
The dance resumed, faster now, as if they had been revitalized by the addition of another of their own kind.
Niko began to turn to the Wanderer, only to see her leap, sword in hand, toward the dancing figures. She shouted something as she landed among them, a whirling vision of vengeful death. Her sword gleamed silver in the light from the "fire," hacking limbs and heads from the creatures, which stopped their dancing to advance upon her like the nightmares that they were.
She used her blade to cut open the wall of Nashi's cage and was spinning back toward her opponents when she froze, mouth opening in a silent scream. Blood began to blossom on the front of her tabard before tree branches burst out of her ribcage, rapidly consuming her as Nashi watched in horror, still trapped inside his cage. The sword fell from her hand as the faint golden light of her glimmer died, extinguished by the House. The creature that had been the Wanderer began to turn toward her former allies, still aware of their location but no longer their companion—
And the vision shattered as the Wanderer gasped, hand going to the pocket where she had tucked Aminatou's fateshifter. She stared at Niko, who stared silently back, neither of them sure what could be said about a choice almost made and barely averted.
Winter looked between them, frowning. "What's wrong with you two?" he asked. "This isn't a safe place to stop and gawk. We should go."
"That is … not how I thought those would work," said Niko.
"No," said the Wanderer. "I don't think I'll do that."
"Well, you're going to have to do something!" said Winter, sounding terrified.
Niko and the Wanderer turned to look back at the clearing. The creatures were no longer dancing. Instead, they had turned their "heads" toward the trio, watching them without eyes. Their stillness gave the impression of motion about to erupt, of the pause before the strike.
"Right," said Niko, and pulled a clean shard out of the air, holding the empty shard in one hand and the shard filled with the shifting blue-white haze of captive glitch ghost in the other. Moving swiftly, they dove forward and flung both shards in the same motion. The occupied shard struck the lead creature and burst, wreathing it in the howling form of the shattered-light specter.
The second struck Nashi, enveloping him as it flew onward, through the bars of the cage. It embedded in a nearby tree, safely clear of the circle, Nashi within.
#figure(image("007_Episode 4: Don't Give Up/01.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
Winter crouched low, trying to conceal himself, as Niko and the Wanderer both charged toward the clearing. The ghost was still consuming the lead creature, making a terrible sound, like rusty nails dragged over tin. The other creatures seemed confused, lashing out without any discernible intent.
The Wanderer dodged them easily, moving to cut the other occupied cages open. The captive nezumi fell out, scrambling to their feet and grabbing rocks to use as makeshift weapons. "Fire," one of them gasped. "They fear fire."
"Fire, eh?" asked the Wanderer. Niko was holding their own, hurling shards and stones with equal force, hitting their mark every time. She broke away from the fighting, running to the tree where the shard containing Nashi had landed. Pulling it loose, she ran on, skirting around the battle to where Winter crouched.
"Do you have a source of fire?" she demanded. "You've mentioned tools—is that among them?"
Winter fumbled at his belt for a moment before finding a small black rectangle about the size of his palm. He offered it to her. "You push the red button on top," he said. "We use it to light fuses and make light."
"Hold this."
She handed him Nashi's shard with all the reverence she could muster, then turned and dove back into the fray.
The creatures fell as Niko cut them down, but got back up again with remarkable, terrible speed. Only the ones they locked in shards were truly removed from the fight, and she didn't know what the limit was on that magic. Grabbing a fistful of rough grass from the circle's edge, she held the black box to it and pressed the button.
A tiny flame shot out, and the grass lit up, burning like a beacon. She flung the bundle into the midst of the creatures, which panicked, abandoning their attempts to attack Niko and the nezumi in favor of running deeper into the wood. The Wanderer returned to Niko, who was checking themself for injuries.
"You are a fierce opponent," she said.
"I never miss," said Niko. "You're not so bad at this yourself."
They walked back to Winter, the two nezumi following at a careful distance. The Wanderer handed him back his box, taking the shard in exchange.
"Can you release him?" she asked.
Niko nodded, taking the shard and dismissing it. Nashi was suddenly standing there, looking perplexed for only a moment before the Wanderer pulled him into an embrace. He pulled away and she stepped back, looking disappointed.
"You came," he said, whiskers quivering.
"Of course I came," she said. "I only wish you had come to me. I would have helped."
"We help our own," said one of the other nezumi.
The Wanderer's disappointment only grew. "I see," she said.
"I've been searching for my mother since I got here," said Nashi. "I think I know where she is. But we just lost most of the crew I brought with me. If I'm going to find her, I need your help."
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
The groaning continued to pour out of the walls, endless and echoing and grating in a way that shouldn't have been possible for a simple sound. Jace and Kaito stood back to back, making it harder for something to ambush them. The wall began to ripple like thick mud, until some terrible, shapeless, tentacled thing began to crawl out and into the room where they both stood.
It looked like something that would be found at the bottom of the sea, soft and formless, incapable of bearing its own weight. Of course, it didn't need to; it drifted above the floor as it pulled free, the front of its gelatinous mantle splitting open in a mouth filled with jagged teeth, in which the floating shapes of ghostly heads could be seen. They looked like they were made of smoke, or mist, something insubstantial and thin.
"What #emph[is] that?" asked Kaito.
"It looks like … but it can't be," said Jace. His eyes flashed blue-white as he turned his mind magic on the thing, then returned to normal. "It has no mind. The heads inside its mouth, they have minds, but they're not conscious of the thing. This is a nightmare given substance."
"Can a nightmare hurt us?"
"Better to assume it can than to assume it can't."
"Great."
The nightmare lashed out at them with two long tentacles. Kaito didn't wait to see if they would hit. He moved his hand in a slicing motion, and the little flecks of stone that littered the floor rose up in a wall of debris that blocked the strike, deflecting it. The debris didn't fall back down. The nightmare observed it and continued to advance.
"How do you fight a nightmare?" he demanded.
"You take its dreams away," said Jace. "Keep it occupied for a moment."
His outline blurred, and then he seemed to disappear, blocking himself from view. Kaito swore and ducked away, rolling out of the path of another strike of those tentacles.
With Kaito being the only visible target, the nightmare focused on him, pursuing him around the basement while Jace did whatever he was going to do. Kaito dodged and rolled, occasionally deflecting a tentacle with his sword, but mostly trying to evade.
And then, with a guttural wail, the nightmare burst into a cloudy fog. The groaning stopped. The wall returned to normal. The nightmare's remains drifted to the floor, where they dissipated. Kaito turned to stare, disbelieving, at the room.
Jace reappeared, eyes glowing, looking winded.
"What did you do?" asked Kaito.
"A nightmare can't live without the fear that feeds it," said Jace, sounding faintly smug. "I reached into the dreamers I felt inside it and took their fears away."
Kaito kept staring.
"What?"
"Everything in this house wants to kill you! You don't think they might #emph[need] to be a little bit afraid?"
"I didn't take away all their fear, or their capacity for the feeling. Only the specific fear that was trying to kill us. You're welcome, by the way."
"Remember how your nose wasn't broken before?"
"Yes …"
"We can still try again."
Jace sighed. "I'm not here to fight, Kaito. I'm sorry I disappeared after the invasion. I won't say I had no choice, but of the choices I had, removing myself for a time was the correct one."
"If you're not here to fight, why are you here?"
"I've been traveling with Vraska and our new companion. I lost them, and I think they might be somewhere in this house. I have to find them."
"Yeah, you never could leave Vraska unattended, could you?"
"I know you meant that as a comment on my need for her company, and not her ability to care for herself, but no, I don't like to leave her alone. They need me. So, if you could stop hitting me, we could work together to find all our missing friends."
Kaito eyed him. "After what happened on New Phyrexia … we're still #emph[not] friends, Jace."
"I can live with that. But that means we both have to live."
Together, they moved deeper into the basement.
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
The creature wasn't following them anymore.
Somehow, that was worse than its pursuit. At least that had been predictable. But it had stopped several halls ago, leaving them to flee without anything to flee #emph[from] . Zimone was winded and kept doubling back to recover dropped books. Finally, panting, she slumped against a wall and let her head fall forward.
"Friend Zimone?" asked Tyvar. "What are you doing?"
"I need to breathe," she said. "Just give me a second."
Reluctantly, Tyvar moved to stand beside her, looking back the way they'd come. The House had continued to rearrange itself throughout their flight; looking back never showed the room they had been in a moment before, but something entirely new.
Tyvar almost appreciated the constant transformations. It kept them from getting complacent, from forgetting that this place was their enemy. It felt like they were running through the gut of some vast creature, something on the scale of Koma, too vast to comprehend or reason with. All they could do from here was survive.
The wall in front of them began to pulse and twist in a way Tyvar was starting to recognize. He pulled himself upright, preparing to fight the creature back again, almost relieved to return to the familiar pattern of attack and defense. The twisting continued, and what pulled itself free was not the spindly, terrible attacker, but an elegant elf woman with her hair pulled into a high knot atop her head, spectacles framing intelligent eyes, and a faintly transparent overall appearance.
"Zimone," she said. "#emph[There] you are, naughty girl. You've been absent from my classes for #emph[weeks] ."
Zimone's head snapped up, eyes going wide. "D-<NAME>?" she asked. "But you—I #emph[saw] you—"
"Phyrexia? The invasion? I let them take me, darling. I had to prove my theories of mana transformation and reflection, and I proved so much. Compleation unlocked the final doors on my research, and I finally understand everything. As you would, too, if only you had continued coming to class."
"No, but you … when Phyrexia was defeated, you died. We lost you, and you died."
"Nothing that's remembered dies, dear. Memory is a form of magic, and magic exists to be used." She reached one long-fingered hand toward Zimone. "Come here, and I'll show you."
Zimone sniffled, and started to take a step toward her, only for Tyvar's hand on her shoulder to pull her to a stop. She shot him a sharp look.
"Let me go. That's <NAME>."
"Who you saw compleated," he said. "Who you saw #emph[die] . Why would she be here? Why would she be trying to convince you to come to her?"
The shadow of Kianne narrowed her eyes, glaring at him. "You interfere where you have no business, stranger."
"I have every business. Without her, I'll never make it out of this house. I refuse to let my story end here, unfinished and untold."
"So you interfere out of selfishness."
Tyvar scowled at her, still holding Zimone back. "I interfere because you're a trick! A trap! She'll see the truth of you when she recovers from the shock."
"Will she?"
"You can't be <NAME>," said Zimone, voice shaking. "She … she died. I wish she hadn't, but she did."
"Oh, is #emph[that] how it's going to be?" Kianne's face lost its last traces of gentleness. "Smug little scholar only thinks she can survive because she has a 'hero' to feed into the meatgrinder, but they're always dying to protect you, aren't they, Zimone? How much of your own college didn't make it out because they thought weak, sweet little Zimone should be spared from Phyrexia?"
"That's not fair," moaned Zimone.
"It's not fair that you're #emph[alive] ," snarled the phantasmal dean, and lunged for her. Zimone shrieked and shied away, hiding behind Tyvar, who stood his ground.
Dean Kianne's outline rippled as she moved, and Tyvar took a half-step back, still shielding Zimone from her attack. The clawed hand of the creature that had been attacking them before appeared through the translucent chest of the Quandrix dean, catching Tyvar across his unprotected midsection, slicing through skin and muscle with ease. Tyvar staggered back, feeling things slosh and slip loose, sliding out of the gaping wounds.
"Tyvar!" shouted Zimone, as Tyvar fell, open eyes staring into nothing—
And the moment shattered like the ice at a river's edge on a winter morning, leaving Tyvar gasping, one hand going to the fateshifter he had tucked into his belt. Dean Kianne had yet to move. There was no sign of the creature.
"What did I do wrong?" he asked. "Aminatou said they were supposed to roll us back when we do something wrong."
"You stood and fought," said Zimone. "That isn't Dean Kianne. We have to run!"
"No," said Tyvar. "When it cut me, I felt …" He adjusted his stance, looking defiantly at Dean Kianne. "Fight me, if you dare, phantom."
She snarled and lunged again. This time, he stepped back, and when the creature's claw appeared from her chest, he grabbed its wrist before it could make contact, his knowledge of the fight he hadn't actually lost yet telling him exactly where and how to stand. It howled. He tightened his grasp on its wrist, as what looked like plaster began to crawl up his hands, engulfing his arms. Still he held on, the transmutation spreading faster and faster, until his entire body was the color of the creature's skin.
He released it. It didn't swing for him again. Instead, it turned toward Zimone, a snarl splitting its face as the false Dean Kianne drifted back into the wall. Tyvar lunged for Zimone. So did the creature. Zimone screamed as Tyvar wrapped his arms around her, jerking her into an embrace that was no less terrifying for coming from an ally. His magic washed over her, and she felt her own skin begin to change.
Abruptly, the creature turned away and began to lope down the hall, leaving them.
"What …?" asked Zimone.
"The creature—beast—whatever it is—it can't be killed because it doesn't live," said Tyvar. "Not in the way we recognize life. It is of the House. So is the image of your lost friend. They're made up of the House, wood and plaster for the one, dust for the other."
Zimone frowned. "What do you mean?"
"Their flesh is the House's flesh, and now … so are we."
Zimone blinked. "What?"
"Until I release the magic, we are made of the House, and the House doesn't see us as invaders. Its natural defenses should leave us be."
"I … oh." Zimone gathered the rest of her books and stood, trying not to look at her own transformed, unsettling hands. "How long can you do this?"
"Right now, I feel like I can do this forever."
Zimone decided not to question it. The hall ahead of them was straight and clear, and so she beckoned for him to follow as she resumed walking.
The House no longer seemed aware of them, or to care where they went. Nothing changed or shifted as they walked, and doors that had been closed led to the same rooms when opened again. They continued onward, until they reached a circular chamber with a hall at either side filled with cherrywood doors. Each of them was ornately carved the way the door on Ravnica had been, but in subtly different motifs.
"This looks like the embellishment on the Quandrix study wing," said Zimone, looking at a door.
"This is the design on my brother's feasting hall," said Tyvar, looking at another door.
"It's spreading," said Zimone. "The doors … it's setting lures in places where it might be able to attract more people."
"But why?" asked Tyvar, looking at another door, this one etched with moths and hedrons, half-blocked by boards hammered across its frame, like this door among them all was not permitted to open. Zendikar might be on the other side. Dangerous, delicious Zendikar, ready to be devoured.
Wait. #emph[Devoured?] He stopped, frowning. "The House is … hungry," he said.
"Houses can't be hungry."
"This one is. It will spread, and seize, and swallow everything weaker than itself. It will be all. There will be nothing more."
"Tyvar? That doesn't … you don't sound …" Zimone stopped as she realized he didn't sound entirely #emph[wrong] , either. There was something appealing about the idea of ripping the entire Multiverse in two, of taking it and pulling out the soft pieces, the delicious sweet centers …
Flashes of the Phyrexian invasion filled her thoughts, monsters spreading through her beloved campus, monsters that had been friends and classmates and professors only moments before. She scrabbled to claw at her own plaster-hard skin, remembering their porcelain transformations. #emph[Was this really so different? Was this just another form of Phyrexia?]
#emph[Was there any way out?] As the resounding #emph[no] echoed through her thoughts, she screamed and fell to the ground, body breaking from the inside as it blossomed into a new, smaller version of the creature from before, finally consumed, finally home—
And she was looking at the door to Strixhaven, her fateshifter a burning coal against her skin. She whipped around, grabbing Tyvar's arm.
"Let the camouflage go," she begged.
"But why? It protects us, keeps us strong—"
"It's #emph[eating] us!"
Tyvar frowned. A hero would protect her, and yet he wanted to devour her. "…yes," he said, reluctantly.
The plaster bled out of their skins until they were themselves again. Zimone exhaled in relief. "Okay," she said. "We have to look like part of the House, or it attacks us, but we can't stay that way forever, or it attacks us in a different way."
"I'm sorry," said Tyvar, sounding stricken. "The things I was thinking of doing to you—I'm so sorry. A hero should never."
"Come on." Zimone grabbed his arm, hurrying across the room to the exit. There was a long hall beyond, much like all the others they had seen. "You can still hide us: we just can't hold it for too long. We need to fool the House in other ways." She shifted her books to hold under one arm and grabbed a boxy device from the floor where it had fallen, slinging it over her shoulder. "Find something you can carry—or better, wear. Maybe if we look like we're from this place, it won't want us so badly. You could use a shirt or something."
Tyvar rummaged around the nearest set of shelves, pulling out a tattered vest. He shrugged it on. "Will this suit?"
Zimone looked at him, his chest and midriff still exposed, and swallowed a sigh. "It's great," she said. "Let's keep going."
No longer concealed from the many eyes of the House, they began moving again, away from the room of doors, heading for an unknown destination.
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
Nashi led the way, with the rest of the group close behind, the glimmering shape of Kyodai floating over the Wanderer's shoulder as they walked. Niko hung back, keeping pace with Winter, who they watched warily.
"Have you been alone here all this time?" they asked.
Winter frowned. "How long do you mean?" he replied. "I'm not from here. Not originally. My best friend and I, we walked through one of those doors years ago. We spent a long time navigating the House on our own. She's … she's gone now."
The pain in his voice was impossible to ignore. Niko grimaced sympathetically, looking away. "I'm sorry," they said. "That must have been hard. But you're with us now. We're going to find a way out of here, and we'll take you with us, if you're ready to leave this place."
"I've been ready since I got here," said Winter.
At the front of their group, the Wanderer turned to Nashi. "I wish you would look at me," she said.
"Why?" he asked. "I know what you look like. We go this way." He turned, and the rest of them followed.
"Because I'd like to see your face while we discuss what's to be done next."
"There's nothing to discuss. This house took my mother. We're going to get her back."
"Nashi …"
"Phyrexia took my mother, and she came home. Then #emph[you] took my mother, and she came back. She doesn't leave me. That means I don't leave her."
"Nashi—"
One of the remaining nezumi touched her arm. She looked over. "We tried. When we realized the door was a lure, and this was a trap, we tried. He won't hear you. His mourning isn't over yet."
The Wanderer looked at Nashi, lips pressed into a thin line, and said nothing as the group continued on.
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
No more nightmares had come to attack Jace and Kaito. That was a good thing. The basement seemed to go on forever, worming its way deeper and deeper into the earth. Stairs went down but never up. No windows appeared.
Basement gave way to boiler room to underground storage to an empty atrium whose glass ceiling looked out upon a sky spangled with unfamiliar stars to a great cavern that would have seemed natural if not for the patches of bare brick showing through the broken stone. There was a door on the far end. Jace and Kaito started toward it and were halfway there when the floor gave way beneath their feet and they fell, not into nothingness, but into a pit filled with some thick, gelatinous substance that stung their skins and clutched at their limbs, making it difficult to move.
Rungs on either wall of the pit seemed to offer a way out. Kaito worked his way toward the nearer of them, Himoto chittering encouragement in his ear, the gel slowing him to a crawl. Straining, he managed to brush his fingertips against the metal and shouted as he felt manacles clasp around his ankles.
Jace gasped, and Kaito glanced at him. "It just grab you?" he asked.
"Shackles," said Jace. "We're properly trapped."
"Maybe." There was enough give to whatever was holding them that Kaito was able to work his way back over to Jace, then look down, using his telekinesis to shove the gel away and form a narrow tunnel. He was panting by the time the other man's feet came into view.
"That's … all I can … I can't hold the gel #emph[and] work the locks," he said. "But Himoto can."
The drone ran down his arm to leap onto Jace's leg as the chains on their ankles lurched downward, pulling them deeper. A few more tugs like that and they would drown.
Himoto began working at the locks on Jace's shackles, manipulating the tumblers until they clicked open. Jace pulled his feet up, grabbing for the nearest rung on the wall. This time, nothing came to grab for him. He reached back, offering Kaito his arm. "I'll help hold you up," he said. "Keep your focus, and we'll get us both out of … here …"
His voice trailed off as he stared at something overhead. Kaito tilted his head back, following Jace's gaze.
There, projected on the ceiling, was Vraska, shielding a small, orange-furred creature with her body as she shied away from a group of creatures that appeared to be made entirely from blades.
"I can't," said Jace. He looked back at Kaito. "I'm so sorry. He's too important."
Before Kaito realized what was happening, Jace began to climb. Every time he touched a rung beyond the first, the manacles on Kaito's ankle jerked him farther downward.
"Jace! Come back here, you—" he howled, before he was pulled under.
He felt Himoto latch onto his leg. The manacles gave another jerk, pulling him deeper. He couldn't open his eyes without getting the gel in them, and he couldn't breathe.
#emph[I am so sorry, my friends; I should have broken his nose when I had the chance] , he thought, and planeswalked away, back to Ravnica, back to the beginning, where he might yet survive.
|
|
https://github.com/Mc-Zen/quill | https://raw.githubusercontent.com/Mc-Zen/quill/main/tests/wire/plain%20vertical%20wire/test.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 0pt)
#import "/src/quill.typ": *
#quantum-circuit(1, ctrl(1, show-dot: false), 1, [\ ], 3) |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/text/linebreak-06.typ | typst | Other | // Test forcing an empty trailing line.
Trailing break \ \
|
https://github.com/atahanyorganci/resume | https://raw.githubusercontent.com/atahanyorganci/resume/main/resume.typ | typst | MIT License | #set page(paper: "a4", margin: (left: 0cm, right: 0cm, top: 0.75cm, bottom: 0.75cm))
#set text(font: "Mulish")
#let primary = rgb(49,60,78)
#let secondary = rgb(68,147,153)
#show heading.where(level: 1): it => block(
inset: (top: 4pt, bottom: 4pt),
text(size: 16pt, weight: 700, hyphenate: false, upper(it))
)
#show heading.where(level: 2): it => text(size: 12pt, weight: 700, hyphenate: false, it)
#set block(above: 5pt, below: 5pt)
#set par(justify: true)
#let date_range2str(range) = {
let start = range.start
let end = "Present"
if "end" in range {
end = range.end
}
return start + " - " + end
}
#let decorated(width, height, margin, color, content) = grid(columns: (width, auto),
rect(width: width, height: height, fill: color),
block(inset: (left: margin, right: width + margin), content)
)
#let hero_section(content) = decorated(0.5cm, 39pt, 0.25cm, primary, {
set block(above: 0pt, below: 0pt)
par(text(primary, size: 25pt, weight: 600, content.name))
v(10pt)
par(text(secondary, size: 14pt, content.title))
v(12pt)
par(justify: true, text(size: 10pt, content.description))
})
#let quick_link(content, icon, href: none, order: "i-c", spacing: 4pt) = style(styles => {
let size = measure(content, styles)
let top = (size.height - 10pt) / 2
let img = image(icon, width: 10pt, height: 10pt)
let img_box = box(baseline: -top, inset: (left: spacing), img)
let combined = block[#content #img_box]
if order == "c-i" {
combined = block[#img_box #content]
}
if href == none {
combined
} else {
link(href, combined)
}
})
#let quick_links(links) = align(right, block(inset: (right: 1.5cm), {
set block(above: 12pt, below: 12pt)
set text(10pt)
if "email" in links {
let href = "mailto:" + links.email
quick_link(links.email, "icons/mail.png", href: href)
}
if "location" in links {
quick_link(links.location, "icons/pin.png")
}
if "linkedin" in links {
let bare = "linkedin.com/in/" + links.linkedin;
let href = "https://" + bare;
quick_link(bare, "icons/linkedin.png", )
}
if "github" in links {
let bare = "github.com/" + links.github;
let href = "https://" + bare;
quick_link(bare, "icons/github.png", href: href)
}
}))
#let institution(content) = {
let date = date_range2str(content.dates)
decorated(0.5cm, 30pt, 0.25cm, secondary, block(inset: (bottom: 4pt))[
== #content.degree
#par(justify: false, content.school)
#if "gpa" in content {
grid(columns: (1fr, auto, 1fr),
align(left, text(secondary, size: 8pt, emph(content.location))),
align(center, text(secondary, size: 8pt, emph("GPA: " + content.gpa))),
align(right, text(secondary, size: 8pt, emph(date)))
)
} else {
grid(columns: (1fr, auto),
align(left, text(secondary, size: 8pt, emph(content.location))),
align(right, text(secondary, size: 8pt, emph(date)))
)
}
#if "notes" in content {
for note in content.notes {
[- #text(size: 10pt, note)]
}
}
])
}
#let education(content) = {
block(inset: (left: 0.75cm), [= Education])
for i in content {
institution(i)
}
}
#let work_place(content) = decorated(0.5cm, 30pt, 0.25cm, secondary, block(inset: (bottom: 6pt))[
== #content.title
#par(justify: false, content.company)
#grid(columns: (1fr, auto),
align(left, text(secondary, size: 8pt, emph(content.location))),
align(right, text(secondary, size: 8pt, emph(date_range2str(content.dates))))
)
#if "companyDescription" in content {
text(size: 8pt, fill: black.lighten(40%), content.companyDescription)
parbreak()
}
#block(text(secondary, size: 10pt, emph("Achievements/Tasks")))
#if "jobDescription" in content {
block(text(size: 10pt, content.jobDescription))
}
#if "tasks" in content {
for task in content.tasks {
[- #eval("[" + task + "]")]
}
}
])
#let work_experience(content) = {
block(inset: (left: 0.75cm), [= Work Experience])
for i in content {
work_place(i)
}
}
#let pill(color, border_color, text_color, content) = {
if text_color == none {
text_color = black
}
let it = text(fill: text_color , content)
let button = rect(fill: color, outset: (left: 1pt, right: 1pt), radius: 3pt, it)
return box(inset: (left: 2pt, right: 2pt), button)
}
#let skills(arr) = {
heading("Skills")
for skill in arr {
pill(primary, none, white, skill)
}
}
#let personal_project(content) = block(inset: (bottom: 6pt, right: 0.75cm),{
grid(columns: (1fr, auto),
align(left, [== #content.name]),
align(right + bottom, text(secondary, size: 8pt, emph(date_range2str(content.dates))))
)
eval("[" + content.description + "]")
if "git" in content {
quick_link("Repository", "icons/git.png", href: content.git, spacing: 2pt, order: "c-i")
}
})
#let personal_projects(content) = {
block(outset: (left: 0.75cm), [= Personal Projects])
for i in content {
personal_project(i)
}
}
#let languages(content) = {
set par(justify: false)
heading("Languages")
let content = content.map(it => block(inset: (bottom: 4pt), {
par(it.name)
par(text(secondary, size: 8pt, emph(it.level)))
if "notes" in it {
par(text(secondary, size: 8pt, emph(it.notes)))
}
}))
grid(columns: (1fr, 1fr), ..content)
}
#let interests(content) = {
block(outset: (left: 0.75cm), [= Interests])
for i in content {
pill(none, primary, none, i)
}
}
#let content = json("content.json");
#grid(columns: (60%, 40%), hero_section(content), quick_links(content.links))
#v(0.25cm)
#line(length: 100%)
#show: rest => columns(2, rest)
#education(content.education)
#work_experience(content.workExperience)
#skills(content.skills)
#personal_projects(content.personalProjects)
#languages(content.languages)
#interests(content.interests)
|
https://github.com/Hobr/njust_thesis_typst_template | https://raw.githubusercontent.com/Hobr/njust_thesis_typst_template/main/template/thesis.typ | typst | MIT License | #import "../lib.typ": njustThesis
// 配置
#show: njustThesis.with(
// 类型
type: "xgsLesson",
// 信息
info: (
// 标题
title: "南京理工大学是?",
titleEn: "Nanjing University of Science and Technology is What",
// 摘要
abstract: [南京理工大学是隶属于工业和信息化部的全国重点大学,学校由创建于1953年的新中国军工科技最高学府中国人民解放军军事工程学院(简称“哈军工”)分建而成,经历了中国人民解放军炮兵工程学院、华东工程学院、华东工学院等发展阶段,1993年更名为南京理工大学。1995年,学校成为国家首批“211工程”重点建设高校;2000年,获批成立研究生院;2011年,获批建设“985工程优势学科创新平台”;2017年,学校入选“双一流”建设高校,“兵器科学与技术”学科入选“双一流”建设学科;2018年,王泽山院士获得国家最高科学技术奖,同年,学校成为工信部、教育部、江苏省共建高校。进入新时代、开启新征程,学校坚持“以人为本,厚德博学”的办学理念,秉持“进德修业,志道鼎新”的校训,弘扬“团结、献身、求是、创新”的校风,以服务国家战略需求、推动社会进步为使命,为党育英才、为国铸利器,围绕陆海空天信融合发展,向特色鲜明世界一流大学的目标奋勇前进。],
abstractEn: [Nanjing University of Science and Technology is a national key university affiliated to the Ministry of Industry and Information Technology. The school was established in 1953 by the Chinese People's Liberation Army Military Engineering College (referred to as "Harbin Military Industry"), the highest institution of military science and technology in New China. It has experienced China's It was in the development stage of the People's Liberation Army Artillery Engineering College, East China Institute of Engineering, and East China Institute of Technology. In 1993, it was renamed Nanjing University of Science and Technology. In 1995, the school became one of the first batch of national "211 Project" key universities; in 2000, it was approved to establish a graduate school; in 2011, it was approved to build the "985 Project Advantageous Discipline Innovation Platform"; in 2017, the school was selected for the "Double First-Class" construction At the university, the "Weapons Science and Technology" discipline was selected as a "Double First-Class" construction discipline; in 2018, <NAME> won the country's highest science and technology award. In the same year, the school became a university jointly built by the Ministry of Industry and Information Technology, the Ministry of Education, and Jiangsu Province. Entering a new era and embarking on a new journey, the school adheres to the school-running philosophy of "people-oriented, virtuous and knowledgeable", upholds the school motto of "advancing morals, cultivating talents, and pursuing innovation", and promotes the school spirit of "unity, dedication, truth-seeking, and innovation" to serve the country It takes strategic needs and promotes social progress as its mission, educates talents for the party and forges weapons for the country, focuses on the integrated development of land, sea, air, space and information, and marches forward bravely towards the goal of becoming a world-class university with distinctive characteristics.],
// 关键词
keywords: "南京理工大学 华东工学院 华东工程学院 炮兵工程学院 军事工程学院",
keywordsEn: "NJUST; Nanjing; University; 211; 984",
// 日期
date: "2024年5月18日",
// 语言
lang: "zh"
),
// 作者
author: (
(
// 姓名
name: "张三",
nameEn: "<NAME>",
// 学生证号
studentid: "922114514101",
// 班级号
classid: "9221145141",
// 学院
department: "X学院",
departmentEn: "School of XX",
// 专业
major: "XX专业",
majorEn: "XX Major",
),
),
// 指导老师
supervisor: (
(
// 姓名、职称
name: "李四教授",
nameEn: "<NAME>"
),
),
// 参考文献
reference: "ref.bib",
// 双面打印
twoside: false,
)
// ---------- 正文
// 引言
#include "chapter/1.typ"
// 第二章
#include "chapter/2.typ"
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/superb-pci/0.1.0/formatters.typ | typst | Apache License 2.0 |
#let orcidLogo(
// The ORCID identifier with no URL, e.g. `0000-0000-0000-0000`
orcid: none,
) = {
/* Logos */
let orcidSvg = ```<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"><path fill="#AECD54" d="M21.8,12c0,5.4-4.4,9.8-9.8,9.8S2.2,17.4,2.2,12S6.6,2.2,12,2.2S21.8,6.6,21.8,12z M8.2,5.8c-0.4,0-0.8,0.3-0.8,0.8s0.3,0.8,0.8,0.8S9,7,9,6.6S8.7,5.8,8.2,5.8z M10.5,15.4h1.2v-6c0,0-0.5,0,1.8,0s3.3,1.4,3.3,3s-1.5,3-3.3,3s-1.9,0-1.9,0H10.5v1.1H9V8.3H7.7v8.2h2.9c0,0-0.3,0,3,0s4.5-2.2,4.5-4.1s-1.2-4.1-4.3-4.1s-3.2,0-3.2,0L10.5,15.4z"/></svg>```.text
if (orcid == none) {
// Do not
box(height: .7em, baseline: -20%, [#image.decode(orcidSvg)])
return
}
link("https://orcid.org/" + orcid)[#box(height: .7em, baseline: -20%)[#image.decode(orcidSvg)]]
}
#let display_authors(authors) = {
if authors.len() > 0 {
set text(17pt)
block()[
#authors.map(author => {
author.name
h(1pt)
if "affiliations" in author {
super(typographic: false)[#author.affiliations]
}
if "orcid" in author {
orcidLogo(orcid: author.orcid)
}
}).join(", ", last: ", and ")
]
}
}
#let display_affiliations(affiliations) = {
if affiliations.len() > 0 {
block()[
#affiliations.map(affiliation => {
super(affiliation.id)
h(1pt)
affiliation.name
}).join(", ")
]
}
}
#let display_abstract(abstract) = {
block()[
#text(size: 20pt)[*Abstract*]
#linebreak()
#abstract
]
}
#let generate_header(authors, fill: black) = {
let header_authors = if authors.len() > 2 {
authors.at(0).name + " et al."
} else if authors.len() > 0 {
authors.map(author => {author.name}).join(" & ")
} else { "" }
set align(center)
set text(fill)
block(width: 21cm - 2in + 2cm)[
#locate(loc => {
if loc.page() > 1 {
if calc.odd(loc.page()) {
header_authors
h(1fr)
counter(page).display()
} else {
counter(page).display()
h(1fr)
header_authors
}
box(line(length: 100%, stroke: 1pt + fill))
}
})
]
}
#let generate_footer(fill: black) = {
set align(center)
block(width: 21cm - 2in + 2cm)[
#locate(loc => {
if loc.page() > 1 {
box(line(length: 100%, stroke: 1pt + fill))
set text(fill)
counter(page).display()
}
})
]
}
#let table_note(body) = {
set align(center)
block(width: 21cm - 2in - 3cm, above: .55em)[
#set text(9pt)
#set align(left)
#body
]
}
#let appendix(body) = {
counter(heading).update(0)
set heading(
numbering: "A.1",
supplement: [Appendix],
)
show heading.where(level: 1): it => [
#set align(center)
#set text(size: 12pt, weight: "bold")
#block(above: 2em, below: 1em)[
#it.supplement #counter(heading).display(): #it.body
]
]
show heading.where(level: 2): it => [
#set text(weight: "bold", size: 11pt)
#block(above: 1.6em, below: 1em)[
#counter(heading).display()#h(.5em)#it.body
]
]
show heading.where(level: 3): it => [
#set text(style: "italic", size: 11pt)
#v(1.6em)
#counter(heading).display()#h(.5em)#it.body.#h(.5em)
]
body
}
|
https://github.com/jamesrswift/springer-spaniel | https://raw.githubusercontent.com/jamesrswift/springer-spaniel/main/src/package/board-n-pieces.typ | typst | The Unlicense | #import "@preview/board-n-pieces:0.4.0": *
#let piece(body) = layout((lyt)=>text(size: lyt.height * 0.75, body))
#let old-board = board;
#let board(highlight: red.lighten(50%),..args) = old-board(
white-square-fill: white,
highlighted-white-square-fill: highlight,
black-square-fill: white.darken(50%),
highlighted-black-square-fill: highlight.darken(50%),
arrow-stroke: .175em + highlight.saturate(50%),
stroke: 0.5pt,
display-numbers: true,
square-size: 2em,
pieces: (
P: piece[♙],
N: piece[♘],
B: piece[♗],
R: piece[♖],
Q: piece[♕],
K: piece[♔],
p: piece[♟︎],
n: piece[♞],
b: piece[♝],
r: piece[♜],
q: piece[♛],
k: piece[♚],
),
..args
) |
https://github.com/max-niederman/MTH311 | https://raw.githubusercontent.com/max-niederman/MTH311/main/hw/2.typ | typst | #import "../lib.typ": *
#show: homework.with(title: "Math 311 Homework #2")
= 1.4.10
_Proposition_:
For $x, y, z in RR$,
- If $0 <= x < epsilon$ for all $epsilon > 0$, then $x = 0$.
- In general, $y <= z$ is equivalent to the statement that $y < z + epsilon$ for all $epsilon > 0$.
_Proof_:
=== Statement Two (Implication)
By contradiction, assume that $y <= z$ but there exists some $epsilon > 0$ such that $y >= z + epsilon$.
By (O3),
$
epsilon &> 0 \ "and" space
z + epsilon &> z "."
$
If $y >= z + epsilon$, then either $y > z + epsilon$ or $y = z + epsilon$ by definition. If $y = z + epsilon$, then $y > z$ by the above inequality. If $y > z + epsilon$, then we have $y > z$ by (O2).
In either case, we have a contradiction to the assumption that $y <= z$. Therefore, $y <= z$ implies that $y < z + epsilon$ for all $epsilon > 0$.
=== Statement Two (Converse)
By (O1), exactly one of $y < z$, $y = z$, or $y > z$ is true.
If $y > z$, then
$
y &> z "," \ "so" space
y - z &> 0 "."
$
So, by substituting $y - z$ for $epsilon$ in the premise, we have
$
y &< z + (y - z) ";" \ "therefore" space
y &< y "."
$
Which is a contradiction, so either $y < z$ or $y = z$.
Hence, $y <= z$ by definition.
=== Statement One
By substituting zero for $z$ and $x$ for $y$ in statement two,
we find that
$
x <= 0
"is equivalent to" &x < 0 + epsilon "for all" epsilon > 0 "," \
"and therefore to" &x < epsilon "for all" epsilon > 0 "."
$
And we are given that $x < epsilon$ for all $epsilon > 0$,
so we can conclude that $x <= 0$.
However, we are also given that $0 <= x$,
so $x = 0$.
#sym.qed
= 1.5.5
== (a)
_Proposition_:
If $A$ is bounded below, $-A$ is bounded above.
_Proof_:
Let $L$ be a lower bound of $A$.
Then, for all $a in A$, $L &<= a$. Negating this inequality yields $-L &>= -a$ for all $a in A$.
Therefore, $-L$ is an upper bound of $-A$,
because every element in $-A$ is the opposite of some element in $A$.
Hence, $-A$ is bounded above.
#sym.qed
== (b)
_Proposition_:
If $A$ is bounded below, then $A$ has an infimum in $RR$ and $inf A = -sup(-A)$.
_Proof_:
By (a), $-A$ is bounded above and the completeness axiom guarantees that $-A$ has a supremum in $RR$.
The supremum is an upper bound, so
$
forall x in -A, &space sup(-A) >= x ";" \
forall x in {-a | a in A}, &space sup(-A) >= x ";" \
forall a in A, &space sup(-A) >= -a ";" \ "and"
forall a in A, &space -sup(-A) <= a "."
$
Therefore, $-sup(-A)$ is a lower bound of $A$.
Now suppose that $L > -sup(-A)$ is another lower bound of $A$.
By the same logic as in (a), $-L$ is an upper bound of $-A$.
However, negating the inequality $-L &> -sup(-A)$ gives $L < sup(-A)$,
so $L$ is less than the supremum of $-A$,
contradicting the definition of the supremum.
Therefore, there exist no such lower bounds $L$,
and $-sup(-A)$ is the infimum of $A$.
#sym.qed
= 1.5.6
== (a)
_Proposition_:
If $t > 0$ and $A$ is bounded above, then $t A$ is bounded above and $sup(t A) = t sup A$.
_Proof_:
By the definition of the supremum, for all $a in A$, $a &<= sup A$.
Because $t > 0$, we can multiply both sides by $t$ to get $t a &<= t sup A$.
As elements of $t A$ take the form $t a$, $t sup A$ is an upper bound of $t A$.
Now suppose that $N < t sup A$ is another upper bound of $t A$.
That is, $x <= N$ for all $x in t A$.
Each element $a in A$ has a corresponding element $t a in t A$,
so $t a <= N$ for all $a in A$.
Dividing both sides by $t$ gives $a <= N / t$ for all $a in A$,
so $N / t$ is an upper bound of $A$.
However, dividing both sides by $t$ also gives $N / t < sup A$,
contradicting the definition of the supremum.
Therefore, any upper bound of $t A$ must be greater than or equal to $t sup A$,
which is an upper bound, so $sup(t A) = t sup A$.
#sym.qed
== (b)
_Proposition_:
If $t < 0$ and $A$ is bounded above, then $t A$ is bounded below and $inf(t A) = t sup A$.
_Proof_:
By the definition of the supremum, for all $a in A$, $a &<= sup A$.
Because $t < 0$, we can multiply both sides by $t$ and flip the inequality to get $t a &>= t sup A$.
As elements of $t A$ take the form $t a$, $t sup A$ is a lower bound of $t A$.
Now suppose that $L > t sup A$ is another lower bound of $t A$.
That is, $x >= L$ for all $x in t A$.
Each element $a in A$ has a corresponding element $t a in t A$,
so $t a >= L$ for all $a in A$.
Dividing both sides by $t$ gives $a >= L / t$ for all $a in A$,
so $L / t$ is a lower bound of $A$.
However, dividing both sides by $t$ also gives $L / t < sup A$,
contradicting the definition of the supremum.
Therefore, any lower bound of $t A$ must be less than or equal to $t sup A$,
which is a lower bound, so $inf(t A) = t sup A$.
#sym.qed
= 1.5.8
_Proposition_:
Let $A, B subset RR$ be nonempty and bounded below.
Then $A subset B$ implies that $inf A >= inf A$.
_Proof_:
The infimum of $B$ is a lower bound of $B$.
That is, $inf B <= b$ for all $b in B$.
Because $A subset B$, $a in A$ implies $a in B$,
so $inf B <= a$ for all $a in A$.
Therefore, $inf B$ is a lower bound of $A$.
And by definition, $inf A$ is greater than or equal to all lower bounds of $A$,
so $inf A >= inf B$.
#sym.qed
= 1.6.1
== (a)
_Proposition_: The set
$ { 1 + (-1)^n/n : n in NN } $
is bounded above and below,
with a supremum of $3/2$ and an infimum of $0$.
_Proof_:
=== Lower Bound
Observe that
$ abs((-1)^1/1) = 1 <= 1 "." $
Now suppose that for some $k in NN$,
$ abs((-1)^k/k) <= 1 "." $
Then by Proposition 1.4.2, we have
$
abs(-(-1)^k/k) &<= 1 \ "and"
abs((-1)^(k+1)/k) &<= 1 "."
$
Because $k in NN$,
$
0 <& k &<& k + 1 "," \
0 <& k/(k + 1) &<& 1 "," \ "and"
0 <& abs(k/(k + 1)) &<& 1 "."
$
Multiplying $abs(k/(k+1))$ into the previous inequality gives
$
abs((-1)^(k+1)/k) abs(k / (k + 1)) &<= abs(k / (k + 1)) \
abs((-1)^(k+1)/k k / (k + 1)) &<= abs(k / (k + 1)) space &"(by Prop. 1.4.2)" \
abs((-1)^(k+1)/(k + 1)) &<= abs(k / (k + 1)) \
abs((-1)^(k+1)/(k + 1)) &<= 1 &"(by transitivity)" \
$
It therefore follows from the principle of induction that $abs((-1)^n/n) <= 1$ for all $n in NN$.
By Proposition 1.4.2, this implies
$ -1 <= (-1)^n/n <= 1 "." $
We can now add one to each side of the first inequality to get
$ 0 <= 1 + (-1)^n/n ", for all" n in NN "." $
Therefore, zero is a lower bound of the set.
=== Infimum
Zero is also an element of the set (for $n = 1$),
so it is the infimum of the set.
To see why, suppose by contradiction that $L > 0$ is a greater lower bound of the set.
But then $L$ is greater than an element of the set, so it is not a lower bound at all.
=== Upper Bound
Consider the subset where $n$ is even.
Then $(-1)^n = 1$ and the set becomes
$ { 1 + 1/(2n) : n in NN } "." $
This does not change the upper-boundedness or supremum of the set,
because the even terms are strictly greater than the odd terms.
To see why, observe that for any $n in NN$:
+ If $n$ is odd, then
$
-1 &< 0 \ "so" space
-1/n &< 0 \ "and" space
(-1)^n/n &< 0 "."
$
+ If $n$ is even, then
$
0 &< 1 \ "so" space
0 &< 1/n \ "and" space
0 &< (-1)^n/n "."
$
Note also that $1 + 1/(2n)$ is monotonically decreasing in $n$,
so the element where $n = 1$, which is $3/2$, is an upper bound.
=== Supremum
We've shown that $3/2$ is an upper bound which is an element of the set,
so it follows by similar logic to the infimum that $3/2$ is the supremum.
#sym.qed
== (b)
_Proposition_: The set
$ { (3n)/(n+4) : n in NN } $
is bounded above and below,
with a supremum of $3$ and an infimum of $3/5$.
_Proof_:
=== Infimum
First, let us show that $(3n) / (n + 4)$ is monotonically increasing in $n$:
$
0 &< 4 \ "so" space
n^2 + 5n &< n^2 + 5n + 4 "," \ "therefore" space
n(n + 5) &< (n + 1)(n + 4) \
$
And $n$ is a natural number and therefore positive, so
we can divide by $(n + 4)(n + 5)$ to get
$
n / (n + 4) &< (n + 1) / (n + 5) "," \
3n / (n + 4) &< 3(n + 1) / (n + 5) "," \ "and" space
(3n) / (n + 4) &< (3(n + 1)) / ((n + 1) + 4) "."
$
Hence, the element corresponding to $n = 1$ is the minimum, and therefore the infimum, of the set:
$ (3(1)) / ((1) + 4) = 3/5 "." $
=== Supremum
Observe that
$
0 &< 12 "," \ "so" space
3n &< 3n + 12 "," \
3n &< 3(n + 4) "," \ "and" space
(3n)/(n+4) &< 3 "."
$
So $3$ is an upper bound of the set.
Now suppose by contradiction that there exists some $L < 3$ which is also an upper bound of the set.
Define $epsilon = 3 - L$ so that $epsilon > 0$,
and let $n = max(1, ceil(12/epsilon - 4))$ so that $n in NN$ is greater than or equal to $12/epsilon - 4$.
Then consider the element corresponding to $n$.
Because of the definition of $n$, we have
$
n &> 12/epsilon - 4 "," \ "implying" space
n + 4 &> 12/epsilon \ "and" space
epsilon(n + 4) &> 12 "." \ "Hence," space
epsilon &> 12/(n + 4) \ "and" space
3 - epsilon &< 3 - 12/(n + 4) "." \ "Then" space
3 - epsilon &< (3(n + 4) - 12)/(n + 4) "," \ "so" space
3 - epsilon &< (3n) / (n + 4) "," \
3 - (3 - L) &< (3n) / (n + 4) "," \ "and" space
L &< (3n) / (n + 4) "."
$
So there is an element of the set greater than $L$,
contradicting the assumption that $L$ is an upper bound.
Therefore, there exists no upper bound less than $3$,
and $3$ is the supremum of the set.
#sym.qed
== (c)
_Proposition_: The set
$ { (-1)^n + 1/n : n in NN } $
is bounded above and below,
with a supremum of $3/2$ and an infimum of $-1$.
_Proof_:
=== Lower Bound
Suppose that we have some element $a$ in the set.
Then $a = (-1)^n + 1/n$ for some $n in NN$.
Because $n in NN$, we have
$
n &> 0 \ "so" space
1/n &> 0 "," \ "implying" space
(-1)^n + 1/n &> (-1)^n "."
$
Now $(-1)^n$ is either $1$ or $-1$ depending on the parity of $n$,
so $(-1)^n >= -1$. Therefore, by transitivity,
$ (-1)^n + 1/n >= -1 "." $
That is, $-1$ is a lower bound of the set.
=== Infimum
Suppose by contradiction that $L > -1$ is a lower bound of the set.
Then $L + 1 > 0$, so taking the reciprocal gives $1 / (L + 1) > 0$.
Now let $n = 2 ceil(1/(L + 1)) + 1$, so that $n$ is an odd natural number
such that $n > 1 / (L + 1)$.
Because $L + 1 > 0$, we can multiply both sides to get $n(L + 1) > 1$.
Similarly, $n$ is positive so we can divide both sides to get $L + 1 > 1/n$
Subtracting $1$ from each side gives $L > -1 + 1/n$.
Because $n$ is odd, $(-1)^n = 1$.
But then $L > (-1)^n + 1/n$,
so we have an element of the set less than $L$,
contradicting the assumption that $L$ is a lower bound.
=== Supremum
Let $E$ be the subset generated by even $n$.
Then $(-1)^n = 1$ and the set becomes
$ E = { 1 + 1/(2n) : n in NN } "." $
This is always positive, because
$
n &> 0 \ "so" space
1/n &> 0 \ "implying" space
1 + 1/n &> 1 > 0 "."
$
However, the subset generated by odd $n$ is never positive, because
$
n &>= 1 "," \ "implying" space
1/n &<= 1 \ "and" space
-1 + 1/n &<= 0 "."
$
Therefore, the supremum of the set is the supremum of $E$, which is $3/2$
by the same argument as in (a).
#sym.qed
== (d)
_Proposition_: The set
$ { (-1)^n - (-1)^n/n : n in NN } $
is bounded above and below,
with a supremum of $1$ and an infimum of $-1$.
_Proof_:
=== Bounds
Suppose that we have some element $a$ in the set.
Then $a = (-1)^n - (-1)^n/n$ for some $n in NN$.
If $n$ is even, then $(-1)^n = 1$ and $a = 1 - 1/n$.
Note that
$
n &> 0 \ "so" space
1/n &> 0 "," \ "implying" space
0 < -1/n "." \ "Hence," space
1 - 1/n < 1 "."
$
Therefore, $1$ is an upper bound of the set.
Similarly, if $n$ is odd, then $(-1)^n = -1$ and $a = -1 + 1/n$.
Note that
$
n &> 0 \ "so" space
1/n &> 0 "," \ "implying" space
-1 + 1/n &> -1 "."
$
And so $-1$ is a lower bound of the set.
=== Infimum
Suppose by contradiction that $L > -1$ is a lower bound of the set.
Then $L + 1 > 0$, so taking the reciprocal gives $1 / (L + 1) > 0$.
Now let $n = 2 ceil(1/(L + 1)) + 1$, so that $n$ is an odd natural number
such that $n > 1 / (L + 1)$.
Because $L + 1 > 0$, we can multiply both sides to get $n(L + 1) > 1$.
Similarly, $n$ is positive so we can divide both sides to get $L + 1 > 1/n$
Subtracting $1$ from each side gives $L > -1 + 1/n$.
so we have an element of the set less than $L$,
contradicting the assumption that $L$ is a lower bound.
=== Supremum
Suppose by contradiction that $M < 1$ is an upper bound of the set.
Then $1 - M > 0$, so taking the reciprocal gives $1 / (1 - M) > 0$.
Now let $n = 2 ceil(1/(1 - M))$, so that $n$ is an even natural number
such that $n > 1 / (1 - M)$.
Because $1 - M > 0$, we can multiply both sides to get $n(1 - M) > 1$.
Similarly, $n$ is positive so we can divide both sides to get $1 - M > 1/n$
Adding $M - 1/n$ to each side gives $M < 1 - 1/n$.
so we have an element of the set greater than $L$,
contradicting the assumption that $M$ is an upper bound.
#sym.qed
= 1.6.3
_Proposition_:
For any $x in RR$ and $n in NN$, there exists $r in QQ$ such that $|x - r| < 1/n$.
_Proof_:
Because $n$ is positive, we can divide both sides of $0 < 1$ to get $0 < 1/n$.
Similarly, we can divide both sides of $-1 < 0$ to find $-1/n < 0$,
and by transitivity we have $-1/n < 1/n$.
Adding $x$ to both sides of the second inequality gives
$ x - 1/n < x + 1/n "." $
We can now apply the density of the rationals to find that there exists $r in QQ$ such that
$ x - 1/n < r < x + 1/n "." $
Now, subtracting $x$ from all sides gives
$ -1/n < r - x < 1/n "," $
which is equivalent by Proposition 1.4.2 to
$
abs(r - x) &< 1/n "," \
abs(-(r - x)) &< 1/n "," \ "and" space
abs(x - r) &< 1/n "."
$
#sym.qed |
|
https://github.com/loreanvictor/master-thesis | https://raw.githubusercontent.com/loreanvictor/master-thesis/main/feedbacklog.typ | typst | MIT License | #import "/feedbacklog_template.typ": *
#import "/common/metadata.typ": *
#import "/common/feedback.typ": *
#set document(title: titleEnglish, author: author)
#show: feedbacklog.with(
titleEnglish: titleEnglish,
supervisor: supervisor,
advisors: advisors,
author: author,
presentationDate: presentationDate,
feedbacklogSubmissionDate: feedbacklogSubmissionDate,
)
#feedback(
feedback:
"Comparison is only made with existing realtime collaboration algorithms, but not existing software satisfying outlined requirements.",
response:
"Such software typically use a known realtime collaboration algorithm falling under one of the discussed categories. To further clarify this, specific discussion of the one of the most famous diagram editting softwares, tldraw, and its specific underlying library, Yjs, using the YATA approach, was added to the thesis in the third chapter \"Related Work\"."
)
#feedback(
feedback:
"While proper software design and engineering concepts are established, the evaluation of the implemented solution is done only theoretically. Additionally, only the theoretical limitations of presented work are discussed, which might be niche corner cases and differ from real world limitations of the software. Since this work is done in the applied engineering chair, an evaluation, possibly in form of a real-world test of Apollon in collaborative settings, should also be conducted.",
response:
"Real-world testing sessions were conducted, and parameters of these sessions, alongside general learnings (in which cases realtime collaboration in Apollon was found to be useful, missing features and pain points) where added to slides 26 & 27, alongside a detailed report in confluence and corresponding issues on Github."
)
#feedback(
feedback:
"System design diagram is perhaps too much in depth, as it involves concepts such as Middlewares and Reducers.",
response:
"These concepts are basic primitives of Redux-based application architecture, which is the architecture of choice for Apollon. It is thus necessary to use them to outline how the newly implemented realtime collaboration system interacts with Apollon's existing subsystems."
)
#feedback(
feedback:
"In the demo recording, it is not clear that two users are using the system and collaborating with each other. This should be further clarified.",
response:
"The main improvement of the new realtime collaboration system of Apollon over the previous 'naive' implementation is specifically its ability to handle simultaenous changes to the diagram, which makes demos inherently hard to follow. For further clarification, an explanatory description was added to slide 20."
)
#feedback(
feedback:
"The supervisor's name is missing from the title slide.",
response:
"Apologies for the oversight, the title slide was updated with all necessary information including the name of the thesis supervisor."
) |
https://github.com/dermesser/typst_of_jupyter | https://raw.githubusercontent.com/dermesser/typst_of_jupyter/master/README.md | markdown | MIT License | # `typst_of_jupyter`
[](https://github.com/dermesser/typst_of_jupyter/actions/workflows/workflow.yml)
This project aims to convert Jupyter notebooks to PDFs by first generating typst (see [typst.app](https://typst.app))
source code. This has the potential of generating better PDFs than the existing LaTeX route, or through HTML and a
browser.
The goal is achieved by treating markdown and code cells and their results to specifically achieve the best typst code
for each kind. Features such as the built-in source code highlighting of typst are used.
In addition, this approach makes it possible to provide your own style or change the default one.
It is written in OCaml, making it simple to distribute as a binary running mostly anywhere. Binaries will be provided
soon through Github.
## Overview
See [my post on lewinb.net](https://lewinb.net/posts/19_typst_of_jupyter/).
## Usage
From source, using `dune` (OCaml's build tool):
```
dune exec bin/Typst_of_jupyter_main.exe -- --help
```
With a distributed binary:
```
typst_of_jupyter --help
```
The output is stored in the directory specified by `--asset-path`. It contains both extracted attachments and plots, as
well as the `main.typ` file containing the typst source code.
## Status
typst\_of\_jupyter works on basic notebooks (PNG/SVG results, markdown with attachments but no math, source code etc.).
The module converting markdown to typst aims to be reusable outside of this tool.
## To Do
* Enable basic usability, and add command line interface!!
* Conversion of math expressions from TeX (Mathjax) to typst
* Proper scaling of images with weird sizes
* Improved styling possibilities, with option to supply either your own configuration or your own template.
* Directly invoke the `typst` binary after finishing the output.
|
https://github.com/Anastasia-Labs/project-close-out-reports | https://raw.githubusercontent.com/Anastasia-Labs/project-close-out-reports/main/f10-trifecta-of-data-structures-closeout-report/video-transcript/data-structures-video-script.typ | typst | #let image-background = image("../images/background-1.jpg", height: 100%, fit: "cover")
#let image-foreground = image("../images/Logo-Anastasia-Labs-V-Color02.png", width: 100%, fit: "contain")
#let image-header = image("../images/Logo-Anastasia-Labs-V-Color01.png", height: 75%, fit: "contain")
#let fund-link = link("https://projectcatalyst.io/funds/10/f10-osde-open-source-dev-ecosystem/anastasia-labs-the-trifecta-of-data-structures-merkle-trees-tries-and-linked-lists-for-cutting-edge-contracts")[Catalyst Proposal]
#let git-link = link("https://github.com/Anastasia-Labs/data-structures")[Main Github Repo]
#set page(
background: image-background,
paper :"a4",
margin: (left : 20mm,right : 20mm,top : 40mm,bottom : 30mm)
)
// Set default text style
#set text(15pt, font: "Barlow")
#v(3cm) // Add vertical space
#align(center)[
#box(
width: 60%,
stroke: none,
image-foreground,
)
]
#v(1cm) // Add vertical space
// Set text style for the report title
#set text(20pt, fill: white)
// Center-align the report title
#align(center)[#strong[Project Closout Report Script]]
#v(5cm)
// Set text style for project details
#set text(13pt, fill: white)
// Display project details
#table(
columns: 2,
stroke: none,
[*Project Number*], [1000013],
[*Project manager*], [<NAME>],
[*Date Started*], [2023-10-08],
[*Date Completed*], [2024-03-31],
)
// Reset text style to default
#set text(fill: luma(0%))
// Display project details
#show link: underline
#set terms(separator:[: ],hanging-indent: 18mm)
#set par(justify: true)
#set page(
paper: "a4",
margin: (left: 20mm, right: 20mm, top: 40mm, bottom: 35mm),
background: none,
header: [
#align(right)[
#image("../images/Logo-Anastasia-Labs-V-Color01.png", width: 25%, fit: "contain")
]
#v(-0.5cm)
#line(length: 100%, stroke: 0.5pt)
],
)
#v(20mm)
#show link: underline
#show outline.entry.where(level: 1): it => {
v(6mm, weak: true)
strong(it)
}
// Initialize page counter
#counter(page).update(0)
#outline(depth:2, indent: 1em)
#pagebreak()
#set text(size: 11pt) // Reset text size to 10pt
#set page(
footer: [
#set text(size: 11pt, fill: gray)
#line(length: 100%, stroke: 0.5pt)
#v(-3mm)
#align(center)[
*Anastasia Labs – The Trifecta Of Data Structures*
#v(-3mm)
Project Closeout Report Script
#v(-3mm)
// Copyright ©
// #set text(fill: black)
// Anastasia Labs
]
#v(-6mm)
#align(right)[
#counter(page).display( // Page numbering
"1/1",
both: true,
)
]
]
)
// Display project details
#set terms(separator:[: ],hanging-indent: 18mm)
#align(center)[
#set text(size: 16pt)
#strong["The Trifecta of Data Structures: Merkle Trees, Tries, and Linked Lists for Cutting-Edge Contracts"]]
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 1")
#set text(size: 11pt) // Reset text size to 10pt
#v(10pt)
= Introduction
#v(10pt)
\ Hello, Cardano community! I'm <NAME> from Anastasia Labs.
I'm excited to present the closeout report for our project, "The Trifecta of Data Structures: Merkle Trees, Tries, and Linked Lists for Cutting-Edge Contracts."
In this presentation, I'll cover why we embarked on this project, how we executed it, and the outcomes we achieved. Let's dive in!
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 2")
#set text(size: 11pt) //
\ // Which challenge did you enter and why?
== Project Context and Importance
\ First, a bit of context.
We entered the Open Source Dev Ecosystem Challenge because the Cardano ecosystem faces scalability challenges due to constraints like the single UTXO model and the 16kb transaction size limit.
Additionally, there is a noticeable absence of shared design patterns as well as limited practical examples and educational resources for scaling solutions in the Cardano community.
To address these challenges, we focused on implementing robust on-chain data structures —Merkle Trees, Tries, and Linked Lists— in two of Cardano's scripting languages, Aiken and Plutarch.
These structures are essential for enhancing the scalability and efficiency of DApps on Cardano and provide efficient solutions within the blockchain's constraints.
#v(10pt)
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 3")
#set text(size: 11pt) //
\ // What was the approach you submitted in your proposal application which was eventually funded?
= Project Objectives
\ Our primary objectives were:
- To design and develop efficient data structures—Merkle Trees, Tries, and Linked Lists— for the Cardano blockchain in Aiken and Plutarch.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 4")
#set text(size: 11pt) //
- To ensure these data structures are thoroughly tested and production-ready.
- To provide detailed, easy-to-follow documentation to help developers implement these structures.
#v(10pt)
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 5")
#set text(size: 11pt) //
\ // Please explain any particular technical solutions you proposed and the amount of funding you received.
= Execution and Milestones
\ We approached the challenge by doing research on data structures and developing those that could have the biggest impact. We then divided our project into three phases: design and development, testing, and documentation.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 6")
#set text(size: 11pt) //
== Phase 1: Design & Development
\ We successfully designed and developed the following data structures in both Plutarch and Aiken, each with its unique purpose and benefits:
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 7")
#set text(size: 11pt) //
We chose to go with Aiken and Plutarch as opposed to the other Cardano development languages, such as PlutusTx because;
- Aiken, is particularly known for its expressive syntax, strong typing system and is rapidly gaining community adoption whereas,
- Plutarch is known for its ability to manipulate outcomes at a lower level (close to UPLC), which enables more control over the execution of smart contracts, leading to more efficient and compact scripts.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 8")
#set text(size: 11pt) //
- *Merkle Tree:* The Merkle Tree is valuable in proving the presence of arbitrary data within the tree structure. By carrying only the root hash in the script, an efficient and space-saving proof can be generated, ensuring data integrity and validity.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 9")
#set text(size: 11pt) //
- *Trie (Stick Breaking Set):* Developed with comprehensive functionality for Aiken and Plutarch, the Trie is particularly useful in facilitating mutable data storage in scripts by leveraging the sharing of common prefixes. This approach optimizes storage efficiency and enables more extensive data manipulation within the constrained on-chain environment.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 10")
#set text(size: 11pt) //
- *Linked List:* Created to enhance scalability and throughput in smart contracts, the Linked List leverages the EUTXO model to significantly enhance scalability and throughput. By linking multiple UTXOs together through a series of minting policies and validators, it improves the user experience interacting with smart contracts concurrently.
With this outlined approach of the execution of these technical solutions, we received a total funding of ₳238,374 from Catalyst Fund 10. To date, we have received ₳105,000, with ₳133,374 remaining to be distributed upon the completion of all milestones.
Each design pattern was tagged with a release version, enabling the community to track progress and updates.
\
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 11")
#set text(size: 11pt) //
== Phase 2: Thorough Testing
\ We conducted rigorous testing for all three data structures to ensure their robustness and efficiency. Each data structure was subjected to code reviews and thorough unit tests, with results integrated into a CI/CD pipeline.
We ensured that all design patterns passed the unit testing phase successfully.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 12")
#set text(size: 11pt) //
\
== Phase 3: Comprehensive Documentation
\ We focused on creating comprehensive, user-friendly, and visually engaging documentation for each data structure. Our aim was to ensure that developers of varying skill levels could understand, implement, and leverage these data structures effectively. Our documentation includes:
#set text(size: 20pt)
#strong("Slide 13")
#set text(size: 11pt)
Here's an example execution demo of a Merkle Tree
#set text(size: 20pt)
#strong("Slide 14")
#set text(size: 11pt)
- *Merkle Tree:* Detailed guides and practical examples which can be found at.
- Aiken: https://github.com/Anastasia-Labs/aiken-merkle-tree
- Plutarch: https://github.com/Anastasia-Labs/plutarch-merkle-tree
#set text(size: 20pt)
#strong("Slide 15")
#set text(size: 11pt)
Here's an example execution demo of a Trie
#set text(size: 20pt)
#strong("Slide 16")
#set text(size: 11pt)
- *Trie:* Step-by-step instructions and tutorials can be found here;
- Aiken: https://github.com/Anastasia-Labs/aiken-trie
- Plutarch: https://github.com/Anastasia-Labs/plutarch-trie
#set text(size: 20pt)
#strong("Slide 17")
#set text(size: 11pt)
Here's an example execution demo of a Linked Lists
#set text(size: 20pt)
#strong("Slide 18")
#set text(size: 11pt)
- *Linked List:* Clear diagrams and use cases can be found at;
- Aiken: https://github.com/Anastasia-Labs/aiken-linked-list.
- Plutarch: https://github.com/Anastasia-Labs/plutarch-linked-list
All documentation is well-organized, well-structured, and accessible to developers of varying skill levels and can be found in our #git-link: https://github.com/Anastasia-Labs/data-structures
#v(10mm)
// Once your project went live, how did you progress? What learnings and challenges did you find along the way? Were you able to keep the project within the scope of your application? What milestones/KPIs did you set at the outset, and did you achieve them? Importantly, what were the fund challenges, and did you achieve them? What did you not achieve? What other major achievements were there?
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 19")
#set text(size: 11pt) //
= Achievements and Outcomes
\ We are thrilled to share the remarkable outcomes of our project, which we are hopeful will significantly contribute to the Cardano ecosystem:
- *Implementation of Advanced Data Structures:* Our team has pioneered the development and implementation of advanced data structures (Merkle Trees, Tries, and Linked Lists) in Aiken and Plutarch, enhancing the scalability of DApps on Cardano by allowing for more efficient use of the limited 16kb transaction size and the single UTXO model.
- *Extensive Documentation and Tutorials:* As you have seen, we are proud to have enriched the Cardano community with educational resources by providing comprehensive documentation and tutorials to help developers understand and utilize these data structures in their projects, covering the gap of limited scaling solution resources.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 20")
#set text(size: 11pt) //
- *Collaboration with Industry Leaders:* Some of our data structures have already garnered interest from industry leaders such as Sundae Labs. They successfully integrated our LinkedList implementation into their Single Asset Staking library and Taste Test mechanism, showcasing the real-world applicability of our work.
- *Quality Assurance:* Through rigorous code reviews and comprehensive unit tests, we have ensured that our implementations are not only reliable but also efficient, setting a benchmark for future developments in the community.
#v(10mm)
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 21")
#set text(size: 11pt) //
= Key Learnings and Challenges
\ Throughout the project, we encountered several challenges and gained valuable insights:
- *Efficient Data Integrity with Merkle Trees:* We gained a deep understanding of constructing and verifying Merkle proofs, which enhanced our ability to implement secure and efficient data validation processes.
- *Flexibility and Efficiency with Linked Lists:* Leveraging Plutarch’s functional programming paradigm and Aiken’s robust type system to create Linked Lists that are both efficient and easy to maintain highlighted the importance of designing for efficient insertion and deletion operations.
- *Managing Mutable Data with Tries:* We learned to optimize storage by sharing common prefixes and implementing fast update and lookup operations.
- *Further Experience with Plutarch and Aiken:* We got to appreciate Plutarch’s ability to provide more efficient and precise control over data structures, facilitating the construction of intricate data structures and optimizing the performance of smart contracts on the Cardano blockchain.
Aiken’s expressive syntax and strong typing system also contributed to writing more clear and maintainable.
\ // What next for the product/service you have developed? If appropriate, please tell us about any commercialization/exploitation plans you have now that your funded project is complete, particularly whether you are seeking further funding and what the funding would be used for.
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 22")
#set text(size: 11pt) //
// Aiken property based testing:... https://github.com/aiken-lang/fuzz
= Future Prospects and Community Impact
\ These data structures hold immense promise for Cardano’s ecosystem.
As Cardano continues to grow and evolve, developers will seek efficient solutions to overcome scalability challenges. Our data structures provide precisely that—scalability within the blockchain’s constraints.
Imagine DApps that can handle more users, transactions, and complex smart contracts seamlessly. We anticipate early adopters will soon recognize their value, paving the way for broader adoption.
- *Sparking Interest and Collaboration:* We've already generated interest and discussions within the community. By inviting developers to collaborate, participate in our community and twitter spaces, we foster a vibrant ecosystem and accelerate adoption.
- *Continuous Improvement:* Feedback from the community ensures ongoing enhancements, making our data structures even stronger and more reliable.
- *Comprehensive Documentation:* We are committed to improving our documentation with tutorials, real-world examples, and troubleshooting guides, empowering developers of all skill levels.
- *Long-Term Commitment:* We will keep our libraries up-to-date with the ever-evolving Cardano ecosystem, ensuring our data structures remain relevant. By maintaining the open-source approach and transparent development process, we believe will inspire confidence and trust within the community.
#v(10mm)
#set text(size: 20pt) // Reset text size to 10pt
#strong("Slide 23")
#set text(size: 11pt) //
= Conclusion:
\ In conclusion, our project has successfully bridged a critical gap in the Cardano ecosystem by providing essential data structures and comprehensive documentation. We believe these tools will significantly enhance the scalability and functionality of Cardano-based applications.
Thank you for your support and interest in our work.
#set text(size: 20pt)
#strong("Slide 24")
#set text(size: 11pt)
For more information, visit our GitHub repository at:
https://github.com/Anastasia-Labs/data-structures.
If you want to know more about Anastasia Labs or contact us, you can visit
- Our website at https://anastasialabs.com/
- Follow us on twitter at https://x.com/AnastasiaLabs
- Join our discord community: https://discord.com/invite/8TYSgwthVy
See you next time!
Goodbye!
#v(10mm)
|
|
https://github.com/Enter-tainer/typst-preview | https://raw.githubusercontent.com/Enter-tainer/typst-preview/main/docs/templates/gh-ebook.typ | typst | MIT License | #import "@preview/book:0.2.3": *
#import "gh-page.typ": project, part-style
#let _page-project = project
#let _resolve-inclusion-state = state("_resolve-inclusion", none)
#let resolve-inclusion(inc) = _resolve-inclusion-state.update(it => inc)
#let project(title: "", authors: (), spec: "", content) = {
set document(author: authors, title: title)
// inherit from gh-pages
show: _page-project
if title != "" {
heading(title)
}
locate(loc => {
let inc = _resolve-inclusion-state.final(loc)
external-book(spec: inc(spec))
let mt = book-meta-state.final(loc)
let styles = (
inc: inc,
part: part-style,
chapter: it => it,
)
if mt != none {
mt.summary.map(it => visit-summary(it, styles)).sum()
}
})
content
}
|
https://github.com/lucas-bublitz/tUDESC | https://raw.githubusercontent.com/lucas-bublitz/tUDESC/main/README.md | markdown | Creative Commons Zero v1.0 Universal | # tUDESC
Modelo de Trabalho Acadêmico da UDESC em Typst
|
https://github.com/andreasKroepelin/polylux | https://raw.githubusercontent.com/andreasKroepelin/polylux/main/examples/flipbook.typ | typst | MIT License | #import "../polylux.typ": *
#import "@preview/cetz:0.1.0"
#set page(paper: "presentation-16-9", margin: 2em)
#set text(size: 30pt, font: "Kalam")
#polylux-slide[
== A sunrise on Capri
#alternatives-fn(count: 30, position: top+left, subslide =>
cetz.canvas({
import cetz.draw: *
stroke(none)
circle((0, 7), radius: 1pt)
fill(orange)
circle((3, subslide * 3. / 30), radius: 3)
})
)
]
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/tlacuache-thesis-fc-unam/0.1.1/template/main.typ | typst | Apache License 2.0 | #import "@preview/tlacuache-thesis-fc-unam:0.1.1": thesis
#show: thesis.with(
titulo: [Titulo],
autor: [Autor],
asesor: [Asesor],
bibliography: bibliography("references.bib"),
)
#include "capitulo1.typ" |
https://github.com/tibs245/template-typst-CV | https://raw.githubusercontent.com/tibs245/template-typst-CV/main/template.typ | typst | // Constant
#let primaryColor = blue.darken(20%)
#let showSkill(skill) = box(inset: (x: 0.2em), [#box(height: 1em, inset: (top: skill.at("iconInset", default: 0%)) ,skill.icon) #skill.name])
// Project function
#let project(title: "", author: (), skills: (), skillsToPromove: (), body) = {
// Set the document's basic properties.
set document(author: author.name, title: title)
set page(margin: (left: 20mm, right: 20mm, top: 20mm, bottom: 20mm))
set text(font: "Linux Libertine", lang: "fr")
show heading: set text(primaryColor)
show heading.where(
level: 3
): set text(1.3em)
// Title row.
align(center)[
#block(text(weight: 700, 1.75em, primaryColor, title))
]
// Author information.
pad(
top: 0.5em,
bottom: 0.5em,
x: 2em,
align(center)[
#text(size: 1.5em, [#author.name]) \ \
#text(size: 2em, primaryColor.lighten(20%), [*#author.jobTitle*]) \
\
#link("mailto:" + author.email)[#author.email] \
#author.phone \
#if (author.at("twitter", default: "").len() > 0) [
#link("https://twitter.com/" + author.twitter)[
#box(height: 12pt, image("icons/twitter.svg", height: 1.5em))
#author.twitter
]
]
#if (author.at("linkedin", default: "").len() > 0) [
#link("https://linkedin.com/" + author.linkedin)[
#box(height: 12pt, image("icons/linkedin.svg", height: 1.5em))
#author.linkedin
]
]
#if (author.at("github", default: "").len() > 0) [
#link("https://github.com/" + author.github)[
#box(height: 12pt, image("icons/github.svg", height: 1.5em))
#author.github
]
]
]
)
// Skill summary
pad(
top: 5em,
bottom: 2em,
[
#box(stroke: (bottom: 1pt + primaryColor.lighten(60%)), width: 100%, outset: 1em,
[
= SYNTHÈSE
])
\
\
#table(
columns: (auto, 1fr),
stroke: none,
align: start + horizon,
fill: (_, row) => {
if calc.odd(row) {
primaryColor.lighten(90%)
} else {
white
}
},
..skills.keys().map((categoryName) => (
box(heading(level: 2, outlined: false, upper(categoryName))),
box(width: 100%, inset: 0.5em, skills.at(categoryName).values().map(skill =>
showSkill(skill)
).join(" "))
)
).flatten()
)
])
pagebreak()
set page(
margin: (top: 8em, bottom: 20pt),
header: {
set text(gray.darken(60%))
grid(columns: (auto, 1fr),
smallcaps[#author.name \ #author.jobTitle],
{
set align(top + end)
smallcaps[Page #counter(page).display(
"1 sur 1",
both: true,
)
]
}
)
},
)
// Main body.
set par(justify: true)
body
}
#let labelPage(label) = locate(
(loc) => [
#let labelLocation = query(label, loc)
#labelLocation.first().location().page()
]
)
#let linkLabel(content, label) = link(label, [#content #text(gray.darken(30%), smallcaps([\[Détails page #labelPage(label)\]]))])
#let job(enterpriseName, jobTitle, beginingDate, endDate, duration, contexte, missions) = {
[
#box(
fill: primaryColor.lighten(90%),
width: 100%,
inset: 2em,
grid(columns: (auto, 1fr),
[
== #enterpriseName \
#text(primaryColor.darken(30%), weight: "extrabold", jobTitle)
],
[
#set align(end)
#set text(gray.darken(30%), weight: "extrabold")
#beginingDate - #endDate \
#duration
]
),
)
#set list(indent: 2em)
#missions
]
}
#let mission(missionName, role: "", beginingDate: "", endDate: "", duration: "", contexte: "", missions: "", skillsConcerned: (), veryLong: false) = {
if (veryLong) {
pagebreak()
}
block(
inset: 2em,
breakable: veryLong,
[
#box(
fill: primaryColor.lighten(90%),
stroke: (
left: 2pt + primaryColor.lighten(85%),
bottom: 2pt + primaryColor.lighten(85%)
),
width: 100%,
inset: 1em,
grid(columns: (auto, 1fr),
[
== #missionName \
#text(primaryColor.darken(30%), weight: "extrabold", role)
],
[
#set align(end)
#set text(gray.darken(30%), weight: "extrabold")
#beginingDate - #endDate \
#duration
]
),
)
#show heading: it => box(inset: (y: 1em), text(it))
=== Contexte
#contexte
=== Missions
#set list(indent: 2em)
#missions
#block(breakable: false, width: 100%, [
=== Environnement techniques
#set align(center)
#skillsConcerned.map(skill => showSkill(skill)).join(" ")
])
])
}
|
|
https://github.com/AOx0/expo-nosql | https://raw.githubusercontent.com/AOx0/expo-nosql/main/book/src/config.md | markdown | MIT License | # Configuration
When initialising your document with `#show: slides.with(...)`, you can (but
don't have to) provide the following arguments in the form of
```typ
#show: slides.with(
title: "some string",
subtitle: [contents are also possible],
// ...
)
```
- `title`: the title of your presentation, you should probably specify this
- `subtitle`: a subtitle giving a bit of context to the title, not always necessary
- `short-title`: an abbreviated version of the title that is suitable to be shown
on every slide, for example in the footer
- `authors`: either a string or content naming or describing the author, or an
array of strings or contents naming or describing multiple authors
- `short-authors`: an abbreviated version of the authors (as one string or content)
that is suitable to be shown on every slide
- `date`: some kind of spatio-temporal information about when or where your talk
takes place
- `theme`: set a theme other than the default, see [this section](./themes.html)
- `aspect-ratio`: either `"16-9"` (default) or `"4-3"` to specify if you want
PDF pages with aspect ratio 16:9 or 4:3
- `handout`: either `true` or `false` (default), set whether you want to produce
a handout version of these slides (see [this section](./dynamic.html#handout-mode))
The data you provide in this configuration is propagated to the
[theme](./themes.html) which then decides how to display all that.
## A note on the font size
Typst-slides will use a default font size of 25 pt.
If you want to use another one, specify that _after_ the template show-rule, i.e.:
```typ
#show: slides.with(
// ...
)
#set text(size: 20pt)
```
It is overwritten if you put the `#set text(...)` before.
|
https://github.com/VadimYarovoy/CourseWork | https://raw.githubusercontent.com/VadimYarovoy/CourseWork/main/preamble.typ | typst | #import "@preview/tablex:0.0.5": *
#import "@preview/cetz:0.1.2": *
#import "@preview/quill:0.1.0": *
#import "@preview/physica:0.8.0": *
#import "@preview/codelst:1.0.0": *
|
|
https://github.com/jakobjpeters/Typstry.jl | https://raw.githubusercontent.com/jakobjpeters/Typstry.jl/main/docs/source/guides/typst_formatting_examples.md | markdown | MIT License |
# Typst Formatting Examples
This guide illustrates Typst formatting for supported types.
These Typst documents were generated from Julia using `show` with
the `text/typst` MIME type and compiled using a [`TypstCommand`](@ref).
Each row corresponds to a method of [`show_typst`](@ref).
The Typst columns contain the [`code`](@ref), [`markup`](@ref), and [`math`](@ref) syntactical [`Mode`](@ref)s.
Each mode contains two columns, where the first is the Typst source
text and the second is how that text is rendered in a compiled document.
Sequential documents correspond to [Package Extensions](@ref).
!!! tip
Open these images in a new tab or another viewer.



|
https://github.com/LDemetrios/Programnomicon | https://raw.githubusercontent.com/LDemetrios/Programnomicon/main/common/java-kotlin-launch.typ | typst | #import "escape.typ": *
#let launch(
current,
java-files: (:),
kotlin-files: (:),
main: auto,
libraries: (),
group: "org.ldemetrios",
build: auto,
settings: auto,
dependencies: (),
resources: (:),
) = {
let main = if main != auto {
main
} else {
group + ".MainKt"
}
let build = if build != auto {
build
} else {
```
plugins {
kotlin("jvm") version "2.0.0"
application
}
application {
mainClass = "$$main$$"
}
group = "$$group$$"
version = "1.0"
repositories {
mavenCentral()
mavenLocal()
}
tasks.jar {
manifest {
attributes["Main-Class"] = "$$main$$"
}
}
dependencies {
testImplementation(kotlin("test"))
$$deps$$
}
```.text
}
let dependencies = dependencies.map(it => "implementation(\"" + it + "\")").join("\n")
if (dependencies == none) {
dependencies = ""
}
build = build.replace("$$main$$", main).replace("$$group$$", group).replace("$$deps$$", dependencies)
let settings = if settings != auto {
settings
} else {
```
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}
rootProject.name = "untitled"
```.text
}
let setup = (
"build.gradle.kts": build,
"settings.gradle.kts": settings,
)
for (path, java) in java-files {
setup.insert("src/main/java/" + path, java)
}
for (path, kotlin) in kotlin-files {
setup.insert("src/main/kotlin/" + path, kotlin)
}
for (path, res) in resources {
setup.insert(path, res)
}
escape(
current: current,
setup: setup,
command("gradle", "assemble", error: file-format("raw")),
command(
..("java", "-jar", "build/libs/untitled-1.0.jar"),
output: file-format("conjoined-raw", color: "000000"),
error: file-format("conjoined-raw", color: "ff0000"),
),
handler: it => {
let result = if it.at(0).code != 0 {
// Compilation error
let log = it.at(0).output.stderr.text.split("FAILURE: Build failed with an exception").at(0).split(
regex("[\r\n]"),
).map(line => {
if line.contains("src/main/kotlin") {
line.split("src/main/kotlin/").at(1)
} else {
line
}
})
text(fill: red, log.join("\n"))
} else {
// Success
text(size: 1.25em, it.at(1).output)
}
pad(left: 1em, block(stroke: (left: gray), inset: (left: 1em, rest: .5em), result))
},
)
}
#let single-file-sample(
current,
dependencies: (),
add-imports: "",
start-marker: none,
end-marker: none,
show-code: true,
) = doc => {
let code-itself(it) = if show-code {
let it = it.text + "\n"
let code = if start-marker != none and end-marker != none {
it.split(start-marker).slice(1, none).map(part => part.split(end-marker).at(0)).join("\n")
} else if start-marker != none {
let arr = it.split(start-marker)
arr.at(arr.len() - 1)
} else if end-marker != none {
it.split(start-marker).at(0)
} else {
it
}
if (code == none) {
code = ""
}
block(text(size: 1.25em, raw(lang: "java", code)), stroke: black, inset: 1em, width: 100%)
} else {
none
}
show selector(<code>).and(raw.where(lang: "kt")): it => {
code-itself(it)
let imports = it.text.split(regex("[\n\r]")).filter(it => it.starts-with("import"))
let others = it.text.split(regex("[\n\r]")).filter(it => not imports.contains(it)).join("\n")
let code = "package org.ldemetrios\n\n" + add-imports + imports.join("\n") + "\nfun main() {\n" + others + "\n}\n"
launch(
current,
kotlin-files: ("org/ldemetrios/Main.kt": code),
dependencies: dependencies,
)
}
show selector(<file>).and(raw.where(lang: "kt")): it => {
code-itself(it)
launch(
current,
kotlin-files: ("org/ldemetrios/Main.kt": "package org.ldemetrios\n\n" + it.text),
dependencies: dependencies,
)
}
show selector(<code>).and(raw.where(lang: "java")): it => {
code-itself(it)
let imports = it.text.split(regex("[\n\r]")).filter(it => it.starts-with("import"))
let others = it.text.split(regex("[\n\r]")).filter(it => not imports.contains(it)).join("\n")
let code = (
"package org.ldemetrios;\n",
add-imports,
imports.join("\n"),
"\nclass Main {",
" public static void main(String[] args) {",
others,
" }",
"}",
).join("\n")
launch(
current,
main: "org.ldemetrios.Main",
java-files: ("org/ldemetrios/Main.java": code),
dependencies: dependencies,
)
}
show selector(<class>).and(raw.where(lang: "java")): it => {
code-itself(it)
let imports = it.text.split(regex("[\n\r]")).filter(it => it.starts-with("import"))
let others = it.text.split(regex("[\n\r]")).filter(it => not imports.contains(it)).join("\n")
let code = (
"package org.ldemetrios;\n",
add-imports,
imports.join("\n"),
"\nclass Main {",
others,
"}",
).join("\n")
launch(
current,
java-files: ("org/ldemetrios/Main.java": code),
main: "org.ldemetrios.Main",
dependencies: dependencies,
)
}
doc
finish-escape()
}
// java -jar ~/Workspace/_artifacts/TypstEscape.jar --delay 5000 --ask-each . --allow gradle --allow java
#show: single-file-sample(
"/common/java-kotlin-launch.typ",
add-imports: "import sun.misc.Unsafe;\nimport java.lang.reflect.*;",
)
```kt
val name = "Kotlin"
println("Hello, " + name + "!")
for (i in 1..5) {
println("i = $i")
System.err.println("j = $i")
}
``` <code>
```kt
fun a() = "A"
fun main() = println(a())
``` <file>
```java
import java.util.HashMap;
System.out.println("Hello, World");
HashMap<String, String> map = new HashMap<>();
map.put("a", "b");
System.out.println(map.get("a"));
``` <code>
|
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/046%20-%20Streets%20of%20New%20Capenna/006_Episode%203%3A%20Tests.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Episode 3: Tests",
set_name: "Streets of New Capenna",
story_date: datetime(day: 30, month: 03, year: 2022),
author: "<NAME>",
doc
)
= MUSEUM
Initially, the museum had been everything she'd hoped for. It was perched atop of one of the towering buildings of New Capenna in Park Heights. Anhelo had shown her to her "room." A barracks, more like, for new recruits. But she hardly minded.
Elspeth kept mostly to herself. She had no interest in cozying up to the Maestros. Anhelo might have said she was now "part of the family," but Elspeth would never feel such. Their fights were petty to her and methods dubious. These were not the sort Elspeth wanted to associate herself with.
But everything could be tolerated until she found a way to stop Phyrexia.
The sculpture of the Phyrexian remained in the forefront of her mind as she went about her menial tasks in the museum. She saw their monstrous shapes everywhere. Sometimes, Elspeth couldn't be certain she wasn't just inventing their shadowed outlines looming in the backgrounds of cracking portraits of warrior angels. But just when her doubt became strong, she would happen across a painting like the one she held now of a winged figure, praying as clawed hands stretched out of the umbra.
Elspeth turned over the artwork and made some notes in the ledger at her side with a sigh. Another day of cataloguing questionably procured art. Another day of feeling like she was no closer to the answers she needed. Elspeth ran her thumbs over the grooves in the ornate frame. There were secrets here, trapped in these relics of New Capenna's bygone days. But the Capennans who came before hid their tracks well, and she didn't have access to enough information yet to begin piecing together this centuries-old mystery.
But she was fairly certain she knew someone who did: the curator. The leader of the Maestros wasn't collecting all these relics by chance. He knew something, and that theory was what Elspeth continued to stake her time with the Maestros on.
#emph[Speak of the demon. . .]
The door to the cataloging room opened. In walked a horned vampire—Xander, leader of the Maestros. A man and a woman flanked him, intently listening to his hushed words.
She had met the curator and boss of the Maestros briefly when she'd first arrived. After introduction via Anhelo, she had only ever seen him from afar. Even though their interactions had been limited, Elspeth was certain he knew something about the truths of New Capenna and the Phyrexians. Why else would he hoard such knowledge and relics?
Xander's attention swung in her direction, no doubt prompted by her intent stare. Elspeth didn't look away. She had been keeping her head down for weeks now, working hard and doing as she was told. But she wasn't going to allow herself to be forgotten in some back room, relegated to museum bookkeeper forever.
"Go," Xander said to the man and woman at his side, loud enough now for Elspeth to hear. "You have your orders." He then motioned to her.
Elspeth wove through the dusty crates, burlap-wrapped sculptures, and muslin-covered portraits to stand before him. She gave a small bow of her head. Enough to be polite and give him his due. But not enough to be subservient. The Maestros valued loyal soldiers, not bootlickers.
"Walk with me." Xander tapped his cane on the ground for emphasis, the furred cuffs of his belled sleeves nearly covering his hands completely. He led her out of the room and into the museum proper. "How have you found the family?"
"Well enough."
"I hear no complaints about you. Your work is dutiful, skilled, and meeting expectations. Yet, no mention of you seeking to do more, either."
"I am here to learn, not bloody my hands," she answered honestly.
"But the price of knowledge is oftentimes found in the veins of others." Xander's eyes shone like the gold that capped one of the horns that framed his brow like an ivory crown. The other vampires of the Maestros lacked the feature, so it was not some quirk of the local variety on New Capenna.
#figure(image("006_Episode 3: Tests/01.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
"You're saying I must kill to get the information I seek?"
"Not yet." He hummed to himself. "Sending someone to take a life who's not inclined usually ends disastrously. But I'm not a charity. If you want more than you have now, you must work for it."
His cane tapped against the marble, echoing through the main hall of the museum. Pillars rose into the shape of angels that held up the glass ceiling on their backs. Elspeth imagined the very foundations of the city appeared as such: Forgotten founders straining to hold up a temple to excess.
"What do I need to do?"
"A few jobs." Xander came to a stop. "But know that choosing this will start you on the path toward becoming a true member of the family. You'll be in the Maestros for life. So, think carefully if that is truly what you want. For, if it is not~" he pointed to the main entrance of the museum. "You are welcome to leave now. No ill will from us will haunt you."
Elspeth glanced between him and the heavy doors of the museum. She hadn't come this far to back away now. Plus, if death couldn't hold her, Xander certainly couldn't either. No matter what he said, she wasn't about to be trapped anywhere.
She met his eyes. "I'm ready."
= STREETS OF THE MEZZIO
The small package Elspeth carried in a satchel at her side rattled softly. She was grateful Xander had given clear instructions not to open it. She really didn't want to know what was inside. All she had to do was get it from the Museum to a specific door in the Mezzio.
Simple enough.
Elspeth rode one of the city elevators down from the platform in front of the Museum to another hub. From there, she continued her descent. The entire time, she gripped the satchel carrying the parcel tightly. But no one paid her any mind.
She had been expecting there to be some resistance. But she moved effortlessly through the city. #emph[Off a main road, down a side street, a hard left at the fork, across an alley, between two buildings. . .] Elspeth repeated Xander's instructions, following them to the letter.
It led her to an unassuming door, painted a deep navy, so dark it was nearly black in the dingy light of the alley. In place of a knocker or knob was a small sigil that looked like a palm, faintly outlined in charcoal that was only a shade darker than the door itself. The symbol was so subtle, it'd likely be missed every time if one didn't know what they were looking for.
#figure(image("006_Episode 3: Tests/02.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
Elspeth knocked three times, and the door swung open to reveal a young woman. She wore a sloping metal cap, its drooping brim covering the tip of her nose. Elspeth could only vaguely make out her eyes through the slit in its front. The smell of sandalwood and orange drifted on whisps of pale smoke that curled around her shoulders.
#emph[Obscura] , Elspeth realized. Their laundry bags had always faintly reminded her of the incense they'd burned at the temple of Heliod. The scent carried with it an ache of nostalgia, and Elspeth worked to banish Daxos from her mind as he crept to the fore.
Wordlessly, the woman held out her hand. Elspeth placed the package in her palm and promptly left.
= XANDER'S OFFICE
"I hear the package was delivered as promised. No trouble along the way?" Xander asked the moment she entered his office.
The whole museum was luxurious, but it paled in comparison to Xander's private quarters. Chandeliers glittered overhead. The crown molding was ornately carved with portraits of weeping angels and laughing demons. Everything that glittered was gold.
"No trouble at all." Elspeth refrained from asking how he already knew it'd been delivered. She'd come straight back. Then again, he had his ways. And that information wasn't what she'd entered this arrangement for. "Now, about the history of New Capenna?"
"I suppose one should start at the beginning when discussing these things." Xander rose slowly, favoring his left knee slightly. But he didn't take his cane. She'd only seen him use the aid outside of his personal quarters. "Our dear city was founded by an unlikely deal, brokered between archangels and demonlords."
"Working together?" Elspeth followed him over to a portrait hung underneath a spotlight. Sure enough, it depicted a winged angel and horned demon shaking hands.
"The enemy of an enemy is a friend, and that was no truer than during the construction of New Capenna."
"Who was their enemy?" Elspeth had a guess.
"A mystery I still hunt for the answers to." He rubbed his temples as though he was trying to remember something long forgotten, frustration tugging his lips into a line. "But it was a grave enough threat that the angels became consumed with the defense of the plane. Though the details of that time often differ, depending on who you ask." Xander's eyes shone. "The most common tale is that it became clear the demons needed to join the fray as well. When they did, the demons appointed five families to take over the city in their name, drafting a pact with the head of each family."
Her eyes darted up to his horns. Xander didn't miss the look and chuckled darkly.
"Yes, I am, indeed, one of those original signers and have willingly become part demon, in addition to my other sanguine gifts."
"So you were there before the founding?" She asked. "But you don't know who they were fighting?"
"It was so long ago that I signed the contract, time and the magic of the pact have distorted my memories. I was also not present for the great battles that took place~" Xander trailed off, lost in thought a long minute. "It is part of why I hunt for the information now—to fill in the yawning gaps of my memories that threaten to swallow me whole."
Elspeth took pity on the vampire and didn't press the matter further. Instead, she took a different approach, remembering Anhelo's bitter sentiments about the angels leaving. "After the angels and demons disappeared, did the threat vanish as well? Did they win?"
"We're still here, aren't we?"
That much was obviously true. But Elspeth had been hoping for something more concrete to take back to Ajani. Xander spoke before she could formulate another question.
"I think that is enough history for one day." Xander crossed back to his desk, still rubbing his head with one hand. "Await my next orders, and we shall speak again."
= MEZZIO WAREHOUSE
Elspeth shifted, wiggling her toes to try to restore feeling. They had fallen asleep in the first thirty minutes, and she couldn't seem to bring back sensation without standing up. But doing so would give away her position unless she retreated away from the ledge. And that would prevent her from seeing the movements in the street below, so it wasn't an option.
#emph[The informant will come out of the cabaret at approximately two hours past nightfall and then will head to her next location. You'll know her when you see her—she's one of ours. You are to watch her without being seen, making sure she's not bothered] , Xander had instructed.
It was now a few minutes after the scheduled time, and there was still no sign of any Cabaretti vampires—
The green lacquered door to the cabaret opened, and out walked a young woman, skirt swaying around her knees. She laughed, waving to the people still inside. But the moment the door closed, her smile fell and her expression intensified. She strode down the street with purpose.
This was the informant Elspeth had been waiting for.
Elspeth clung to the shadows as she trailed the woman; leaping with light feet along the ornate decoration of the buildings, she kept in mind the lights overhead and how they might reveal her shadow. The informant came to a sudden stop, leaving Elspeth clinging to the back of a statue.
The vampire made a hard turn. Elspeth pursed her lips. #emph[Trouble?] Perhaps the woman had seen something—or someone—she needed to avoid.
Elspeth followed her to a small tunnel that punched through the buildings and connected to a large warehouse. "Where are you going?" Elspeth muttered under her breath, jumping from the statue to an archway that connected the two buildings. She quickly scurried across, crouching low and staying close to the roof. Anyone in the buildings that circled this warehouse would be able to see her, and she had no doubt that she looked #emph[very] suspicious. She needed to get to the street quickly to avoid attention.
Scurrying to a skylight, Elspeth peered down, catching a glimpse of her informant passing through an empty warehouse. No issues yet. It looked like the woman was headed for a door opposite where she entered. Elspeth sprinted to the far edge of the roof; a strip of alley wound between two buildings with mostly smooth facades—nowhere for her to trail from above.
However, off to the side was another alleyway~
#emph[It might work.]
Elspeth dashed to the right side of the warehouse, stepping carefully as not to alert the woman below to her presence. Sure enough, there was another narrow street that ran parallel to the one the informant was headed toward. If what she saw was correct, then she could make it through a small gap in the buildings to catch up to the informant by looping back ahead.
She wedged herself through gaps in the stonework. With a foot and hand on each wall to support herself, Elspeth moved carefully and quickly down to the ground, shimmying one side at a time. She was so focused on not falling that she didn't hear the squeaking and scurrying until a violent shadow lunged at her from the darkness of a nearby alcove.
"What do we have here?" the beast snarled, its furred maw close to her nose. "Fresh meat?"
"Get off me, rat!" Elspeth grunted and heaved the creature away. In truth, it looked more like a raccoon than a rat. But Elspeth wasn't about to correct herself as it snarled.
"We ain't no rats, let's show her, boys!" The raccoonfolk drew a dagger from his side. The alley was frustratingly narrow, making combat difficult. A feat that became even harder when three others like her first attacker launched themselves at her.
#figure(image("006_Episode 3: Tests/03.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
Elspeth dodged the blade and caught the creature by the scruff. "I don't have time for you!" she spun and used him like a battering ram to bowl over the others. To her surprise, it worked. While they were stunned, she took her opportunity to disengage, running down the alley and hoisting herself over a low wall and into the gap in the buildings she'd seen earlier.
She listened while watching and waiting for the informant. The raccoonfolk were beginning to rouse, but it sounded like they hadn't seen where she'd gone. Heaving a sigh of relief, Elspeth continued creeping away, freezing when the informant passed, and then continuing on.
There were no further incidents. Elspeth remained out of sight all the way to the shadowed alcove where the informant came to a stop. The vampire knocked on the door and waited. There was a flash of magic, and the door swung open, revealing an eerie purple light.
Elspeth couldn't make out the words that were exchanged, but they didn't seem hostile, and the woman was invited in.
= XANDER'S OFFICE
"I need a weapon." Elspeth didn't mince words when she entered Xander's office.
"Why, pray tell?" Xander was seated behind his desk, per usual, poring over dusty tomes that Elspeth hadn't seen before. She'd spent enough time cataloging everything that came in and out of the Maestros' museum that she could identify by sight something different. #emph[Special.] It was further confirmation that his rumored archives were somewhere close to his office. Likely connected. That was the real treasure she sought.
"You don't already know?" She arched her brows.
"Contrary to popular belief, I don't know everything that happens in this city." Xander had yet to even look at her.
"Could've fooled me."
"Good. That means I'm doing my job right." He closed the book, finally looking her in the eyes. "The informant?"
"Made it to her destination without issue. Though the same can't be said for me."
"Oh?"
"I was attacked by raccoonfolk."
"Nothing you couldn't handle, I presume?" He arched his brows.
"I'm fine." Elspeth helped herself to one of the two chairs opposite his desk. Xander seemed more amused than perturbed by her boldness. "But I might not be so lucky the next time something lunges at me from the shadows. I need something better than my fists to protect myself."
He steepled his fingers and regarded her thoughtfully. "You will get a weapon when you have earned one and are an officer among us. Until then, you'll need to make do." A sly smile arced across his mouth. "Perhaps, you might find some more rebar and use that?"
Elspeth wasn't sure if she found his remark amusing or insulting. She chose to ignore it and instead moved on, saying, "I held up my end of the bargain, now for yours."
He chuckled, sliding a pendant along the chain at his neck. "Must this always be business? Here I was, about to offer you a nightcap."
Xander lifted a small bottle and two tiny flutes from one of the drawers at his desk. Within the bottle was a faintly glowing substance. At the top, it shimmered like sunlight. Golden. Brilliant. Then it swirled down through deep orange and into a purple as dark as midnight. The solution looked as if the cosmos had been distilled and pushed through a sieve, leaving only the base elements of existence behind in solution that was neither liquid, solid, nor gas—more like pure magic condensed.
#figure(image("006_Episode 3: Tests/04.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
"Is that~" Her voice had fallen to a whisper, as though she sat before the nectar of the gods.
"Halo," Xander affirmed. He removed the crystal stopper, and the bottle released a sparkling sigh that made rings in the air above it before fading. "It seems a shame for you to have been in the city so long without having a taste."
He filled the two glasses to the brim. Even topped off, it was barely more than a sip. Elspeth raised the glass to her lips, studying the strange concoction. A moment of hesitation. Then she imbibed.
She hadn't expected it to be warm. It tasted of content, long, and lazy afternoons with Daxos. It tasted of sentimentality and homes that existed only in her memories and imagination. Consuming it wasn't so much drinking as it was #emph[absorbing] . The Halo filled her with strength, with purpose. Her muscles were no longer exhausted, and her senses were sharper. But most impressive was the surge of magic coursing through her, demanding release.
"I can see its appeal," she admitted, setting the glass back down.
"It's enough for men to fight over. And fight we have." It was a bitter fact and brought the ghost of a scowl to Xander's face. "Halo was the last gift of the angels."
"Why bestow such a gift?" A possible connection was begging to form in the back of her mind. But she needed more information to confirm.
"Who's to know? Perhaps so New Capenna would forever be one grand party." Xander chuckled and shook his head, as if he couldn't believe that explanation himself.
Elspeth didn't buy it in the slightest. Something so powerful and rare as Halo wasn't a cheap amusement. It had to have a purpose. And she was beginning to suspect that purpose might have just been to help defeat the Phyrexians.
= CENTRAL PARK HEIGHTS
Tonight's job was easy enough. The vial of Halo was warm in her breast pocket. Elspeth couldn't tell if it was warm or if merely holding it brought back the sensations of imbibing it. She just had to carry it to one of the wooded meeting areas of Park Heights, drop it off, and leave. No questions. No lingering. In and out.
Compared to the other tasks Xander had given her, this was—quite literally—a walk in the park.
#figure(image("006_Episode 3: Tests/05.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
Still, she kept an eye out for any would-be threats. There were a few late-night wanderers, but none that seemed particularly alarming. Elspeth gave others leeway, choosing darker, more secluded paths that rounded back to the drop point.
Sure enough, there was a brown paper bag left at the foot of a park bench like someone's forgotten lunch. She gave a quick scan of the nearby shrubs and trees and then went right for it.
A hand closed around her wrist as Elspeth reached for the bag.
Her eyes darted up the offending arm and met the emerald gaze of a human woman. Half of her hair was black, the other half white and tightly braided against the side of her head. She was as finely dressed as Xander, though perhaps a bit more utilitarian in her fashion. Elspeth didn't miss the arrow-head motifs in her clothing, likely due to the quiver at her back, and what looked to be a cased bow at her side.
"I was wondering who would come to collect." Her voice was a cool alto.
"I forgot this earlier," Elspeth said. This woman didn't seem like the one who was supposed to collect the Halo Elspeth was delivering. Something about her seemed #emph[different] than the others of New Capenna. She hummed with a natural vibrancy unlike most.
#emph[Ah] , she was like Elspeth, a planeswalker.
"Don't lie," the woman said with a smile. "You don't seem cut out for it." Her eyes flicked over Elspeth, no doubt appraising the Maestro colors. "You also don't seem cut out to work for one of these families, either." The words were curious rather than judgmental.
Elspeth chuckled softly. "I have my reasons."
"I'm sure you do."
"I'm trying to learn more about the history of this plane," Elspeth admitted, deciding she had more to gain than lose by disclosing that information. Perhaps a fellow planeswalker could help her cause. Or perhaps this woman already knew something about New Capenna's history.
"Why?"
"It might be my home," she said softly. #emph[Might be.] But likely wasn't. The place she'd built up as home in her mind since her time in the dungeons as a girl likely didn't exist. She would be forever adrift. "But more importantly, I think a threat is looming and I'm trying to get information on it."
"One most certainly is, and we share motivations. I'm Vivien, by the way."
"Elspeth." She saw no reason for deceit. Elspeth always considered herself a decent judge of character, and Vivien seemed trustworthy.
"Who are you gathering information for?" Vivien asked. Elspeth debated her response for long enough that Vivien said, "Let me guess, the Gatewatch?" Vivien already had Elspeth's interest, but now she had her undivided attention.
"Are you here on their behalf as well?"
"Originally, no. But you know how these things happen. We might be able to—" Vivien jerked her head to the right. Her eyes narrowed slightly. "The goons following you are catching up."
No wonder Xander always seemed to know where she was and how things were going. He #emph[would] send people to tail her.
"I should go before they ask questions about me." Vivien released her. "But I might have some pertinent information for you on this threat."
"You do?" Elspeth took a step forward, voice falling to a whisper. She didn't dare say too much outright.
"I have a lead that could prove interesting. You could come with me and—"
"I can't," Elspeth said hastily. "I have a chance to learn how the New Capennans beat—" she didn't dare say "Phyrexians" outright "—#emph[the threat] before. I can't leave until I have that information."
"Very well." Vivien didn't press the matter, for which Elspeth was grateful. She needed a bit more time, not just for the mission Ajani gave her, but also for herself. "I'll look further into these matters also and contact you when I have more information."
"Why are you helping me?" Elspeth had been in New Capenna for too long. The idea of a stranger doing something for her out of sheer altruism had become foreign.
"Before you become too entrenched in this plane's affairs, you should have all the details of them," she said with a grave note. "Until we meet again."
"When?" Elspeth asked after the woman, not daring to raise her voice.
"When I have something worthwhile." Vivien gave a small nod of her head. "It's been a pleasure to meet you."
The foliage seemed to move around Vivien, #emph[for] #emph[her] , creating a clear path through the brush where there hadn't been one. Magic? Or a trick of how she moved—confident and without hesitation.
She could hear the movements of Xander's men on the path now, too. Elspeth crouched and placed the vial of Halo in the bag. Keeping her head down, she made her way back to the museum.
= XANDER'S OFFICE
"I'm sorry I'm late," Elspeth didn't bother pretending to ignore it. Especially not since he sent men to trail her.
"It's no trouble." He stood before the tall window behind his desk. Elspeth had begun to imagine him as a large bird of prey. As stoic as a statue, but capable of raining death from above should easy pickings cross his path.
"Thank you for waiting up." She came to a stop at his side.
"I have important matters to discuss with you." He glanced her way, a smile gracing his lips. "And, as I've already said, it's no trouble."
She laughed softly with a shake of her head. She might never fully understand this place or its people. And she certainly doubted if she would ever see eye to eye with Xander on most things. But he had never been unkind, and at best, she found herself forging an unlikely kinship with the old philosopher-assassin. No, kinship might be too generous~an understanding, perhaps?
"What are these important matters?" Elspeth asked, grateful that he didn't seem interested in prying into the source of her tardiness.
"What do you know of the Adversary?"
"The name has been mentioned." She'd heard the shadowy individual whispered in the barracks a few times. Always hushed. As if by simply saying his name too loud would invoke him.
"He's a threat to the very fabric of this city." Xander motioned to the window, across the jagged panorama of the skyline, turned pale in the moonlight. "There is peace in New Capenna because there is a balance—an understanding—between the five families. We have respect, trust, and cooperative competition."
"Cooperative?" Elspeth arched her brows.
"Everyone operates within everyone else's budgets, so to speak."
#figure(image("006_Episode 3: Tests/06.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
"What a way to create order and structure."
"It might not be #emph[your] way, but it works." Xander's hands settled on the top of his cane. "We've created order from chaos. A structure people can depend on and thrive within~and have a bit of fun while doing it."
"Fun," Elspeth scoffed under her breath.
Xander heard her. "Yes, #emph[fun] . You should try and enjoy this life a little. It's thrilling—as long as you're on top."
"I wouldn't hold your breath," Elspeth said, deadpan.
"Don't worry, I wasn't." He smirked, briefly, but his expression quickly became grave once more. "The Adversary is a threat to everything. He's strangling the Halo trade and destabilizing the balance we've managed to keep for centuries by making people desperate. If the Adversary controls the majority of Halo, the rest of us will be fighting over scraps. That will mean war."
"What do you want me to do about it?" She cut to the chase.
"You seem competent, resourceful, clever, and diligent. And, perhaps most importantly, you're still unknown in this town. Don't worry, I'm not going to ask you to go up against the Adversary. I want you to infiltrate the Cabaretti."
"What do the Cabaretti have to do with this?"
"The Cabaretti claim to have a way around the Adversary—the Font, a way for them to make unlimited Halo."
"And you want me to steal it?"
"No, of course not. I want you to find out if the rumors are true and, if they are, tell me where the Font is kept and leave a door unlocked. I'll take care of everything else."
"You're sure about this?" Elspeth asked, studying his milky eyes. "Isn't that an affront to the balance between the families?"
"If you do your job right and keep your loyalty to the Maestros a secret, the Cabaretti will be none the wiser of this slight. But their realization of my deceit is a risk I must take. Times change, and these are desperate ones. If I played only by the old rules, then I'd die with them. If war is coming, I will be the one to strike first," he vowed, quiet and deadly. "Which, speaking of~" Xander reached for a knife on the desk. It wasn't quite like the others she'd seen Maestros use—its grip was normal, rather than a horizontal handle perpendicular to the blade. But it was a fine and functional weapon. "This is yours."
"A knife?" She accepted it.
"You wanted one, and you have earned it, as an officer of my Maestros."
Even though she hadn't been looking for a place in this family, Elspeth couldn't stop the small swell of pride at the notion of a job well done. "Thank you."
"Thank me by proving you're worthy. If you succeed, I might gift you with a nicer blade than that when you return."
"I will, but when I return~"
"Yes?" Her determination always seemed to amuse him.
"I don't want another blade; I want access to your archives. I do this last job for you, and no more drip-feeding information. I need #emph[all] of it. There's a greater threat out there than the Adversary. I know I will be able to identify that threat if you give me the information I seek."
Xander was as still as a statue. But she could feel the full weight of his assessment on her shoulders. She wondered if his trackers had heard her conversation with Vivien. If he knew she would bring the information to others.
"Very well," he said, finally. "Do this for me, and all the knowledge in my archives will be yours."
"Good." Elspeth went to leave, but he stopped her.
"Oh, we're not finished yet."
"Pardon?"
Xander's face broadened into an amused smile. "You're not walking into any Cabaretti cabaret dressed like #emph[that] ."
= EPILOGUE – CABARET
Elspeth adjusted the feathered side cape on her right shoulder. She had been wondering the entire way to the cabaret just when Xander had begun working on this outfit. It was impeccably tailored, and the plate fit her chest, shoulders, and hips immaculately while complementing the white silken layers beneath. But perhaps the most impressive element was the scale mail that hugged her legs, made to look like fishnet stockings. The diadem on her brow made her feel like a queen and gave her the confidence she needed to enter the cabaret Xander had directed her to, a location for new Cabaretti recruits.
#figure(image("006_Episode 3: Tests/07.jpg", width: 100%), caption: [Art by: <NAME>], supplement: none, numbering: none)
After a quick scan of the crowded room, Elspeth went right for the bar.
"Halo?" the elf behind the bar asked, placing a small napkin emblazoned with the Cabaretti seal in front of her.
"I'm not here for that. I'm here for a job," she tried to say casually.
"I can't say I stock jobs here, just Halo." They chuckled.
Elspeth was already botching her attempt; she could feel it. She cleared her throat and tried a different approach. "I know the Crescendo is fast approaching and the Cabaretti must be looking for extra hands to help. I'd really like to work for the family."
"You think #emph[I] can make those decisions?" they asked incredulously.
"I think you know the people who can."
"Why would I stick my neck out for some random stranger?" The bartender promptly turned to a leonin who arrived at Elspeth's left. "The usual, songbird?"
"You know me too well, Rocco," she said without looking up from the sheet music she was holding. It was a wonder she could see the staffs past the thick, feathered cuffs and collar of her gown. "Just enough to take the edge off before my set starts, not too much, please."
"You got it." They passed a thimble of Halo to the musician and turned to leave.
"About a job—" Elspeth started, trying to get their attention again.
Rocco gave her a look that said, #emph[Who do you think you are? ] and promptly walked away.
Elspeth bit her lip, picking lightly at the seams of her gloves. She had been too direct, hadn't she? Too forward. This was why she—
The leonin laughed, and it took a moment for Elspeth to realize it was at her expense. "You want work that badly, #emph[hmm] ?" Her voice was lyrical, almost song-like.
"Who's asking?" Elspeth tried to curb her nerves. It didn't work.
"I'm surprised you don't know me." She ran her hands over the sequins of her dress. "Surely, you must have heard of the great songstress, <NAME>?"
"I apologize, I can't say I have." Elspeth immediately wondered if she should've lied for the sake of Kitt's ego.
Luckily, Kitt didn't seem too perturbed. "Then you are in for a real treat. I'm on in less than an hour so be sure to give a listen, miss~?"
"Elspeth."
"Elspeth? Really?"
"Yes." Elspeth was unsure why her name had Kitt's ears twitching.
"Now you #emph[absolutely must] come with me. I know someone who'll be tickled by a name like that." Kitt took the lead, and Elspeth reluctantly followed her to a scalloped alcove lining the walls of the cabaret where two other women sat.
"Kitt, who's this?" The older of the two women raised a single brow. A dog curled at the front of the table raised its head in tandem.
"You tell her." Kitt nudged Elspeth playfully before sliding onto the bench.
"Elspeth."
"Elspeth," the seated woman repeated with amusement. "Never met an Elspeth that wasn't etched on a gravestone. Welcome to the modern day, doll-face. Love the dress, glad you didn't let the ghosts do tailoring that matches the name. I'm Jinnie."
Jinnie. The right hand of Jetmir, the head of the Cabaretti. Fate had smiled on Elspeth, it seemed.
"A pleasure." Elspeth's gaze drifted to the young woman at the table. She seemed underdressed compared to the rest of them. Her clothes were a size too large for her frame, as if she was trying to hide within them.
"This is Giada," Jinnie spoke for the teenager while slowly stroking the purring cat on her lap.
"Nice to meet you, Giada," Elspeth made it a point to speak directly to her. Giada only nodded.
"Elspeth was looking for work, specifically to help with the Crescendo," Kitt said. "She struck me as someone you'd like. With a name like hers and a fashion sense like that, she could be a worthy addition to the floor team."
"You usually have a better sense for these things than even I," Jinnie admitted. She looked to Elspeth. "Is this true?" Elspeth nodded. "Then I think I have a few small jobs for you. Who knows, if you play your cards right, you might be in with the Cabaretti in time for the Crescendo. Trust me when I say, it will be a party you don't want to miss."
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
#grid(
columns: (1fr, 1fr),
gutter: 2em,
figure(image("006_Episode 3: Tests/08.png", height: 40%), caption: [], supplement: none, numbering: none),
figure(image("006_Episode 3: Tests/09.png", height: 40%), caption: [], supplement: none, numbering: none),
)
|
|
https://github.com/PLASTA0728/CV-for-High-School-Student | https://raw.githubusercontent.com/PLASTA0728/CV-for-High-School-Student/main/resume.typ | typst | MIT License | #import "chicv.typ": *
#show: chicv
= Your Name
#fa(envelope) #link("mailto:<EMAIL>") |
#fa(github) #link("https://github.com/yourgithub")[Your GitHub] | #fa(phone) +1 100-000-0000 | #fa(aops) #link("https://artofproblemsolving.com/community/user/000001")[Average AoPSer]
== Education
#cventry(
tl: "Your Present School",
tr: "2022/09 - 2025/6 (Expected)",
bl: "Diploma, Short Intro, etc.",
br: "Shanghai, China"
)[
- Grade 10 Courses:
- Math _(2022 Autumn)_
- Still math hehe _(2023 Spring)_
- Grade 11-12 Courses:
- Should it be math? _(2023 Autumn)_
- Maybe more ...
]
#cventry(
tl: "Your Old School",
tr: "2021/09 - 2022/06",
bl: "Diploma, Short Intro, etc.",
br: "Shanghai, China"
)[
- Rank Top 1% in grade
- Courses: Math
]
== Standardized Tests
=== SAT
1600/1600
=== AP
- Calculus BC 5
== Honors and Awards
=== School
#honor(
tl: "Outstanding Student Award",
tc: "Your School",
tr: "2023/2",
)[Top 5% of students in school in a semester]
=== Mathematics
#multihonor(
honorline(
tl: "Perfect Score",
tc: "AMC 12 2022",
tr: "2022/11"
) +
honorline(
tl: "Honor Roll of Distinction"
) +
honorline(
tl: "Distinction"
) +
honorline(
tl: "Certification of Achievement"
) +
honorline(
tl: "AIME Qualification"
)
)[]
#honor(
tl: "USAMO Qualification",
tc: "AIME 2023",
tr: "2023/2"
)[With a perfect score 15/15 in AIME and USAMO Index 300.]
== Extracurriculum Activities
#cventry(
tl: "Mathematics Club",
tr: "Your School",
bl: "Vice President",
br: "2023/7-2024/7"
)[
- *Emphasization* #lorem(39)
]
#multicventry(
positionline(
tl: "Club",
tr: "Your School"
) +
positionline(
tl: "Present",
tr: "2023/9 - 2024/9 (Expected)"
) +
positionline(
tl: "Vice President",
tr: "2022/9 - 2023/9"
)
)[]
#grade(
tl: "Some Activities with GPA",
tc: "4.00/4.00",
tr: "2022/7"
)[
- *Description of Courses Taken* #lorem(38)
]
#cventry(
tl: "Author of a Book"
)[*Description of content* #lorem(20)
]
== Skills and Interest
- What are your skills?
- What are you interested in?
|
https://github.com/Myriad-Dreamin/shiroa | https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/main/packages/shiroa/media.typ | typst | Apache License 2.0 |
#import "xcommand.typ": xcommand
#let xhtml(..args, tag: none, attributes: (:)) = xcommand(
..args,
{
"html,"
json.encode((
tag: tag,
attributes: attributes,
))
},
)
#let iframe = xhtml.with(tag: "iframe")
#let video = xhtml.with(tag: "video")
#let audio = xhtml.with(tag: "audio")
#let div = xhtml.with(tag: "div")
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/chic-hdr/0.1.0/README.md | markdown | Apache License 2.0 | # Chic-header (v0.1.0)
**Chic-headers** (chic-hdr) is a Typst package for creating elegant headers and footers
## Usage
To use this library through the Typst package manager (for Typst 0.6.0 or greater), write `#import "@preview/chic-hdr:0.1.0": *` at the beginning of your Typst file. Once imported, you can start using the package by writing the instruction `#show: chic.with()` and giving any of the chic functions inside the parenthesis `()`.
## Reference
_Note: For a detailed explanation of the functions and parameters, see Chic-header's Manual.pdf._
While using `#show: chic.with()`, you can give the following parameters inside the parenthesis:
- `width`: Indicates the with of headers and footers in all the document (deafult is `100%`).
- `skip`: Which pages must be skipped for setting its header and footer. Other porperties changed with `chic-height()` or `chic-offset()` are preserved. (default is `()`).
- `even`: Header and footer for even pages. Here, only `chic-header()`, `chic-footer()` and `chic-separator()` functions will take effect. Other functions must be given as an argument of `chic()`.
- `odd`: Sets the header and footer for odd pages. Here, only `chic-header()`, `chic-footer()` and `chic-separator()` functions will take effect. Other functions must be given as an argument of `chic()`.
- `..functions()`: These are a variable number of arguments that corresponds to Chic-header’s style functions.
### Functions
1. `chic-header()` - Sets the header content.
- `left-side`: Content displayed in the left side of the header (default is `none`).
- `center-side`: Content displayed in the center of the header (default is `none`).
- `right-side`: Content displayed in the right side of the header (default is `none`).
2. `chic-footer()` - Sets the footer content.
- `left-side`: Content displayed in the left side of the footer (default is `none`).
- `center-side`: Content displayed in the center of the footer (default is `none`).
- `right-side`: Content displayed in the right side of the footer (default is `none`).
3. `chic-separator()` - Sets the separator for either the header, the footer or both.
- `on`: Where to apply the separator. It can be `"header"`, `"footer"` or `"both"` (default is `"both"`).
- `gutter`: How much spacing insert arround the separator (default is `0.65em`).
- (unnamed): A length for a `line()`, a stroke for a `line()`, or a custom content element.
4. `chic-height()` - Sets the height of either the header, the footer or both.
- `on`: Where to change the height. It can be `"header"`, `"footer"` or `"both"` (default is `"both"`).
- (unnamed): A relative length (the new height value).
5. `chic-offset()` - Sets the offset of either the header, the footer or both (relative to the page content).
- `on`: Where to change the offset It can be `"header"`, `"footer"` or `"both"` (default is `"both`).
- (unnamed): A relative length (the new offset value).
6. `chic-page-number()` - Returns the current page number. Useful for header and footer `sides`. It doesn’t take any parameters.
7. `chic-heading-name()` - Returns the previous heading name. If there’s no previous headings, it returns the next heading name. Finally, if there’s no headings ahead, it returns nothing.
## Gallery
<h3 align="center">
<img alt="Example 1" src="assets/example-1.png" style="max-width: 100%; padding: 10px 10px; background-color: #E4E5EA; box-shadow: 1pt 1pt 10pt 0pt #AAAAAA; border-radius: 4pt">
</h3>
_Header with `chic-heading-name()` at left, and `chic-page-number()` at right. There's a `chic-separator()` of `1pt` only for the header._
<h3 align="center">
<img alt="Example 2" src="assets/example-2.png" style="max-width: 100%; padding: 10px 10px; background-color: #E4E5EA; box-shadow: 1pt 1pt 10pt 0pt #AAAAAA; border-radius: 4pt">
</h3>
_Footer with `chic-page-number()` at right, and a custom `chic-separator()` showing "end of page (No. page)" between 9 `~` symbols at each side._
## Changelog
### Version 0.1.0
- Initial release
- Implemented `chic-header()`, `chic-footer()`, `chic-separator()`, `chic-height()`, `chic-offset()`, `chic-page-number()`, and `chic-heading-name()` functions
|
https://github.com/vaucher-leo/template-tb-typst | https://raw.githubusercontent.com/vaucher-leo/template-tb-typst/main/config.typ | typst | MIT License | // Config file
// Complete alle fields with correct informations
#let author = "<NAME>"
#let title = "Modèle Typst de rapport de TB"
#let professor = "<NAME>"
#let departement = "TIN"
#let filiere = "Génie électrique"
#let orientation = "Électronique Embarquée et Mécatronique"
#let field = "Ingénierie"
#let date = "01.01.1970"
#let confidential = true
|
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/layout/container.typ | typst | Apache License 2.0 | // Test the `box` and `block` containers.
---
// Test box in paragraph.
A #box[B \ C] D.
// Test box with height.
Spaced \
#box(height: 0.5cm) \
Apart
---
// Test block sizing.
#set page(height: 120pt)
#set block(spacing: 0pt)
#block(width: 90pt, height: 80pt, fill: red)[
#block(width: 60%, height: 60%, fill: green)
#block(width: 50%, height: 60%, fill: blue)
]
---
// Test box sizing with layoutable child.
#box(
width: 50pt,
height: 50pt,
fill: yellow,
path(
fill: purple,
(0pt, 0pt),
(30pt, 30pt),
(0pt, 30pt),
(30pt, 0pt),
),
)
---
// Test fr box.
Hello #box(width: 1fr, rect(height: 0.7em, width: 100%)) World
---
// Test block over multiple pages.
#set page(height: 60pt)
First!
#block[
But, soft! what light through yonder window breaks? It is the east, and Juliet
is the sun.
]
|
https://github.com/floriandejonckheere/utu-thesis | https://raw.githubusercontent.com/floriandejonckheere/utu-thesis/master/thesis/chapters/04-related-work.typ | typst | #import "/helpers.typ": *
= Related work <relatedwork>
In this chapter, we present related work on the topic of (semi-)automated modularization and microservice candidate identification in monolith systems, with a focus on concrete implementations of these approaches.
A number of tools have been developed to assist in the modularization of monolith applications into microservices or modular monolith architecture.
#cite_full(<gysel_etal_2016>) developed a tool called _ServiceCutter_.
The tool, implemented as a web application#footnote(link("https://servicecutter.github.io/")[https://servicecutter.github.io/]), extracts information from the domain model of the application, and uses it to identify microservice candidates.
The software architect can customize the process by changing the algorithm and several parameters used for the identification.
ServiceCutter implements a visual approach to the identification of microservices, and provides a starting point for the modularization of monolith applications.
#cite_full(<rocha_2018>) proposed a monolith decomposition tool called _Monolysis_, and introduces the _MonoBreak_ algorithm used in the tool to identify microservice candidates based on the functionalities of the application.
The tool collects execution trace data from the monolith application, and uses similarity analysis to group functionalities that are likely to be part of the same microservice.
The software architect can specify the granularity of the microservices, which provides a level of customization.
In 2019, #cite_author(<saidani_etal_2019>) introduced _MSExtractor_, an automated tool to extract microservices from legacy applications written in the Java programming language#footnote(link("https://www.java.com/")[https://www.java.com]) @saidani_etal_2019.
Using a genetic algorithm, the authors demonstrate the ability of the tool to outperform other state-of-the-art approaches in terms of the quality of the decomposition.
_Mono2Micro_ is an AI-based toolchain for the decomposition of monolith applications into microservices, developed by #cite_full(<kalia_etal_2020>).
The toolchain uses a combination of static and dynamic analysis to identify microservice candidates, and uses machine learning to generate recommendations for the decomposition.
Mono2Micro has the ability to analyze monolith applications written in Java and provides a visual interface to interact with the tool.
In #cite(<service_weaver_2023>, form: "year"), #cite_author(<service_weaver_2023>) introduced _ServiceWeaver_ @service_weaver_2023, a framework for the Go programming language#footnote(link("https://go.dev/")[https://go.dev]) that aims to introduce the concept of a modular monolith architecture.
Applications written in Go are compiled into a single, statically linked binary, which is then deployed as a single unit.
ServiceWeaver maintains the same development process as a monolith application, but the application is deployed as a set of microservices that communicate with each other over the network.
The framework leverages the Go runtime to modularize the application at runtime, by using information about the structure and dependencies of the application.
It also provides integration with cloud providers, and a set of tools to monitor and manage the deployed microservices.
_Spring Modulith_#h(.2em)#footnote(link("https://spring.io/projects/spring-modulith")[https://spring.io/projects/spring-modulith]) is another example of a framework that promotes the modular monolith approach.
The framework, written for the Java programming language, allows developers to structure the code of the application in a modular way, so that the modules can easily be broken out into microservices in the future.
_Light-hybrid-4j_#h(.2em)#footnote(link("https://networknt.github.io/light-hybrid-4j/")[https://networknt.github.io/light-hybrid-4j/]) goes a step further by allowing developers to build subsets of their applications, that can be deployed as microservices.
The _Structural Quality_ or _S-Quality_ framework, introduced by #cite_full(<hasan_etal_2023>), is a tool that uses static analysis to identify microservice candidates in monolith applications.
The tool uses structural design properties, alongside customizable architectural quality objectives, to generate recommendations for the decomposition of the monolith application.
The S-Quality application was developed using the Django#footnote(link("https://www.djangoproject.com/")[https://www.djangoproject.com/]) framework.
#cite_full(<lopes_silva_2023>) implemented an extensible multiple strategy tool for the identification of microservice candidates in monolith applications.
The application implements multiple strategies for identification in order to promote the comparison of modularization approaches.
The authors wrote the tool in multiple programming languages, exposing a web application interface to interact with the tool.
In summary, several tools and frameworks have already been developed to assist in the (semi-)automated modularization of monolith applications into microservices or modular monolith architectures.
These tools use a variety of approaches, and usually only support a specific programming language or framework.
The level of automation varies between the tools, with some only providing recommendations or visualizations of the microservice candidates, and others implementing fully automated solutions that can deploy the microservices.
|
|
https://github.com/soul667/typst | https://raw.githubusercontent.com/soul667/typst/main/PPT/typst-slides-fudan/themes/polylux/README.md | markdown | # Polylux <img src="https://andreaskroepelin.github.io/polylux/book/logo.png" style="width: 3em;"></img>
This is a package for creating presentation slides in [Typst](https://typst.app/).
If you like it, consider [giving a star on GitHub](https://github.com/andreasKroepelin/polylux)!
[](https://andreaskroepelin.github.io/polylux/book)



[](https://github.com/andreasKroepelin/polylux/releases/latest/download/demo.pdf)

## Quickstart
For the bare-bones, do-it-yourself experience, all you need is:
```typ
// Get polylux from the official package repository
#import "@preview/polylux:0.2.0": *
// Make the paper dimensions fit for a presentation and the text larger
#set page(paper: "presentation-16-9")
#set text(size: 25pt)
// Use #polylux-slide to create a slide and style it using your favourite Typst functions
#polylux-slide[
#align(horizon + center)[
= Very minimalist slides
A lazy author
July 23, 2023
]
]
#polylux-slide[
== First slide
Some static text on this slide.
]
#polylux-slide[
== This slide changes!
You can always see this.
// Make use of features like #uncover, #only, and others to create dynamic content
#uncover(2)[But this appears later!]
]
```
This code produces these PDF pages:

From there, you can either start creatively adapting the looks to your likings
or you can use one of the provided themes.
The simplest one of them is called `simple` (what a coincidence!).
It is still very unintrusive but gives you some sensible defaults:
```typ
#import "@preview/polylux:0.2.0": *
#import themes.simple: *
#set text(font: "Inria Sans")
#show: simple-theme.with(
footer: [Simple slides],
)
#title-slide[
= Keep it simple!
#v(2em)
Alpha #footnote[Uni Augsburg] #h(1em)
Bravo #footnote[Uni Bayreuth] #h(1em)
Charlie #footnote[Uni Chemnitz] #h(1em)
July 23
]
#slide[
== First slide
#lorem(20)
]
#focus-slide[
_Focus!_
This is very important.
]
#centered-slide[
= Let's start a new section!
]
#slide[
== Dynamic slide
Did you know that...
#uncover(2)[
...you can see the current section at the top of the slide?
]
]
```
This time, we obtain these PDF pages:

As you can see, a theme can introduce its own types of slides (here: `title-slide`,
`slide`, `focus-slide`, `centered-slide`) to let you quickly switch between
different layouts.
The book
[has more infos](https://andreaskroepelin.github.io/polylux/book/themes/themes.html)
on how to use (and create your own) themes.
For dynamic content, polylux also provides [a convenient API for complex
overlays](https://andreaskroepelin.github.io/polylux/book/dynamic/dynamic.html).
Visit the
[book](https://andreaskroepelin.github.io/polylux/book)
for more details or take a look at the
[demo PDF](https://github.com/andreasKroepelin/polylux/releases/latest/download/demo.pdf)
where you can see the features of this template in action.
**⚠ This package is under active development.
While I try to make sure that the `main`-branch always is in a usable state,
there are no compatibility guarantees!**
## Acknowledgements
Thank you to...
- [@drupol](https://github.com/drupol) for the `university` theme
- [@Enivex](https://github.com/Enivex) for the `metropolis` theme
- [@MarkBlyth](https://github.com/MarkBlyth) for contributing to the `clean` theme
- [@fncnt](https://github.com/fncnt) for coming up with the name "polylux"
- the Typst authors and contributors for this refreshing piece of software
|
|
https://github.com/donabe8898/typst-slide | https://raw.githubusercontent.com/donabe8898/typst-slide/main/opc/並行prog/03/Go2.typ | typst | MIT License | #show link: set text(blue)
#set text(font: "Noto Sans CJK JP",size:13pt)
#show heading: set text(font: "Noto Sans CJK JP")
#show raw: set text(font: "0xProto Nerd Font")
#show raw.where(block: true): block.with(
fill: luma(245),
inset: 10pt,
radius: 10pt
)
#align(center)[
```go
// 今回はコメント書かなくてOKです
package main
import "fmt"
func main() {
arr := []string{} // 個数未決定のスライス
arr = append(arr, "Microsoft Window")
arr = append(arr, "Apple macOS")
arr = append(arr, "GNU/Linux")
arr = append(arr, "FreeBSD")
fmt.Println("長さ: ", len(arr))
fmt.Println("キャパ: ", cap(arr))
mk := make([]byte, 0, 114514) // make()によるメモリ確保
fmt.Println("長さ: ", len(mk))
fmt.Println("キャパ: ", cap(mk))
}
```
]
|
https://github.com/linsyking/messenger-manual | https://raw.githubusercontent.com/linsyking/messenger-manual/main/event.typ | typst | #pagebreak()
= Events <events>
There are two types of events in Messenger: _World Event_ and _User Event_.
World event is the event Messenger can access while user event is the event users actually receive and it is a subset of the world event as some world event will not send to user.
```elm
type UserEvent
= Tick Int
| KeyDown Int
| KeyUp Int
| MouseDown Int ( Float, Float )
| MouseUp Int ( Float, Float )
| MouseWheel Int
| Prompt String String
```
Every general model (layer, component) will use `UserEvent` when updating. Recall the `update` function:
```elm
update : env -> event -> data -> bdata -> ( ( data, bdata ), List (Msg tar msg sommsg), ( env, Bool ) )
```
The last `Bool` is a _block_ indicator. Every general model is able to block event from sending to the next general components when updating.
Besides, it is essential to know that *the order of updating layers in a scene is opposite to the order of rendering layers in a scene*. This mechanism is designed to enable layers to block messages from passing to the layers behind it.
This is useful when you are handling mouse events. When a layer handles a mouse click event, you don't want other layers to also be triggered.
Take an example, there are two layers in the scene in the order of `[A, B]` when initializing the scene. This means that A is rendered before B but A will be updated after B. Suppose the `update` of A emits `[A1, A2]` `SOMMsg`s and B emits `[B1, B2]` `SOMMsgs`, then the core will handle `SOMMsg` in the order of B1, B2, A1, A2.
== Keyboard Events
This includes both `KeyDown` and `KeyUp` events.
The parameter is `keyCode: Int`. `keyCode` is the #link("https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode")[keyCode] property of the keyboard event.
`keyCode` of common keys can be found in `Messenger.Misc.KeyCode` (in `messenger-extra`).
*Hint.* Users can use `globalData.pressedKeys` to get the current pressed keys.
== Mouse Events
This includes both `MouseDown` and `MouseUp` events.
The parameters are `button: Int`, `position: (Float, Float)`. The button has many values. 0 is the left mouse button and 2 is the right mouse button. More values can be found in #link("https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button")[MDN].
`position` is the virtual coordinate of the mouse.
Users can use `judgeMouseRect` in `Messenger.Coordinate.Coordinates` to check whether the mouse is in a rectangle.
*Hint.* Users can use `globalData.pressedMouseButtons` to get the current pressed mouses.
== Tick Event <tick>
The parameter is `delta: Int`. It is triggered every `timeInterval` (defined in user configuration file). `delta` is the time elapsed since last `Tick` in milliseconds.
`timeInterval` has type of `TimeInterval`, which is defined as:
```elm
type TimeInterval
= Fixed Float
| Animation
```
`Fixed` represents the fixed time interval between every two frames. The value is the time interval in milliseconds.
`Animation` will use the browser's `requestAnimationFrame` to update the game. The frame rate will be dependent on your device. This will make the animation looks smoother.
If users want to know the current timestamp, they can access it from `globalData.currentTimeStamp`. Users can convert it to timestamp in milliseconds by `Time.posixToMillis`.
*Note.* If an event of the game runs longer than `timeInterval`, all subscriptions will not be triggered until that event finishes.
|
|
https://github.com/Skimmeroni/Appunti | https://raw.githubusercontent.com/Skimmeroni/Appunti/main/Matematica4AI/LinAlg/Spectral.typ | typst | Creative Commons Zero v1.0 Universal | #import "../Math4AI_definitions.typ": *
Aside from the notions of sum between two vectors and multiplication of a
vector by a scalar, which are mandatory requirements for a vector space to
be defined as such, for some (but not all) vector spaces it is possible to
also define other operations.
One such example is the *inner product*: given a vector space $V$, the
inner product of two vectors $underline(v_(1))$ and $underline(v_(2))$
of $V$, denoted as $angle.l underline(v_(1)), underline(v_(2)) angle.r$,
is an operation that returns a scalar and that possesses such properties:
- _Symmetry_: for any vectors $underline(v_(1)), underline(v_(2))$,
$angle.l underline(v_(1)), underline(v_(2)) angle.r =
angle.l underline(v_(2)), underline(v_(1)) angle.r$
- _Linearity of the first term_: For any two scalars $a, b$ and for any
vectors $underline(v_(1)), underline(v_(2)), underline(v_(3))$,
$ angle.l a underline(v_(1)) + b underline(v_(2)), underline(v_(3))
angle.r = a angle.l underline(v_(1)), underline(v_(3)) angle.r + b
angle.l underline(v_(2)), underline(v_(3)) angle.r $
- _Positive-definiteness_: for any non-null vectors $underline(v_(1)),
underline(v_(2))$, $angle.l underline(v_(1)), underline(v_(2)) angle.r
gt.eq 0$.
The simplest example of an inner product is the one defined for $RR^(n)$,
which is simply a matrix multiplication between a $1 times n$ matrix and
a $n times 1$ matrix:
$ angle.l underline(x), underline(y) angle.r = underline(x)^(T)
underline(y) = x_(1) y_(1) + x_(2) y_(2) + dots + x_(n) y_(n) =
sum_(i = 1)^(n) x_(i) y_(i) $
Indeed, such product possesses all of the properties presented above.
Any inner product allows the definition of the *norm* of a vector, which is
the square root of the inner product between a vector and itself:
$ || underline(v) || = sqrt(angle.l underline(v)\, underline(v) angle.r) $
Since the inner product of a vector with itself is always equal or greater
that zero (property 3), such square root is always well-defined.
In turn, the norm of a vector allows the definition of an *angle* between
vectors:
$ cos(theta) = frac(angle.l underline(x)\, underline(y) angle.r,
|| underline(x) || || underline(y) ||) $
If the cosine of the angle between two vectors is $1$, said vectors are
said to be *parallel*, while if it is $0$ they are said to be *orthogonal*.
In particular:
#grid(
columns: (0.5fr, 0.5fr),
[$ 1 = frac(angle.l underline(x)\, underline(y) angle.r,
|| underline(x) || || underline(y) ||) =>
angle.l underline(x), underline(y) angle.r =
|| underline(x) || || underline(y) || $],
[$ 0 = frac(angle.l underline(x)\, underline(y) angle.r,
|| underline(x) || || underline(y) ||) =>
angle.l underline(x), underline(y) angle.r = 0 $]
)
#exercise[
Consider the vector space $RR^(2)$. Compute the norm of $mat(1; 2)$.
]
#solution[
$ sqrt(angle.l mat(1; 2)\, mat(1; 2) angle.r) =
sqrt(mat(1, 2) mat(1; 2)) = sqrt(1 dot 1 + 2 dot 2) = sqrt(5) $
]
Let $A$ be a symmetric matrix. If its set of eigenvectors ${underline(e_(1)),
dots, underline(e_(n))}$ forms a basis and possesses the following property:
$ angle.l underline(e_(i)), underline(e_(j)) angle.r =
cases(1 "if" underline(e_(i)) = underline(e_(j)), 0 "otherwise") $
Such set of eigenvectors is said to be a *orthonormal basis* for $A$. In other
words, the set of eigenvectors of a symmetric matrix is an orthonormal basis
for said matrix if each eigenvector is orthogonal with every other (except
with itself).
If symmetric matrix possesses an orthonormal basis, @Diagonalization-theorem
applies in a very specific way.
#theorem("Spectral theorem")[
Let $A$ be a symmetric matrix that possesses an orthonormal basis and
whose eigenvalues are all real. Then there exist two matrices $P$ and
$D$ such that $A = P D P^(T)$, where $P$ is an orthogonal matrix whose
columns are the eigenvectors of $A$ and $D$ is a diagonal matrix whose
non-zero elements are the eigenvalues of $A$.
]
#proof[
The fact that $P$ and $D$ with these characteristics exist stems from
@Diagonalization-theorem, since the eigenvectors of $A$ form a basis.
What has to be proved is that, under such conditions, $P$ is orthogonal.
// To be retrieved from lectures (messed up)
]
|
https://github.com/LEXUGE/poincare | https://raw.githubusercontent.com/LEXUGE/poincare/main/src/reports/CO25/main.typ | typst | MIT License | #import "@preview/physica:0.9.0": *
#import "@preview/gentle-clues:0.4.0": *
#import "@lexuge/templates:0.1.0": *
#import shorthands: *
#show: simple.with(
title: "CO25: Laplace Equations",
authors: ((name: "<NAME>", email: "<EMAIL>"),),
disp_content: false,
)
= Abstract
Solving Laplace and Poisson's equations is of paramount importance in various
scientific and engineering domains, from electrostatics to heat conduction and
fluid dynamics. This report presents an introductory investigation into the
numerical solution of Laplace and Poisson's equations using the Successive
Over-Relaxation method. In particular, we implement the successive
over-relaxation methods to solve simple Laplace equations and Poisson equations
with known solutions, and use the same method to solve the flow of
incompressible irrotational fluids.
= Introduction
The Laplace equation represents a special case of the Poisson equation, both of
which are elliptic partial differential equations (PDEs) governing the
distribution of scalar fields in space. Applications of these equations range
from determining electrostatic potentials and temperature distributions to
understanding fluid flows.
Analytical solutions to Laplace and Poisson's equations are often limited to
simple geometries and boundary conditions. Therefore, numerical methods play a
crucial role in obtaining solutions for more complex and practical scenarios. We
present the algorithm of SOR in the @sec-methods, along with the implementation
of the method in the Julia language. We then present some comments on the scheme
we use above in @sec-analysis.
= Methods and Implementation
<sec-methods>
In the report, we are always trying to seek a numerical solution to the
following 2D PDE
$ laplace psi(vb(x)) equiv pdv(psi, x, 2) + pdv(psi, y, 2) = f(vb(x)) $<eq-laplace>
where when $f = 0$ we recover the Laplace equation, and when $f eq.not 0$ we get
Poisson equation.
== Laplace Equation
To seek a numerical solution, we try to adopt a scheme to replace the partial
derivatives @eq-laplace by finite differences. We can make various choices for
approximations, including center difference, forward difference, and back
difference, and this is commented in @sec-analysis.
For the sake of argument, let's work in the domain $[x_0, x_n] times [y_0, y_m]$ and
use the grid size
$ Delta_x = (x_n - x_0) / n, Delta_y = (y_m - y_0) / m $
In this report, we adopt uniform spacing, so
$ h equiv Delta_x = Delta_y $
Now, we define
$ x_i = x_0 + i Delta_x, y_j = y_0 + j Delta_y $
so we now can talk about $x_i, y_j$. For short hand, we will also write
$ psi_(i,j) := psi(x_i, y_j) $
Now, assuming our function to be smooth, by Taylor's theorem, we have that
$
psi_(i+1) &= psi_i + psi'_i h + 1/2 psi''_i h^2 + 1/6 psi'''_i h^3 + cal(O)(h^4) \
psi_(i-1) &= psi_i - psi'_i h + 1/2 psi''_i h^2 - 1/6 psi'''_i h^3 + cal(O)(h^4) \
$
where we omitted $j$ for clarity. Sum two together gives us
$ psi''_i h^2 = psi_(i+1) + psi_(i-1) - 2 psi_i + cal(O)(h^4) $
And we have a second order approximation
$ psi''_i h^2 = (psi_(i+1) + psi_(i-1)) / h^2 - 2 psi_i + cal(O)(h^2) $
as $f h^2 in cal(O)(h^4), forall f in cal(O)(h^2)$.
And we thus have a linear system for $f=0$ case:
$ psi_(i,j) = 1/4 (psi_(i+1, j) + psi_(i-1,j) + psi_(i, j+1), psi_(i, j-1)) $<eq-linear-system>
To solve this linear system, we can use the iterative approach, Jacobian's
method, which basically solves for an auxiliary equation
$ pdv(psi, tau) = laplace psi(vb(x)) - f(vb(x)) $
This is like a diffusion equation. And as the solution diffuses, we will have $pdv(psi, tau) to 0$ as $tau to oo$.
In that limit, we recover the solution to @eq-laplace. And use the same
approach, we can discretize $tau$ and convert $pdv(psi, tau)$ into $(psi^(k+1)_(i,j) - psi^(k)_(i,j)) / (Delta tau)$.
This gives us
$ psi^(k+1)_(i,j) = psi^k_(i,j) + (Delta tau) / h^2 (psi^k_(i+1, j) + psi^k_(i-1,j) + psi^k_(i, j+1), psi^k_(i, j-1) - 4psi^k_(i,j)) $
And theorems regarding convergence (see also Oxford's numerical methods course
Lecture 8) for diffusion equation requires us that $(Delta tau) / h^2 lt.eq 1/4 $.
Taking $(Delta tau) / h^2 = 1/4$ gives us an iterative version of
@eq-linear-system
$ psi^(k+1)_(i,j) = 1/4 (psi^k_(i+1, j) + psi^k_(i-1,j) + psi^k_(i, j+1), psi^k_(i, j-1)) $ <eq-jacobi>
A few things to notice:
- We are free to choose iteration order. Within each $k$, $psi_(i,j)$s wouldn't
interfere.
- This doesn't have good convergence speed.
So an alternative is to do Gauss-Siedel:
$ psi^(k+1)_(i,j) = 1/4 (psi_(i+1, j) + psi_(i-1,j) + psi_(i, j+1), psi_(i, j-1)) $
where right-hand side is understood as using the latest (i.e. largest $k$)
available value at the given location. So if the neighboring grid $i,j-1$ has an
updated value at $k+1$, our evaluation of $psi^(k+1)_(i,j)$ will take $psi^(k+1)_(i, j-1)$ instead
of $psi^k_(i, j-1)$.
And because of the mixing of $k$ and $k+1$ in our evaluation, *the calculation
of each iteration is no longer independent*, and we have to do a sweeping.
*This is still not fast enough*.
It's discovered we can use Successive Over-Relaxation. That is, instead of
calculating $psi^(k+1)_(i,j)$ from scratch from neighbors, we also base it on
the old $psi^k_(i,j)$, so we use a weighted sum of $1/4 (psi_(i+1, j) + psi_(i-1,j) + psi_(i, j+1), psi_(i, j-1))$ and $psi^k_(i,j)$.
This is controlled by parameter $alpha$:
$ psi^(k+1)_(i,j) = alpha 1/4 (psi_(i+1, j) + psi_(i-1,j) + psi_(i, j+1), psi_(i, j-1)) + (1-alpha) psi^k_(i,j) $
Now rearrange our equation into the form $psi^(k+1)_(i,j) = psi^(k)_(i,j) + dots$ as
we want to find the residual between successive iteration.
This rearranges our equation into
$ psi^(k+1)_(i,j) = psi^(k)_(i,j) + alpha / 4 R_(i,j) $
and
$ R_(i,j) = psi_(i+1, j) + psi_(i-1,j) + psi_(i, j+1), psi_(i, j-1) - 4psi^k_(i,j) $
where again no-superscript means using the latest available value.
And we implemented it in Julia as @code-laplace.
We implemented also a helper function that creates the boundary value given the
analytical solution $psi$
#figure(
```julia
# Create a init_ψ based on some function f
# This initialize the boundary value
function sample(f, x0, y0, x_len, y_len, delta)
[(x-delta < x0) || (y-delta < y0) || (y+delta > y_len) || (x+delta > x_len) ? f(x, y) : 0 for y in y0:delta:y_len, x in x0:delta:x_len]
end
```,
caption: [A helper function for initializing boundary condition],
)
Define the known-solution $psi (x,y)=sin(x)sinh(y)$, ```julia
f(x,y)=sin(x)sinh(y)
``` we then can find the numerical solution ```julia
sol, hist_val, R_max = solve_laplace(sample(f, 0, 0, 1, 1, 0.1), 1.35, 100)
``` The contour plots of the solution and the analytical solution are
#figure(grid(
columns: 2,
image("contour_plot_laplace.svg"),
image("ground_truth_laplace.svg"),
))
And we have the residual plot and history of representative points:
#figure(grid(columns: 2, image("residual.svg"), image("history.svg")))
Notice the convergence is non-oscillatory. As for the convergence rate,
#figure(
table(
columns: 5,
[$alpha$],
[1.1],
[1.25],
[1.45],
[2.1],
[$k$],
[83],
[61],
[37],
[Not Converge],
),
caption: [Iteration taken for maximum residual to be within $0.00001$],
)
For $alpha = 2.1$ it doesn't converge, and the plots become oscillatory.==
Poisson's Equation For Poisson Equation, @eq-linear-system becomes
$ psi_(i,j) = 1/4 (psi_(i+1, j) + psi_(i-1,j) + psi_(i, j+1), psi_(i, j-1) - h^2 f_(i,j)) $
And apply the same methods again we have an additional term in $R$:
$ R_(i,j) = psi_(i+1, j) + psi_(i-1,j) + psi_(i, j+1), psi_(i, j-1) - 4psi^k_(i,j) - h^2 f_(i,j) $
There is one subtlety here, $h^2 f_(i,j) in cal(O)(h^2)$ is of the same order of
the error terms if we write out explicitly. And this would render the source
term negligible under our approximation. There are two ways to potentially fix
it:
- Modify the approximation to make the error of order $cal(O)(h^3)$ or higher.
- Scale source term by $1/h^2$ and scale back the solution after we finish the
calculation.
- Adopt some other regularization scheme.
We choose the second option.
The line charge has potential governed by
$ -laplace psi = lambda delta(vb(x) - vb(x_0)) $
We implemented the code in @code-poisson. And created the source and plot using
@code-earthed and @code-dipole, we then obtain:
#figure(grid(columns: 2, image("dipole.svg"), image("potential_earthed.svg")))
== Irrotational Incompressible Flow
For flow, it's useful to note that the direction of the flow $vb(s) = (u,v)$ given
by
$ u = pdv(psi, y), v = -pdv(psi, x) $
is perpendicular to $grad psi$, thus parallel to the contour of $psi$. Since the
fluid is incompressible,
$ div vb(s) = 0 $
we then have $ vb(hat(n)) cdot vb(s) = 0$ on the surface. Thus the obstacle must
be a contour line for the stream function. This involves some "guessing" on
setting the right boundary condition.
For rectangle and cylinder, we infer by symmetry that the boundary value should
be 0 as potential (stream function) should not cross, otherwise the flow is
undefined. Setting it to any other value would result in some streams from left "gravitates"
towards the obstacle, thus unphysics.// This is basically appealing to it looks weird, which is totally nonsense.
For reduced outflow, the boundary value on the width should be the same as the
value on the upper and lower boundary, as fluid flowing on the very top/bottom
must be parallel to the surface. And on the right of the reduced outflow
section, we should also have the boundary condition corresponding to straight
flow.
There consideration are reflected in our implementation. And we obtain using the
code in @code-flow, we obtain the contour plot (equivalent to the flow of the
fluid) in @fig-flow.
#figure(grid(
columns: 2,
image("rect_stream.svg"),
image("cylindrical_stream.svg"),
image("reduced_outflow.svg"),
), caption: [Plot of the contour plot of the stream function])<fig-flow>
= Analysis and Comments
<sec-analysis>
There are several schemes of approximating derivatives by finite difference. The
main idea is to use Taylor's theorem which gives a tighter remainder (error
bound) for smooth-enough functions.
The main schemes are forward/backward difference, centered difference for first
order derivatives. For forward difference, we have
$
psi_(i+1) &= psi_i + psi'_i h + cal(O)(h^2) \
psi'_i &= (psi_(i+1) - psi_i) / h + cal(O)(h)
$
The backward difference case is similar. So this is a first order approximation.
And we can also use centered difference
$
psi_(i+1) &= psi_i + psi'_i h + 1/2 psi''_i h^2 + cal(O)(h^3) \
psi_(i-1) &= psi_i - psi'_i h + 1/2 psi''_i h^2 + cal(O)(h^3) \
$
Subtracting gives
$
psi'_i = (psi_(i+1) - psi_(i-1)) / (2h) + cal(O)(h^2)
$
However, doing centered difference twice for obtaining second derivative is not
optimal. We have
$
psi''_i = (psi'_(i+1) - psi'_(i-1)) / (2h) + cal(O)(h^2)
$
and
$
psi'_(i+1) &= (psi_(i+2) - psi_i) / 2h + cal(O)(h^2)\
psi'_(i-1) &= (psi_i - psi_(i-2)) / 2h + cal(O)(h^2)
$
Putting back in we get a first order approximation, instead of the second order
one we used. Moreover, it requires a larger size of "grid dependency".
So our choice of approximating derivative in this way is within these choices
optimal. For more details, see @num-diff.
= Conclusion
In summary, the report introduced basic iterative methods: Jacobi, Gauss-Siedel,
and Successive Over-Relaxation (SOR), along with their implementation. It
validates the SOR method's effectiveness in solving simple Laplace and Poisson's
equations over arbitrary shape of domains, demonstrating its applicability from
electrostatics to incompressible flow simulations.
#pagebreak()
#bibliography("./bib.yaml", style: "ieee")
#pagebreak()
= Appendix
Julia implementation of the methods and related codes in producing plots.==
Laplace Equation
#figure(```julia
function solve_laplace(init_ψ::Matrix{<:Real}, α::Real, N_iter::Integer)
# Output:
# - ψ: 2D matrix of the value of init_psi after N_iter iterations
# - hist_values: (N_iter, 3) matrix that contains the historical values
# - R_max: Maximum of residual in each iteration
# Copying init_psi is necessary in order to avoid storing the reference of the init_psi
ψ::Matrix = copy(init_ψ)
R::Matrix = copy(init_ψ)
R_max::Vector = zeros(N_iter)
hist::Vector{Vector} = Vector()
for m in 1:N_iter
local within_criterion = true
for (indices, _) in pairs(ψ)
(i, j) = Tuple(indices)
if checkbounds(Bool, ψ, i-1, j-1) && checkbounds(Bool, ψ, i+1, j+1)
# Generate our R in m-th interation. Since R and psi has the same dimension, we may reuse the i,j to index
R[i,j] = ψ[i,j+1] + ψ[i,j-1] + ψ[i-1, j] + ψ[i+1,j] - 4ψ[i,j]
if abs(R[i,j]) >= criterion
within_criterion = false
end
ψ[i,j] = ψ[i,j] + α / 4 * R[i,j]
end
end
dims = size(init_ψ)
# Store history for three points
push!(hist, [
ψ[round(Int, dims[1] / 4), round(Int, dims[2] / 2)],
ψ[round(Int, dims[1] / 2), round(Int, dims[2] / 2)],
ψ[round(Int, dims[1] / 4 * 3), round(Int, dims[2] / 2)],
])
R_max[m] = maximum(R)
if within_criterion
println("Finishing iteration early, m = ", m)
break
end
end
# stack(hist, dims = 1) converts the Vector{Vector} to a matrix
return (ψ, stack(hist, dims = 1), R_max)
end
```,
caption: [Laplace Equation Solution],
)<code-laplace>
== Poisson Equation
#figure(```julia
function solve_poisson(init_ψ::Matrix, fixed_ψ::Matrix, source::Matrix, N_iter = 300)
q,p = size(init_ψ)
# Determine α_opt
α = 2 / (1 + sqrt(1 - ((cos(pi / p) + cos(pi/ q))/2)^2))
println("α_opt determined:", α)
# Copying init_psi is necessary in order to avoid storing the reference of the init_psi
ψ::Matrix = copy(init_ψ)
R::Matrix = copy(init_ψ)
for m in 1:N_iter
local within_criterion = true
for (indices, _) in pairs(ψ)
(i, j) = Tuple(indices)
if checkbounds(Bool, ψ, i-1, j-1) && checkbounds(Bool, ψ, i+1, j+1) && fixed_ψ[i,j] == 0
# Generate our R in m-th interation. Since R and psi has the same dimension, we may reuse the i,j to index
R[i,j] = ψ[i,j+1] + ψ[i,j-1] + ψ[i-1, j] + ψ[i+1,j] - source[i, j] * δ^2 - 4ψ[i,j]
if abs(R[i,j]) >= criterion
within_criterion = false
end
ψ[i,j] = ψ[i,j] + α / 4 * R[i,j]
end
end
if within_criterion
println("Finishing iteration early, m = ", m)
break
end
end
return (ψ)
end
```,
caption: [Poisson Equation Solver],
)<code-poisson>
== Electrostatics
#figure(
```julia
begin
source_dipole = zeros(40,40)
source_dipole[20,20-distance] = -λ / δ^2
source_dipole[20,20+distance] = λ / δ^2
dipole_sol = solve_poisson(zeros(40,40), zeros(40,40), source_dipole)
contour(dipole_sol, levels=30, title = "Potential of dipole in earthed container", fill = false, aspect_ratio=1, size=[500,500])
end
```,
caption: [Creating source for dipole line charge potential],
)<code-dipole>
#figure(
```julia
# Here providing an ansatz and specify the boundary condition is very important: the ψ is not gonna decay to zero at infinity
begin
source = zeros(25,25)
# IMPORTANT: We are creating a δ-"function" source, and we need to perform regularization
source[5,5] = -λ / δ^2
earthed_sol = solve_poisson(zeros(25, 25), zeros(25,25), source)
contour(earthed_sol, levels=30, title = "Potential of line charge in earthed container", fill = false, aspect_ratio=1, size=[500,500])
end
```,
caption: [Creating source for line charge potential],
)<code-earthed>
== Fluids
#figure(
```julia
# Masks that fix the boundary condition
begin
rect_mask = zeros(40,60)
rect_mask[10:30,20] .= 1
rect_mask[10:30,40] .= 1
rect_mask[10,20:40] .= 1
rect_mask[30,20:40] .= 1
reduced_mask = zeros(40,60)
reduced_mask[1:20-width,40:60] .=1
reduced_mask[20+width:40,40:60] .=1
cylinder_mask = zeros(40,60)
for x in -radius:radius
cylinder_mask[round(Int, 20 + sqrt(radius^2 - x^2)), 30+x] = 1
cylinder_mask[round(Int, 20 - sqrt(radius^2 - x^2)), 30+x] = 1
end
end
begin
init_stream_rect = zeros(40,60)
init_stream_rect[1,:] .= 2
init_stream_rect[40,:] .= -2
init_stream_rect[:,1] = [0.1*(20-y) for y in 1:40]
init_stream_rect[:,60] = [0.1*(20-y) for y in 1:40]
init_stream_width = copy(init_stream_rect)
init_stream_width[1:20-width,40:60] .=2
init_stream_width[20+width:40,40:60] .=-2
init_stream_width[20-width:20+width,60] = [(2/width)*(-y) for y in -width:width]
end
contour(solve_poisson(init_stream_rect, rect_mask, zeros(40,60)), title = "Stream Fn - Rectangular Obstable", levels=60, fill = false, aspect_ratio = 1, size=(600,400))
contour(solve_poisson(init_stream_rect, cylinder_mask, zeros(40,60)), title = "Stream Fn - Cylindrical Obstable", levels=60, fill = false, aspect_ratio = 1, size=(600,400))
contour(solve_poisson(init_stream_width, reduced_mask, zeros(40,60)), title = "Stream Fn - Reduced Width outflow", levels = 31, fill = false)
```,
caption: [Creating flow for different obstacles],
)<code-flow>
|
https://github.com/jbro/supernote-templates | https://raw.githubusercontent.com/jbro/supernote-templates/main/README.md | markdown | The Unlicense | # Supernote Templates
My templates for the [Ratta Supernote A5 X](https://supernote.com/products/supernote?variant=40709925208255).
## Templates
Latest release of templates are inlined here:
<details>
<summary>Title page for notebooks</summary>
<img src="https://github.com/jbro/supernote-templates/releases/latest/download/title-page.png">
</details>
<details>
<summary>Daily task list, tracker and notes</summary>
<img src="https://github.com/jbro/supernote-templates/releases/latest/download/work-daily.png">
</details>
<details>
<summary>General notes</summary>
<img src="https://github.com/jbro/supernote-templates/releases/latest/download/work-notes.png">
</details>
<details>
<summary>One on one notes</summary>
<img src="https://github.com/jbro/supernote-templates/releases/latest/download/work-one-on-one.png">
</details>
These can all be downloaded directly and placed in your device's `MyStyle` folder.
## Building
You need the following to build:
- Make (eg. [GNU make](https://www.gnu.org/software/make/))
- convert from [ImageMagick](https://imagemagick.org/index.php)
- [typst](https://github.com/typst/typst)
- [ProFont Nerd Font](https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.2/ProFont.zip)
- [Routed Gothic Font](https://webonastick.com/fonts/routed-gothic/download/routed-gothic-ttf.zip)
To build all templates run:
```console
$ make
```
This will output PNG files which are ready to be uploaded to your device's `MyStyle` folder.
|
https://github.com/bamboovir/typst-resume-template | https://raw.githubusercontent.com/bamboovir/typst-resume-template/main/resume.typ | typst | MIT License | #import "templates/latex/template.typ": *
#let today = datetime.today()
#show: resume.with(
author: (
firstname: "Aaaaaaa",
lastname: "Aaa",
email: "<EMAIL>",
phone: "(+1) 0000000000",
github: "aaaaaaaaa",
linkedin: "aaaaaaaa",
positions: (
"Aaaaaaaa Aaaaaaaa",
"Aaaa Aaaaa Aaaaaaaaa",
)
),
date: today.display("[month repr:long] [day], [year]")
)
#resume_section("Education")
#education_item[
University of Aaaaaaaa Aaaaaaa-Aaaaaaaaa
][
Master of Computer Science
][
#resume_gpa("4.00", "4.00")
][
Aug. 0000 - Aug. 0000
]
#education_item[
University of Aaaaaaaa-Aaaaaaa
][
B.S. in Computer Science
][
#resume_gpa("4.00", "4.00")
][
Aug. 0000 - Aug. 0000
]
#resume_section("Experience")
#work_experience_item_header(
"Aaaaaa Aaaaaaaa",
"Aaaaaa Aaaaa Aaaaa, AA",
"Software Engineer",
"Jul. 0000 - Jul. 0000",
)
#resume_item[
- *#lorem(10)*. #lorem(20)
- #lorem(30)
- #lorem(40)
- #lorem(30)
]
#work_experience_item_header(
"Aaaaaa Aaaaaaaa",
"Aaaaaa Aaaaa Aaaaa, AA",
"Software Engineer",
"Jul. 0000 - Jul. 0000",
)
#resume_item[
- *#lorem(10)*. #lorem(20)
- #lorem(30)
- #lorem(40)
- #lorem(30)
]
#resume_section("Personal Project")
#personal_project_item_header(
"Aaaaaaa Aaaa",
"Aaaaaa, AA",
"AAAAAAA",
"Feb. 0000",
)
#resume_item[
- #lorem(30)
]
#personal_project_item_header(
"Aaaaaaa Aaaa",
"Aaaaaa, AA",
"AAAAAAA",
"Feb. 0000",
)
#resume_item[
- #lorem(30)
]
#resume_section("Skills")
#skill_item(
"Program Language",
(
strong[Aaaaa],
strong[Aaaaaa],
strong[Aaaa],
strong[Aaaaaa],
strong[Aaaaaaa],
strong[Aaaa],
"A/A++",
"Aaaa",
"Aaaaaaa",
"Aaaa",
"Aaaaa",
"A/A++",
"Aaaa",
"Aaaaaaa",
"Aaaa",
"Aaaaa"
)
)
#skill_item(
"Back-End",
(
strong[Aaaaa],
strong[Aaaaaa],
strong[Aaaa],
"Aaaaaa",
"Aaaaaaa",
"Aaaa",
"A/A++",
"Aaaa",
"Aaaaaaa",
)
)
#skill_item(
"Front-End",
(
strong[Aaaaa],
strong[Aaaaaa],
strong[Aaaa],
strong[Aaaaaa],
strong[Aaaaaaa],
"Aaaa",
"A/A++",
"Aaaa",
"Aaaaaaa",
)
)
#skill_item(
"DevOps",
(
strong[Aaaaa],
strong[Aaaaaa],
strong[Aaaa],
strong[Aaaaaa],
strong[Aaaaaaa],
strong[Aaaa],
"A/A++",
"Aaaa",
"Aaaaaaa",
"Aaaaaaa",
)
)
|
https://github.com/EGmux/TheoryOfComputation | https://raw.githubusercontent.com/EGmux/TheoryOfComputation/master/modules.typ | typst | // Just to organize the notes, a single include all files
//
#include "./style.typ"
#include "./unit1/main.typ"
#include "./classNotes/main.typ"
#include "./sharedFunctions.typ"
// #include "./unit2/main.typ"
// #include "./unit3/main.typ"
|
|
https://github.com/Skimmeroni/Appunti | https://raw.githubusercontent.com/Skimmeroni/Appunti/main/C++/Introduzione/Ciclo.typ | typst | Creative Commons Zero v1.0 Universal | #import "@preview/showybox:2.0.1": showybox
In C++ esistono diversi modi per allocare le variabili. Diversi
modi implicano diversa visibilitá, ovvero sono accessibili in
un qualche modo in un punto piuttosto che un altro del programma.
I modi sono tre:
- Allocazione *globale*;
- Allocazione *automatica*;
- Allocazione *statica*;
- Allocazione *dinamica*;
Una variabile é globale se non appartiene a nessuna funzione o
classe. Tale variabile é accessibile da qualsiasi punto dell'unitá
di compilazione corrente, e se dichiarata con il modificatore
`extern` é accessibile anche da qualsiasi altra unitá di
compilazione che la importa. Esistono all'interno della memoria
fintanto che il programma é in esecuzione.
// Esempio
Definire una variabile globale che deve essere accessibile
da ogni singola unitá di compilazione del codice é una delle
poche situazioni in cui puó avere senso avere un file `main.h`.
Una variabile é automatica se viene allocata e deallocata
automaticamente nello/dallo stack. Sono le variabili comunemente
intese, che si trovano all'interno di una funzione e che esistono
solamente fintanto che tale funzione é in esecuzione. Sono
(potenzialmente) accessibili solamente dal blocco in cui
sono state definite. Naturalmente, le variabili automatiche
dichiarate all'interno di `main()` esistono fino alla fine
dell'esecuzione del programma.
#showybox[
```
void f(int param) // Will exist as long as f exists
{
int i; // Will exist as long as f exists
if (i) {
int k; // Will exist as long as the if block exists
...
}
...
}
int main()
{
int j; // Will exist as long as main exists
// (Until the program stops)
}
```
]
Una variabile é statica se é dichiarata con il modificatore `static`.
Sebbene la loro visibilitá sia ristretta a quella del blocco in cui
sono state definite, esisteranno comunque in memoria fino alla fine
del programma. Combinano il lifespan di una variabile globale con
la visibilitá di una variabile dinamica.
Una variabile é dinamica se ne viene richiesto esplicitamente il
quantitativo di memoria da allocare e la loro deallocazione. Tali
dati non si trovano, come le variabili precedenti, sullo stack,
ma bensí sullo heap, pertanto é necessario gestirne l'esistenza
in maniera oculata (si rischia di saturare la memoria con dati
inutili). I dati dinamici, sebbene possano essere di qualsiasi
tipo, sono particolarmente utili per quando é necessario allocare
molta memoria, dato che la dimensione dello stack é in genere molto
contenuta.
Un dato dinamico viene creato mediante la keyword `new` e distrutto
mediante la keyword `delete`.
#grid(
columns: (0.5fr, 0.5fr),
[
```
Object* name = new Object;
```
],
[
```
delete name;
```
]
)
`new` restituisce un puntatore all'oggetto dinamico cosí creato, e tale
puntatore é l'unico modo per poter accedere a tale oggetto (il puntatore
potrebbe comunque essere memorizzato sullo stack). Questo significa che
se tale puntatore, per qualche motivo, perde il riferimento a tale oggetto,
questo rimane nello heap senza piú possibilitá di accedervi, e finché il
programma non termina l'area di memoria che questo occupa non puó essere
sovrascritta, generando un *orfano*. Infatti, a differenza di altri linguaggi
di programmazione, in C++ non esiste un *garbage collector* #footnote[É peró
possibile estendere C++ aggiungendo un garbage collector esterno, come Boehm
GC.].
#showybox[
```
struct Obj {
double d;
int arr[1024];
};
Obj* o = new Obj; // o is a pointer to a value in heap
o->d = 10.23;
o = new Obj; // Allowed, but now old values are lost in heap
new Obj; // Allowed, but memory is allocated for nothing
```
]
`delete` contrassegna il contenuto dinamico associato al puntatore come
scrivibile da parte del sistema operativo. Naturalmente, se si cerca di
chiamare `delete` su un puntatore su cui é giá stato chiamato si puó avere
un comportamento indefinito, perché i vecchi valori _potrebbero_ essere giá
stati sovrascritti da altri dati. Pertanto, una best practice é, dopo aver
chiamato `delete` riassegnare il puntatore a `nullptr`, perché chiamando
`delete` su un puntatore nullo non succede nulla. Cercando di chiamare
`delete` su un puntatore che non si riferisce a dei dati dinamici viene
restituito un errore a runtime.
#showybox[
```
struct Obj {
double d;
int arr[1024];
};
Obj* o = new Obj;
delete o; // Values in heap related to o are flagged as removable
delete o; // Allowed, but VERY dangerous
```
]
Gli array sono spesso allocati dinamicamicamente, perché in genere il loro
contenuto richiede molto spazio. Occorre peró prestare attenzione al fatto
che la deallocazione del contenuto dinamico va fatta con `delete[]`, che
libera ricorsivamente tutto il contenuto che si trova all'interno, altrimenti
solamente il contenuto che si trova in prima posizione viene liberato.
É anche possibile allocare dinamicamente array multidimensionali usando
puntatori a puntatori, anche se a tale livello di complessitá diventa molto
piú ragionevole utilizzare una classe.
#showybox[
```
int size1 = 5, size2 = 3;
int** array = new int*[size1];
for (int i = 0, i < size1, i++)
array[i] = new int[size2];
array[3][2] = 7;
for (int i = 0, i < size1, i++)
delete[] array[i];
delete[] array;
```
]
Un modo alternativo per raggruppare semanticamente funzioni, variabili,
dichiarazioni e tipi é quello del namespace, che assegna una etichetta univoca
a ciascuna di queste entitá. Tale etichetta diviene parte del nome dell'entitá
stessa, e due entitá che hanno lo stesso nome ma diverso namespace saranno
comunque trattati come distinti (naturalmente, all'interno di uno stesso
namespace non possono esistere due entitá con lo stesso nome).
#grid(
columns: (0.5fr, 0.5fr),
[
```
namespace name_s
{
...
}
```
],
[
```
name_s::entity
```
]
)
#showybox[
```
namespace First
{
int smth;
int g() {...}
}
namespace Second
{
int smth; // Allowed, namespace is not the same
}
First::smth = 10;
Second::smth = 5;
int smth = 2; // Allowed, signature is still different
int x = First::g();
```
]
La keyword `using` permette di specificare che, da quel momento in poi,
tutte le entitá che vengono nominate, se non hanno un namespace associato,
_potrebbero_ avere sottinteso il namespace passato come argomento. Puó anche
essere usato per specificare una singola entitá che deve essere "estratta" dal
namespace, senza riferirvisi con il nome del namespace.
#showybox[
```
namespace First
{
int s;
}
int main()
{
using First::s; // Now First::s is just s
int s = 10; // NOT allowed
s = 10; // Allowed
}
```
]
|
https://github.com/vEnhance/1802 | https://raw.githubusercontent.com/vEnhance/1802/main/r04.typ | typst | MIT License | #import "@local/evan:1.0.0":*
#show: evan.with(
title: [Notes for 18.02 Recitation 4],
subtitle: [18.02 Recitation MW9],
author: "<NAME>",
date: [16 September 2024],
)
#quote(attribution: [Koro-sensei in Assassination Classroom])[
Broadly speaking, there are two reasons a person feels the desire to teach something:
Either he wants to pass on his successes or he wants to pass on his failures.
]
This handout (and any other DLC's I write) are posted at
#url("https://web.evanchen.cc/1802.html").
= The pop quiz from R03, continued
In what follows, $T : RR^2 -> RR^2$ is linear.
In R03 I asked you two questions to motivate matrices:
1. Given $T( vec(3,4) ) = vec(pi, 9)$ and $T( vec(100, 100) ) = vec(0, 12)$,
what are $T( vec(103,104) )$ and $T( vec(203, 204) )$?
2. Given $T( vec(1,0) ) = vec(1, 3)$ and $T( vec(0,1) ) = vec(2, 4)$
what is $T( vec(13, 37) )$?
Now, if I wanted to make your life hard I could have given you this instead of Q1:
3. Given $T( vec(3,4) ) = vec(pi, 9)$ and $T( vec(100, 100) ) = vec(0, 12)$,
what is $T( vec(13,37) )$?
This is a lot harder than Q1; however, the question is still solvable.
If I locked you in a room for an hour and told you to work on it,
I think many of you would eventually get the answer:
$ vec(13, 37) = 24 vec(3, 4) - 0.59 vec(100, 100)
==> T( vec(13,37) ) = 24 vec(pi, 9) - 0.59 vec(0, 12) = vec(24 pi, 208.92). $
So this shows you something interesting:
actually, $vec(1,0)$ and $vec(0,1)$ is only special insomuch as it makes arithmetic easy.
But if you know the outputs of
$T( vec(3,4) )$ and $T( vec(100, 100) )$, you can _still_ find all the outputs of $T$ you want.
So really $vec(1,0)$ and $vec(0,1)$ aren't _that_ special.
Hence we say $vec(3,4)$ and $vec(100,100)$ are a *basis* of $RR^2$.
Every $bf(v)$ like $vec(13, 37)$ can be written as $c_1 vec(3,4) + c_2 vec(100,100)$
for some $c_1$ and $c_2$, and hence you can solve Q3
(Poonen 4.6 calls this "changing coordinates").
However, let's consider more variations of the question Q3.
4. Given $T( vec(3,4) ) = vec(pi, 9)$, what is $T( vec(13,37) )$?
5. Given $T( vec(3,4) ) = vec(pi, 9)$, $T( vec(100, 100) ) = vec(0, 12)$,
and $T( vec(103, 104) ) = vec(pi, 21)$
what is $T( vec(13,37) )$?
6. Given $T( vec(3,4) ) = vec(pi, 9)$ and $T( vec(300, 400) ) = vec(100 pi, 900)$,
what is $T( vec(13,37) )$?
The variants Q4, Q5, Q6 are all strange in some way and don't make good quiz questions.
- Q4 is obviously impossible; _not enough information_ to find an answer.
- Q5 is solvable, but has _redundant information_. You can delete any one hypothesis.
// This might be confusing for students unless you're a truly sadistic teacher (like me).
- Q6 suffers from both defects.
Even though there are two givens, they are redundant.
Now the punch line is that these concepts correspond to the new words you learned in class.
Each of the words "linearly independent" (abberviated lin. indp.)
and "spanning" is one of the _good_ properties a basis has.
Q3 has both ("basis" = "lin. indp." + "spanning"), and Q4-Q6 are each missing something.
- Q3 is a good quiz question because $vec(3,4)$ and $vec(100,100)$ are a *basis*.
- Q4 is impossible because $vec(3,4)$ is *NOT spanning* (though it is lin. indp.);
- Q5 is redundant because the vectors $vec(3,4)$, $vec(100,100)$, $vec(103,104)$
are *NOT lin. indp.* (though spanning);
- Q6 is the worst one as the two vectors $vec(3,4)$ and $vec(300, 400)$
are *NEITHER lin. indp. NOR spanning*.
= Dimension
For dimension, you can often trust your hunches, and they'll be right.
For example, you might have the feeling that any good quiz question for $T : RR^2 -> RR^2$
needs to end up having $2$ given equations. You'd be right.
More examples of correct hunches (this is the _buy two get one free_ in Poonen 4.7):
- In $RR^n$, at least $n+1$ vectors are never linearly independent.
- In $RR^n$, at most $n-1$ vectors are never spanning. (So a basis is always $n$ vectors exactly.)
- Also, if you have exactly $n$ vectors in $RR^n$, and they're linearly independent, then they're a basis.
- Also, if you have exactly $n$ vectors in $RR^n$, and they're spanning, then they're a basis.
- Most usefully, they're spanning if and only if the $n times n$ matrix
whose columns are the vectors has *nonzero determinant*.
(Reason: for $n=3$, not being spanning in $RR^3$ means the parallelepiped
has volume zero --- the trick from PSet 1. Same idea for $n > 3$ with hypervolumes.)
The last bullet matters: the determinant is doing a _lot_ of work for you.
When $n = 2$ the determinant is unnecessary, because you can just use "slope":
it's obvious that $vec(1,2)$ and $vec(100,200)$ have a dependence.
But for $n >= 3$ *you can't eyeball it*#footnote[Though
if you have a set of _exactly two_ vectors,
they're dependent if and only if they're multiples, even in $RR^n$.
Which you _can_ eyeball;
so if you're trying to tell whether a span of two vectors in $RR^3$ is a line or plane,
that's easy.
(Even more stupidly, a single vector is linearly dependent only when it's the zero vector.)]:
e.g., $bf(v)_1 = vec(1,3,4)$, $bf(v)_2 = vec(10,1,11)$ and $bf(v)_3 = vec(-9,10,1)$
might look like unrelated small numbers,
but surprisingly it turns out that
#eqn[
$ 109 bf(v)_1 - 37 bf(v)_2 - 29 bf(v)_3 =0. $
<big-coeff>
]
Without "slope", you cannot notice these dependences by sight for $n >= 3$, so use the determinant.
= Recitation questions from official course
Today will discuss matrices and linear transformations.#footnote[
Evan says: I actually think this is the easiest recitation set we've had so far,
you can do everything by just being good at parroting directions.
No conceptual understanding is needed to answer these questions.]
/ 1.: Consider the vectors $vec(1, - 1, 1) , vec(2, 1, 1) , vec(1, 5, - 1)$.
Are the vectors linearly independent?
What is the span of these vectors?
Does this set of vectors form a basis?
/ 2.: Consider the vectors $bf(a) = vec(-2,1)$ and $bf(b) = vec(1,1)$.
Verify that these vectors form a basis of $RR^2$.
What are the coordinates of $3bf(e)_1-2bf(e)_2$ in this basis?
/ 3.: How many solutions do the following systems of equations have?
/ 3a.: $x + 2 y = 0 ; 2 x + 4 y = 0 .$
/ 3b.: $mat(3, - 1, 0; 1, 2, - 3; - 4, 0, 1) vec(x, y, z) = vec(1, 2, - 1)$
/ 4.: Do the vectors $angle.l 1 , 0 , - 1 angle.r , angle.l 2 , 0 , 0 angle.r , angle.l 0 , 1 , 1 angle.r$ form a basis?
= Post-recitation notes
Here's another addendum based on what I discussed during the recitation section.
== "Most" matrices are invertible
Your general intuition in linear algebra should be that if you pick numbers out of a hat
to populate the entries of a matrix, then the matrix is probably invertible,
any associated equation has only one solution, etc.
To demonstrate this in recitation, I asked the audience to generate the numbers
in the following two examples however they liked:
#exer[
What is the span of $vec(420, 321)$ and $vec(666, 5)$ in $RR^2$?
] <random2>
#solution[
Because the two vectors are not multiples of each other, they are linearly independent.
(Alternatively, calculate $det(mat(420, 666; 321, 5)) = 420 dot 5 - 321 dot 666 = -211686 != 0$.)
Hence they are a basis of $RR^2$ and the span is all of $RR^2$.
]
#exer[
What is the span of $vec(3,42,18)$, $vec(1, 53, 17)$, $vec(71,91,13)$ in $RR^3$?
] <random3>
#solution[
As we mentioned above (@big-coeff), you shouldn't eyeball three or more dimensions;
if you get three vectors in $RR^3$ and want to know if they are linearly independent or not,
you should always take the determinant.
The audience picked some very large numbers for me so I got a chance to show
off my amazing mental arithmetic skills, but the point is that
$ det(mat(3,1,71; 42,53,91; 18,17,13)) = "ugly arithmetic" = -18522 != 0. $
So the three vectors are linearly independent, and hence a basis of $RR^3$.
So the span is all of $RR^3$.
]
Of course, during the homework and exams,
the instructor may cherry-pick numbers in order to test you on the determinant zero case.
So this is a heuristic about real life, not something to follow on the problem set.
== Determining the span
Here is a flowchart (okay actually a bulleted list but you get the idea)
summarizing the process of computing the span of a given set of vectors.
This flowchart does _not_ assume the number of vectors is the same as the dimension.
Remember, in $RR^n$, the span is always a $d$-dimensional subspace, for some $0 <= d <= n$.
I've accordingly labeled the bullets below with the dimensions, in increasing order.
For $n = 2$ and $n = 3$ the process is a pretty straightforward flowchart.
Once $n >= 4$, however, things are more annoying.
The reason $n = 3$ happens to be simple enough to be formatted as a flowchart
is that for general $n$, the cases $d = 0$, $d = 1$, $d = n$ are the easiest.
And when $n = 3$, that only leaves $d = 2$ which you can get by process of elimination.
But when $n >= 4$, it's harder to tell the difference between $d = 2$ to $d = n-1$.
Consequently, I do not think 18.02 will ask you for $n >= 4$ and $d > 1$.
(In fact, you haven't even been told how to take a $4 times 4$ determinant.)
=== Flowchart for $RR^2$
- *0-D case*: Are all the vectors the zero vector $vec(0,0)$? If so the span is just a single *point*.
- *1-D case*: Are all the vectors pointing the same direction (i.e. multiples of each other)?
If so, and there is at least one nonzero vector,
the span is a *line* in the common direction of the vectors.
- Example: the span of the vectors $vec(3,6)$, $vec(10,20)$, $vec(100,200)$, $vec(5000, 10000)$
consists of the multiples of $vec(1,2)$.
- *2-D case*: Are there two (nonzero) vectors not pointing in the same direction
(equivalently, are linearly independent)? If so, the span is *all of $RR^2$*.
- Example: The span of $vec(420, 321)$ and $vec(666, 5)$ is all of $RR^2$.
This was @random2 earlier.
=== Flowchart for $RR^3$
- *0-D case:* Are all the vectors the zero vector $vec(0,0,0)$? If so the span is just a single *point*.
- *1-D case*: Are all the vectors pointing the same direction (i.e. multiples of each other)?
If so, and there is at least one nonzero vector,
the span is a *line* in the common direction of the vectors.
- Example: the span of the vectors $vec(3,6,9)$, $vec(10,20,30)$ and $vec(100,200,300)$
consists of the multiples of $vec(1,2,3)$.
- *2-D case*: Is there more than one direction present,
but you can't find three vectors which are linearly independent?
If so, the span is a *plane*.
- Example: Following @big-coeff, the span of the
$vec(1,3,4)$, $vec(10,1,11)$ and $vec(-9,10,1)$ is a plane.
This follows by process of elimination: we know $d = 0$ and $d = 1$ don't apply here
(none of these vectors are zero or are multiples of each other)
and we can rule out $d = 3$ because we can calculate the determinant
$ det(mat(1,10,-9;3,1,10;4,11,1)) = 0 $
to see that our three vectors are _not_ linearly independent.
(Again, I want to emphasize that actually finding an explicit dependence ---
that is, extracting @big-coeff --- is annoying.
You should take the determinant instead,
since you only care _whether or not_ there is a dependence,
not what the coefficients actually are.)
- *3-D case*: Are there three vectors among them which are linearly independent from each other?
If so, the span is *all of $RR^3$*.
- Example: The span of $vec(3,42,18)$, $vec(1, 53, 17)$, $vec(71,91,13)$ in $RR^3$.
This was @random3 earlier.
== Number of solutions to systems of equations
To reiterate the table from before, if you have a square matrix $A$
for an system of $n$ equations in $n$ variables, the following table applies.
#figure(
table(
columns: 2,
table.header([Non-degenerate], [Degenerate]),
[$det A != 0$], [$det A = 0$],
[_Always_ a _unique_ solution \ (you can ignore RHS's)],
[EITHER no solutions at all (contradictory equations) \
OR infinitely many solutions (redundant equations)],
[What to expect if $A$ is randomly generated],
[Needs cherry-picked $A$]
),
kind: table
)
So if you are asked to find the number of solutions to a square system
$
a_11 x_1 + a_12 x_2 + ... + a_1n x_n &= b_1 \
a_21 x_1 + a_22 x_2 + ... + a_2n x_n &= b_2 \
&dots.v \
a_(n 1) x_1 + a_(n 2) x_2 + ... + a_(n n) x_n &= b_n \
$
you always start by checking whether $det A = 0$ or not
(where $A$ is the $n times n$ matrix made by the coefficients).
- If $det A != 0$, you don't even have to look at $b_i$; just *answer 1*.
- If $det A = 0$, then you have to do a bit more work to see whether the equations
contain any contradictions within them, or if there's some redundant equations.
- If the instructor was nice enough to ask with $b_1 = b_2 = ... = b_n = 0$,
then the system of equations has an obvious answer: $x_1 = ... = x_n = 0$.
So you're not in the "zero solutions" case, and
by process of elimination, *answer "infinitely many"*.
- Otherwise, you can follow an ad-hoc procedure to see if you can find any contradiction.
In 18.02 you'll probably only be asked for $n = 2$ or $n = 3$.
When $n = 2$, you can tell just by looking, e.g.
- The system $x + 3y = 8$ and $10x + 30y = 80$ is obviously "infinitely many",
because the two equations are the same. In a case like this, *answer "infinitely many"*.
- The system $x + 3y = 8$ and $10x + 30y = 42$ is obviously "no solutions",
because it would imply $80 = 10 dot 8 = 10 dot (x+3y) = 10x + 30y = 42$,
which is self-contradictory.
In a case like this, *answer 0*.
When $n = 3$, there's more work involved.
I would say just eliminate one variable like in school algebra,
which brings you down to $n = 2$ again.
For $n > 3$, there are more advanced methods and you want to be systematic at that point,
but I don't think those cases will be arise in 18.02.
|
https://github.com/binhtran432k/ungrammar-docs | https://raw.githubusercontent.com/binhtran432k/ungrammar-docs/main/components/glossary.typ | typst | #let GLS_PREFIX = "gls-auto-"
#let GLOSSARIES = state("glossaries", (:))
#let PRINTED_GLOSSARIES = state("printed_glossaries", ())
#let update_glossaries(glossaries) = {
GLOSSARIES.update(glossaries)
}
#let print_glossary(glossaries, name, bold: true) = {
let to_print = ()
for (key, value) in glossaries.at(name).pairs() {
// let (abbr, full) = value
let abbr = value.at(0)
let full = value.at(1)
to_print.push([#if bold [*#abbr*] else [#abbr] #label(GLS_PREFIX + key)])
to_print.push(full)
}
grid(
columns: 2,
gutter: 3mm,
..to_print
)
}
#let gls(name, mode: none) = {
let contents = locate(loc => {
let glossaries = GLOSSARIES.at(loc)
for table in glossaries.values() {
if name in table.keys() {
if table.at(name).len() > 2 {
link(label(GLS_PREFIX + name))[#table.at(name).at(2)]
} else if mode == "long" {
link(label(GLS_PREFIX + name))[#table.at(name).at(1)]
} else if mode == "short" {
link(label(GLS_PREFIX + name))[#table.at(name).at(0)]
} else if mode == "full" or name not in PRINTED_GLOSSARIES.at(loc) {
link(label(GLS_PREFIX + name))[#table.at(name).at(1) (#table.at(name).at(0))]
} else {
link(label(GLS_PREFIX + name))[#table.at(name).at(0)]
}
break
}
}
}
)
contents
PRINTED_GLOSSARIES.update(curr => {
if name not in curr {
curr.push(name)
}
curr
})
// [#glossaries]
}
|
|
https://github.com/sabitov-kirill/comp-arch-conspect | https://raw.githubusercontent.com/sabitov-kirill/comp-arch-conspect/master/README.md | markdown | # Computer Architecture Course Notes
## About
This repository contains *Computer Architecture Course Notes* source code. The course took place in the semestr 1, at ITMO University, CT. Lecturer - <NAME>.
## Build
Notes are written in [typst](https://typst.app/) language and can be either compiled at online IDE or from CLI:
```bash
typst compile main.typ
```
## How to Contribute
Notes contains mistakes and many inaccuracies, so feel free to contribute:
1. **Fork the Repository**: Click the "Fork" button in the top-right corner of this repository's page. This will create a copy of the repository in your GitHub account.
2. **Clone the Repository**: Clone your forked repository to your local machine using the following command in your terminal:
3. **Create a Branch**: Create a new branch to work on your changes using the following command:
4. **Make Changes**: Make your desired changes to the files in the repository using your preferred text editor or IDE.
5. **Commit Changes**: Commit your changes to your branch with descriptive commit messages using the following commands:
6. **Push Changes**: Push your changes to your forked repository on GitHub using the following command:
7. **Submit a Pull Request**: Go to the GitHub page of your forked repository. You should see a button that says "Compare & pull request". Click on that button to submit your changes as a pull request.
8. **Describe Your Changes**: Provide a clear and descriptive title for your pull request, along with a detailed description of the changes you've made.
9. **Wait for Review**: Wait to review your pull request, while review I may ask for additional changes or merge your pull request if everything looks good.
|
|
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/pagebreak-03.typ | typst | Other | // Test a combination of pagebreaks, styled pages and pages with bodies.
// Should result in three five pages, with the fourth one being red-colored.
#set page(width: 80pt, height: 30pt)
#[#set page(width: 60pt); First]
#pagebreak()
#pagebreak()
Third
#page(height: 20pt, fill: red)[]
Fif#[#set page();th]
|
https://github.com/sjedev/typst-notetaking-template | https://raw.githubusercontent.com/sjedev/typst-notetaking-template/main/template.typ | typst | The Unlicense | #let conf(subject, locator, doc) = {
set page(
paper: "a4",
header: align(right, lower(smallcaps(subject)) + [ ] + lower(smallcaps(locator))),
margin: (
left: 7.6em,
right: 7.6em,
),
numbering: "1 of 1",
number-align: right,
)
set par(justify: true)
set text(
font: "Linux Libertine",
size: 12pt,
)
show heading.where(
level: 1
): it => block(width: 100%)[
#set align(left)
#set text(14pt, weight: "semibold", bottom-edge: "descender", top-edge: "ascender")
#smallcaps(it.body)
]
show heading.where(
level: 2
): it => block(width: 100%)[
#set align(left)
#set text(13pt, weight: "regular", bottom-edge: "descender", top-edge: "ascender")
#smallcaps(it.body)
]
show heading.where(
level: 6
): it => block(width: 100%)[
#set align(left)
#set text(13pt, weight: "semibold")
#lower(smallcaps(it.body))
]
columns(1, doc)
}
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/columns_10.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
//
// // Test a page with zero columns.
// // Error: 49-50 number must be positive
// #set page(height: auto, width: 7.05cm, columns: 0) |
https://github.com/MrLadas/resume | https://raw.githubusercontent.com/MrLadas/resume/main/src/template.typ | typst | // Function sets the document characteristics and builds the header. Parameters
// override cli arguments.
//
// If no parameters are included, will be populated from cli key value arguments in the form:
// ` typst compile doc.typ --input key=value `
#let conf(title: none, author: none, email: none, linkedin: none, github: none, doc) = {
let title = { if title == none { sys.inputs.at("title", default: "Default Title")} }
let author = { if author == none { sys.inputs.at("author", default: "Default Author") } }
let email = { if email == none { sys.inputs.at("email", default: "mailto:<EMAIL>") } }
let linkedin = { if linkedin == none { sys.inputs.at("linkedin", default: "https://www.linkedin.com/") } }
let github = { if github == none { sys.inputs.at("github", default: "https://github.com") }}
set document(author: author, title: "resume")
set text(
font: "IBM Plex Sans",
size: 11pt,
lang: "en"
)
set page(
margin: (x: 5em, y: 4em)
)
set align(left + top)
align(center)[
#show: text(weight: 700, 1.75em, title)
]
align(center)[
#show: text((link(linkedin)[LinkedIn],link(email),link(github)[Github]).join(" | "))
]
set par(justify: true)
doc
}
// Returns a horizontal line across the page to divide sections
// -> str
#let chiline() = {v(-3pt); line(length: 100%); v(-5pt)}
// Creates an entry paragraph
#let entry_par(company, title, date, bullets) = {
text(
weight: "bold",
company
)
box(
width: 1fr,
align(
alignment.right,
date
)
)
"\n"
title
"\n"
list(
..bullets
)
}
// Creates a resume body entry such as job or project
#let entry(company, title, date, bullets) = {
par(
leading: 0.60em,
entry_par(company, title, date, bullets)
)
}
// Creates a certifications entry
#let cert(bullets) = {
par(
leading: 0.60em,
list(
..bullets
)
)
}
// Creates a degree entry
#let degree(school, degree, graduation_date, additional: "") = {
text(
weight: "bold",
school
)
"\n"
text(
style: "italic",
degree
)
box(
width: 1fr,
align(
alignment.right,
graduation_date
)
)
additional
}
#let skill_entry(skills) = {
list(
..skills
)
}
// Entry for skills
#let skills_block(skills) = {
box(height: 40pt,
columns(2, gutter: 11pt)[
#set par(justify: true)
#show: skill_entry(skills)
]
)
} |
|
https://github.com/sebaseb98/clean-math-thesis | https://raw.githubusercontent.com/sebaseb98/clean-math-thesis/main/chapter/declaration.typ | typst | MIT License | // local imports
#import "../meta.typ": author, city, deadline
#heading(level: 2, outlined: false, numbering: none)[Declaration]
Typically, you need to declare that e.g. you wrote everything on your own. This university dependent statement is usually required to be signed by the author.
#v(1cm)
#align(left)[#city, #deadline]
#align(right)[
#line(length: 40%)
#author
] |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/show-node-03.typ | typst | Other | // Test integrated example.
#show heading: it => block({
set text(10pt)
box(move(dy: -1pt)[📖])
h(5pt)
if it.level == 1 {
underline(text(1.25em, blue, it.body))
} else {
text(red, it.body)
}
})
= Task 1
Some text.
== Subtask
Some more text.
= Task 2
Another text.
|
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/match_def/ident_in_init.typ | typst | Apache License 2.0 | #let f(a ) = /* ident after */a; |
https://github.com/Az-21/typst-components | https://raw.githubusercontent.com/Az-21/typst-components/main/components/deprecated/codeblock.typ | typst | Creative Commons Zero v1.0 Universal | // Deprecated in favor of `codelst`
// https://github.com/jneug/typst-codelst
#let codeblock(content, lang: "", background: luma(240)) = block(
fill: background,
inset: 10pt,
radius: 2pt,
width: 100%,
)[#text(raw(lang: lang, content))]
/*
// @override default #raw(block: true) style
#show raw.where(block: true): block.with(
fill: luma(240),
inset: 10pt,
radius: 2pt,
width: 100%
)
*/
|
https://github.com/katamyra/Notes | https://raw.githubusercontent.com/katamyra/Notes/main/Compiled%20School%20Notes/CS1332/Modules/IterativeSorts.typ | typst | #import "../../../template.typ": *
= Iterative Sorts
== Bubble Sort
Bubble sort inspects pairs of adjacent elements, and swaps as necessary which "bubbles" the maximum element to its correct position.
*Pseudocode*
```java
stopIndex = array.length - 1
while stopIndex != 0:
while i < stop
if (arr[i] > arr[i+1]):
swap values at i and i+1
i++;
stopIndex--;
```
#note[
One optimization is to make the sort adaptive, meaning it will stop early if necessary. To do this, we have a flag `swapsMade` and if false after an iteration, we can stop early.
]
#theorem[
*Time Complexity*
Best Case: O(n) (already sorted)
Average Case: O(n^2)
Worst Case: O(n^2) (reverse sorted array)
Bubble sort is _stable, adaptive, and in-place_
]
= Cocktail Shaker
Iterative sort that performs bubble sort twice in one iteration, to bubble the largest to the end, and the smallest to the front, shaking the list back and forth
The first stage of cocktail shaker sort loops through the array from left to right, swapping values out of order. At the end of the first iteration, the largest number will reside at the end of the array.
The second stage loops backwards from the end, re-swapping when necessary. However, we will start going backwards at the most recently sorted item, since everything past that should be sorted.
#theorem[
*Time Complexity*:
Best: O(n) (fully sorted array)
Average Case: O(n^2)
Worst: O(n^2) (reverse sorted array)
Cocktail shaker sort is _stable, adaptive, and in-place_
] |
|
https://github.com/linhduongtuan/DTU-typst-presentation | https://raw.githubusercontent.com/linhduongtuan/DTU-typst-presentation/main/Beispiele/MatheNummeriert/main.typ | typst | #set math.equation(numbering: "(1)")
#show heading.where(level: 1): it => {
counter(math.equation).update(0)
it
}
= Eine sehr wichtige Überschrift
$ a^2 + b^2 = c^2 $
$ c + d = e $
== Eine Unterüberschrift
$ c + d $
= Noch eine Überschrift
$ a + b $
$ c + d $
$ e + f $ |
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/showybox/2.0.0/lib/state.typ | typst | Apache License 2.0 | /*
* ShowyBox - A package for Typst
* <NAME> and Showybox Contributors (c) 2023
*
* lib/state.typ -- The package's file containing all the
* internal functions used to handle showybox state and id
*
* This file is under the MIT license. For more
* information see LICENSE on the package's main folder.
*/
#let _showy-state(id) = state("showybox-state-for-id-" + repr(id), 0pt)
#let _showy-id = counter("showybox-id") |
https://github.com/jomaway/typst-linguify | https://raw.githubusercontent.com/jomaway/typst-linguify/main/tests/fluent-test.typ | typst | MIT License | // #include "fluent-test/test.typ"
#import "../lib/linguify.typ": *
#let de = smallcaps("DE:")
#let en = smallcaps("EN:")
#let data = toml("fluent-test-assets/lang.toml")
#let path = if-auto-then(data.ftl.at("path", default: auto), "./L10n")
#for lang in data.ftl.languages {
let lang_section = read(path + "/" + lang + ".ftl")
data.lang.insert(lang, lang_section)
}
*Data: *
#box(fill: luma(240), radius: 5pt, inset: 0.8em)[#data]
= Greetings
- #linguify("hello", from: data)
- #linguify("hello", from: data, args:(name: "Pete"))
= Headings
#set heading(numbering: "1.a.")
```typc
#set heading(numbering: "1.a.")
```
Your document has #context linguify("heading", from: data, args:(headingCount: counter(heading).get().first())).
#block[
#set text(lang: "de")
#de Dein Dokument hat #context linguify("heading", from: data, args:(headingCount: counter(heading).get().first())).
]
= Head
Your document has #context linguify("heading", from: data, args:(headingCount: counter(heading).get().first())).
#block[
#set text(lang: "de")
#de Dein Dokument hat #context linguify("heading", from: data, args:(headingCount: counter(heading).get().first())).
]
= Head
Your document has #context linguify("heading", from: data, args:(headingCount: counter(heading).get().first())).
#block[
#set text(lang: "de")
#de Dein Dokument hat #context linguify("heading", from: data, args:(headingCount: counter(heading).get().first())).
]
|
https://github.com/coco33920/.files | https://raw.githubusercontent.com/coco33920/.files/mistress/typst_templates/tdd/template.typ | typst | #let template(
//name of the association
name: none,
//date of the document
date: none,
//title of the document
title: none,
//logo of the association
logo: none,
//footer
footer: none,
//abstract of the document
abstract: none,
//body
body
) = {
set page(
header: [#set text(fill:gradient.linear(..color.map.flare)); #name #h(1fr) #title],
footer: [#emph(footer) #h(1fr) #counter(page).display()],
numbering: "1",
number-align: right
)
show heading.where(level:1): set text(fill:gradient.linear(..color.map.flare))
show heading.where(level:2): set text(fill:gradient.linear(..color.map.flare))
set heading(numbering: "1.1.")
//set lang
set text(lang: "fr",weight: "regular",size: 12pt)
//set title
{
set text(weight: "bold",size: 24pt,fill:gradient.linear(..color.map.flare))
align(center,title)
//set name of the writer
set text(weight: "regular", size: 20pt)
align(center,name)
//set date
set text(size: 16pt)
align(center,date)
}
//set logo
set text(weight: "regular", size: 12pt)
figure(
image(logo, width: 30%)
)
if abstract != "" {
//set abstract
align(center,par(justify: true)[
= Abstract
#abstract
])
}
//set page
v(3em)
//body
body
} |
|
https://github.com/mem-courses/linear-algebra | https://raw.githubusercontent.com/mem-courses/linear-algebra/main/homework/linear-algebra-homework9.typ | typst | #import "../template.typ": *
#show: project.with(
title: "Linear Algebra Homework #9",
authors: (
(name: "<NAME> (#95)", email: "<EMAIL>", phone: "3230104585"),
),
date: "November 26, 2023",
)
#let alpha = math.bold(math.alpha)
#let beta = math.bold(math.beta)
#let gamma = math.bold(math.gamma)
#let theta = math.bold(math.theta)
#let eta = math.bold(math.eta)
#let xi = math.bold(math.xi)
#let ds = math.dots.c
#let TT = math.upright("T")
= P104 习题四 19 #ac
#prob[证明:在线性空间 $RR^3$ 中,向量组 $alpha_1=display(mat(0,1,2))^TT,sp alpha_2 = display(mat(3,-1,0))^TT,sp alpha_3 = display(mat(3,1,0))^TT$ 与 $beta_1=display(mat(1,0,0))^TT,sp beta_2=display(mat(1,2,0))^TT,sp beta_3=display(mat(1,2,3))^TT$ 等价.]
$
r mat(0,1,2;3,-1,0;3,1,0) = r mat(1,0,0;1,2,0;1,2,3) = 3
$
所以 $L(alpha_1,alpha_2,alpha_3) = L(beta_1,beta_2,beta_3) = RR^3$,即两向量组等价.
= P104 习题四 21 #ac
#prob[判断题,略.]
(1) T
(2) F
(3) F
(4) T
(5) F
= P105 习题四 23 #ac
#prob[
设向量组 $alpha_1,alpha_2,alpha_3$ 为 $RR^3$ 的一个基,
$
beta_1 = 2 alpha_1 + 2k alpha_3,sp
beta_2 = 2 alpha_2,sp
beta_3 = alpha_1 + (k+1)alpha_3
$
(1) 证明向量组 $beta_1,beta_2,beta_3$ 也是 $RR^3$ 的一个基.
]
#set math.mat(delim: "|")
$
mat(2,0,2k;0,2,0;1,0,k+1)
= mat(1,0,k+1;0,2,0;0,0,-2)
= -4 !=0
$
#set math.mat(delim: "(")
$beta_1,beta_2,beta_3$ 在基 $alpha_1,alpha_2,alpha_3$ 下的坐标线性无关 $<=>$ $beta_1,beta_2,beta_3$ 线性无关 $<=>$ $beta_1,beta_2,beta_3$ 也是 $RR^3$ 的一组基.
#prob[(2) 当 $k$ 为何值时,存在非零向量 $xi$ 在基 $alpha_1,alpha_2,alpha_3$ 与基 $beta_1,beta_2,beta_3$ 下的坐标相同,并求所有满足条件的 $xi$.]
设 $xi = x_1 alpha_1 + x_2 alpha_2 + x_3 alpha_3 = x_1 beta_1 + x_2 beta_2 + x_3 beta_3$.
代入得:
$
x_1 alpha_1 + x_2 alpha_2 + x_3 alpha_3
= (2x_1 + x_3) alpha_1 + (2x_2) alpha_2 + (2k x_1 + (k+1) x_3) alpha_3\
=> cases(
x_1+x_3 = 0,
x_2 = 0,
k(2x_1+x_3) = 0,
)
$
综上,由于要求向量非零,故当且仅当 $k=0$ 时,所有形如 $xi=(t,0,-t),sp t in RR$ 的向量合法.
= P105 习题四 25 #ac
#prob[
已知 $RR^3$ 的两个基分别为
$
upright("(I)") quad& alpha_1=mat(1;1;1),sp alpha_2 = mat(1;0;-1),sp alpha_3=mat(1;0;1)\
upright("(II)") quad& beta_1=mat(1;2;1),sp beta_2=mat(2;3;4),sp beta_3=mat(3;4;5)\
$
(1) 求从基 (I) 到基 (II) 的过渡矩阵 $bold(M)$;
]
$
upright("(II)") = upright("(I)") bold(M)\
=> bold(M) = mat(1,1,1;1,0,0;1,-1,1)^(-1) mat(1,2,3;2,3,4;1,4,5) = mat(2,3,4;0,-1,-1;-1,0,0)
$
(利用分块矩阵的性质和初等行变换求解的过程略)
#prob[(2) 设 $alpha$ 在基 (I) 下的坐标为 $display(mat(1,1,3))^TT$,求 $alpha$ 在基 (II) 下的坐标.]
$
alpha = upright("(II)") bold(Y) = upright("(II)") bold(M X) = upright("(I)") bold(X) => bold(Y) = bold(M)^(-1) bold(X)\
=> bold(Y) = mat(2,3,4;0,-1,-1;-1,0,0)^(-1) mat(1;1;3) = mat(-3;-11;10)
$
= P105 习题四 26
#prob[
设向量组 $alpha_1=display(mat(1,2,1))^TT,sp alpha_2=display(mat(1,3,2))^TT,sp alpha_3=display(mat(1,a,3))^TT$ 为 $RR^3$ 的一个基,$beta=display(mat(1,1,1))^TT$ 在这个基下的坐标为 $display(mat(b,c,1))^TT$.
(1) 求 $a,b,c$ 的值.
]
由已知:
$
cases(
1 = b+c+1,
1 = 2b+3c+a,
1 = b+2c+3
) => cases(
a = 3,
b = 2,
c = -2,
)
$
#prob[(2) 证明 $alpha_2,alpha_3,beta$ 为 $RR^3$ 的一个基,并求 $alpha_2,alpha_3,beta$ 到 $alpha_1,alpha_2,alpha_3$ 的过渡矩阵.]
#set math.mat(delim: "|")
$
mat(1,3,2;1,3,3;1,1,1)
= mat(1,3,2;0,0,1;0,-2,-1) = 2 != 0
$
#set math.mat(delim: "(")
所以 $alpha_2,alpha_3,beta$ 线性无关,是 $RR^3$ 的一组基,且可解得过渡矩阵为:
$
bold(M) = mat(
sp 1 sp,sp 1 sp,sp 0 sp;
-1/2,0,1;
1/2,0,0;
)
$
= P106 习题四 29 #ac
#prob[设矩阵 $bold(A) = display(mat(1,0,1;1,1,2;0,1,1;))$,$alpha_1,alpha_2,alpha_3$ 为线性无关的三元列向量,求向量组 $bold(A) alpha_1,bold(A) alpha_2,bold(A) alpha_3$ 的秩.]
$
r(bold(A) alpha_1,bold(A) alpha_2,bold(A) alpha_3) = r(bold(A) vecn(alpha,3)) = r(bold(A)) = 2
$
= P174 习题七 21 #ac
#prob[设 $V$ 是实数域 $RR$ 上全体 $n$ 阶对角矩阵构成的线性空间(运算为矩阵的加法与数与矩阵乘法),求 $V$ 的一个基和维数.]
设一组常用基为 $bold(e)_(i i),sp i=1,2,dots.c,n$.显然两两线性无关且对于所有对角矩阵 $bold(A) in RR^(n times n)$ 都有
$
bold(A) = upright("diag")(seqn(l,n)) = l_1 bold(e)_11 + l_2 bold(e)_22 + dots.c + l_n bold(e)_(n n)
$
故 $dim V = n$,基即上文给出的一组常用基.
= P174 习题七 22 #ac
#prob[证明:如果线性空间中的每一个向量都可以唯一写成该空间中 $n$ 个给定向量的线性组合,那么该线性空间是 $n$ 维的.]
设 $n$ 个给定向量线性相关,不妨设 $alpha_1=k_2 alpha_2 + k_3 alpha_3 + dots.c + k_n alpha_n$.
那么,对于向量 $alpha_1$,有:
$
alpha_1
= vecn(alpha,n) mat(1;0;dots.v;n)
= vecn(alpha,n) mat(0;k_2;dots.v;k_n)
$
即有两种表示方式,与题设矛盾,故 $n$ 个给定向量必线性无关.
= P174 习题七 25 #ac
#prob[设向量组 (I) $alpha_1,alpha_2,dots.c,alpha_n$ 及向量组 (II) $beta_1,beta_2,dots.c,beta_n$ 是数域 $PP$ 上的线性空间 $V$ 中的两个基.证明:从基 (I) 到基 (II) 的过渡矩阵和从基 (II) 到基 (I) 的过渡矩阵互为逆矩阵.]
设基 (Z) 是 $V$ 的一组常用基,那么
$
upright("(I)") = upright("(Z)") bold(A)_1 quad
upright("(II)") = upright("(Z)") bold(A)_2\
upright("(II)") = upright("(I)") bold(M)_1 quad
upright("(I)") = upright("(II)") bold(M)_2\
$
有
$
upright("(I)") &= upright("(Z)") bold(A)_1\
&= upright("(II)") bold(M)_2 = upright("(I)") bold(M)_1 bold(M)_2 = upright("(Z)") bold(A)_1 bold(M)_1 bold(M)_2
$
故 $bold(A)_1 = bold(A)_1 bold(M)_1 bold(M)_2$,由于每组基都是一个极大线性无关组,所以 $bold(A)_1,bold(M)_1,bold(M)_2$ 均可逆,且 $bold(M)_1 bold(M)_2 = bold(E)$.两个过渡矩阵互为逆矩阵.
#warn[做麻烦了.]
= P174 习题七 26 #ac
#prob[
设 $V$ 是数域 $PP$ 上的一个 $n$ 维线性空间,证明:
(1) $PP^(n times n)$ 中的任意一个可逆矩阵均可以作为 $V$ 中某两个基之间的过渡矩阵.
]
可逆矩阵 $bold(M)$ 必是满秩的,不妨设其第 $i$ 列作为向量组 (II) 中第 $i$ 个向量在基 (I) 下的坐标,则由于可 $bold(M)$ 是满秩的,故向量组 (II) 也线性无关,且秩等于 $n$,即向量组 (II) 也可以作为一组基.且根据假设可以得到:
$
upright("(II)") = upright("(I)") bold(M)
$
即 $bold(M)$ 是基 (I) 到基 (II) 的过渡矩阵.
#note[这严谨吗?]
#prob[
(2) 若 $V$ 中的由 $n$ 个不同向量所形成的向量组和 $V$ 的一个基等价,则该向量组也是 $V$ 的一个基.
]
不妨设 $r_1=n$ 为基的秩,$r_2$ 为向量组的秩.由于两者等价,故 $r_1=r_2=n$,即该向量组线性无关.即该向量组也是 $V$ 的一个基.
= P175 习题七 27 #ac
#prob[
设 $W_1,W_2$ 是数域 $PP$ 上的线性空间 $V$ 的两个子空间,$alpha,beta$ 是 $V$ 中的两个向量,其中 $alpha in W_2$ 但 $alpha in.not W_1,beta in.not W_2$,证明:
(1) $forall c in PP,sp beta + c alpha in.not W_2$.
]
反证法.设 $gamma = beta + c alpha in W_2$,则由子空间的封闭性,$beta = gamma - c alpha in W_2$,与题设矛盾.
#prob[
(2) 至多有一个 $c in PP$ 使得 $beta + c alpha in W_1$.
]
反证法.设 $gamma = beta + c alpha in W_1$ 且 $eta = beta + c' alpha in W_1$,则由子空间的封闭性$ alpha = display(1/(c'-c)) (eta-gamma) in W_1 $与题设矛盾.
= P175 习题七 28 #ac
#prob[
设 $V_1,V_2$ 均为线性空间 $V$ 的真子空间.
(1) 证明:存在 $alpha in V$ 使得 $alpha in.not V_1 union V_2$.
]
设 $dim V = n$,则对于 $V$ 的一组基 $seqn(xi,n)$,至少存在一个 $xi_i in.not V_1$,否则 $dim V_1 = dim V = n$,矛盾.同理也至少存在一个 $xi_j in.not V_2$.
若 $xi_i in.not V_2$(或 $xi_j in.not V_1$),则取 $alpha = xi_i$(或 $alpha=xi_j$)即满足 $alpha in.not V_1 union V_2$.
否则必有 $i!=j$,取 $alpha = xi_i + xi_j$.考虑反证法:
- 若 $alpha in V_1$,则 $xi_i = alpha - xi_j in V_1$,由于 $xi_j in V_1$,根据子空间的封闭性,也有 $xi_i in V_1$,矛盾.
- 若 $alpha in V_2$,则 $xi_j = alpha - xi_i in V_2$,由于 $xi_i in V_2$,根据子空间的封闭性,也有 $xi_j in V_2$,矛盾.
所以 $alpha in.not V_1 union V_2$.综上,这样的 $alpha$ 一定存在.
#prob[
(2) 如果 $V = RR^2$,请指出上述结论 (1) 的几何意义.
]
对于给定平面,任意两条直线不可能覆盖整个平面.
= P175 习题七 30 #wa
#prob[
设向量组 $seqn(alpha,s)$ 线性无关,令
$
beta_j &= sum_(i=1)^s a_(i j) alpha_i,quad j=1,2,dots.c,s\
bold(A) &= (a_(i j))_(s times s) in PP^(s times s)
$
证明:$r display(mat(beta_1,beta_2,dots.c,beta_s)) = r(bold(A))$.
]
TBD
#answer[
设 $upright("rank"){seqn(beta,s)}=r$,$beta_(i_1),beta_(i_2),dots.c,beta_(i_r)$ 是一组极大线性无关组.
令 $bold(A) = vecn(gamma,s)$,则 $beta_i=vecn(alpha,s) gamma_i$.
故 $k_1 beta_(i_1) + k_2 beta_(i_2) + dots.c + k_r beta_(i_r) = vecn(alpha,s) k_1 gamma_(i_1) + k_2 gamma_(i_2) + dots.c + k_r gamma_(i_r)$.
令 $k_1 beta_(i_1) + k_2 beta_(i_2) + dots.c + k_r beta_(i_r) = theta$,那么 $k_1 gamma_(i_1) + k_2 gamma_(i_2) + dots.c + k_r gamma_(i_r) = theta$.
由于 $beta_(i_1),beta_(i_2),dots.c,beta_(i_r)$ 线性无关,故 $k_1=k_2=dots.c=k_r=0$,即 $k_1 gamma_(i_1) + k_2 gamma_(i_2) + dots.c + k_r gamma_(i_r) = theta$ 只有零解.故 $gamma_(i_1),gamma_(i_2),dots.c,gamma_(i_r)$ 线性无关.
同理可证 $seqn(gamma,s)$ 中的其余所有向量都可以被 $gamma_(i_1),gamma_(i_2),dots.c,gamma_(i_r)$ 线性表示,即该向量组是极大线性无关组.即 $r(bold(A)) = r$,原命题得证.
] |
|
https://github.com/marcantoinem/CV | https://raw.githubusercontent.com/marcantoinem/CV/main/en/education.typ | typst | #import "../src/style.typ": experience
#let polytechnique = {
experience(
"Polytechnique Montréal",
[GPA: 3.71/4.00 $diamond.stroked.small$ 64/120 credits],
"Aug 2022 - Present",
"Computer Engineering",
"",
)
} |
|
https://github.com/xsro/xsro.github.io | https://raw.githubusercontent.com/xsro/xsro.github.io/zola/typst/Control-for-Integrator-Systems/3double.typ | typst | #import "lib/lib.typ":ode45,get_signal,op,sig
#import "@preview/cetz:0.2.0"
#import cetz.plot
#import cetz.draw: *
= Control Algorithm for Double Integrator
== Conventional Sliding Mode Control
#columns(2,gutter: 21pt)[
The basic idea of Sliding Mode Control
is reduce the order of system.
Take the double integrator system for example,
$
dot.double(x)=u+d
$
The disturbance $d$ here is called *matched disturbance*
which can be eliminated by SMC.
Define a *sliding variable*
$
sigma=dot(x)+c x.
$
Calculate the derivative
$
dot(sigma)=dot.double(x)+c dot(x)=u+d + c v
$<eq:sliding_surface>
Design the control input as $u=-c v -k "sign" (sigma)$.
The dynamic of the sliding variable is
$
dot(sigma)=-k "sign" (sigma)+delta.
$
This means the system state *reaches* the surface $sigma=0$ in finite time.
Then the system state *slides* in the surface.
#let rhs(t,x)={
let delta=calc.sin(t)
let c=1
let sigma=c*x.x1+x.x2
let rho=1.1
let u=-rho*op.sign(sigma)-c*(x.x2)
let dx=(x1:x.x2,x2:u+delta)
dx.insert("sigma",sigma)
dx.insert("delta",-delta)
dx.insert("u",u)
dx
}
#let (xout,dxout)=ode45(rhs,10,(x1:2,x2:1),0.01,record_step:0.01)
The first simulation shows $x$ converges asymptotically.
#cetz.canvas({
plot.plot(
size: (8,2),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:1,
{
plot.add(get_signal(xout,"x1"),label:$x$)
plot.add(get_signal(xout,"x2"),label:$dot(x)$)
plot.add(get_signal(dxout,"sigma"),label:$sigma$)
plot.add(get_signal(dxout,"u"),label:$u$)
},
y-label:"value",
x-label:"time",
)
})
]
#pagebreak()
== Terminal SMC
#columns(2)[
If we need the system converges in finite time, we can desgin the sliding surface @eq:sliding_surface as
$
sigma=dot(x)+c⌊x⌉^(q)\
dot(sigma)=dot.double(x)+q c ⌊x⌉^(q-1))=u+delta + q c ⌊x⌉^(q-1))
$
and the corresponding control law is
$
u=-rho "sign" (sigma) -q c ⌊x⌉^(q-1))
$
We call this 2-SM(Second Order Sliding Mode).
When $q<1$, the term $⌊x⌉^(q-1))$ is singular.
#colbreak()
#for q in (1/2,2){
let rhs(t,x)={
let delta=calc.sin(t)
let c=1
let sigma=c*op.sig(x.x1,q)+x.x2
let rho=1.1
let u=-rho*op.sign(sigma)-c*q*op.sig(x.x1,q - 1)
let dx=(x1:x.x2,x2:u+delta)
dx.insert("sigma",sigma)
dx.insert("delta",-delta)
dx.insert("u",u)
dx
}
let (xout,dxout)=ode45(rhs,20,(x1:2,x2:1),0.01,record_step:0.02)
[q=#q]
cetz.canvas({
plot.plot(
size: (8,2),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:1,
{
plot.add(get_signal(xout,"x1"),label:$x$)
plot.add(get_signal(xout,"x2"),label:$dot(x)$)
plot.add(get_signal(dxout,"sigma"),label:$sigma$)
// plot.add(get_signal(dxout,"u"),label:$u$)
},
y-label:"value",
x-label:"time",
)
})
}
]
#pagebreak()
== Second Order Sliding Mode Control
The $n$-th Order Sliding Mode Control means
the relative degree of the sliging variable system is $n$
and the controller drives the system variable to zero in *finite time*.
Consider the system
$
dot.double(x)=delta+g(x,t)u
$
where $abs(delta)<=C$ and $abs(g(x,t)) in [K_m,K_M]$.
Twisting Control is the typical controller charaterized by
$
u=-k_1 "sign" (x) -k_2 "sign" (dot(x))
$
where $(k_1 + k_2) K_m -C > (k_1-k_2) K_M+C$,
$(k_1-k_2) K_m >C$.
#let rhs(t,x)={
let delta=calc.sin(t)
let k1=6;let k2=2
let u=-k1*op.sign(x.x1)-k2*op.sign(x.x2)
let dx=(x1:x.x2,x2:u+delta)
dx.insert("delta",-delta)
dx.insert("u",u)
dx
}
#let (xout,dxout)=ode45(rhs,10,(x1:2,x2:1),0.005,record_step:0.02)
#table(columns: (auto,auto),stroke: none,
cetz.canvas({
plot.plot(
size: (8,2),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:1,
{
plot.add(get_signal(xout,"x1"),label:$x$)
plot.add(get_signal(xout,"x2"),label:$dot(x)$)
},
y-label:"value",
x-label:"time",
)
}),
cetz.canvas({
plot.plot(
size: (8,2),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:3,
{
plot.add(get_signal(dxout,"u"),label:$u$)
},
y-label:"value",
x-label:"time",
)
}))
#pagebreak()
== Second Order Sliding Mode Control: Suboptimal Algorithm
Consider the system
$
dot.double(x)=delta+g(x,t)u
$
where $abs(delta)<=C$ and $abs(g(x,t)) in [K_m,K_M]$.
The so-called *suboptimal* controller is given by
$
u=-k_1 "sign" (x-(x^*)/2) +k_2 "sign" (x^*)
$
where $
k_1-k_2>C/(K_m),quad
k_1 + k_2 > (4C+K_M (k_1-k_2))/(3 K_m),
$
and $x^*$ is the value of $x$ detected at the last time whien $dot(x)$ was equal to $0$.
#let xstar=0;
#let rhs(t,x)={
let delta=calc.sin(t)
let k1=3;let k2=1
let xstar=x.xstar
if calc.abs(x.x2) < 0.01{
xstar=x.x1
}
let u=-k1*op.sign(x.x1 - xstar/2)+k2*op.sign(xstar)
let dx=(x1:x.x2,x2:u+delta,xstar:xstar)
dx.insert("delta",-delta)
dx.insert("u",u)
dx
}
#let (xout,dxout)=ode45(rhs,10,(x1:2,x2:1,xstar:0),0.005,record_step:0.02,force_update:("xstar"))
#table(columns: (auto,auto),stroke: none,
cetz.canvas({
plot.plot(
size: (8,2),
axis-style: "school-book",
x-tick-step: auto, y-tick-step:1,
{
plot.add(get_signal(xout,"x1"),label:$x$)
plot.add(get_signal(xout,"x2"),label:$dot(x)$)
},
y-label:"value",
x-label:"time",
)
}),
cetz.canvas({
plot.plot(
size: (8,2),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:3,
{
plot.add(get_signal(dxout,"u"),label:$u$)
plot.add(get_signal(xout,"xstar"),label:$x^*$)
},
y-label:"value",
x-label:"time",
)
}))
#pagebreak()
== Second Order Sliding Mode Control : Quasi-Continuous Control Algorithm
An important class of controllers comprises the recently proposed so-called quasicontinuous controllers, featuring control continuous everywhere except the 2-sliding manifold
$x=dot(x)=0$.
$
u=-alpha
(dot(x)+beta sig( x )^(1/2))
/(abs(dot(x))+beta abs(x)^(1/2))
$
#let rhs(t,x)={
let delta=calc.sin(t)
let alpha=6;let beta=2
let num=x.x2+beta*op.sig(x.x1,1/2)
let den=calc.abs(x.x2)+beta*calc.sqrt(calc.abs(x.x1))
let u=-alpha*num/den;
let dx=(x1:x.x2,x2:u+delta)
dx.insert("delta",-delta)
dx.insert("u",u)
dx
}
#let (xout,dxout)=ode45(rhs,10,(x1:2,x2:1),0.005,record_step:0.02)
#table(columns: (auto,auto),stroke: none,
cetz.canvas({
plot.plot(
size: (8,3),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:1,
{
plot.add(get_signal(xout,"x1"),label:$x$)
plot.add(get_signal(xout,"x2"),label:$dot(x)$)
},
y-label:"value",
x-label:"time",
)
}),
cetz.canvas({
plot.plot(
size: (8,3),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:3,
{
plot.add(get_signal(dxout,"u"),label:$u$)
},
y-label:"value",
x-label:"time",
)
}))
#pagebreak()
== Robust Integral Sign Error for Double Integrator
#columns()[
@xianContinuousAsymptoticTracking2004 gives the RISE control for high-order integrator.
Consider the system
$
dot.double(x)=u-f
$
where
- $f (x)$ are uncertain nonlinear $C^2$ functions.
Define $
e_1=-x\
e_2=dot(e)_1 +e_1=-dot(x)-x
$
The final control law is
$
u =&(k_s+1)e_2(t)-(k_s+1)e_2(0)\
&+integral_0^t (k_s+1) alpha e_2(tau) + beta "sign" e_2(tau) d tau\
$ where $beta > norm(N_d (t))+1/alpha norm(dot(N)_d (t))$ and $alpha > 1/2$ and
the control gain $k_s$ is selected sufficiently large relative to the system initial conditions.
Take the derivative of $u$:
$
dot(u)= & (k_s +1) dot(e)_2(t)\
&+ (k_s+1) alpha e_2(t) + beta "sign" e_2(t) \
= & (k_s +1) r+beta "sign" (e_2)
$
where $r=dot(e)_2+alpha e_2=dot.double(e)_1+(1+alpha)dot(e)_1+alpha e_1=$.
Then
$
dot(r)&=-e_2 -dot(u)+N\
N&=dot.double(e)_1+alpha dot(e)_2+e_2 +dot(f)\
tilde(N)&=dot.double(e)_1+alpha dot(e)_2+e_2 \
N_d&=dot(f)
$
select
$
V=1/2 e_2^2 + 1/2 e_1^2 + 1/2 r^2+P
$
where $L:=r(N_d -beta "sgn" (e_2))$ and $P=xi_b - integral_0^t L(tau) d tau$
$
dot(V)
=&e_2 dot(e)_2 + e_1 dot(e)_1+ r dot(r) -L\
=&e_2 (r-alpha e_2)-e_1 (e_2-e_1)\
&+ r (-e_2 -((k_s+1)r+beta "sign"(e_2))+N)\
&-r(N_d -beta "sign"(e_2))\
=&-e_1^2-alpha e_2^2 +e_1 e_2 + r tilde(N)-(k_s+1) r^2\
=&-e_1^2-alpha e_2^2 +1/2 e_1^2+1/2 e_2^2 + |r| rho(norm(z))norm(z)-(k_s+1) r^2\
<= & -lambda_3 norm(z)^2 + abs(r) rho(norm(z)) norm(z) -k_s r^2\
<= & -(lambda_3 - (rho^2(norm(z)))/(4 k_s)) norm(z)^2
$
#let rhs(t,x)={
let delta=calc.sin(t)
let c=1
let e1=- x.x1
let e2=-x.x2 - x.x1
let ks=1
let e20=-3
let alpha=1
let beta=1
let u=(ks+1)*e2 - (ks+1)*e20+x.w;
let dw=(ks+1)*alpha*e2+beta*op.sign(e2)
let dx=(x1:x.x2,x2:u+delta,w:dw)
dx.insert("delta",-delta)
dx.insert("u",u)
dx
}
#colbreak()
#let (xout,dxout)=ode45(rhs,20,(x1:2,x2:1,w:0),0.01,record_step:0.02)
#cetz.canvas({
plot.plot(
size: (8,3),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:1,
{
plot.add(get_signal(xout,"x1"),label:$x$)
plot.add(get_signal(xout,"x2"),label:$dot(x)$)
},
y-label:"value",
x-label:"time",
)
})
#cetz.canvas({
plot.plot(
size: (8,3),
axis-style: "school-book",
x-tick-step: 5, y-tick-step:3,
{
plot.add(get_signal(dxout,"delta"),label:$-delta$)
plot.add(get_signal(dxout,"u"),label:$u$)
plot.add(get_signal(xout,"w"),label:$w$)
},
y-label:"value",
x-label:"time",
)
})
]
#pagebreak() |
|
https://github.com/loqusion/typix | https://raw.githubusercontent.com/loqusion/typix/main/docs/api/derivations/common/virtual-paths.md | markdown | MIT License | <!-- markdownlint-disable-file first-line-h1 -->
List of sources that will be made virtually available to your Typst project.
Useful for projects which rely on remote resources, such as
[images][typst-ref-image] or [data][typst-ref-data-loading].
Each element of the list is an attribute set with the following keys:
- `src`: path to source file or directory
- `dest` (optional): path where file(s) will be made available (defaults to `.`)
- If `src` is a directory, `dest` will be a directory containing the files in that directory.
- Specifying the same `dest` for multiple `src` directories will merge them.
- If `src` is a file, `dest` will be a copy of that file.
Instead of an attrset, you may use a path which will be interpreted the same as
if you had specified an attrset with just `src`.
[typst-ref-data-loading]: https://typst.app/docs/reference/data-loading/
[typst-ref-image]: https://typst.app/docs/reference/visualize/image/
|
https://github.com/sses7757/sustech-graduated-thesis | https://raw.githubusercontent.com/sses7757/sustech-graduated-thesis/main/sustech-graduated-thesis/pages/notation.typ | typst | Apache License 2.0 | #import "../utils/style.typ": 字号, 字体
#import "../utils/state-notations.typ": print-notations, notations
#import "outline-page.typ": outline-pagenum, outline-final
#let notation-page(
twoside: false,
title: "符号和缩略语说明",
outlined: false,
width: 90%,
columns: (0.25fr, 1fr),
row-gutter: 16pt,
supplements: (),
) = {
set page(..outline-pagenum())
heading(
level: 1,
numbering: none,
outlined: outlined,
title
)
v(1em)
// 符号表
context align(center, block(width: width,
align(start, grid(
columns: columns,
row-gutter: row-gutter,
..(
notations.final().pairs().
filter(kv => kv.at(0) != "test").
sorted().
map(kv => print-notations(..kv.at(1))).
filter(v => v != none)
).flatten(),
..supplements.flatten()
))
))
outline-final("notation", twoside: twoside)
} |
https://github.com/Area-53-Robotics/53E-Notebook-Over-Under-2023-2024 | https://raw.githubusercontent.com/Area-53-Robotics/53E-Notebook-Over-Under-2023-2024/giga-notebook/entries/identify-driver-control/entry.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/packages.typ": notebookinator
#import notebookinator: *
#import themes.radial.components: *
#show: create-body-entry.with(
title: "Identify: Driver Control",
type: "identify",
date: datetime(year: 2023, month: 8, day: 20),
author: "<NAME>",
witness: "<NAME>",
)
Letting the driver control the robot is the single most important thing the
software of the robot needs to do. The driver control period of the match is the
longest and most important, and almost always decides the final outcome of
matches.
In addition being able to control our robot with a controller lets us compete in
the driver skills section of the tournament.
#image("./identify-problem.svg")
= Design Constraints
- We can only tell the robot to do what is it is physically capable of doing
- The solution should be fitted to what the driver prefers, not what is
theoretically optimal
= Goals
- Provide a high level of control to the driver
- Never reduce the functionality of the robot in order to give control
|
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/08-adv-features/arabic.typ | typst | Other | #import "/template/template.typ": web-page-template
#import "/template/components.typ": note
#import "/lib/glossary.typ": tr
#show: web-page-template
// Calligraphic Arabic
== 阿拉伯书法体
|
https://github.com/usami-k/technote | https://raw.githubusercontent.com/usami-k/technote/main/2024/apple-vision-pro-ui/apple-vision-pro-ui.typ | typst | Creative Commons Attribution 4.0 International | #import "@preview/touying:0.4.2": *
#let s = themes.metropolis.register(
aspect-ratio: "16-9",
footer: self => "『" + self.info.title + "』" + states.current-section-title,
)
#let s = (s.methods.info)(
self: s,
title: [Apple Vision ProのUI],
author: [宇佐見公輔],
date: [2024-07-31],
institution: [株式会社ゆめみ],
)
#let (init, slides, touying-outline, alert, speaker-note) = utils.methods(s)
#show: init
#set text(font: "IBM Plex Sans JP", size: 26pt)
#show link: it => underline(text(blue, it))
#let (slide, empty-slide, title-slide, new-section-slide, focus-slide) = utils.slides(s)
#show: slides.with(outline-slide: false)
== 自己紹介
#grid(
columns: 2,
gutter: 1em,
[
- 宇佐見公輔
- 株式会社ゆめみ
- iOSテックリード
- iOSDC Japan 2024
- パンフレット記事執筆
- ポスターセッション
],
grid(
rows: 2,
image("images/c40d5199-526b-4bf9-91d7-2a0bc609b305.png", height: 50%),
image("images/a28236ac-e8b0-4015-84e9-a0c9ac6670af.png", height: 50%)
),
)
== 今日の内容
#touying-outline()
= Apple Vision Proの操作方法
== Apple Vision Pro購入
#grid(
columns: 2,
gutter: 1em,
[
- Apple Vision Pro日本発売
- 2024年6月28日
- 日本での発売を待っていた
- 発売日に購入
],
image("images/vision_2024-06-29.jpeg"),
)
== 操作方法
次の方法が基本。
- 視線によるフォーカス移動
- 手のジェスチャによるタップ
それ以外に次の方法もある。
- 頭、手首、人差し指
- Magic Trackpad(visionOS 2 からマウスも使用可能)
- Macのトラックパッド(Mac仮想ディスプレイ使用時)
- ゲームコントローラ(対応アプリのみ)
== 視線と注視による操作
#link("https://support.apple.com/ja-jp/guide/apple-vision-pro/welcome/visionos")[Apple Vision Proユーザガイド]
丁寧なユーザガイドだが、視線や注視についてはあまり詳しく書かれていない。
#image("images/guide_tap.png")
== 理解はできるが実践が難しい
実際には次のようなことが起こる。
- 視線を移動しても、フォーカスがうまく移動しない
- 対象を注視していても、フォーカスが移動してしまう
このため、次のような問題が発生する。
- 選択したい項目に、フォーカスを当てられない
- 選択するときに、意図と異なる項目をタップしてしまう
= 視線の動きを調べる
== ポインタ表示
#grid(
columns: (1fr, auto),
gutter: 1em,
[
アクセシビリティ設定でポインタを表示できる。
画像の中央あたりの緑丸がポインタ
],
image("images/a11y_pointer.jpeg"),
)
== 補足:フォーカス項目を分かりやすくする
#grid(
columns: (1fr, auto),
gutter: 1em,
[
フォーカスのコントラストを上げる設定がある。
],
image("images/a11y_contrast.jpeg"),
)
== 視線は動き回る
ポインタ表示すると、視線の動きがわかる。
- 何もしていないときに、視線はふらふらと動き回る
- 視線を移動させたときに、意識と視線は意外と一致しない
- 注視したときに、視線は固定せずに動いている
視線はじっとしていないで、常に動き回っているもの。
= UIのガイドライン
== 参考セッション・ガイドライン
- #link("https://developer.apple.com/jp/videos/play/wwdc2023/10073/")[空間入力のためのデザイン - WWDC23]
- #link("https://developer.apple.com/jp/videos/play/wwdc2023/10076/")[空間ユーザーインターフェイスのためのデザイン - WWDC23]
- #link("https://developer.apple.com/jp/videos/play/wwdc2024/10086/")[優れたvisionOSアプリのデザイン - WWDC24]
- #link("https://developer.apple.com/jp/design/human-interface-guidelines/eyes")[視線 - ヒューマンインターフェースガイドライン]
これ以外にも、visionOSのデザインに関するセッションやガイドラインがある。
== 項目の中央に視線を誘導する
#grid(
columns: 2,
gutter: 1em,
[
視線の移動や注視が難しいことを考慮した注意点がある。
- 丸い形で中央に視線を誘導
- 鋭い形は外側に注意が逃げる
- 外側に縁取りを入れるのも同様によくない
],
grid(
rows: 2,
image("images/wwdc_circle.jpeg", height: 50%),
image("images/wwdc_edge.jpeg", height: 50%)
),
)
== ボタンの大きさ・間隔
#grid(
columns: 2,
gutter: 1em,
[
- ボタンのタップ領域は60pt
- ボタンの表示領域は44pt
- 表示領域の間隔は16pt
ポインタが見た目で正確にあっていなくても、タップが可能になっている。
],
image("images/wwdc_buttons.jpeg"),
)
= アラートのUI
== アラートのUIに対する不満
#grid(
columns: (1fr, auto),
gutter: 1em,
[
アラートは選択しづらいと感じる。
意図と異なる項目をタップしてしまいがち。わりと厄介な結果をもたらす。
],
image("images/photo_alert.jpeg"),
)
== アラートの標準実装
```swift
Button("アラートを表示") {
showAlert = true
}
.alert("アラート", isPresented: $showAlert) {
Button("キャンセル", role: .cancel) {
message = "Cancel tapped"
}
Button("OK") {
message = "OK tapped"
}
}
```
== 標準実装の結果
#grid(
columns: (auto, 1fr),
gutter: 1em,
image("images/my_alert.png"),
[
UIガイドラインの知見が活かされてない感じがする。
],
)
== 選択しやすいUIを考えてみる
```swift
VStack {
Button("OK") {
}
.padding()
Button("キャンセル", role: .cancel) {
}
.padding()
}
```
== VStackの場合
#grid(
columns: (auto, 1fr),
gutter: 1em,
image("images/my_vstack.png"),
[
`padding` があると選択ミスしにくい
ボタンの形が見えるほうが押しやすい
上下の選択は難しい(個人の感想)
],
)
== HStackの場合
#grid(
columns: (auto, 1fr),
gutter: 1em,
image("images/my_hstack.png"),
[
左右の選択は上下より楽(個人の感想)
],
)
== いっそのことこんな感じで
#grid(
columns: (auto, 1fr),
gutter: 1em,
image("images/my_hstack2.png"),
[
アラートの左右にボタンを置く
選択を間違えることはない
UIがダサい感じはある(ボタン増えたらどうするの)
],
)
= まとめ
- 視線と注視によるフォーカス操作は意外と難しい
- どんなUIが良いのかはまだ検討の余地がありそう
|
https://github.com/rabotaem-incorporated/algebra-conspect-1course | https://raw.githubusercontent.com/rabotaem-incorporated/algebra-conspect-1course/master/sections/06-field-theory/02-s1mple-field.typ | typst | Other | #import "../../utils/core.typ": *
== Простые поля
#ticket[Классификация простых полей]
#def[
Поле $F$ называется _простым_, если оно не содержит собственных подполей.
]
#lemma[
Пусть $F$ --- поле. Тогда либо характеристика $F$ равна $0$, либо это простое число.
]
#proof[
Пусть характеристика $F$ равняется $a in NN$, $a = b c$, $b, c < a$. Рассмотрим
$
underbrace((1 + ... + 1), b "единиц") underbrace((1 + ... + 1), c "единиц") = underbrace(1 + ... + 1, a "единиц") = 0 ==> cases(delim: "[",
underbrace((1 + ... + 1), b "единиц") = 0, \
underbrace((1 + ... + 1), c "единиц") = 0
)
$
]
#lemma[
Пусть $F_1 limits(-->)^alpha F_2$ --- вложение полей. Тогда $alpha$ --- изоморфно отображает $F_1$ на $Im alpha$.
]
#proof[
Очевидно.
]
#th[
Пусть $F$ --- простое поле.
+ Если $char F = 0$, то $F iso QQ$.
+ Если $char F = p > 0$, то $F iso ZZ fg p ZZ$.
]
#proof[
+ Пусть $char F = 0$. Зададим отображение $alpha$ следующим образом:
$
alpha: QQ &--> F,\
underbrace(1 + ... + 1, n) &maps underbrace(1_F + ... + 1_F, n),
0 &maps 0_F, \
-(1 + ... + 1) &maps -alpha(n).
$
То есть положительным, отрицательным рациональным числам и нулю, сопоставляем их эквиваленты в $F$, а затем достраиваем дроби как $alpha(a/b) = alpha(a) / alpha(b)$. Можно проверить, что $alpha$ --- вложение.
По лемме, $alpha$ задает изоморфное отображение $QQ --> Im alpha$, значит $Im alpha$ --- поле и $Im alpha = F$, так как $F$ --- простое по условию.
+ $char F = p > 0$
$
alpha: ZZ &--> F \
underbrace(1 + ... + 1, n) &maps underbrace(1 + ... + 1, n) \
-n &maps -alpha(n)
$
$alpha$ --- гомоморфизм колец, $Ker alpha = (p)$. По теореме о гомоморфизме $ZZ fg (p) iso Im alpha ==> Im alpha$ --- поле, тогда $Im alpha = F$, так как $F$ --- простое, поэтому $F iso ZZ fg (p) = ZZ fg p ZZ$.
]
#def[
_Подполе_ --- подкольцо поля, являющееся полем.
]
#pr[
Любое поле содержит единственное простое подполе.
]
#proof[
Пусть $F$ --- поле, $F_0$ --- пересечение всех его подполей. Это тоже подполе, так как $0$ и $1$ попали в $F_0$, которое содержится в любом подполе.
]
|
https://github.com/rahul-gill/gate_notes | https://raw.githubusercontent.com/rahul-gill/gate_notes/main/logic.typ | typst | #let frame_with_header(stroke) = (x, y) => (
left: if x > 0 { 0pt } else { stroke },
right: stroke,
top: if y < 2 { stroke } else { 0pt },
bottom: stroke,
)
#let no_stroke_frame(stroke) = (x, y) => (
left: 0pt,
right: 0pt,
top: 0pt,
bottom: 0pt,
)
#set table(
fill: (_, y) => if calc.odd(y) { rgb("EAF2F5") },
stroke: frame_with_header(rgb("21222C")),
)
== Initial Definitions
- *proposition*: (i) a declarative sentence(declare a fact) (ii) can be either true or false but not both
- *propositional variable* / sentential variable represents a proposition
- *truth value* of proposition: tells if proposition is true or false
- *propositional calculus / propositional logic*: logic that deals with propositions
- *logical operators/connectives*: using these, we can construct new propositions from existing ones. Those new propositions(created by applying connectives) are called *compound propositions*. The propositions which cannot be simplified further(contains no connective usage) are called *atomic propositions*.
- *truth table*: enumerates combination of all truth values of propositions in expression of a compound proposition and compound proposition's truth value in each case.
== Connectives
#table(
columns: 3,
[*Connective*], [*Representation*], [*Remarks*],
[Negation], [common: $not p, overline(p)$ , \ others: $tilde p, -p, p', !p$], [Read as "not $p$" or "It is not the case that $p$"],
[Conjuction], [$p and q$],[],
[Disjunction/Inclusive or], [$p or q$],table.cell(rowspan: 1, [
Inclusive or: true when *any* one of the variables is true ] ),
[Exclusive or], [$p xor q$],[Exclusive or: true when *only* one of the variables is true],
[Implication/Conditional statement], [$p arrow.r q$], [$p$ is called hypothesis/premise/antecedent \ $q$ is called consequence/conclusion],
[Bi-implication/Bi-conditional statement], [$p arrow.l.r q$], [],
)
- Many ways to write $p arrow.r q$
#[
#set table(
fill: (_, y) => if false { rgb("EAF2F5") },
stroke: no_stroke_frame(rgb("21222C")),
)
#table(
columns: 2,
[if $p$ then $q$],[$q$ when $p$],
[if $p$, $q$],[$q$ whenever $p$],
[$p$ implies $q$],[$q$ if $p$],
[*$p$ only if $q$*],[*$q$ unless $not p$*],
[a neccessary condition for $p$ is $q$],[*$q$ is neccessary for $p$*],
[],[$q$ provided that $p$],
[],[a sufficient condition for $q$ is $p$],
)
]
- take care of *neccessary* and *sufficient*
#pagebreak()
- Compound propositions derived from implication $p arrow.r q$
#table(
columns: 2,
[*Type*],[*Repr.*],
[*Converse*],[$q arrow.r p$],
[*Contrapositive*],[$not q arrow.r not p$],
[*Inverse*],[$not p arrow.r not q$],
)
- Contrapositive has the same truth value as $p arrow.r q$
- Similarily converse and inverse have the same truth value
- Many ways to write $p arrow.l.r q$
- $p$ is neccessary and sufficient for $q$
- if $p$, then $q$ and conversely
- $p$ iff $q$
- $p$ if and only if $q$
- $p$ exactly when $q$
- In general English, people may write just "if" for biconditional instead of "if and only if", so we need to check if it's a implication or bi-implication.
- *Precedence of connectives*:
$not > and > or > arrow.r > arrow.l.r$
- *Tautology*: a proposition which is always true regardless of the truth values of propositions it is composed of.
- *Contradiction*: a proposition which is always false regardless of the truth values of propositions it is composed of.
- *Contigency*: A proposition which is neither a tautology nor a contradiction; A proposition which can be true or false both depending on the truth value of the propositions it is composed of.
- *Logical equivalence*: Two compound propositions are logically equivalent if they have the same truth value for all combinations of truth values of propositions they're composed of.
- If $p$ and $q$ are equivalent, then we write $p equiv q$. Also written as $p arrow.double.l.r q$
- $p equiv q$ means $p arrow.l.r q$ is a tautology.
- If $p$ is a tautology, then $p equiv T$
- If $p$ is a contradiction, then $p equiv F$
- *Satisfiability* of compound propositions: A compound proposition is satisfiable if there exist an assignment of truth values to the proposition it's composed of such that it evaluates to true. Such assignment is called a solution.
|
|
https://github.com/Axot017/CV | https://raw.githubusercontent.com/Axot017/CV/master/modules_en/employment.typ | typst | #import "@preview/brilliant-cv:2.0.2": cvSection, cvEntry
#let metadata = toml("../metadata.toml")
#let cvSection = cvSection.with(metadata: metadata)
#let cvEntry = cvEntry.with(metadata: metadata)
#cvSection("Employment History")
#cvEntry(
title: [Software Engineer],
society: [Crustlab Sp. z o.o.],
date: [2023 - Present],
location: [Remote, Poland],
description: list(
[Develop and maintain backend microservices using Golang and Java, applying domain-driven design principles and event sourcing],
[Write unit and integration tests for Golang and Java applications to ensure code quality and reliability],
[Collaborate with other developers and stakeholders to design and implement APIs in Golang and Java, ensuring compatibility with frontend applications],
[Participate in pre-sales activities, including new project estimations and technical consultations],
)
)
#cvEntry(
title: [Software Engineer],
society: [BinaryCortex LLC],
date: [2023 - 2023],
location: [Remote, USA],
description: list(
[Maintain a large-scale Flutter application with modular code structure and ensure its quality and reliability],
[Refactor legacy codebase and implement best practices and design patterns to improve performance and readability],
)
)
#cvEntry(
title: [Software Engineer],
society: [Iteo S.A.],
date: [2020 - 2023],
location: [Katowice, Poland],
description: list(
[Develop mobile applications using the Flutter framework and ensure their quality and reliability by reviewing code written by other employees and writing unit and end-to-end tests],
[Conduct technical interviews and provide feedback to candidates and hiring managers],
[Maintain and update open source Flutter libraries and contribute to the Flutter community],
)
)
#cvEntry(
title: [Junior Software Engineer],
society: [EUVIC S.A.],
date: [2019 - 2020],
location: [Gliwice, Poland],
description: list(
[Develop cross-platform mobile applications using Flutter and integrate native iOS and Android modules for enhanced functionality],
[Provide accurate estimates for feature development and delivery using agile methodologies],
)
)
|
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/015%20-%20Commander%20(2014%20Edition)/003_The%20First%20World%20Is%20the%20Hardest.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"The First World Is the Hardest",
set_name: "Commander (2014 Edition)",
story_date: datetime(day: 05, month: 11, year: 2014),
author: "<NAME>",
doc
)
#emph[When we first met <NAME>, he was a fearsome—but wingless—demon, a former Planeswalker who had somehow become trapped on Zendikar. The next time we saw him on a card, he had regained some portion of his former power when the hedron shard embedded in his head was removed. Despite that, he remains unable to leave Zendikar for the time being, as shown in the Uncharted Realms story "] Dreams of the Damned#emph[."]
#emph[Today, we look even further back, to hear about the life of the man named <NAME> in his own words…]
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
To call the noise of battle a roar is to do it an injustice. It is a slight to the majesty of the sound. It is a symphony. The low, bass rumbling of siege engines, the pounding of trebuchet stones, silent in the sky, then crushing formations of men into scrap and paste. The clashing, soaring, screech of steel, men and beasts, monsters and worse, wave after wave of carnage.
Rising above it all, the chorus. Shouts of triumph, of fear, of pain, of rage. Thousands of voices lent to a single cause.
"My lord, our foes are preparing to retreat. Their flanks have collapsed. What are your orders?" My lieutenant bowed low. I couldn’t help but notice, with no small amount of disappointment, just how clean his armor was.
"Send two divisions into the canyon, cut off the escape."
He flinched. "That will put two divisions of our most exhausted troops against their freshest. There will be heavy losses."
"And yet, we will secure the supplies we need. Do you know where we are, Lieutenant? Look around you. What do you see?"
He scanned the horizon. "I don’t know, sir. A field. Stones. Some ruins."
#figure(image("003_The First World Is the Hardest/02.jpg", width: 100%), caption: [Buried Ruin | Art by <NAME>], supplement: none, numbering: none)
"Some ruins, indeed. The people that lived in this place were called the Keocian. Their empire lasted nearly three hundred years, before they brought about the Seventh Cataclysm. They were demon-callers; the best this world had ever seen. Artisans of magic and war. Their language was a direct predecessor of our own, you know, although we adopted our modern alphabet from the Liex. They had a word that meant ‘victory at any cost.’ Do you know what it was?"
He shook his head.
"Victory. The distinction is for lesser souls than ours." I gestured to my squire, who handed me my helm. I rode out to the front line to join the charge.
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
When the work was done, I looked up at the soot-choked sky. The air was stale and foul, but it felt wondrous as it filled my lungs. Victory tasted sweet, no matter the circumstance.
A scout returned, her armor stained with blood, some of it hers. "Two banners approaching from the northwest, my lord. The Velanti as well as the Raximar."
I frowned. "The Velanti haven’t sent word that they were going to be anywhere in the region in force. And the Raximar? How many, and how soon will they arrive?"
"A full legion, cavalry, not equipped for siege. Between their cavalry and the Velanti, we’re penned in."
"We are betrayed, then. Interesting." The look of panic on the scout’s face made me smile. "We made a move, and Lord Raximar made a better one. I half expected the Velanti to sell us out, but I didn’t expect them to pick such an excellent time to do so."
"What do we do?"
"Nothing. If Raximar is willing to negotiate, we talk. If not, we die."
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
Lord Raximar’s war tent was a demonstration of everything I hated about the man. It was a mobile court, huge and opulent. Hanging on the walls were tapestries showing accounts of his military conquests. They were factual enough, as Raximar wasn’t prone to exaggeration, but the artistry was poor. Why bother to commemorate a moment if you’re not willing to spend the time and effort to do it properly? Lord Raximar sat atop an actual throne, wearing his court armor. Plenty of lords did so, of course. Functional to a point, as no sane man or woman would meet another warrior unarmored. But it was a statement of how secure you felt in your home. An arrogant statement, more often than not.
Raximar was an enormous man, bearded and smiling. "Ah, L<NAME>. A pleasure to see you again. My apologies for the circumstances."
I had been ushered in to the room unarmed, but they didn’t strip me of my armor. No small number of them would have died had they tried. I inclined my head.
He went on. "My compliments on the condition of your forces. Most orderly in surrender. You’ve trained them well."
"And my compliments on targeting the Velanti as a co-conspirator. Small enough to be coerced, close enough to my command to have valid intelligence, and they made quite the show of loyalty over the years—I never suspected their betrayal."
"<NAME> still holds you responsible for the death of his son, you know. That’s all this was about."
I laughed. "I should hope he does! I expected the whelp to die, and he did. The boy was a terrible swordsman."
Raximar frowned. "There are those of us who want something better than this, <NAME>. Who want to unify these people. Bring an end to the fighting. Start to build again."
"Spoken like a man who has never studied our history. Yes, there have been times of peace. Decades, even. But then we reveal our true natures again. The larger the alliance, the more brutal the collapse. And when the Cataclysm comes, and it always does, chaos comes with it. Ruin. I like my plan better."
"To rule over graveyards and blood-soaked fields?!"
I grinned.
"No matter. Your days of conquest are done. I will offer you submission, or we can conduct your execution in the morning."
I muttered seven words under my breath. Raximar shook his head as both our ears popped.
"What? I didn’t hear that."
I snapped my fingers, and one of Raximar’s guards shuddered. The guard took lurching, uneven steps over to me, drew his greatsword, and handed it to me. I snapped my fingers again, and the other six guards in the room all slumped, lifeless, to the floor. The wave of expended magic tasted like hot tar in the back of my throat.
Raximar drew his sword and stood, taking a moment to find his bearings. "What is this? Guards!"
I smiled. "No sound will escape this place for the next several minutes. And your closest guard? I cursed them years ago. Up until this moment, I wasn’t sure whether the enchantment would hold this long. Lucky me."
Raximar looked around frantically, and said nothing.
"Here’s what’s going to happen. You and I are going to engage in a rite of challenge, and then I’m going to take over your forces."
He scoffed. "You’ve never given a moment’s thought to the old codes! Rite of challenge? Ridiculous!"
"You’re right, of course. It’s nonsense. But you have a reputation as an honorable man. It’s the sort of stupid thing you’d do. And either way, I’m going to kill you and tell the rest of your men that that’s what happened. So we might as well."
Raximar slammed his helmet down over his bright red face. "You’re a coward, Nixilis. If this is how you want to die, so be it."
I stepped into a back stance and leveled the tip of my greatsword at him.
"Begin."
The greatsword is an easily misunderstood weapon. A novice feels the heft and striking power of the weapon, and concludes that it rewards pure force. Nothing could be further from the truth. It is an indescribably complex tool, a lever and a thrusting wedge, and especially against a brute like Raximar, not a big metal club to be swung around as hard as you can.
#figure(image("003_The First World Is the Hardest/04.jpg", width: 100%), caption: [Greatsword | Art by <NAME>], supplement: none, numbering: none)
Raximar was bigger, faster, and younger. He could practically use his blade one-handed, and the sheer crushing force he could generate could shatter stone and bone alike. So I let him come to me. He opened with a series of huge, reaching, diagonal cuts, and I kept my distance, just at the edge of his reach. I kept my balance low, trying to avoid the need to actually parry one of his strikes. A hard parry is as good as getting hit. He took a giant lateral cut, and I stepped in to meet it. As the cut approached, I flipped the sword upward from beneath, redirecting the attack high over my head. It left me in position to deliver a crushing shot to Raximar’s right hip; despite his armor, I knew I had damaged bone. He flinched hard, but to his credit, he stayed upright.
But it was irrelevant. A wound like that limited his mobility, and against an opponent who was willing to fight patiently, that meant the fight was over. I wore him down over the next two minutes, delivering a glancing shot to his shoulder, then a swift cut to the left knee. He stumbled with a desperate strike, and I slammed my sword upward into his wrists, breaking both and sending the sword flying.
Raximar dropped to his knees, barely able to hold his body off the floor. He was panting, desperate for air, desperate for a way out. I rammed the sword down on the back of his neck, and it was done.
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
Things fell apart very quickly after that.
The Raximar troops, for some reason, doubted my version of events. I fought my way back to my troops, but all of my men had stood down awaiting the outcome of my negotiations. Some of those loyal to me helped me break out of the Raximar camp, but it was clear we were going to be hunted down a second time, this time with less ceremony than the first.
I fled into the hills and ruins.
We fought a series of skirmishes as we retreated. Most of my troops chose to surrender rather than die. I’m impressed that any were fool enough to lay down their lives for me, in retrospect. We ran, and we ran, fewer and fewer, until at last, just three of us remained to hole up in a cave. It ran deep, and we could hear water. We sealed the entrance. This would be the end of us, but we could do it on our terms.
"We should go down fighting," offered a captain who had stayed with me to the end. I couldn’t remember her name, but this seemed the wrong time to bring that up. "They’ll have to pay for my life in kind."
The second man, a common soldier, sat and sobbed. "It doesn’t matter. Dead is dead. And we’re dead. We’re dead."
But my eyes were drawn to the cave walls. "Do these look like worked stone to you?"
My companions didn’t seem to hear me. But I was right. The cave floor had certainly been smoothed, and the walls were too even to be natural. I willed a small light into existence, and walked deeper into the darkness.
It took me some time to clear a collapsed tunnel, but on the other side was a small chamber. I recognized it immediately from my research. It was a Keocian summoning chamber, and it was entirely intact.
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
Without my reference materials, the inscriptions took some time to decipher, but the crux of it was simple enough. Two pedestals, each with a large obsidian bowl. You fill each bowl with blood, and you place one hand in each. From there, the chamber would do the rest. And I just happened to have two lives with me to fill the bowls.
#figure(image("003_The First World Is the Hardest/06.jpg", width: 100%), caption: [Covenant of Blood | Art by <NAME>], supplement: none, numbering: none)
My companions got their wishes. One got to die fighting. The other died a meaningless death. I filled the two stone bowls with their lifeblood, and when I was done, you couldn’t tell which had been which.
The rest of the ritual was laughably easy. Beings of power want to be called. They want to serve their purpose. I’m sure I made a mistake or two in pronunciation, but it didn’t matter in the slightest. The doors that held back the beings I invoked were thin, and as I pulled them open, they pushed from the other side. A child could have done it. They wanted to come.
I felt them in my mind. They searched it roughly for my desires. I tried to direct them, to focus them on the problem at hand, to clear away the forces that penned me in. But they knew better. They knew what I really wanted. They did as I asked.
They ended the world.
The process was completely mundane. No howling winds, no eruptions of fire and blood, no scouring of the land by ravenous winged things. It just ended. Every living soul just fell down and died. From those digging through the cave-in to reach me, to a farmer on a far-off continent. They simply died. All of them.
Except for me.
I walked the scoured landscape for days to be sure. Encampments filled with rotting meat. Fortifications manned by corpses alone. On the tenth day, I noticed the creature shadowing me. That night, it joined me by my fire.
He took on my form, down to the smallest detail, but his voice was like a void.
"Congratulations, <NAME>. You have done it. You brought peace to this world."
"Peace. Yes, I suppose I have."
"The Eighth and final Cataclysm. You played your part well."
"Centuries of war. Possibly millennia. For this?"
"Worlds are made and broken as toys for greater beings than us. We were made to deliver a prize and a price."
I smiled. "Here sits Ob Nixilis, sole survivor of a world that only knew war, is that it? Very well. It’s a better fate than the rest of them got." I pulled a flask of water from my pack. "Here’s to me, then."
I took a swig, and looked around. I was completely alone.
#figure(image("003_The First World Is the Hardest/08.jpg", width: 100%), caption: [Ob Nixilis of the Black Oath | Art by Daarken], supplement: none, numbering: none)
The absurdity of it all washed over me like a wave. A lifetime of scrambling for power and control, when all the while I had been dancing on another’s stage. All my ambition, all my desire, all my study and toil and pain. All of it for nothing. It was the end of the world. It was what I had always wanted. It was a trap set for me, thousands of years before my birth.
I laughed until I choked. I fell to the ground, hands and knees, weeping and gasping. The end of the world.
It went very dark.
When I opened my eyes again, I looked upon a new world.
It fell much more easily than the first.
|
|
https://github.com/a-mhamdi/graduation-report | https://raw.githubusercontent.com/a-mhamdi/graduation-report/main/Typst/en-Report/Class.typ | typst | MIT License | // DOCUMENT CLASS
#import "@preview/colorful-boxes:1.2.0": outlinebox
#import "common/metadata.typ": *
// --- Titles of Chapters ---
#let chap(myRef, notAck: true, numbering: none) = {
v(8cm)
place(
center,
rect(
width: 15cm,
height: 6cm,
radius: (rest: 5pt)
)[
#v(2.5cm)
#text(1.5em, smallcaps(heading(outlined: notAck, numbering: numbering, myRef)))
]
)
}
#let report(
title: "",
titre: "",
diploma: "",
program: "",
supervisor: "",
author: "",
date: none,
bibFile: none,
isAbstract: false,
body,
) = {
// --- Set the document's geometric properties. ---
set page(
margin: (left: 30mm, right: 30mm, top: 40mm, bottom: 40mm),
number-align: center,
)
// --- Body font family ---
set text(
font: "EB Garamond",
size: 12pt,
lang: "en"
)
show math.equation: set text(weight: 400)
// --- Headings ---
show heading: set block(below: 0.85em, above: 1.75em)
show heading: it => {
if (it.level <= 3) and (it.level > 1){
block(counter(heading).display() + " " + it.body)
} else {
block(it.body)
}
}
// --- Paragraphs ---
show par: set block(spacing: 1.5em)
set par(leading: 1em, justify: true)
// --- Figures ---
show figure: set text(size: 12pt)
set figure(numbering: "1")
show figure: set figure.caption(separator: [: ])
show figure.where(kind: image): set figure(supplement: "Fig.")
show figure.where(kind: table): set figure(supplement: "Tab.")
show figure.where(kind: table): set figure.caption(position: top)
// --- Maths ---
show math.equation: set text(font: "Cambria Math", size: 12pt)
set math.equation(numbering: "(1)")
show ref: it => {
let el = it.element
if el != none and el.func() == math.equation {
link(el.location(), numbering(
"Eq. (1)",
counter(math.equation).at(el.location()).at(0)
))
} else {
it
}
}
// --- Body ---
body
// --- Bibliography ---
if bibFile != none {
set page(numbering: "1.")
figure(chap("Bibliography"), kind: "chapter", supplement: "Chapter") // Bibliography
set page(header: smallcaps(title) + h(1fr) + emph("Bibliography") + line(length: 100%), numbering: "1.")
bibliography(bibFile, title: none, full: true, style: "ieee")
}
// --- Abstract | Résumé ---
if isAbstract == true {
set page(header: none, numbering: none)
outlinebox(
title: "Abstract",
color: none,
width: auto,
radius: 2pt,
centering: false
)[
#abstract
#line(length: 100%)
_*Keywords --*_ #keywords
]
outlinebox(
title: "Résumé",
color: none,
width: auto,
radius: 2pt,
centering: false
)[
#resume
#line(length: 100%)
_*Mots clés --*_ #motscles
]
}
}
|
https://github.com/duskmoon314/typst-fontawesome | https://raw.githubusercontent.com/duskmoon314/typst-fontawesome/main/gallery.typ | typst | MIT License | #import "lib.typ": *
#table(columns: (3fr, 1fr, 1fr, 2fr), stroke: none, table.header([typst code], [default], [solid], [`fa-icon` with text]),
```typst #fa-0()```, fa-0(), fa-0(solid: true), fa-icon("0"),
```typst #fa-00()```, fa-00(), fa-00(solid: true), fa-icon("00"),
```typst #fa-1()```, fa-1(), fa-1(solid: true), fa-icon("1"),
```typst #fa-2()```, fa-2(), fa-2(solid: true), fa-icon("2"),
```typst #fa-3()```, fa-3(), fa-3(solid: true), fa-icon("3"),
```typst #fa-360-degrees()```, fa-360-degrees(), fa-360-degrees(solid: true), fa-icon("360-degrees"),
```typst #fa-4()```, fa-4(), fa-4(solid: true), fa-icon("4"),
```typst #fa-42-group()```, fa-42-group(), fa-42-group(solid: true), fa-icon("42-group"),
```typst #fa-innosoft()```, fa-innosoft(), fa-innosoft(solid: true), fa-icon("innosoft"),
```typst #fa-5()```, fa-5(), fa-5(solid: true), fa-icon("5"),
```typst #fa-500px()```, fa-500px(), fa-500px(solid: true), fa-icon("500px"),
```typst #fa-6()```, fa-6(), fa-6(solid: true), fa-icon("6"),
```typst #fa-7()```, fa-7(), fa-7(solid: true), fa-icon("7"),
```typst #fa-8()```, fa-8(), fa-8(solid: true), fa-icon("8"),
```typst #fa-9()```, fa-9(), fa-9(solid: true), fa-icon("9"),
```typst #fa-a()```, fa-a(), fa-a(solid: true), fa-icon("a"),
```typst #fa-abacus()```, fa-abacus(), fa-abacus(solid: true), fa-icon("abacus"),
```typst #fa-accent-grave()```, fa-accent-grave(), fa-accent-grave(solid: true), fa-icon("accent-grave"),
```typst #fa-accessible-icon()```, fa-accessible-icon(), fa-accessible-icon(solid: true), fa-icon("accessible-icon"),
```typst #fa-accusoft()```, fa-accusoft(), fa-accusoft(solid: true), fa-icon("accusoft"),
```typst #fa-acorn()```, fa-acorn(), fa-acorn(solid: true), fa-icon("acorn"),
```typst #fa-address-book()```, fa-address-book(), fa-address-book(solid: true), fa-icon("address-book"),
```typst #fa-contact-book()```, fa-contact-book(), fa-contact-book(solid: true), fa-icon("contact-book"),
```typst #fa-address-card()```, fa-address-card(), fa-address-card(solid: true), fa-icon("address-card"),
```typst #fa-contact-card()```, fa-contact-card(), fa-contact-card(solid: true), fa-icon("contact-card"),
```typst #fa-vcard()```, fa-vcard(), fa-vcard(solid: true), fa-icon("vcard"),
```typst #fa-adn()```, fa-adn(), fa-adn(solid: true), fa-icon("adn"),
```typst #fa-adversal()```, fa-adversal(), fa-adversal(solid: true), fa-icon("adversal"),
```typst #fa-affiliatetheme()```, fa-affiliatetheme(), fa-affiliatetheme(solid: true), fa-icon("affiliatetheme"),
```typst #fa-airbnb()```, fa-airbnb(), fa-airbnb(solid: true), fa-icon("airbnb"),
```typst #fa-air-conditioner()```, fa-air-conditioner(), fa-air-conditioner(solid: true), fa-icon("air-conditioner"),
```typst #fa-airplay()```, fa-airplay(), fa-airplay(solid: true), fa-icon("airplay"),
```typst #fa-alarm-clock()```, fa-alarm-clock(), fa-alarm-clock(solid: true), fa-icon("alarm-clock"),
```typst #fa-alarm-exclamation()```, fa-alarm-exclamation(), fa-alarm-exclamation(solid: true), fa-icon("alarm-exclamation"),
```typst #fa-alarm-plus()```, fa-alarm-plus(), fa-alarm-plus(solid: true), fa-icon("alarm-plus"),
```typst #fa-alarm-snooze()```, fa-alarm-snooze(), fa-alarm-snooze(solid: true), fa-icon("alarm-snooze"),
```typst #fa-album()```, fa-album(), fa-album(solid: true), fa-icon("album"),
```typst #fa-album-circle-plus()```, fa-album-circle-plus(), fa-album-circle-plus(solid: true), fa-icon("album-circle-plus"),
```typst #fa-album-circle-user()```, fa-album-circle-user(), fa-album-circle-user(solid: true), fa-icon("album-circle-user"),
```typst #fa-album-collection()```, fa-album-collection(), fa-album-collection(solid: true), fa-icon("album-collection"),
```typst #fa-album-collection-circle-plus()```, fa-album-collection-circle-plus(), fa-album-collection-circle-plus(solid: true), fa-icon("album-collection-circle-plus"),
```typst #fa-album-collection-circle-user()```, fa-album-collection-circle-user(), fa-album-collection-circle-user(solid: true), fa-icon("album-collection-circle-user"),
```typst #fa-algolia()```, fa-algolia(), fa-algolia(solid: true), fa-icon("algolia"),
```typst #fa-alicorn()```, fa-alicorn(), fa-alicorn(solid: true), fa-icon("alicorn"),
```typst #fa-alien()```, fa-alien(), fa-alien(solid: true), fa-icon("alien"),
```typst #fa-alien-8bit()```, fa-alien-8bit(), fa-alien-8bit(solid: true), fa-icon("alien-8bit"),
```typst #fa-alien-monster()```, fa-alien-monster(), fa-alien-monster(solid: true), fa-icon("alien-monster"),
```typst #fa-align-center()```, fa-align-center(), fa-align-center(solid: true), fa-icon("align-center"),
```typst #fa-align-justify()```, fa-align-justify(), fa-align-justify(solid: true), fa-icon("align-justify"),
```typst #fa-align-left()```, fa-align-left(), fa-align-left(solid: true), fa-icon("align-left"),
```typst #fa-align-right()```, fa-align-right(), fa-align-right(solid: true), fa-icon("align-right"),
```typst #fa-align-slash()```, fa-align-slash(), fa-align-slash(solid: true), fa-icon("align-slash"),
```typst #fa-alipay()```, fa-alipay(), fa-alipay(solid: true), fa-icon("alipay"),
```typst #fa-alt()```, fa-alt(), fa-alt(solid: true), fa-icon("alt"),
```typst #fa-amazon()```, fa-amazon(), fa-amazon(solid: true), fa-icon("amazon"),
```typst #fa-amazon-pay()```, fa-amazon-pay(), fa-amazon-pay(solid: true), fa-icon("amazon-pay"),
```typst #fa-amilia()```, fa-amilia(), fa-amilia(solid: true), fa-icon("amilia"),
```typst #fa-ampersand()```, fa-ampersand(), fa-ampersand(solid: true), fa-icon("ampersand"),
```typst #fa-amp-guitar()```, fa-amp-guitar(), fa-amp-guitar(solid: true), fa-icon("amp-guitar"),
```typst #fa-anchor()```, fa-anchor(), fa-anchor(solid: true), fa-icon("anchor"),
```typst #fa-anchor-circle-check()```, fa-anchor-circle-check(), fa-anchor-circle-check(solid: true), fa-icon("anchor-circle-check"),
```typst #fa-anchor-circle-exclamation()```, fa-anchor-circle-exclamation(), fa-anchor-circle-exclamation(solid: true), fa-icon("anchor-circle-exclamation"),
```typst #fa-anchor-circle-xmark()```, fa-anchor-circle-xmark(), fa-anchor-circle-xmark(solid: true), fa-icon("anchor-circle-xmark"),
```typst #fa-anchor-lock()```, fa-anchor-lock(), fa-anchor-lock(solid: true), fa-icon("anchor-lock"),
```typst #fa-android()```, fa-android(), fa-android(solid: true), fa-icon("android"),
```typst #fa-angel()```, fa-angel(), fa-angel(solid: true), fa-icon("angel"),
```typst #fa-angellist()```, fa-angellist(), fa-angellist(solid: true), fa-icon("angellist"),
```typst #fa-angle()```, fa-angle(), fa-angle(solid: true), fa-icon("angle"),
```typst #fa-angle-90()```, fa-angle-90(), fa-angle-90(solid: true), fa-icon("angle-90"),
```typst #fa-angle-down()```, fa-angle-down(), fa-angle-down(solid: true), fa-icon("angle-down"),
```typst #fa-angle-left()```, fa-angle-left(), fa-angle-left(solid: true), fa-icon("angle-left"),
```typst #fa-angle-right()```, fa-angle-right(), fa-angle-right(solid: true), fa-icon("angle-right"),
```typst #fa-angles-down()```, fa-angles-down(), fa-angles-down(solid: true), fa-icon("angles-down"),
```typst #fa-angle-double-down()```, fa-angle-double-down(), fa-angle-double-down(solid: true), fa-icon("angle-double-down"),
```typst #fa-angles-left()```, fa-angles-left(), fa-angles-left(solid: true), fa-icon("angles-left"),
```typst #fa-angle-double-left()```, fa-angle-double-left(), fa-angle-double-left(solid: true), fa-icon("angle-double-left"),
```typst #fa-angles-right()```, fa-angles-right(), fa-angles-right(solid: true), fa-icon("angles-right"),
```typst #fa-angle-double-right()```, fa-angle-double-right(), fa-angle-double-right(solid: true), fa-icon("angle-double-right"),
```typst #fa-angles-up()```, fa-angles-up(), fa-angles-up(solid: true), fa-icon("angles-up"),
```typst #fa-angle-double-up()```, fa-angle-double-up(), fa-angle-double-up(solid: true), fa-icon("angle-double-up"),
```typst #fa-angles-up-down()```, fa-angles-up-down(), fa-angles-up-down(solid: true), fa-icon("angles-up-down"),
```typst #fa-angle-up()```, fa-angle-up(), fa-angle-up(solid: true), fa-icon("angle-up"),
```typst #fa-angrycreative()```, fa-angrycreative(), fa-angrycreative(solid: true), fa-icon("angrycreative"),
```typst #fa-angular()```, fa-angular(), fa-angular(solid: true), fa-icon("angular"),
```typst #fa-ankh()```, fa-ankh(), fa-ankh(solid: true), fa-icon("ankh"),
```typst #fa-ant()```, fa-ant(), fa-ant(solid: true), fa-icon("ant"),
```typst #fa-apartment()```, fa-apartment(), fa-apartment(solid: true), fa-icon("apartment"),
```typst #fa-aperture()```, fa-aperture(), fa-aperture(solid: true), fa-icon("aperture"),
```typst #fa-apostrophe()```, fa-apostrophe(), fa-apostrophe(solid: true), fa-icon("apostrophe"),
```typst #fa-apper()```, fa-apper(), fa-apper(solid: true), fa-icon("apper"),
```typst #fa-apple()```, fa-apple(), fa-apple(solid: true), fa-icon("apple"),
```typst #fa-apple-core()```, fa-apple-core(), fa-apple-core(solid: true), fa-icon("apple-core"),
```typst #fa-apple-pay()```, fa-apple-pay(), fa-apple-pay(solid: true), fa-icon("apple-pay"),
```typst #fa-apple-whole()```, fa-apple-whole(), fa-apple-whole(solid: true), fa-icon("apple-whole"),
```typst #fa-apple-alt()```, fa-apple-alt(), fa-apple-alt(solid: true), fa-icon("apple-alt"),
```typst #fa-app-store()```, fa-app-store(), fa-app-store(solid: true), fa-icon("app-store"),
```typst #fa-app-store-ios()```, fa-app-store-ios(), fa-app-store-ios(solid: true), fa-icon("app-store-ios"),
```typst #fa-archway()```, fa-archway(), fa-archway(solid: true), fa-icon("archway"),
```typst #fa-arrow-down()```, fa-arrow-down(), fa-arrow-down(solid: true), fa-icon("arrow-down"),
```typst #fa-arrow-down-1-9()```, fa-arrow-down-1-9(), fa-arrow-down-1-9(solid: true), fa-icon("arrow-down-1-9"),
```typst #fa-sort-numeric-asc()```, fa-sort-numeric-asc(), fa-sort-numeric-asc(solid: true), fa-icon("sort-numeric-asc"),
```typst #fa-sort-numeric-down()```, fa-sort-numeric-down(), fa-sort-numeric-down(solid: true), fa-icon("sort-numeric-down"),
```typst #fa-arrow-down-9-1()```, fa-arrow-down-9-1(), fa-arrow-down-9-1(solid: true), fa-icon("arrow-down-9-1"),
```typst #fa-sort-numeric-desc()```, fa-sort-numeric-desc(), fa-sort-numeric-desc(solid: true), fa-icon("sort-numeric-desc"),
```typst #fa-sort-numeric-down-alt()```, fa-sort-numeric-down-alt(), fa-sort-numeric-down-alt(solid: true), fa-icon("sort-numeric-down-alt"),
```typst #fa-arrow-down-arrow-up()```, fa-arrow-down-arrow-up(), fa-arrow-down-arrow-up(solid: true), fa-icon("arrow-down-arrow-up"),
```typst #fa-sort-alt()```, fa-sort-alt(), fa-sort-alt(solid: true), fa-icon("sort-alt"),
```typst #fa-arrow-down-a-z()```, fa-arrow-down-a-z(), fa-arrow-down-a-z(solid: true), fa-icon("arrow-down-a-z"),
```typst #fa-sort-alpha-asc()```, fa-sort-alpha-asc(), fa-sort-alpha-asc(solid: true), fa-icon("sort-alpha-asc"),
```typst #fa-sort-alpha-down()```, fa-sort-alpha-down(), fa-sort-alpha-down(solid: true), fa-icon("sort-alpha-down"),
```typst #fa-arrow-down-big-small()```, fa-arrow-down-big-small(), fa-arrow-down-big-small(solid: true), fa-icon("arrow-down-big-small"),
```typst #fa-sort-size-down()```, fa-sort-size-down(), fa-sort-size-down(solid: true), fa-icon("sort-size-down"),
```typst #fa-arrow-down-from-arc()```, fa-arrow-down-from-arc(), fa-arrow-down-from-arc(solid: true), fa-icon("arrow-down-from-arc"),
```typst #fa-arrow-down-from-bracket()```, fa-arrow-down-from-bracket(), fa-arrow-down-from-bracket(solid: true), fa-icon("arrow-down-from-bracket"),
```typst #fa-arrow-down-from-dotted-line()```, fa-arrow-down-from-dotted-line(), fa-arrow-down-from-dotted-line(solid: true), fa-icon("arrow-down-from-dotted-line"),
```typst #fa-arrow-down-from-line()```, fa-arrow-down-from-line(), fa-arrow-down-from-line(solid: true), fa-icon("arrow-down-from-line"),
```typst #fa-arrow-from-top()```, fa-arrow-from-top(), fa-arrow-from-top(solid: true), fa-icon("arrow-from-top"),
```typst #fa-arrow-down-left()```, fa-arrow-down-left(), fa-arrow-down-left(solid: true), fa-icon("arrow-down-left"),
```typst #fa-arrow-down-left-and-arrow-up-right-to-center()```, fa-arrow-down-left-and-arrow-up-right-to-center(), fa-arrow-down-left-and-arrow-up-right-to-center(solid: true), fa-icon("arrow-down-left-and-arrow-up-right-to-center"),
```typst #fa-arrow-down-long()```, fa-arrow-down-long(), fa-arrow-down-long(solid: true), fa-icon("arrow-down-long"),
```typst #fa-long-arrow-down()```, fa-long-arrow-down(), fa-long-arrow-down(solid: true), fa-icon("long-arrow-down"),
```typst #fa-arrow-down-right()```, fa-arrow-down-right(), fa-arrow-down-right(solid: true), fa-icon("arrow-down-right"),
```typst #fa-arrow-down-short-wide()```, fa-arrow-down-short-wide(), fa-arrow-down-short-wide(solid: true), fa-icon("arrow-down-short-wide"),
```typst #fa-sort-amount-desc()```, fa-sort-amount-desc(), fa-sort-amount-desc(solid: true), fa-icon("sort-amount-desc"),
```typst #fa-sort-amount-down-alt()```, fa-sort-amount-down-alt(), fa-sort-amount-down-alt(solid: true), fa-icon("sort-amount-down-alt"),
```typst #fa-arrow-down-small-big()```, fa-arrow-down-small-big(), fa-arrow-down-small-big(solid: true), fa-icon("arrow-down-small-big"),
```typst #fa-sort-size-down-alt()```, fa-sort-size-down-alt(), fa-sort-size-down-alt(solid: true), fa-icon("sort-size-down-alt"),
```typst #fa-arrow-down-square-triangle()```, fa-arrow-down-square-triangle(), fa-arrow-down-square-triangle(solid: true), fa-icon("arrow-down-square-triangle"),
```typst #fa-sort-shapes-down-alt()```, fa-sort-shapes-down-alt(), fa-sort-shapes-down-alt(solid: true), fa-icon("sort-shapes-down-alt"),
```typst #fa-arrow-down-to-arc()```, fa-arrow-down-to-arc(), fa-arrow-down-to-arc(solid: true), fa-icon("arrow-down-to-arc"),
```typst #fa-arrow-down-to-bracket()```, fa-arrow-down-to-bracket(), fa-arrow-down-to-bracket(solid: true), fa-icon("arrow-down-to-bracket"),
```typst #fa-arrow-down-to-dotted-line()```, fa-arrow-down-to-dotted-line(), fa-arrow-down-to-dotted-line(solid: true), fa-icon("arrow-down-to-dotted-line"),
```typst #fa-arrow-down-to-line()```, fa-arrow-down-to-line(), fa-arrow-down-to-line(solid: true), fa-icon("arrow-down-to-line"),
```typst #fa-arrow-to-bottom()```, fa-arrow-to-bottom(), fa-arrow-to-bottom(solid: true), fa-icon("arrow-to-bottom"),
```typst #fa-arrow-down-to-square()```, fa-arrow-down-to-square(), fa-arrow-down-to-square(solid: true), fa-icon("arrow-down-to-square"),
```typst #fa-arrow-down-triangle-square()```, fa-arrow-down-triangle-square(), fa-arrow-down-triangle-square(solid: true), fa-icon("arrow-down-triangle-square"),
```typst #fa-sort-shapes-down()```, fa-sort-shapes-down(), fa-sort-shapes-down(solid: true), fa-icon("sort-shapes-down"),
```typst #fa-arrow-down-up-across-line()```, fa-arrow-down-up-across-line(), fa-arrow-down-up-across-line(solid: true), fa-icon("arrow-down-up-across-line"),
```typst #fa-arrow-down-up-lock()```, fa-arrow-down-up-lock(), fa-arrow-down-up-lock(solid: true), fa-icon("arrow-down-up-lock"),
```typst #fa-arrow-down-wide-short()```, fa-arrow-down-wide-short(), fa-arrow-down-wide-short(solid: true), fa-icon("arrow-down-wide-short"),
```typst #fa-sort-amount-asc()```, fa-sort-amount-asc(), fa-sort-amount-asc(solid: true), fa-icon("sort-amount-asc"),
```typst #fa-sort-amount-down()```, fa-sort-amount-down(), fa-sort-amount-down(solid: true), fa-icon("sort-amount-down"),
```typst #fa-arrow-down-z-a()```, fa-arrow-down-z-a(), fa-arrow-down-z-a(solid: true), fa-icon("arrow-down-z-a"),
```typst #fa-sort-alpha-desc()```, fa-sort-alpha-desc(), fa-sort-alpha-desc(solid: true), fa-icon("sort-alpha-desc"),
```typst #fa-sort-alpha-down-alt()```, fa-sort-alpha-down-alt(), fa-sort-alpha-down-alt(solid: true), fa-icon("sort-alpha-down-alt"),
```typst #fa-arrow-left()```, fa-arrow-left(), fa-arrow-left(solid: true), fa-icon("arrow-left"),
```typst #fa-arrow-left-from-arc()```, fa-arrow-left-from-arc(), fa-arrow-left-from-arc(solid: true), fa-icon("arrow-left-from-arc"),
```typst #fa-arrow-left-from-bracket()```, fa-arrow-left-from-bracket(), fa-arrow-left-from-bracket(solid: true), fa-icon("arrow-left-from-bracket"),
```typst #fa-arrow-left-from-line()```, fa-arrow-left-from-line(), fa-arrow-left-from-line(solid: true), fa-icon("arrow-left-from-line"),
```typst #fa-arrow-from-right()```, fa-arrow-from-right(), fa-arrow-from-right(solid: true), fa-icon("arrow-from-right"),
```typst #fa-arrow-left-long()```, fa-arrow-left-long(), fa-arrow-left-long(solid: true), fa-icon("arrow-left-long"),
```typst #fa-long-arrow-left()```, fa-long-arrow-left(), fa-long-arrow-left(solid: true), fa-icon("long-arrow-left"),
```typst #fa-arrow-left-long-to-line()```, fa-arrow-left-long-to-line(), fa-arrow-left-long-to-line(solid: true), fa-icon("arrow-left-long-to-line"),
```typst #fa-arrow-left-to-arc()```, fa-arrow-left-to-arc(), fa-arrow-left-to-arc(solid: true), fa-icon("arrow-left-to-arc"),
```typst #fa-arrow-left-to-bracket()```, fa-arrow-left-to-bracket(), fa-arrow-left-to-bracket(solid: true), fa-icon("arrow-left-to-bracket"),
```typst #fa-arrow-left-to-line()```, fa-arrow-left-to-line(), fa-arrow-left-to-line(solid: true), fa-icon("arrow-left-to-line"),
```typst #fa-arrow-to-left()```, fa-arrow-to-left(), fa-arrow-to-left(solid: true), fa-icon("arrow-to-left"),
```typst #fa-arrow-pointer()```, fa-arrow-pointer(), fa-arrow-pointer(solid: true), fa-icon("arrow-pointer"),
```typst #fa-mouse-pointer()```, fa-mouse-pointer(), fa-mouse-pointer(solid: true), fa-icon("mouse-pointer"),
```typst #fa-arrow-progress()```, fa-arrow-progress(), fa-arrow-progress(solid: true), fa-icon("arrow-progress"),
```typst #fa-arrow-right()```, fa-arrow-right(), fa-arrow-right(solid: true), fa-icon("arrow-right"),
```typst #fa-arrow-right-arrow-left()```, fa-arrow-right-arrow-left(), fa-arrow-right-arrow-left(solid: true), fa-icon("arrow-right-arrow-left"),
```typst #fa-exchange()```, fa-exchange(), fa-exchange(solid: true), fa-icon("exchange"),
```typst #fa-arrow-right-from-arc()```, fa-arrow-right-from-arc(), fa-arrow-right-from-arc(solid: true), fa-icon("arrow-right-from-arc"),
```typst #fa-arrow-right-from-bracket()```, fa-arrow-right-from-bracket(), fa-arrow-right-from-bracket(solid: true), fa-icon("arrow-right-from-bracket"),
```typst #fa-sign-out()```, fa-sign-out(), fa-sign-out(solid: true), fa-icon("sign-out"),
```typst #fa-arrow-right-from-line()```, fa-arrow-right-from-line(), fa-arrow-right-from-line(solid: true), fa-icon("arrow-right-from-line"),
```typst #fa-arrow-from-left()```, fa-arrow-from-left(), fa-arrow-from-left(solid: true), fa-icon("arrow-from-left"),
```typst #fa-arrow-right-long()```, fa-arrow-right-long(), fa-arrow-right-long(solid: true), fa-icon("arrow-right-long"),
```typst #fa-long-arrow-right()```, fa-long-arrow-right(), fa-long-arrow-right(solid: true), fa-icon("long-arrow-right"),
```typst #fa-arrow-right-long-to-line()```, fa-arrow-right-long-to-line(), fa-arrow-right-long-to-line(solid: true), fa-icon("arrow-right-long-to-line"),
```typst #fa-arrow-right-to-arc()```, fa-arrow-right-to-arc(), fa-arrow-right-to-arc(solid: true), fa-icon("arrow-right-to-arc"),
```typst #fa-arrow-right-to-bracket()```, fa-arrow-right-to-bracket(), fa-arrow-right-to-bracket(solid: true), fa-icon("arrow-right-to-bracket"),
```typst #fa-sign-in()```, fa-sign-in(), fa-sign-in(solid: true), fa-icon("sign-in"),
```typst #fa-arrow-right-to-city()```, fa-arrow-right-to-city(), fa-arrow-right-to-city(solid: true), fa-icon("arrow-right-to-city"),
```typst #fa-arrow-right-to-line()```, fa-arrow-right-to-line(), fa-arrow-right-to-line(solid: true), fa-icon("arrow-right-to-line"),
```typst #fa-arrow-to-right()```, fa-arrow-to-right(), fa-arrow-to-right(solid: true), fa-icon("arrow-to-right"),
```typst #fa-arrow-rotate-left()```, fa-arrow-rotate-left(), fa-arrow-rotate-left(solid: true), fa-icon("arrow-rotate-left"),
```typst #fa-arrow-left-rotate()```, fa-arrow-left-rotate(), fa-arrow-left-rotate(solid: true), fa-icon("arrow-left-rotate"),
```typst #fa-arrow-rotate-back()```, fa-arrow-rotate-back(), fa-arrow-rotate-back(solid: true), fa-icon("arrow-rotate-back"),
```typst #fa-arrow-rotate-backward()```, fa-arrow-rotate-backward(), fa-arrow-rotate-backward(solid: true), fa-icon("arrow-rotate-backward"),
```typst #fa-undo()```, fa-undo(), fa-undo(solid: true), fa-icon("undo"),
```typst #fa-arrow-rotate-right()```, fa-arrow-rotate-right(), fa-arrow-rotate-right(solid: true), fa-icon("arrow-rotate-right"),
```typst #fa-arrow-right-rotate()```, fa-arrow-right-rotate(), fa-arrow-right-rotate(solid: true), fa-icon("arrow-right-rotate"),
```typst #fa-arrow-rotate-forward()```, fa-arrow-rotate-forward(), fa-arrow-rotate-forward(solid: true), fa-icon("arrow-rotate-forward"),
```typst #fa-redo()```, fa-redo(), fa-redo(solid: true), fa-icon("redo"),
```typst #fa-arrows-cross()```, fa-arrows-cross(), fa-arrows-cross(solid: true), fa-icon("arrows-cross"),
```typst #fa-arrows-down-to-line()```, fa-arrows-down-to-line(), fa-arrows-down-to-line(solid: true), fa-icon("arrows-down-to-line"),
```typst #fa-arrows-down-to-people()```, fa-arrows-down-to-people(), fa-arrows-down-to-people(solid: true), fa-icon("arrows-down-to-people"),
```typst #fa-arrows-from-dotted-line()```, fa-arrows-from-dotted-line(), fa-arrows-from-dotted-line(solid: true), fa-icon("arrows-from-dotted-line"),
```typst #fa-arrows-from-line()```, fa-arrows-from-line(), fa-arrows-from-line(solid: true), fa-icon("arrows-from-line"),
```typst #fa-arrows-left-right()```, fa-arrows-left-right(), fa-arrows-left-right(solid: true), fa-icon("arrows-left-right"),
```typst #fa-arrows-h()```, fa-arrows-h(), fa-arrows-h(solid: true), fa-icon("arrows-h"),
```typst #fa-arrows-left-right-to-line()```, fa-arrows-left-right-to-line(), fa-arrows-left-right-to-line(solid: true), fa-icon("arrows-left-right-to-line"),
```typst #fa-arrows-maximize()```, fa-arrows-maximize(), fa-arrows-maximize(solid: true), fa-icon("arrows-maximize"),
```typst #fa-expand-arrows()```, fa-expand-arrows(), fa-expand-arrows(solid: true), fa-icon("expand-arrows"),
```typst #fa-arrows-minimize()```, fa-arrows-minimize(), fa-arrows-minimize(solid: true), fa-icon("arrows-minimize"),
```typst #fa-compress-arrows()```, fa-compress-arrows(), fa-compress-arrows(solid: true), fa-icon("compress-arrows"),
```typst #fa-arrows-repeat()```, fa-arrows-repeat(), fa-arrows-repeat(solid: true), fa-icon("arrows-repeat"),
```typst #fa-repeat-alt()```, fa-repeat-alt(), fa-repeat-alt(solid: true), fa-icon("repeat-alt"),
```typst #fa-arrows-repeat-1()```, fa-arrows-repeat-1(), fa-arrows-repeat-1(solid: true), fa-icon("arrows-repeat-1"),
```typst #fa-repeat-1-alt()```, fa-repeat-1-alt(), fa-repeat-1-alt(solid: true), fa-icon("repeat-1-alt"),
```typst #fa-arrows-retweet()```, fa-arrows-retweet(), fa-arrows-retweet(solid: true), fa-icon("arrows-retweet"),
```typst #fa-retweet-alt()```, fa-retweet-alt(), fa-retweet-alt(solid: true), fa-icon("retweet-alt"),
```typst #fa-arrows-rotate()```, fa-arrows-rotate(), fa-arrows-rotate(solid: true), fa-icon("arrows-rotate"),
```typst #fa-refresh()```, fa-refresh(), fa-refresh(solid: true), fa-icon("refresh"),
```typst #fa-sync()```, fa-sync(), fa-sync(solid: true), fa-icon("sync"),
```typst #fa-arrows-rotate-reverse()```, fa-arrows-rotate-reverse(), fa-arrows-rotate-reverse(solid: true), fa-icon("arrows-rotate-reverse"),
```typst #fa-arrows-spin()```, fa-arrows-spin(), fa-arrows-spin(solid: true), fa-icon("arrows-spin"),
```typst #fa-arrows-split-up-and-left()```, fa-arrows-split-up-and-left(), fa-arrows-split-up-and-left(solid: true), fa-icon("arrows-split-up-and-left"),
```typst #fa-arrows-to-circle()```, fa-arrows-to-circle(), fa-arrows-to-circle(solid: true), fa-icon("arrows-to-circle"),
```typst #fa-arrows-to-dot()```, fa-arrows-to-dot(), fa-arrows-to-dot(solid: true), fa-icon("arrows-to-dot"),
```typst #fa-arrows-to-dotted-line()```, fa-arrows-to-dotted-line(), fa-arrows-to-dotted-line(solid: true), fa-icon("arrows-to-dotted-line"),
```typst #fa-arrows-to-eye()```, fa-arrows-to-eye(), fa-arrows-to-eye(solid: true), fa-icon("arrows-to-eye"),
```typst #fa-arrows-to-line()```, fa-arrows-to-line(), fa-arrows-to-line(solid: true), fa-icon("arrows-to-line"),
```typst #fa-arrows-turn-right()```, fa-arrows-turn-right(), fa-arrows-turn-right(solid: true), fa-icon("arrows-turn-right"),
```typst #fa-arrows-turn-to-dots()```, fa-arrows-turn-to-dots(), fa-arrows-turn-to-dots(solid: true), fa-icon("arrows-turn-to-dots"),
```typst #fa-arrows-up-down()```, fa-arrows-up-down(), fa-arrows-up-down(solid: true), fa-icon("arrows-up-down"),
```typst #fa-arrows-v()```, fa-arrows-v(), fa-arrows-v(solid: true), fa-icon("arrows-v"),
```typst #fa-arrows-up-down-left-right()```, fa-arrows-up-down-left-right(), fa-arrows-up-down-left-right(solid: true), fa-icon("arrows-up-down-left-right"),
```typst #fa-arrows()```, fa-arrows(), fa-arrows(solid: true), fa-icon("arrows"),
```typst #fa-arrows-up-to-line()```, fa-arrows-up-to-line(), fa-arrows-up-to-line(solid: true), fa-icon("arrows-up-to-line"),
```typst #fa-arrow-trend-down()```, fa-arrow-trend-down(), fa-arrow-trend-down(solid: true), fa-icon("arrow-trend-down"),
```typst #fa-arrow-trend-up()```, fa-arrow-trend-up(), fa-arrow-trend-up(solid: true), fa-icon("arrow-trend-up"),
```typst #fa-arrow-turn-down()```, fa-arrow-turn-down(), fa-arrow-turn-down(solid: true), fa-icon("arrow-turn-down"),
```typst #fa-level-down()```, fa-level-down(), fa-level-down(solid: true), fa-icon("level-down"),
```typst #fa-arrow-turn-down-left()```, fa-arrow-turn-down-left(), fa-arrow-turn-down-left(solid: true), fa-icon("arrow-turn-down-left"),
```typst #fa-arrow-turn-down-right()```, fa-arrow-turn-down-right(), fa-arrow-turn-down-right(solid: true), fa-icon("arrow-turn-down-right"),
```typst #fa-arrow-turn-left()```, fa-arrow-turn-left(), fa-arrow-turn-left(solid: true), fa-icon("arrow-turn-left"),
```typst #fa-arrow-turn-left-down()```, fa-arrow-turn-left-down(), fa-arrow-turn-left-down(solid: true), fa-icon("arrow-turn-left-down"),
```typst #fa-arrow-turn-left-up()```, fa-arrow-turn-left-up(), fa-arrow-turn-left-up(solid: true), fa-icon("arrow-turn-left-up"),
```typst #fa-arrow-turn-right()```, fa-arrow-turn-right(), fa-arrow-turn-right(solid: true), fa-icon("arrow-turn-right"),
```typst #fa-arrow-turn-up()```, fa-arrow-turn-up(), fa-arrow-turn-up(solid: true), fa-icon("arrow-turn-up"),
```typst #fa-level-up()```, fa-level-up(), fa-level-up(solid: true), fa-icon("level-up"),
```typst #fa-arrow-up()```, fa-arrow-up(), fa-arrow-up(solid: true), fa-icon("arrow-up"),
```typst #fa-arrow-up-1-9()```, fa-arrow-up-1-9(), fa-arrow-up-1-9(solid: true), fa-icon("arrow-up-1-9"),
```typst #fa-sort-numeric-up()```, fa-sort-numeric-up(), fa-sort-numeric-up(solid: true), fa-icon("sort-numeric-up"),
```typst #fa-arrow-up-9-1()```, fa-arrow-up-9-1(), fa-arrow-up-9-1(solid: true), fa-icon("arrow-up-9-1"),
```typst #fa-sort-numeric-up-alt()```, fa-sort-numeric-up-alt(), fa-sort-numeric-up-alt(solid: true), fa-icon("sort-numeric-up-alt"),
```typst #fa-arrow-up-arrow-down()```, fa-arrow-up-arrow-down(), fa-arrow-up-arrow-down(solid: true), fa-icon("arrow-up-arrow-down"),
```typst #fa-sort-up-down()```, fa-sort-up-down(), fa-sort-up-down(solid: true), fa-icon("sort-up-down"),
```typst #fa-arrow-up-a-z()```, fa-arrow-up-a-z(), fa-arrow-up-a-z(solid: true), fa-icon("arrow-up-a-z"),
```typst #fa-sort-alpha-up()```, fa-sort-alpha-up(), fa-sort-alpha-up(solid: true), fa-icon("sort-alpha-up"),
```typst #fa-arrow-up-big-small()```, fa-arrow-up-big-small(), fa-arrow-up-big-small(solid: true), fa-icon("arrow-up-big-small"),
```typst #fa-sort-size-up()```, fa-sort-size-up(), fa-sort-size-up(solid: true), fa-icon("sort-size-up"),
```typst #fa-arrow-up-from-arc()```, fa-arrow-up-from-arc(), fa-arrow-up-from-arc(solid: true), fa-icon("arrow-up-from-arc"),
```typst #fa-arrow-up-from-bracket()```, fa-arrow-up-from-bracket(), fa-arrow-up-from-bracket(solid: true), fa-icon("arrow-up-from-bracket"),
```typst #fa-arrow-up-from-dotted-line()```, fa-arrow-up-from-dotted-line(), fa-arrow-up-from-dotted-line(solid: true), fa-icon("arrow-up-from-dotted-line"),
```typst #fa-arrow-up-from-ground-water()```, fa-arrow-up-from-ground-water(), fa-arrow-up-from-ground-water(solid: true), fa-icon("arrow-up-from-ground-water"),
```typst #fa-arrow-up-from-line()```, fa-arrow-up-from-line(), fa-arrow-up-from-line(solid: true), fa-icon("arrow-up-from-line"),
```typst #fa-arrow-from-bottom()```, fa-arrow-from-bottom(), fa-arrow-from-bottom(solid: true), fa-icon("arrow-from-bottom"),
```typst #fa-arrow-up-from-square()```, fa-arrow-up-from-square(), fa-arrow-up-from-square(solid: true), fa-icon("arrow-up-from-square"),
```typst #fa-arrow-up-from-water-pump()```, fa-arrow-up-from-water-pump(), fa-arrow-up-from-water-pump(solid: true), fa-icon("arrow-up-from-water-pump"),
```typst #fa-arrow-up-left()```, fa-arrow-up-left(), fa-arrow-up-left(solid: true), fa-icon("arrow-up-left"),
```typst #fa-arrow-up-left-from-circle()```, fa-arrow-up-left-from-circle(), fa-arrow-up-left-from-circle(solid: true), fa-icon("arrow-up-left-from-circle"),
```typst #fa-arrow-up-long()```, fa-arrow-up-long(), fa-arrow-up-long(solid: true), fa-icon("arrow-up-long"),
```typst #fa-long-arrow-up()```, fa-long-arrow-up(), fa-long-arrow-up(solid: true), fa-icon("long-arrow-up"),
```typst #fa-arrow-up-right()```, fa-arrow-up-right(), fa-arrow-up-right(solid: true), fa-icon("arrow-up-right"),
```typst #fa-arrow-up-right-and-arrow-down-left-from-center()```, fa-arrow-up-right-and-arrow-down-left-from-center(), fa-arrow-up-right-and-arrow-down-left-from-center(solid: true), fa-icon("arrow-up-right-and-arrow-down-left-from-center"),
```typst #fa-arrow-up-right-dots()```, fa-arrow-up-right-dots(), fa-arrow-up-right-dots(solid: true), fa-icon("arrow-up-right-dots"),
```typst #fa-arrow-up-right-from-square()```, fa-arrow-up-right-from-square(), fa-arrow-up-right-from-square(solid: true), fa-icon("arrow-up-right-from-square"),
```typst #fa-external-link()```, fa-external-link(), fa-external-link(solid: true), fa-icon("external-link"),
```typst #fa-arrow-up-short-wide()```, fa-arrow-up-short-wide(), fa-arrow-up-short-wide(solid: true), fa-icon("arrow-up-short-wide"),
```typst #fa-sort-amount-up-alt()```, fa-sort-amount-up-alt(), fa-sort-amount-up-alt(solid: true), fa-icon("sort-amount-up-alt"),
```typst #fa-arrow-up-small-big()```, fa-arrow-up-small-big(), fa-arrow-up-small-big(solid: true), fa-icon("arrow-up-small-big"),
```typst #fa-sort-size-up-alt()```, fa-sort-size-up-alt(), fa-sort-size-up-alt(solid: true), fa-icon("sort-size-up-alt"),
```typst #fa-arrow-up-square-triangle()```, fa-arrow-up-square-triangle(), fa-arrow-up-square-triangle(solid: true), fa-icon("arrow-up-square-triangle"),
```typst #fa-sort-shapes-up-alt()```, fa-sort-shapes-up-alt(), fa-sort-shapes-up-alt(solid: true), fa-icon("sort-shapes-up-alt"),
```typst #fa-arrow-up-to-arc()```, fa-arrow-up-to-arc(), fa-arrow-up-to-arc(solid: true), fa-icon("arrow-up-to-arc"),
```typst #fa-arrow-up-to-bracket()```, fa-arrow-up-to-bracket(), fa-arrow-up-to-bracket(solid: true), fa-icon("arrow-up-to-bracket"),
```typst #fa-arrow-up-to-dotted-line()```, fa-arrow-up-to-dotted-line(), fa-arrow-up-to-dotted-line(solid: true), fa-icon("arrow-up-to-dotted-line"),
```typst #fa-arrow-up-to-line()```, fa-arrow-up-to-line(), fa-arrow-up-to-line(solid: true), fa-icon("arrow-up-to-line"),
```typst #fa-arrow-to-top()```, fa-arrow-to-top(), fa-arrow-to-top(solid: true), fa-icon("arrow-to-top"),
```typst #fa-arrow-up-triangle-square()```, fa-arrow-up-triangle-square(), fa-arrow-up-triangle-square(solid: true), fa-icon("arrow-up-triangle-square"),
```typst #fa-sort-shapes-up()```, fa-sort-shapes-up(), fa-sort-shapes-up(solid: true), fa-icon("sort-shapes-up"),
```typst #fa-arrow-up-wide-short()```, fa-arrow-up-wide-short(), fa-arrow-up-wide-short(solid: true), fa-icon("arrow-up-wide-short"),
```typst #fa-sort-amount-up()```, fa-sort-amount-up(), fa-sort-amount-up(solid: true), fa-icon("sort-amount-up"),
```typst #fa-arrow-up-z-a()```, fa-arrow-up-z-a(), fa-arrow-up-z-a(solid: true), fa-icon("arrow-up-z-a"),
```typst #fa-sort-alpha-up-alt()```, fa-sort-alpha-up-alt(), fa-sort-alpha-up-alt(solid: true), fa-icon("sort-alpha-up-alt"),
```typst #fa-artstation()```, fa-artstation(), fa-artstation(solid: true), fa-icon("artstation"),
```typst #fa-asterisk()```, fa-asterisk(), fa-asterisk(solid: true), fa-icon("asterisk"),
```typst #fa-asymmetrik()```, fa-asymmetrik(), fa-asymmetrik(solid: true), fa-icon("asymmetrik"),
```typst #fa-at()```, fa-at(), fa-at(solid: true), fa-icon("at"),
```typst #fa-atlassian()```, fa-atlassian(), fa-atlassian(solid: true), fa-icon("atlassian"),
```typst #fa-atom()```, fa-atom(), fa-atom(solid: true), fa-icon("atom"),
```typst #fa-atom-simple()```, fa-atom-simple(), fa-atom-simple(solid: true), fa-icon("atom-simple"),
```typst #fa-atom-alt()```, fa-atom-alt(), fa-atom-alt(solid: true), fa-icon("atom-alt"),
```typst #fa-audible()```, fa-audible(), fa-audible(solid: true), fa-icon("audible"),
```typst #fa-audio-description()```, fa-audio-description(), fa-audio-description(solid: true), fa-icon("audio-description"),
```typst #fa-audio-description-slash()```, fa-audio-description-slash(), fa-audio-description-slash(solid: true), fa-icon("audio-description-slash"),
```typst #fa-austral-sign()```, fa-austral-sign(), fa-austral-sign(solid: true), fa-icon("austral-sign"),
```typst #fa-autoprefixer()```, fa-autoprefixer(), fa-autoprefixer(solid: true), fa-icon("autoprefixer"),
```typst #fa-avianex()```, fa-avianex(), fa-avianex(solid: true), fa-icon("avianex"),
```typst #fa-aviato()```, fa-aviato(), fa-aviato(solid: true), fa-icon("aviato"),
```typst #fa-avocado()```, fa-avocado(), fa-avocado(solid: true), fa-icon("avocado"),
```typst #fa-award()```, fa-award(), fa-award(solid: true), fa-icon("award"),
```typst #fa-award-simple()```, fa-award-simple(), fa-award-simple(solid: true), fa-icon("award-simple"),
```typst #fa-aws()```, fa-aws(), fa-aws(solid: true), fa-icon("aws"),
```typst #fa-axe()```, fa-axe(), fa-axe(solid: true), fa-icon("axe"),
```typst #fa-axe-battle()```, fa-axe-battle(), fa-axe-battle(solid: true), fa-icon("axe-battle"),
```typst #fa-b()```, fa-b(), fa-b(solid: true), fa-icon("b"),
```typst #fa-baby()```, fa-baby(), fa-baby(solid: true), fa-icon("baby"),
```typst #fa-baby-carriage()```, fa-baby-carriage(), fa-baby-carriage(solid: true), fa-icon("baby-carriage"),
```typst #fa-carriage-baby()```, fa-carriage-baby(), fa-carriage-baby(solid: true), fa-icon("carriage-baby"),
```typst #fa-backpack()```, fa-backpack(), fa-backpack(solid: true), fa-icon("backpack"),
```typst #fa-backward()```, fa-backward(), fa-backward(solid: true), fa-icon("backward"),
```typst #fa-backward-fast()```, fa-backward-fast(), fa-backward-fast(solid: true), fa-icon("backward-fast"),
```typst #fa-fast-backward()```, fa-fast-backward(), fa-fast-backward(solid: true), fa-icon("fast-backward"),
```typst #fa-backward-step()```, fa-backward-step(), fa-backward-step(solid: true), fa-icon("backward-step"),
```typst #fa-step-backward()```, fa-step-backward(), fa-step-backward(solid: true), fa-icon("step-backward"),
```typst #fa-bacon()```, fa-bacon(), fa-bacon(solid: true), fa-icon("bacon"),
```typst #fa-bacteria()```, fa-bacteria(), fa-bacteria(solid: true), fa-icon("bacteria"),
```typst #fa-bacterium()```, fa-bacterium(), fa-bacterium(solid: true), fa-icon("bacterium"),
```typst #fa-badge()```, fa-badge(), fa-badge(solid: true), fa-icon("badge"),
```typst #fa-badge-check()```, fa-badge-check(), fa-badge-check(solid: true), fa-icon("badge-check"),
```typst #fa-badge-dollar()```, fa-badge-dollar(), fa-badge-dollar(solid: true), fa-icon("badge-dollar"),
```typst #fa-badge-percent()```, fa-badge-percent(), fa-badge-percent(solid: true), fa-icon("badge-percent"),
```typst #fa-badger-honey()```, fa-badger-honey(), fa-badger-honey(solid: true), fa-icon("badger-honey"),
```typst #fa-badge-sheriff()```, fa-badge-sheriff(), fa-badge-sheriff(solid: true), fa-icon("badge-sheriff"),
```typst #fa-badminton()```, fa-badminton(), fa-badminton(solid: true), fa-icon("badminton"),
```typst #fa-bagel()```, fa-bagel(), fa-bagel(solid: true), fa-icon("bagel"),
```typst #fa-bag-seedling()```, fa-bag-seedling(), fa-bag-seedling(solid: true), fa-icon("bag-seedling"),
```typst #fa-bag-shopping()```, fa-bag-shopping(), fa-bag-shopping(solid: true), fa-icon("bag-shopping"),
```typst #fa-shopping-bag()```, fa-shopping-bag(), fa-shopping-bag(solid: true), fa-icon("shopping-bag"),
```typst #fa-bag-shopping-minus()```, fa-bag-shopping-minus(), fa-bag-shopping-minus(solid: true), fa-icon("bag-shopping-minus"),
```typst #fa-bag-shopping-plus()```, fa-bag-shopping-plus(), fa-bag-shopping-plus(solid: true), fa-icon("bag-shopping-plus"),
```typst #fa-bags-shopping()```, fa-bags-shopping(), fa-bags-shopping(solid: true), fa-icon("bags-shopping"),
```typst #fa-baguette()```, fa-baguette(), fa-baguette(solid: true), fa-icon("baguette"),
```typst #fa-bahai()```, fa-bahai(), fa-bahai(solid: true), fa-icon("bahai"),
```typst #fa-haykal()```, fa-haykal(), fa-haykal(solid: true), fa-icon("haykal"),
```typst #fa-baht-sign()```, fa-baht-sign(), fa-baht-sign(solid: true), fa-icon("baht-sign"),
```typst #fa-balloon()```, fa-balloon(), fa-balloon(solid: true), fa-icon("balloon"),
```typst #fa-balloons()```, fa-balloons(), fa-balloons(solid: true), fa-icon("balloons"),
```typst #fa-ballot()```, fa-ballot(), fa-ballot(solid: true), fa-icon("ballot"),
```typst #fa-ballot-check()```, fa-ballot-check(), fa-ballot-check(solid: true), fa-icon("ballot-check"),
```typst #fa-ball-pile()```, fa-ball-pile(), fa-ball-pile(solid: true), fa-icon("ball-pile"),
```typst #fa-ban()```, fa-ban(), fa-ban(solid: true), fa-icon("ban"),
```typst #fa-cancel()```, fa-cancel(), fa-cancel(solid: true), fa-icon("cancel"),
```typst #fa-banana()```, fa-banana(), fa-banana(solid: true), fa-icon("banana"),
```typst #fa-ban-bug()```, fa-ban-bug(), fa-ban-bug(solid: true), fa-icon("ban-bug"),
```typst #fa-debug()```, fa-debug(), fa-debug(solid: true), fa-icon("debug"),
```typst #fa-bandage()```, fa-bandage(), fa-bandage(solid: true), fa-icon("bandage"),
```typst #fa-band-aid()```, fa-band-aid(), fa-band-aid(solid: true), fa-icon("band-aid"),
```typst #fa-bandcamp()```, fa-bandcamp(), fa-bandcamp(solid: true), fa-icon("bandcamp"),
```typst #fa-bangladeshi-taka-sign()```, fa-bangladeshi-taka-sign(), fa-bangladeshi-taka-sign(solid: true), fa-icon("bangladeshi-taka-sign"),
```typst #fa-banjo()```, fa-banjo(), fa-banjo(solid: true), fa-icon("banjo"),
```typst #fa-ban-parking()```, fa-ban-parking(), fa-ban-parking(solid: true), fa-icon("ban-parking"),
```typst #fa-parking-circle-slash()```, fa-parking-circle-slash(), fa-parking-circle-slash(solid: true), fa-icon("parking-circle-slash"),
```typst #fa-ban-smoking()```, fa-ban-smoking(), fa-ban-smoking(solid: true), fa-icon("ban-smoking"),
```typst #fa-smoking-ban()```, fa-smoking-ban(), fa-smoking-ban(solid: true), fa-icon("smoking-ban"),
```typst #fa-barcode()```, fa-barcode(), fa-barcode(solid: true), fa-icon("barcode"),
```typst #fa-barcode-read()```, fa-barcode-read(), fa-barcode-read(solid: true), fa-icon("barcode-read"),
```typst #fa-barcode-scan()```, fa-barcode-scan(), fa-barcode-scan(solid: true), fa-icon("barcode-scan"),
```typst #fa-bars()```, fa-bars(), fa-bars(solid: true), fa-icon("bars"),
```typst #fa-navicon()```, fa-navicon(), fa-navicon(solid: true), fa-icon("navicon"),
```typst #fa-bars-filter()```, fa-bars-filter(), fa-bars-filter(solid: true), fa-icon("bars-filter"),
```typst #fa-bars-progress()```, fa-bars-progress(), fa-bars-progress(solid: true), fa-icon("bars-progress"),
```typst #fa-tasks-alt()```, fa-tasks-alt(), fa-tasks-alt(solid: true), fa-icon("tasks-alt"),
```typst #fa-bars-sort()```, fa-bars-sort(), fa-bars-sort(solid: true), fa-icon("bars-sort"),
```typst #fa-bars-staggered()```, fa-bars-staggered(), fa-bars-staggered(solid: true), fa-icon("bars-staggered"),
```typst #fa-reorder()```, fa-reorder(), fa-reorder(solid: true), fa-icon("reorder"),
```typst #fa-stream()```, fa-stream(), fa-stream(solid: true), fa-icon("stream"),
```typst #fa-baseball()```, fa-baseball(), fa-baseball(solid: true), fa-icon("baseball"),
```typst #fa-baseball-ball()```, fa-baseball-ball(), fa-baseball-ball(solid: true), fa-icon("baseball-ball"),
```typst #fa-baseball-bat-ball()```, fa-baseball-bat-ball(), fa-baseball-bat-ball(solid: true), fa-icon("baseball-bat-ball"),
```typst #fa-basketball()```, fa-basketball(), fa-basketball(solid: true), fa-icon("basketball"),
```typst #fa-basketball-ball()```, fa-basketball-ball(), fa-basketball-ball(solid: true), fa-icon("basketball-ball"),
```typst #fa-basketball-hoop()```, fa-basketball-hoop(), fa-basketball-hoop(solid: true), fa-icon("basketball-hoop"),
```typst #fa-basket-shopping()```, fa-basket-shopping(), fa-basket-shopping(solid: true), fa-icon("basket-shopping"),
```typst #fa-shopping-basket()```, fa-shopping-basket(), fa-shopping-basket(solid: true), fa-icon("shopping-basket"),
```typst #fa-basket-shopping-minus()```, fa-basket-shopping-minus(), fa-basket-shopping-minus(solid: true), fa-icon("basket-shopping-minus"),
```typst #fa-basket-shopping-plus()```, fa-basket-shopping-plus(), fa-basket-shopping-plus(solid: true), fa-icon("basket-shopping-plus"),
```typst #fa-basket-shopping-simple()```, fa-basket-shopping-simple(), fa-basket-shopping-simple(solid: true), fa-icon("basket-shopping-simple"),
```typst #fa-shopping-basket-alt()```, fa-shopping-basket-alt(), fa-shopping-basket-alt(solid: true), fa-icon("shopping-basket-alt"),
```typst #fa-bat()```, fa-bat(), fa-bat(solid: true), fa-icon("bat"),
```typst #fa-bath()```, fa-bath(), fa-bath(solid: true), fa-icon("bath"),
```typst #fa-bathtub()```, fa-bathtub(), fa-bathtub(solid: true), fa-icon("bathtub"),
```typst #fa-battery-bolt()```, fa-battery-bolt(), fa-battery-bolt(solid: true), fa-icon("battery-bolt"),
```typst #fa-battery-empty()```, fa-battery-empty(), fa-battery-empty(solid: true), fa-icon("battery-empty"),
```typst #fa-battery-0()```, fa-battery-0(), fa-battery-0(solid: true), fa-icon("battery-0"),
```typst #fa-battery-exclamation()```, fa-battery-exclamation(), fa-battery-exclamation(solid: true), fa-icon("battery-exclamation"),
```typst #fa-battery-full()```, fa-battery-full(), fa-battery-full(solid: true), fa-icon("battery-full"),
```typst #fa-battery()```, fa-battery(), fa-battery(solid: true), fa-icon("battery"),
```typst #fa-battery-5()```, fa-battery-5(), fa-battery-5(solid: true), fa-icon("battery-5"),
```typst #fa-battery-half()```, fa-battery-half(), fa-battery-half(solid: true), fa-icon("battery-half"),
```typst #fa-battery-3()```, fa-battery-3(), fa-battery-3(solid: true), fa-icon("battery-3"),
```typst #fa-battery-low()```, fa-battery-low(), fa-battery-low(solid: true), fa-icon("battery-low"),
```typst #fa-battery-1()```, fa-battery-1(), fa-battery-1(solid: true), fa-icon("battery-1"),
```typst #fa-battery-quarter()```, fa-battery-quarter(), fa-battery-quarter(solid: true), fa-icon("battery-quarter"),
```typst #fa-battery-2()```, fa-battery-2(), fa-battery-2(solid: true), fa-icon("battery-2"),
```typst #fa-battery-slash()```, fa-battery-slash(), fa-battery-slash(solid: true), fa-icon("battery-slash"),
```typst #fa-battery-three-quarters()```, fa-battery-three-quarters(), fa-battery-three-quarters(solid: true), fa-icon("battery-three-quarters"),
```typst #fa-battery-4()```, fa-battery-4(), fa-battery-4(solid: true), fa-icon("battery-4"),
```typst #fa-battle-net()```, fa-battle-net(), fa-battle-net(solid: true), fa-icon("battle-net"),
```typst #fa-bed()```, fa-bed(), fa-bed(solid: true), fa-icon("bed"),
```typst #fa-bed-bunk()```, fa-bed-bunk(), fa-bed-bunk(solid: true), fa-icon("bed-bunk"),
```typst #fa-bed-empty()```, fa-bed-empty(), fa-bed-empty(solid: true), fa-icon("bed-empty"),
```typst #fa-bed-front()```, fa-bed-front(), fa-bed-front(solid: true), fa-icon("bed-front"),
```typst #fa-bed-alt()```, fa-bed-alt(), fa-bed-alt(solid: true), fa-icon("bed-alt"),
```typst #fa-bed-pulse()```, fa-bed-pulse(), fa-bed-pulse(solid: true), fa-icon("bed-pulse"),
```typst #fa-procedures()```, fa-procedures(), fa-procedures(solid: true), fa-icon("procedures"),
```typst #fa-bee()```, fa-bee(), fa-bee(solid: true), fa-icon("bee"),
```typst #fa-beer-mug()```, fa-beer-mug(), fa-beer-mug(solid: true), fa-icon("beer-mug"),
```typst #fa-beer-foam()```, fa-beer-foam(), fa-beer-foam(solid: true), fa-icon("beer-foam"),
```typst #fa-beer-mug-empty()```, fa-beer-mug-empty(), fa-beer-mug-empty(solid: true), fa-icon("beer-mug-empty"),
```typst #fa-beer()```, fa-beer(), fa-beer(solid: true), fa-icon("beer"),
```typst #fa-behance()```, fa-behance(), fa-behance(solid: true), fa-icon("behance"),
```typst #fa-bell()```, fa-bell(), fa-bell(solid: true), fa-icon("bell"),
```typst #fa-bell-concierge()```, fa-bell-concierge(), fa-bell-concierge(solid: true), fa-icon("bell-concierge"),
```typst #fa-concierge-bell()```, fa-concierge-bell(), fa-concierge-bell(solid: true), fa-icon("concierge-bell"),
```typst #fa-bell-exclamation()```, fa-bell-exclamation(), fa-bell-exclamation(solid: true), fa-icon("bell-exclamation"),
```typst #fa-bell-on()```, fa-bell-on(), fa-bell-on(solid: true), fa-icon("bell-on"),
```typst #fa-bell-plus()```, fa-bell-plus(), fa-bell-plus(solid: true), fa-icon("bell-plus"),
```typst #fa-bell-ring()```, fa-bell-ring(), fa-bell-ring(solid: true), fa-icon("bell-ring"),
```typst #fa-bells()```, fa-bells(), fa-bells(solid: true), fa-icon("bells"),
```typst #fa-bell-school()```, fa-bell-school(), fa-bell-school(solid: true), fa-icon("bell-school"),
```typst #fa-bell-school-slash()```, fa-bell-school-slash(), fa-bell-school-slash(solid: true), fa-icon("bell-school-slash"),
```typst #fa-bell-slash()```, fa-bell-slash(), fa-bell-slash(solid: true), fa-icon("bell-slash"),
```typst #fa-bench-tree()```, fa-bench-tree(), fa-bench-tree(solid: true), fa-icon("bench-tree"),
```typst #fa-bezier-curve()```, fa-bezier-curve(), fa-bezier-curve(solid: true), fa-icon("bezier-curve"),
```typst #fa-bicycle()```, fa-bicycle(), fa-bicycle(solid: true), fa-icon("bicycle"),
```typst #fa-bilibili()```, fa-bilibili(), fa-bilibili(solid: true), fa-icon("bilibili"),
```typst #fa-billboard()```, fa-billboard(), fa-billboard(solid: true), fa-icon("billboard"),
```typst #fa-bimobject()```, fa-bimobject(), fa-bimobject(solid: true), fa-icon("bimobject"),
```typst #fa-binary()```, fa-binary(), fa-binary(solid: true), fa-icon("binary"),
```typst #fa-binary-circle-check()```, fa-binary-circle-check(), fa-binary-circle-check(solid: true), fa-icon("binary-circle-check"),
```typst #fa-binary-lock()```, fa-binary-lock(), fa-binary-lock(solid: true), fa-icon("binary-lock"),
```typst #fa-binary-slash()```, fa-binary-slash(), fa-binary-slash(solid: true), fa-icon("binary-slash"),
```typst #fa-bin-bottles()```, fa-bin-bottles(), fa-bin-bottles(solid: true), fa-icon("bin-bottles"),
```typst #fa-bin-bottles-recycle()```, fa-bin-bottles-recycle(), fa-bin-bottles-recycle(solid: true), fa-icon("bin-bottles-recycle"),
```typst #fa-binoculars()```, fa-binoculars(), fa-binoculars(solid: true), fa-icon("binoculars"),
```typst #fa-bin-recycle()```, fa-bin-recycle(), fa-bin-recycle(solid: true), fa-icon("bin-recycle"),
```typst #fa-biohazard()```, fa-biohazard(), fa-biohazard(solid: true), fa-icon("biohazard"),
```typst #fa-bird()```, fa-bird(), fa-bird(solid: true), fa-icon("bird"),
```typst #fa-bitbucket()```, fa-bitbucket(), fa-bitbucket(solid: true), fa-icon("bitbucket"),
```typst #fa-bitcoin()```, fa-bitcoin(), fa-bitcoin(solid: true), fa-icon("bitcoin"),
```typst #fa-bitcoin-sign()```, fa-bitcoin-sign(), fa-bitcoin-sign(solid: true), fa-icon("bitcoin-sign"),
```typst #fa-bity()```, fa-bity(), fa-bity(solid: true), fa-icon("bity"),
```typst #fa-blackberry()```, fa-blackberry(), fa-blackberry(solid: true), fa-icon("blackberry"),
```typst #fa-black-tie()```, fa-black-tie(), fa-black-tie(solid: true), fa-icon("black-tie"),
```typst #fa-blanket()```, fa-blanket(), fa-blanket(solid: true), fa-icon("blanket"),
```typst #fa-blanket-fire()```, fa-blanket-fire(), fa-blanket-fire(solid: true), fa-icon("blanket-fire"),
```typst #fa-blender()```, fa-blender(), fa-blender(solid: true), fa-icon("blender"),
```typst #fa-blender-phone()```, fa-blender-phone(), fa-blender-phone(solid: true), fa-icon("blender-phone"),
```typst #fa-blinds()```, fa-blinds(), fa-blinds(solid: true), fa-icon("blinds"),
```typst #fa-blinds-open()```, fa-blinds-open(), fa-blinds-open(solid: true), fa-icon("blinds-open"),
```typst #fa-blinds-raised()```, fa-blinds-raised(), fa-blinds-raised(solid: true), fa-icon("blinds-raised"),
```typst #fa-block()```, fa-block(), fa-block(solid: true), fa-icon("block"),
```typst #fa-block-brick()```, fa-block-brick(), fa-block-brick(solid: true), fa-icon("block-brick"),
```typst #fa-wall-brick()```, fa-wall-brick(), fa-wall-brick(solid: true), fa-icon("wall-brick"),
```typst #fa-block-brick-fire()```, fa-block-brick-fire(), fa-block-brick-fire(solid: true), fa-icon("block-brick-fire"),
```typst #fa-firewall()```, fa-firewall(), fa-firewall(solid: true), fa-icon("firewall"),
```typst #fa-block-question()```, fa-block-question(), fa-block-question(solid: true), fa-icon("block-question"),
```typst #fa-block-quote()```, fa-block-quote(), fa-block-quote(solid: true), fa-icon("block-quote"),
```typst #fa-blog()```, fa-blog(), fa-blog(solid: true), fa-icon("blog"),
```typst #fa-blogger()```, fa-blogger(), fa-blogger(solid: true), fa-icon("blogger"),
```typst #fa-blogger-b()```, fa-blogger-b(), fa-blogger-b(solid: true), fa-icon("blogger-b"),
```typst #fa-blueberries()```, fa-blueberries(), fa-blueberries(solid: true), fa-icon("blueberries"),
```typst #fa-bluesky()```, fa-bluesky(), fa-bluesky(solid: true), fa-icon("bluesky"),
```typst #fa-bluetooth()```, fa-bluetooth(), fa-bluetooth(solid: true), fa-icon("bluetooth"),
```typst #fa-bluetooth-b()```, fa-bluetooth-b(), fa-bluetooth-b(solid: true), fa-icon("bluetooth-b"),
```typst #fa-bold()```, fa-bold(), fa-bold(solid: true), fa-icon("bold"),
```typst #fa-bolt()```, fa-bolt(), fa-bolt(solid: true), fa-icon("bolt"),
```typst #fa-zap()```, fa-zap(), fa-zap(solid: true), fa-icon("zap"),
```typst #fa-bolt-auto()```, fa-bolt-auto(), fa-bolt-auto(solid: true), fa-icon("bolt-auto"),
```typst #fa-bolt-lightning()```, fa-bolt-lightning(), fa-bolt-lightning(solid: true), fa-icon("bolt-lightning"),
```typst #fa-bolt-slash()```, fa-bolt-slash(), fa-bolt-slash(solid: true), fa-icon("bolt-slash"),
```typst #fa-bomb()```, fa-bomb(), fa-bomb(solid: true), fa-icon("bomb"),
```typst #fa-bone()```, fa-bone(), fa-bone(solid: true), fa-icon("bone"),
```typst #fa-bone-break()```, fa-bone-break(), fa-bone-break(solid: true), fa-icon("bone-break"),
```typst #fa-bong()```, fa-bong(), fa-bong(solid: true), fa-icon("bong"),
```typst #fa-book()```, fa-book(), fa-book(solid: true), fa-icon("book"),
```typst #fa-book-arrow-right()```, fa-book-arrow-right(), fa-book-arrow-right(solid: true), fa-icon("book-arrow-right"),
```typst #fa-book-arrow-up()```, fa-book-arrow-up(), fa-book-arrow-up(solid: true), fa-icon("book-arrow-up"),
```typst #fa-book-atlas()```, fa-book-atlas(), fa-book-atlas(solid: true), fa-icon("book-atlas"),
```typst #fa-atlas()```, fa-atlas(), fa-atlas(solid: true), fa-icon("atlas"),
```typst #fa-book-bible()```, fa-book-bible(), fa-book-bible(solid: true), fa-icon("book-bible"),
```typst #fa-bible()```, fa-bible(), fa-bible(solid: true), fa-icon("bible"),
```typst #fa-book-blank()```, fa-book-blank(), fa-book-blank(solid: true), fa-icon("book-blank"),
```typst #fa-book-alt()```, fa-book-alt(), fa-book-alt(solid: true), fa-icon("book-alt"),
```typst #fa-book-bookmark()```, fa-book-bookmark(), fa-book-bookmark(solid: true), fa-icon("book-bookmark"),
```typst #fa-book-circle-arrow-right()```, fa-book-circle-arrow-right(), fa-book-circle-arrow-right(solid: true), fa-icon("book-circle-arrow-right"),
```typst #fa-book-circle-arrow-up()```, fa-book-circle-arrow-up(), fa-book-circle-arrow-up(solid: true), fa-icon("book-circle-arrow-up"),
```typst #fa-book-copy()```, fa-book-copy(), fa-book-copy(solid: true), fa-icon("book-copy"),
```typst #fa-book-font()```, fa-book-font(), fa-book-font(solid: true), fa-icon("book-font"),
```typst #fa-book-heart()```, fa-book-heart(), fa-book-heart(solid: true), fa-icon("book-heart"),
```typst #fa-book-journal-whills()```, fa-book-journal-whills(), fa-book-journal-whills(solid: true), fa-icon("book-journal-whills"),
```typst #fa-journal-whills()```, fa-journal-whills(), fa-journal-whills(solid: true), fa-icon("journal-whills"),
```typst #fa-bookmark()```, fa-bookmark(), fa-bookmark(solid: true), fa-icon("bookmark"),
```typst #fa-bookmark-slash()```, fa-bookmark-slash(), fa-bookmark-slash(solid: true), fa-icon("bookmark-slash"),
```typst #fa-book-medical()```, fa-book-medical(), fa-book-medical(solid: true), fa-icon("book-medical"),
```typst #fa-book-open()```, fa-book-open(), fa-book-open(solid: true), fa-icon("book-open"),
```typst #fa-book-open-cover()```, fa-book-open-cover(), fa-book-open-cover(solid: true), fa-icon("book-open-cover"),
```typst #fa-book-open-alt()```, fa-book-open-alt(), fa-book-open-alt(solid: true), fa-icon("book-open-alt"),
```typst #fa-book-open-reader()```, fa-book-open-reader(), fa-book-open-reader(solid: true), fa-icon("book-open-reader"),
```typst #fa-book-reader()```, fa-book-reader(), fa-book-reader(solid: true), fa-icon("book-reader"),
```typst #fa-book-quran()```, fa-book-quran(), fa-book-quran(solid: true), fa-icon("book-quran"),
```typst #fa-quran()```, fa-quran(), fa-quran(solid: true), fa-icon("quran"),
```typst #fa-books()```, fa-books(), fa-books(solid: true), fa-icon("books"),
```typst #fa-book-section()```, fa-book-section(), fa-book-section(solid: true), fa-icon("book-section"),
```typst #fa-book-law()```, fa-book-law(), fa-book-law(solid: true), fa-icon("book-law"),
```typst #fa-book-skull()```, fa-book-skull(), fa-book-skull(solid: true), fa-icon("book-skull"),
```typst #fa-book-dead()```, fa-book-dead(), fa-book-dead(solid: true), fa-icon("book-dead"),
```typst #fa-books-medical()```, fa-books-medical(), fa-books-medical(solid: true), fa-icon("books-medical"),
```typst #fa-book-sparkles()```, fa-book-sparkles(), fa-book-sparkles(solid: true), fa-icon("book-sparkles"),
```typst #fa-book-spells()```, fa-book-spells(), fa-book-spells(solid: true), fa-icon("book-spells"),
```typst #fa-book-tanakh()```, fa-book-tanakh(), fa-book-tanakh(solid: true), fa-icon("book-tanakh"),
```typst #fa-tanakh()```, fa-tanakh(), fa-tanakh(solid: true), fa-icon("tanakh"),
```typst #fa-book-user()```, fa-book-user(), fa-book-user(solid: true), fa-icon("book-user"),
```typst #fa-boombox()```, fa-boombox(), fa-boombox(solid: true), fa-icon("boombox"),
```typst #fa-boot()```, fa-boot(), fa-boot(solid: true), fa-icon("boot"),
```typst #fa-booth-curtain()```, fa-booth-curtain(), fa-booth-curtain(solid: true), fa-icon("booth-curtain"),
```typst #fa-boot-heeled()```, fa-boot-heeled(), fa-boot-heeled(solid: true), fa-icon("boot-heeled"),
```typst #fa-bootstrap()```, fa-bootstrap(), fa-bootstrap(solid: true), fa-icon("bootstrap"),
```typst #fa-border-all()```, fa-border-all(), fa-border-all(solid: true), fa-icon("border-all"),
```typst #fa-border-bottom()```, fa-border-bottom(), fa-border-bottom(solid: true), fa-icon("border-bottom"),
```typst #fa-border-bottom-right()```, fa-border-bottom-right(), fa-border-bottom-right(solid: true), fa-icon("border-bottom-right"),
```typst #fa-border-style-alt()```, fa-border-style-alt(), fa-border-style-alt(solid: true), fa-icon("border-style-alt"),
```typst #fa-border-center-h()```, fa-border-center-h(), fa-border-center-h(solid: true), fa-icon("border-center-h"),
```typst #fa-border-center-v()```, fa-border-center-v(), fa-border-center-v(solid: true), fa-icon("border-center-v"),
```typst #fa-border-inner()```, fa-border-inner(), fa-border-inner(solid: true), fa-icon("border-inner"),
```typst #fa-border-left()```, fa-border-left(), fa-border-left(solid: true), fa-icon("border-left"),
```typst #fa-border-none()```, fa-border-none(), fa-border-none(solid: true), fa-icon("border-none"),
```typst #fa-border-outer()```, fa-border-outer(), fa-border-outer(solid: true), fa-icon("border-outer"),
```typst #fa-border-right()```, fa-border-right(), fa-border-right(solid: true), fa-icon("border-right"),
```typst #fa-border-top()```, fa-border-top(), fa-border-top(solid: true), fa-icon("border-top"),
```typst #fa-border-top-left()```, fa-border-top-left(), fa-border-top-left(solid: true), fa-icon("border-top-left"),
```typst #fa-border-style()```, fa-border-style(), fa-border-style(solid: true), fa-icon("border-style"),
```typst #fa-bore-hole()```, fa-bore-hole(), fa-bore-hole(solid: true), fa-icon("bore-hole"),
```typst #fa-bots()```, fa-bots(), fa-bots(solid: true), fa-icon("bots"),
```typst #fa-bottle-baby()```, fa-bottle-baby(), fa-bottle-baby(solid: true), fa-icon("bottle-baby"),
```typst #fa-bottle-droplet()```, fa-bottle-droplet(), fa-bottle-droplet(solid: true), fa-icon("bottle-droplet"),
```typst #fa-bottle-water()```, fa-bottle-water(), fa-bottle-water(solid: true), fa-icon("bottle-water"),
```typst #fa-bow-arrow()```, fa-bow-arrow(), fa-bow-arrow(solid: true), fa-icon("bow-arrow"),
```typst #fa-bowl-chopsticks()```, fa-bowl-chopsticks(), fa-bowl-chopsticks(solid: true), fa-icon("bowl-chopsticks"),
```typst #fa-bowl-chopsticks-noodles()```, fa-bowl-chopsticks-noodles(), fa-bowl-chopsticks-noodles(solid: true), fa-icon("bowl-chopsticks-noodles"),
```typst #fa-bowl-food()```, fa-bowl-food(), fa-bowl-food(solid: true), fa-icon("bowl-food"),
```typst #fa-bowl-hot()```, fa-bowl-hot(), fa-bowl-hot(solid: true), fa-icon("bowl-hot"),
```typst #fa-soup()```, fa-soup(), fa-soup(solid: true), fa-icon("soup"),
```typst #fa-bowling-ball()```, fa-bowling-ball(), fa-bowling-ball(solid: true), fa-icon("bowling-ball"),
```typst #fa-bowling-ball-pin()```, fa-bowling-ball-pin(), fa-bowling-ball-pin(solid: true), fa-icon("bowling-ball-pin"),
```typst #fa-bowling-pins()```, fa-bowling-pins(), fa-bowling-pins(solid: true), fa-icon("bowling-pins"),
```typst #fa-bowl-rice()```, fa-bowl-rice(), fa-bowl-rice(solid: true), fa-icon("bowl-rice"),
```typst #fa-bowl-scoop()```, fa-bowl-scoop(), fa-bowl-scoop(solid: true), fa-icon("bowl-scoop"),
```typst #fa-bowl-shaved-ice()```, fa-bowl-shaved-ice(), fa-bowl-shaved-ice(solid: true), fa-icon("bowl-shaved-ice"),
```typst #fa-bowl-scoops()```, fa-bowl-scoops(), fa-bowl-scoops(solid: true), fa-icon("bowl-scoops"),
```typst #fa-bowl-soft-serve()```, fa-bowl-soft-serve(), fa-bowl-soft-serve(solid: true), fa-icon("bowl-soft-serve"),
```typst #fa-bowl-spoon()```, fa-bowl-spoon(), fa-bowl-spoon(solid: true), fa-icon("bowl-spoon"),
```typst #fa-box()```, fa-box(), fa-box(solid: true), fa-icon("box"),
```typst #fa-box-archive()```, fa-box-archive(), fa-box-archive(solid: true), fa-icon("box-archive"),
```typst #fa-archive()```, fa-archive(), fa-archive(solid: true), fa-icon("archive"),
```typst #fa-box-ballot()```, fa-box-ballot(), fa-box-ballot(solid: true), fa-icon("box-ballot"),
```typst #fa-box-check()```, fa-box-check(), fa-box-check(solid: true), fa-icon("box-check"),
```typst #fa-box-circle-check()```, fa-box-circle-check(), fa-box-circle-check(solid: true), fa-icon("box-circle-check"),
```typst #fa-box-dollar()```, fa-box-dollar(), fa-box-dollar(solid: true), fa-icon("box-dollar"),
```typst #fa-box-usd()```, fa-box-usd(), fa-box-usd(solid: true), fa-icon("box-usd"),
```typst #fa-boxes-packing()```, fa-boxes-packing(), fa-boxes-packing(solid: true), fa-icon("boxes-packing"),
```typst #fa-boxes-stacked()```, fa-boxes-stacked(), fa-boxes-stacked(solid: true), fa-icon("boxes-stacked"),
```typst #fa-boxes()```, fa-boxes(), fa-boxes(solid: true), fa-icon("boxes"),
```typst #fa-boxes-alt()```, fa-boxes-alt(), fa-boxes-alt(solid: true), fa-icon("boxes-alt"),
```typst #fa-box-heart()```, fa-box-heart(), fa-box-heart(solid: true), fa-icon("box-heart"),
```typst #fa-boxing-glove()```, fa-boxing-glove(), fa-boxing-glove(solid: true), fa-icon("boxing-glove"),
```typst #fa-glove-boxing()```, fa-glove-boxing(), fa-glove-boxing(solid: true), fa-icon("glove-boxing"),
```typst #fa-box-open()```, fa-box-open(), fa-box-open(solid: true), fa-icon("box-open"),
```typst #fa-box-open-full()```, fa-box-open-full(), fa-box-open-full(solid: true), fa-icon("box-open-full"),
```typst #fa-box-full()```, fa-box-full(), fa-box-full(solid: true), fa-icon("box-full"),
```typst #fa-box-taped()```, fa-box-taped(), fa-box-taped(solid: true), fa-icon("box-taped"),
```typst #fa-box-alt()```, fa-box-alt(), fa-box-alt(solid: true), fa-icon("box-alt"),
```typst #fa-box-tissue()```, fa-box-tissue(), fa-box-tissue(solid: true), fa-icon("box-tissue"),
```typst #fa-bracket-curly()```, fa-bracket-curly(), fa-bracket-curly(solid: true), fa-icon("bracket-curly"),
```typst #fa-bracket-curly-left()```, fa-bracket-curly-left(), fa-bracket-curly-left(solid: true), fa-icon("bracket-curly-left"),
```typst #fa-bracket-curly-right()```, fa-bracket-curly-right(), fa-bracket-curly-right(solid: true), fa-icon("bracket-curly-right"),
```typst #fa-bracket-round()```, fa-bracket-round(), fa-bracket-round(solid: true), fa-icon("bracket-round"),
```typst #fa-parenthesis()```, fa-parenthesis(), fa-parenthesis(solid: true), fa-icon("parenthesis"),
```typst #fa-bracket-round-right()```, fa-bracket-round-right(), fa-bracket-round-right(solid: true), fa-icon("bracket-round-right"),
```typst #fa-brackets-curly()```, fa-brackets-curly(), fa-brackets-curly(solid: true), fa-icon("brackets-curly"),
```typst #fa-bracket-square()```, fa-bracket-square(), fa-bracket-square(solid: true), fa-icon("bracket-square"),
```typst #fa-bracket()```, fa-bracket(), fa-bracket(solid: true), fa-icon("bracket"),
```typst #fa-bracket-left()```, fa-bracket-left(), fa-bracket-left(solid: true), fa-icon("bracket-left"),
```typst #fa-bracket-square-right()```, fa-bracket-square-right(), fa-bracket-square-right(solid: true), fa-icon("bracket-square-right"),
```typst #fa-brackets-round()```, fa-brackets-round(), fa-brackets-round(solid: true), fa-icon("brackets-round"),
```typst #fa-parentheses()```, fa-parentheses(), fa-parentheses(solid: true), fa-icon("parentheses"),
```typst #fa-brackets-square()```, fa-brackets-square(), fa-brackets-square(solid: true), fa-icon("brackets-square"),
```typst #fa-brackets()```, fa-brackets(), fa-brackets(solid: true), fa-icon("brackets"),
```typst #fa-braille()```, fa-braille(), fa-braille(solid: true), fa-icon("braille"),
```typst #fa-brain()```, fa-brain(), fa-brain(solid: true), fa-icon("brain"),
```typst #fa-brain-arrow-curved-right()```, fa-brain-arrow-curved-right(), fa-brain-arrow-curved-right(solid: true), fa-icon("brain-arrow-curved-right"),
```typst #fa-mind-share()```, fa-mind-share(), fa-mind-share(solid: true), fa-icon("mind-share"),
```typst #fa-brain-circuit()```, fa-brain-circuit(), fa-brain-circuit(solid: true), fa-icon("brain-circuit"),
```typst #fa-brake-warning()```, fa-brake-warning(), fa-brake-warning(solid: true), fa-icon("brake-warning"),
```typst #fa-brave()```, fa-brave(), fa-brave(solid: true), fa-icon("brave"),
```typst #fa-brave-reverse()```, fa-brave-reverse(), fa-brave-reverse(solid: true), fa-icon("brave-reverse"),
```typst #fa-brazilian-real-sign()```, fa-brazilian-real-sign(), fa-brazilian-real-sign(solid: true), fa-icon("brazilian-real-sign"),
```typst #fa-bread-loaf()```, fa-bread-loaf(), fa-bread-loaf(solid: true), fa-icon("bread-loaf"),
```typst #fa-bread-slice()```, fa-bread-slice(), fa-bread-slice(solid: true), fa-icon("bread-slice"),
```typst #fa-bread-slice-butter()```, fa-bread-slice-butter(), fa-bread-slice-butter(solid: true), fa-icon("bread-slice-butter"),
```typst #fa-bridge()```, fa-bridge(), fa-bridge(solid: true), fa-icon("bridge"),
```typst #fa-bridge-circle-check()```, fa-bridge-circle-check(), fa-bridge-circle-check(solid: true), fa-icon("bridge-circle-check"),
```typst #fa-bridge-circle-exclamation()```, fa-bridge-circle-exclamation(), fa-bridge-circle-exclamation(solid: true), fa-icon("bridge-circle-exclamation"),
```typst #fa-bridge-circle-xmark()```, fa-bridge-circle-xmark(), fa-bridge-circle-xmark(solid: true), fa-icon("bridge-circle-xmark"),
```typst #fa-bridge-lock()```, fa-bridge-lock(), fa-bridge-lock(solid: true), fa-icon("bridge-lock"),
```typst #fa-bridge-suspension()```, fa-bridge-suspension(), fa-bridge-suspension(solid: true), fa-icon("bridge-suspension"),
```typst #fa-bridge-water()```, fa-bridge-water(), fa-bridge-water(solid: true), fa-icon("bridge-water"),
```typst #fa-briefcase()```, fa-briefcase(), fa-briefcase(solid: true), fa-icon("briefcase"),
```typst #fa-briefcase-arrow-right()```, fa-briefcase-arrow-right(), fa-briefcase-arrow-right(solid: true), fa-icon("briefcase-arrow-right"),
```typst #fa-briefcase-blank()```, fa-briefcase-blank(), fa-briefcase-blank(solid: true), fa-icon("briefcase-blank"),
```typst #fa-briefcase-medical()```, fa-briefcase-medical(), fa-briefcase-medical(solid: true), fa-icon("briefcase-medical"),
```typst #fa-brightness()```, fa-brightness(), fa-brightness(solid: true), fa-icon("brightness"),
```typst #fa-brightness-low()```, fa-brightness-low(), fa-brightness-low(solid: true), fa-icon("brightness-low"),
```typst #fa-bring-forward()```, fa-bring-forward(), fa-bring-forward(solid: true), fa-icon("bring-forward"),
```typst #fa-bring-front()```, fa-bring-front(), fa-bring-front(solid: true), fa-icon("bring-front"),
```typst #fa-broccoli()```, fa-broccoli(), fa-broccoli(solid: true), fa-icon("broccoli"),
```typst #fa-broom()```, fa-broom(), fa-broom(solid: true), fa-icon("broom"),
```typst #fa-broom-ball()```, fa-broom-ball(), fa-broom-ball(solid: true), fa-icon("broom-ball"),
```typst #fa-quidditch()```, fa-quidditch(), fa-quidditch(solid: true), fa-icon("quidditch"),
```typst #fa-quidditch-broom-ball()```, fa-quidditch-broom-ball(), fa-quidditch-broom-ball(solid: true), fa-icon("quidditch-broom-ball"),
```typst #fa-broom-wide()```, fa-broom-wide(), fa-broom-wide(solid: true), fa-icon("broom-wide"),
```typst #fa-browser()```, fa-browser(), fa-browser(solid: true), fa-icon("browser"),
```typst #fa-browsers()```, fa-browsers(), fa-browsers(solid: true), fa-icon("browsers"),
```typst #fa-brush()```, fa-brush(), fa-brush(solid: true), fa-icon("brush"),
```typst #fa-btc()```, fa-btc(), fa-btc(solid: true), fa-icon("btc"),
```typst #fa-bucket()```, fa-bucket(), fa-bucket(solid: true), fa-icon("bucket"),
```typst #fa-buffer()```, fa-buffer(), fa-buffer(solid: true), fa-icon("buffer"),
```typst #fa-bug()```, fa-bug(), fa-bug(solid: true), fa-icon("bug"),
```typst #fa-bugs()```, fa-bugs(), fa-bugs(solid: true), fa-icon("bugs"),
```typst #fa-bug-slash()```, fa-bug-slash(), fa-bug-slash(solid: true), fa-icon("bug-slash"),
```typst #fa-building()```, fa-building(), fa-building(solid: true), fa-icon("building"),
```typst #fa-building-circle-arrow-right()```, fa-building-circle-arrow-right(), fa-building-circle-arrow-right(solid: true), fa-icon("building-circle-arrow-right"),
```typst #fa-building-circle-check()```, fa-building-circle-check(), fa-building-circle-check(solid: true), fa-icon("building-circle-check"),
```typst #fa-building-circle-exclamation()```, fa-building-circle-exclamation(), fa-building-circle-exclamation(solid: true), fa-icon("building-circle-exclamation"),
```typst #fa-building-circle-xmark()```, fa-building-circle-xmark(), fa-building-circle-xmark(solid: true), fa-icon("building-circle-xmark"),
```typst #fa-building-columns()```, fa-building-columns(), fa-building-columns(solid: true), fa-icon("building-columns"),
```typst #fa-bank()```, fa-bank(), fa-bank(solid: true), fa-icon("bank"),
```typst #fa-institution()```, fa-institution(), fa-institution(solid: true), fa-icon("institution"),
```typst #fa-museum()```, fa-museum(), fa-museum(solid: true), fa-icon("museum"),
```typst #fa-university()```, fa-university(), fa-university(solid: true), fa-icon("university"),
```typst #fa-building-flag()```, fa-building-flag(), fa-building-flag(solid: true), fa-icon("building-flag"),
```typst #fa-building-lock()```, fa-building-lock(), fa-building-lock(solid: true), fa-icon("building-lock"),
```typst #fa-building-magnifying-glass()```, fa-building-magnifying-glass(), fa-building-magnifying-glass(solid: true), fa-icon("building-magnifying-glass"),
```typst #fa-building-memo()```, fa-building-memo(), fa-building-memo(solid: true), fa-icon("building-memo"),
```typst #fa-building-ngo()```, fa-building-ngo(), fa-building-ngo(solid: true), fa-icon("building-ngo"),
```typst #fa-buildings()```, fa-buildings(), fa-buildings(solid: true), fa-icon("buildings"),
```typst #fa-building-shield()```, fa-building-shield(), fa-building-shield(solid: true), fa-icon("building-shield"),
```typst #fa-building-un()```, fa-building-un(), fa-building-un(solid: true), fa-icon("building-un"),
```typst #fa-building-user()```, fa-building-user(), fa-building-user(solid: true), fa-icon("building-user"),
```typst #fa-building-wheat()```, fa-building-wheat(), fa-building-wheat(solid: true), fa-icon("building-wheat"),
```typst #fa-bulldozer()```, fa-bulldozer(), fa-bulldozer(solid: true), fa-icon("bulldozer"),
```typst #fa-bullhorn()```, fa-bullhorn(), fa-bullhorn(solid: true), fa-icon("bullhorn"),
```typst #fa-bullseye()```, fa-bullseye(), fa-bullseye(solid: true), fa-icon("bullseye"),
```typst #fa-bullseye-arrow()```, fa-bullseye-arrow(), fa-bullseye-arrow(solid: true), fa-icon("bullseye-arrow"),
```typst #fa-bullseye-pointer()```, fa-bullseye-pointer(), fa-bullseye-pointer(solid: true), fa-icon("bullseye-pointer"),
```typst #fa-buoy()```, fa-buoy(), fa-buoy(solid: true), fa-icon("buoy"),
```typst #fa-buoy-mooring()```, fa-buoy-mooring(), fa-buoy-mooring(solid: true), fa-icon("buoy-mooring"),
```typst #fa-burger()```, fa-burger(), fa-burger(solid: true), fa-icon("burger"),
```typst #fa-hamburger()```, fa-hamburger(), fa-hamburger(solid: true), fa-icon("hamburger"),
```typst #fa-burger-cheese()```, fa-burger-cheese(), fa-burger-cheese(solid: true), fa-icon("burger-cheese"),
```typst #fa-cheeseburger()```, fa-cheeseburger(), fa-cheeseburger(solid: true), fa-icon("cheeseburger"),
```typst #fa-burger-fries()```, fa-burger-fries(), fa-burger-fries(solid: true), fa-icon("burger-fries"),
```typst #fa-burger-glass()```, fa-burger-glass(), fa-burger-glass(solid: true), fa-icon("burger-glass"),
```typst #fa-burger-lettuce()```, fa-burger-lettuce(), fa-burger-lettuce(solid: true), fa-icon("burger-lettuce"),
```typst #fa-burger-soda()```, fa-burger-soda(), fa-burger-soda(solid: true), fa-icon("burger-soda"),
```typst #fa-buromobelexperte()```, fa-buromobelexperte(), fa-buromobelexperte(solid: true), fa-icon("buromobelexperte"),
```typst #fa-burrito()```, fa-burrito(), fa-burrito(solid: true), fa-icon("burrito"),
```typst #fa-burst()```, fa-burst(), fa-burst(solid: true), fa-icon("burst"),
```typst #fa-bus()```, fa-bus(), fa-bus(solid: true), fa-icon("bus"),
```typst #fa-business-time()```, fa-business-time(), fa-business-time(solid: true), fa-icon("business-time"),
```typst #fa-briefcase-clock()```, fa-briefcase-clock(), fa-briefcase-clock(solid: true), fa-icon("briefcase-clock"),
```typst #fa-bus-school()```, fa-bus-school(), fa-bus-school(solid: true), fa-icon("bus-school"),
```typst #fa-bus-simple()```, fa-bus-simple(), fa-bus-simple(solid: true), fa-icon("bus-simple"),
```typst #fa-bus-alt()```, fa-bus-alt(), fa-bus-alt(solid: true), fa-icon("bus-alt"),
```typst #fa-butter()```, fa-butter(), fa-butter(solid: true), fa-icon("butter"),
```typst #fa-buy-n-large()```, fa-buy-n-large(), fa-buy-n-large(solid: true), fa-icon("buy-n-large"),
```typst #fa-buysellads()```, fa-buysellads(), fa-buysellads(solid: true), fa-icon("buysellads"),
```typst #fa-c()```, fa-c(), fa-c(solid: true), fa-icon("c"),
```typst #fa-cabin()```, fa-cabin(), fa-cabin(solid: true), fa-icon("cabin"),
```typst #fa-cabinet-filing()```, fa-cabinet-filing(), fa-cabinet-filing(solid: true), fa-icon("cabinet-filing"),
```typst #fa-cable-car()```, fa-cable-car(), fa-cable-car(solid: true), fa-icon("cable-car"),
```typst #fa-tram()```, fa-tram(), fa-tram(solid: true), fa-icon("tram"),
```typst #fa-cactus()```, fa-cactus(), fa-cactus(solid: true), fa-icon("cactus"),
```typst #fa-caduceus()```, fa-caduceus(), fa-caduceus(solid: true), fa-icon("caduceus"),
```typst #fa-cake-candles()```, fa-cake-candles(), fa-cake-candles(solid: true), fa-icon("cake-candles"),
```typst #fa-birthday-cake()```, fa-birthday-cake(), fa-birthday-cake(solid: true), fa-icon("birthday-cake"),
```typst #fa-cake()```, fa-cake(), fa-cake(solid: true), fa-icon("cake"),
```typst #fa-cake-slice()```, fa-cake-slice(), fa-cake-slice(solid: true), fa-icon("cake-slice"),
```typst #fa-shortcake()```, fa-shortcake(), fa-shortcake(solid: true), fa-icon("shortcake"),
```typst #fa-calculator()```, fa-calculator(), fa-calculator(solid: true), fa-icon("calculator"),
```typst #fa-calculator-simple()```, fa-calculator-simple(), fa-calculator-simple(solid: true), fa-icon("calculator-simple"),
```typst #fa-calculator-alt()```, fa-calculator-alt(), fa-calculator-alt(solid: true), fa-icon("calculator-alt"),
```typst #fa-calendar()```, fa-calendar(), fa-calendar(solid: true), fa-icon("calendar"),
```typst #fa-calendar-arrow-down()```, fa-calendar-arrow-down(), fa-calendar-arrow-down(solid: true), fa-icon("calendar-arrow-down"),
```typst #fa-calendar-download()```, fa-calendar-download(), fa-calendar-download(solid: true), fa-icon("calendar-download"),
```typst #fa-calendar-arrow-up()```, fa-calendar-arrow-up(), fa-calendar-arrow-up(solid: true), fa-icon("calendar-arrow-up"),
```typst #fa-calendar-upload()```, fa-calendar-upload(), fa-calendar-upload(solid: true), fa-icon("calendar-upload"),
```typst #fa-calendar-check()```, fa-calendar-check(), fa-calendar-check(solid: true), fa-icon("calendar-check"),
```typst #fa-calendar-circle-exclamation()```, fa-calendar-circle-exclamation(), fa-calendar-circle-exclamation(solid: true), fa-icon("calendar-circle-exclamation"),
```typst #fa-calendar-circle-minus()```, fa-calendar-circle-minus(), fa-calendar-circle-minus(solid: true), fa-icon("calendar-circle-minus"),
```typst #fa-calendar-circle-plus()```, fa-calendar-circle-plus(), fa-calendar-circle-plus(solid: true), fa-icon("calendar-circle-plus"),
```typst #fa-calendar-circle-user()```, fa-calendar-circle-user(), fa-calendar-circle-user(solid: true), fa-icon("calendar-circle-user"),
```typst #fa-calendar-clock()```, fa-calendar-clock(), fa-calendar-clock(solid: true), fa-icon("calendar-clock"),
```typst #fa-calendar-time()```, fa-calendar-time(), fa-calendar-time(solid: true), fa-icon("calendar-time"),
```typst #fa-calendar-day()```, fa-calendar-day(), fa-calendar-day(solid: true), fa-icon("calendar-day"),
```typst #fa-calendar-days()```, fa-calendar-days(), fa-calendar-days(solid: true), fa-icon("calendar-days"),
```typst #fa-calendar-alt()```, fa-calendar-alt(), fa-calendar-alt(solid: true), fa-icon("calendar-alt"),
```typst #fa-calendar-exclamation()```, fa-calendar-exclamation(), fa-calendar-exclamation(solid: true), fa-icon("calendar-exclamation"),
```typst #fa-calendar-heart()```, fa-calendar-heart(), fa-calendar-heart(solid: true), fa-icon("calendar-heart"),
```typst #fa-calendar-image()```, fa-calendar-image(), fa-calendar-image(solid: true), fa-icon("calendar-image"),
```typst #fa-calendar-lines()```, fa-calendar-lines(), fa-calendar-lines(solid: true), fa-icon("calendar-lines"),
```typst #fa-calendar-note()```, fa-calendar-note(), fa-calendar-note(solid: true), fa-icon("calendar-note"),
```typst #fa-calendar-lines-pen()```, fa-calendar-lines-pen(), fa-calendar-lines-pen(solid: true), fa-icon("calendar-lines-pen"),
```typst #fa-calendar-minus()```, fa-calendar-minus(), fa-calendar-minus(solid: true), fa-icon("calendar-minus"),
```typst #fa-calendar-pen()```, fa-calendar-pen(), fa-calendar-pen(solid: true), fa-icon("calendar-pen"),
```typst #fa-calendar-edit()```, fa-calendar-edit(), fa-calendar-edit(solid: true), fa-icon("calendar-edit"),
```typst #fa-calendar-plus()```, fa-calendar-plus(), fa-calendar-plus(solid: true), fa-icon("calendar-plus"),
```typst #fa-calendar-range()```, fa-calendar-range(), fa-calendar-range(solid: true), fa-icon("calendar-range"),
```typst #fa-calendars()```, fa-calendars(), fa-calendars(solid: true), fa-icon("calendars"),
```typst #fa-calendar-star()```, fa-calendar-star(), fa-calendar-star(solid: true), fa-icon("calendar-star"),
```typst #fa-calendar-users()```, fa-calendar-users(), fa-calendar-users(solid: true), fa-icon("calendar-users"),
```typst #fa-calendar-week()```, fa-calendar-week(), fa-calendar-week(solid: true), fa-icon("calendar-week"),
```typst #fa-calendar-xmark()```, fa-calendar-xmark(), fa-calendar-xmark(solid: true), fa-icon("calendar-xmark"),
```typst #fa-calendar-times()```, fa-calendar-times(), fa-calendar-times(solid: true), fa-icon("calendar-times"),
```typst #fa-camcorder()```, fa-camcorder(), fa-camcorder(solid: true), fa-icon("camcorder"),
```typst #fa-video-handheld()```, fa-video-handheld(), fa-video-handheld(solid: true), fa-icon("video-handheld"),
```typst #fa-camera()```, fa-camera(), fa-camera(solid: true), fa-icon("camera"),
```typst #fa-camera-alt()```, fa-camera-alt(), fa-camera-alt(solid: true), fa-icon("camera-alt"),
```typst #fa-camera-cctv()```, fa-camera-cctv(), fa-camera-cctv(solid: true), fa-icon("camera-cctv"),
```typst #fa-cctv()```, fa-cctv(), fa-cctv(solid: true), fa-icon("cctv"),
```typst #fa-camera-movie()```, fa-camera-movie(), fa-camera-movie(solid: true), fa-icon("camera-movie"),
```typst #fa-camera-polaroid()```, fa-camera-polaroid(), fa-camera-polaroid(solid: true), fa-icon("camera-polaroid"),
```typst #fa-camera-retro()```, fa-camera-retro(), fa-camera-retro(solid: true), fa-icon("camera-retro"),
```typst #fa-camera-rotate()```, fa-camera-rotate(), fa-camera-rotate(solid: true), fa-icon("camera-rotate"),
```typst #fa-camera-security()```, fa-camera-security(), fa-camera-security(solid: true), fa-icon("camera-security"),
```typst #fa-camera-home()```, fa-camera-home(), fa-camera-home(solid: true), fa-icon("camera-home"),
```typst #fa-camera-slash()```, fa-camera-slash(), fa-camera-slash(solid: true), fa-icon("camera-slash"),
```typst #fa-camera-viewfinder()```, fa-camera-viewfinder(), fa-camera-viewfinder(solid: true), fa-icon("camera-viewfinder"),
```typst #fa-screenshot()```, fa-screenshot(), fa-screenshot(solid: true), fa-icon("screenshot"),
```typst #fa-camera-web()```, fa-camera-web(), fa-camera-web(solid: true), fa-icon("camera-web"),
```typst #fa-webcam()```, fa-webcam(), fa-webcam(solid: true), fa-icon("webcam"),
```typst #fa-camera-web-slash()```, fa-camera-web-slash(), fa-camera-web-slash(solid: true), fa-icon("camera-web-slash"),
```typst #fa-webcam-slash()```, fa-webcam-slash(), fa-webcam-slash(solid: true), fa-icon("webcam-slash"),
```typst #fa-campfire()```, fa-campfire(), fa-campfire(solid: true), fa-icon("campfire"),
```typst #fa-campground()```, fa-campground(), fa-campground(solid: true), fa-icon("campground"),
```typst #fa-canadian-maple-leaf()```, fa-canadian-maple-leaf(), fa-canadian-maple-leaf(solid: true), fa-icon("canadian-maple-leaf"),
```typst #fa-candle-holder()```, fa-candle-holder(), fa-candle-holder(solid: true), fa-icon("candle-holder"),
```typst #fa-candy()```, fa-candy(), fa-candy(solid: true), fa-icon("candy"),
```typst #fa-candy-bar()```, fa-candy-bar(), fa-candy-bar(solid: true), fa-icon("candy-bar"),
```typst #fa-chocolate-bar()```, fa-chocolate-bar(), fa-chocolate-bar(solid: true), fa-icon("chocolate-bar"),
```typst #fa-candy-cane()```, fa-candy-cane(), fa-candy-cane(solid: true), fa-icon("candy-cane"),
```typst #fa-candy-corn()```, fa-candy-corn(), fa-candy-corn(solid: true), fa-icon("candy-corn"),
```typst #fa-can-food()```, fa-can-food(), fa-can-food(solid: true), fa-icon("can-food"),
```typst #fa-cannabis()```, fa-cannabis(), fa-cannabis(solid: true), fa-icon("cannabis"),
```typst #fa-cannon()```, fa-cannon(), fa-cannon(solid: true), fa-icon("cannon"),
```typst #fa-capsules()```, fa-capsules(), fa-capsules(solid: true), fa-icon("capsules"),
```typst #fa-car()```, fa-car(), fa-car(solid: true), fa-icon("car"),
```typst #fa-automobile()```, fa-automobile(), fa-automobile(solid: true), fa-icon("automobile"),
```typst #fa-caravan()```, fa-caravan(), fa-caravan(solid: true), fa-icon("caravan"),
```typst #fa-caravan-simple()```, fa-caravan-simple(), fa-caravan-simple(solid: true), fa-icon("caravan-simple"),
```typst #fa-caravan-alt()```, fa-caravan-alt(), fa-caravan-alt(solid: true), fa-icon("caravan-alt"),
```typst #fa-car-battery()```, fa-car-battery(), fa-car-battery(solid: true), fa-icon("car-battery"),
```typst #fa-battery-car()```, fa-battery-car(), fa-battery-car(solid: true), fa-icon("battery-car"),
```typst #fa-car-bolt()```, fa-car-bolt(), fa-car-bolt(solid: true), fa-icon("car-bolt"),
```typst #fa-car-building()```, fa-car-building(), fa-car-building(solid: true), fa-icon("car-building"),
```typst #fa-car-bump()```, fa-car-bump(), fa-car-bump(solid: true), fa-icon("car-bump"),
```typst #fa-car-burst()```, fa-car-burst(), fa-car-burst(solid: true), fa-icon("car-burst"),
```typst #fa-car-crash()```, fa-car-crash(), fa-car-crash(solid: true), fa-icon("car-crash"),
```typst #fa-car-bus()```, fa-car-bus(), fa-car-bus(solid: true), fa-icon("car-bus"),
```typst #fa-car-circle-bolt()```, fa-car-circle-bolt(), fa-car-circle-bolt(solid: true), fa-icon("car-circle-bolt"),
```typst #fa-card-club()```, fa-card-club(), fa-card-club(solid: true), fa-icon("card-club"),
```typst #fa-card-diamond()```, fa-card-diamond(), fa-card-diamond(solid: true), fa-icon("card-diamond"),
```typst #fa-card-heart()```, fa-card-heart(), fa-card-heart(solid: true), fa-icon("card-heart"),
```typst #fa-cards()```, fa-cards(), fa-cards(solid: true), fa-icon("cards"),
```typst #fa-cards-blank()```, fa-cards-blank(), fa-cards-blank(solid: true), fa-icon("cards-blank"),
```typst #fa-card-spade()```, fa-card-spade(), fa-card-spade(solid: true), fa-icon("card-spade"),
```typst #fa-caret-down()```, fa-caret-down(), fa-caret-down(solid: true), fa-icon("caret-down"),
```typst #fa-caret-left()```, fa-caret-left(), fa-caret-left(solid: true), fa-icon("caret-left"),
```typst #fa-caret-right()```, fa-caret-right(), fa-caret-right(solid: true), fa-icon("caret-right"),
```typst #fa-caret-up()```, fa-caret-up(), fa-caret-up(solid: true), fa-icon("caret-up"),
```typst #fa-car-garage()```, fa-car-garage(), fa-car-garage(solid: true), fa-icon("car-garage"),
```typst #fa-car-mirrors()```, fa-car-mirrors(), fa-car-mirrors(solid: true), fa-icon("car-mirrors"),
```typst #fa-car-on()```, fa-car-on(), fa-car-on(solid: true), fa-icon("car-on"),
```typst #fa-car-rear()```, fa-car-rear(), fa-car-rear(solid: true), fa-icon("car-rear"),
```typst #fa-car-alt()```, fa-car-alt(), fa-car-alt(solid: true), fa-icon("car-alt"),
```typst #fa-carrot()```, fa-carrot(), fa-carrot(solid: true), fa-icon("carrot"),
```typst #fa-cars()```, fa-cars(), fa-cars(solid: true), fa-icon("cars"),
```typst #fa-car-side()```, fa-car-side(), fa-car-side(solid: true), fa-icon("car-side"),
```typst #fa-car-side-bolt()```, fa-car-side-bolt(), fa-car-side-bolt(solid: true), fa-icon("car-side-bolt"),
```typst #fa-cart-arrow-down()```, fa-cart-arrow-down(), fa-cart-arrow-down(solid: true), fa-icon("cart-arrow-down"),
```typst #fa-cart-arrow-up()```, fa-cart-arrow-up(), fa-cart-arrow-up(solid: true), fa-icon("cart-arrow-up"),
```typst #fa-cart-circle-arrow-down()```, fa-cart-circle-arrow-down(), fa-cart-circle-arrow-down(solid: true), fa-icon("cart-circle-arrow-down"),
```typst #fa-cart-circle-arrow-up()```, fa-cart-circle-arrow-up(), fa-cart-circle-arrow-up(solid: true), fa-icon("cart-circle-arrow-up"),
```typst #fa-cart-circle-check()```, fa-cart-circle-check(), fa-cart-circle-check(solid: true), fa-icon("cart-circle-check"),
```typst #fa-cart-circle-exclamation()```, fa-cart-circle-exclamation(), fa-cart-circle-exclamation(solid: true), fa-icon("cart-circle-exclamation"),
```typst #fa-cart-circle-plus()```, fa-cart-circle-plus(), fa-cart-circle-plus(solid: true), fa-icon("cart-circle-plus"),
```typst #fa-cart-circle-xmark()```, fa-cart-circle-xmark(), fa-cart-circle-xmark(solid: true), fa-icon("cart-circle-xmark"),
```typst #fa-cart-flatbed()```, fa-cart-flatbed(), fa-cart-flatbed(solid: true), fa-icon("cart-flatbed"),
```typst #fa-dolly-flatbed()```, fa-dolly-flatbed(), fa-dolly-flatbed(solid: true), fa-icon("dolly-flatbed"),
```typst #fa-cart-flatbed-boxes()```, fa-cart-flatbed-boxes(), fa-cart-flatbed-boxes(solid: true), fa-icon("cart-flatbed-boxes"),
```typst #fa-dolly-flatbed-alt()```, fa-dolly-flatbed-alt(), fa-dolly-flatbed-alt(solid: true), fa-icon("dolly-flatbed-alt"),
```typst #fa-cart-flatbed-empty()```, fa-cart-flatbed-empty(), fa-cart-flatbed-empty(solid: true), fa-icon("cart-flatbed-empty"),
```typst #fa-dolly-flatbed-empty()```, fa-dolly-flatbed-empty(), fa-dolly-flatbed-empty(solid: true), fa-icon("dolly-flatbed-empty"),
```typst #fa-cart-flatbed-suitcase()```, fa-cart-flatbed-suitcase(), fa-cart-flatbed-suitcase(solid: true), fa-icon("cart-flatbed-suitcase"),
```typst #fa-luggage-cart()```, fa-luggage-cart(), fa-luggage-cart(solid: true), fa-icon("luggage-cart"),
```typst #fa-car-tilt()```, fa-car-tilt(), fa-car-tilt(solid: true), fa-icon("car-tilt"),
```typst #fa-cart-minus()```, fa-cart-minus(), fa-cart-minus(solid: true), fa-icon("cart-minus"),
```typst #fa-cart-plus()```, fa-cart-plus(), fa-cart-plus(solid: true), fa-icon("cart-plus"),
```typst #fa-cart-shopping()```, fa-cart-shopping(), fa-cart-shopping(solid: true), fa-icon("cart-shopping"),
```typst #fa-shopping-cart()```, fa-shopping-cart(), fa-shopping-cart(solid: true), fa-icon("shopping-cart"),
```typst #fa-cart-shopping-fast()```, fa-cart-shopping-fast(), fa-cart-shopping-fast(solid: true), fa-icon("cart-shopping-fast"),
```typst #fa-car-tunnel()```, fa-car-tunnel(), fa-car-tunnel(solid: true), fa-icon("car-tunnel"),
```typst #fa-cart-xmark()```, fa-cart-xmark(), fa-cart-xmark(solid: true), fa-icon("cart-xmark"),
```typst #fa-car-wash()```, fa-car-wash(), fa-car-wash(solid: true), fa-icon("car-wash"),
```typst #fa-car-wrench()```, fa-car-wrench(), fa-car-wrench(solid: true), fa-icon("car-wrench"),
```typst #fa-car-mechanic()```, fa-car-mechanic(), fa-car-mechanic(solid: true), fa-icon("car-mechanic"),
```typst #fa-cash-register()```, fa-cash-register(), fa-cash-register(solid: true), fa-icon("cash-register"),
```typst #fa-cassette-betamax()```, fa-cassette-betamax(), fa-cassette-betamax(solid: true), fa-icon("cassette-betamax"),
```typst #fa-betamax()```, fa-betamax(), fa-betamax(solid: true), fa-icon("betamax"),
```typst #fa-cassette-tape()```, fa-cassette-tape(), fa-cassette-tape(solid: true), fa-icon("cassette-tape"),
```typst #fa-cassette-vhs()```, fa-cassette-vhs(), fa-cassette-vhs(solid: true), fa-icon("cassette-vhs"),
```typst #fa-vhs()```, fa-vhs(), fa-vhs(solid: true), fa-icon("vhs"),
```typst #fa-castle()```, fa-castle(), fa-castle(solid: true), fa-icon("castle"),
```typst #fa-cat()```, fa-cat(), fa-cat(solid: true), fa-icon("cat"),
```typst #fa-cat-space()```, fa-cat-space(), fa-cat-space(solid: true), fa-icon("cat-space"),
```typst #fa-cauldron()```, fa-cauldron(), fa-cauldron(solid: true), fa-icon("cauldron"),
```typst #fa-cc-amazon-pay()```, fa-cc-amazon-pay(), fa-cc-amazon-pay(solid: true), fa-icon("cc-amazon-pay"),
```typst #fa-cc-amex()```, fa-cc-amex(), fa-cc-amex(solid: true), fa-icon("cc-amex"),
```typst #fa-cc-apple-pay()```, fa-cc-apple-pay(), fa-cc-apple-pay(solid: true), fa-icon("cc-apple-pay"),
```typst #fa-cc-diners-club()```, fa-cc-diners-club(), fa-cc-diners-club(solid: true), fa-icon("cc-diners-club"),
```typst #fa-cc-discover()```, fa-cc-discover(), fa-cc-discover(solid: true), fa-icon("cc-discover"),
```typst #fa-cc-jcb()```, fa-cc-jcb(), fa-cc-jcb(solid: true), fa-icon("cc-jcb"),
```typst #fa-cc-mastercard()```, fa-cc-mastercard(), fa-cc-mastercard(solid: true), fa-icon("cc-mastercard"),
```typst #fa-cc-paypal()```, fa-cc-paypal(), fa-cc-paypal(solid: true), fa-icon("cc-paypal"),
```typst #fa-cc-stripe()```, fa-cc-stripe(), fa-cc-stripe(solid: true), fa-icon("cc-stripe"),
```typst #fa-cc-visa()```, fa-cc-visa(), fa-cc-visa(solid: true), fa-icon("cc-visa"),
```typst #fa-cedi-sign()```, fa-cedi-sign(), fa-cedi-sign(solid: true), fa-icon("cedi-sign"),
```typst #fa-centercode()```, fa-centercode(), fa-centercode(solid: true), fa-icon("centercode"),
```typst #fa-centos()```, fa-centos(), fa-centos(solid: true), fa-icon("centos"),
```typst #fa-cent-sign()```, fa-cent-sign(), fa-cent-sign(solid: true), fa-icon("cent-sign"),
```typst #fa-certificate()```, fa-certificate(), fa-certificate(solid: true), fa-icon("certificate"),
```typst #fa-chair()```, fa-chair(), fa-chair(solid: true), fa-icon("chair"),
```typst #fa-chair-office()```, fa-chair-office(), fa-chair-office(solid: true), fa-icon("chair-office"),
```typst #fa-chalkboard()```, fa-chalkboard(), fa-chalkboard(solid: true), fa-icon("chalkboard"),
```typst #fa-blackboard()```, fa-blackboard(), fa-blackboard(solid: true), fa-icon("blackboard"),
```typst #fa-chalkboard-user()```, fa-chalkboard-user(), fa-chalkboard-user(solid: true), fa-icon("chalkboard-user"),
```typst #fa-chalkboard-teacher()```, fa-chalkboard-teacher(), fa-chalkboard-teacher(solid: true), fa-icon("chalkboard-teacher"),
```typst #fa-champagne-glass()```, fa-champagne-glass(), fa-champagne-glass(solid: true), fa-icon("champagne-glass"),
```typst #fa-glass-champagne()```, fa-glass-champagne(), fa-glass-champagne(solid: true), fa-icon("glass-champagne"),
```typst #fa-champagne-glasses()```, fa-champagne-glasses(), fa-champagne-glasses(solid: true), fa-icon("champagne-glasses"),
```typst #fa-glass-cheers()```, fa-glass-cheers(), fa-glass-cheers(solid: true), fa-icon("glass-cheers"),
```typst #fa-charging-station()```, fa-charging-station(), fa-charging-station(solid: true), fa-icon("charging-station"),
```typst #fa-chart-area()```, fa-chart-area(), fa-chart-area(solid: true), fa-icon("chart-area"),
```typst #fa-area-chart()```, fa-area-chart(), fa-area-chart(solid: true), fa-icon("area-chart"),
```typst #fa-chart-bar()```, fa-chart-bar(), fa-chart-bar(solid: true), fa-icon("chart-bar"),
```typst #fa-bar-chart()```, fa-bar-chart(), fa-bar-chart(solid: true), fa-icon("bar-chart"),
```typst #fa-chart-bullet()```, fa-chart-bullet(), fa-chart-bullet(solid: true), fa-icon("chart-bullet"),
```typst #fa-chart-candlestick()```, fa-chart-candlestick(), fa-chart-candlestick(solid: true), fa-icon("chart-candlestick"),
```typst #fa-chart-column()```, fa-chart-column(), fa-chart-column(solid: true), fa-icon("chart-column"),
```typst #fa-chart-gantt()```, fa-chart-gantt(), fa-chart-gantt(solid: true), fa-icon("chart-gantt"),
```typst #fa-chart-kanban()```, fa-chart-kanban(), fa-chart-kanban(solid: true), fa-icon("chart-kanban"),
```typst #fa-chart-line()```, fa-chart-line(), fa-chart-line(solid: true), fa-icon("chart-line"),
```typst #fa-line-chart()```, fa-line-chart(), fa-line-chart(solid: true), fa-icon("line-chart"),
```typst #fa-chart-line-down()```, fa-chart-line-down(), fa-chart-line-down(solid: true), fa-icon("chart-line-down"),
```typst #fa-chart-line-up()```, fa-chart-line-up(), fa-chart-line-up(solid: true), fa-icon("chart-line-up"),
```typst #fa-chart-line-up-down()```, fa-chart-line-up-down(), fa-chart-line-up-down(solid: true), fa-icon("chart-line-up-down"),
```typst #fa-chart-mixed()```, fa-chart-mixed(), fa-chart-mixed(solid: true), fa-icon("chart-mixed"),
```typst #fa-analytics()```, fa-analytics(), fa-analytics(solid: true), fa-icon("analytics"),
```typst #fa-chart-mixed-up-circle-currency()```, fa-chart-mixed-up-circle-currency(), fa-chart-mixed-up-circle-currency(solid: true), fa-icon("chart-mixed-up-circle-currency"),
```typst #fa-chart-mixed-up-circle-dollar()```, fa-chart-mixed-up-circle-dollar(), fa-chart-mixed-up-circle-dollar(solid: true), fa-icon("chart-mixed-up-circle-dollar"),
```typst #fa-chart-network()```, fa-chart-network(), fa-chart-network(solid: true), fa-icon("chart-network"),
```typst #fa-chart-pie()```, fa-chart-pie(), fa-chart-pie(solid: true), fa-icon("chart-pie"),
```typst #fa-pie-chart()```, fa-pie-chart(), fa-pie-chart(solid: true), fa-icon("pie-chart"),
```typst #fa-chart-pie-simple()```, fa-chart-pie-simple(), fa-chart-pie-simple(solid: true), fa-icon("chart-pie-simple"),
```typst #fa-chart-pie-alt()```, fa-chart-pie-alt(), fa-chart-pie-alt(solid: true), fa-icon("chart-pie-alt"),
```typst #fa-chart-pie-simple-circle-currency()```, fa-chart-pie-simple-circle-currency(), fa-chart-pie-simple-circle-currency(solid: true), fa-icon("chart-pie-simple-circle-currency"),
```typst #fa-chart-pie-simple-circle-dollar()```, fa-chart-pie-simple-circle-dollar(), fa-chart-pie-simple-circle-dollar(solid: true), fa-icon("chart-pie-simple-circle-dollar"),
```typst #fa-chart-pyramid()```, fa-chart-pyramid(), fa-chart-pyramid(solid: true), fa-icon("chart-pyramid"),
```typst #fa-chart-radar()```, fa-chart-radar(), fa-chart-radar(solid: true), fa-icon("chart-radar"),
```typst #fa-chart-scatter()```, fa-chart-scatter(), fa-chart-scatter(solid: true), fa-icon("chart-scatter"),
```typst #fa-chart-scatter-3d()```, fa-chart-scatter-3d(), fa-chart-scatter-3d(solid: true), fa-icon("chart-scatter-3d"),
```typst #fa-chart-scatter-bubble()```, fa-chart-scatter-bubble(), fa-chart-scatter-bubble(solid: true), fa-icon("chart-scatter-bubble"),
```typst #fa-chart-simple()```, fa-chart-simple(), fa-chart-simple(solid: true), fa-icon("chart-simple"),
```typst #fa-chart-simple-horizontal()```, fa-chart-simple-horizontal(), fa-chart-simple-horizontal(solid: true), fa-icon("chart-simple-horizontal"),
```typst #fa-chart-tree-map()```, fa-chart-tree-map(), fa-chart-tree-map(solid: true), fa-icon("chart-tree-map"),
```typst #fa-chart-user()```, fa-chart-user(), fa-chart-user(solid: true), fa-icon("chart-user"),
```typst #fa-user-chart()```, fa-user-chart(), fa-user-chart(solid: true), fa-icon("user-chart"),
```typst #fa-chart-waterfall()```, fa-chart-waterfall(), fa-chart-waterfall(solid: true), fa-icon("chart-waterfall"),
```typst #fa-check()```, fa-check(), fa-check(solid: true), fa-icon("check"),
```typst #fa-check-double()```, fa-check-double(), fa-check-double(solid: true), fa-icon("check-double"),
```typst #fa-check-to-slot()```, fa-check-to-slot(), fa-check-to-slot(solid: true), fa-icon("check-to-slot"),
```typst #fa-vote-yea()```, fa-vote-yea(), fa-vote-yea(solid: true), fa-icon("vote-yea"),
```typst #fa-cheese()```, fa-cheese(), fa-cheese(solid: true), fa-icon("cheese"),
```typst #fa-cheese-swiss()```, fa-cheese-swiss(), fa-cheese-swiss(solid: true), fa-icon("cheese-swiss"),
```typst #fa-cherries()```, fa-cherries(), fa-cherries(solid: true), fa-icon("cherries"),
```typst #fa-chess()```, fa-chess(), fa-chess(solid: true), fa-icon("chess"),
```typst #fa-chess-bishop()```, fa-chess-bishop(), fa-chess-bishop(solid: true), fa-icon("chess-bishop"),
```typst #fa-chess-bishop-piece()```, fa-chess-bishop-piece(), fa-chess-bishop-piece(solid: true), fa-icon("chess-bishop-piece"),
```typst #fa-chess-bishop-alt()```, fa-chess-bishop-alt(), fa-chess-bishop-alt(solid: true), fa-icon("chess-bishop-alt"),
```typst #fa-chess-board()```, fa-chess-board(), fa-chess-board(solid: true), fa-icon("chess-board"),
```typst #fa-chess-clock()```, fa-chess-clock(), fa-chess-clock(solid: true), fa-icon("chess-clock"),
```typst #fa-chess-clock-flip()```, fa-chess-clock-flip(), fa-chess-clock-flip(solid: true), fa-icon("chess-clock-flip"),
```typst #fa-chess-clock-alt()```, fa-chess-clock-alt(), fa-chess-clock-alt(solid: true), fa-icon("chess-clock-alt"),
```typst #fa-chess-king()```, fa-chess-king(), fa-chess-king(solid: true), fa-icon("chess-king"),
```typst #fa-chess-king-piece()```, fa-chess-king-piece(), fa-chess-king-piece(solid: true), fa-icon("chess-king-piece"),
```typst #fa-chess-king-alt()```, fa-chess-king-alt(), fa-chess-king-alt(solid: true), fa-icon("chess-king-alt"),
```typst #fa-chess-knight()```, fa-chess-knight(), fa-chess-knight(solid: true), fa-icon("chess-knight"),
```typst #fa-chess-knight-piece()```, fa-chess-knight-piece(), fa-chess-knight-piece(solid: true), fa-icon("chess-knight-piece"),
```typst #fa-chess-knight-alt()```, fa-chess-knight-alt(), fa-chess-knight-alt(solid: true), fa-icon("chess-knight-alt"),
```typst #fa-chess-pawn()```, fa-chess-pawn(), fa-chess-pawn(solid: true), fa-icon("chess-pawn"),
```typst #fa-chess-pawn-piece()```, fa-chess-pawn-piece(), fa-chess-pawn-piece(solid: true), fa-icon("chess-pawn-piece"),
```typst #fa-chess-pawn-alt()```, fa-chess-pawn-alt(), fa-chess-pawn-alt(solid: true), fa-icon("chess-pawn-alt"),
```typst #fa-chess-queen()```, fa-chess-queen(), fa-chess-queen(solid: true), fa-icon("chess-queen"),
```typst #fa-chess-queen-piece()```, fa-chess-queen-piece(), fa-chess-queen-piece(solid: true), fa-icon("chess-queen-piece"),
```typst #fa-chess-queen-alt()```, fa-chess-queen-alt(), fa-chess-queen-alt(solid: true), fa-icon("chess-queen-alt"),
```typst #fa-chess-rook()```, fa-chess-rook(), fa-chess-rook(solid: true), fa-icon("chess-rook"),
```typst #fa-chess-rook-piece()```, fa-chess-rook-piece(), fa-chess-rook-piece(solid: true), fa-icon("chess-rook-piece"),
```typst #fa-chess-rook-alt()```, fa-chess-rook-alt(), fa-chess-rook-alt(solid: true), fa-icon("chess-rook-alt"),
```typst #fa-chestnut()```, fa-chestnut(), fa-chestnut(solid: true), fa-icon("chestnut"),
```typst #fa-chevron-down()```, fa-chevron-down(), fa-chevron-down(solid: true), fa-icon("chevron-down"),
```typst #fa-chevron-left()```, fa-chevron-left(), fa-chevron-left(solid: true), fa-icon("chevron-left"),
```typst #fa-chevron-right()```, fa-chevron-right(), fa-chevron-right(solid: true), fa-icon("chevron-right"),
```typst #fa-chevrons-down()```, fa-chevrons-down(), fa-chevrons-down(solid: true), fa-icon("chevrons-down"),
```typst #fa-chevron-double-down()```, fa-chevron-double-down(), fa-chevron-double-down(solid: true), fa-icon("chevron-double-down"),
```typst #fa-chevrons-left()```, fa-chevrons-left(), fa-chevrons-left(solid: true), fa-icon("chevrons-left"),
```typst #fa-chevron-double-left()```, fa-chevron-double-left(), fa-chevron-double-left(solid: true), fa-icon("chevron-double-left"),
```typst #fa-chevrons-right()```, fa-chevrons-right(), fa-chevrons-right(solid: true), fa-icon("chevrons-right"),
```typst #fa-chevron-double-right()```, fa-chevron-double-right(), fa-chevron-double-right(solid: true), fa-icon("chevron-double-right"),
```typst #fa-chevrons-up()```, fa-chevrons-up(), fa-chevrons-up(solid: true), fa-icon("chevrons-up"),
```typst #fa-chevron-double-up()```, fa-chevron-double-up(), fa-chevron-double-up(solid: true), fa-icon("chevron-double-up"),
```typst #fa-chevron-up()```, fa-chevron-up(), fa-chevron-up(solid: true), fa-icon("chevron-up"),
```typst #fa-chf-sign()```, fa-chf-sign(), fa-chf-sign(solid: true), fa-icon("chf-sign"),
```typst #fa-child()```, fa-child(), fa-child(solid: true), fa-icon("child"),
```typst #fa-child-combatant()```, fa-child-combatant(), fa-child-combatant(solid: true), fa-icon("child-combatant"),
```typst #fa-child-rifle()```, fa-child-rifle(), fa-child-rifle(solid: true), fa-icon("child-rifle"),
```typst #fa-child-dress()```, fa-child-dress(), fa-child-dress(solid: true), fa-icon("child-dress"),
```typst #fa-child-reaching()```, fa-child-reaching(), fa-child-reaching(solid: true), fa-icon("child-reaching"),
```typst #fa-children()```, fa-children(), fa-children(solid: true), fa-icon("children"),
```typst #fa-chimney()```, fa-chimney(), fa-chimney(solid: true), fa-icon("chimney"),
```typst #fa-chopsticks()```, fa-chopsticks(), fa-chopsticks(solid: true), fa-icon("chopsticks"),
```typst #fa-chrome()```, fa-chrome(), fa-chrome(solid: true), fa-icon("chrome"),
```typst #fa-chromecast()```, fa-chromecast(), fa-chromecast(solid: true), fa-icon("chromecast"),
```typst #fa-church()```, fa-church(), fa-church(solid: true), fa-icon("church"),
```typst #fa-circle()```, fa-circle(), fa-circle(solid: true), fa-icon("circle"),
```typst #fa-circle-0()```, fa-circle-0(), fa-circle-0(solid: true), fa-icon("circle-0"),
```typst #fa-circle-1()```, fa-circle-1(), fa-circle-1(solid: true), fa-icon("circle-1"),
```typst #fa-circle-2()```, fa-circle-2(), fa-circle-2(solid: true), fa-icon("circle-2"),
```typst #fa-circle-3()```, fa-circle-3(), fa-circle-3(solid: true), fa-icon("circle-3"),
```typst #fa-circle-4()```, fa-circle-4(), fa-circle-4(solid: true), fa-icon("circle-4"),
```typst #fa-circle-5()```, fa-circle-5(), fa-circle-5(solid: true), fa-icon("circle-5"),
```typst #fa-circle-6()```, fa-circle-6(), fa-circle-6(solid: true), fa-icon("circle-6"),
```typst #fa-circle-7()```, fa-circle-7(), fa-circle-7(solid: true), fa-icon("circle-7"),
```typst #fa-circle-8()```, fa-circle-8(), fa-circle-8(solid: true), fa-icon("circle-8"),
```typst #fa-circle-9()```, fa-circle-9(), fa-circle-9(solid: true), fa-icon("circle-9"),
```typst #fa-circle-a()```, fa-circle-a(), fa-circle-a(solid: true), fa-icon("circle-a"),
```typst #fa-circle-ampersand()```, fa-circle-ampersand(), fa-circle-ampersand(solid: true), fa-icon("circle-ampersand"),
```typst #fa-circle-arrow-down()```, fa-circle-arrow-down(), fa-circle-arrow-down(solid: true), fa-icon("circle-arrow-down"),
```typst #fa-arrow-circle-down()```, fa-arrow-circle-down(), fa-arrow-circle-down(solid: true), fa-icon("arrow-circle-down"),
```typst #fa-circle-arrow-down-left()```, fa-circle-arrow-down-left(), fa-circle-arrow-down-left(solid: true), fa-icon("circle-arrow-down-left"),
```typst #fa-circle-arrow-down-right()```, fa-circle-arrow-down-right(), fa-circle-arrow-down-right(solid: true), fa-icon("circle-arrow-down-right"),
```typst #fa-circle-arrow-left()```, fa-circle-arrow-left(), fa-circle-arrow-left(solid: true), fa-icon("circle-arrow-left"),
```typst #fa-arrow-circle-left()```, fa-arrow-circle-left(), fa-arrow-circle-left(solid: true), fa-icon("arrow-circle-left"),
```typst #fa-circle-arrow-right()```, fa-circle-arrow-right(), fa-circle-arrow-right(solid: true), fa-icon("circle-arrow-right"),
```typst #fa-arrow-circle-right()```, fa-arrow-circle-right(), fa-arrow-circle-right(solid: true), fa-icon("arrow-circle-right"),
```typst #fa-circle-arrow-up()```, fa-circle-arrow-up(), fa-circle-arrow-up(solid: true), fa-icon("circle-arrow-up"),
```typst #fa-arrow-circle-up()```, fa-arrow-circle-up(), fa-arrow-circle-up(solid: true), fa-icon("arrow-circle-up"),
```typst #fa-circle-arrow-up-left()```, fa-circle-arrow-up-left(), fa-circle-arrow-up-left(solid: true), fa-icon("circle-arrow-up-left"),
```typst #fa-circle-arrow-up-right()```, fa-circle-arrow-up-right(), fa-circle-arrow-up-right(solid: true), fa-icon("circle-arrow-up-right"),
```typst #fa-circle-b()```, fa-circle-b(), fa-circle-b(solid: true), fa-icon("circle-b"),
```typst #fa-circle-bolt()```, fa-circle-bolt(), fa-circle-bolt(solid: true), fa-icon("circle-bolt"),
```typst #fa-circle-bookmark()```, fa-circle-bookmark(), fa-circle-bookmark(solid: true), fa-icon("circle-bookmark"),
```typst #fa-bookmark-circle()```, fa-bookmark-circle(), fa-bookmark-circle(solid: true), fa-icon("bookmark-circle"),
```typst #fa-circle-book-open()```, fa-circle-book-open(), fa-circle-book-open(solid: true), fa-icon("circle-book-open"),
```typst #fa-book-circle()```, fa-book-circle(), fa-book-circle(solid: true), fa-icon("book-circle"),
```typst #fa-circle-c()```, fa-circle-c(), fa-circle-c(solid: true), fa-icon("circle-c"),
```typst #fa-circle-calendar()```, fa-circle-calendar(), fa-circle-calendar(solid: true), fa-icon("circle-calendar"),
```typst #fa-calendar-circle()```, fa-calendar-circle(), fa-calendar-circle(solid: true), fa-icon("calendar-circle"),
```typst #fa-circle-camera()```, fa-circle-camera(), fa-circle-camera(solid: true), fa-icon("circle-camera"),
```typst #fa-camera-circle()```, fa-camera-circle(), fa-camera-circle(solid: true), fa-icon("camera-circle"),
```typst #fa-circle-caret-down()```, fa-circle-caret-down(), fa-circle-caret-down(solid: true), fa-icon("circle-caret-down"),
```typst #fa-caret-circle-down()```, fa-caret-circle-down(), fa-caret-circle-down(solid: true), fa-icon("caret-circle-down"),
```typst #fa-circle-caret-left()```, fa-circle-caret-left(), fa-circle-caret-left(solid: true), fa-icon("circle-caret-left"),
```typst #fa-caret-circle-left()```, fa-caret-circle-left(), fa-caret-circle-left(solid: true), fa-icon("caret-circle-left"),
```typst #fa-circle-caret-right()```, fa-circle-caret-right(), fa-circle-caret-right(solid: true), fa-icon("circle-caret-right"),
```typst #fa-caret-circle-right()```, fa-caret-circle-right(), fa-caret-circle-right(solid: true), fa-icon("caret-circle-right"),
```typst #fa-circle-caret-up()```, fa-circle-caret-up(), fa-circle-caret-up(solid: true), fa-icon("circle-caret-up"),
```typst #fa-caret-circle-up()```, fa-caret-circle-up(), fa-caret-circle-up(solid: true), fa-icon("caret-circle-up"),
```typst #fa-circle-check()```, fa-circle-check(), fa-circle-check(solid: true), fa-icon("circle-check"),
```typst #fa-check-circle()```, fa-check-circle(), fa-check-circle(solid: true), fa-icon("check-circle"),
```typst #fa-circle-chevron-down()```, fa-circle-chevron-down(), fa-circle-chevron-down(solid: true), fa-icon("circle-chevron-down"),
```typst #fa-chevron-circle-down()```, fa-chevron-circle-down(), fa-chevron-circle-down(solid: true), fa-icon("chevron-circle-down"),
```typst #fa-circle-chevron-left()```, fa-circle-chevron-left(), fa-circle-chevron-left(solid: true), fa-icon("circle-chevron-left"),
```typst #fa-chevron-circle-left()```, fa-chevron-circle-left(), fa-chevron-circle-left(solid: true), fa-icon("chevron-circle-left"),
```typst #fa-circle-chevron-right()```, fa-circle-chevron-right(), fa-circle-chevron-right(solid: true), fa-icon("circle-chevron-right"),
```typst #fa-chevron-circle-right()```, fa-chevron-circle-right(), fa-chevron-circle-right(solid: true), fa-icon("chevron-circle-right"),
```typst #fa-circle-chevron-up()```, fa-circle-chevron-up(), fa-circle-chevron-up(solid: true), fa-icon("circle-chevron-up"),
```typst #fa-chevron-circle-up()```, fa-chevron-circle-up(), fa-chevron-circle-up(solid: true), fa-icon("chevron-circle-up"),
```typst #fa-circle-d()```, fa-circle-d(), fa-circle-d(solid: true), fa-icon("circle-d"),
```typst #fa-circle-dashed()```, fa-circle-dashed(), fa-circle-dashed(solid: true), fa-icon("circle-dashed"),
```typst #fa-circle-divide()```, fa-circle-divide(), fa-circle-divide(solid: true), fa-icon("circle-divide"),
```typst #fa-circle-dollar()```, fa-circle-dollar(), fa-circle-dollar(solid: true), fa-icon("circle-dollar"),
```typst #fa-dollar-circle()```, fa-dollar-circle(), fa-dollar-circle(solid: true), fa-icon("dollar-circle"),
```typst #fa-usd-circle()```, fa-usd-circle(), fa-usd-circle(solid: true), fa-icon("usd-circle"),
```typst #fa-circle-dollar-to-slot()```, fa-circle-dollar-to-slot(), fa-circle-dollar-to-slot(solid: true), fa-icon("circle-dollar-to-slot"),
```typst #fa-donate()```, fa-donate(), fa-donate(solid: true), fa-icon("donate"),
```typst #fa-circle-dot()```, fa-circle-dot(), fa-circle-dot(solid: true), fa-icon("circle-dot"),
```typst #fa-dot-circle()```, fa-dot-circle(), fa-dot-circle(solid: true), fa-icon("dot-circle"),
```typst #fa-circle-down()```, fa-circle-down(), fa-circle-down(solid: true), fa-icon("circle-down"),
```typst #fa-arrow-alt-circle-down()```, fa-arrow-alt-circle-down(), fa-arrow-alt-circle-down(solid: true), fa-icon("arrow-alt-circle-down"),
```typst #fa-circle-down-left()```, fa-circle-down-left(), fa-circle-down-left(solid: true), fa-icon("circle-down-left"),
```typst #fa-circle-down-right()```, fa-circle-down-right(), fa-circle-down-right(solid: true), fa-icon("circle-down-right"),
```typst #fa-circle-e()```, fa-circle-e(), fa-circle-e(solid: true), fa-icon("circle-e"),
```typst #fa-circle-ellipsis()```, fa-circle-ellipsis(), fa-circle-ellipsis(solid: true), fa-icon("circle-ellipsis"),
```typst #fa-circle-ellipsis-vertical()```, fa-circle-ellipsis-vertical(), fa-circle-ellipsis-vertical(solid: true), fa-icon("circle-ellipsis-vertical"),
```typst #fa-circle-envelope()```, fa-circle-envelope(), fa-circle-envelope(solid: true), fa-icon("circle-envelope"),
```typst #fa-envelope-circle()```, fa-envelope-circle(), fa-envelope-circle(solid: true), fa-icon("envelope-circle"),
```typst #fa-circle-euro()```, fa-circle-euro(), fa-circle-euro(solid: true), fa-icon("circle-euro"),
```typst #fa-circle-exclamation()```, fa-circle-exclamation(), fa-circle-exclamation(solid: true), fa-icon("circle-exclamation"),
```typst #fa-exclamation-circle()```, fa-exclamation-circle(), fa-exclamation-circle(solid: true), fa-icon("exclamation-circle"),
```typst #fa-circle-exclamation-check()```, fa-circle-exclamation-check(), fa-circle-exclamation-check(solid: true), fa-icon("circle-exclamation-check"),
```typst #fa-circle-f()```, fa-circle-f(), fa-circle-f(solid: true), fa-icon("circle-f"),
```typst #fa-circle-g()```, fa-circle-g(), fa-circle-g(solid: true), fa-icon("circle-g"),
```typst #fa-circle-gf()```, fa-circle-gf(), fa-circle-gf(solid: true), fa-icon("circle-gf"),
```typst #fa-circle-h()```, fa-circle-h(), fa-circle-h(solid: true), fa-icon("circle-h"),
```typst #fa-hospital-symbol()```, fa-hospital-symbol(), fa-hospital-symbol(solid: true), fa-icon("hospital-symbol"),
```typst #fa-circle-half()```, fa-circle-half(), fa-circle-half(solid: true), fa-icon("circle-half"),
```typst #fa-circle-half-stroke()```, fa-circle-half-stroke(), fa-circle-half-stroke(solid: true), fa-icon("circle-half-stroke"),
```typst #fa-adjust()```, fa-adjust(), fa-adjust(solid: true), fa-icon("adjust"),
```typst #fa-circle-heart()```, fa-circle-heart(), fa-circle-heart(solid: true), fa-icon("circle-heart"),
```typst #fa-heart-circle()```, fa-heart-circle(), fa-heart-circle(solid: true), fa-icon("heart-circle"),
```typst #fa-circle-i()```, fa-circle-i(), fa-circle-i(solid: true), fa-icon("circle-i"),
```typst #fa-circle-info()```, fa-circle-info(), fa-circle-info(solid: true), fa-icon("circle-info"),
```typst #fa-info-circle()```, fa-info-circle(), fa-info-circle(solid: true), fa-icon("info-circle"),
```typst #fa-circle-j()```, fa-circle-j(), fa-circle-j(solid: true), fa-icon("circle-j"),
```typst #fa-circle-k()```, fa-circle-k(), fa-circle-k(solid: true), fa-icon("circle-k"),
```typst #fa-circle-l()```, fa-circle-l(), fa-circle-l(solid: true), fa-icon("circle-l"),
```typst #fa-circle-left()```, fa-circle-left(), fa-circle-left(solid: true), fa-icon("circle-left"),
```typst #fa-arrow-alt-circle-left()```, fa-arrow-alt-circle-left(), fa-arrow-alt-circle-left(solid: true), fa-icon("arrow-alt-circle-left"),
```typst #fa-circle-location-arrow()```, fa-circle-location-arrow(), fa-circle-location-arrow(solid: true), fa-icon("circle-location-arrow"),
```typst #fa-location-circle()```, fa-location-circle(), fa-location-circle(solid: true), fa-icon("location-circle"),
```typst #fa-circle-m()```, fa-circle-m(), fa-circle-m(solid: true), fa-icon("circle-m"),
```typst #fa-circle-microphone()```, fa-circle-microphone(), fa-circle-microphone(solid: true), fa-icon("circle-microphone"),
```typst #fa-microphone-circle()```, fa-microphone-circle(), fa-microphone-circle(solid: true), fa-icon("microphone-circle"),
```typst #fa-circle-microphone-lines()```, fa-circle-microphone-lines(), fa-circle-microphone-lines(solid: true), fa-icon("circle-microphone-lines"),
```typst #fa-microphone-circle-alt()```, fa-microphone-circle-alt(), fa-microphone-circle-alt(solid: true), fa-icon("microphone-circle-alt"),
```typst #fa-circle-minus()```, fa-circle-minus(), fa-circle-minus(solid: true), fa-icon("circle-minus"),
```typst #fa-minus-circle()```, fa-minus-circle(), fa-minus-circle(solid: true), fa-icon("minus-circle"),
```typst #fa-circle-n()```, fa-circle-n(), fa-circle-n(solid: true), fa-icon("circle-n"),
```typst #fa-circle-nodes()```, fa-circle-nodes(), fa-circle-nodes(solid: true), fa-icon("circle-nodes"),
```typst #fa-circle-notch()```, fa-circle-notch(), fa-circle-notch(solid: true), fa-icon("circle-notch"),
```typst #fa-circle-o()```, fa-circle-o(), fa-circle-o(solid: true), fa-icon("circle-o"),
```typst #fa-circle-p()```, fa-circle-p(), fa-circle-p(solid: true), fa-icon("circle-p"),
```typst #fa-circle-parking()```, fa-circle-parking(), fa-circle-parking(solid: true), fa-icon("circle-parking"),
```typst #fa-parking-circle()```, fa-parking-circle(), fa-parking-circle(solid: true), fa-icon("parking-circle"),
```typst #fa-circle-pause()```, fa-circle-pause(), fa-circle-pause(solid: true), fa-icon("circle-pause"),
```typst #fa-pause-circle()```, fa-pause-circle(), fa-pause-circle(solid: true), fa-icon("pause-circle"),
```typst #fa-circle-phone()```, fa-circle-phone(), fa-circle-phone(solid: true), fa-icon("circle-phone"),
```typst #fa-phone-circle()```, fa-phone-circle(), fa-phone-circle(solid: true), fa-icon("phone-circle"),
```typst #fa-circle-phone-flip()```, fa-circle-phone-flip(), fa-circle-phone-flip(solid: true), fa-icon("circle-phone-flip"),
```typst #fa-phone-circle-alt()```, fa-phone-circle-alt(), fa-phone-circle-alt(solid: true), fa-icon("phone-circle-alt"),
```typst #fa-circle-phone-hangup()```, fa-circle-phone-hangup(), fa-circle-phone-hangup(solid: true), fa-icon("circle-phone-hangup"),
```typst #fa-phone-circle-down()```, fa-phone-circle-down(), fa-phone-circle-down(solid: true), fa-icon("phone-circle-down"),
```typst #fa-circle-play()```, fa-circle-play(), fa-circle-play(solid: true), fa-icon("circle-play"),
```typst #fa-play-circle()```, fa-play-circle(), fa-play-circle(solid: true), fa-icon("play-circle"),
```typst #fa-circle-plus()```, fa-circle-plus(), fa-circle-plus(solid: true), fa-icon("circle-plus"),
```typst #fa-plus-circle()```, fa-plus-circle(), fa-plus-circle(solid: true), fa-icon("plus-circle"),
```typst #fa-circle-q()```, fa-circle-q(), fa-circle-q(solid: true), fa-icon("circle-q"),
```typst #fa-circle-quarter()```, fa-circle-quarter(), fa-circle-quarter(solid: true), fa-icon("circle-quarter"),
```typst #fa-circle-quarters()```, fa-circle-quarters(), fa-circle-quarters(solid: true), fa-icon("circle-quarters"),
```typst #fa-circle-quarter-stroke()```, fa-circle-quarter-stroke(), fa-circle-quarter-stroke(solid: true), fa-icon("circle-quarter-stroke"),
```typst #fa-circle-question()```, fa-circle-question(), fa-circle-question(solid: true), fa-icon("circle-question"),
```typst #fa-question-circle()```, fa-question-circle(), fa-question-circle(solid: true), fa-icon("question-circle"),
```typst #fa-circle-r()```, fa-circle-r(), fa-circle-r(solid: true), fa-icon("circle-r"),
```typst #fa-circle-radiation()```, fa-circle-radiation(), fa-circle-radiation(solid: true), fa-icon("circle-radiation"),
```typst #fa-radiation-alt()```, fa-radiation-alt(), fa-radiation-alt(solid: true), fa-icon("radiation-alt"),
```typst #fa-circle-right()```, fa-circle-right(), fa-circle-right(solid: true), fa-icon("circle-right"),
```typst #fa-arrow-alt-circle-right()```, fa-arrow-alt-circle-right(), fa-arrow-alt-circle-right(solid: true), fa-icon("arrow-alt-circle-right"),
```typst #fa-circle-s()```, fa-circle-s(), fa-circle-s(solid: true), fa-icon("circle-s"),
```typst #fa-circle-small()```, fa-circle-small(), fa-circle-small(solid: true), fa-icon("circle-small"),
```typst #fa-circle-sort()```, fa-circle-sort(), fa-circle-sort(solid: true), fa-icon("circle-sort"),
```typst #fa-sort-circle()```, fa-sort-circle(), fa-sort-circle(solid: true), fa-icon("sort-circle"),
```typst #fa-circle-sort-down()```, fa-circle-sort-down(), fa-circle-sort-down(solid: true), fa-icon("circle-sort-down"),
```typst #fa-sort-circle-down()```, fa-sort-circle-down(), fa-sort-circle-down(solid: true), fa-icon("sort-circle-down"),
```typst #fa-circle-sort-up()```, fa-circle-sort-up(), fa-circle-sort-up(solid: true), fa-icon("circle-sort-up"),
```typst #fa-sort-circle-up()```, fa-sort-circle-up(), fa-sort-circle-up(solid: true), fa-icon("sort-circle-up"),
```typst #fa-circles-overlap()```, fa-circles-overlap(), fa-circles-overlap(solid: true), fa-icon("circles-overlap"),
```typst #fa-circle-star()```, fa-circle-star(), fa-circle-star(solid: true), fa-icon("circle-star"),
```typst #fa-star-circle()```, fa-star-circle(), fa-star-circle(solid: true), fa-icon("star-circle"),
```typst #fa-circle-sterling()```, fa-circle-sterling(), fa-circle-sterling(solid: true), fa-icon("circle-sterling"),
```typst #fa-circle-stop()```, fa-circle-stop(), fa-circle-stop(solid: true), fa-icon("circle-stop"),
```typst #fa-stop-circle()```, fa-stop-circle(), fa-stop-circle(solid: true), fa-icon("stop-circle"),
```typst #fa-circle-t()```, fa-circle-t(), fa-circle-t(solid: true), fa-icon("circle-t"),
```typst #fa-circle-three-quarters()```, fa-circle-three-quarters(), fa-circle-three-quarters(solid: true), fa-icon("circle-three-quarters"),
```typst #fa-circle-three-quarters-stroke()```, fa-circle-three-quarters-stroke(), fa-circle-three-quarters-stroke(solid: true), fa-icon("circle-three-quarters-stroke"),
```typst #fa-circle-trash()```, fa-circle-trash(), fa-circle-trash(solid: true), fa-icon("circle-trash"),
```typst #fa-trash-circle()```, fa-trash-circle(), fa-trash-circle(solid: true), fa-icon("trash-circle"),
```typst #fa-circle-u()```, fa-circle-u(), fa-circle-u(solid: true), fa-icon("circle-u"),
```typst #fa-circle-up()```, fa-circle-up(), fa-circle-up(solid: true), fa-icon("circle-up"),
```typst #fa-arrow-alt-circle-up()```, fa-arrow-alt-circle-up(), fa-arrow-alt-circle-up(solid: true), fa-icon("arrow-alt-circle-up"),
```typst #fa-circle-up-left()```, fa-circle-up-left(), fa-circle-up-left(solid: true), fa-icon("circle-up-left"),
```typst #fa-circle-up-right()```, fa-circle-up-right(), fa-circle-up-right(solid: true), fa-icon("circle-up-right"),
```typst #fa-circle-user()```, fa-circle-user(), fa-circle-user(solid: true), fa-icon("circle-user"),
```typst #fa-user-circle()```, fa-user-circle(), fa-user-circle(solid: true), fa-icon("user-circle"),
```typst #fa-circle-v()```, fa-circle-v(), fa-circle-v(solid: true), fa-icon("circle-v"),
```typst #fa-circle-video()```, fa-circle-video(), fa-circle-video(solid: true), fa-icon("circle-video"),
```typst #fa-video-circle()```, fa-video-circle(), fa-video-circle(solid: true), fa-icon("video-circle"),
```typst #fa-circle-w()```, fa-circle-w(), fa-circle-w(solid: true), fa-icon("circle-w"),
```typst #fa-circle-waveform-lines()```, fa-circle-waveform-lines(), fa-circle-waveform-lines(solid: true), fa-icon("circle-waveform-lines"),
```typst #fa-waveform-circle()```, fa-waveform-circle(), fa-waveform-circle(solid: true), fa-icon("waveform-circle"),
```typst #fa-circle-wifi()```, fa-circle-wifi(), fa-circle-wifi(solid: true), fa-icon("circle-wifi"),
```typst #fa-circle-wifi-circle-wifi()```, fa-circle-wifi-circle-wifi(), fa-circle-wifi-circle-wifi(solid: true), fa-icon("circle-wifi-circle-wifi"),
```typst #fa-circle-wifi-group()```, fa-circle-wifi-group(), fa-circle-wifi-group(solid: true), fa-icon("circle-wifi-group"),
```typst #fa-circle-x()```, fa-circle-x(), fa-circle-x(solid: true), fa-icon("circle-x"),
```typst #fa-circle-xmark()```, fa-circle-xmark(), fa-circle-xmark(solid: true), fa-icon("circle-xmark"),
```typst #fa-times-circle()```, fa-times-circle(), fa-times-circle(solid: true), fa-icon("times-circle"),
```typst #fa-xmark-circle()```, fa-xmark-circle(), fa-xmark-circle(solid: true), fa-icon("xmark-circle"),
```typst #fa-circle-y()```, fa-circle-y(), fa-circle-y(solid: true), fa-icon("circle-y"),
```typst #fa-circle-yen()```, fa-circle-yen(), fa-circle-yen(solid: true), fa-icon("circle-yen"),
```typst #fa-circle-z()```, fa-circle-z(), fa-circle-z(solid: true), fa-icon("circle-z"),
```typst #fa-citrus()```, fa-citrus(), fa-citrus(solid: true), fa-icon("citrus"),
```typst #fa-citrus-slice()```, fa-citrus-slice(), fa-citrus-slice(solid: true), fa-icon("citrus-slice"),
```typst #fa-city()```, fa-city(), fa-city(solid: true), fa-icon("city"),
```typst #fa-clapperboard()```, fa-clapperboard(), fa-clapperboard(solid: true), fa-icon("clapperboard"),
```typst #fa-clapperboard-play()```, fa-clapperboard-play(), fa-clapperboard-play(solid: true), fa-icon("clapperboard-play"),
```typst #fa-clarinet()```, fa-clarinet(), fa-clarinet(solid: true), fa-icon("clarinet"),
```typst #fa-claw-marks()```, fa-claw-marks(), fa-claw-marks(solid: true), fa-icon("claw-marks"),
```typst #fa-clipboard()```, fa-clipboard(), fa-clipboard(solid: true), fa-icon("clipboard"),
```typst #fa-clipboard-check()```, fa-clipboard-check(), fa-clipboard-check(solid: true), fa-icon("clipboard-check"),
```typst #fa-clipboard-list()```, fa-clipboard-list(), fa-clipboard-list(solid: true), fa-icon("clipboard-list"),
```typst #fa-clipboard-list-check()```, fa-clipboard-list-check(), fa-clipboard-list-check(solid: true), fa-icon("clipboard-list-check"),
```typst #fa-clipboard-medical()```, fa-clipboard-medical(), fa-clipboard-medical(solid: true), fa-icon("clipboard-medical"),
```typst #fa-clipboard-prescription()```, fa-clipboard-prescription(), fa-clipboard-prescription(solid: true), fa-icon("clipboard-prescription"),
```typst #fa-clipboard-question()```, fa-clipboard-question(), fa-clipboard-question(solid: true), fa-icon("clipboard-question"),
```typst #fa-clipboard-user()```, fa-clipboard-user(), fa-clipboard-user(solid: true), fa-icon("clipboard-user"),
```typst #fa-clock()```, fa-clock(), fa-clock(solid: true), fa-icon("clock"),
```typst #fa-clock-four()```, fa-clock-four(), fa-clock-four(solid: true), fa-icon("clock-four"),
```typst #fa-clock-desk()```, fa-clock-desk(), fa-clock-desk(solid: true), fa-icon("clock-desk"),
```typst #fa-clock-eight()```, fa-clock-eight(), fa-clock-eight(solid: true), fa-icon("clock-eight"),
```typst #fa-clock-eight-thirty()```, fa-clock-eight-thirty(), fa-clock-eight-thirty(solid: true), fa-icon("clock-eight-thirty"),
```typst #fa-clock-eleven()```, fa-clock-eleven(), fa-clock-eleven(solid: true), fa-icon("clock-eleven"),
```typst #fa-clock-eleven-thirty()```, fa-clock-eleven-thirty(), fa-clock-eleven-thirty(solid: true), fa-icon("clock-eleven-thirty"),
```typst #fa-clock-five()```, fa-clock-five(), fa-clock-five(solid: true), fa-icon("clock-five"),
```typst #fa-clock-five-thirty()```, fa-clock-five-thirty(), fa-clock-five-thirty(solid: true), fa-icon("clock-five-thirty"),
```typst #fa-clock-four-thirty()```, fa-clock-four-thirty(), fa-clock-four-thirty(solid: true), fa-icon("clock-four-thirty"),
```typst #fa-clock-nine()```, fa-clock-nine(), fa-clock-nine(solid: true), fa-icon("clock-nine"),
```typst #fa-clock-nine-thirty()```, fa-clock-nine-thirty(), fa-clock-nine-thirty(solid: true), fa-icon("clock-nine-thirty"),
```typst #fa-clock-one()```, fa-clock-one(), fa-clock-one(solid: true), fa-icon("clock-one"),
```typst #fa-clock-one-thirty()```, fa-clock-one-thirty(), fa-clock-one-thirty(solid: true), fa-icon("clock-one-thirty"),
```typst #fa-clock-rotate-left()```, fa-clock-rotate-left(), fa-clock-rotate-left(solid: true), fa-icon("clock-rotate-left"),
```typst #fa-history()```, fa-history(), fa-history(solid: true), fa-icon("history"),
```typst #fa-clock-seven()```, fa-clock-seven(), fa-clock-seven(solid: true), fa-icon("clock-seven"),
```typst #fa-clock-seven-thirty()```, fa-clock-seven-thirty(), fa-clock-seven-thirty(solid: true), fa-icon("clock-seven-thirty"),
```typst #fa-clock-six()```, fa-clock-six(), fa-clock-six(solid: true), fa-icon("clock-six"),
```typst #fa-clock-six-thirty()```, fa-clock-six-thirty(), fa-clock-six-thirty(solid: true), fa-icon("clock-six-thirty"),
```typst #fa-clock-ten()```, fa-clock-ten(), fa-clock-ten(solid: true), fa-icon("clock-ten"),
```typst #fa-clock-ten-thirty()```, fa-clock-ten-thirty(), fa-clock-ten-thirty(solid: true), fa-icon("clock-ten-thirty"),
```typst #fa-clock-three()```, fa-clock-three(), fa-clock-three(solid: true), fa-icon("clock-three"),
```typst #fa-clock-three-thirty()```, fa-clock-three-thirty(), fa-clock-three-thirty(solid: true), fa-icon("clock-three-thirty"),
```typst #fa-clock-twelve()```, fa-clock-twelve(), fa-clock-twelve(solid: true), fa-icon("clock-twelve"),
```typst #fa-clock-twelve-thirty()```, fa-clock-twelve-thirty(), fa-clock-twelve-thirty(solid: true), fa-icon("clock-twelve-thirty"),
```typst #fa-clock-two()```, fa-clock-two(), fa-clock-two(solid: true), fa-icon("clock-two"),
```typst #fa-clock-two-thirty()```, fa-clock-two-thirty(), fa-clock-two-thirty(solid: true), fa-icon("clock-two-thirty"),
```typst #fa-clone()```, fa-clone(), fa-clone(solid: true), fa-icon("clone"),
```typst #fa-closed-captioning()```, fa-closed-captioning(), fa-closed-captioning(solid: true), fa-icon("closed-captioning"),
```typst #fa-closed-captioning-slash()```, fa-closed-captioning-slash(), fa-closed-captioning-slash(solid: true), fa-icon("closed-captioning-slash"),
```typst #fa-clothes-hanger()```, fa-clothes-hanger(), fa-clothes-hanger(solid: true), fa-icon("clothes-hanger"),
```typst #fa-cloud()```, fa-cloud(), fa-cloud(solid: true), fa-icon("cloud"),
```typst #fa-cloud-arrow-down()```, fa-cloud-arrow-down(), fa-cloud-arrow-down(solid: true), fa-icon("cloud-arrow-down"),
```typst #fa-cloud-download()```, fa-cloud-download(), fa-cloud-download(solid: true), fa-icon("cloud-download"),
```typst #fa-cloud-download-alt()```, fa-cloud-download-alt(), fa-cloud-download-alt(solid: true), fa-icon("cloud-download-alt"),
```typst #fa-cloud-arrow-up()```, fa-cloud-arrow-up(), fa-cloud-arrow-up(solid: true), fa-icon("cloud-arrow-up"),
```typst #fa-cloud-upload()```, fa-cloud-upload(), fa-cloud-upload(solid: true), fa-icon("cloud-upload"),
```typst #fa-cloud-upload-alt()```, fa-cloud-upload-alt(), fa-cloud-upload-alt(solid: true), fa-icon("cloud-upload-alt"),
```typst #fa-cloud-binary()```, fa-cloud-binary(), fa-cloud-binary(solid: true), fa-icon("cloud-binary"),
```typst #fa-cloud-bolt()```, fa-cloud-bolt(), fa-cloud-bolt(solid: true), fa-icon("cloud-bolt"),
```typst #fa-thunderstorm()```, fa-thunderstorm(), fa-thunderstorm(solid: true), fa-icon("thunderstorm"),
```typst #fa-cloud-bolt-moon()```, fa-cloud-bolt-moon(), fa-cloud-bolt-moon(solid: true), fa-icon("cloud-bolt-moon"),
```typst #fa-thunderstorm-moon()```, fa-thunderstorm-moon(), fa-thunderstorm-moon(solid: true), fa-icon("thunderstorm-moon"),
```typst #fa-cloud-bolt-sun()```, fa-cloud-bolt-sun(), fa-cloud-bolt-sun(solid: true), fa-icon("cloud-bolt-sun"),
```typst #fa-thunderstorm-sun()```, fa-thunderstorm-sun(), fa-thunderstorm-sun(solid: true), fa-icon("thunderstorm-sun"),
```typst #fa-cloud-check()```, fa-cloud-check(), fa-cloud-check(solid: true), fa-icon("cloud-check"),
```typst #fa-cloud-drizzle()```, fa-cloud-drizzle(), fa-cloud-drizzle(solid: true), fa-icon("cloud-drizzle"),
```typst #fa-cloud-exclamation()```, fa-cloud-exclamation(), fa-cloud-exclamation(solid: true), fa-icon("cloud-exclamation"),
```typst #fa-cloudflare()```, fa-cloudflare(), fa-cloudflare(solid: true), fa-icon("cloudflare"),
```typst #fa-cloud-fog()```, fa-cloud-fog(), fa-cloud-fog(solid: true), fa-icon("cloud-fog"),
```typst #fa-fog()```, fa-fog(), fa-fog(solid: true), fa-icon("fog"),
```typst #fa-cloud-hail()```, fa-cloud-hail(), fa-cloud-hail(solid: true), fa-icon("cloud-hail"),
```typst #fa-cloud-hail-mixed()```, fa-cloud-hail-mixed(), fa-cloud-hail-mixed(solid: true), fa-icon("cloud-hail-mixed"),
```typst #fa-cloud-meatball()```, fa-cloud-meatball(), fa-cloud-meatball(solid: true), fa-icon("cloud-meatball"),
```typst #fa-cloud-minus()```, fa-cloud-minus(), fa-cloud-minus(solid: true), fa-icon("cloud-minus"),
```typst #fa-cloud-moon()```, fa-cloud-moon(), fa-cloud-moon(solid: true), fa-icon("cloud-moon"),
```typst #fa-cloud-moon-rain()```, fa-cloud-moon-rain(), fa-cloud-moon-rain(solid: true), fa-icon("cloud-moon-rain"),
```typst #fa-cloud-music()```, fa-cloud-music(), fa-cloud-music(solid: true), fa-icon("cloud-music"),
```typst #fa-cloud-plus()```, fa-cloud-plus(), fa-cloud-plus(solid: true), fa-icon("cloud-plus"),
```typst #fa-cloud-question()```, fa-cloud-question(), fa-cloud-question(solid: true), fa-icon("cloud-question"),
```typst #fa-cloud-rain()```, fa-cloud-rain(), fa-cloud-rain(solid: true), fa-icon("cloud-rain"),
```typst #fa-cloud-rainbow()```, fa-cloud-rainbow(), fa-cloud-rainbow(solid: true), fa-icon("cloud-rainbow"),
```typst #fa-clouds()```, fa-clouds(), fa-clouds(solid: true), fa-icon("clouds"),
```typst #fa-cloudscale()```, fa-cloudscale(), fa-cloudscale(solid: true), fa-icon("cloudscale"),
```typst #fa-cloud-showers()```, fa-cloud-showers(), fa-cloud-showers(solid: true), fa-icon("cloud-showers"),
```typst #fa-cloud-showers-heavy()```, fa-cloud-showers-heavy(), fa-cloud-showers-heavy(solid: true), fa-icon("cloud-showers-heavy"),
```typst #fa-cloud-showers-water()```, fa-cloud-showers-water(), fa-cloud-showers-water(solid: true), fa-icon("cloud-showers-water"),
```typst #fa-cloud-slash()```, fa-cloud-slash(), fa-cloud-slash(solid: true), fa-icon("cloud-slash"),
```typst #fa-cloud-sleet()```, fa-cloud-sleet(), fa-cloud-sleet(solid: true), fa-icon("cloud-sleet"),
```typst #fa-cloudsmith()```, fa-cloudsmith(), fa-cloudsmith(solid: true), fa-icon("cloudsmith"),
```typst #fa-clouds-moon()```, fa-clouds-moon(), fa-clouds-moon(solid: true), fa-icon("clouds-moon"),
```typst #fa-cloud-snow()```, fa-cloud-snow(), fa-cloud-snow(solid: true), fa-icon("cloud-snow"),
```typst #fa-clouds-sun()```, fa-clouds-sun(), fa-clouds-sun(solid: true), fa-icon("clouds-sun"),
```typst #fa-cloud-sun()```, fa-cloud-sun(), fa-cloud-sun(solid: true), fa-icon("cloud-sun"),
```typst #fa-cloud-sun-rain()```, fa-cloud-sun-rain(), fa-cloud-sun-rain(solid: true), fa-icon("cloud-sun-rain"),
```typst #fa-cloudversify()```, fa-cloudversify(), fa-cloudversify(solid: true), fa-icon("cloudversify"),
```typst #fa-cloud-word()```, fa-cloud-word(), fa-cloud-word(solid: true), fa-icon("cloud-word"),
```typst #fa-cloud-xmark()```, fa-cloud-xmark(), fa-cloud-xmark(solid: true), fa-icon("cloud-xmark"),
```typst #fa-clover()```, fa-clover(), fa-clover(solid: true), fa-icon("clover"),
```typst #fa-club()```, fa-club(), fa-club(solid: true), fa-icon("club"),
```typst #fa-cmplid()```, fa-cmplid(), fa-cmplid(solid: true), fa-icon("cmplid"),
```typst #fa-coconut()```, fa-coconut(), fa-coconut(solid: true), fa-icon("coconut"),
```typst #fa-code()```, fa-code(), fa-code(solid: true), fa-icon("code"),
```typst #fa-code-branch()```, fa-code-branch(), fa-code-branch(solid: true), fa-icon("code-branch"),
```typst #fa-code-commit()```, fa-code-commit(), fa-code-commit(solid: true), fa-icon("code-commit"),
```typst #fa-code-compare()```, fa-code-compare(), fa-code-compare(solid: true), fa-icon("code-compare"),
```typst #fa-code-fork()```, fa-code-fork(), fa-code-fork(solid: true), fa-icon("code-fork"),
```typst #fa-code-merge()```, fa-code-merge(), fa-code-merge(solid: true), fa-icon("code-merge"),
```typst #fa-codepen()```, fa-codepen(), fa-codepen(solid: true), fa-icon("codepen"),
```typst #fa-code-pull-request()```, fa-code-pull-request(), fa-code-pull-request(solid: true), fa-icon("code-pull-request"),
```typst #fa-code-pull-request-closed()```, fa-code-pull-request-closed(), fa-code-pull-request-closed(solid: true), fa-icon("code-pull-request-closed"),
```typst #fa-code-pull-request-draft()```, fa-code-pull-request-draft(), fa-code-pull-request-draft(solid: true), fa-icon("code-pull-request-draft"),
```typst #fa-code-simple()```, fa-code-simple(), fa-code-simple(solid: true), fa-icon("code-simple"),
```typst #fa-codiepie()```, fa-codiepie(), fa-codiepie(solid: true), fa-icon("codiepie"),
```typst #fa-coffee-bean()```, fa-coffee-bean(), fa-coffee-bean(solid: true), fa-icon("coffee-bean"),
```typst #fa-coffee-beans()```, fa-coffee-beans(), fa-coffee-beans(solid: true), fa-icon("coffee-beans"),
```typst #fa-coffee-pot()```, fa-coffee-pot(), fa-coffee-pot(solid: true), fa-icon("coffee-pot"),
```typst #fa-coffin()```, fa-coffin(), fa-coffin(solid: true), fa-icon("coffin"),
```typst #fa-coffin-cross()```, fa-coffin-cross(), fa-coffin-cross(solid: true), fa-icon("coffin-cross"),
```typst #fa-coin()```, fa-coin(), fa-coin(solid: true), fa-icon("coin"),
```typst #fa-coin-blank()```, fa-coin-blank(), fa-coin-blank(solid: true), fa-icon("coin-blank"),
```typst #fa-coin-front()```, fa-coin-front(), fa-coin-front(solid: true), fa-icon("coin-front"),
```typst #fa-coins()```, fa-coins(), fa-coins(solid: true), fa-icon("coins"),
```typst #fa-coin-vertical()```, fa-coin-vertical(), fa-coin-vertical(solid: true), fa-icon("coin-vertical"),
```typst #fa-colon()```, fa-colon(), fa-colon(solid: true), fa-icon("colon"),
```typst #fa-colon-sign()```, fa-colon-sign(), fa-colon-sign(solid: true), fa-icon("colon-sign"),
```typst #fa-columns-3()```, fa-columns-3(), fa-columns-3(solid: true), fa-icon("columns-3"),
```typst #fa-comet()```, fa-comet(), fa-comet(solid: true), fa-icon("comet"),
```typst #fa-comma()```, fa-comma(), fa-comma(solid: true), fa-icon("comma"),
```typst #fa-command()```, fa-command(), fa-command(solid: true), fa-icon("command"),
```typst #fa-comment()```, fa-comment(), fa-comment(solid: true), fa-icon("comment"),
```typst #fa-comment-arrow-down()```, fa-comment-arrow-down(), fa-comment-arrow-down(solid: true), fa-icon("comment-arrow-down"),
```typst #fa-comment-arrow-up()```, fa-comment-arrow-up(), fa-comment-arrow-up(solid: true), fa-icon("comment-arrow-up"),
```typst #fa-comment-arrow-up-right()```, fa-comment-arrow-up-right(), fa-comment-arrow-up-right(solid: true), fa-icon("comment-arrow-up-right"),
```typst #fa-comment-captions()```, fa-comment-captions(), fa-comment-captions(solid: true), fa-icon("comment-captions"),
```typst #fa-comment-check()```, fa-comment-check(), fa-comment-check(solid: true), fa-icon("comment-check"),
```typst #fa-comment-code()```, fa-comment-code(), fa-comment-code(solid: true), fa-icon("comment-code"),
```typst #fa-comment-dollar()```, fa-comment-dollar(), fa-comment-dollar(solid: true), fa-icon("comment-dollar"),
```typst #fa-comment-dots()```, fa-comment-dots(), fa-comment-dots(solid: true), fa-icon("comment-dots"),
```typst #fa-commenting()```, fa-commenting(), fa-commenting(solid: true), fa-icon("commenting"),
```typst #fa-comment-exclamation()```, fa-comment-exclamation(), fa-comment-exclamation(solid: true), fa-icon("comment-exclamation"),
```typst #fa-comment-heart()```, fa-comment-heart(), fa-comment-heart(solid: true), fa-icon("comment-heart"),
```typst #fa-comment-image()```, fa-comment-image(), fa-comment-image(solid: true), fa-icon("comment-image"),
```typst #fa-comment-lines()```, fa-comment-lines(), fa-comment-lines(solid: true), fa-icon("comment-lines"),
```typst #fa-comment-medical()```, fa-comment-medical(), fa-comment-medical(solid: true), fa-icon("comment-medical"),
```typst #fa-comment-middle()```, fa-comment-middle(), fa-comment-middle(solid: true), fa-icon("comment-middle"),
```typst #fa-comment-middle-top()```, fa-comment-middle-top(), fa-comment-middle-top(solid: true), fa-icon("comment-middle-top"),
```typst #fa-comment-minus()```, fa-comment-minus(), fa-comment-minus(solid: true), fa-icon("comment-minus"),
```typst #fa-comment-music()```, fa-comment-music(), fa-comment-music(solid: true), fa-icon("comment-music"),
```typst #fa-comment-pen()```, fa-comment-pen(), fa-comment-pen(solid: true), fa-icon("comment-pen"),
```typst #fa-comment-edit()```, fa-comment-edit(), fa-comment-edit(solid: true), fa-icon("comment-edit"),
```typst #fa-comment-plus()```, fa-comment-plus(), fa-comment-plus(solid: true), fa-icon("comment-plus"),
```typst #fa-comment-question()```, fa-comment-question(), fa-comment-question(solid: true), fa-icon("comment-question"),
```typst #fa-comment-quote()```, fa-comment-quote(), fa-comment-quote(solid: true), fa-icon("comment-quote"),
```typst #fa-comments()```, fa-comments(), fa-comments(solid: true), fa-icon("comments"),
```typst #fa-comments-dollar()```, fa-comments-dollar(), fa-comments-dollar(solid: true), fa-icon("comments-dollar"),
```typst #fa-comment-slash()```, fa-comment-slash(), fa-comment-slash(solid: true), fa-icon("comment-slash"),
```typst #fa-comment-smile()```, fa-comment-smile(), fa-comment-smile(solid: true), fa-icon("comment-smile"),
```typst #fa-comment-sms()```, fa-comment-sms(), fa-comment-sms(solid: true), fa-icon("comment-sms"),
```typst #fa-sms()```, fa-sms(), fa-sms(solid: true), fa-icon("sms"),
```typst #fa-comments-question()```, fa-comments-question(), fa-comments-question(solid: true), fa-icon("comments-question"),
```typst #fa-comments-question-check()```, fa-comments-question-check(), fa-comments-question-check(solid: true), fa-icon("comments-question-check"),
```typst #fa-comment-text()```, fa-comment-text(), fa-comment-text(solid: true), fa-icon("comment-text"),
```typst #fa-comment-xmark()```, fa-comment-xmark(), fa-comment-xmark(solid: true), fa-icon("comment-xmark"),
```typst #fa-comment-times()```, fa-comment-times(), fa-comment-times(solid: true), fa-icon("comment-times"),
```typst #fa-compact-disc()```, fa-compact-disc(), fa-compact-disc(solid: true), fa-icon("compact-disc"),
```typst #fa-compass()```, fa-compass(), fa-compass(solid: true), fa-icon("compass"),
```typst #fa-compass-drafting()```, fa-compass-drafting(), fa-compass-drafting(solid: true), fa-icon("compass-drafting"),
```typst #fa-drafting-compass()```, fa-drafting-compass(), fa-drafting-compass(solid: true), fa-icon("drafting-compass"),
```typst #fa-compass-slash()```, fa-compass-slash(), fa-compass-slash(solid: true), fa-icon("compass-slash"),
```typst #fa-compress()```, fa-compress(), fa-compress(solid: true), fa-icon("compress"),
```typst #fa-compress-wide()```, fa-compress-wide(), fa-compress-wide(solid: true), fa-icon("compress-wide"),
```typst #fa-computer()```, fa-computer(), fa-computer(solid: true), fa-icon("computer"),
```typst #fa-computer-classic()```, fa-computer-classic(), fa-computer-classic(solid: true), fa-icon("computer-classic"),
```typst #fa-computer-mouse()```, fa-computer-mouse(), fa-computer-mouse(solid: true), fa-icon("computer-mouse"),
```typst #fa-mouse()```, fa-mouse(), fa-mouse(solid: true), fa-icon("mouse"),
```typst #fa-computer-mouse-scrollwheel()```, fa-computer-mouse-scrollwheel(), fa-computer-mouse-scrollwheel(solid: true), fa-icon("computer-mouse-scrollwheel"),
```typst #fa-mouse-alt()```, fa-mouse-alt(), fa-mouse-alt(solid: true), fa-icon("mouse-alt"),
```typst #fa-computer-speaker()```, fa-computer-speaker(), fa-computer-speaker(solid: true), fa-icon("computer-speaker"),
```typst #fa-confluence()```, fa-confluence(), fa-confluence(solid: true), fa-icon("confluence"),
```typst #fa-connectdevelop()```, fa-connectdevelop(), fa-connectdevelop(solid: true), fa-icon("connectdevelop"),
```typst #fa-container-storage()```, fa-container-storage(), fa-container-storage(solid: true), fa-icon("container-storage"),
```typst #fa-contao()```, fa-contao(), fa-contao(solid: true), fa-icon("contao"),
```typst #fa-conveyor-belt()```, fa-conveyor-belt(), fa-conveyor-belt(solid: true), fa-icon("conveyor-belt"),
```typst #fa-conveyor-belt-arm()```, fa-conveyor-belt-arm(), fa-conveyor-belt-arm(solid: true), fa-icon("conveyor-belt-arm"),
```typst #fa-conveyor-belt-boxes()```, fa-conveyor-belt-boxes(), fa-conveyor-belt-boxes(solid: true), fa-icon("conveyor-belt-boxes"),
```typst #fa-conveyor-belt-alt()```, fa-conveyor-belt-alt(), fa-conveyor-belt-alt(solid: true), fa-icon("conveyor-belt-alt"),
```typst #fa-conveyor-belt-empty()```, fa-conveyor-belt-empty(), fa-conveyor-belt-empty(solid: true), fa-icon("conveyor-belt-empty"),
```typst #fa-cookie()```, fa-cookie(), fa-cookie(solid: true), fa-icon("cookie"),
```typst #fa-cookie-bite()```, fa-cookie-bite(), fa-cookie-bite(solid: true), fa-icon("cookie-bite"),
```typst #fa-copy()```, fa-copy(), fa-copy(solid: true), fa-icon("copy"),
```typst #fa-copyright()```, fa-copyright(), fa-copyright(solid: true), fa-icon("copyright"),
```typst #fa-corn()```, fa-corn(), fa-corn(solid: true), fa-icon("corn"),
```typst #fa-corner()```, fa-corner(), fa-corner(solid: true), fa-icon("corner"),
```typst #fa-cotton-bureau()```, fa-cotton-bureau(), fa-cotton-bureau(solid: true), fa-icon("cotton-bureau"),
```typst #fa-couch()```, fa-couch(), fa-couch(solid: true), fa-icon("couch"),
```typst #fa-court-sport()```, fa-court-sport(), fa-court-sport(solid: true), fa-icon("court-sport"),
```typst #fa-cow()```, fa-cow(), fa-cow(solid: true), fa-icon("cow"),
```typst #fa-cowbell()```, fa-cowbell(), fa-cowbell(solid: true), fa-icon("cowbell"),
```typst #fa-cowbell-circle-plus()```, fa-cowbell-circle-plus(), fa-cowbell-circle-plus(solid: true), fa-icon("cowbell-circle-plus"),
```typst #fa-cowbell-more()```, fa-cowbell-more(), fa-cowbell-more(solid: true), fa-icon("cowbell-more"),
```typst #fa-cpanel()```, fa-cpanel(), fa-cpanel(solid: true), fa-icon("cpanel"),
```typst #fa-crab()```, fa-crab(), fa-crab(solid: true), fa-icon("crab"),
```typst #fa-crate-apple()```, fa-crate-apple(), fa-crate-apple(solid: true), fa-icon("crate-apple"),
```typst #fa-apple-crate()```, fa-apple-crate(), fa-apple-crate(solid: true), fa-icon("apple-crate"),
```typst #fa-crate-empty()```, fa-crate-empty(), fa-crate-empty(solid: true), fa-icon("crate-empty"),
```typst #fa-creative-commons()```, fa-creative-commons(), fa-creative-commons(solid: true), fa-icon("creative-commons"),
```typst #fa-creative-commons-by()```, fa-creative-commons-by(), fa-creative-commons-by(solid: true), fa-icon("creative-commons-by"),
```typst #fa-creative-commons-nc()```, fa-creative-commons-nc(), fa-creative-commons-nc(solid: true), fa-icon("creative-commons-nc"),
```typst #fa-creative-commons-nc-eu()```, fa-creative-commons-nc-eu(), fa-creative-commons-nc-eu(solid: true), fa-icon("creative-commons-nc-eu"),
```typst #fa-creative-commons-nc-jp()```, fa-creative-commons-nc-jp(), fa-creative-commons-nc-jp(solid: true), fa-icon("creative-commons-nc-jp"),
```typst #fa-creative-commons-nd()```, fa-creative-commons-nd(), fa-creative-commons-nd(solid: true), fa-icon("creative-commons-nd"),
```typst #fa-creative-commons-pd()```, fa-creative-commons-pd(), fa-creative-commons-pd(solid: true), fa-icon("creative-commons-pd"),
```typst #fa-creative-commons-pd-alt()```, fa-creative-commons-pd-alt(), fa-creative-commons-pd-alt(solid: true), fa-icon("creative-commons-pd-alt"),
```typst #fa-creative-commons-remix()```, fa-creative-commons-remix(), fa-creative-commons-remix(solid: true), fa-icon("creative-commons-remix"),
```typst #fa-creative-commons-sa()```, fa-creative-commons-sa(), fa-creative-commons-sa(solid: true), fa-icon("creative-commons-sa"),
```typst #fa-creative-commons-sampling()```, fa-creative-commons-sampling(), fa-creative-commons-sampling(solid: true), fa-icon("creative-commons-sampling"),
```typst #fa-creative-commons-sampling-plus()```, fa-creative-commons-sampling-plus(), fa-creative-commons-sampling-plus(solid: true), fa-icon("creative-commons-sampling-plus"),
```typst #fa-creative-commons-share()```, fa-creative-commons-share(), fa-creative-commons-share(solid: true), fa-icon("creative-commons-share"),
```typst #fa-creative-commons-zero()```, fa-creative-commons-zero(), fa-creative-commons-zero(solid: true), fa-icon("creative-commons-zero"),
```typst #fa-credit-card()```, fa-credit-card(), fa-credit-card(solid: true), fa-icon("credit-card"),
```typst #fa-credit-card-alt()```, fa-credit-card-alt(), fa-credit-card-alt(solid: true), fa-icon("credit-card-alt"),
```typst #fa-credit-card-blank()```, fa-credit-card-blank(), fa-credit-card-blank(solid: true), fa-icon("credit-card-blank"),
```typst #fa-credit-card-front()```, fa-credit-card-front(), fa-credit-card-front(solid: true), fa-icon("credit-card-front"),
```typst #fa-cricket-bat-ball()```, fa-cricket-bat-ball(), fa-cricket-bat-ball(solid: true), fa-icon("cricket-bat-ball"),
```typst #fa-cricket()```, fa-cricket(), fa-cricket(solid: true), fa-icon("cricket"),
```typst #fa-critical-role()```, fa-critical-role(), fa-critical-role(solid: true), fa-icon("critical-role"),
```typst #fa-croissant()```, fa-croissant(), fa-croissant(solid: true), fa-icon("croissant"),
```typst #fa-crop()```, fa-crop(), fa-crop(solid: true), fa-icon("crop"),
```typst #fa-crop-simple()```, fa-crop-simple(), fa-crop-simple(solid: true), fa-icon("crop-simple"),
```typst #fa-crop-alt()```, fa-crop-alt(), fa-crop-alt(solid: true), fa-icon("crop-alt"),
```typst #fa-cross()```, fa-cross(), fa-cross(solid: true), fa-icon("cross"),
```typst #fa-crosshairs()```, fa-crosshairs(), fa-crosshairs(solid: true), fa-icon("crosshairs"),
```typst #fa-crosshairs-simple()```, fa-crosshairs-simple(), fa-crosshairs-simple(solid: true), fa-icon("crosshairs-simple"),
```typst #fa-crow()```, fa-crow(), fa-crow(solid: true), fa-icon("crow"),
```typst #fa-crown()```, fa-crown(), fa-crown(solid: true), fa-icon("crown"),
```typst #fa-crutch()```, fa-crutch(), fa-crutch(solid: true), fa-icon("crutch"),
```typst #fa-crutches()```, fa-crutches(), fa-crutches(solid: true), fa-icon("crutches"),
```typst #fa-cruzeiro-sign()```, fa-cruzeiro-sign(), fa-cruzeiro-sign(solid: true), fa-icon("cruzeiro-sign"),
```typst #fa-crystal-ball()```, fa-crystal-ball(), fa-crystal-ball(solid: true), fa-icon("crystal-ball"),
```typst #fa-css3()```, fa-css3(), fa-css3(solid: true), fa-icon("css3"),
```typst #fa-css3-alt()```, fa-css3-alt(), fa-css3-alt(solid: true), fa-icon("css3-alt"),
```typst #fa-cube()```, fa-cube(), fa-cube(solid: true), fa-icon("cube"),
```typst #fa-cubes()```, fa-cubes(), fa-cubes(solid: true), fa-icon("cubes"),
```typst #fa-cubes-stacked()```, fa-cubes-stacked(), fa-cubes-stacked(solid: true), fa-icon("cubes-stacked"),
```typst #fa-cucumber()```, fa-cucumber(), fa-cucumber(solid: true), fa-icon("cucumber"),
```typst #fa-cupcake()```, fa-cupcake(), fa-cupcake(solid: true), fa-icon("cupcake"),
```typst #fa-cup-straw()```, fa-cup-straw(), fa-cup-straw(solid: true), fa-icon("cup-straw"),
```typst #fa-cup-straw-swoosh()```, fa-cup-straw-swoosh(), fa-cup-straw-swoosh(solid: true), fa-icon("cup-straw-swoosh"),
```typst #fa-cup-togo()```, fa-cup-togo(), fa-cup-togo(solid: true), fa-icon("cup-togo"),
```typst #fa-coffee-togo()```, fa-coffee-togo(), fa-coffee-togo(solid: true), fa-icon("coffee-togo"),
```typst #fa-curling-stone()```, fa-curling-stone(), fa-curling-stone(solid: true), fa-icon("curling-stone"),
```typst #fa-curling()```, fa-curling(), fa-curling(solid: true), fa-icon("curling"),
```typst #fa-custard()```, fa-custard(), fa-custard(solid: true), fa-icon("custard"),
```typst #fa-cuttlefish()```, fa-cuttlefish(), fa-cuttlefish(solid: true), fa-icon("cuttlefish"),
```typst #fa-d()```, fa-d(), fa-d(solid: true), fa-icon("d"),
```typst #fa-dagger()```, fa-dagger(), fa-dagger(solid: true), fa-icon("dagger"),
```typst #fa-dailymotion()```, fa-dailymotion(), fa-dailymotion(solid: true), fa-icon("dailymotion"),
```typst #fa-d-and-d()```, fa-d-and-d(), fa-d-and-d(solid: true), fa-icon("d-and-d"),
```typst #fa-d-and-d-beyond()```, fa-d-and-d-beyond(), fa-d-and-d-beyond(solid: true), fa-icon("d-and-d-beyond"),
```typst #fa-dart-lang()```, fa-dart-lang(), fa-dart-lang(solid: true), fa-icon("dart-lang"),
```typst #fa-dash()```, fa-dash(), fa-dash(solid: true), fa-icon("dash"),
```typst #fa-minus-large()```, fa-minus-large(), fa-minus-large(solid: true), fa-icon("minus-large"),
```typst #fa-dashcube()```, fa-dashcube(), fa-dashcube(solid: true), fa-icon("dashcube"),
```typst #fa-database()```, fa-database(), fa-database(solid: true), fa-icon("database"),
```typst #fa-debian()```, fa-debian(), fa-debian(solid: true), fa-icon("debian"),
```typst #fa-deer()```, fa-deer(), fa-deer(solid: true), fa-icon("deer"),
```typst #fa-deer-rudolph()```, fa-deer-rudolph(), fa-deer-rudolph(solid: true), fa-icon("deer-rudolph"),
```typst #fa-deezer()```, fa-deezer(), fa-deezer(solid: true), fa-icon("deezer"),
```typst #fa-delete-left()```, fa-delete-left(), fa-delete-left(solid: true), fa-icon("delete-left"),
```typst #fa-backspace()```, fa-backspace(), fa-backspace(solid: true), fa-icon("backspace"),
```typst #fa-delete-right()```, fa-delete-right(), fa-delete-right(solid: true), fa-icon("delete-right"),
```typst #fa-delicious()```, fa-delicious(), fa-delicious(solid: true), fa-icon("delicious"),
```typst #fa-democrat()```, fa-democrat(), fa-democrat(solid: true), fa-icon("democrat"),
```typst #fa-deploydog()```, fa-deploydog(), fa-deploydog(solid: true), fa-icon("deploydog"),
```typst #fa-deskpro()```, fa-deskpro(), fa-deskpro(solid: true), fa-icon("deskpro"),
```typst #fa-desktop()```, fa-desktop(), fa-desktop(solid: true), fa-icon("desktop"),
```typst #fa-desktop-alt()```, fa-desktop-alt(), fa-desktop-alt(solid: true), fa-icon("desktop-alt"),
```typst #fa-desktop-arrow-down()```, fa-desktop-arrow-down(), fa-desktop-arrow-down(solid: true), fa-icon("desktop-arrow-down"),
```typst #fa-dev()```, fa-dev(), fa-dev(solid: true), fa-icon("dev"),
```typst #fa-deviantart()```, fa-deviantart(), fa-deviantart(solid: true), fa-icon("deviantart"),
```typst #fa-dharmachakra()```, fa-dharmachakra(), fa-dharmachakra(solid: true), fa-icon("dharmachakra"),
```typst #fa-dhl()```, fa-dhl(), fa-dhl(solid: true), fa-icon("dhl"),
```typst #fa-diagram-cells()```, fa-diagram-cells(), fa-diagram-cells(solid: true), fa-icon("diagram-cells"),
```typst #fa-diagram-lean-canvas()```, fa-diagram-lean-canvas(), fa-diagram-lean-canvas(solid: true), fa-icon("diagram-lean-canvas"),
```typst #fa-diagram-nested()```, fa-diagram-nested(), fa-diagram-nested(solid: true), fa-icon("diagram-nested"),
```typst #fa-diagram-next()```, fa-diagram-next(), fa-diagram-next(solid: true), fa-icon("diagram-next"),
```typst #fa-diagram-predecessor()```, fa-diagram-predecessor(), fa-diagram-predecessor(solid: true), fa-icon("diagram-predecessor"),
```typst #fa-diagram-previous()```, fa-diagram-previous(), fa-diagram-previous(solid: true), fa-icon("diagram-previous"),
```typst #fa-diagram-project()```, fa-diagram-project(), fa-diagram-project(solid: true), fa-icon("diagram-project"),
```typst #fa-project-diagram()```, fa-project-diagram(), fa-project-diagram(solid: true), fa-icon("project-diagram"),
```typst #fa-diagram-sankey()```, fa-diagram-sankey(), fa-diagram-sankey(solid: true), fa-icon("diagram-sankey"),
```typst #fa-diagram-subtask()```, fa-diagram-subtask(), fa-diagram-subtask(solid: true), fa-icon("diagram-subtask"),
```typst #fa-diagram-successor()```, fa-diagram-successor(), fa-diagram-successor(solid: true), fa-icon("diagram-successor"),
```typst #fa-diagram-venn()```, fa-diagram-venn(), fa-diagram-venn(solid: true), fa-icon("diagram-venn"),
```typst #fa-dial()```, fa-dial(), fa-dial(solid: true), fa-icon("dial"),
```typst #fa-dial-med-high()```, fa-dial-med-high(), fa-dial-med-high(solid: true), fa-icon("dial-med-high"),
```typst #fa-dial-high()```, fa-dial-high(), fa-dial-high(solid: true), fa-icon("dial-high"),
```typst #fa-dial-low()```, fa-dial-low(), fa-dial-low(solid: true), fa-icon("dial-low"),
```typst #fa-dial-max()```, fa-dial-max(), fa-dial-max(solid: true), fa-icon("dial-max"),
```typst #fa-dial-med()```, fa-dial-med(), fa-dial-med(solid: true), fa-icon("dial-med"),
```typst #fa-dial-med-low()```, fa-dial-med-low(), fa-dial-med-low(solid: true), fa-icon("dial-med-low"),
```typst #fa-dial-min()```, fa-dial-min(), fa-dial-min(solid: true), fa-icon("dial-min"),
```typst #fa-dial-off()```, fa-dial-off(), fa-dial-off(solid: true), fa-icon("dial-off"),
```typst #fa-diamond()```, fa-diamond(), fa-diamond(solid: true), fa-icon("diamond"),
```typst #fa-diamond-exclamation()```, fa-diamond-exclamation(), fa-diamond-exclamation(solid: true), fa-icon("diamond-exclamation"),
```typst #fa-diamond-half()```, fa-diamond-half(), fa-diamond-half(solid: true), fa-icon("diamond-half"),
```typst #fa-diamond-half-stroke()```, fa-diamond-half-stroke(), fa-diamond-half-stroke(solid: true), fa-icon("diamond-half-stroke"),
```typst #fa-diamonds-4()```, fa-diamonds-4(), fa-diamonds-4(solid: true), fa-icon("diamonds-4"),
```typst #fa-diamond-turn-right()```, fa-diamond-turn-right(), fa-diamond-turn-right(solid: true), fa-icon("diamond-turn-right"),
```typst #fa-directions()```, fa-directions(), fa-directions(solid: true), fa-icon("directions"),
```typst #fa-diaspora()```, fa-diaspora(), fa-diaspora(solid: true), fa-icon("diaspora"),
```typst #fa-dice()```, fa-dice(), fa-dice(solid: true), fa-icon("dice"),
```typst #fa-dice-d10()```, fa-dice-d10(), fa-dice-d10(solid: true), fa-icon("dice-d10"),
```typst #fa-dice-d12()```, fa-dice-d12(), fa-dice-d12(solid: true), fa-icon("dice-d12"),
```typst #fa-dice-d20()```, fa-dice-d20(), fa-dice-d20(solid: true), fa-icon("dice-d20"),
```typst #fa-dice-d4()```, fa-dice-d4(), fa-dice-d4(solid: true), fa-icon("dice-d4"),
```typst #fa-dice-d6()```, fa-dice-d6(), fa-dice-d6(solid: true), fa-icon("dice-d6"),
```typst #fa-dice-d8()```, fa-dice-d8(), fa-dice-d8(solid: true), fa-icon("dice-d8"),
```typst #fa-dice-five()```, fa-dice-five(), fa-dice-five(solid: true), fa-icon("dice-five"),
```typst #fa-dice-four()```, fa-dice-four(), fa-dice-four(solid: true), fa-icon("dice-four"),
```typst #fa-dice-one()```, fa-dice-one(), fa-dice-one(solid: true), fa-icon("dice-one"),
```typst #fa-dice-six()```, fa-dice-six(), fa-dice-six(solid: true), fa-icon("dice-six"),
```typst #fa-dice-three()```, fa-dice-three(), fa-dice-three(solid: true), fa-icon("dice-three"),
```typst #fa-dice-two()```, fa-dice-two(), fa-dice-two(solid: true), fa-icon("dice-two"),
```typst #fa-digg()```, fa-digg(), fa-digg(solid: true), fa-icon("digg"),
```typst #fa-digital-ocean()```, fa-digital-ocean(), fa-digital-ocean(solid: true), fa-icon("digital-ocean"),
```typst #fa-dinosaur()```, fa-dinosaur(), fa-dinosaur(solid: true), fa-icon("dinosaur"),
```typst #fa-diploma()```, fa-diploma(), fa-diploma(solid: true), fa-icon("diploma"),
```typst #fa-scroll-ribbon()```, fa-scroll-ribbon(), fa-scroll-ribbon(solid: true), fa-icon("scroll-ribbon"),
```typst #fa-disc-drive()```, fa-disc-drive(), fa-disc-drive(solid: true), fa-icon("disc-drive"),
```typst #fa-discord()```, fa-discord(), fa-discord(solid: true), fa-icon("discord"),
```typst #fa-discourse()```, fa-discourse(), fa-discourse(solid: true), fa-icon("discourse"),
```typst #fa-disease()```, fa-disease(), fa-disease(solid: true), fa-icon("disease"),
```typst #fa-display()```, fa-display(), fa-display(solid: true), fa-icon("display"),
```typst #fa-display-arrow-down()```, fa-display-arrow-down(), fa-display-arrow-down(solid: true), fa-icon("display-arrow-down"),
```typst #fa-display-chart-up()```, fa-display-chart-up(), fa-display-chart-up(solid: true), fa-icon("display-chart-up"),
```typst #fa-display-chart-up-circle-currency()```, fa-display-chart-up-circle-currency(), fa-display-chart-up-circle-currency(solid: true), fa-icon("display-chart-up-circle-currency"),
```typst #fa-display-chart-up-circle-dollar()```, fa-display-chart-up-circle-dollar(), fa-display-chart-up-circle-dollar(solid: true), fa-icon("display-chart-up-circle-dollar"),
```typst #fa-display-code()```, fa-display-code(), fa-display-code(solid: true), fa-icon("display-code"),
```typst #fa-desktop-code()```, fa-desktop-code(), fa-desktop-code(solid: true), fa-icon("desktop-code"),
```typst #fa-display-medical()```, fa-display-medical(), fa-display-medical(solid: true), fa-icon("display-medical"),
```typst #fa-desktop-medical()```, fa-desktop-medical(), fa-desktop-medical(solid: true), fa-icon("desktop-medical"),
```typst #fa-display-slash()```, fa-display-slash(), fa-display-slash(solid: true), fa-icon("display-slash"),
```typst #fa-desktop-slash()```, fa-desktop-slash(), fa-desktop-slash(solid: true), fa-icon("desktop-slash"),
```typst #fa-distribute-spacing-horizontal()```, fa-distribute-spacing-horizontal(), fa-distribute-spacing-horizontal(solid: true), fa-icon("distribute-spacing-horizontal"),
```typst #fa-distribute-spacing-vertical()```, fa-distribute-spacing-vertical(), fa-distribute-spacing-vertical(solid: true), fa-icon("distribute-spacing-vertical"),
```typst #fa-ditto()```, fa-ditto(), fa-ditto(solid: true), fa-icon("ditto"),
```typst #fa-divide()```, fa-divide(), fa-divide(solid: true), fa-icon("divide"),
```typst #fa-dna()```, fa-dna(), fa-dna(solid: true), fa-icon("dna"),
```typst #fa-dochub()```, fa-dochub(), fa-dochub(solid: true), fa-icon("dochub"),
```typst #fa-docker()```, fa-docker(), fa-docker(solid: true), fa-icon("docker"),
```typst #fa-dog()```, fa-dog(), fa-dog(solid: true), fa-icon("dog"),
```typst #fa-dog-leashed()```, fa-dog-leashed(), fa-dog-leashed(solid: true), fa-icon("dog-leashed"),
```typst #fa-dollar-sign()```, fa-dollar-sign(), fa-dollar-sign(solid: true), fa-icon("dollar-sign"),
```typst #fa-dollar()```, fa-dollar(), fa-dollar(solid: true), fa-icon("dollar"),
```typst #fa-usd()```, fa-usd(), fa-usd(solid: true), fa-icon("usd"),
```typst #fa-dolly()```, fa-dolly(), fa-dolly(solid: true), fa-icon("dolly"),
```typst #fa-dolly-box()```, fa-dolly-box(), fa-dolly-box(solid: true), fa-icon("dolly-box"),
```typst #fa-dolly-empty()```, fa-dolly-empty(), fa-dolly-empty(solid: true), fa-icon("dolly-empty"),
```typst #fa-dolphin()```, fa-dolphin(), fa-dolphin(solid: true), fa-icon("dolphin"),
```typst #fa-dong-sign()```, fa-dong-sign(), fa-dong-sign(solid: true), fa-icon("dong-sign"),
```typst #fa-do-not-enter()```, fa-do-not-enter(), fa-do-not-enter(solid: true), fa-icon("do-not-enter"),
```typst #fa-donut()```, fa-donut(), fa-donut(solid: true), fa-icon("donut"),
```typst #fa-doughnut()```, fa-doughnut(), fa-doughnut(solid: true), fa-icon("doughnut"),
```typst #fa-door-closed()```, fa-door-closed(), fa-door-closed(solid: true), fa-icon("door-closed"),
```typst #fa-door-open()```, fa-door-open(), fa-door-open(solid: true), fa-icon("door-open"),
```typst #fa-dove()```, fa-dove(), fa-dove(solid: true), fa-icon("dove"),
```typst #fa-down()```, fa-down(), fa-down(solid: true), fa-icon("down"),
```typst #fa-arrow-alt-down()```, fa-arrow-alt-down(), fa-arrow-alt-down(solid: true), fa-icon("arrow-alt-down"),
```typst #fa-down-from-bracket()```, fa-down-from-bracket(), fa-down-from-bracket(solid: true), fa-icon("down-from-bracket"),
```typst #fa-down-from-dotted-line()```, fa-down-from-dotted-line(), fa-down-from-dotted-line(solid: true), fa-icon("down-from-dotted-line"),
```typst #fa-down-from-line()```, fa-down-from-line(), fa-down-from-line(solid: true), fa-icon("down-from-line"),
```typst #fa-arrow-alt-from-top()```, fa-arrow-alt-from-top(), fa-arrow-alt-from-top(solid: true), fa-icon("arrow-alt-from-top"),
```typst #fa-down-left()```, fa-down-left(), fa-down-left(solid: true), fa-icon("down-left"),
```typst #fa-down-left-and-up-right-to-center()```, fa-down-left-and-up-right-to-center(), fa-down-left-and-up-right-to-center(solid: true), fa-icon("down-left-and-up-right-to-center"),
```typst #fa-compress-alt()```, fa-compress-alt(), fa-compress-alt(solid: true), fa-icon("compress-alt"),
```typst #fa-download()```, fa-download(), fa-download(solid: true), fa-icon("download"),
```typst #fa-down-long()```, fa-down-long(), fa-down-long(solid: true), fa-icon("down-long"),
```typst #fa-long-arrow-alt-down()```, fa-long-arrow-alt-down(), fa-long-arrow-alt-down(solid: true), fa-icon("long-arrow-alt-down"),
```typst #fa-down-right()```, fa-down-right(), fa-down-right(solid: true), fa-icon("down-right"),
```typst #fa-down-to-bracket()```, fa-down-to-bracket(), fa-down-to-bracket(solid: true), fa-icon("down-to-bracket"),
```typst #fa-down-to-dotted-line()```, fa-down-to-dotted-line(), fa-down-to-dotted-line(solid: true), fa-icon("down-to-dotted-line"),
```typst #fa-down-to-line()```, fa-down-to-line(), fa-down-to-line(solid: true), fa-icon("down-to-line"),
```typst #fa-arrow-alt-to-bottom()```, fa-arrow-alt-to-bottom(), fa-arrow-alt-to-bottom(solid: true), fa-icon("arrow-alt-to-bottom"),
```typst #fa-draft2digital()```, fa-draft2digital(), fa-draft2digital(solid: true), fa-icon("draft2digital"),
```typst #fa-dragon()```, fa-dragon(), fa-dragon(solid: true), fa-icon("dragon"),
```typst #fa-draw-circle()```, fa-draw-circle(), fa-draw-circle(solid: true), fa-icon("draw-circle"),
```typst #fa-draw-polygon()```, fa-draw-polygon(), fa-draw-polygon(solid: true), fa-icon("draw-polygon"),
```typst #fa-draw-square()```, fa-draw-square(), fa-draw-square(solid: true), fa-icon("draw-square"),
```typst #fa-dreidel()```, fa-dreidel(), fa-dreidel(solid: true), fa-icon("dreidel"),
```typst #fa-dribbble()```, fa-dribbble(), fa-dribbble(solid: true), fa-icon("dribbble"),
```typst #fa-drone()```, fa-drone(), fa-drone(solid: true), fa-icon("drone"),
```typst #fa-drone-front()```, fa-drone-front(), fa-drone-front(solid: true), fa-icon("drone-front"),
```typst #fa-drone-alt()```, fa-drone-alt(), fa-drone-alt(solid: true), fa-icon("drone-alt"),
```typst #fa-dropbox()```, fa-dropbox(), fa-dropbox(solid: true), fa-icon("dropbox"),
```typst #fa-droplet()```, fa-droplet(), fa-droplet(solid: true), fa-icon("droplet"),
```typst #fa-tint()```, fa-tint(), fa-tint(solid: true), fa-icon("tint"),
```typst #fa-droplet-degree()```, fa-droplet-degree(), fa-droplet-degree(solid: true), fa-icon("droplet-degree"),
```typst #fa-dewpoint()```, fa-dewpoint(), fa-dewpoint(solid: true), fa-icon("dewpoint"),
```typst #fa-droplet-percent()```, fa-droplet-percent(), fa-droplet-percent(solid: true), fa-icon("droplet-percent"),
```typst #fa-humidity()```, fa-humidity(), fa-humidity(solid: true), fa-icon("humidity"),
```typst #fa-droplet-slash()```, fa-droplet-slash(), fa-droplet-slash(solid: true), fa-icon("droplet-slash"),
```typst #fa-tint-slash()```, fa-tint-slash(), fa-tint-slash(solid: true), fa-icon("tint-slash"),
```typst #fa-drum()```, fa-drum(), fa-drum(solid: true), fa-icon("drum"),
```typst #fa-drum-steelpan()```, fa-drum-steelpan(), fa-drum-steelpan(solid: true), fa-icon("drum-steelpan"),
```typst #fa-drumstick()```, fa-drumstick(), fa-drumstick(solid: true), fa-icon("drumstick"),
```typst #fa-drumstick-bite()```, fa-drumstick-bite(), fa-drumstick-bite(solid: true), fa-icon("drumstick-bite"),
```typst #fa-drupal()```, fa-drupal(), fa-drupal(solid: true), fa-icon("drupal"),
```typst #fa-dryer()```, fa-dryer(), fa-dryer(solid: true), fa-icon("dryer"),
```typst #fa-dryer-heat()```, fa-dryer-heat(), fa-dryer-heat(solid: true), fa-icon("dryer-heat"),
```typst #fa-dryer-alt()```, fa-dryer-alt(), fa-dryer-alt(solid: true), fa-icon("dryer-alt"),
```typst #fa-duck()```, fa-duck(), fa-duck(solid: true), fa-icon("duck"),
```typst #fa-dumbbell()```, fa-dumbbell(), fa-dumbbell(solid: true), fa-icon("dumbbell"),
```typst #fa-dumpster()```, fa-dumpster(), fa-dumpster(solid: true), fa-icon("dumpster"),
```typst #fa-dumpster-fire()```, fa-dumpster-fire(), fa-dumpster-fire(solid: true), fa-icon("dumpster-fire"),
```typst #fa-dungeon()```, fa-dungeon(), fa-dungeon(solid: true), fa-icon("dungeon"),
```typst #fa-dyalog()```, fa-dyalog(), fa-dyalog(solid: true), fa-icon("dyalog"),
```typst #fa-e()```, fa-e(), fa-e(solid: true), fa-icon("e"),
```typst #fa-ear()```, fa-ear(), fa-ear(solid: true), fa-icon("ear"),
```typst #fa-ear-deaf()```, fa-ear-deaf(), fa-ear-deaf(solid: true), fa-icon("ear-deaf"),
```typst #fa-deaf()```, fa-deaf(), fa-deaf(solid: true), fa-icon("deaf"),
```typst #fa-deafness()```, fa-deafness(), fa-deafness(solid: true), fa-icon("deafness"),
```typst #fa-hard-of-hearing()```, fa-hard-of-hearing(), fa-hard-of-hearing(solid: true), fa-icon("hard-of-hearing"),
```typst #fa-ear-listen()```, fa-ear-listen(), fa-ear-listen(solid: true), fa-icon("ear-listen"),
```typst #fa-assistive-listening-systems()```, fa-assistive-listening-systems(), fa-assistive-listening-systems(solid: true), fa-icon("assistive-listening-systems"),
```typst #fa-earlybirds()```, fa-earlybirds(), fa-earlybirds(solid: true), fa-icon("earlybirds"),
```typst #fa-ear-muffs()```, fa-ear-muffs(), fa-ear-muffs(solid: true), fa-icon("ear-muffs"),
```typst #fa-earth-africa()```, fa-earth-africa(), fa-earth-africa(solid: true), fa-icon("earth-africa"),
```typst #fa-globe-africa()```, fa-globe-africa(), fa-globe-africa(solid: true), fa-icon("globe-africa"),
```typst #fa-earth-americas()```, fa-earth-americas(), fa-earth-americas(solid: true), fa-icon("earth-americas"),
```typst #fa-earth()```, fa-earth(), fa-earth(solid: true), fa-icon("earth"),
```typst #fa-earth-america()```, fa-earth-america(), fa-earth-america(solid: true), fa-icon("earth-america"),
```typst #fa-globe-americas()```, fa-globe-americas(), fa-globe-americas(solid: true), fa-icon("globe-americas"),
```typst #fa-earth-asia()```, fa-earth-asia(), fa-earth-asia(solid: true), fa-icon("earth-asia"),
```typst #fa-globe-asia()```, fa-globe-asia(), fa-globe-asia(solid: true), fa-icon("globe-asia"),
```typst #fa-earth-europe()```, fa-earth-europe(), fa-earth-europe(solid: true), fa-icon("earth-europe"),
```typst #fa-globe-europe()```, fa-globe-europe(), fa-globe-europe(solid: true), fa-icon("globe-europe"),
```typst #fa-earth-oceania()```, fa-earth-oceania(), fa-earth-oceania(solid: true), fa-icon("earth-oceania"),
```typst #fa-globe-oceania()```, fa-globe-oceania(), fa-globe-oceania(solid: true), fa-icon("globe-oceania"),
```typst #fa-ebay()```, fa-ebay(), fa-ebay(solid: true), fa-icon("ebay"),
```typst #fa-eclipse()```, fa-eclipse(), fa-eclipse(solid: true), fa-icon("eclipse"),
```typst #fa-edge()```, fa-edge(), fa-edge(solid: true), fa-icon("edge"),
```typst #fa-edge-legacy()```, fa-edge-legacy(), fa-edge-legacy(solid: true), fa-icon("edge-legacy"),
```typst #fa-egg()```, fa-egg(), fa-egg(solid: true), fa-icon("egg"),
```typst #fa-egg-fried()```, fa-egg-fried(), fa-egg-fried(solid: true), fa-icon("egg-fried"),
```typst #fa-eggplant()```, fa-eggplant(), fa-eggplant(solid: true), fa-icon("eggplant"),
```typst #fa-eject()```, fa-eject(), fa-eject(solid: true), fa-icon("eject"),
```typst #fa-elementor()```, fa-elementor(), fa-elementor(solid: true), fa-icon("elementor"),
```typst #fa-elephant()```, fa-elephant(), fa-elephant(solid: true), fa-icon("elephant"),
```typst #fa-elevator()```, fa-elevator(), fa-elevator(solid: true), fa-icon("elevator"),
```typst #fa-ellipsis()```, fa-ellipsis(), fa-ellipsis(solid: true), fa-icon("ellipsis"),
```typst #fa-ellipsis-h()```, fa-ellipsis-h(), fa-ellipsis-h(solid: true), fa-icon("ellipsis-h"),
```typst #fa-ellipsis-stroke()```, fa-ellipsis-stroke(), fa-ellipsis-stroke(solid: true), fa-icon("ellipsis-stroke"),
```typst #fa-ellipsis-h-alt()```, fa-ellipsis-h-alt(), fa-ellipsis-h-alt(solid: true), fa-icon("ellipsis-h-alt"),
```typst #fa-ellipsis-stroke-vertical()```, fa-ellipsis-stroke-vertical(), fa-ellipsis-stroke-vertical(solid: true), fa-icon("ellipsis-stroke-vertical"),
```typst #fa-ellipsis-v-alt()```, fa-ellipsis-v-alt(), fa-ellipsis-v-alt(solid: true), fa-icon("ellipsis-v-alt"),
```typst #fa-ellipsis-vertical()```, fa-ellipsis-vertical(), fa-ellipsis-vertical(solid: true), fa-icon("ellipsis-vertical"),
```typst #fa-ellipsis-v()```, fa-ellipsis-v(), fa-ellipsis-v(solid: true), fa-icon("ellipsis-v"),
```typst #fa-ello()```, fa-ello(), fa-ello(solid: true), fa-icon("ello"),
```typst #fa-ember()```, fa-ember(), fa-ember(solid: true), fa-icon("ember"),
```typst #fa-empire()```, fa-empire(), fa-empire(solid: true), fa-icon("empire"),
```typst #fa-empty-set()```, fa-empty-set(), fa-empty-set(solid: true), fa-icon("empty-set"),
```typst #fa-engine()```, fa-engine(), fa-engine(solid: true), fa-icon("engine"),
```typst #fa-engine-warning()```, fa-engine-warning(), fa-engine-warning(solid: true), fa-icon("engine-warning"),
```typst #fa-engine-exclamation()```, fa-engine-exclamation(), fa-engine-exclamation(solid: true), fa-icon("engine-exclamation"),
```typst #fa-envelope()```, fa-envelope(), fa-envelope(solid: true), fa-icon("envelope"),
```typst #fa-envelope-circle-check()```, fa-envelope-circle-check(), fa-envelope-circle-check(solid: true), fa-icon("envelope-circle-check"),
```typst #fa-envelope-dot()```, fa-envelope-dot(), fa-envelope-dot(solid: true), fa-icon("envelope-dot"),
```typst #fa-envelope-badge()```, fa-envelope-badge(), fa-envelope-badge(solid: true), fa-icon("envelope-badge"),
```typst #fa-envelope-open()```, fa-envelope-open(), fa-envelope-open(solid: true), fa-icon("envelope-open"),
```typst #fa-envelope-open-dollar()```, fa-envelope-open-dollar(), fa-envelope-open-dollar(solid: true), fa-icon("envelope-open-dollar"),
```typst #fa-envelope-open-text()```, fa-envelope-open-text(), fa-envelope-open-text(solid: true), fa-icon("envelope-open-text"),
```typst #fa-envelopes()```, fa-envelopes(), fa-envelopes(solid: true), fa-icon("envelopes"),
```typst #fa-envelopes-bulk()```, fa-envelopes-bulk(), fa-envelopes-bulk(solid: true), fa-icon("envelopes-bulk"),
```typst #fa-mail-bulk()```, fa-mail-bulk(), fa-mail-bulk(solid: true), fa-icon("mail-bulk"),
```typst #fa-envira()```, fa-envira(), fa-envira(solid: true), fa-icon("envira"),
```typst #fa-equals()```, fa-equals(), fa-equals(solid: true), fa-icon("equals"),
```typst #fa-eraser()```, fa-eraser(), fa-eraser(solid: true), fa-icon("eraser"),
```typst #fa-erlang()```, fa-erlang(), fa-erlang(solid: true), fa-icon("erlang"),
```typst #fa-escalator()```, fa-escalator(), fa-escalator(solid: true), fa-icon("escalator"),
```typst #fa-ethereum()```, fa-ethereum(), fa-ethereum(solid: true), fa-icon("ethereum"),
```typst #fa-ethernet()```, fa-ethernet(), fa-ethernet(solid: true), fa-icon("ethernet"),
```typst #fa-etsy()```, fa-etsy(), fa-etsy(solid: true), fa-icon("etsy"),
```typst #fa-euro-sign()```, fa-euro-sign(), fa-euro-sign(solid: true), fa-icon("euro-sign"),
```typst #fa-eur()```, fa-eur(), fa-eur(solid: true), fa-icon("eur"),
```typst #fa-euro()```, fa-euro(), fa-euro(solid: true), fa-icon("euro"),
```typst #fa-evernote()```, fa-evernote(), fa-evernote(solid: true), fa-icon("evernote"),
```typst #fa-excavator()```, fa-excavator(), fa-excavator(solid: true), fa-icon("excavator"),
```typst #fa-exclamation()```, fa-exclamation(), fa-exclamation(solid: true), fa-icon("exclamation"),
```typst #fa-expand()```, fa-expand(), fa-expand(solid: true), fa-icon("expand"),
```typst #fa-expand-wide()```, fa-expand-wide(), fa-expand-wide(solid: true), fa-icon("expand-wide"),
```typst #fa-expeditedssl()```, fa-expeditedssl(), fa-expeditedssl(solid: true), fa-icon("expeditedssl"),
```typst #fa-explosion()```, fa-explosion(), fa-explosion(solid: true), fa-icon("explosion"),
```typst #fa-eye()```, fa-eye(), fa-eye(solid: true), fa-icon("eye"),
```typst #fa-eye-dropper()```, fa-eye-dropper(), fa-eye-dropper(solid: true), fa-icon("eye-dropper"),
```typst #fa-eye-dropper-empty()```, fa-eye-dropper-empty(), fa-eye-dropper-empty(solid: true), fa-icon("eye-dropper-empty"),
```typst #fa-eyedropper()```, fa-eyedropper(), fa-eyedropper(solid: true), fa-icon("eyedropper"),
```typst #fa-eye-dropper-full()```, fa-eye-dropper-full(), fa-eye-dropper-full(solid: true), fa-icon("eye-dropper-full"),
```typst #fa-eye-dropper-half()```, fa-eye-dropper-half(), fa-eye-dropper-half(solid: true), fa-icon("eye-dropper-half"),
```typst #fa-eye-evil()```, fa-eye-evil(), fa-eye-evil(solid: true), fa-icon("eye-evil"),
```typst #fa-eye-low-vision()```, fa-eye-low-vision(), fa-eye-low-vision(solid: true), fa-icon("eye-low-vision"),
```typst #fa-low-vision()```, fa-low-vision(), fa-low-vision(solid: true), fa-icon("low-vision"),
```typst #fa-eyes()```, fa-eyes(), fa-eyes(solid: true), fa-icon("eyes"),
```typst #fa-eye-slash()```, fa-eye-slash(), fa-eye-slash(solid: true), fa-icon("eye-slash"),
```typst #fa-f()```, fa-f(), fa-f(solid: true), fa-icon("f"),
```typst #fa-face-angry()```, fa-face-angry(), fa-face-angry(solid: true), fa-icon("face-angry"),
```typst #fa-angry()```, fa-angry(), fa-angry(solid: true), fa-icon("angry"),
```typst #fa-face-angry-horns()```, fa-face-angry-horns(), fa-face-angry-horns(solid: true), fa-icon("face-angry-horns"),
```typst #fa-face-anguished()```, fa-face-anguished(), fa-face-anguished(solid: true), fa-icon("face-anguished"),
```typst #fa-face-anxious-sweat()```, fa-face-anxious-sweat(), fa-face-anxious-sweat(solid: true), fa-icon("face-anxious-sweat"),
```typst #fa-face-astonished()```, fa-face-astonished(), fa-face-astonished(solid: true), fa-icon("face-astonished"),
```typst #fa-face-awesome()```, fa-face-awesome(), fa-face-awesome(solid: true), fa-icon("face-awesome"),
```typst #fa-gave-dandy()```, fa-gave-dandy(), fa-gave-dandy(solid: true), fa-icon("gave-dandy"),
```typst #fa-face-beam-hand-over-mouth()```, fa-face-beam-hand-over-mouth(), fa-face-beam-hand-over-mouth(solid: true), fa-icon("face-beam-hand-over-mouth"),
```typst #fa-facebook()```, fa-facebook(), fa-facebook(solid: true), fa-icon("facebook"),
```typst #fa-facebook-f()```, fa-facebook-f(), fa-facebook-f(solid: true), fa-icon("facebook-f"),
```typst #fa-facebook-messenger()```, fa-facebook-messenger(), fa-facebook-messenger(solid: true), fa-icon("facebook-messenger"),
```typst #fa-face-clouds()```, fa-face-clouds(), fa-face-clouds(solid: true), fa-icon("face-clouds"),
```typst #fa-face-confounded()```, fa-face-confounded(), fa-face-confounded(solid: true), fa-icon("face-confounded"),
```typst #fa-face-confused()```, fa-face-confused(), fa-face-confused(solid: true), fa-icon("face-confused"),
```typst #fa-face-cowboy-hat()```, fa-face-cowboy-hat(), fa-face-cowboy-hat(solid: true), fa-icon("face-cowboy-hat"),
```typst #fa-face-diagonal-mouth()```, fa-face-diagonal-mouth(), fa-face-diagonal-mouth(solid: true), fa-icon("face-diagonal-mouth"),
```typst #fa-face-disappointed()```, fa-face-disappointed(), fa-face-disappointed(solid: true), fa-icon("face-disappointed"),
```typst #fa-face-disguise()```, fa-face-disguise(), fa-face-disguise(solid: true), fa-icon("face-disguise"),
```typst #fa-face-dizzy()```, fa-face-dizzy(), fa-face-dizzy(solid: true), fa-icon("face-dizzy"),
```typst #fa-dizzy()```, fa-dizzy(), fa-dizzy(solid: true), fa-icon("dizzy"),
```typst #fa-face-dotted()```, fa-face-dotted(), fa-face-dotted(solid: true), fa-icon("face-dotted"),
```typst #fa-face-downcast-sweat()```, fa-face-downcast-sweat(), fa-face-downcast-sweat(solid: true), fa-icon("face-downcast-sweat"),
```typst #fa-face-drooling()```, fa-face-drooling(), fa-face-drooling(solid: true), fa-icon("face-drooling"),
```typst #fa-face-exhaling()```, fa-face-exhaling(), fa-face-exhaling(solid: true), fa-icon("face-exhaling"),
```typst #fa-face-explode()```, fa-face-explode(), fa-face-explode(solid: true), fa-icon("face-explode"),
```typst #fa-exploding-head()```, fa-exploding-head(), fa-exploding-head(solid: true), fa-icon("exploding-head"),
```typst #fa-face-expressionless()```, fa-face-expressionless(), fa-face-expressionless(solid: true), fa-icon("face-expressionless"),
```typst #fa-face-eyes-xmarks()```, fa-face-eyes-xmarks(), fa-face-eyes-xmarks(solid: true), fa-icon("face-eyes-xmarks"),
```typst #fa-face-fearful()```, fa-face-fearful(), fa-face-fearful(solid: true), fa-icon("face-fearful"),
```typst #fa-face-flushed()```, fa-face-flushed(), fa-face-flushed(solid: true), fa-icon("face-flushed"),
```typst #fa-flushed()```, fa-flushed(), fa-flushed(solid: true), fa-icon("flushed"),
```typst #fa-face-frown()```, fa-face-frown(), fa-face-frown(solid: true), fa-icon("face-frown"),
```typst #fa-frown()```, fa-frown(), fa-frown(solid: true), fa-icon("frown"),
```typst #fa-face-frown-open()```, fa-face-frown-open(), fa-face-frown-open(solid: true), fa-icon("face-frown-open"),
```typst #fa-frown-open()```, fa-frown-open(), fa-frown-open(solid: true), fa-icon("frown-open"),
```typst #fa-face-frown-slight()```, fa-face-frown-slight(), fa-face-frown-slight(solid: true), fa-icon("face-frown-slight"),
```typst #fa-face-glasses()```, fa-face-glasses(), fa-face-glasses(solid: true), fa-icon("face-glasses"),
```typst #fa-face-grimace()```, fa-face-grimace(), fa-face-grimace(solid: true), fa-icon("face-grimace"),
```typst #fa-grimace()```, fa-grimace(), fa-grimace(solid: true), fa-icon("grimace"),
```typst #fa-face-grin()```, fa-face-grin(), fa-face-grin(solid: true), fa-icon("face-grin"),
```typst #fa-grin()```, fa-grin(), fa-grin(solid: true), fa-icon("grin"),
```typst #fa-face-grin-beam()```, fa-face-grin-beam(), fa-face-grin-beam(solid: true), fa-icon("face-grin-beam"),
```typst #fa-grin-beam()```, fa-grin-beam(), fa-grin-beam(solid: true), fa-icon("grin-beam"),
```typst #fa-face-grin-beam-sweat()```, fa-face-grin-beam-sweat(), fa-face-grin-beam-sweat(solid: true), fa-icon("face-grin-beam-sweat"),
```typst #fa-grin-beam-sweat()```, fa-grin-beam-sweat(), fa-grin-beam-sweat(solid: true), fa-icon("grin-beam-sweat"),
```typst #fa-face-grin-hearts()```, fa-face-grin-hearts(), fa-face-grin-hearts(solid: true), fa-icon("face-grin-hearts"),
```typst #fa-grin-hearts()```, fa-grin-hearts(), fa-grin-hearts(solid: true), fa-icon("grin-hearts"),
```typst #fa-face-grin-squint()```, fa-face-grin-squint(), fa-face-grin-squint(solid: true), fa-icon("face-grin-squint"),
```typst #fa-grin-squint()```, fa-grin-squint(), fa-grin-squint(solid: true), fa-icon("grin-squint"),
```typst #fa-face-grin-squint-tears()```, fa-face-grin-squint-tears(), fa-face-grin-squint-tears(solid: true), fa-icon("face-grin-squint-tears"),
```typst #fa-grin-squint-tears()```, fa-grin-squint-tears(), fa-grin-squint-tears(solid: true), fa-icon("grin-squint-tears"),
```typst #fa-face-grin-stars()```, fa-face-grin-stars(), fa-face-grin-stars(solid: true), fa-icon("face-grin-stars"),
```typst #fa-grin-stars()```, fa-grin-stars(), fa-grin-stars(solid: true), fa-icon("grin-stars"),
```typst #fa-face-grin-tears()```, fa-face-grin-tears(), fa-face-grin-tears(solid: true), fa-icon("face-grin-tears"),
```typst #fa-grin-tears()```, fa-grin-tears(), fa-grin-tears(solid: true), fa-icon("grin-tears"),
```typst #fa-face-grin-tongue()```, fa-face-grin-tongue(), fa-face-grin-tongue(solid: true), fa-icon("face-grin-tongue"),
```typst #fa-grin-tongue()```, fa-grin-tongue(), fa-grin-tongue(solid: true), fa-icon("grin-tongue"),
```typst #fa-face-grin-tongue-squint()```, fa-face-grin-tongue-squint(), fa-face-grin-tongue-squint(solid: true), fa-icon("face-grin-tongue-squint"),
```typst #fa-grin-tongue-squint()```, fa-grin-tongue-squint(), fa-grin-tongue-squint(solid: true), fa-icon("grin-tongue-squint"),
```typst #fa-face-grin-tongue-wink()```, fa-face-grin-tongue-wink(), fa-face-grin-tongue-wink(solid: true), fa-icon("face-grin-tongue-wink"),
```typst #fa-grin-tongue-wink()```, fa-grin-tongue-wink(), fa-grin-tongue-wink(solid: true), fa-icon("grin-tongue-wink"),
```typst #fa-face-grin-wide()```, fa-face-grin-wide(), fa-face-grin-wide(solid: true), fa-icon("face-grin-wide"),
```typst #fa-grin-alt()```, fa-grin-alt(), fa-grin-alt(solid: true), fa-icon("grin-alt"),
```typst #fa-face-grin-wink()```, fa-face-grin-wink(), fa-face-grin-wink(solid: true), fa-icon("face-grin-wink"),
```typst #fa-grin-wink()```, fa-grin-wink(), fa-grin-wink(solid: true), fa-icon("grin-wink"),
```typst #fa-face-hand-over-mouth()```, fa-face-hand-over-mouth(), fa-face-hand-over-mouth(solid: true), fa-icon("face-hand-over-mouth"),
```typst #fa-face-hand-peeking()```, fa-face-hand-peeking(), fa-face-hand-peeking(solid: true), fa-icon("face-hand-peeking"),
```typst #fa-face-hand-yawn()```, fa-face-hand-yawn(), fa-face-hand-yawn(solid: true), fa-icon("face-hand-yawn"),
```typst #fa-face-head-bandage()```, fa-face-head-bandage(), fa-face-head-bandage(solid: true), fa-icon("face-head-bandage"),
```typst #fa-face-holding-back-tears()```, fa-face-holding-back-tears(), fa-face-holding-back-tears(solid: true), fa-icon("face-holding-back-tears"),
```typst #fa-face-hushed()```, fa-face-hushed(), fa-face-hushed(solid: true), fa-icon("face-hushed"),
```typst #fa-face-icicles()```, fa-face-icicles(), fa-face-icicles(solid: true), fa-icon("face-icicles"),
```typst #fa-face-kiss()```, fa-face-kiss(), fa-face-kiss(solid: true), fa-icon("face-kiss"),
```typst #fa-kiss()```, fa-kiss(), fa-kiss(solid: true), fa-icon("kiss"),
```typst #fa-face-kiss-beam()```, fa-face-kiss-beam(), fa-face-kiss-beam(solid: true), fa-icon("face-kiss-beam"),
```typst #fa-kiss-beam()```, fa-kiss-beam(), fa-kiss-beam(solid: true), fa-icon("kiss-beam"),
```typst #fa-face-kiss-closed-eyes()```, fa-face-kiss-closed-eyes(), fa-face-kiss-closed-eyes(solid: true), fa-icon("face-kiss-closed-eyes"),
```typst #fa-face-kiss-wink-heart()```, fa-face-kiss-wink-heart(), fa-face-kiss-wink-heart(solid: true), fa-icon("face-kiss-wink-heart"),
```typst #fa-kiss-wink-heart()```, fa-kiss-wink-heart(), fa-kiss-wink-heart(solid: true), fa-icon("kiss-wink-heart"),
```typst #fa-face-laugh()```, fa-face-laugh(), fa-face-laugh(solid: true), fa-icon("face-laugh"),
```typst #fa-laugh()```, fa-laugh(), fa-laugh(solid: true), fa-icon("laugh"),
```typst #fa-face-laugh-beam()```, fa-face-laugh-beam(), fa-face-laugh-beam(solid: true), fa-icon("face-laugh-beam"),
```typst #fa-laugh-beam()```, fa-laugh-beam(), fa-laugh-beam(solid: true), fa-icon("laugh-beam"),
```typst #fa-face-laugh-squint()```, fa-face-laugh-squint(), fa-face-laugh-squint(solid: true), fa-icon("face-laugh-squint"),
```typst #fa-laugh-squint()```, fa-laugh-squint(), fa-laugh-squint(solid: true), fa-icon("laugh-squint"),
```typst #fa-face-laugh-wink()```, fa-face-laugh-wink(), fa-face-laugh-wink(solid: true), fa-icon("face-laugh-wink"),
```typst #fa-laugh-wink()```, fa-laugh-wink(), fa-laugh-wink(solid: true), fa-icon("laugh-wink"),
```typst #fa-face-lying()```, fa-face-lying(), fa-face-lying(solid: true), fa-icon("face-lying"),
```typst #fa-face-mask()```, fa-face-mask(), fa-face-mask(solid: true), fa-icon("face-mask"),
```typst #fa-face-meh()```, fa-face-meh(), fa-face-meh(solid: true), fa-icon("face-meh"),
```typst #fa-meh()```, fa-meh(), fa-meh(solid: true), fa-icon("meh"),
```typst #fa-face-meh-blank()```, fa-face-meh-blank(), fa-face-meh-blank(solid: true), fa-icon("face-meh-blank"),
```typst #fa-meh-blank()```, fa-meh-blank(), fa-meh-blank(solid: true), fa-icon("meh-blank"),
```typst #fa-face-melting()```, fa-face-melting(), fa-face-melting(solid: true), fa-icon("face-melting"),
```typst #fa-face-monocle()```, fa-face-monocle(), fa-face-monocle(solid: true), fa-icon("face-monocle"),
```typst #fa-face-nauseated()```, fa-face-nauseated(), fa-face-nauseated(solid: true), fa-icon("face-nauseated"),
```typst #fa-face-nose-steam()```, fa-face-nose-steam(), fa-face-nose-steam(solid: true), fa-icon("face-nose-steam"),
```typst #fa-face-party()```, fa-face-party(), fa-face-party(solid: true), fa-icon("face-party"),
```typst #fa-face-pensive()```, fa-face-pensive(), fa-face-pensive(solid: true), fa-icon("face-pensive"),
```typst #fa-face-persevering()```, fa-face-persevering(), fa-face-persevering(solid: true), fa-icon("face-persevering"),
```typst #fa-face-pleading()```, fa-face-pleading(), fa-face-pleading(solid: true), fa-icon("face-pleading"),
```typst #fa-face-pouting()```, fa-face-pouting(), fa-face-pouting(solid: true), fa-icon("face-pouting"),
```typst #fa-face-raised-eyebrow()```, fa-face-raised-eyebrow(), fa-face-raised-eyebrow(solid: true), fa-icon("face-raised-eyebrow"),
```typst #fa-face-relieved()```, fa-face-relieved(), fa-face-relieved(solid: true), fa-icon("face-relieved"),
```typst #fa-face-rolling-eyes()```, fa-face-rolling-eyes(), fa-face-rolling-eyes(solid: true), fa-icon("face-rolling-eyes"),
```typst #fa-meh-rolling-eyes()```, fa-meh-rolling-eyes(), fa-meh-rolling-eyes(solid: true), fa-icon("meh-rolling-eyes"),
```typst #fa-face-sad-cry()```, fa-face-sad-cry(), fa-face-sad-cry(solid: true), fa-icon("face-sad-cry"),
```typst #fa-sad-cry()```, fa-sad-cry(), fa-sad-cry(solid: true), fa-icon("sad-cry"),
```typst #fa-face-sad-sweat()```, fa-face-sad-sweat(), fa-face-sad-sweat(solid: true), fa-icon("face-sad-sweat"),
```typst #fa-face-sad-tear()```, fa-face-sad-tear(), fa-face-sad-tear(solid: true), fa-icon("face-sad-tear"),
```typst #fa-sad-tear()```, fa-sad-tear(), fa-sad-tear(solid: true), fa-icon("sad-tear"),
```typst #fa-face-saluting()```, fa-face-saluting(), fa-face-saluting(solid: true), fa-icon("face-saluting"),
```typst #fa-face-scream()```, fa-face-scream(), fa-face-scream(solid: true), fa-icon("face-scream"),
```typst #fa-face-shush()```, fa-face-shush(), fa-face-shush(solid: true), fa-icon("face-shush"),
```typst #fa-face-sleeping()```, fa-face-sleeping(), fa-face-sleeping(solid: true), fa-icon("face-sleeping"),
```typst #fa-face-sleepy()```, fa-face-sleepy(), fa-face-sleepy(solid: true), fa-icon("face-sleepy"),
```typst #fa-face-smile()```, fa-face-smile(), fa-face-smile(solid: true), fa-icon("face-smile"),
```typst #fa-smile()```, fa-smile(), fa-smile(solid: true), fa-icon("smile"),
```typst #fa-face-smile-beam()```, fa-face-smile-beam(), fa-face-smile-beam(solid: true), fa-icon("face-smile-beam"),
```typst #fa-smile-beam()```, fa-smile-beam(), fa-smile-beam(solid: true), fa-icon("smile-beam"),
```typst #fa-face-smile-halo()```, fa-face-smile-halo(), fa-face-smile-halo(solid: true), fa-icon("face-smile-halo"),
```typst #fa-face-smile-hearts()```, fa-face-smile-hearts(), fa-face-smile-hearts(solid: true), fa-icon("face-smile-hearts"),
```typst #fa-face-smile-horns()```, fa-face-smile-horns(), fa-face-smile-horns(solid: true), fa-icon("face-smile-horns"),
```typst #fa-face-smile-plus()```, fa-face-smile-plus(), fa-face-smile-plus(solid: true), fa-icon("face-smile-plus"),
```typst #fa-smile-plus()```, fa-smile-plus(), fa-smile-plus(solid: true), fa-icon("smile-plus"),
```typst #fa-face-smile-relaxed()```, fa-face-smile-relaxed(), fa-face-smile-relaxed(solid: true), fa-icon("face-smile-relaxed"),
```typst #fa-face-smile-tear()```, fa-face-smile-tear(), fa-face-smile-tear(solid: true), fa-icon("face-smile-tear"),
```typst #fa-face-smile-tongue()```, fa-face-smile-tongue(), fa-face-smile-tongue(solid: true), fa-icon("face-smile-tongue"),
```typst #fa-face-smile-upside-down()```, fa-face-smile-upside-down(), fa-face-smile-upside-down(solid: true), fa-icon("face-smile-upside-down"),
```typst #fa-face-smile-wink()```, fa-face-smile-wink(), fa-face-smile-wink(solid: true), fa-icon("face-smile-wink"),
```typst #fa-smile-wink()```, fa-smile-wink(), fa-smile-wink(solid: true), fa-icon("smile-wink"),
```typst #fa-face-smiling-hands()```, fa-face-smiling-hands(), fa-face-smiling-hands(solid: true), fa-icon("face-smiling-hands"),
```typst #fa-face-smirking()```, fa-face-smirking(), fa-face-smirking(solid: true), fa-icon("face-smirking"),
```typst #fa-face-spiral-eyes()```, fa-face-spiral-eyes(), fa-face-spiral-eyes(solid: true), fa-icon("face-spiral-eyes"),
```typst #fa-face-sunglasses()```, fa-face-sunglasses(), fa-face-sunglasses(solid: true), fa-icon("face-sunglasses"),
```typst #fa-face-surprise()```, fa-face-surprise(), fa-face-surprise(solid: true), fa-icon("face-surprise"),
```typst #fa-surprise()```, fa-surprise(), fa-surprise(solid: true), fa-icon("surprise"),
```typst #fa-face-swear()```, fa-face-swear(), fa-face-swear(solid: true), fa-icon("face-swear"),
```typst #fa-face-thermometer()```, fa-face-thermometer(), fa-face-thermometer(solid: true), fa-icon("face-thermometer"),
```typst #fa-face-thinking()```, fa-face-thinking(), fa-face-thinking(solid: true), fa-icon("face-thinking"),
```typst #fa-face-tired()```, fa-face-tired(), fa-face-tired(solid: true), fa-icon("face-tired"),
```typst #fa-tired()```, fa-tired(), fa-tired(solid: true), fa-icon("tired"),
```typst #fa-face-tissue()```, fa-face-tissue(), fa-face-tissue(solid: true), fa-icon("face-tissue"),
```typst #fa-face-tongue-money()```, fa-face-tongue-money(), fa-face-tongue-money(solid: true), fa-icon("face-tongue-money"),
```typst #fa-face-tongue-sweat()```, fa-face-tongue-sweat(), fa-face-tongue-sweat(solid: true), fa-icon("face-tongue-sweat"),
```typst #fa-face-unamused()```, fa-face-unamused(), fa-face-unamused(solid: true), fa-icon("face-unamused"),
```typst #fa-face-viewfinder()```, fa-face-viewfinder(), fa-face-viewfinder(solid: true), fa-icon("face-viewfinder"),
```typst #fa-face-vomit()```, fa-face-vomit(), fa-face-vomit(solid: true), fa-icon("face-vomit"),
```typst #fa-face-weary()```, fa-face-weary(), fa-face-weary(solid: true), fa-icon("face-weary"),
```typst #fa-face-woozy()```, fa-face-woozy(), fa-face-woozy(solid: true), fa-icon("face-woozy"),
```typst #fa-face-worried()```, fa-face-worried(), fa-face-worried(solid: true), fa-icon("face-worried"),
```typst #fa-face-zany()```, fa-face-zany(), fa-face-zany(solid: true), fa-icon("face-zany"),
```typst #fa-face-zipper()```, fa-face-zipper(), fa-face-zipper(solid: true), fa-icon("face-zipper"),
```typst #fa-falafel()```, fa-falafel(), fa-falafel(solid: true), fa-icon("falafel"),
```typst #fa-family()```, fa-family(), fa-family(solid: true), fa-icon("family"),
```typst #fa-family-dress()```, fa-family-dress(), fa-family-dress(solid: true), fa-icon("family-dress"),
```typst #fa-family-pants()```, fa-family-pants(), fa-family-pants(solid: true), fa-icon("family-pants"),
```typst #fa-fan()```, fa-fan(), fa-fan(solid: true), fa-icon("fan"),
```typst #fa-fan-table()```, fa-fan-table(), fa-fan-table(solid: true), fa-icon("fan-table"),
```typst #fa-fantasy-flight-games()```, fa-fantasy-flight-games(), fa-fantasy-flight-games(solid: true), fa-icon("fantasy-flight-games"),
```typst #fa-farm()```, fa-farm(), fa-farm(solid: true), fa-icon("farm"),
```typst #fa-barn-silo()```, fa-barn-silo(), fa-barn-silo(solid: true), fa-icon("barn-silo"),
```typst #fa-faucet()```, fa-faucet(), fa-faucet(solid: true), fa-icon("faucet"),
```typst #fa-faucet-drip()```, fa-faucet-drip(), fa-faucet-drip(solid: true), fa-icon("faucet-drip"),
```typst #fa-fax()```, fa-fax(), fa-fax(solid: true), fa-icon("fax"),
```typst #fa-feather()```, fa-feather(), fa-feather(solid: true), fa-icon("feather"),
```typst #fa-feather-pointed()```, fa-feather-pointed(), fa-feather-pointed(solid: true), fa-icon("feather-pointed"),
```typst #fa-feather-alt()```, fa-feather-alt(), fa-feather-alt(solid: true), fa-icon("feather-alt"),
```typst #fa-fedex()```, fa-fedex(), fa-fedex(solid: true), fa-icon("fedex"),
```typst #fa-fedora()```, fa-fedora(), fa-fedora(solid: true), fa-icon("fedora"),
```typst #fa-fence()```, fa-fence(), fa-fence(solid: true), fa-icon("fence"),
```typst #fa-ferris-wheel()```, fa-ferris-wheel(), fa-ferris-wheel(solid: true), fa-icon("ferris-wheel"),
```typst #fa-ferry()```, fa-ferry(), fa-ferry(solid: true), fa-icon("ferry"),
```typst #fa-field-hockey-stick-ball()```, fa-field-hockey-stick-ball(), fa-field-hockey-stick-ball(solid: true), fa-icon("field-hockey-stick-ball"),
```typst #fa-field-hockey()```, fa-field-hockey(), fa-field-hockey(solid: true), fa-icon("field-hockey"),
```typst #fa-figma()```, fa-figma(), fa-figma(solid: true), fa-icon("figma"),
```typst #fa-file()```, fa-file(), fa-file(solid: true), fa-icon("file"),
```typst #fa-file-arrow-down()```, fa-file-arrow-down(), fa-file-arrow-down(solid: true), fa-icon("file-arrow-down"),
```typst #fa-file-download()```, fa-file-download(), fa-file-download(solid: true), fa-icon("file-download"),
```typst #fa-file-arrow-up()```, fa-file-arrow-up(), fa-file-arrow-up(solid: true), fa-icon("file-arrow-up"),
```typst #fa-file-upload()```, fa-file-upload(), fa-file-upload(solid: true), fa-icon("file-upload"),
```typst #fa-file-audio()```, fa-file-audio(), fa-file-audio(solid: true), fa-icon("file-audio"),
```typst #fa-file-binary()```, fa-file-binary(), fa-file-binary(solid: true), fa-icon("file-binary"),
```typst #fa-file-cad()```, fa-file-cad(), fa-file-cad(solid: true), fa-icon("file-cad"),
```typst #fa-file-certificate()```, fa-file-certificate(), fa-file-certificate(solid: true), fa-icon("file-certificate"),
```typst #fa-file-award()```, fa-file-award(), fa-file-award(solid: true), fa-icon("file-award"),
```typst #fa-file-chart-column()```, fa-file-chart-column(), fa-file-chart-column(solid: true), fa-icon("file-chart-column"),
```typst #fa-file-chart-line()```, fa-file-chart-line(), fa-file-chart-line(solid: true), fa-icon("file-chart-line"),
```typst #fa-file-chart-pie()```, fa-file-chart-pie(), fa-file-chart-pie(solid: true), fa-icon("file-chart-pie"),
```typst #fa-file-check()```, fa-file-check(), fa-file-check(solid: true), fa-icon("file-check"),
```typst #fa-file-circle-check()```, fa-file-circle-check(), fa-file-circle-check(solid: true), fa-icon("file-circle-check"),
```typst #fa-file-circle-exclamation()```, fa-file-circle-exclamation(), fa-file-circle-exclamation(solid: true), fa-icon("file-circle-exclamation"),
```typst #fa-file-circle-info()```, fa-file-circle-info(), fa-file-circle-info(solid: true), fa-icon("file-circle-info"),
```typst #fa-file-circle-minus()```, fa-file-circle-minus(), fa-file-circle-minus(solid: true), fa-icon("file-circle-minus"),
```typst #fa-file-circle-plus()```, fa-file-circle-plus(), fa-file-circle-plus(solid: true), fa-icon("file-circle-plus"),
```typst #fa-file-circle-question()```, fa-file-circle-question(), fa-file-circle-question(solid: true), fa-icon("file-circle-question"),
```typst #fa-file-circle-xmark()```, fa-file-circle-xmark(), fa-file-circle-xmark(solid: true), fa-icon("file-circle-xmark"),
```typst #fa-file-code()```, fa-file-code(), fa-file-code(solid: true), fa-icon("file-code"),
```typst #fa-file-contract()```, fa-file-contract(), fa-file-contract(solid: true), fa-icon("file-contract"),
```typst #fa-file-csv()```, fa-file-csv(), fa-file-csv(solid: true), fa-icon("file-csv"),
```typst #fa-file-dashed-line()```, fa-file-dashed-line(), fa-file-dashed-line(solid: true), fa-icon("file-dashed-line"),
```typst #fa-page-break()```, fa-page-break(), fa-page-break(solid: true), fa-icon("page-break"),
```typst #fa-file-doc()```, fa-file-doc(), fa-file-doc(solid: true), fa-icon("file-doc"),
```typst #fa-file-eps()```, fa-file-eps(), fa-file-eps(solid: true), fa-icon("file-eps"),
```typst #fa-file-excel()```, fa-file-excel(), fa-file-excel(solid: true), fa-icon("file-excel"),
```typst #fa-file-exclamation()```, fa-file-exclamation(), fa-file-exclamation(solid: true), fa-icon("file-exclamation"),
```typst #fa-file-export()```, fa-file-export(), fa-file-export(solid: true), fa-icon("file-export"),
```typst #fa-arrow-right-from-file()```, fa-arrow-right-from-file(), fa-arrow-right-from-file(solid: true), fa-icon("arrow-right-from-file"),
```typst #fa-file-gif()```, fa-file-gif(), fa-file-gif(solid: true), fa-icon("file-gif"),
```typst #fa-file-heart()```, fa-file-heart(), fa-file-heart(solid: true), fa-icon("file-heart"),
```typst #fa-file-image()```, fa-file-image(), fa-file-image(solid: true), fa-icon("file-image"),
```typst #fa-file-import()```, fa-file-import(), fa-file-import(solid: true), fa-icon("file-import"),
```typst #fa-arrow-right-to-file()```, fa-arrow-right-to-file(), fa-arrow-right-to-file(solid: true), fa-icon("arrow-right-to-file"),
```typst #fa-file-invoice()```, fa-file-invoice(), fa-file-invoice(solid: true), fa-icon("file-invoice"),
```typst #fa-file-invoice-dollar()```, fa-file-invoice-dollar(), fa-file-invoice-dollar(solid: true), fa-icon("file-invoice-dollar"),
```typst #fa-file-jpg()```, fa-file-jpg(), fa-file-jpg(solid: true), fa-icon("file-jpg"),
```typst #fa-file-lines()```, fa-file-lines(), fa-file-lines(solid: true), fa-icon("file-lines"),
```typst #fa-file-alt()```, fa-file-alt(), fa-file-alt(solid: true), fa-icon("file-alt"),
```typst #fa-file-text()```, fa-file-text(), fa-file-text(solid: true), fa-icon("file-text"),
```typst #fa-file-lock()```, fa-file-lock(), fa-file-lock(solid: true), fa-icon("file-lock"),
```typst #fa-file-magnifying-glass()```, fa-file-magnifying-glass(), fa-file-magnifying-glass(solid: true), fa-icon("file-magnifying-glass"),
```typst #fa-file-search()```, fa-file-search(), fa-file-search(solid: true), fa-icon("file-search"),
```typst #fa-file-medical()```, fa-file-medical(), fa-file-medical(solid: true), fa-icon("file-medical"),
```typst #fa-file-minus()```, fa-file-minus(), fa-file-minus(solid: true), fa-icon("file-minus"),
```typst #fa-file-mov()```, fa-file-mov(), fa-file-mov(solid: true), fa-icon("file-mov"),
```typst #fa-file-mp3()```, fa-file-mp3(), fa-file-mp3(solid: true), fa-icon("file-mp3"),
```typst #fa-file-mp4()```, fa-file-mp4(), fa-file-mp4(solid: true), fa-icon("file-mp4"),
```typst #fa-file-music()```, fa-file-music(), fa-file-music(solid: true), fa-icon("file-music"),
```typst #fa-file-pdf()```, fa-file-pdf(), fa-file-pdf(solid: true), fa-icon("file-pdf"),
```typst #fa-file-pen()```, fa-file-pen(), fa-file-pen(solid: true), fa-icon("file-pen"),
```typst #fa-file-edit()```, fa-file-edit(), fa-file-edit(solid: true), fa-icon("file-edit"),
```typst #fa-file-plus()```, fa-file-plus(), fa-file-plus(solid: true), fa-icon("file-plus"),
```typst #fa-file-plus-minus()```, fa-file-plus-minus(), fa-file-plus-minus(solid: true), fa-icon("file-plus-minus"),
```typst #fa-file-png()```, fa-file-png(), fa-file-png(solid: true), fa-icon("file-png"),
```typst #fa-file-powerpoint()```, fa-file-powerpoint(), fa-file-powerpoint(solid: true), fa-icon("file-powerpoint"),
```typst #fa-file-ppt()```, fa-file-ppt(), fa-file-ppt(solid: true), fa-icon("file-ppt"),
```typst #fa-file-prescription()```, fa-file-prescription(), fa-file-prescription(solid: true), fa-icon("file-prescription"),
```typst #fa-files()```, fa-files(), fa-files(solid: true), fa-icon("files"),
```typst #fa-file-shield()```, fa-file-shield(), fa-file-shield(solid: true), fa-icon("file-shield"),
```typst #fa-file-signature()```, fa-file-signature(), fa-file-signature(solid: true), fa-icon("file-signature"),
```typst #fa-file-slash()```, fa-file-slash(), fa-file-slash(solid: true), fa-icon("file-slash"),
```typst #fa-files-medical()```, fa-files-medical(), fa-files-medical(solid: true), fa-icon("files-medical"),
```typst #fa-file-spreadsheet()```, fa-file-spreadsheet(), fa-file-spreadsheet(solid: true), fa-icon("file-spreadsheet"),
```typst #fa-file-svg()```, fa-file-svg(), fa-file-svg(solid: true), fa-icon("file-svg"),
```typst #fa-file-user()```, fa-file-user(), fa-file-user(solid: true), fa-icon("file-user"),
```typst #fa-file-vector()```, fa-file-vector(), fa-file-vector(solid: true), fa-icon("file-vector"),
```typst #fa-file-video()```, fa-file-video(), fa-file-video(solid: true), fa-icon("file-video"),
```typst #fa-file-waveform()```, fa-file-waveform(), fa-file-waveform(solid: true), fa-icon("file-waveform"),
```typst #fa-file-medical-alt()```, fa-file-medical-alt(), fa-file-medical-alt(solid: true), fa-icon("file-medical-alt"),
```typst #fa-file-word()```, fa-file-word(), fa-file-word(solid: true), fa-icon("file-word"),
```typst #fa-file-xls()```, fa-file-xls(), fa-file-xls(solid: true), fa-icon("file-xls"),
```typst #fa-file-xmark()```, fa-file-xmark(), fa-file-xmark(solid: true), fa-icon("file-xmark"),
```typst #fa-file-times()```, fa-file-times(), fa-file-times(solid: true), fa-icon("file-times"),
```typst #fa-file-xml()```, fa-file-xml(), fa-file-xml(solid: true), fa-icon("file-xml"),
```typst #fa-file-zip()```, fa-file-zip(), fa-file-zip(solid: true), fa-icon("file-zip"),
```typst #fa-file-zipper()```, fa-file-zipper(), fa-file-zipper(solid: true), fa-icon("file-zipper"),
```typst #fa-file-archive()```, fa-file-archive(), fa-file-archive(solid: true), fa-icon("file-archive"),
```typst #fa-fill()```, fa-fill(), fa-fill(solid: true), fa-icon("fill"),
```typst #fa-fill-drip()```, fa-fill-drip(), fa-fill-drip(solid: true), fa-icon("fill-drip"),
```typst #fa-film()```, fa-film(), fa-film(solid: true), fa-icon("film"),
```typst #fa-film-canister()```, fa-film-canister(), fa-film-canister(solid: true), fa-icon("film-canister"),
```typst #fa-film-cannister()```, fa-film-cannister(), fa-film-cannister(solid: true), fa-icon("film-cannister"),
```typst #fa-films()```, fa-films(), fa-films(solid: true), fa-icon("films"),
```typst #fa-film-simple()```, fa-film-simple(), fa-film-simple(solid: true), fa-icon("film-simple"),
```typst #fa-film-alt()```, fa-film-alt(), fa-film-alt(solid: true), fa-icon("film-alt"),
```typst #fa-film-slash()```, fa-film-slash(), fa-film-slash(solid: true), fa-icon("film-slash"),
```typst #fa-filter()```, fa-filter(), fa-filter(solid: true), fa-icon("filter"),
```typst #fa-filter-circle-dollar()```, fa-filter-circle-dollar(), fa-filter-circle-dollar(solid: true), fa-icon("filter-circle-dollar"),
```typst #fa-funnel-dollar()```, fa-funnel-dollar(), fa-funnel-dollar(solid: true), fa-icon("funnel-dollar"),
```typst #fa-filter-circle-xmark()```, fa-filter-circle-xmark(), fa-filter-circle-xmark(solid: true), fa-icon("filter-circle-xmark"),
```typst #fa-filter-list()```, fa-filter-list(), fa-filter-list(solid: true), fa-icon("filter-list"),
```typst #fa-filters()```, fa-filters(), fa-filters(solid: true), fa-icon("filters"),
```typst #fa-filter-slash()```, fa-filter-slash(), fa-filter-slash(solid: true), fa-icon("filter-slash"),
```typst #fa-fingerprint()```, fa-fingerprint(), fa-fingerprint(solid: true), fa-icon("fingerprint"),
```typst #fa-fire()```, fa-fire(), fa-fire(solid: true), fa-icon("fire"),
```typst #fa-fire-burner()```, fa-fire-burner(), fa-fire-burner(solid: true), fa-icon("fire-burner"),
```typst #fa-fire-extinguisher()```, fa-fire-extinguisher(), fa-fire-extinguisher(solid: true), fa-icon("fire-extinguisher"),
```typst #fa-fire-flame()```, fa-fire-flame(), fa-fire-flame(solid: true), fa-icon("fire-flame"),
```typst #fa-flame()```, fa-flame(), fa-flame(solid: true), fa-icon("flame"),
```typst #fa-fire-flame-curved()```, fa-fire-flame-curved(), fa-fire-flame-curved(solid: true), fa-icon("fire-flame-curved"),
```typst #fa-fire-alt()```, fa-fire-alt(), fa-fire-alt(solid: true), fa-icon("fire-alt"),
```typst #fa-fire-flame-simple()```, fa-fire-flame-simple(), fa-fire-flame-simple(solid: true), fa-icon("fire-flame-simple"),
```typst #fa-burn()```, fa-burn(), fa-burn(solid: true), fa-icon("burn"),
```typst #fa-firefox()```, fa-firefox(), fa-firefox(solid: true), fa-icon("firefox"),
```typst #fa-firefox-browser()```, fa-firefox-browser(), fa-firefox-browser(solid: true), fa-icon("firefox-browser"),
```typst #fa-fire-hydrant()```, fa-fire-hydrant(), fa-fire-hydrant(solid: true), fa-icon("fire-hydrant"),
```typst #fa-fireplace()```, fa-fireplace(), fa-fireplace(solid: true), fa-icon("fireplace"),
```typst #fa-fire-smoke()```, fa-fire-smoke(), fa-fire-smoke(solid: true), fa-icon("fire-smoke"),
```typst #fa-firstdraft()```, fa-firstdraft(), fa-firstdraft(solid: true), fa-icon("firstdraft"),
```typst #fa-first-order()```, fa-first-order(), fa-first-order(solid: true), fa-icon("first-order"),
```typst #fa-first-order-alt()```, fa-first-order-alt(), fa-first-order-alt(solid: true), fa-icon("first-order-alt"),
```typst #fa-fish()```, fa-fish(), fa-fish(solid: true), fa-icon("fish"),
```typst #fa-fish-bones()```, fa-fish-bones(), fa-fish-bones(solid: true), fa-icon("fish-bones"),
```typst #fa-fish-cooked()```, fa-fish-cooked(), fa-fish-cooked(solid: true), fa-icon("fish-cooked"),
```typst #fa-fish-fins()```, fa-fish-fins(), fa-fish-fins(solid: true), fa-icon("fish-fins"),
```typst #fa-fishing-rod()```, fa-fishing-rod(), fa-fishing-rod(solid: true), fa-icon("fishing-rod"),
```typst #fa-flag()```, fa-flag(), fa-flag(solid: true), fa-icon("flag"),
```typst #fa-flag-checkered()```, fa-flag-checkered(), fa-flag-checkered(solid: true), fa-icon("flag-checkered"),
```typst #fa-flag-pennant()```, fa-flag-pennant(), fa-flag-pennant(solid: true), fa-icon("flag-pennant"),
```typst #fa-pennant()```, fa-pennant(), fa-pennant(solid: true), fa-icon("pennant"),
```typst #fa-flag-swallowtail()```, fa-flag-swallowtail(), fa-flag-swallowtail(solid: true), fa-icon("flag-swallowtail"),
```typst #fa-flag-alt()```, fa-flag-alt(), fa-flag-alt(solid: true), fa-icon("flag-alt"),
```typst #fa-flag-usa()```, fa-flag-usa(), fa-flag-usa(solid: true), fa-icon("flag-usa"),
```typst #fa-flashlight()```, fa-flashlight(), fa-flashlight(solid: true), fa-icon("flashlight"),
```typst #fa-flask()```, fa-flask(), fa-flask(solid: true), fa-icon("flask"),
```typst #fa-flask-gear()```, fa-flask-gear(), fa-flask-gear(solid: true), fa-icon("flask-gear"),
```typst #fa-flask-round-poison()```, fa-flask-round-poison(), fa-flask-round-poison(solid: true), fa-icon("flask-round-poison"),
```typst #fa-flask-poison()```, fa-flask-poison(), fa-flask-poison(solid: true), fa-icon("flask-poison"),
```typst #fa-flask-round-potion()```, fa-flask-round-potion(), fa-flask-round-potion(solid: true), fa-icon("flask-round-potion"),
```typst #fa-flask-potion()```, fa-flask-potion(), fa-flask-potion(solid: true), fa-icon("flask-potion"),
```typst #fa-flask-vial()```, fa-flask-vial(), fa-flask-vial(solid: true), fa-icon("flask-vial"),
```typst #fa-flatbread()```, fa-flatbread(), fa-flatbread(solid: true), fa-icon("flatbread"),
```typst #fa-flatbread-stuffed()```, fa-flatbread-stuffed(), fa-flatbread-stuffed(solid: true), fa-icon("flatbread-stuffed"),
```typst #fa-flickr()```, fa-flickr(), fa-flickr(solid: true), fa-icon("flickr"),
```typst #fa-flipboard()```, fa-flipboard(), fa-flipboard(solid: true), fa-icon("flipboard"),
```typst #fa-floppy-disk()```, fa-floppy-disk(), fa-floppy-disk(solid: true), fa-icon("floppy-disk"),
```typst #fa-save()```, fa-save(), fa-save(solid: true), fa-icon("save"),
```typst #fa-floppy-disk-circle-arrow-right()```, fa-floppy-disk-circle-arrow-right(), fa-floppy-disk-circle-arrow-right(solid: true), fa-icon("floppy-disk-circle-arrow-right"),
```typst #fa-save-circle-arrow-right()```, fa-save-circle-arrow-right(), fa-save-circle-arrow-right(solid: true), fa-icon("save-circle-arrow-right"),
```typst #fa-floppy-disk-circle-xmark()```, fa-floppy-disk-circle-xmark(), fa-floppy-disk-circle-xmark(solid: true), fa-icon("floppy-disk-circle-xmark"),
```typst #fa-floppy-disk-times()```, fa-floppy-disk-times(), fa-floppy-disk-times(solid: true), fa-icon("floppy-disk-times"),
```typst #fa-save-circle-xmark()```, fa-save-circle-xmark(), fa-save-circle-xmark(solid: true), fa-icon("save-circle-xmark"),
```typst #fa-save-times()```, fa-save-times(), fa-save-times(solid: true), fa-icon("save-times"),
```typst #fa-floppy-disk-pen()```, fa-floppy-disk-pen(), fa-floppy-disk-pen(solid: true), fa-icon("floppy-disk-pen"),
```typst #fa-floppy-disks()```, fa-floppy-disks(), fa-floppy-disks(solid: true), fa-icon("floppy-disks"),
```typst #fa-florin-sign()```, fa-florin-sign(), fa-florin-sign(solid: true), fa-icon("florin-sign"),
```typst #fa-flower()```, fa-flower(), fa-flower(solid: true), fa-icon("flower"),
```typst #fa-flower-daffodil()```, fa-flower-daffodil(), fa-flower-daffodil(solid: true), fa-icon("flower-daffodil"),
```typst #fa-flower-tulip()```, fa-flower-tulip(), fa-flower-tulip(solid: true), fa-icon("flower-tulip"),
```typst #fa-flute()```, fa-flute(), fa-flute(solid: true), fa-icon("flute"),
```typst #fa-flutter()```, fa-flutter(), fa-flutter(solid: true), fa-icon("flutter"),
```typst #fa-flux-capacitor()```, fa-flux-capacitor(), fa-flux-capacitor(solid: true), fa-icon("flux-capacitor"),
```typst #fa-fly()```, fa-fly(), fa-fly(solid: true), fa-icon("fly"),
```typst #fa-flying-disc()```, fa-flying-disc(), fa-flying-disc(solid: true), fa-icon("flying-disc"),
```typst #fa-folder()```, fa-folder(), fa-folder(solid: true), fa-icon("folder"),
```typst #fa-folder-blank()```, fa-folder-blank(), fa-folder-blank(solid: true), fa-icon("folder-blank"),
```typst #fa-folder-arrow-down()```, fa-folder-arrow-down(), fa-folder-arrow-down(solid: true), fa-icon("folder-arrow-down"),
```typst #fa-folder-download()```, fa-folder-download(), fa-folder-download(solid: true), fa-icon("folder-download"),
```typst #fa-folder-arrow-up()```, fa-folder-arrow-up(), fa-folder-arrow-up(solid: true), fa-icon("folder-arrow-up"),
```typst #fa-folder-upload()```, fa-folder-upload(), fa-folder-upload(solid: true), fa-icon("folder-upload"),
```typst #fa-folder-bookmark()```, fa-folder-bookmark(), fa-folder-bookmark(solid: true), fa-icon("folder-bookmark"),
```typst #fa-folder-check()```, fa-folder-check(), fa-folder-check(solid: true), fa-icon("folder-check"),
```typst #fa-folder-closed()```, fa-folder-closed(), fa-folder-closed(solid: true), fa-icon("folder-closed"),
```typst #fa-folder-gear()```, fa-folder-gear(), fa-folder-gear(solid: true), fa-icon("folder-gear"),
```typst #fa-folder-cog()```, fa-folder-cog(), fa-folder-cog(solid: true), fa-icon("folder-cog"),
```typst #fa-folder-grid()```, fa-folder-grid(), fa-folder-grid(solid: true), fa-icon("folder-grid"),
```typst #fa-folder-heart()```, fa-folder-heart(), fa-folder-heart(solid: true), fa-icon("folder-heart"),
```typst #fa-folder-image()```, fa-folder-image(), fa-folder-image(solid: true), fa-icon("folder-image"),
```typst #fa-folder-magnifying-glass()```, fa-folder-magnifying-glass(), fa-folder-magnifying-glass(solid: true), fa-icon("folder-magnifying-glass"),
```typst #fa-folder-search()```, fa-folder-search(), fa-folder-search(solid: true), fa-icon("folder-search"),
```typst #fa-folder-medical()```, fa-folder-medical(), fa-folder-medical(solid: true), fa-icon("folder-medical"),
```typst #fa-folder-minus()```, fa-folder-minus(), fa-folder-minus(solid: true), fa-icon("folder-minus"),
```typst #fa-folder-music()```, fa-folder-music(), fa-folder-music(solid: true), fa-icon("folder-music"),
```typst #fa-folder-open()```, fa-folder-open(), fa-folder-open(solid: true), fa-icon("folder-open"),
```typst #fa-folder-plus()```, fa-folder-plus(), fa-folder-plus(solid: true), fa-icon("folder-plus"),
```typst #fa-folders()```, fa-folders(), fa-folders(solid: true), fa-icon("folders"),
```typst #fa-folder-tree()```, fa-folder-tree(), fa-folder-tree(solid: true), fa-icon("folder-tree"),
```typst #fa-folder-user()```, fa-folder-user(), fa-folder-user(solid: true), fa-icon("folder-user"),
```typst #fa-folder-xmark()```, fa-folder-xmark(), fa-folder-xmark(solid: true), fa-icon("folder-xmark"),
```typst #fa-folder-times()```, fa-folder-times(), fa-folder-times(solid: true), fa-icon("folder-times"),
```typst #fa-fondue-pot()```, fa-fondue-pot(), fa-fondue-pot(solid: true), fa-icon("fondue-pot"),
```typst #fa-font()```, fa-font(), fa-font(solid: true), fa-icon("font"),
```typst #fa-font-awesome()```, fa-font-awesome(), fa-font-awesome(solid: true), fa-icon("font-awesome"),
```typst #fa-font-awesome-flag()```, fa-font-awesome-flag(), fa-font-awesome-flag(solid: true), fa-icon("font-awesome-flag"),
```typst #fa-font-awesome-logo-full()```, fa-font-awesome-logo-full(), fa-font-awesome-logo-full(solid: true), fa-icon("font-awesome-logo-full"),
```typst #fa-font-case()```, fa-font-case(), fa-font-case(solid: true), fa-icon("font-case"),
```typst #fa-fonticons()```, fa-fonticons(), fa-fonticons(solid: true), fa-icon("fonticons"),
```typst #fa-fonticons-fi()```, fa-fonticons-fi(), fa-fonticons-fi(solid: true), fa-icon("fonticons-fi"),
```typst #fa-football()```, fa-football(), fa-football(solid: true), fa-icon("football"),
```typst #fa-football-ball()```, fa-football-ball(), fa-football-ball(solid: true), fa-icon("football-ball"),
```typst #fa-football-helmet()```, fa-football-helmet(), fa-football-helmet(solid: true), fa-icon("football-helmet"),
```typst #fa-fork()```, fa-fork(), fa-fork(solid: true), fa-icon("fork"),
```typst #fa-utensil-fork()```, fa-utensil-fork(), fa-utensil-fork(solid: true), fa-icon("utensil-fork"),
```typst #fa-fork-knife()```, fa-fork-knife(), fa-fork-knife(solid: true), fa-icon("fork-knife"),
```typst #fa-utensils-alt()```, fa-utensils-alt(), fa-utensils-alt(solid: true), fa-icon("utensils-alt"),
```typst #fa-forklift()```, fa-forklift(), fa-forklift(solid: true), fa-icon("forklift"),
```typst #fa-fort()```, fa-fort(), fa-fort(solid: true), fa-icon("fort"),
```typst #fa-fort-awesome()```, fa-fort-awesome(), fa-fort-awesome(solid: true), fa-icon("fort-awesome"),
```typst #fa-fort-awesome-alt()```, fa-fort-awesome-alt(), fa-fort-awesome-alt(solid: true), fa-icon("fort-awesome-alt"),
```typst #fa-forumbee()```, fa-forumbee(), fa-forumbee(solid: true), fa-icon("forumbee"),
```typst #fa-forward()```, fa-forward(), fa-forward(solid: true), fa-icon("forward"),
```typst #fa-forward-fast()```, fa-forward-fast(), fa-forward-fast(solid: true), fa-icon("forward-fast"),
```typst #fa-fast-forward()```, fa-fast-forward(), fa-fast-forward(solid: true), fa-icon("fast-forward"),
```typst #fa-forward-step()```, fa-forward-step(), fa-forward-step(solid: true), fa-icon("forward-step"),
```typst #fa-step-forward()```, fa-step-forward(), fa-step-forward(solid: true), fa-icon("step-forward"),
```typst #fa-foursquare()```, fa-foursquare(), fa-foursquare(solid: true), fa-icon("foursquare"),
```typst #fa-frame()```, fa-frame(), fa-frame(solid: true), fa-icon("frame"),
```typst #fa-franc-sign()```, fa-franc-sign(), fa-franc-sign(solid: true), fa-icon("franc-sign"),
```typst #fa-freebsd()```, fa-freebsd(), fa-freebsd(solid: true), fa-icon("freebsd"),
```typst #fa-free-code-camp()```, fa-free-code-camp(), fa-free-code-camp(solid: true), fa-icon("free-code-camp"),
```typst #fa-french-fries()```, fa-french-fries(), fa-french-fries(solid: true), fa-icon("french-fries"),
```typst #fa-frog()```, fa-frog(), fa-frog(solid: true), fa-icon("frog"),
```typst #fa-fulcrum()```, fa-fulcrum(), fa-fulcrum(solid: true), fa-icon("fulcrum"),
```typst #fa-function()```, fa-function(), fa-function(solid: true), fa-icon("function"),
```typst #fa-futbol()```, fa-futbol(), fa-futbol(solid: true), fa-icon("futbol"),
```typst #fa-futbol-ball()```, fa-futbol-ball(), fa-futbol-ball(solid: true), fa-icon("futbol-ball"),
```typst #fa-soccer-ball()```, fa-soccer-ball(), fa-soccer-ball(solid: true), fa-icon("soccer-ball"),
```typst #fa-g()```, fa-g(), fa-g(solid: true), fa-icon("g"),
```typst #fa-galactic-republic()```, fa-galactic-republic(), fa-galactic-republic(solid: true), fa-icon("galactic-republic"),
```typst #fa-galactic-senate()```, fa-galactic-senate(), fa-galactic-senate(solid: true), fa-icon("galactic-senate"),
```typst #fa-galaxy()```, fa-galaxy(), fa-galaxy(solid: true), fa-icon("galaxy"),
```typst #fa-gallery-thumbnails()```, fa-gallery-thumbnails(), fa-gallery-thumbnails(solid: true), fa-icon("gallery-thumbnails"),
```typst #fa-game-board()```, fa-game-board(), fa-game-board(solid: true), fa-icon("game-board"),
```typst #fa-game-board-simple()```, fa-game-board-simple(), fa-game-board-simple(solid: true), fa-icon("game-board-simple"),
```typst #fa-game-board-alt()```, fa-game-board-alt(), fa-game-board-alt(solid: true), fa-icon("game-board-alt"),
```typst #fa-game-console-handheld()```, fa-game-console-handheld(), fa-game-console-handheld(solid: true), fa-icon("game-console-handheld"),
```typst #fa-game-console-handheld-crank()```, fa-game-console-handheld-crank(), fa-game-console-handheld-crank(solid: true), fa-icon("game-console-handheld-crank"),
```typst #fa-gamepad()```, fa-gamepad(), fa-gamepad(solid: true), fa-icon("gamepad"),
```typst #fa-gamepad-modern()```, fa-gamepad-modern(), fa-gamepad-modern(solid: true), fa-icon("gamepad-modern"),
```typst #fa-gamepad-alt()```, fa-gamepad-alt(), fa-gamepad-alt(solid: true), fa-icon("gamepad-alt"),
```typst #fa-garage()```, fa-garage(), fa-garage(solid: true), fa-icon("garage"),
```typst #fa-garage-car()```, fa-garage-car(), fa-garage-car(solid: true), fa-icon("garage-car"),
```typst #fa-garage-open()```, fa-garage-open(), fa-garage-open(solid: true), fa-icon("garage-open"),
```typst #fa-garlic()```, fa-garlic(), fa-garlic(solid: true), fa-icon("garlic"),
```typst #fa-gas-pump()```, fa-gas-pump(), fa-gas-pump(solid: true), fa-icon("gas-pump"),
```typst #fa-gas-pump-slash()```, fa-gas-pump-slash(), fa-gas-pump-slash(solid: true), fa-icon("gas-pump-slash"),
```typst #fa-gauge()```, fa-gauge(), fa-gauge(solid: true), fa-icon("gauge"),
```typst #fa-dashboard()```, fa-dashboard(), fa-dashboard(solid: true), fa-icon("dashboard"),
```typst #fa-gauge-med()```, fa-gauge-med(), fa-gauge-med(solid: true), fa-icon("gauge-med"),
```typst #fa-tachometer-alt-average()```, fa-tachometer-alt-average(), fa-tachometer-alt-average(solid: true), fa-icon("tachometer-alt-average"),
```typst #fa-gauge-circle-bolt()```, fa-gauge-circle-bolt(), fa-gauge-circle-bolt(solid: true), fa-icon("gauge-circle-bolt"),
```typst #fa-gauge-circle-minus()```, fa-gauge-circle-minus(), fa-gauge-circle-minus(solid: true), fa-icon("gauge-circle-minus"),
```typst #fa-gauge-circle-plus()```, fa-gauge-circle-plus(), fa-gauge-circle-plus(solid: true), fa-icon("gauge-circle-plus"),
```typst #fa-gauge-high()```, fa-gauge-high(), fa-gauge-high(solid: true), fa-icon("gauge-high"),
```typst #fa-tachometer-alt()```, fa-tachometer-alt(), fa-tachometer-alt(solid: true), fa-icon("tachometer-alt"),
```typst #fa-tachometer-alt-fast()```, fa-tachometer-alt-fast(), fa-tachometer-alt-fast(solid: true), fa-icon("tachometer-alt-fast"),
```typst #fa-gauge-low()```, fa-gauge-low(), fa-gauge-low(solid: true), fa-icon("gauge-low"),
```typst #fa-tachometer-alt-slow()```, fa-tachometer-alt-slow(), fa-tachometer-alt-slow(solid: true), fa-icon("tachometer-alt-slow"),
```typst #fa-gauge-max()```, fa-gauge-max(), fa-gauge-max(solid: true), fa-icon("gauge-max"),
```typst #fa-tachometer-alt-fastest()```, fa-tachometer-alt-fastest(), fa-tachometer-alt-fastest(solid: true), fa-icon("tachometer-alt-fastest"),
```typst #fa-gauge-min()```, fa-gauge-min(), fa-gauge-min(solid: true), fa-icon("gauge-min"),
```typst #fa-tachometer-alt-slowest()```, fa-tachometer-alt-slowest(), fa-tachometer-alt-slowest(solid: true), fa-icon("tachometer-alt-slowest"),
```typst #fa-gauge-simple()```, fa-gauge-simple(), fa-gauge-simple(solid: true), fa-icon("gauge-simple"),
```typst #fa-gauge-simple-med()```, fa-gauge-simple-med(), fa-gauge-simple-med(solid: true), fa-icon("gauge-simple-med"),
```typst #fa-tachometer-average()```, fa-tachometer-average(), fa-tachometer-average(solid: true), fa-icon("tachometer-average"),
```typst #fa-gauge-simple-high()```, fa-gauge-simple-high(), fa-gauge-simple-high(solid: true), fa-icon("gauge-simple-high"),
```typst #fa-tachometer()```, fa-tachometer(), fa-tachometer(solid: true), fa-icon("tachometer"),
```typst #fa-tachometer-fast()```, fa-tachometer-fast(), fa-tachometer-fast(solid: true), fa-icon("tachometer-fast"),
```typst #fa-gauge-simple-low()```, fa-gauge-simple-low(), fa-gauge-simple-low(solid: true), fa-icon("gauge-simple-low"),
```typst #fa-tachometer-slow()```, fa-tachometer-slow(), fa-tachometer-slow(solid: true), fa-icon("tachometer-slow"),
```typst #fa-gauge-simple-max()```, fa-gauge-simple-max(), fa-gauge-simple-max(solid: true), fa-icon("gauge-simple-max"),
```typst #fa-tachometer-fastest()```, fa-tachometer-fastest(), fa-tachometer-fastest(solid: true), fa-icon("tachometer-fastest"),
```typst #fa-gauge-simple-min()```, fa-gauge-simple-min(), fa-gauge-simple-min(solid: true), fa-icon("gauge-simple-min"),
```typst #fa-tachometer-slowest()```, fa-tachometer-slowest(), fa-tachometer-slowest(solid: true), fa-icon("tachometer-slowest"),
```typst #fa-gavel()```, fa-gavel(), fa-gavel(solid: true), fa-icon("gavel"),
```typst #fa-legal()```, fa-legal(), fa-legal(solid: true), fa-icon("legal"),
```typst #fa-gear()```, fa-gear(), fa-gear(solid: true), fa-icon("gear"),
```typst #fa-cog()```, fa-cog(), fa-cog(solid: true), fa-icon("cog"),
```typst #fa-gear-code()```, fa-gear-code(), fa-gear-code(solid: true), fa-icon("gear-code"),
```typst #fa-gear-complex()```, fa-gear-complex(), fa-gear-complex(solid: true), fa-icon("gear-complex"),
```typst #fa-gear-complex-code()```, fa-gear-complex-code(), fa-gear-complex-code(solid: true), fa-icon("gear-complex-code"),
```typst #fa-gears()```, fa-gears(), fa-gears(solid: true), fa-icon("gears"),
```typst #fa-cogs()```, fa-cogs(), fa-cogs(solid: true), fa-icon("cogs"),
```typst #fa-gem()```, fa-gem(), fa-gem(solid: true), fa-icon("gem"),
```typst #fa-genderless()```, fa-genderless(), fa-genderless(solid: true), fa-icon("genderless"),
```typst #fa-get-pocket()```, fa-get-pocket(), fa-get-pocket(solid: true), fa-icon("get-pocket"),
```typst #fa-gg()```, fa-gg(), fa-gg(solid: true), fa-icon("gg"),
```typst #fa-gg-circle()```, fa-gg-circle(), fa-gg-circle(solid: true), fa-icon("gg-circle"),
```typst #fa-ghost()```, fa-ghost(), fa-ghost(solid: true), fa-icon("ghost"),
```typst #fa-gif()```, fa-gif(), fa-gif(solid: true), fa-icon("gif"),
```typst #fa-gift()```, fa-gift(), fa-gift(solid: true), fa-icon("gift"),
```typst #fa-gift-card()```, fa-gift-card(), fa-gift-card(solid: true), fa-icon("gift-card"),
```typst #fa-gifts()```, fa-gifts(), fa-gifts(solid: true), fa-icon("gifts"),
```typst #fa-gingerbread-man()```, fa-gingerbread-man(), fa-gingerbread-man(solid: true), fa-icon("gingerbread-man"),
```typst #fa-git()```, fa-git(), fa-git(solid: true), fa-icon("git"),
```typst #fa-git-alt()```, fa-git-alt(), fa-git-alt(solid: true), fa-icon("git-alt"),
```typst #fa-github()```, fa-github(), fa-github(solid: true), fa-icon("github"),
```typst #fa-github-alt()```, fa-github-alt(), fa-github-alt(solid: true), fa-icon("github-alt"),
```typst #fa-gitkraken()```, fa-gitkraken(), fa-gitkraken(solid: true), fa-icon("gitkraken"),
```typst #fa-gitlab()```, fa-gitlab(), fa-gitlab(solid: true), fa-icon("gitlab"),
```typst #fa-gitter()```, fa-gitter(), fa-gitter(solid: true), fa-icon("gitter"),
```typst #fa-glass()```, fa-glass(), fa-glass(solid: true), fa-icon("glass"),
```typst #fa-glass-citrus()```, fa-glass-citrus(), fa-glass-citrus(solid: true), fa-icon("glass-citrus"),
```typst #fa-glass-empty()```, fa-glass-empty(), fa-glass-empty(solid: true), fa-icon("glass-empty"),
```typst #fa-glasses()```, fa-glasses(), fa-glasses(solid: true), fa-icon("glasses"),
```typst #fa-glasses-round()```, fa-glasses-round(), fa-glasses-round(solid: true), fa-icon("glasses-round"),
```typst #fa-glasses-alt()```, fa-glasses-alt(), fa-glasses-alt(solid: true), fa-icon("glasses-alt"),
```typst #fa-glass-half()```, fa-glass-half(), fa-glass-half(solid: true), fa-icon("glass-half"),
```typst #fa-glass-half-empty()```, fa-glass-half-empty(), fa-glass-half-empty(solid: true), fa-icon("glass-half-empty"),
```typst #fa-glass-half-full()```, fa-glass-half-full(), fa-glass-half-full(solid: true), fa-icon("glass-half-full"),
```typst #fa-glass-water()```, fa-glass-water(), fa-glass-water(solid: true), fa-icon("glass-water"),
```typst #fa-glass-water-droplet()```, fa-glass-water-droplet(), fa-glass-water-droplet(solid: true), fa-icon("glass-water-droplet"),
```typst #fa-glide()```, fa-glide(), fa-glide(solid: true), fa-icon("glide"),
```typst #fa-glide-g()```, fa-glide-g(), fa-glide-g(solid: true), fa-icon("glide-g"),
```typst #fa-globe()```, fa-globe(), fa-globe(solid: true), fa-icon("globe"),
```typst #fa-globe-pointer()```, fa-globe-pointer(), fa-globe-pointer(solid: true), fa-icon("globe-pointer"),
```typst #fa-globe-snow()```, fa-globe-snow(), fa-globe-snow(solid: true), fa-icon("globe-snow"),
```typst #fa-globe-stand()```, fa-globe-stand(), fa-globe-stand(solid: true), fa-icon("globe-stand"),
```typst #fa-globe-wifi()```, fa-globe-wifi(), fa-globe-wifi(solid: true), fa-icon("globe-wifi"),
```typst #fa-goal-net()```, fa-goal-net(), fa-goal-net(solid: true), fa-icon("goal-net"),
```typst #fa-gofore()```, fa-gofore(), fa-gofore(solid: true), fa-icon("gofore"),
```typst #fa-golang()```, fa-golang(), fa-golang(solid: true), fa-icon("golang"),
```typst #fa-golf-ball-tee()```, fa-golf-ball-tee(), fa-golf-ball-tee(solid: true), fa-icon("golf-ball-tee"),
```typst #fa-golf-ball()```, fa-golf-ball(), fa-golf-ball(solid: true), fa-icon("golf-ball"),
```typst #fa-golf-club()```, fa-golf-club(), fa-golf-club(solid: true), fa-icon("golf-club"),
```typst #fa-golf-flag-hole()```, fa-golf-flag-hole(), fa-golf-flag-hole(solid: true), fa-icon("golf-flag-hole"),
```typst #fa-goodreads()```, fa-goodreads(), fa-goodreads(solid: true), fa-icon("goodreads"),
```typst #fa-goodreads-g()```, fa-goodreads-g(), fa-goodreads-g(solid: true), fa-icon("goodreads-g"),
```typst #fa-google()```, fa-google(), fa-google(solid: true), fa-icon("google"),
```typst #fa-google-drive()```, fa-google-drive(), fa-google-drive(solid: true), fa-icon("google-drive"),
```typst #fa-google-pay()```, fa-google-pay(), fa-google-pay(solid: true), fa-icon("google-pay"),
```typst #fa-google-play()```, fa-google-play(), fa-google-play(solid: true), fa-icon("google-play"),
```typst #fa-google-plus()```, fa-google-plus(), fa-google-plus(solid: true), fa-icon("google-plus"),
```typst #fa-google-plus-g()```, fa-google-plus-g(), fa-google-plus-g(solid: true), fa-icon("google-plus-g"),
```typst #fa-google-scholar()```, fa-google-scholar(), fa-google-scholar(solid: true), fa-icon("google-scholar"),
```typst #fa-google-wallet()```, fa-google-wallet(), fa-google-wallet(solid: true), fa-icon("google-wallet"),
```typst #fa-gopuram()```, fa-gopuram(), fa-gopuram(solid: true), fa-icon("gopuram"),
```typst #fa-graduation-cap()```, fa-graduation-cap(), fa-graduation-cap(solid: true), fa-icon("graduation-cap"),
```typst #fa-mortar-board()```, fa-mortar-board(), fa-mortar-board(solid: true), fa-icon("mortar-board"),
```typst #fa-gramophone()```, fa-gramophone(), fa-gramophone(solid: true), fa-icon("gramophone"),
```typst #fa-grapes()```, fa-grapes(), fa-grapes(solid: true), fa-icon("grapes"),
```typst #fa-grate()```, fa-grate(), fa-grate(solid: true), fa-icon("grate"),
```typst #fa-grate-droplet()```, fa-grate-droplet(), fa-grate-droplet(solid: true), fa-icon("grate-droplet"),
```typst #fa-gratipay()```, fa-gratipay(), fa-gratipay(solid: true), fa-icon("gratipay"),
```typst #fa-grav()```, fa-grav(), fa-grav(solid: true), fa-icon("grav"),
```typst #fa-greater-than()```, fa-greater-than(), fa-greater-than(solid: true), fa-icon("greater-than"),
```typst #fa-greater-than-equal()```, fa-greater-than-equal(), fa-greater-than-equal(solid: true), fa-icon("greater-than-equal"),
```typst #fa-grid()```, fa-grid(), fa-grid(solid: true), fa-icon("grid"),
```typst #fa-grid-3()```, fa-grid-3(), fa-grid-3(solid: true), fa-icon("grid-3"),
```typst #fa-grid-2()```, fa-grid-2(), fa-grid-2(solid: true), fa-icon("grid-2"),
```typst #fa-grid-2-plus()```, fa-grid-2-plus(), fa-grid-2-plus(solid: true), fa-icon("grid-2-plus"),
```typst #fa-grid-4()```, fa-grid-4(), fa-grid-4(solid: true), fa-icon("grid-4"),
```typst #fa-grid-5()```, fa-grid-5(), fa-grid-5(solid: true), fa-icon("grid-5"),
```typst #fa-grid-dividers()```, fa-grid-dividers(), fa-grid-dividers(solid: true), fa-icon("grid-dividers"),
```typst #fa-grid-horizontal()```, fa-grid-horizontal(), fa-grid-horizontal(solid: true), fa-icon("grid-horizontal"),
```typst #fa-grid-round()```, fa-grid-round(), fa-grid-round(solid: true), fa-icon("grid-round"),
```typst #fa-grid-round-2()```, fa-grid-round-2(), fa-grid-round-2(solid: true), fa-icon("grid-round-2"),
```typst #fa-grid-round-2-plus()```, fa-grid-round-2-plus(), fa-grid-round-2-plus(solid: true), fa-icon("grid-round-2-plus"),
```typst #fa-grid-round-4()```, fa-grid-round-4(), fa-grid-round-4(solid: true), fa-icon("grid-round-4"),
```typst #fa-grid-round-5()```, fa-grid-round-5(), fa-grid-round-5(solid: true), fa-icon("grid-round-5"),
```typst #fa-grill()```, fa-grill(), fa-grill(solid: true), fa-icon("grill"),
```typst #fa-grill-fire()```, fa-grill-fire(), fa-grill-fire(solid: true), fa-icon("grill-fire"),
```typst #fa-grill-hot()```, fa-grill-hot(), fa-grill-hot(solid: true), fa-icon("grill-hot"),
```typst #fa-grip()```, fa-grip(), fa-grip(solid: true), fa-icon("grip"),
```typst #fa-grip-horizontal()```, fa-grip-horizontal(), fa-grip-horizontal(solid: true), fa-icon("grip-horizontal"),
```typst #fa-grip-dots()```, fa-grip-dots(), fa-grip-dots(solid: true), fa-icon("grip-dots"),
```typst #fa-grip-dots-vertical()```, fa-grip-dots-vertical(), fa-grip-dots-vertical(solid: true), fa-icon("grip-dots-vertical"),
```typst #fa-gripfire()```, fa-gripfire(), fa-gripfire(solid: true), fa-icon("gripfire"),
```typst #fa-grip-lines()```, fa-grip-lines(), fa-grip-lines(solid: true), fa-icon("grip-lines"),
```typst #fa-grip-lines-vertical()```, fa-grip-lines-vertical(), fa-grip-lines-vertical(solid: true), fa-icon("grip-lines-vertical"),
```typst #fa-grip-vertical()```, fa-grip-vertical(), fa-grip-vertical(solid: true), fa-icon("grip-vertical"),
```typst #fa-group-arrows-rotate()```, fa-group-arrows-rotate(), fa-group-arrows-rotate(solid: true), fa-icon("group-arrows-rotate"),
```typst #fa-grunt()```, fa-grunt(), fa-grunt(solid: true), fa-icon("grunt"),
```typst #fa-guarani-sign()```, fa-guarani-sign(), fa-guarani-sign(solid: true), fa-icon("guarani-sign"),
```typst #fa-guilded()```, fa-guilded(), fa-guilded(solid: true), fa-icon("guilded"),
```typst #fa-guitar()```, fa-guitar(), fa-guitar(solid: true), fa-icon("guitar"),
```typst #fa-guitar-electric()```, fa-guitar-electric(), fa-guitar-electric(solid: true), fa-icon("guitar-electric"),
```typst #fa-guitars()```, fa-guitars(), fa-guitars(solid: true), fa-icon("guitars"),
```typst #fa-gulp()```, fa-gulp(), fa-gulp(solid: true), fa-icon("gulp"),
```typst #fa-gun()```, fa-gun(), fa-gun(solid: true), fa-icon("gun"),
```typst #fa-gun-slash()```, fa-gun-slash(), fa-gun-slash(solid: true), fa-icon("gun-slash"),
```typst #fa-gun-squirt()```, fa-gun-squirt(), fa-gun-squirt(solid: true), fa-icon("gun-squirt"),
```typst #fa-h()```, fa-h(), fa-h(solid: true), fa-icon("h"),
```typst #fa-h1()```, fa-h1(), fa-h1(solid: true), fa-icon("h1"),
```typst #fa-h2()```, fa-h2(), fa-h2(solid: true), fa-icon("h2"),
```typst #fa-h3()```, fa-h3(), fa-h3(solid: true), fa-icon("h3"),
```typst #fa-h4()```, fa-h4(), fa-h4(solid: true), fa-icon("h4"),
```typst #fa-h5()```, fa-h5(), fa-h5(solid: true), fa-icon("h5"),
```typst #fa-h6()```, fa-h6(), fa-h6(solid: true), fa-icon("h6"),
```typst #fa-hacker-news()```, fa-hacker-news(), fa-hacker-news(solid: true), fa-icon("hacker-news"),
```typst #fa-hackerrank()```, fa-hackerrank(), fa-hackerrank(solid: true), fa-icon("hackerrank"),
```typst #fa-hammer()```, fa-hammer(), fa-hammer(solid: true), fa-icon("hammer"),
```typst #fa-hammer-brush()```, fa-hammer-brush(), fa-hammer-brush(solid: true), fa-icon("hammer-brush"),
```typst #fa-hammer-crash()```, fa-hammer-crash(), fa-hammer-crash(solid: true), fa-icon("hammer-crash"),
```typst #fa-hammer-war()```, fa-hammer-war(), fa-hammer-war(solid: true), fa-icon("hammer-war"),
```typst #fa-hamsa()```, fa-hamsa(), fa-hamsa(solid: true), fa-icon("hamsa"),
```typst #fa-hand()```, fa-hand(), fa-hand(solid: true), fa-icon("hand"),
```typst #fa-hand-paper()```, fa-hand-paper(), fa-hand-paper(solid: true), fa-icon("hand-paper"),
```typst #fa-hand-back-fist()```, fa-hand-back-fist(), fa-hand-back-fist(solid: true), fa-icon("hand-back-fist"),
```typst #fa-hand-rock()```, fa-hand-rock(), fa-hand-rock(solid: true), fa-icon("hand-rock"),
```typst #fa-hand-back-point-down()```, fa-hand-back-point-down(), fa-hand-back-point-down(solid: true), fa-icon("hand-back-point-down"),
```typst #fa-hand-back-point-left()```, fa-hand-back-point-left(), fa-hand-back-point-left(solid: true), fa-icon("hand-back-point-left"),
```typst #fa-hand-back-point-ribbon()```, fa-hand-back-point-ribbon(), fa-hand-back-point-ribbon(solid: true), fa-icon("hand-back-point-ribbon"),
```typst #fa-hand-back-point-right()```, fa-hand-back-point-right(), fa-hand-back-point-right(solid: true), fa-icon("hand-back-point-right"),
```typst #fa-hand-back-point-up()```, fa-hand-back-point-up(), fa-hand-back-point-up(solid: true), fa-icon("hand-back-point-up"),
```typst #fa-handcuffs()```, fa-handcuffs(), fa-handcuffs(solid: true), fa-icon("handcuffs"),
```typst #fa-hand-dots()```, fa-hand-dots(), fa-hand-dots(solid: true), fa-icon("hand-dots"),
```typst #fa-allergies()```, fa-allergies(), fa-allergies(solid: true), fa-icon("allergies"),
```typst #fa-hand-fingers-crossed()```, fa-hand-fingers-crossed(), fa-hand-fingers-crossed(solid: true), fa-icon("hand-fingers-crossed"),
```typst #fa-hand-fist()```, fa-hand-fist(), fa-hand-fist(solid: true), fa-icon("hand-fist"),
```typst #fa-fist-raised()```, fa-fist-raised(), fa-fist-raised(solid: true), fa-icon("fist-raised"),
```typst #fa-hand-heart()```, fa-hand-heart(), fa-hand-heart(solid: true), fa-icon("hand-heart"),
```typst #fa-hand-holding()```, fa-hand-holding(), fa-hand-holding(solid: true), fa-icon("hand-holding"),
```typst #fa-hand-holding-box()```, fa-hand-holding-box(), fa-hand-holding-box(solid: true), fa-icon("hand-holding-box"),
```typst #fa-hand-holding-circle-dollar()```, fa-hand-holding-circle-dollar(), fa-hand-holding-circle-dollar(solid: true), fa-icon("hand-holding-circle-dollar"),
```typst #fa-hand-holding-dollar()```, fa-hand-holding-dollar(), fa-hand-holding-dollar(solid: true), fa-icon("hand-holding-dollar"),
```typst #fa-hand-holding-usd()```, fa-hand-holding-usd(), fa-hand-holding-usd(solid: true), fa-icon("hand-holding-usd"),
```typst #fa-hand-holding-droplet()```, fa-hand-holding-droplet(), fa-hand-holding-droplet(solid: true), fa-icon("hand-holding-droplet"),
```typst #fa-hand-holding-water()```, fa-hand-holding-water(), fa-hand-holding-water(solid: true), fa-icon("hand-holding-water"),
```typst #fa-hand-holding-hand()```, fa-hand-holding-hand(), fa-hand-holding-hand(solid: true), fa-icon("hand-holding-hand"),
```typst #fa-hand-holding-heart()```, fa-hand-holding-heart(), fa-hand-holding-heart(solid: true), fa-icon("hand-holding-heart"),
```typst #fa-hand-holding-magic()```, fa-hand-holding-magic(), fa-hand-holding-magic(solid: true), fa-icon("hand-holding-magic"),
```typst #fa-hand-holding-medical()```, fa-hand-holding-medical(), fa-hand-holding-medical(solid: true), fa-icon("hand-holding-medical"),
```typst #fa-hand-holding-seedling()```, fa-hand-holding-seedling(), fa-hand-holding-seedling(solid: true), fa-icon("hand-holding-seedling"),
```typst #fa-hand-holding-skull()```, fa-hand-holding-skull(), fa-hand-holding-skull(solid: true), fa-icon("hand-holding-skull"),
```typst #fa-hand-horns()```, fa-hand-horns(), fa-hand-horns(solid: true), fa-icon("hand-horns"),
```typst #fa-hand-lizard()```, fa-hand-lizard(), fa-hand-lizard(solid: true), fa-icon("hand-lizard"),
```typst #fa-hand-love()```, fa-hand-love(), fa-hand-love(solid: true), fa-icon("hand-love"),
```typst #fa-hand-middle-finger()```, fa-hand-middle-finger(), fa-hand-middle-finger(solid: true), fa-icon("hand-middle-finger"),
```typst #fa-hand-peace()```, fa-hand-peace(), fa-hand-peace(solid: true), fa-icon("hand-peace"),
```typst #fa-hand-point-down()```, fa-hand-point-down(), fa-hand-point-down(solid: true), fa-icon("hand-point-down"),
```typst #fa-hand-pointer()```, fa-hand-pointer(), fa-hand-pointer(solid: true), fa-icon("hand-pointer"),
```typst #fa-hand-point-left()```, fa-hand-point-left(), fa-hand-point-left(solid: true), fa-icon("hand-point-left"),
```typst #fa-hand-point-ribbon()```, fa-hand-point-ribbon(), fa-hand-point-ribbon(solid: true), fa-icon("hand-point-ribbon"),
```typst #fa-hand-point-right()```, fa-hand-point-right(), fa-hand-point-right(solid: true), fa-icon("hand-point-right"),
```typst #fa-hand-point-up()```, fa-hand-point-up(), fa-hand-point-up(solid: true), fa-icon("hand-point-up"),
```typst #fa-hands()```, fa-hands(), fa-hands(solid: true), fa-icon("hands"),
```typst #fa-sign-language()```, fa-sign-language(), fa-sign-language(solid: true), fa-icon("sign-language"),
```typst #fa-signing()```, fa-signing(), fa-signing(solid: true), fa-icon("signing"),
```typst #fa-hands-asl-interpreting()```, fa-hands-asl-interpreting(), fa-hands-asl-interpreting(solid: true), fa-icon("hands-asl-interpreting"),
```typst #fa-american-sign-language-interpreting()```, fa-american-sign-language-interpreting(), fa-american-sign-language-interpreting(solid: true), fa-icon("american-sign-language-interpreting"),
```typst #fa-asl-interpreting()```, fa-asl-interpreting(), fa-asl-interpreting(solid: true), fa-icon("asl-interpreting"),
```typst #fa-hands-american-sign-language-interpreting()```, fa-hands-american-sign-language-interpreting(), fa-hands-american-sign-language-interpreting(solid: true), fa-icon("hands-american-sign-language-interpreting"),
```typst #fa-hands-bound()```, fa-hands-bound(), fa-hands-bound(solid: true), fa-icon("hands-bound"),
```typst #fa-hands-bubbles()```, fa-hands-bubbles(), fa-hands-bubbles(solid: true), fa-icon("hands-bubbles"),
```typst #fa-hands-wash()```, fa-hands-wash(), fa-hands-wash(solid: true), fa-icon("hands-wash"),
```typst #fa-hand-scissors()```, fa-hand-scissors(), fa-hand-scissors(solid: true), fa-icon("hand-scissors"),
```typst #fa-hands-clapping()```, fa-hands-clapping(), fa-hands-clapping(solid: true), fa-icon("hands-clapping"),
```typst #fa-handshake()```, fa-handshake(), fa-handshake(solid: true), fa-icon("handshake"),
```typst #fa-handshake-angle()```, fa-handshake-angle(), fa-handshake-angle(solid: true), fa-icon("handshake-angle"),
```typst #fa-hands-helping()```, fa-hands-helping(), fa-hands-helping(solid: true), fa-icon("hands-helping"),
```typst #fa-handshake-simple()```, fa-handshake-simple(), fa-handshake-simple(solid: true), fa-icon("handshake-simple"),
```typst #fa-handshake-alt()```, fa-handshake-alt(), fa-handshake-alt(solid: true), fa-icon("handshake-alt"),
```typst #fa-handshake-simple-slash()```, fa-handshake-simple-slash(), fa-handshake-simple-slash(solid: true), fa-icon("handshake-simple-slash"),
```typst #fa-handshake-alt-slash()```, fa-handshake-alt-slash(), fa-handshake-alt-slash(solid: true), fa-icon("handshake-alt-slash"),
```typst #fa-handshake-slash()```, fa-handshake-slash(), fa-handshake-slash(solid: true), fa-icon("handshake-slash"),
```typst #fa-hands-holding()```, fa-hands-holding(), fa-hands-holding(solid: true), fa-icon("hands-holding"),
```typst #fa-hands-holding-child()```, fa-hands-holding-child(), fa-hands-holding-child(solid: true), fa-icon("hands-holding-child"),
```typst #fa-hands-holding-circle()```, fa-hands-holding-circle(), fa-hands-holding-circle(solid: true), fa-icon("hands-holding-circle"),
```typst #fa-hands-holding-diamond()```, fa-hands-holding-diamond(), fa-hands-holding-diamond(solid: true), fa-icon("hands-holding-diamond"),
```typst #fa-hand-receiving()```, fa-hand-receiving(), fa-hand-receiving(solid: true), fa-icon("hand-receiving"),
```typst #fa-hands-holding-dollar()```, fa-hands-holding-dollar(), fa-hands-holding-dollar(solid: true), fa-icon("hands-holding-dollar"),
```typst #fa-hands-usd()```, fa-hands-usd(), fa-hands-usd(solid: true), fa-icon("hands-usd"),
```typst #fa-hands-holding-heart()```, fa-hands-holding-heart(), fa-hands-holding-heart(solid: true), fa-icon("hands-holding-heart"),
```typst #fa-hands-heart()```, fa-hands-heart(), fa-hands-heart(solid: true), fa-icon("hands-heart"),
```typst #fa-hand-sparkles()```, fa-hand-sparkles(), fa-hand-sparkles(solid: true), fa-icon("hand-sparkles"),
```typst #fa-hand-spock()```, fa-hand-spock(), fa-hand-spock(solid: true), fa-icon("hand-spock"),
```typst #fa-hands-praying()```, fa-hands-praying(), fa-hands-praying(solid: true), fa-icon("hands-praying"),
```typst #fa-praying-hands()```, fa-praying-hands(), fa-praying-hands(solid: true), fa-icon("praying-hands"),
```typst #fa-hand-wave()```, fa-hand-wave(), fa-hand-wave(solid: true), fa-icon("hand-wave"),
```typst #fa-hanukiah()```, fa-hanukiah(), fa-hanukiah(solid: true), fa-icon("hanukiah"),
```typst #fa-hard-drive()```, fa-hard-drive(), fa-hard-drive(solid: true), fa-icon("hard-drive"),
```typst #fa-hdd()```, fa-hdd(), fa-hdd(solid: true), fa-icon("hdd"),
```typst #fa-hashnode()```, fa-hashnode(), fa-hashnode(solid: true), fa-icon("hashnode"),
```typst #fa-hashtag()```, fa-hashtag(), fa-hashtag(solid: true), fa-icon("hashtag"),
```typst #fa-hashtag-lock()```, fa-hashtag-lock(), fa-hashtag-lock(solid: true), fa-icon("hashtag-lock"),
```typst #fa-hat-beach()```, fa-hat-beach(), fa-hat-beach(solid: true), fa-icon("hat-beach"),
```typst #fa-hat-chef()```, fa-hat-chef(), fa-hat-chef(solid: true), fa-icon("hat-chef"),
```typst #fa-hat-cowboy()```, fa-hat-cowboy(), fa-hat-cowboy(solid: true), fa-icon("hat-cowboy"),
```typst #fa-hat-cowboy-side()```, fa-hat-cowboy-side(), fa-hat-cowboy-side(solid: true), fa-icon("hat-cowboy-side"),
```typst #fa-hat-santa()```, fa-hat-santa(), fa-hat-santa(solid: true), fa-icon("hat-santa"),
```typst #fa-hat-winter()```, fa-hat-winter(), fa-hat-winter(solid: true), fa-icon("hat-winter"),
```typst #fa-hat-witch()```, fa-hat-witch(), fa-hat-witch(solid: true), fa-icon("hat-witch"),
```typst #fa-hat-wizard()```, fa-hat-wizard(), fa-hat-wizard(solid: true), fa-icon("hat-wizard"),
```typst #fa-heading()```, fa-heading(), fa-heading(solid: true), fa-icon("heading"),
```typst #fa-header()```, fa-header(), fa-header(solid: true), fa-icon("header"),
```typst #fa-headphones()```, fa-headphones(), fa-headphones(solid: true), fa-icon("headphones"),
```typst #fa-headphones-simple()```, fa-headphones-simple(), fa-headphones-simple(solid: true), fa-icon("headphones-simple"),
```typst #fa-headphones-alt()```, fa-headphones-alt(), fa-headphones-alt(solid: true), fa-icon("headphones-alt"),
```typst #fa-headset()```, fa-headset(), fa-headset(solid: true), fa-icon("headset"),
```typst #fa-head-side()```, fa-head-side(), fa-head-side(solid: true), fa-icon("head-side"),
```typst #fa-head-side-brain()```, fa-head-side-brain(), fa-head-side-brain(solid: true), fa-icon("head-side-brain"),
```typst #fa-head-side-cough()```, fa-head-side-cough(), fa-head-side-cough(solid: true), fa-icon("head-side-cough"),
```typst #fa-head-side-cough-slash()```, fa-head-side-cough-slash(), fa-head-side-cough-slash(solid: true), fa-icon("head-side-cough-slash"),
```typst #fa-head-side-gear()```, fa-head-side-gear(), fa-head-side-gear(solid: true), fa-icon("head-side-gear"),
```typst #fa-head-side-goggles()```, fa-head-side-goggles(), fa-head-side-goggles(solid: true), fa-icon("head-side-goggles"),
```typst #fa-head-vr()```, fa-head-vr(), fa-head-vr(solid: true), fa-icon("head-vr"),
```typst #fa-head-side-headphones()```, fa-head-side-headphones(), fa-head-side-headphones(solid: true), fa-icon("head-side-headphones"),
```typst #fa-head-side-heart()```, fa-head-side-heart(), fa-head-side-heart(solid: true), fa-icon("head-side-heart"),
```typst #fa-head-side-mask()```, fa-head-side-mask(), fa-head-side-mask(solid: true), fa-icon("head-side-mask"),
```typst #fa-head-side-medical()```, fa-head-side-medical(), fa-head-side-medical(solid: true), fa-icon("head-side-medical"),
```typst #fa-head-side-virus()```, fa-head-side-virus(), fa-head-side-virus(solid: true), fa-icon("head-side-virus"),
```typst #fa-heart()```, fa-heart(), fa-heart(solid: true), fa-icon("heart"),
```typst #fa-heart-circle-bolt()```, fa-heart-circle-bolt(), fa-heart-circle-bolt(solid: true), fa-icon("heart-circle-bolt"),
```typst #fa-heart-circle-check()```, fa-heart-circle-check(), fa-heart-circle-check(solid: true), fa-icon("heart-circle-check"),
```typst #fa-heart-circle-exclamation()```, fa-heart-circle-exclamation(), fa-heart-circle-exclamation(solid: true), fa-icon("heart-circle-exclamation"),
```typst #fa-heart-circle-minus()```, fa-heart-circle-minus(), fa-heart-circle-minus(solid: true), fa-icon("heart-circle-minus"),
```typst #fa-heart-circle-plus()```, fa-heart-circle-plus(), fa-heart-circle-plus(solid: true), fa-icon("heart-circle-plus"),
```typst #fa-heart-circle-xmark()```, fa-heart-circle-xmark(), fa-heart-circle-xmark(solid: true), fa-icon("heart-circle-xmark"),
```typst #fa-heart-crack()```, fa-heart-crack(), fa-heart-crack(solid: true), fa-icon("heart-crack"),
```typst #fa-heart-broken()```, fa-heart-broken(), fa-heart-broken(solid: true), fa-icon("heart-broken"),
```typst #fa-heart-half()```, fa-heart-half(), fa-heart-half(solid: true), fa-icon("heart-half"),
```typst #fa-heart-half-stroke()```, fa-heart-half-stroke(), fa-heart-half-stroke(solid: true), fa-icon("heart-half-stroke"),
```typst #fa-heart-half-alt()```, fa-heart-half-alt(), fa-heart-half-alt(solid: true), fa-icon("heart-half-alt"),
```typst #fa-heart-pulse()```, fa-heart-pulse(), fa-heart-pulse(solid: true), fa-icon("heart-pulse"),
```typst #fa-heartbeat()```, fa-heartbeat(), fa-heartbeat(solid: true), fa-icon("heartbeat"),
```typst #fa-heat()```, fa-heat(), fa-heat(solid: true), fa-icon("heat"),
```typst #fa-helicopter()```, fa-helicopter(), fa-helicopter(solid: true), fa-icon("helicopter"),
```typst #fa-helicopter-symbol()```, fa-helicopter-symbol(), fa-helicopter-symbol(solid: true), fa-icon("helicopter-symbol"),
```typst #fa-helmet-battle()```, fa-helmet-battle(), fa-helmet-battle(solid: true), fa-icon("helmet-battle"),
```typst #fa-helmet-safety()```, fa-helmet-safety(), fa-helmet-safety(solid: true), fa-icon("helmet-safety"),
```typst #fa-hard-hat()```, fa-hard-hat(), fa-hard-hat(solid: true), fa-icon("hard-hat"),
```typst #fa-hat-hard()```, fa-hat-hard(), fa-hat-hard(solid: true), fa-icon("hat-hard"),
```typst #fa-helmet-un()```, fa-helmet-un(), fa-helmet-un(solid: true), fa-icon("helmet-un"),
```typst #fa-hexagon()```, fa-hexagon(), fa-hexagon(solid: true), fa-icon("hexagon"),
```typst #fa-hexagon-check()```, fa-hexagon-check(), fa-hexagon-check(solid: true), fa-icon("hexagon-check"),
```typst #fa-hexagon-divide()```, fa-hexagon-divide(), fa-hexagon-divide(solid: true), fa-icon("hexagon-divide"),
```typst #fa-hexagon-exclamation()```, fa-hexagon-exclamation(), fa-hexagon-exclamation(solid: true), fa-icon("hexagon-exclamation"),
```typst #fa-hexagon-image()```, fa-hexagon-image(), fa-hexagon-image(solid: true), fa-icon("hexagon-image"),
```typst #fa-hexagon-minus()```, fa-hexagon-minus(), fa-hexagon-minus(solid: true), fa-icon("hexagon-minus"),
```typst #fa-minus-hexagon()```, fa-minus-hexagon(), fa-minus-hexagon(solid: true), fa-icon("minus-hexagon"),
```typst #fa-hexagon-plus()```, fa-hexagon-plus(), fa-hexagon-plus(solid: true), fa-icon("hexagon-plus"),
```typst #fa-plus-hexagon()```, fa-plus-hexagon(), fa-plus-hexagon(solid: true), fa-icon("plus-hexagon"),
```typst #fa-hexagon-vertical-nft()```, fa-hexagon-vertical-nft(), fa-hexagon-vertical-nft(solid: true), fa-icon("hexagon-vertical-nft"),
```typst #fa-hexagon-vertical-nft-slanted()```, fa-hexagon-vertical-nft-slanted(), fa-hexagon-vertical-nft-slanted(solid: true), fa-icon("hexagon-vertical-nft-slanted"),
```typst #fa-hexagon-xmark()```, fa-hexagon-xmark(), fa-hexagon-xmark(solid: true), fa-icon("hexagon-xmark"),
```typst #fa-times-hexagon()```, fa-times-hexagon(), fa-times-hexagon(solid: true), fa-icon("times-hexagon"),
```typst #fa-xmark-hexagon()```, fa-xmark-hexagon(), fa-xmark-hexagon(solid: true), fa-icon("xmark-hexagon"),
```typst #fa-high-definition()```, fa-high-definition(), fa-high-definition(solid: true), fa-icon("high-definition"),
```typst #fa-rectangle-hd()```, fa-rectangle-hd(), fa-rectangle-hd(solid: true), fa-icon("rectangle-hd"),
```typst #fa-highlighter()```, fa-highlighter(), fa-highlighter(solid: true), fa-icon("highlighter"),
```typst #fa-highlighter-line()```, fa-highlighter-line(), fa-highlighter-line(solid: true), fa-icon("highlighter-line"),
```typst #fa-hill-avalanche()```, fa-hill-avalanche(), fa-hill-avalanche(solid: true), fa-icon("hill-avalanche"),
```typst #fa-hill-rockslide()```, fa-hill-rockslide(), fa-hill-rockslide(solid: true), fa-icon("hill-rockslide"),
```typst #fa-hippo()```, fa-hippo(), fa-hippo(solid: true), fa-icon("hippo"),
```typst #fa-hips()```, fa-hips(), fa-hips(solid: true), fa-icon("hips"),
```typst #fa-hire-a-helper()```, fa-hire-a-helper(), fa-hire-a-helper(solid: true), fa-icon("hire-a-helper"),
```typst #fa-hive()```, fa-hive(), fa-hive(solid: true), fa-icon("hive"),
```typst #fa-hockey-mask()```, fa-hockey-mask(), fa-hockey-mask(solid: true), fa-icon("hockey-mask"),
```typst #fa-hockey-puck()```, fa-hockey-puck(), fa-hockey-puck(solid: true), fa-icon("hockey-puck"),
```typst #fa-hockey-stick-puck()```, fa-hockey-stick-puck(), fa-hockey-stick-puck(solid: true), fa-icon("hockey-stick-puck"),
```typst #fa-hockey-sticks()```, fa-hockey-sticks(), fa-hockey-sticks(solid: true), fa-icon("hockey-sticks"),
```typst #fa-holly-berry()```, fa-holly-berry(), fa-holly-berry(solid: true), fa-icon("holly-berry"),
```typst #fa-honey-pot()```, fa-honey-pot(), fa-honey-pot(solid: true), fa-icon("honey-pot"),
```typst #fa-hood-cloak()```, fa-hood-cloak(), fa-hood-cloak(solid: true), fa-icon("hood-cloak"),
```typst #fa-hooli()```, fa-hooli(), fa-hooli(solid: true), fa-icon("hooli"),
```typst #fa-horizontal-rule()```, fa-horizontal-rule(), fa-horizontal-rule(solid: true), fa-icon("horizontal-rule"),
```typst #fa-hornbill()```, fa-hornbill(), fa-hornbill(solid: true), fa-icon("hornbill"),
```typst #fa-horse()```, fa-horse(), fa-horse(solid: true), fa-icon("horse"),
```typst #fa-horse-head()```, fa-horse-head(), fa-horse-head(solid: true), fa-icon("horse-head"),
```typst #fa-horse-saddle()```, fa-horse-saddle(), fa-horse-saddle(solid: true), fa-icon("horse-saddle"),
```typst #fa-hose()```, fa-hose(), fa-hose(solid: true), fa-icon("hose"),
```typst #fa-hose-reel()```, fa-hose-reel(), fa-hose-reel(solid: true), fa-icon("hose-reel"),
```typst #fa-hospital()```, fa-hospital(), fa-hospital(solid: true), fa-icon("hospital"),
```typst #fa-hospital-alt()```, fa-hospital-alt(), fa-hospital-alt(solid: true), fa-icon("hospital-alt"),
```typst #fa-hospital-wide()```, fa-hospital-wide(), fa-hospital-wide(solid: true), fa-icon("hospital-wide"),
```typst #fa-hospitals()```, fa-hospitals(), fa-hospitals(solid: true), fa-icon("hospitals"),
```typst #fa-hospital-user()```, fa-hospital-user(), fa-hospital-user(solid: true), fa-icon("hospital-user"),
```typst #fa-hotdog()```, fa-hotdog(), fa-hotdog(solid: true), fa-icon("hotdog"),
```typst #fa-hotel()```, fa-hotel(), fa-hotel(solid: true), fa-icon("hotel"),
```typst #fa-hotjar()```, fa-hotjar(), fa-hotjar(solid: true), fa-icon("hotjar"),
```typst #fa-hot-tub-person()```, fa-hot-tub-person(), fa-hot-tub-person(solid: true), fa-icon("hot-tub-person"),
```typst #fa-hot-tub()```, fa-hot-tub(), fa-hot-tub(solid: true), fa-icon("hot-tub"),
```typst #fa-hourglass()```, fa-hourglass(), fa-hourglass(solid: true), fa-icon("hourglass"),
```typst #fa-hourglass-empty()```, fa-hourglass-empty(), fa-hourglass-empty(solid: true), fa-icon("hourglass-empty"),
```typst #fa-hourglass-clock()```, fa-hourglass-clock(), fa-hourglass-clock(solid: true), fa-icon("hourglass-clock"),
```typst #fa-hourglass-end()```, fa-hourglass-end(), fa-hourglass-end(solid: true), fa-icon("hourglass-end"),
```typst #fa-hourglass-3()```, fa-hourglass-3(), fa-hourglass-3(solid: true), fa-icon("hourglass-3"),
```typst #fa-hourglass-half()```, fa-hourglass-half(), fa-hourglass-half(solid: true), fa-icon("hourglass-half"),
```typst #fa-hourglass-2()```, fa-hourglass-2(), fa-hourglass-2(solid: true), fa-icon("hourglass-2"),
```typst #fa-hourglass-start()```, fa-hourglass-start(), fa-hourglass-start(solid: true), fa-icon("hourglass-start"),
```typst #fa-hourglass-1()```, fa-hourglass-1(), fa-hourglass-1(solid: true), fa-icon("hourglass-1"),
```typst #fa-house()```, fa-house(), fa-house(solid: true), fa-icon("house"),
```typst #fa-home()```, fa-home(), fa-home(solid: true), fa-icon("home"),
```typst #fa-home-alt()```, fa-home-alt(), fa-home-alt(solid: true), fa-icon("home-alt"),
```typst #fa-home-lg-alt()```, fa-home-lg-alt(), fa-home-lg-alt(solid: true), fa-icon("home-lg-alt"),
```typst #fa-house-blank()```, fa-house-blank(), fa-house-blank(solid: true), fa-icon("house-blank"),
```typst #fa-home-blank()```, fa-home-blank(), fa-home-blank(solid: true), fa-icon("home-blank"),
```typst #fa-house-building()```, fa-house-building(), fa-house-building(solid: true), fa-icon("house-building"),
```typst #fa-house-chimney()```, fa-house-chimney(), fa-house-chimney(solid: true), fa-icon("house-chimney"),
```typst #fa-home-lg()```, fa-home-lg(), fa-home-lg(solid: true), fa-icon("home-lg"),
```typst #fa-house-chimney-blank()```, fa-house-chimney-blank(), fa-house-chimney-blank(solid: true), fa-icon("house-chimney-blank"),
```typst #fa-house-chimney-crack()```, fa-house-chimney-crack(), fa-house-chimney-crack(solid: true), fa-icon("house-chimney-crack"),
```typst #fa-house-damage()```, fa-house-damage(), fa-house-damage(solid: true), fa-icon("house-damage"),
```typst #fa-house-chimney-heart()```, fa-house-chimney-heart(), fa-house-chimney-heart(solid: true), fa-icon("house-chimney-heart"),
```typst #fa-house-chimney-medical()```, fa-house-chimney-medical(), fa-house-chimney-medical(solid: true), fa-icon("house-chimney-medical"),
```typst #fa-clinic-medical()```, fa-clinic-medical(), fa-clinic-medical(solid: true), fa-icon("clinic-medical"),
```typst #fa-house-chimney-user()```, fa-house-chimney-user(), fa-house-chimney-user(solid: true), fa-icon("house-chimney-user"),
```typst #fa-house-chimney-window()```, fa-house-chimney-window(), fa-house-chimney-window(solid: true), fa-icon("house-chimney-window"),
```typst #fa-house-circle-check()```, fa-house-circle-check(), fa-house-circle-check(solid: true), fa-icon("house-circle-check"),
```typst #fa-house-circle-exclamation()```, fa-house-circle-exclamation(), fa-house-circle-exclamation(solid: true), fa-icon("house-circle-exclamation"),
```typst #fa-house-circle-xmark()```, fa-house-circle-xmark(), fa-house-circle-xmark(solid: true), fa-icon("house-circle-xmark"),
```typst #fa-house-crack()```, fa-house-crack(), fa-house-crack(solid: true), fa-icon("house-crack"),
```typst #fa-house-day()```, fa-house-day(), fa-house-day(solid: true), fa-icon("house-day"),
```typst #fa-house-fire()```, fa-house-fire(), fa-house-fire(solid: true), fa-icon("house-fire"),
```typst #fa-house-flag()```, fa-house-flag(), fa-house-flag(solid: true), fa-icon("house-flag"),
```typst #fa-house-flood-water()```, fa-house-flood-water(), fa-house-flood-water(solid: true), fa-icon("house-flood-water"),
```typst #fa-house-flood-water-circle-arrow-right()```, fa-house-flood-water-circle-arrow-right(), fa-house-flood-water-circle-arrow-right(solid: true), fa-icon("house-flood-water-circle-arrow-right"),
```typst #fa-house-heart()```, fa-house-heart(), fa-house-heart(solid: true), fa-icon("house-heart"),
```typst #fa-home-heart()```, fa-home-heart(), fa-home-heart(solid: true), fa-icon("home-heart"),
```typst #fa-house-laptop()```, fa-house-laptop(), fa-house-laptop(solid: true), fa-icon("house-laptop"),
```typst #fa-laptop-house()```, fa-laptop-house(), fa-laptop-house(solid: true), fa-icon("laptop-house"),
```typst #fa-house-lock()```, fa-house-lock(), fa-house-lock(solid: true), fa-icon("house-lock"),
```typst #fa-house-medical()```, fa-house-medical(), fa-house-medical(solid: true), fa-icon("house-medical"),
```typst #fa-house-medical-circle-check()```, fa-house-medical-circle-check(), fa-house-medical-circle-check(solid: true), fa-icon("house-medical-circle-check"),
```typst #fa-house-medical-circle-exclamation()```, fa-house-medical-circle-exclamation(), fa-house-medical-circle-exclamation(solid: true), fa-icon("house-medical-circle-exclamation"),
```typst #fa-house-medical-circle-xmark()```, fa-house-medical-circle-xmark(), fa-house-medical-circle-xmark(solid: true), fa-icon("house-medical-circle-xmark"),
```typst #fa-house-medical-flag()```, fa-house-medical-flag(), fa-house-medical-flag(solid: true), fa-icon("house-medical-flag"),
```typst #fa-house-night()```, fa-house-night(), fa-house-night(solid: true), fa-icon("house-night"),
```typst #fa-house-person-leave()```, fa-house-person-leave(), fa-house-person-leave(solid: true), fa-icon("house-person-leave"),
```typst #fa-house-leave()```, fa-house-leave(), fa-house-leave(solid: true), fa-icon("house-leave"),
```typst #fa-house-person-depart()```, fa-house-person-depart(), fa-house-person-depart(solid: true), fa-icon("house-person-depart"),
```typst #fa-house-person-return()```, fa-house-person-return(), fa-house-person-return(solid: true), fa-icon("house-person-return"),
```typst #fa-house-person-arrive()```, fa-house-person-arrive(), fa-house-person-arrive(solid: true), fa-icon("house-person-arrive"),
```typst #fa-house-return()```, fa-house-return(), fa-house-return(solid: true), fa-icon("house-return"),
```typst #fa-house-signal()```, fa-house-signal(), fa-house-signal(solid: true), fa-icon("house-signal"),
```typst #fa-house-tree()```, fa-house-tree(), fa-house-tree(solid: true), fa-icon("house-tree"),
```typst #fa-house-tsunami()```, fa-house-tsunami(), fa-house-tsunami(solid: true), fa-icon("house-tsunami"),
```typst #fa-house-turret()```, fa-house-turret(), fa-house-turret(solid: true), fa-icon("house-turret"),
```typst #fa-house-user()```, fa-house-user(), fa-house-user(solid: true), fa-icon("house-user"),
```typst #fa-home-user()```, fa-home-user(), fa-home-user(solid: true), fa-icon("home-user"),
```typst #fa-house-water()```, fa-house-water(), fa-house-water(solid: true), fa-icon("house-water"),
```typst #fa-house-flood()```, fa-house-flood(), fa-house-flood(solid: true), fa-icon("house-flood"),
```typst #fa-house-window()```, fa-house-window(), fa-house-window(solid: true), fa-icon("house-window"),
```typst #fa-houzz()```, fa-houzz(), fa-houzz(solid: true), fa-icon("houzz"),
```typst #fa-hryvnia-sign()```, fa-hryvnia-sign(), fa-hryvnia-sign(solid: true), fa-icon("hryvnia-sign"),
```typst #fa-hryvnia()```, fa-hryvnia(), fa-hryvnia(solid: true), fa-icon("hryvnia"),
```typst #fa-html5()```, fa-html5(), fa-html5(solid: true), fa-icon("html5"),
```typst #fa-hubspot()```, fa-hubspot(), fa-hubspot(solid: true), fa-icon("hubspot"),
```typst #fa-hundred-points()```, fa-hundred-points(), fa-hundred-points(solid: true), fa-icon("hundred-points"),
```typst #fa-100()```, fa-100(), fa-100(solid: true), fa-icon("100"),
```typst #fa-hurricane()```, fa-hurricane(), fa-hurricane(solid: true), fa-icon("hurricane"),
```typst #fa-hydra()```, fa-hydra(), fa-hydra(solid: true), fa-icon("hydra"),
```typst #fa-hyphen()```, fa-hyphen(), fa-hyphen(solid: true), fa-icon("hyphen"),
```typst #fa-i()```, fa-i(), fa-i(solid: true), fa-icon("i"),
```typst #fa-ice-cream()```, fa-ice-cream(), fa-ice-cream(solid: true), fa-icon("ice-cream"),
```typst #fa-ice-skate()```, fa-ice-skate(), fa-ice-skate(solid: true), fa-icon("ice-skate"),
```typst #fa-icicles()```, fa-icicles(), fa-icicles(solid: true), fa-icon("icicles"),
```typst #fa-icons()```, fa-icons(), fa-icons(solid: true), fa-icon("icons"),
```typst #fa-heart-music-camera-bolt()```, fa-heart-music-camera-bolt(), fa-heart-music-camera-bolt(solid: true), fa-icon("heart-music-camera-bolt"),
```typst #fa-i-cursor()```, fa-i-cursor(), fa-i-cursor(solid: true), fa-icon("i-cursor"),
```typst #fa-id-badge()```, fa-id-badge(), fa-id-badge(solid: true), fa-icon("id-badge"),
```typst #fa-id-card()```, fa-id-card(), fa-id-card(solid: true), fa-icon("id-card"),
```typst #fa-drivers-license()```, fa-drivers-license(), fa-drivers-license(solid: true), fa-icon("drivers-license"),
```typst #fa-id-card-clip()```, fa-id-card-clip(), fa-id-card-clip(solid: true), fa-icon("id-card-clip"),
```typst #fa-id-card-alt()```, fa-id-card-alt(), fa-id-card-alt(solid: true), fa-icon("id-card-alt"),
```typst #fa-ideal()```, fa-ideal(), fa-ideal(solid: true), fa-icon("ideal"),
```typst #fa-igloo()```, fa-igloo(), fa-igloo(solid: true), fa-icon("igloo"),
```typst #fa-image()```, fa-image(), fa-image(solid: true), fa-icon("image"),
```typst #fa-image-landscape()```, fa-image-landscape(), fa-image-landscape(solid: true), fa-icon("image-landscape"),
```typst #fa-landscape()```, fa-landscape(), fa-landscape(solid: true), fa-icon("landscape"),
```typst #fa-image-polaroid()```, fa-image-polaroid(), fa-image-polaroid(solid: true), fa-icon("image-polaroid"),
```typst #fa-image-polaroid-user()```, fa-image-polaroid-user(), fa-image-polaroid-user(solid: true), fa-icon("image-polaroid-user"),
```typst #fa-image-portrait()```, fa-image-portrait(), fa-image-portrait(solid: true), fa-icon("image-portrait"),
```typst #fa-portrait()```, fa-portrait(), fa-portrait(solid: true), fa-icon("portrait"),
```typst #fa-images()```, fa-images(), fa-images(solid: true), fa-icon("images"),
```typst #fa-image-slash()```, fa-image-slash(), fa-image-slash(solid: true), fa-icon("image-slash"),
```typst #fa-images-user()```, fa-images-user(), fa-images-user(solid: true), fa-icon("images-user"),
```typst #fa-image-user()```, fa-image-user(), fa-image-user(solid: true), fa-icon("image-user"),
```typst #fa-imdb()```, fa-imdb(), fa-imdb(solid: true), fa-icon("imdb"),
```typst #fa-inbox()```, fa-inbox(), fa-inbox(solid: true), fa-icon("inbox"),
```typst #fa-inboxes()```, fa-inboxes(), fa-inboxes(solid: true), fa-icon("inboxes"),
```typst #fa-inbox-full()```, fa-inbox-full(), fa-inbox-full(solid: true), fa-icon("inbox-full"),
```typst #fa-inbox-in()```, fa-inbox-in(), fa-inbox-in(solid: true), fa-icon("inbox-in"),
```typst #fa-inbox-arrow-down()```, fa-inbox-arrow-down(), fa-inbox-arrow-down(solid: true), fa-icon("inbox-arrow-down"),
```typst #fa-inbox-out()```, fa-inbox-out(), fa-inbox-out(solid: true), fa-icon("inbox-out"),
```typst #fa-inbox-arrow-up()```, fa-inbox-arrow-up(), fa-inbox-arrow-up(solid: true), fa-icon("inbox-arrow-up"),
```typst #fa-indent()```, fa-indent(), fa-indent(solid: true), fa-icon("indent"),
```typst #fa-indian-rupee-sign()```, fa-indian-rupee-sign(), fa-indian-rupee-sign(solid: true), fa-icon("indian-rupee-sign"),
```typst #fa-indian-rupee()```, fa-indian-rupee(), fa-indian-rupee(solid: true), fa-icon("indian-rupee"),
```typst #fa-inr()```, fa-inr(), fa-inr(solid: true), fa-icon("inr"),
```typst #fa-industry()```, fa-industry(), fa-industry(solid: true), fa-icon("industry"),
```typst #fa-industry-windows()```, fa-industry-windows(), fa-industry-windows(solid: true), fa-icon("industry-windows"),
```typst #fa-industry-alt()```, fa-industry-alt(), fa-industry-alt(solid: true), fa-icon("industry-alt"),
```typst #fa-infinity()```, fa-infinity(), fa-infinity(solid: true), fa-icon("infinity"),
```typst #fa-info()```, fa-info(), fa-info(solid: true), fa-icon("info"),
```typst #fa-inhaler()```, fa-inhaler(), fa-inhaler(solid: true), fa-icon("inhaler"),
```typst #fa-input-numeric()```, fa-input-numeric(), fa-input-numeric(solid: true), fa-icon("input-numeric"),
```typst #fa-input-pipe()```, fa-input-pipe(), fa-input-pipe(solid: true), fa-icon("input-pipe"),
```typst #fa-input-text()```, fa-input-text(), fa-input-text(solid: true), fa-icon("input-text"),
```typst #fa-instagram()```, fa-instagram(), fa-instagram(solid: true), fa-icon("instagram"),
```typst #fa-instalod()```, fa-instalod(), fa-instalod(solid: true), fa-icon("instalod"),
```typst #fa-integral()```, fa-integral(), fa-integral(solid: true), fa-icon("integral"),
```typst #fa-intercom()```, fa-intercom(), fa-intercom(solid: true), fa-icon("intercom"),
```typst #fa-internet-explorer()```, fa-internet-explorer(), fa-internet-explorer(solid: true), fa-icon("internet-explorer"),
```typst #fa-interrobang()```, fa-interrobang(), fa-interrobang(solid: true), fa-icon("interrobang"),
```typst #fa-intersection()```, fa-intersection(), fa-intersection(solid: true), fa-icon("intersection"),
```typst #fa-invision()```, fa-invision(), fa-invision(solid: true), fa-icon("invision"),
```typst #fa-ioxhost()```, fa-ioxhost(), fa-ioxhost(solid: true), fa-icon("ioxhost"),
```typst #fa-island-tropical()```, fa-island-tropical(), fa-island-tropical(solid: true), fa-icon("island-tropical"),
```typst #fa-island-tree-palm()```, fa-island-tree-palm(), fa-island-tree-palm(solid: true), fa-icon("island-tree-palm"),
```typst #fa-italic()```, fa-italic(), fa-italic(solid: true), fa-icon("italic"),
```typst #fa-itch-io()```, fa-itch-io(), fa-itch-io(solid: true), fa-icon("itch-io"),
```typst #fa-itunes()```, fa-itunes(), fa-itunes(solid: true), fa-icon("itunes"),
```typst #fa-itunes-note()```, fa-itunes-note(), fa-itunes-note(solid: true), fa-icon("itunes-note"),
```typst #fa-j()```, fa-j(), fa-j(solid: true), fa-icon("j"),
```typst #fa-jack-o-lantern()```, fa-jack-o-lantern(), fa-jack-o-lantern(solid: true), fa-icon("jack-o-lantern"),
```typst #fa-jar()```, fa-jar(), fa-jar(solid: true), fa-icon("jar"),
```typst #fa-jar-wheat()```, fa-jar-wheat(), fa-jar-wheat(solid: true), fa-icon("jar-wheat"),
```typst #fa-java()```, fa-java(), fa-java(solid: true), fa-icon("java"),
```typst #fa-jedi()```, fa-jedi(), fa-jedi(solid: true), fa-icon("jedi"),
```typst #fa-jedi-order()```, fa-jedi-order(), fa-jedi-order(solid: true), fa-icon("jedi-order"),
```typst #fa-jenkins()```, fa-jenkins(), fa-jenkins(solid: true), fa-icon("jenkins"),
```typst #fa-jet-fighter()```, fa-jet-fighter(), fa-jet-fighter(solid: true), fa-icon("jet-fighter"),
```typst #fa-fighter-jet()```, fa-fighter-jet(), fa-fighter-jet(solid: true), fa-icon("fighter-jet"),
```typst #fa-jet-fighter-up()```, fa-jet-fighter-up(), fa-jet-fighter-up(solid: true), fa-icon("jet-fighter-up"),
```typst #fa-jira()```, fa-jira(), fa-jira(solid: true), fa-icon("jira"),
```typst #fa-joget()```, fa-joget(), fa-joget(solid: true), fa-icon("joget"),
```typst #fa-joint()```, fa-joint(), fa-joint(solid: true), fa-icon("joint"),
```typst #fa-joomla()```, fa-joomla(), fa-joomla(solid: true), fa-icon("joomla"),
```typst #fa-joystick()```, fa-joystick(), fa-joystick(solid: true), fa-icon("joystick"),
```typst #fa-js()```, fa-js(), fa-js(solid: true), fa-icon("js"),
```typst #fa-jsfiddle()```, fa-jsfiddle(), fa-jsfiddle(solid: true), fa-icon("jsfiddle"),
```typst #fa-jug()```, fa-jug(), fa-jug(solid: true), fa-icon("jug"),
```typst #fa-jug-bottle()```, fa-jug-bottle(), fa-jug-bottle(solid: true), fa-icon("jug-bottle"),
```typst #fa-jug-detergent()```, fa-jug-detergent(), fa-jug-detergent(solid: true), fa-icon("jug-detergent"),
```typst #fa-jxl()```, fa-jxl(), fa-jxl(solid: true), fa-icon("jxl"),
```typst #fa-k()```, fa-k(), fa-k(solid: true), fa-icon("k"),
```typst #fa-kaaba()```, fa-kaaba(), fa-kaaba(solid: true), fa-icon("kaaba"),
```typst #fa-kaggle()```, fa-kaggle(), fa-kaggle(solid: true), fa-icon("kaggle"),
```typst #fa-kazoo()```, fa-kazoo(), fa-kazoo(solid: true), fa-icon("kazoo"),
```typst #fa-kerning()```, fa-kerning(), fa-kerning(solid: true), fa-icon("kerning"),
```typst #fa-key()```, fa-key(), fa-key(solid: true), fa-icon("key"),
```typst #fa-keybase()```, fa-keybase(), fa-keybase(solid: true), fa-icon("keybase"),
```typst #fa-keyboard()```, fa-keyboard(), fa-keyboard(solid: true), fa-icon("keyboard"),
```typst #fa-keyboard-brightness()```, fa-keyboard-brightness(), fa-keyboard-brightness(solid: true), fa-icon("keyboard-brightness"),
```typst #fa-keyboard-brightness-low()```, fa-keyboard-brightness-low(), fa-keyboard-brightness-low(solid: true), fa-icon("keyboard-brightness-low"),
```typst #fa-keyboard-down()```, fa-keyboard-down(), fa-keyboard-down(solid: true), fa-icon("keyboard-down"),
```typst #fa-keyboard-left()```, fa-keyboard-left(), fa-keyboard-left(solid: true), fa-icon("keyboard-left"),
```typst #fa-keycdn()```, fa-keycdn(), fa-keycdn(solid: true), fa-icon("keycdn"),
```typst #fa-keynote()```, fa-keynote(), fa-keynote(solid: true), fa-icon("keynote"),
```typst #fa-key-skeleton()```, fa-key-skeleton(), fa-key-skeleton(solid: true), fa-icon("key-skeleton"),
```typst #fa-key-skeleton-left-right()```, fa-key-skeleton-left-right(), fa-key-skeleton-left-right(solid: true), fa-icon("key-skeleton-left-right"),
```typst #fa-khanda()```, fa-khanda(), fa-khanda(solid: true), fa-icon("khanda"),
```typst #fa-kickstarter()```, fa-kickstarter(), fa-kickstarter(solid: true), fa-icon("kickstarter"),
```typst #fa-square-kickstarter()```, fa-square-kickstarter(), fa-square-kickstarter(solid: true), fa-icon("square-kickstarter"),
```typst #fa-kickstarter-k()```, fa-kickstarter-k(), fa-kickstarter-k(solid: true), fa-icon("kickstarter-k"),
```typst #fa-kidneys()```, fa-kidneys(), fa-kidneys(solid: true), fa-icon("kidneys"),
```typst #fa-kip-sign()```, fa-kip-sign(), fa-kip-sign(solid: true), fa-icon("kip-sign"),
```typst #fa-kitchen-set()```, fa-kitchen-set(), fa-kitchen-set(solid: true), fa-icon("kitchen-set"),
```typst #fa-kite()```, fa-kite(), fa-kite(solid: true), fa-icon("kite"),
```typst #fa-kit-medical()```, fa-kit-medical(), fa-kit-medical(solid: true), fa-icon("kit-medical"),
```typst #fa-first-aid()```, fa-first-aid(), fa-first-aid(solid: true), fa-icon("first-aid"),
```typst #fa-kiwi-bird()```, fa-kiwi-bird(), fa-kiwi-bird(solid: true), fa-icon("kiwi-bird"),
```typst #fa-kiwi-fruit()```, fa-kiwi-fruit(), fa-kiwi-fruit(solid: true), fa-icon("kiwi-fruit"),
```typst #fa-knife()```, fa-knife(), fa-knife(solid: true), fa-icon("knife"),
```typst #fa-utensil-knife()```, fa-utensil-knife(), fa-utensil-knife(solid: true), fa-icon("utensil-knife"),
```typst #fa-knife-kitchen()```, fa-knife-kitchen(), fa-knife-kitchen(solid: true), fa-icon("knife-kitchen"),
```typst #fa-korvue()```, fa-korvue(), fa-korvue(solid: true), fa-icon("korvue"),
```typst #fa-l()```, fa-l(), fa-l(solid: true), fa-icon("l"),
```typst #fa-lacrosse-stick()```, fa-lacrosse-stick(), fa-lacrosse-stick(solid: true), fa-icon("lacrosse-stick"),
```typst #fa-lacrosse-stick-ball()```, fa-lacrosse-stick-ball(), fa-lacrosse-stick-ball(solid: true), fa-icon("lacrosse-stick-ball"),
```typst #fa-lambda()```, fa-lambda(), fa-lambda(solid: true), fa-icon("lambda"),
```typst #fa-lamp()```, fa-lamp(), fa-lamp(solid: true), fa-icon("lamp"),
```typst #fa-lamp-desk()```, fa-lamp-desk(), fa-lamp-desk(solid: true), fa-icon("lamp-desk"),
```typst #fa-lamp-floor()```, fa-lamp-floor(), fa-lamp-floor(solid: true), fa-icon("lamp-floor"),
```typst #fa-lamp-street()```, fa-lamp-street(), fa-lamp-street(solid: true), fa-icon("lamp-street"),
```typst #fa-landmark()```, fa-landmark(), fa-landmark(solid: true), fa-icon("landmark"),
```typst #fa-landmark-dome()```, fa-landmark-dome(), fa-landmark-dome(solid: true), fa-icon("landmark-dome"),
```typst #fa-landmark-alt()```, fa-landmark-alt(), fa-landmark-alt(solid: true), fa-icon("landmark-alt"),
```typst #fa-landmark-flag()```, fa-landmark-flag(), fa-landmark-flag(solid: true), fa-icon("landmark-flag"),
```typst #fa-landmark-magnifying-glass()```, fa-landmark-magnifying-glass(), fa-landmark-magnifying-glass(solid: true), fa-icon("landmark-magnifying-glass"),
```typst #fa-land-mine-on()```, fa-land-mine-on(), fa-land-mine-on(solid: true), fa-icon("land-mine-on"),
```typst #fa-language()```, fa-language(), fa-language(solid: true), fa-icon("language"),
```typst #fa-laptop()```, fa-laptop(), fa-laptop(solid: true), fa-icon("laptop"),
```typst #fa-laptop-arrow-down()```, fa-laptop-arrow-down(), fa-laptop-arrow-down(solid: true), fa-icon("laptop-arrow-down"),
```typst #fa-laptop-binary()```, fa-laptop-binary(), fa-laptop-binary(solid: true), fa-icon("laptop-binary"),
```typst #fa-laptop-code()```, fa-laptop-code(), fa-laptop-code(solid: true), fa-icon("laptop-code"),
```typst #fa-laptop-file()```, fa-laptop-file(), fa-laptop-file(solid: true), fa-icon("laptop-file"),
```typst #fa-laptop-medical()```, fa-laptop-medical(), fa-laptop-medical(solid: true), fa-icon("laptop-medical"),
```typst #fa-laptop-mobile()```, fa-laptop-mobile(), fa-laptop-mobile(solid: true), fa-icon("laptop-mobile"),
```typst #fa-phone-laptop()```, fa-phone-laptop(), fa-phone-laptop(solid: true), fa-icon("phone-laptop"),
```typst #fa-laptop-slash()```, fa-laptop-slash(), fa-laptop-slash(solid: true), fa-icon("laptop-slash"),
```typst #fa-laravel()```, fa-laravel(), fa-laravel(solid: true), fa-icon("laravel"),
```typst #fa-lari-sign()```, fa-lari-sign(), fa-lari-sign(solid: true), fa-icon("lari-sign"),
```typst #fa-lasso()```, fa-lasso(), fa-lasso(solid: true), fa-icon("lasso"),
```typst #fa-lasso-sparkles()```, fa-lasso-sparkles(), fa-lasso-sparkles(solid: true), fa-icon("lasso-sparkles"),
```typst #fa-lastfm()```, fa-lastfm(), fa-lastfm(solid: true), fa-icon("lastfm"),
```typst #fa-layer-group()```, fa-layer-group(), fa-layer-group(solid: true), fa-icon("layer-group"),
```typst #fa-layer-minus()```, fa-layer-minus(), fa-layer-minus(solid: true), fa-icon("layer-minus"),
```typst #fa-layer-group-minus()```, fa-layer-group-minus(), fa-layer-group-minus(solid: true), fa-icon("layer-group-minus"),
```typst #fa-layer-plus()```, fa-layer-plus(), fa-layer-plus(solid: true), fa-icon("layer-plus"),
```typst #fa-layer-group-plus()```, fa-layer-group-plus(), fa-layer-group-plus(solid: true), fa-icon("layer-group-plus"),
```typst #fa-leaf()```, fa-leaf(), fa-leaf(solid: true), fa-icon("leaf"),
```typst #fa-leaf-heart()```, fa-leaf-heart(), fa-leaf-heart(solid: true), fa-icon("leaf-heart"),
```typst #fa-leaf-maple()```, fa-leaf-maple(), fa-leaf-maple(solid: true), fa-icon("leaf-maple"),
```typst #fa-leaf-oak()```, fa-leaf-oak(), fa-leaf-oak(solid: true), fa-icon("leaf-oak"),
```typst #fa-leafy-green()```, fa-leafy-green(), fa-leafy-green(solid: true), fa-icon("leafy-green"),
```typst #fa-leanpub()```, fa-leanpub(), fa-leanpub(solid: true), fa-icon("leanpub"),
```typst #fa-left()```, fa-left(), fa-left(solid: true), fa-icon("left"),
```typst #fa-arrow-alt-left()```, fa-arrow-alt-left(), fa-arrow-alt-left(solid: true), fa-icon("arrow-alt-left"),
```typst #fa-left-from-bracket()```, fa-left-from-bracket(), fa-left-from-bracket(solid: true), fa-icon("left-from-bracket"),
```typst #fa-left-from-line()```, fa-left-from-line(), fa-left-from-line(solid: true), fa-icon("left-from-line"),
```typst #fa-arrow-alt-from-right()```, fa-arrow-alt-from-right(), fa-arrow-alt-from-right(solid: true), fa-icon("arrow-alt-from-right"),
```typst #fa-left-long()```, fa-left-long(), fa-left-long(solid: true), fa-icon("left-long"),
```typst #fa-long-arrow-alt-left()```, fa-long-arrow-alt-left(), fa-long-arrow-alt-left(solid: true), fa-icon("long-arrow-alt-left"),
```typst #fa-left-long-to-line()```, fa-left-long-to-line(), fa-left-long-to-line(solid: true), fa-icon("left-long-to-line"),
```typst #fa-left-right()```, fa-left-right(), fa-left-right(solid: true), fa-icon("left-right"),
```typst #fa-arrows-alt-h()```, fa-arrows-alt-h(), fa-arrows-alt-h(solid: true), fa-icon("arrows-alt-h"),
```typst #fa-left-to-bracket()```, fa-left-to-bracket(), fa-left-to-bracket(solid: true), fa-icon("left-to-bracket"),
```typst #fa-left-to-line()```, fa-left-to-line(), fa-left-to-line(solid: true), fa-icon("left-to-line"),
```typst #fa-arrow-alt-to-left()```, fa-arrow-alt-to-left(), fa-arrow-alt-to-left(solid: true), fa-icon("arrow-alt-to-left"),
```typst #fa-lemon()```, fa-lemon(), fa-lemon(solid: true), fa-icon("lemon"),
```typst #fa-less()```, fa-less(), fa-less(solid: true), fa-icon("less"),
```typst #fa-less-than()```, fa-less-than(), fa-less-than(solid: true), fa-icon("less-than"),
```typst #fa-less-than-equal()```, fa-less-than-equal(), fa-less-than-equal(solid: true), fa-icon("less-than-equal"),
```typst #fa-letterboxd()```, fa-letterboxd(), fa-letterboxd(solid: true), fa-icon("letterboxd"),
```typst #fa-life-ring()```, fa-life-ring(), fa-life-ring(solid: true), fa-icon("life-ring"),
```typst #fa-lightbulb()```, fa-lightbulb(), fa-lightbulb(solid: true), fa-icon("lightbulb"),
```typst #fa-lightbulb-cfl()```, fa-lightbulb-cfl(), fa-lightbulb-cfl(solid: true), fa-icon("lightbulb-cfl"),
```typst #fa-lightbulb-cfl-on()```, fa-lightbulb-cfl-on(), fa-lightbulb-cfl-on(solid: true), fa-icon("lightbulb-cfl-on"),
```typst #fa-lightbulb-dollar()```, fa-lightbulb-dollar(), fa-lightbulb-dollar(solid: true), fa-icon("lightbulb-dollar"),
```typst #fa-lightbulb-exclamation()```, fa-lightbulb-exclamation(), fa-lightbulb-exclamation(solid: true), fa-icon("lightbulb-exclamation"),
```typst #fa-lightbulb-exclamation-on()```, fa-lightbulb-exclamation-on(), fa-lightbulb-exclamation-on(solid: true), fa-icon("lightbulb-exclamation-on"),
```typst #fa-lightbulb-gear()```, fa-lightbulb-gear(), fa-lightbulb-gear(solid: true), fa-icon("lightbulb-gear"),
```typst #fa-lightbulb-message()```, fa-lightbulb-message(), fa-lightbulb-message(solid: true), fa-icon("lightbulb-message"),
```typst #fa-lightbulb-on()```, fa-lightbulb-on(), fa-lightbulb-on(solid: true), fa-icon("lightbulb-on"),
```typst #fa-lightbulb-slash()```, fa-lightbulb-slash(), fa-lightbulb-slash(solid: true), fa-icon("lightbulb-slash"),
```typst #fa-light-ceiling()```, fa-light-ceiling(), fa-light-ceiling(solid: true), fa-icon("light-ceiling"),
```typst #fa-light-emergency()```, fa-light-emergency(), fa-light-emergency(solid: true), fa-icon("light-emergency"),
```typst #fa-light-emergency-on()```, fa-light-emergency-on(), fa-light-emergency-on(solid: true), fa-icon("light-emergency-on"),
```typst #fa-lighthouse()```, fa-lighthouse(), fa-lighthouse(solid: true), fa-icon("lighthouse"),
```typst #fa-lights-holiday()```, fa-lights-holiday(), fa-lights-holiday(solid: true), fa-icon("lights-holiday"),
```typst #fa-light-switch()```, fa-light-switch(), fa-light-switch(solid: true), fa-icon("light-switch"),
```typst #fa-light-switch-off()```, fa-light-switch-off(), fa-light-switch-off(solid: true), fa-icon("light-switch-off"),
```typst #fa-light-switch-on()```, fa-light-switch-on(), fa-light-switch-on(solid: true), fa-icon("light-switch-on"),
```typst #fa-line()```, fa-line(), fa-line(solid: true), fa-icon("line"),
```typst #fa-line-columns()```, fa-line-columns(), fa-line-columns(solid: true), fa-icon("line-columns"),
```typst #fa-line-height()```, fa-line-height(), fa-line-height(solid: true), fa-icon("line-height"),
```typst #fa-lines-leaning()```, fa-lines-leaning(), fa-lines-leaning(solid: true), fa-icon("lines-leaning"),
```typst #fa-link()```, fa-link(), fa-link(solid: true), fa-icon("link"),
```typst #fa-chain()```, fa-chain(), fa-chain(solid: true), fa-icon("chain"),
```typst #fa-linkedin()```, fa-linkedin(), fa-linkedin(solid: true), fa-icon("linkedin"),
```typst #fa-linkedin-in()```, fa-linkedin-in(), fa-linkedin-in(solid: true), fa-icon("linkedin-in"),
```typst #fa-link-horizontal()```, fa-link-horizontal(), fa-link-horizontal(solid: true), fa-icon("link-horizontal"),
```typst #fa-chain-horizontal()```, fa-chain-horizontal(), fa-chain-horizontal(solid: true), fa-icon("chain-horizontal"),
```typst #fa-link-horizontal-slash()```, fa-link-horizontal-slash(), fa-link-horizontal-slash(solid: true), fa-icon("link-horizontal-slash"),
```typst #fa-chain-horizontal-slash()```, fa-chain-horizontal-slash(), fa-chain-horizontal-slash(solid: true), fa-icon("chain-horizontal-slash"),
```typst #fa-link-simple()```, fa-link-simple(), fa-link-simple(solid: true), fa-icon("link-simple"),
```typst #fa-link-simple-slash()```, fa-link-simple-slash(), fa-link-simple-slash(solid: true), fa-icon("link-simple-slash"),
```typst #fa-link-slash()```, fa-link-slash(), fa-link-slash(solid: true), fa-icon("link-slash"),
```typst #fa-chain-broken()```, fa-chain-broken(), fa-chain-broken(solid: true), fa-icon("chain-broken"),
```typst #fa-chain-slash()```, fa-chain-slash(), fa-chain-slash(solid: true), fa-icon("chain-slash"),
```typst #fa-unlink()```, fa-unlink(), fa-unlink(solid: true), fa-icon("unlink"),
```typst #fa-linode()```, fa-linode(), fa-linode(solid: true), fa-icon("linode"),
```typst #fa-linux()```, fa-linux(), fa-linux(solid: true), fa-icon("linux"),
```typst #fa-lips()```, fa-lips(), fa-lips(solid: true), fa-icon("lips"),
```typst #fa-lira-sign()```, fa-lira-sign(), fa-lira-sign(solid: true), fa-icon("lira-sign"),
```typst #fa-list()```, fa-list(), fa-list(solid: true), fa-icon("list"),
```typst #fa-list-squares()```, fa-list-squares(), fa-list-squares(solid: true), fa-icon("list-squares"),
```typst #fa-list-check()```, fa-list-check(), fa-list-check(solid: true), fa-icon("list-check"),
```typst #fa-tasks()```, fa-tasks(), fa-tasks(solid: true), fa-icon("tasks"),
```typst #fa-list-dropdown()```, fa-list-dropdown(), fa-list-dropdown(solid: true), fa-icon("list-dropdown"),
```typst #fa-list-music()```, fa-list-music(), fa-list-music(solid: true), fa-icon("list-music"),
```typst #fa-list-ol()```, fa-list-ol(), fa-list-ol(solid: true), fa-icon("list-ol"),
```typst #fa-list-1-2()```, fa-list-1-2(), fa-list-1-2(solid: true), fa-icon("list-1-2"),
```typst #fa-list-numeric()```, fa-list-numeric(), fa-list-numeric(solid: true), fa-icon("list-numeric"),
```typst #fa-list-radio()```, fa-list-radio(), fa-list-radio(solid: true), fa-icon("list-radio"),
```typst #fa-list-timeline()```, fa-list-timeline(), fa-list-timeline(solid: true), fa-icon("list-timeline"),
```typst #fa-list-tree()```, fa-list-tree(), fa-list-tree(solid: true), fa-icon("list-tree"),
```typst #fa-list-ul()```, fa-list-ul(), fa-list-ul(solid: true), fa-icon("list-ul"),
```typst #fa-list-dots()```, fa-list-dots(), fa-list-dots(solid: true), fa-icon("list-dots"),
```typst #fa-litecoin-sign()```, fa-litecoin-sign(), fa-litecoin-sign(solid: true), fa-icon("litecoin-sign"),
```typst #fa-loader()```, fa-loader(), fa-loader(solid: true), fa-icon("loader"),
```typst #fa-lobster()```, fa-lobster(), fa-lobster(solid: true), fa-icon("lobster"),
```typst #fa-location-arrow()```, fa-location-arrow(), fa-location-arrow(solid: true), fa-icon("location-arrow"),
```typst #fa-location-arrow-up()```, fa-location-arrow-up(), fa-location-arrow-up(solid: true), fa-icon("location-arrow-up"),
```typst #fa-location-check()```, fa-location-check(), fa-location-check(solid: true), fa-icon("location-check"),
```typst #fa-map-marker-check()```, fa-map-marker-check(), fa-map-marker-check(solid: true), fa-icon("map-marker-check"),
```typst #fa-location-crosshairs()```, fa-location-crosshairs(), fa-location-crosshairs(solid: true), fa-icon("location-crosshairs"),
```typst #fa-location()```, fa-location(), fa-location(solid: true), fa-icon("location"),
```typst #fa-location-crosshairs-slash()```, fa-location-crosshairs-slash(), fa-location-crosshairs-slash(solid: true), fa-icon("location-crosshairs-slash"),
```typst #fa-location-slash()```, fa-location-slash(), fa-location-slash(solid: true), fa-icon("location-slash"),
```typst #fa-location-dot()```, fa-location-dot(), fa-location-dot(solid: true), fa-icon("location-dot"),
```typst #fa-map-marker-alt()```, fa-map-marker-alt(), fa-map-marker-alt(solid: true), fa-icon("map-marker-alt"),
```typst #fa-location-dot-slash()```, fa-location-dot-slash(), fa-location-dot-slash(solid: true), fa-icon("location-dot-slash"),
```typst #fa-map-marker-alt-slash()```, fa-map-marker-alt-slash(), fa-map-marker-alt-slash(solid: true), fa-icon("map-marker-alt-slash"),
```typst #fa-location-exclamation()```, fa-location-exclamation(), fa-location-exclamation(solid: true), fa-icon("location-exclamation"),
```typst #fa-map-marker-exclamation()```, fa-map-marker-exclamation(), fa-map-marker-exclamation(solid: true), fa-icon("map-marker-exclamation"),
```typst #fa-location-minus()```, fa-location-minus(), fa-location-minus(solid: true), fa-icon("location-minus"),
```typst #fa-map-marker-minus()```, fa-map-marker-minus(), fa-map-marker-minus(solid: true), fa-icon("map-marker-minus"),
```typst #fa-location-pen()```, fa-location-pen(), fa-location-pen(solid: true), fa-icon("location-pen"),
```typst #fa-map-marker-edit()```, fa-map-marker-edit(), fa-map-marker-edit(solid: true), fa-icon("map-marker-edit"),
```typst #fa-location-pin()```, fa-location-pin(), fa-location-pin(solid: true), fa-icon("location-pin"),
```typst #fa-map-marker()```, fa-map-marker(), fa-map-marker(solid: true), fa-icon("map-marker"),
```typst #fa-location-pin-lock()```, fa-location-pin-lock(), fa-location-pin-lock(solid: true), fa-icon("location-pin-lock"),
```typst #fa-location-pin-slash()```, fa-location-pin-slash(), fa-location-pin-slash(solid: true), fa-icon("location-pin-slash"),
```typst #fa-map-marker-slash()```, fa-map-marker-slash(), fa-map-marker-slash(solid: true), fa-icon("map-marker-slash"),
```typst #fa-location-plus()```, fa-location-plus(), fa-location-plus(solid: true), fa-icon("location-plus"),
```typst #fa-map-marker-plus()```, fa-map-marker-plus(), fa-map-marker-plus(solid: true), fa-icon("map-marker-plus"),
```typst #fa-location-question()```, fa-location-question(), fa-location-question(solid: true), fa-icon("location-question"),
```typst #fa-map-marker-question()```, fa-map-marker-question(), fa-map-marker-question(solid: true), fa-icon("map-marker-question"),
```typst #fa-location-smile()```, fa-location-smile(), fa-location-smile(solid: true), fa-icon("location-smile"),
```typst #fa-map-marker-smile()```, fa-map-marker-smile(), fa-map-marker-smile(solid: true), fa-icon("map-marker-smile"),
```typst #fa-location-xmark()```, fa-location-xmark(), fa-location-xmark(solid: true), fa-icon("location-xmark"),
```typst #fa-map-marker-times()```, fa-map-marker-times(), fa-map-marker-times(solid: true), fa-icon("map-marker-times"),
```typst #fa-map-marker-xmark()```, fa-map-marker-xmark(), fa-map-marker-xmark(solid: true), fa-icon("map-marker-xmark"),
```typst #fa-lock()```, fa-lock(), fa-lock(solid: true), fa-icon("lock"),
```typst #fa-lock-a()```, fa-lock-a(), fa-lock-a(solid: true), fa-icon("lock-a"),
```typst #fa-lock-hashtag()```, fa-lock-hashtag(), fa-lock-hashtag(solid: true), fa-icon("lock-hashtag"),
```typst #fa-lock-keyhole()```, fa-lock-keyhole(), fa-lock-keyhole(solid: true), fa-icon("lock-keyhole"),
```typst #fa-lock-alt()```, fa-lock-alt(), fa-lock-alt(solid: true), fa-icon("lock-alt"),
```typst #fa-lock-keyhole-open()```, fa-lock-keyhole-open(), fa-lock-keyhole-open(solid: true), fa-icon("lock-keyhole-open"),
```typst #fa-lock-open-alt()```, fa-lock-open-alt(), fa-lock-open-alt(solid: true), fa-icon("lock-open-alt"),
```typst #fa-lock-open()```, fa-lock-open(), fa-lock-open(solid: true), fa-icon("lock-open"),
```typst #fa-locust()```, fa-locust(), fa-locust(solid: true), fa-icon("locust"),
```typst #fa-lollipop()```, fa-lollipop(), fa-lollipop(solid: true), fa-icon("lollipop"),
```typst #fa-lollypop()```, fa-lollypop(), fa-lollypop(solid: true), fa-icon("lollypop"),
```typst #fa-loveseat()```, fa-loveseat(), fa-loveseat(solid: true), fa-icon("loveseat"),
```typst #fa-couch-small()```, fa-couch-small(), fa-couch-small(solid: true), fa-icon("couch-small"),
```typst #fa-luchador-mask()```, fa-luchador-mask(), fa-luchador-mask(solid: true), fa-icon("luchador-mask"),
```typst #fa-luchador()```, fa-luchador(), fa-luchador(solid: true), fa-icon("luchador"),
```typst #fa-mask-luchador()```, fa-mask-luchador(), fa-mask-luchador(solid: true), fa-icon("mask-luchador"),
```typst #fa-lungs()```, fa-lungs(), fa-lungs(solid: true), fa-icon("lungs"),
```typst #fa-lungs-virus()```, fa-lungs-virus(), fa-lungs-virus(solid: true), fa-icon("lungs-virus"),
```typst #fa-lyft()```, fa-lyft(), fa-lyft(solid: true), fa-icon("lyft"),
```typst #fa-m()```, fa-m(), fa-m(solid: true), fa-icon("m"),
```typst #fa-mace()```, fa-mace(), fa-mace(solid: true), fa-icon("mace"),
```typst #fa-magento()```, fa-magento(), fa-magento(solid: true), fa-icon("magento"),
```typst #fa-magnet()```, fa-magnet(), fa-magnet(solid: true), fa-icon("magnet"),
```typst #fa-magnifying-glass()```, fa-magnifying-glass(), fa-magnifying-glass(solid: true), fa-icon("magnifying-glass"),
```typst #fa-search()```, fa-search(), fa-search(solid: true), fa-icon("search"),
```typst #fa-magnifying-glass-arrow-right()```, fa-magnifying-glass-arrow-right(), fa-magnifying-glass-arrow-right(solid: true), fa-icon("magnifying-glass-arrow-right"),
```typst #fa-magnifying-glass-arrows-rotate()```, fa-magnifying-glass-arrows-rotate(), fa-magnifying-glass-arrows-rotate(solid: true), fa-icon("magnifying-glass-arrows-rotate"),
```typst #fa-magnifying-glass-chart()```, fa-magnifying-glass-chart(), fa-magnifying-glass-chart(solid: true), fa-icon("magnifying-glass-chart"),
```typst #fa-magnifying-glass-dollar()```, fa-magnifying-glass-dollar(), fa-magnifying-glass-dollar(solid: true), fa-icon("magnifying-glass-dollar"),
```typst #fa-search-dollar()```, fa-search-dollar(), fa-search-dollar(solid: true), fa-icon("search-dollar"),
```typst #fa-magnifying-glass-location()```, fa-magnifying-glass-location(), fa-magnifying-glass-location(solid: true), fa-icon("magnifying-glass-location"),
```typst #fa-search-location()```, fa-search-location(), fa-search-location(solid: true), fa-icon("search-location"),
```typst #fa-magnifying-glass-minus()```, fa-magnifying-glass-minus(), fa-magnifying-glass-minus(solid: true), fa-icon("magnifying-glass-minus"),
```typst #fa-search-minus()```, fa-search-minus(), fa-search-minus(solid: true), fa-icon("search-minus"),
```typst #fa-magnifying-glass-music()```, fa-magnifying-glass-music(), fa-magnifying-glass-music(solid: true), fa-icon("magnifying-glass-music"),
```typst #fa-magnifying-glass-play()```, fa-magnifying-glass-play(), fa-magnifying-glass-play(solid: true), fa-icon("magnifying-glass-play"),
```typst #fa-magnifying-glass-plus()```, fa-magnifying-glass-plus(), fa-magnifying-glass-plus(solid: true), fa-icon("magnifying-glass-plus"),
```typst #fa-search-plus()```, fa-search-plus(), fa-search-plus(solid: true), fa-icon("search-plus"),
```typst #fa-magnifying-glass-waveform()```, fa-magnifying-glass-waveform(), fa-magnifying-glass-waveform(solid: true), fa-icon("magnifying-glass-waveform"),
```typst #fa-mailbox()```, fa-mailbox(), fa-mailbox(solid: true), fa-icon("mailbox"),
```typst #fa-mailbox-flag-up()```, fa-mailbox-flag-up(), fa-mailbox-flag-up(solid: true), fa-icon("mailbox-flag-up"),
```typst #fa-mailchimp()```, fa-mailchimp(), fa-mailchimp(solid: true), fa-icon("mailchimp"),
```typst #fa-manat-sign()```, fa-manat-sign(), fa-manat-sign(solid: true), fa-icon("manat-sign"),
```typst #fa-mandalorian()```, fa-mandalorian(), fa-mandalorian(solid: true), fa-icon("mandalorian"),
```typst #fa-mandolin()```, fa-mandolin(), fa-mandolin(solid: true), fa-icon("mandolin"),
```typst #fa-mango()```, fa-mango(), fa-mango(solid: true), fa-icon("mango"),
```typst #fa-manhole()```, fa-manhole(), fa-manhole(solid: true), fa-icon("manhole"),
```typst #fa-map()```, fa-map(), fa-map(solid: true), fa-icon("map"),
```typst #fa-map-location()```, fa-map-location(), fa-map-location(solid: true), fa-icon("map-location"),
```typst #fa-map-marked()```, fa-map-marked(), fa-map-marked(solid: true), fa-icon("map-marked"),
```typst #fa-map-location-dot()```, fa-map-location-dot(), fa-map-location-dot(solid: true), fa-icon("map-location-dot"),
```typst #fa-map-marked-alt()```, fa-map-marked-alt(), fa-map-marked-alt(solid: true), fa-icon("map-marked-alt"),
```typst #fa-map-pin()```, fa-map-pin(), fa-map-pin(solid: true), fa-icon("map-pin"),
```typst #fa-markdown()```, fa-markdown(), fa-markdown(solid: true), fa-icon("markdown"),
```typst #fa-marker()```, fa-marker(), fa-marker(solid: true), fa-icon("marker"),
```typst #fa-mars()```, fa-mars(), fa-mars(solid: true), fa-icon("mars"),
```typst #fa-mars-and-venus()```, fa-mars-and-venus(), fa-mars-and-venus(solid: true), fa-icon("mars-and-venus"),
```typst #fa-mars-and-venus-burst()```, fa-mars-and-venus-burst(), fa-mars-and-venus-burst(solid: true), fa-icon("mars-and-venus-burst"),
```typst #fa-mars-double()```, fa-mars-double(), fa-mars-double(solid: true), fa-icon("mars-double"),
```typst #fa-mars-stroke()```, fa-mars-stroke(), fa-mars-stroke(solid: true), fa-icon("mars-stroke"),
```typst #fa-mars-stroke-right()```, fa-mars-stroke-right(), fa-mars-stroke-right(solid: true), fa-icon("mars-stroke-right"),
```typst #fa-mars-stroke-h()```, fa-mars-stroke-h(), fa-mars-stroke-h(solid: true), fa-icon("mars-stroke-h"),
```typst #fa-mars-stroke-up()```, fa-mars-stroke-up(), fa-mars-stroke-up(solid: true), fa-icon("mars-stroke-up"),
```typst #fa-mars-stroke-v()```, fa-mars-stroke-v(), fa-mars-stroke-v(solid: true), fa-icon("mars-stroke-v"),
```typst #fa-martini-glass()```, fa-martini-glass(), fa-martini-glass(solid: true), fa-icon("martini-glass"),
```typst #fa-glass-martini-alt()```, fa-glass-martini-alt(), fa-glass-martini-alt(solid: true), fa-icon("glass-martini-alt"),
```typst #fa-martini-glass-citrus()```, fa-martini-glass-citrus(), fa-martini-glass-citrus(solid: true), fa-icon("martini-glass-citrus"),
```typst #fa-cocktail()```, fa-cocktail(), fa-cocktail(solid: true), fa-icon("cocktail"),
```typst #fa-martini-glass-empty()```, fa-martini-glass-empty(), fa-martini-glass-empty(solid: true), fa-icon("martini-glass-empty"),
```typst #fa-glass-martini()```, fa-glass-martini(), fa-glass-martini(solid: true), fa-icon("glass-martini"),
```typst #fa-mask()```, fa-mask(), fa-mask(solid: true), fa-icon("mask"),
```typst #fa-mask-face()```, fa-mask-face(), fa-mask-face(solid: true), fa-icon("mask-face"),
```typst #fa-mask-snorkel()```, fa-mask-snorkel(), fa-mask-snorkel(solid: true), fa-icon("mask-snorkel"),
```typst #fa-masks-theater()```, fa-masks-theater(), fa-masks-theater(solid: true), fa-icon("masks-theater"),
```typst #fa-theater-masks()```, fa-theater-masks(), fa-theater-masks(solid: true), fa-icon("theater-masks"),
```typst #fa-mask-ventilator()```, fa-mask-ventilator(), fa-mask-ventilator(solid: true), fa-icon("mask-ventilator"),
```typst #fa-mastodon()```, fa-mastodon(), fa-mastodon(solid: true), fa-icon("mastodon"),
```typst #fa-mattress-pillow()```, fa-mattress-pillow(), fa-mattress-pillow(solid: true), fa-icon("mattress-pillow"),
```typst #fa-maxcdn()```, fa-maxcdn(), fa-maxcdn(solid: true), fa-icon("maxcdn"),
```typst #fa-maximize()```, fa-maximize(), fa-maximize(solid: true), fa-icon("maximize"),
```typst #fa-expand-arrows-alt()```, fa-expand-arrows-alt(), fa-expand-arrows-alt(solid: true), fa-icon("expand-arrows-alt"),
```typst #fa-mdb()```, fa-mdb(), fa-mdb(solid: true), fa-icon("mdb"),
```typst #fa-meat()```, fa-meat(), fa-meat(solid: true), fa-icon("meat"),
```typst #fa-medal()```, fa-medal(), fa-medal(solid: true), fa-icon("medal"),
```typst #fa-medapps()```, fa-medapps(), fa-medapps(solid: true), fa-icon("medapps"),
```typst #fa-medium()```, fa-medium(), fa-medium(solid: true), fa-icon("medium"),
```typst #fa-medium-m()```, fa-medium-m(), fa-medium-m(solid: true), fa-icon("medium-m"),
```typst #fa-medrt()```, fa-medrt(), fa-medrt(solid: true), fa-icon("medrt"),
```typst #fa-meetup()```, fa-meetup(), fa-meetup(solid: true), fa-icon("meetup"),
```typst #fa-megaphone()```, fa-megaphone(), fa-megaphone(solid: true), fa-icon("megaphone"),
```typst #fa-megaport()```, fa-megaport(), fa-megaport(solid: true), fa-icon("megaport"),
```typst #fa-melon()```, fa-melon(), fa-melon(solid: true), fa-icon("melon"),
```typst #fa-melon-slice()```, fa-melon-slice(), fa-melon-slice(solid: true), fa-icon("melon-slice"),
```typst #fa-memo()```, fa-memo(), fa-memo(solid: true), fa-icon("memo"),
```typst #fa-memo-circle-check()```, fa-memo-circle-check(), fa-memo-circle-check(solid: true), fa-icon("memo-circle-check"),
```typst #fa-memo-circle-info()```, fa-memo-circle-info(), fa-memo-circle-info(solid: true), fa-icon("memo-circle-info"),
```typst #fa-memo-pad()```, fa-memo-pad(), fa-memo-pad(solid: true), fa-icon("memo-pad"),
```typst #fa-memory()```, fa-memory(), fa-memory(solid: true), fa-icon("memory"),
```typst #fa-mendeley()```, fa-mendeley(), fa-mendeley(solid: true), fa-icon("mendeley"),
```typst #fa-menorah()```, fa-menorah(), fa-menorah(solid: true), fa-icon("menorah"),
```typst #fa-mercury()```, fa-mercury(), fa-mercury(solid: true), fa-icon("mercury"),
```typst #fa-merge()```, fa-merge(), fa-merge(solid: true), fa-icon("merge"),
```typst #fa-message()```, fa-message(), fa-message(solid: true), fa-icon("message"),
```typst #fa-comment-alt()```, fa-comment-alt(), fa-comment-alt(solid: true), fa-icon("comment-alt"),
```typst #fa-message-arrow-down()```, fa-message-arrow-down(), fa-message-arrow-down(solid: true), fa-icon("message-arrow-down"),
```typst #fa-comment-alt-arrow-down()```, fa-comment-alt-arrow-down(), fa-comment-alt-arrow-down(solid: true), fa-icon("comment-alt-arrow-down"),
```typst #fa-message-arrow-up()```, fa-message-arrow-up(), fa-message-arrow-up(solid: true), fa-icon("message-arrow-up"),
```typst #fa-comment-alt-arrow-up()```, fa-comment-alt-arrow-up(), fa-comment-alt-arrow-up(solid: true), fa-icon("comment-alt-arrow-up"),
```typst #fa-message-arrow-up-right()```, fa-message-arrow-up-right(), fa-message-arrow-up-right(solid: true), fa-icon("message-arrow-up-right"),
```typst #fa-message-bot()```, fa-message-bot(), fa-message-bot(solid: true), fa-icon("message-bot"),
```typst #fa-message-captions()```, fa-message-captions(), fa-message-captions(solid: true), fa-icon("message-captions"),
```typst #fa-comment-alt-captions()```, fa-comment-alt-captions(), fa-comment-alt-captions(solid: true), fa-icon("comment-alt-captions"),
```typst #fa-message-check()```, fa-message-check(), fa-message-check(solid: true), fa-icon("message-check"),
```typst #fa-comment-alt-check()```, fa-comment-alt-check(), fa-comment-alt-check(solid: true), fa-icon("comment-alt-check"),
```typst #fa-message-code()```, fa-message-code(), fa-message-code(solid: true), fa-icon("message-code"),
```typst #fa-message-dollar()```, fa-message-dollar(), fa-message-dollar(solid: true), fa-icon("message-dollar"),
```typst #fa-comment-alt-dollar()```, fa-comment-alt-dollar(), fa-comment-alt-dollar(solid: true), fa-icon("comment-alt-dollar"),
```typst #fa-message-dots()```, fa-message-dots(), fa-message-dots(solid: true), fa-icon("message-dots"),
```typst #fa-comment-alt-dots()```, fa-comment-alt-dots(), fa-comment-alt-dots(solid: true), fa-icon("comment-alt-dots"),
```typst #fa-messaging()```, fa-messaging(), fa-messaging(solid: true), fa-icon("messaging"),
```typst #fa-message-exclamation()```, fa-message-exclamation(), fa-message-exclamation(solid: true), fa-icon("message-exclamation"),
```typst #fa-comment-alt-exclamation()```, fa-comment-alt-exclamation(), fa-comment-alt-exclamation(solid: true), fa-icon("comment-alt-exclamation"),
```typst #fa-message-heart()```, fa-message-heart(), fa-message-heart(solid: true), fa-icon("message-heart"),
```typst #fa-message-image()```, fa-message-image(), fa-message-image(solid: true), fa-icon("message-image"),
```typst #fa-comment-alt-image()```, fa-comment-alt-image(), fa-comment-alt-image(solid: true), fa-icon("comment-alt-image"),
```typst #fa-message-lines()```, fa-message-lines(), fa-message-lines(solid: true), fa-icon("message-lines"),
```typst #fa-comment-alt-lines()```, fa-comment-alt-lines(), fa-comment-alt-lines(solid: true), fa-icon("comment-alt-lines"),
```typst #fa-message-medical()```, fa-message-medical(), fa-message-medical(solid: true), fa-icon("message-medical"),
```typst #fa-comment-alt-medical()```, fa-comment-alt-medical(), fa-comment-alt-medical(solid: true), fa-icon("comment-alt-medical"),
```typst #fa-message-middle()```, fa-message-middle(), fa-message-middle(solid: true), fa-icon("message-middle"),
```typst #fa-comment-middle-alt()```, fa-comment-middle-alt(), fa-comment-middle-alt(solid: true), fa-icon("comment-middle-alt"),
```typst #fa-message-middle-top()```, fa-message-middle-top(), fa-message-middle-top(solid: true), fa-icon("message-middle-top"),
```typst #fa-comment-middle-top-alt()```, fa-comment-middle-top-alt(), fa-comment-middle-top-alt(solid: true), fa-icon("comment-middle-top-alt"),
```typst #fa-message-minus()```, fa-message-minus(), fa-message-minus(solid: true), fa-icon("message-minus"),
```typst #fa-comment-alt-minus()```, fa-comment-alt-minus(), fa-comment-alt-minus(solid: true), fa-icon("comment-alt-minus"),
```typst #fa-message-music()```, fa-message-music(), fa-message-music(solid: true), fa-icon("message-music"),
```typst #fa-comment-alt-music()```, fa-comment-alt-music(), fa-comment-alt-music(solid: true), fa-icon("comment-alt-music"),
```typst #fa-message-pen()```, fa-message-pen(), fa-message-pen(solid: true), fa-icon("message-pen"),
```typst #fa-comment-alt-edit()```, fa-comment-alt-edit(), fa-comment-alt-edit(solid: true), fa-icon("comment-alt-edit"),
```typst #fa-message-edit()```, fa-message-edit(), fa-message-edit(solid: true), fa-icon("message-edit"),
```typst #fa-message-plus()```, fa-message-plus(), fa-message-plus(solid: true), fa-icon("message-plus"),
```typst #fa-comment-alt-plus()```, fa-comment-alt-plus(), fa-comment-alt-plus(solid: true), fa-icon("comment-alt-plus"),
```typst #fa-message-question()```, fa-message-question(), fa-message-question(solid: true), fa-icon("message-question"),
```typst #fa-message-quote()```, fa-message-quote(), fa-message-quote(solid: true), fa-icon("message-quote"),
```typst #fa-comment-alt-quote()```, fa-comment-alt-quote(), fa-comment-alt-quote(solid: true), fa-icon("comment-alt-quote"),
```typst #fa-messages()```, fa-messages(), fa-messages(solid: true), fa-icon("messages"),
```typst #fa-comments-alt()```, fa-comments-alt(), fa-comments-alt(solid: true), fa-icon("comments-alt"),
```typst #fa-messages-dollar()```, fa-messages-dollar(), fa-messages-dollar(solid: true), fa-icon("messages-dollar"),
```typst #fa-comments-alt-dollar()```, fa-comments-alt-dollar(), fa-comments-alt-dollar(solid: true), fa-icon("comments-alt-dollar"),
```typst #fa-message-slash()```, fa-message-slash(), fa-message-slash(solid: true), fa-icon("message-slash"),
```typst #fa-comment-alt-slash()```, fa-comment-alt-slash(), fa-comment-alt-slash(solid: true), fa-icon("comment-alt-slash"),
```typst #fa-message-smile()```, fa-message-smile(), fa-message-smile(solid: true), fa-icon("message-smile"),
```typst #fa-comment-alt-smile()```, fa-comment-alt-smile(), fa-comment-alt-smile(solid: true), fa-icon("comment-alt-smile"),
```typst #fa-message-sms()```, fa-message-sms(), fa-message-sms(solid: true), fa-icon("message-sms"),
```typst #fa-messages-question()```, fa-messages-question(), fa-messages-question(solid: true), fa-icon("messages-question"),
```typst #fa-message-text()```, fa-message-text(), fa-message-text(solid: true), fa-icon("message-text"),
```typst #fa-comment-alt-text()```, fa-comment-alt-text(), fa-comment-alt-text(solid: true), fa-icon("comment-alt-text"),
```typst #fa-message-xmark()```, fa-message-xmark(), fa-message-xmark(solid: true), fa-icon("message-xmark"),
```typst #fa-comment-alt-times()```, fa-comment-alt-times(), fa-comment-alt-times(solid: true), fa-icon("comment-alt-times"),
```typst #fa-message-times()```, fa-message-times(), fa-message-times(solid: true), fa-icon("message-times"),
```typst #fa-meta()```, fa-meta(), fa-meta(solid: true), fa-icon("meta"),
```typst #fa-meteor()```, fa-meteor(), fa-meteor(solid: true), fa-icon("meteor"),
```typst #fa-meter()```, fa-meter(), fa-meter(solid: true), fa-icon("meter"),
```typst #fa-meter-bolt()```, fa-meter-bolt(), fa-meter-bolt(solid: true), fa-icon("meter-bolt"),
```typst #fa-meter-droplet()```, fa-meter-droplet(), fa-meter-droplet(solid: true), fa-icon("meter-droplet"),
```typst #fa-meter-fire()```, fa-meter-fire(), fa-meter-fire(solid: true), fa-icon("meter-fire"),
```typst #fa-microblog()```, fa-microblog(), fa-microblog(solid: true), fa-icon("microblog"),
```typst #fa-microchip()```, fa-microchip(), fa-microchip(solid: true), fa-icon("microchip"),
```typst #fa-microchip-ai()```, fa-microchip-ai(), fa-microchip-ai(solid: true), fa-icon("microchip-ai"),
```typst #fa-microphone()```, fa-microphone(), fa-microphone(solid: true), fa-icon("microphone"),
```typst #fa-microphone-lines()```, fa-microphone-lines(), fa-microphone-lines(solid: true), fa-icon("microphone-lines"),
```typst #fa-microphone-alt()```, fa-microphone-alt(), fa-microphone-alt(solid: true), fa-icon("microphone-alt"),
```typst #fa-microphone-lines-slash()```, fa-microphone-lines-slash(), fa-microphone-lines-slash(solid: true), fa-icon("microphone-lines-slash"),
```typst #fa-microphone-alt-slash()```, fa-microphone-alt-slash(), fa-microphone-alt-slash(solid: true), fa-icon("microphone-alt-slash"),
```typst #fa-microphone-slash()```, fa-microphone-slash(), fa-microphone-slash(solid: true), fa-icon("microphone-slash"),
```typst #fa-microphone-stand()```, fa-microphone-stand(), fa-microphone-stand(solid: true), fa-icon("microphone-stand"),
```typst #fa-microscope()```, fa-microscope(), fa-microscope(solid: true), fa-icon("microscope"),
```typst #fa-microsoft()```, fa-microsoft(), fa-microsoft(solid: true), fa-icon("microsoft"),
```typst #fa-microwave()```, fa-microwave(), fa-microwave(solid: true), fa-icon("microwave"),
```typst #fa-mill-sign()```, fa-mill-sign(), fa-mill-sign(solid: true), fa-icon("mill-sign"),
```typst #fa-minimize()```, fa-minimize(), fa-minimize(solid: true), fa-icon("minimize"),
```typst #fa-compress-arrows-alt()```, fa-compress-arrows-alt(), fa-compress-arrows-alt(solid: true), fa-icon("compress-arrows-alt"),
```typst #fa-mintbit()```, fa-mintbit(), fa-mintbit(solid: true), fa-icon("mintbit"),
```typst #fa-minus()```, fa-minus(), fa-minus(solid: true), fa-icon("minus"),
```typst #fa-subtract()```, fa-subtract(), fa-subtract(solid: true), fa-icon("subtract"),
```typst #fa-mistletoe()```, fa-mistletoe(), fa-mistletoe(solid: true), fa-icon("mistletoe"),
```typst #fa-mitten()```, fa-mitten(), fa-mitten(solid: true), fa-icon("mitten"),
```typst #fa-mix()```, fa-mix(), fa-mix(solid: true), fa-icon("mix"),
```typst #fa-mixcloud()```, fa-mixcloud(), fa-mixcloud(solid: true), fa-icon("mixcloud"),
```typst #fa-mixer()```, fa-mixer(), fa-mixer(solid: true), fa-icon("mixer"),
```typst #fa-mizuni()```, fa-mizuni(), fa-mizuni(solid: true), fa-icon("mizuni"),
```typst #fa-mobile()```, fa-mobile(), fa-mobile(solid: true), fa-icon("mobile"),
```typst #fa-mobile-android()```, fa-mobile-android(), fa-mobile-android(solid: true), fa-icon("mobile-android"),
```typst #fa-mobile-phone()```, fa-mobile-phone(), fa-mobile-phone(solid: true), fa-icon("mobile-phone"),
```typst #fa-mobile-button()```, fa-mobile-button(), fa-mobile-button(solid: true), fa-icon("mobile-button"),
```typst #fa-mobile-notch()```, fa-mobile-notch(), fa-mobile-notch(solid: true), fa-icon("mobile-notch"),
```typst #fa-mobile-iphone()```, fa-mobile-iphone(), fa-mobile-iphone(solid: true), fa-icon("mobile-iphone"),
```typst #fa-mobile-retro()```, fa-mobile-retro(), fa-mobile-retro(solid: true), fa-icon("mobile-retro"),
```typst #fa-mobile-screen()```, fa-mobile-screen(), fa-mobile-screen(solid: true), fa-icon("mobile-screen"),
```typst #fa-mobile-android-alt()```, fa-mobile-android-alt(), fa-mobile-android-alt(solid: true), fa-icon("mobile-android-alt"),
```typst #fa-mobile-screen-button()```, fa-mobile-screen-button(), fa-mobile-screen-button(solid: true), fa-icon("mobile-screen-button"),
```typst #fa-mobile-alt()```, fa-mobile-alt(), fa-mobile-alt(solid: true), fa-icon("mobile-alt"),
```typst #fa-mobile-signal()```, fa-mobile-signal(), fa-mobile-signal(solid: true), fa-icon("mobile-signal"),
```typst #fa-mobile-signal-out()```, fa-mobile-signal-out(), fa-mobile-signal-out(solid: true), fa-icon("mobile-signal-out"),
```typst #fa-modx()```, fa-modx(), fa-modx(solid: true), fa-icon("modx"),
```typst #fa-monero()```, fa-monero(), fa-monero(solid: true), fa-icon("monero"),
```typst #fa-money-bill()```, fa-money-bill(), fa-money-bill(solid: true), fa-icon("money-bill"),
```typst #fa-money-bill-1()```, fa-money-bill-1(), fa-money-bill-1(solid: true), fa-icon("money-bill-1"),
```typst #fa-money-bill-alt()```, fa-money-bill-alt(), fa-money-bill-alt(solid: true), fa-icon("money-bill-alt"),
```typst #fa-money-bill-1-wave()```, fa-money-bill-1-wave(), fa-money-bill-1-wave(solid: true), fa-icon("money-bill-1-wave"),
```typst #fa-money-bill-wave-alt()```, fa-money-bill-wave-alt(), fa-money-bill-wave-alt(solid: true), fa-icon("money-bill-wave-alt"),
```typst #fa-money-bills()```, fa-money-bills(), fa-money-bills(solid: true), fa-icon("money-bills"),
```typst #fa-money-bill-simple()```, fa-money-bill-simple(), fa-money-bill-simple(solid: true), fa-icon("money-bill-simple"),
```typst #fa-money-bill-simple-wave()```, fa-money-bill-simple-wave(), fa-money-bill-simple-wave(solid: true), fa-icon("money-bill-simple-wave"),
```typst #fa-money-bills-simple()```, fa-money-bills-simple(), fa-money-bills-simple(solid: true), fa-icon("money-bills-simple"),
```typst #fa-money-bills-alt()```, fa-money-bills-alt(), fa-money-bills-alt(solid: true), fa-icon("money-bills-alt"),
```typst #fa-money-bill-transfer()```, fa-money-bill-transfer(), fa-money-bill-transfer(solid: true), fa-icon("money-bill-transfer"),
```typst #fa-money-bill-trend-up()```, fa-money-bill-trend-up(), fa-money-bill-trend-up(solid: true), fa-icon("money-bill-trend-up"),
```typst #fa-money-bill-wave()```, fa-money-bill-wave(), fa-money-bill-wave(solid: true), fa-icon("money-bill-wave"),
```typst #fa-money-bill-wheat()```, fa-money-bill-wheat(), fa-money-bill-wheat(solid: true), fa-icon("money-bill-wheat"),
```typst #fa-money-check()```, fa-money-check(), fa-money-check(solid: true), fa-icon("money-check"),
```typst #fa-money-check-dollar()```, fa-money-check-dollar(), fa-money-check-dollar(solid: true), fa-icon("money-check-dollar"),
```typst #fa-money-check-alt()```, fa-money-check-alt(), fa-money-check-alt(solid: true), fa-icon("money-check-alt"),
```typst #fa-money-check-dollar-pen()```, fa-money-check-dollar-pen(), fa-money-check-dollar-pen(solid: true), fa-icon("money-check-dollar-pen"),
```typst #fa-money-check-edit-alt()```, fa-money-check-edit-alt(), fa-money-check-edit-alt(solid: true), fa-icon("money-check-edit-alt"),
```typst #fa-money-check-pen()```, fa-money-check-pen(), fa-money-check-pen(solid: true), fa-icon("money-check-pen"),
```typst #fa-money-check-edit()```, fa-money-check-edit(), fa-money-check-edit(solid: true), fa-icon("money-check-edit"),
```typst #fa-money-from-bracket()```, fa-money-from-bracket(), fa-money-from-bracket(solid: true), fa-icon("money-from-bracket"),
```typst #fa-money-simple-from-bracket()```, fa-money-simple-from-bracket(), fa-money-simple-from-bracket(solid: true), fa-icon("money-simple-from-bracket"),
```typst #fa-monitor-waveform()```, fa-monitor-waveform(), fa-monitor-waveform(solid: true), fa-icon("monitor-waveform"),
```typst #fa-monitor-heart-rate()```, fa-monitor-heart-rate(), fa-monitor-heart-rate(solid: true), fa-icon("monitor-heart-rate"),
```typst #fa-monkey()```, fa-monkey(), fa-monkey(solid: true), fa-icon("monkey"),
```typst #fa-monument()```, fa-monument(), fa-monument(solid: true), fa-icon("monument"),
```typst #fa-moon()```, fa-moon(), fa-moon(solid: true), fa-icon("moon"),
```typst #fa-moon-cloud()```, fa-moon-cloud(), fa-moon-cloud(solid: true), fa-icon("moon-cloud"),
```typst #fa-moon-over-sun()```, fa-moon-over-sun(), fa-moon-over-sun(solid: true), fa-icon("moon-over-sun"),
```typst #fa-eclipse-alt()```, fa-eclipse-alt(), fa-eclipse-alt(solid: true), fa-icon("eclipse-alt"),
```typst #fa-moon-stars()```, fa-moon-stars(), fa-moon-stars(solid: true), fa-icon("moon-stars"),
```typst #fa-moped()```, fa-moped(), fa-moped(solid: true), fa-icon("moped"),
```typst #fa-mortar-pestle()```, fa-mortar-pestle(), fa-mortar-pestle(solid: true), fa-icon("mortar-pestle"),
```typst #fa-mosque()```, fa-mosque(), fa-mosque(solid: true), fa-icon("mosque"),
```typst #fa-mosquito()```, fa-mosquito(), fa-mosquito(solid: true), fa-icon("mosquito"),
```typst #fa-mosquito-net()```, fa-mosquito-net(), fa-mosquito-net(solid: true), fa-icon("mosquito-net"),
```typst #fa-motorcycle()```, fa-motorcycle(), fa-motorcycle(solid: true), fa-icon("motorcycle"),
```typst #fa-mound()```, fa-mound(), fa-mound(solid: true), fa-icon("mound"),
```typst #fa-mountain()```, fa-mountain(), fa-mountain(solid: true), fa-icon("mountain"),
```typst #fa-mountain-city()```, fa-mountain-city(), fa-mountain-city(solid: true), fa-icon("mountain-city"),
```typst #fa-mountains()```, fa-mountains(), fa-mountains(solid: true), fa-icon("mountains"),
```typst #fa-mountain-sun()```, fa-mountain-sun(), fa-mountain-sun(solid: true), fa-icon("mountain-sun"),
```typst #fa-mouse-field()```, fa-mouse-field(), fa-mouse-field(solid: true), fa-icon("mouse-field"),
```typst #fa-mp3-player()```, fa-mp3-player(), fa-mp3-player(solid: true), fa-icon("mp3-player"),
```typst #fa-mug()```, fa-mug(), fa-mug(solid: true), fa-icon("mug"),
```typst #fa-mug-hot()```, fa-mug-hot(), fa-mug-hot(solid: true), fa-icon("mug-hot"),
```typst #fa-mug-marshmallows()```, fa-mug-marshmallows(), fa-mug-marshmallows(solid: true), fa-icon("mug-marshmallows"),
```typst #fa-mug-saucer()```, fa-mug-saucer(), fa-mug-saucer(solid: true), fa-icon("mug-saucer"),
```typst #fa-coffee()```, fa-coffee(), fa-coffee(solid: true), fa-icon("coffee"),
```typst #fa-mug-tea()```, fa-mug-tea(), fa-mug-tea(solid: true), fa-icon("mug-tea"),
```typst #fa-mug-tea-saucer()```, fa-mug-tea-saucer(), fa-mug-tea-saucer(solid: true), fa-icon("mug-tea-saucer"),
```typst #fa-mushroom()```, fa-mushroom(), fa-mushroom(solid: true), fa-icon("mushroom"),
```typst #fa-music()```, fa-music(), fa-music(solid: true), fa-icon("music"),
```typst #fa-music-magnifying-glass()```, fa-music-magnifying-glass(), fa-music-magnifying-glass(solid: true), fa-icon("music-magnifying-glass"),
```typst #fa-music-note()```, fa-music-note(), fa-music-note(solid: true), fa-icon("music-note"),
```typst #fa-music-alt()```, fa-music-alt(), fa-music-alt(solid: true), fa-icon("music-alt"),
```typst #fa-music-note-slash()```, fa-music-note-slash(), fa-music-note-slash(solid: true), fa-icon("music-note-slash"),
```typst #fa-music-alt-slash()```, fa-music-alt-slash(), fa-music-alt-slash(solid: true), fa-icon("music-alt-slash"),
```typst #fa-music-slash()```, fa-music-slash(), fa-music-slash(solid: true), fa-icon("music-slash"),
```typst #fa-mustache()```, fa-mustache(), fa-mustache(solid: true), fa-icon("mustache"),
```typst #fa-n()```, fa-n(), fa-n(solid: true), fa-icon("n"),
```typst #fa-naira-sign()```, fa-naira-sign(), fa-naira-sign(solid: true), fa-icon("naira-sign"),
```typst #fa-napster()```, fa-napster(), fa-napster(solid: true), fa-icon("napster"),
```typst #fa-narwhal()```, fa-narwhal(), fa-narwhal(solid: true), fa-icon("narwhal"),
```typst #fa-neos()```, fa-neos(), fa-neos(solid: true), fa-icon("neos"),
```typst #fa-nesting-dolls()```, fa-nesting-dolls(), fa-nesting-dolls(solid: true), fa-icon("nesting-dolls"),
```typst #fa-network-wired()```, fa-network-wired(), fa-network-wired(solid: true), fa-icon("network-wired"),
```typst #fa-neuter()```, fa-neuter(), fa-neuter(solid: true), fa-icon("neuter"),
```typst #fa-newspaper()```, fa-newspaper(), fa-newspaper(solid: true), fa-icon("newspaper"),
```typst #fa-nfc()```, fa-nfc(), fa-nfc(solid: true), fa-icon("nfc"),
```typst #fa-nfc-directional()```, fa-nfc-directional(), fa-nfc-directional(solid: true), fa-icon("nfc-directional"),
```typst #fa-nfc-lock()```, fa-nfc-lock(), fa-nfc-lock(solid: true), fa-icon("nfc-lock"),
```typst #fa-nfc-magnifying-glass()```, fa-nfc-magnifying-glass(), fa-nfc-magnifying-glass(solid: true), fa-icon("nfc-magnifying-glass"),
```typst #fa-nfc-pen()```, fa-nfc-pen(), fa-nfc-pen(solid: true), fa-icon("nfc-pen"),
```typst #fa-nfc-signal()```, fa-nfc-signal(), fa-nfc-signal(solid: true), fa-icon("nfc-signal"),
```typst #fa-nfc-slash()```, fa-nfc-slash(), fa-nfc-slash(solid: true), fa-icon("nfc-slash"),
```typst #fa-nfc-symbol()```, fa-nfc-symbol(), fa-nfc-symbol(solid: true), fa-icon("nfc-symbol"),
```typst #fa-nfc-trash()```, fa-nfc-trash(), fa-nfc-trash(solid: true), fa-icon("nfc-trash"),
```typst #fa-nimblr()```, fa-nimblr(), fa-nimblr(solid: true), fa-icon("nimblr"),
```typst #fa-node()```, fa-node(), fa-node(solid: true), fa-icon("node"),
```typst #fa-node-js()```, fa-node-js(), fa-node-js(solid: true), fa-icon("node-js"),
```typst #fa-nose()```, fa-nose(), fa-nose(solid: true), fa-icon("nose"),
```typst #fa-notdef()```, fa-notdef(), fa-notdef(solid: true), fa-icon("notdef"),
```typst #fa-note()```, fa-note(), fa-note(solid: true), fa-icon("note"),
```typst #fa-notebook()```, fa-notebook(), fa-notebook(solid: true), fa-icon("notebook"),
```typst #fa-note-medical()```, fa-note-medical(), fa-note-medical(solid: true), fa-icon("note-medical"),
```typst #fa-not-equal()```, fa-not-equal(), fa-not-equal(solid: true), fa-icon("not-equal"),
```typst #fa-notes()```, fa-notes(), fa-notes(solid: true), fa-icon("notes"),
```typst #fa-notes-medical()```, fa-notes-medical(), fa-notes-medical(solid: true), fa-icon("notes-medical"),
```typst #fa-note-sticky()```, fa-note-sticky(), fa-note-sticky(solid: true), fa-icon("note-sticky"),
```typst #fa-sticky-note()```, fa-sticky-note(), fa-sticky-note(solid: true), fa-icon("sticky-note"),
```typst #fa-npm()```, fa-npm(), fa-npm(solid: true), fa-icon("npm"),
```typst #fa-ns8()```, fa-ns8(), fa-ns8(solid: true), fa-icon("ns8"),
```typst #fa-nutritionix()```, fa-nutritionix(), fa-nutritionix(solid: true), fa-icon("nutritionix"),
```typst #fa-o()```, fa-o(), fa-o(solid: true), fa-icon("o"),
```typst #fa-object-exclude()```, fa-object-exclude(), fa-object-exclude(solid: true), fa-icon("object-exclude"),
```typst #fa-object-group()```, fa-object-group(), fa-object-group(solid: true), fa-icon("object-group"),
```typst #fa-object-intersect()```, fa-object-intersect(), fa-object-intersect(solid: true), fa-icon("object-intersect"),
```typst #fa-objects-align-bottom()```, fa-objects-align-bottom(), fa-objects-align-bottom(solid: true), fa-icon("objects-align-bottom"),
```typst #fa-objects-align-center-horizontal()```, fa-objects-align-center-horizontal(), fa-objects-align-center-horizontal(solid: true), fa-icon("objects-align-center-horizontal"),
```typst #fa-objects-align-center-vertical()```, fa-objects-align-center-vertical(), fa-objects-align-center-vertical(solid: true), fa-icon("objects-align-center-vertical"),
```typst #fa-objects-align-left()```, fa-objects-align-left(), fa-objects-align-left(solid: true), fa-icon("objects-align-left"),
```typst #fa-objects-align-right()```, fa-objects-align-right(), fa-objects-align-right(solid: true), fa-icon("objects-align-right"),
```typst #fa-objects-align-top()```, fa-objects-align-top(), fa-objects-align-top(solid: true), fa-icon("objects-align-top"),
```typst #fa-objects-column()```, fa-objects-column(), fa-objects-column(solid: true), fa-icon("objects-column"),
```typst #fa-object-subtract()```, fa-object-subtract(), fa-object-subtract(solid: true), fa-icon("object-subtract"),
```typst #fa-object-ungroup()```, fa-object-ungroup(), fa-object-ungroup(solid: true), fa-icon("object-ungroup"),
```typst #fa-object-union()```, fa-object-union(), fa-object-union(solid: true), fa-icon("object-union"),
```typst #fa-octagon()```, fa-octagon(), fa-octagon(solid: true), fa-icon("octagon"),
```typst #fa-octagon-check()```, fa-octagon-check(), fa-octagon-check(solid: true), fa-icon("octagon-check"),
```typst #fa-octagon-divide()```, fa-octagon-divide(), fa-octagon-divide(solid: true), fa-icon("octagon-divide"),
```typst #fa-octagon-exclamation()```, fa-octagon-exclamation(), fa-octagon-exclamation(solid: true), fa-icon("octagon-exclamation"),
```typst #fa-octagon-minus()```, fa-octagon-minus(), fa-octagon-minus(solid: true), fa-icon("octagon-minus"),
```typst #fa-minus-octagon()```, fa-minus-octagon(), fa-minus-octagon(solid: true), fa-icon("minus-octagon"),
```typst #fa-octagon-plus()```, fa-octagon-plus(), fa-octagon-plus(solid: true), fa-icon("octagon-plus"),
```typst #fa-plus-octagon()```, fa-plus-octagon(), fa-plus-octagon(solid: true), fa-icon("plus-octagon"),
```typst #fa-octagon-xmark()```, fa-octagon-xmark(), fa-octagon-xmark(solid: true), fa-icon("octagon-xmark"),
```typst #fa-times-octagon()```, fa-times-octagon(), fa-times-octagon(solid: true), fa-icon("times-octagon"),
```typst #fa-xmark-octagon()```, fa-xmark-octagon(), fa-xmark-octagon(solid: true), fa-icon("xmark-octagon"),
```typst #fa-octopus()```, fa-octopus(), fa-octopus(solid: true), fa-icon("octopus"),
```typst #fa-octopus-deploy()```, fa-octopus-deploy(), fa-octopus-deploy(solid: true), fa-icon("octopus-deploy"),
```typst #fa-odnoklassniki()```, fa-odnoklassniki(), fa-odnoklassniki(solid: true), fa-icon("odnoklassniki"),
```typst #fa-odysee()```, fa-odysee(), fa-odysee(solid: true), fa-icon("odysee"),
```typst #fa-oil-can()```, fa-oil-can(), fa-oil-can(solid: true), fa-icon("oil-can"),
```typst #fa-oil-can-drip()```, fa-oil-can-drip(), fa-oil-can-drip(solid: true), fa-icon("oil-can-drip"),
```typst #fa-oil-temperature()```, fa-oil-temperature(), fa-oil-temperature(solid: true), fa-icon("oil-temperature"),
```typst #fa-oil-temp()```, fa-oil-temp(), fa-oil-temp(solid: true), fa-icon("oil-temp"),
```typst #fa-oil-well()```, fa-oil-well(), fa-oil-well(solid: true), fa-icon("oil-well"),
```typst #fa-old-republic()```, fa-old-republic(), fa-old-republic(solid: true), fa-icon("old-republic"),
```typst #fa-olive()```, fa-olive(), fa-olive(solid: true), fa-icon("olive"),
```typst #fa-olive-branch()```, fa-olive-branch(), fa-olive-branch(solid: true), fa-icon("olive-branch"),
```typst #fa-om()```, fa-om(), fa-om(solid: true), fa-icon("om"),
```typst #fa-omega()```, fa-omega(), fa-omega(solid: true), fa-icon("omega"),
```typst #fa-onion()```, fa-onion(), fa-onion(solid: true), fa-icon("onion"),
```typst #fa-opencart()```, fa-opencart(), fa-opencart(solid: true), fa-icon("opencart"),
```typst #fa-openid()```, fa-openid(), fa-openid(solid: true), fa-icon("openid"),
```typst #fa-opensuse()```, fa-opensuse(), fa-opensuse(solid: true), fa-icon("opensuse"),
```typst #fa-opera()```, fa-opera(), fa-opera(solid: true), fa-icon("opera"),
```typst #fa-optin-monster()```, fa-optin-monster(), fa-optin-monster(solid: true), fa-icon("optin-monster"),
```typst #fa-option()```, fa-option(), fa-option(solid: true), fa-icon("option"),
```typst #fa-orcid()```, fa-orcid(), fa-orcid(solid: true), fa-icon("orcid"),
```typst #fa-ornament()```, fa-ornament(), fa-ornament(solid: true), fa-icon("ornament"),
```typst #fa-osi()```, fa-osi(), fa-osi(solid: true), fa-icon("osi"),
```typst #fa-otter()```, fa-otter(), fa-otter(solid: true), fa-icon("otter"),
```typst #fa-outdent()```, fa-outdent(), fa-outdent(solid: true), fa-icon("outdent"),
```typst #fa-dedent()```, fa-dedent(), fa-dedent(solid: true), fa-icon("dedent"),
```typst #fa-outlet()```, fa-outlet(), fa-outlet(solid: true), fa-icon("outlet"),
```typst #fa-oven()```, fa-oven(), fa-oven(solid: true), fa-icon("oven"),
```typst #fa-overline()```, fa-overline(), fa-overline(solid: true), fa-icon("overline"),
```typst #fa-p()```, fa-p(), fa-p(solid: true), fa-icon("p"),
```typst #fa-padlet()```, fa-padlet(), fa-padlet(solid: true), fa-icon("padlet"),
```typst #fa-page()```, fa-page(), fa-page(solid: true), fa-icon("page"),
```typst #fa-page4()```, fa-page4(), fa-page4(solid: true), fa-icon("page4"),
```typst #fa-page-caret-down()```, fa-page-caret-down(), fa-page-caret-down(solid: true), fa-icon("page-caret-down"),
```typst #fa-file-caret-down()```, fa-file-caret-down(), fa-file-caret-down(solid: true), fa-icon("file-caret-down"),
```typst #fa-page-caret-up()```, fa-page-caret-up(), fa-page-caret-up(solid: true), fa-icon("page-caret-up"),
```typst #fa-file-caret-up()```, fa-file-caret-up(), fa-file-caret-up(solid: true), fa-icon("file-caret-up"),
```typst #fa-pagelines()```, fa-pagelines(), fa-pagelines(solid: true), fa-icon("pagelines"),
```typst #fa-pager()```, fa-pager(), fa-pager(solid: true), fa-icon("pager"),
```typst #fa-paintbrush()```, fa-paintbrush(), fa-paintbrush(solid: true), fa-icon("paintbrush"),
```typst #fa-paint-brush()```, fa-paint-brush(), fa-paint-brush(solid: true), fa-icon("paint-brush"),
```typst #fa-paintbrush-fine()```, fa-paintbrush-fine(), fa-paintbrush-fine(solid: true), fa-icon("paintbrush-fine"),
```typst #fa-paint-brush-alt()```, fa-paint-brush-alt(), fa-paint-brush-alt(solid: true), fa-icon("paint-brush-alt"),
```typst #fa-paint-brush-fine()```, fa-paint-brush-fine(), fa-paint-brush-fine(solid: true), fa-icon("paint-brush-fine"),
```typst #fa-paintbrush-alt()```, fa-paintbrush-alt(), fa-paintbrush-alt(solid: true), fa-icon("paintbrush-alt"),
```typst #fa-paintbrush-pencil()```, fa-paintbrush-pencil(), fa-paintbrush-pencil(solid: true), fa-icon("paintbrush-pencil"),
```typst #fa-paint-roller()```, fa-paint-roller(), fa-paint-roller(solid: true), fa-icon("paint-roller"),
```typst #fa-palette()```, fa-palette(), fa-palette(solid: true), fa-icon("palette"),
```typst #fa-palfed()```, fa-palfed(), fa-palfed(solid: true), fa-icon("palfed"),
```typst #fa-pallet()```, fa-pallet(), fa-pallet(solid: true), fa-icon("pallet"),
```typst #fa-pallet-box()```, fa-pallet-box(), fa-pallet-box(solid: true), fa-icon("pallet-box"),
```typst #fa-pallet-boxes()```, fa-pallet-boxes(), fa-pallet-boxes(solid: true), fa-icon("pallet-boxes"),
```typst #fa-palette-boxes()```, fa-palette-boxes(), fa-palette-boxes(solid: true), fa-icon("palette-boxes"),
```typst #fa-pallet-alt()```, fa-pallet-alt(), fa-pallet-alt(solid: true), fa-icon("pallet-alt"),
```typst #fa-pancakes()```, fa-pancakes(), fa-pancakes(solid: true), fa-icon("pancakes"),
```typst #fa-panel-ews()```, fa-panel-ews(), fa-panel-ews(solid: true), fa-icon("panel-ews"),
```typst #fa-panel-fire()```, fa-panel-fire(), fa-panel-fire(solid: true), fa-icon("panel-fire"),
```typst #fa-pan-food()```, fa-pan-food(), fa-pan-food(solid: true), fa-icon("pan-food"),
```typst #fa-pan-frying()```, fa-pan-frying(), fa-pan-frying(solid: true), fa-icon("pan-frying"),
```typst #fa-panorama()```, fa-panorama(), fa-panorama(solid: true), fa-icon("panorama"),
```typst #fa-paperclip()```, fa-paperclip(), fa-paperclip(solid: true), fa-icon("paperclip"),
```typst #fa-paperclip-vertical()```, fa-paperclip-vertical(), fa-paperclip-vertical(solid: true), fa-icon("paperclip-vertical"),
```typst #fa-paper-plane()```, fa-paper-plane(), fa-paper-plane(solid: true), fa-icon("paper-plane"),
```typst #fa-paper-plane-top()```, fa-paper-plane-top(), fa-paper-plane-top(solid: true), fa-icon("paper-plane-top"),
```typst #fa-paper-plane-alt()```, fa-paper-plane-alt(), fa-paper-plane-alt(solid: true), fa-icon("paper-plane-alt"),
```typst #fa-send()```, fa-send(), fa-send(solid: true), fa-icon("send"),
```typst #fa-parachute-box()```, fa-parachute-box(), fa-parachute-box(solid: true), fa-icon("parachute-box"),
```typst #fa-paragraph()```, fa-paragraph(), fa-paragraph(solid: true), fa-icon("paragraph"),
```typst #fa-paragraph-left()```, fa-paragraph-left(), fa-paragraph-left(solid: true), fa-icon("paragraph-left"),
```typst #fa-paragraph-rtl()```, fa-paragraph-rtl(), fa-paragraph-rtl(solid: true), fa-icon("paragraph-rtl"),
```typst #fa-party-bell()```, fa-party-bell(), fa-party-bell(solid: true), fa-icon("party-bell"),
```typst #fa-party-horn()```, fa-party-horn(), fa-party-horn(solid: true), fa-icon("party-horn"),
```typst #fa-passport()```, fa-passport(), fa-passport(solid: true), fa-icon("passport"),
```typst #fa-paste()```, fa-paste(), fa-paste(solid: true), fa-icon("paste"),
```typst #fa-file-clipboard()```, fa-file-clipboard(), fa-file-clipboard(solid: true), fa-icon("file-clipboard"),
```typst #fa-patreon()```, fa-patreon(), fa-patreon(solid: true), fa-icon("patreon"),
```typst #fa-pause()```, fa-pause(), fa-pause(solid: true), fa-icon("pause"),
```typst #fa-paw()```, fa-paw(), fa-paw(solid: true), fa-icon("paw"),
```typst #fa-paw-claws()```, fa-paw-claws(), fa-paw-claws(solid: true), fa-icon("paw-claws"),
```typst #fa-paw-simple()```, fa-paw-simple(), fa-paw-simple(solid: true), fa-icon("paw-simple"),
```typst #fa-paw-alt()```, fa-paw-alt(), fa-paw-alt(solid: true), fa-icon("paw-alt"),
```typst #fa-paypal()```, fa-paypal(), fa-paypal(solid: true), fa-icon("paypal"),
```typst #fa-peace()```, fa-peace(), fa-peace(solid: true), fa-icon("peace"),
```typst #fa-peach()```, fa-peach(), fa-peach(solid: true), fa-icon("peach"),
```typst #fa-peanut()```, fa-peanut(), fa-peanut(solid: true), fa-icon("peanut"),
```typst #fa-peanuts()```, fa-peanuts(), fa-peanuts(solid: true), fa-icon("peanuts"),
```typst #fa-peapod()```, fa-peapod(), fa-peapod(solid: true), fa-icon("peapod"),
```typst #fa-pear()```, fa-pear(), fa-pear(solid: true), fa-icon("pear"),
```typst #fa-pedestal()```, fa-pedestal(), fa-pedestal(solid: true), fa-icon("pedestal"),
```typst #fa-pegasus()```, fa-pegasus(), fa-pegasus(solid: true), fa-icon("pegasus"),
```typst #fa-pen()```, fa-pen(), fa-pen(solid: true), fa-icon("pen"),
```typst #fa-pencil()```, fa-pencil(), fa-pencil(solid: true), fa-icon("pencil"),
```typst #fa-pencil-alt()```, fa-pencil-alt(), fa-pencil-alt(solid: true), fa-icon("pencil-alt"),
```typst #fa-pencil-mechanical()```, fa-pencil-mechanical(), fa-pencil-mechanical(solid: true), fa-icon("pencil-mechanical"),
```typst #fa-pencil-slash()```, fa-pencil-slash(), fa-pencil-slash(solid: true), fa-icon("pencil-slash"),
```typst #fa-pen-circle()```, fa-pen-circle(), fa-pen-circle(solid: true), fa-icon("pen-circle"),
```typst #fa-pen-clip()```, fa-pen-clip(), fa-pen-clip(solid: true), fa-icon("pen-clip"),
```typst #fa-pen-alt()```, fa-pen-alt(), fa-pen-alt(solid: true), fa-icon("pen-alt"),
```typst #fa-pen-clip-slash()```, fa-pen-clip-slash(), fa-pen-clip-slash(solid: true), fa-icon("pen-clip-slash"),
```typst #fa-pen-alt-slash()```, fa-pen-alt-slash(), fa-pen-alt-slash(solid: true), fa-icon("pen-alt-slash"),
```typst #fa-pen-fancy()```, fa-pen-fancy(), fa-pen-fancy(solid: true), fa-icon("pen-fancy"),
```typst #fa-pen-fancy-slash()```, fa-pen-fancy-slash(), fa-pen-fancy-slash(solid: true), fa-icon("pen-fancy-slash"),
```typst #fa-pen-field()```, fa-pen-field(), fa-pen-field(solid: true), fa-icon("pen-field"),
```typst #fa-pen-line()```, fa-pen-line(), fa-pen-line(solid: true), fa-icon("pen-line"),
```typst #fa-pen-nib()```, fa-pen-nib(), fa-pen-nib(solid: true), fa-icon("pen-nib"),
```typst #fa-pen-nib-slash()```, fa-pen-nib-slash(), fa-pen-nib-slash(solid: true), fa-icon("pen-nib-slash"),
```typst #fa-pen-paintbrush()```, fa-pen-paintbrush(), fa-pen-paintbrush(solid: true), fa-icon("pen-paintbrush"),
```typst #fa-pencil-paintbrush()```, fa-pencil-paintbrush(), fa-pencil-paintbrush(solid: true), fa-icon("pencil-paintbrush"),
```typst #fa-pen-ruler()```, fa-pen-ruler(), fa-pen-ruler(solid: true), fa-icon("pen-ruler"),
```typst #fa-pencil-ruler()```, fa-pencil-ruler(), fa-pencil-ruler(solid: true), fa-icon("pencil-ruler"),
```typst #fa-pen-slash()```, fa-pen-slash(), fa-pen-slash(solid: true), fa-icon("pen-slash"),
```typst #fa-pen-swirl()```, fa-pen-swirl(), fa-pen-swirl(solid: true), fa-icon("pen-swirl"),
```typst #fa-pen-to-square()```, fa-pen-to-square(), fa-pen-to-square(solid: true), fa-icon("pen-to-square"),
```typst #fa-edit()```, fa-edit(), fa-edit(solid: true), fa-icon("edit"),
```typst #fa-people()```, fa-people(), fa-people(solid: true), fa-icon("people"),
```typst #fa-people-arrows()```, fa-people-arrows(), fa-people-arrows(solid: true), fa-icon("people-arrows"),
```typst #fa-people-arrows-left-right()```, fa-people-arrows-left-right(), fa-people-arrows-left-right(solid: true), fa-icon("people-arrows-left-right"),
```typst #fa-people-carry-box()```, fa-people-carry-box(), fa-people-carry-box(solid: true), fa-icon("people-carry-box"),
```typst #fa-people-carry()```, fa-people-carry(), fa-people-carry(solid: true), fa-icon("people-carry"),
```typst #fa-people-dress()```, fa-people-dress(), fa-people-dress(solid: true), fa-icon("people-dress"),
```typst #fa-people-dress-simple()```, fa-people-dress-simple(), fa-people-dress-simple(solid: true), fa-icon("people-dress-simple"),
```typst #fa-people-group()```, fa-people-group(), fa-people-group(solid: true), fa-icon("people-group"),
```typst #fa-people-line()```, fa-people-line(), fa-people-line(solid: true), fa-icon("people-line"),
```typst #fa-people-pants()```, fa-people-pants(), fa-people-pants(solid: true), fa-icon("people-pants"),
```typst #fa-people-pants-simple()```, fa-people-pants-simple(), fa-people-pants-simple(solid: true), fa-icon("people-pants-simple"),
```typst #fa-people-pulling()```, fa-people-pulling(), fa-people-pulling(solid: true), fa-icon("people-pulling"),
```typst #fa-people-robbery()```, fa-people-robbery(), fa-people-robbery(solid: true), fa-icon("people-robbery"),
```typst #fa-people-roof()```, fa-people-roof(), fa-people-roof(solid: true), fa-icon("people-roof"),
```typst #fa-people-simple()```, fa-people-simple(), fa-people-simple(solid: true), fa-icon("people-simple"),
```typst #fa-pepper()```, fa-pepper(), fa-pepper(solid: true), fa-icon("pepper"),
```typst #fa-pepper-hot()```, fa-pepper-hot(), fa-pepper-hot(solid: true), fa-icon("pepper-hot"),
```typst #fa-perbyte()```, fa-perbyte(), fa-perbyte(solid: true), fa-icon("perbyte"),
```typst #fa-percent()```, fa-percent(), fa-percent(solid: true), fa-icon("percent"),
```typst #fa-percentage()```, fa-percentage(), fa-percentage(solid: true), fa-icon("percentage"),
```typst #fa-period()```, fa-period(), fa-period(solid: true), fa-icon("period"),
```typst #fa-periscope()```, fa-periscope(), fa-periscope(solid: true), fa-icon("periscope"),
```typst #fa-person()```, fa-person(), fa-person(solid: true), fa-icon("person"),
```typst #fa-male()```, fa-male(), fa-male(solid: true), fa-icon("male"),
```typst #fa-person-arrow-down-to-line()```, fa-person-arrow-down-to-line(), fa-person-arrow-down-to-line(solid: true), fa-icon("person-arrow-down-to-line"),
```typst #fa-person-arrow-up-from-line()```, fa-person-arrow-up-from-line(), fa-person-arrow-up-from-line(solid: true), fa-icon("person-arrow-up-from-line"),
```typst #fa-person-biking()```, fa-person-biking(), fa-person-biking(solid: true), fa-icon("person-biking"),
```typst #fa-biking()```, fa-biking(), fa-biking(solid: true), fa-icon("biking"),
```typst #fa-person-biking-mountain()```, fa-person-biking-mountain(), fa-person-biking-mountain(solid: true), fa-icon("person-biking-mountain"),
```typst #fa-biking-mountain()```, fa-biking-mountain(), fa-biking-mountain(solid: true), fa-icon("biking-mountain"),
```typst #fa-person-booth()```, fa-person-booth(), fa-person-booth(solid: true), fa-icon("person-booth"),
```typst #fa-person-breastfeeding()```, fa-person-breastfeeding(), fa-person-breastfeeding(solid: true), fa-icon("person-breastfeeding"),
```typst #fa-person-burst()```, fa-person-burst(), fa-person-burst(solid: true), fa-icon("person-burst"),
```typst #fa-person-cane()```, fa-person-cane(), fa-person-cane(solid: true), fa-icon("person-cane"),
```typst #fa-person-carry-box()```, fa-person-carry-box(), fa-person-carry-box(solid: true), fa-icon("person-carry-box"),
```typst #fa-person-carry()```, fa-person-carry(), fa-person-carry(solid: true), fa-icon("person-carry"),
```typst #fa-person-chalkboard()```, fa-person-chalkboard(), fa-person-chalkboard(solid: true), fa-icon("person-chalkboard"),
```typst #fa-person-circle-check()```, fa-person-circle-check(), fa-person-circle-check(solid: true), fa-icon("person-circle-check"),
```typst #fa-person-circle-exclamation()```, fa-person-circle-exclamation(), fa-person-circle-exclamation(solid: true), fa-icon("person-circle-exclamation"),
```typst #fa-person-circle-minus()```, fa-person-circle-minus(), fa-person-circle-minus(solid: true), fa-icon("person-circle-minus"),
```typst #fa-person-circle-plus()```, fa-person-circle-plus(), fa-person-circle-plus(solid: true), fa-icon("person-circle-plus"),
```typst #fa-person-circle-question()```, fa-person-circle-question(), fa-person-circle-question(solid: true), fa-icon("person-circle-question"),
```typst #fa-person-circle-xmark()```, fa-person-circle-xmark(), fa-person-circle-xmark(solid: true), fa-icon("person-circle-xmark"),
```typst #fa-person-digging()```, fa-person-digging(), fa-person-digging(solid: true), fa-icon("person-digging"),
```typst #fa-digging()```, fa-digging(), fa-digging(solid: true), fa-icon("digging"),
```typst #fa-person-dolly()```, fa-person-dolly(), fa-person-dolly(solid: true), fa-icon("person-dolly"),
```typst #fa-person-dolly-empty()```, fa-person-dolly-empty(), fa-person-dolly-empty(solid: true), fa-icon("person-dolly-empty"),
```typst #fa-person-dots-from-line()```, fa-person-dots-from-line(), fa-person-dots-from-line(solid: true), fa-icon("person-dots-from-line"),
```typst #fa-diagnoses()```, fa-diagnoses(), fa-diagnoses(solid: true), fa-icon("diagnoses"),
```typst #fa-person-dress()```, fa-person-dress(), fa-person-dress(solid: true), fa-icon("person-dress"),
```typst #fa-female()```, fa-female(), fa-female(solid: true), fa-icon("female"),
```typst #fa-person-dress-burst()```, fa-person-dress-burst(), fa-person-dress-burst(solid: true), fa-icon("person-dress-burst"),
```typst #fa-person-dress-fairy()```, fa-person-dress-fairy(), fa-person-dress-fairy(solid: true), fa-icon("person-dress-fairy"),
```typst #fa-person-dress-simple()```, fa-person-dress-simple(), fa-person-dress-simple(solid: true), fa-icon("person-dress-simple"),
```typst #fa-person-drowning()```, fa-person-drowning(), fa-person-drowning(solid: true), fa-icon("person-drowning"),
```typst #fa-person-fairy()```, fa-person-fairy(), fa-person-fairy(solid: true), fa-icon("person-fairy"),
```typst #fa-person-falling()```, fa-person-falling(), fa-person-falling(solid: true), fa-icon("person-falling"),
```typst #fa-person-falling-burst()```, fa-person-falling-burst(), fa-person-falling-burst(solid: true), fa-icon("person-falling-burst"),
```typst #fa-person-from-portal()```, fa-person-from-portal(), fa-person-from-portal(solid: true), fa-icon("person-from-portal"),
```typst #fa-portal-exit()```, fa-portal-exit(), fa-portal-exit(solid: true), fa-icon("portal-exit"),
```typst #fa-person-half-dress()```, fa-person-half-dress(), fa-person-half-dress(solid: true), fa-icon("person-half-dress"),
```typst #fa-person-harassing()```, fa-person-harassing(), fa-person-harassing(solid: true), fa-icon("person-harassing"),
```typst #fa-person-hiking()```, fa-person-hiking(), fa-person-hiking(solid: true), fa-icon("person-hiking"),
```typst #fa-hiking()```, fa-hiking(), fa-hiking(solid: true), fa-icon("hiking"),
```typst #fa-person-military-pointing()```, fa-person-military-pointing(), fa-person-military-pointing(solid: true), fa-icon("person-military-pointing"),
```typst #fa-person-military-rifle()```, fa-person-military-rifle(), fa-person-military-rifle(solid: true), fa-icon("person-military-rifle"),
```typst #fa-person-military-to-person()```, fa-person-military-to-person(), fa-person-military-to-person(solid: true), fa-icon("person-military-to-person"),
```typst #fa-person-pinball()```, fa-person-pinball(), fa-person-pinball(solid: true), fa-icon("person-pinball"),
```typst #fa-person-praying()```, fa-person-praying(), fa-person-praying(solid: true), fa-icon("person-praying"),
```typst #fa-pray()```, fa-pray(), fa-pray(solid: true), fa-icon("pray"),
```typst #fa-person-pregnant()```, fa-person-pregnant(), fa-person-pregnant(solid: true), fa-icon("person-pregnant"),
```typst #fa-person-rays()```, fa-person-rays(), fa-person-rays(solid: true), fa-icon("person-rays"),
```typst #fa-person-rifle()```, fa-person-rifle(), fa-person-rifle(solid: true), fa-icon("person-rifle"),
```typst #fa-person-running()```, fa-person-running(), fa-person-running(solid: true), fa-icon("person-running"),
```typst #fa-running()```, fa-running(), fa-running(solid: true), fa-icon("running"),
```typst #fa-person-running-fast()```, fa-person-running-fast(), fa-person-running-fast(solid: true), fa-icon("person-running-fast"),
```typst #fa-person-seat()```, fa-person-seat(), fa-person-seat(solid: true), fa-icon("person-seat"),
```typst #fa-person-seat-reclined()```, fa-person-seat-reclined(), fa-person-seat-reclined(solid: true), fa-icon("person-seat-reclined"),
```typst #fa-person-shelter()```, fa-person-shelter(), fa-person-shelter(solid: true), fa-icon("person-shelter"),
```typst #fa-person-sign()```, fa-person-sign(), fa-person-sign(solid: true), fa-icon("person-sign"),
```typst #fa-person-simple()```, fa-person-simple(), fa-person-simple(solid: true), fa-icon("person-simple"),
```typst #fa-person-skating()```, fa-person-skating(), fa-person-skating(solid: true), fa-icon("person-skating"),
```typst #fa-skating()```, fa-skating(), fa-skating(solid: true), fa-icon("skating"),
```typst #fa-person-skiing()```, fa-person-skiing(), fa-person-skiing(solid: true), fa-icon("person-skiing"),
```typst #fa-skiing()```, fa-skiing(), fa-skiing(solid: true), fa-icon("skiing"),
```typst #fa-person-skiing-nordic()```, fa-person-skiing-nordic(), fa-person-skiing-nordic(solid: true), fa-icon("person-skiing-nordic"),
```typst #fa-skiing-nordic()```, fa-skiing-nordic(), fa-skiing-nordic(solid: true), fa-icon("skiing-nordic"),
```typst #fa-person-ski-jumping()```, fa-person-ski-jumping(), fa-person-ski-jumping(solid: true), fa-icon("person-ski-jumping"),
```typst #fa-ski-jump()```, fa-ski-jump(), fa-ski-jump(solid: true), fa-icon("ski-jump"),
```typst #fa-person-ski-lift()```, fa-person-ski-lift(), fa-person-ski-lift(solid: true), fa-icon("person-ski-lift"),
```typst #fa-ski-lift()```, fa-ski-lift(), fa-ski-lift(solid: true), fa-icon("ski-lift"),
```typst #fa-person-sledding()```, fa-person-sledding(), fa-person-sledding(solid: true), fa-icon("person-sledding"),
```typst #fa-sledding()```, fa-sledding(), fa-sledding(solid: true), fa-icon("sledding"),
```typst #fa-person-snowboarding()```, fa-person-snowboarding(), fa-person-snowboarding(solid: true), fa-icon("person-snowboarding"),
```typst #fa-snowboarding()```, fa-snowboarding(), fa-snowboarding(solid: true), fa-icon("snowboarding"),
```typst #fa-person-snowmobiling()```, fa-person-snowmobiling(), fa-person-snowmobiling(solid: true), fa-icon("person-snowmobiling"),
```typst #fa-snowmobile()```, fa-snowmobile(), fa-snowmobile(solid: true), fa-icon("snowmobile"),
```typst #fa-person-swimming()```, fa-person-swimming(), fa-person-swimming(solid: true), fa-icon("person-swimming"),
```typst #fa-swimmer()```, fa-swimmer(), fa-swimmer(solid: true), fa-icon("swimmer"),
```typst #fa-person-through-window()```, fa-person-through-window(), fa-person-through-window(solid: true), fa-icon("person-through-window"),
```typst #fa-person-to-door()```, fa-person-to-door(), fa-person-to-door(solid: true), fa-icon("person-to-door"),
```typst #fa-person-to-portal()```, fa-person-to-portal(), fa-person-to-portal(solid: true), fa-icon("person-to-portal"),
```typst #fa-portal-enter()```, fa-portal-enter(), fa-portal-enter(solid: true), fa-icon("portal-enter"),
```typst #fa-person-walking()```, fa-person-walking(), fa-person-walking(solid: true), fa-icon("person-walking"),
```typst #fa-walking()```, fa-walking(), fa-walking(solid: true), fa-icon("walking"),
```typst #fa-person-walking-arrow-loop-left()```, fa-person-walking-arrow-loop-left(), fa-person-walking-arrow-loop-left(solid: true), fa-icon("person-walking-arrow-loop-left"),
```typst #fa-person-walking-arrow-right()```, fa-person-walking-arrow-right(), fa-person-walking-arrow-right(solid: true), fa-icon("person-walking-arrow-right"),
```typst #fa-person-walking-dashed-line-arrow-right()```, fa-person-walking-dashed-line-arrow-right(), fa-person-walking-dashed-line-arrow-right(solid: true), fa-icon("person-walking-dashed-line-arrow-right"),
```typst #fa-person-walking-luggage()```, fa-person-walking-luggage(), fa-person-walking-luggage(solid: true), fa-icon("person-walking-luggage"),
```typst #fa-person-walking-with-cane()```, fa-person-walking-with-cane(), fa-person-walking-with-cane(solid: true), fa-icon("person-walking-with-cane"),
```typst #fa-blind()```, fa-blind(), fa-blind(solid: true), fa-icon("blind"),
```typst #fa-peseta-sign()```, fa-peseta-sign(), fa-peseta-sign(solid: true), fa-icon("peseta-sign"),
```typst #fa-peso-sign()```, fa-peso-sign(), fa-peso-sign(solid: true), fa-icon("peso-sign"),
```typst #fa-phabricator()```, fa-phabricator(), fa-phabricator(solid: true), fa-icon("phabricator"),
```typst #fa-phoenix-framework()```, fa-phoenix-framework(), fa-phoenix-framework(solid: true), fa-icon("phoenix-framework"),
```typst #fa-phoenix-squadron()```, fa-phoenix-squadron(), fa-phoenix-squadron(solid: true), fa-icon("phoenix-squadron"),
```typst #fa-phone()```, fa-phone(), fa-phone(solid: true), fa-icon("phone"),
```typst #fa-phone-arrow-down-left()```, fa-phone-arrow-down-left(), fa-phone-arrow-down-left(solid: true), fa-icon("phone-arrow-down-left"),
```typst #fa-phone-arrow-down()```, fa-phone-arrow-down(), fa-phone-arrow-down(solid: true), fa-icon("phone-arrow-down"),
```typst #fa-phone-incoming()```, fa-phone-incoming(), fa-phone-incoming(solid: true), fa-icon("phone-incoming"),
```typst #fa-phone-arrow-right()```, fa-phone-arrow-right(), fa-phone-arrow-right(solid: true), fa-icon("phone-arrow-right"),
```typst #fa-phone-arrow-up-right()```, fa-phone-arrow-up-right(), fa-phone-arrow-up-right(solid: true), fa-icon("phone-arrow-up-right"),
```typst #fa-phone-arrow-up()```, fa-phone-arrow-up(), fa-phone-arrow-up(solid: true), fa-icon("phone-arrow-up"),
```typst #fa-phone-outgoing()```, fa-phone-outgoing(), fa-phone-outgoing(solid: true), fa-icon("phone-outgoing"),
```typst #fa-phone-flip()```, fa-phone-flip(), fa-phone-flip(solid: true), fa-icon("phone-flip"),
```typst #fa-phone-alt()```, fa-phone-alt(), fa-phone-alt(solid: true), fa-icon("phone-alt"),
```typst #fa-phone-hangup()```, fa-phone-hangup(), fa-phone-hangup(solid: true), fa-icon("phone-hangup"),
```typst #fa-phone-intercom()```, fa-phone-intercom(), fa-phone-intercom(solid: true), fa-icon("phone-intercom"),
```typst #fa-phone-missed()```, fa-phone-missed(), fa-phone-missed(solid: true), fa-icon("phone-missed"),
```typst #fa-phone-office()```, fa-phone-office(), fa-phone-office(solid: true), fa-icon("phone-office"),
```typst #fa-phone-plus()```, fa-phone-plus(), fa-phone-plus(solid: true), fa-icon("phone-plus"),
```typst #fa-phone-rotary()```, fa-phone-rotary(), fa-phone-rotary(solid: true), fa-icon("phone-rotary"),
```typst #fa-phone-slash()```, fa-phone-slash(), fa-phone-slash(solid: true), fa-icon("phone-slash"),
```typst #fa-phone-volume()```, fa-phone-volume(), fa-phone-volume(solid: true), fa-icon("phone-volume"),
```typst #fa-volume-control-phone()```, fa-volume-control-phone(), fa-volume-control-phone(solid: true), fa-icon("volume-control-phone"),
```typst #fa-phone-xmark()```, fa-phone-xmark(), fa-phone-xmark(solid: true), fa-icon("phone-xmark"),
```typst #fa-photo-film()```, fa-photo-film(), fa-photo-film(solid: true), fa-icon("photo-film"),
```typst #fa-photo-video()```, fa-photo-video(), fa-photo-video(solid: true), fa-icon("photo-video"),
```typst #fa-photo-film-music()```, fa-photo-film-music(), fa-photo-film-music(solid: true), fa-icon("photo-film-music"),
```typst #fa-php()```, fa-php(), fa-php(solid: true), fa-icon("php"),
```typst #fa-pi()```, fa-pi(), fa-pi(solid: true), fa-icon("pi"),
```typst #fa-piano()```, fa-piano(), fa-piano(solid: true), fa-icon("piano"),
```typst #fa-piano-keyboard()```, fa-piano-keyboard(), fa-piano-keyboard(solid: true), fa-icon("piano-keyboard"),
```typst #fa-pickaxe()```, fa-pickaxe(), fa-pickaxe(solid: true), fa-icon("pickaxe"),
```typst #fa-pickleball()```, fa-pickleball(), fa-pickleball(solid: true), fa-icon("pickleball"),
```typst #fa-pie()```, fa-pie(), fa-pie(solid: true), fa-icon("pie"),
```typst #fa-pied-piper()```, fa-pied-piper(), fa-pied-piper(solid: true), fa-icon("pied-piper"),
```typst #fa-pied-piper-alt()```, fa-pied-piper-alt(), fa-pied-piper-alt(solid: true), fa-icon("pied-piper-alt"),
```typst #fa-pied-piper-hat()```, fa-pied-piper-hat(), fa-pied-piper-hat(solid: true), fa-icon("pied-piper-hat"),
```typst #fa-pied-piper-pp()```, fa-pied-piper-pp(), fa-pied-piper-pp(solid: true), fa-icon("pied-piper-pp"),
```typst #fa-pig()```, fa-pig(), fa-pig(solid: true), fa-icon("pig"),
```typst #fa-piggy-bank()```, fa-piggy-bank(), fa-piggy-bank(solid: true), fa-icon("piggy-bank"),
```typst #fa-pills()```, fa-pills(), fa-pills(solid: true), fa-icon("pills"),
```typst #fa-pinata()```, fa-pinata(), fa-pinata(solid: true), fa-icon("pinata"),
```typst #fa-pinball()```, fa-pinball(), fa-pinball(solid: true), fa-icon("pinball"),
```typst #fa-pineapple()```, fa-pineapple(), fa-pineapple(solid: true), fa-icon("pineapple"),
```typst #fa-pinterest()```, fa-pinterest(), fa-pinterest(solid: true), fa-icon("pinterest"),
```typst #fa-pinterest-p()```, fa-pinterest-p(), fa-pinterest-p(solid: true), fa-icon("pinterest-p"),
```typst #fa-pipe()```, fa-pipe(), fa-pipe(solid: true), fa-icon("pipe"),
```typst #fa-pipe-circle-check()```, fa-pipe-circle-check(), fa-pipe-circle-check(solid: true), fa-icon("pipe-circle-check"),
```typst #fa-pipe-collar()```, fa-pipe-collar(), fa-pipe-collar(solid: true), fa-icon("pipe-collar"),
```typst #fa-pipe-section()```, fa-pipe-section(), fa-pipe-section(solid: true), fa-icon("pipe-section"),
```typst #fa-pipe-smoking()```, fa-pipe-smoking(), fa-pipe-smoking(solid: true), fa-icon("pipe-smoking"),
```typst #fa-pipe-valve()```, fa-pipe-valve(), fa-pipe-valve(solid: true), fa-icon("pipe-valve"),
```typst #fa-pix()```, fa-pix(), fa-pix(solid: true), fa-icon("pix"),
```typst #fa-pixiv()```, fa-pixiv(), fa-pixiv(solid: true), fa-icon("pixiv"),
```typst #fa-pizza()```, fa-pizza(), fa-pizza(solid: true), fa-icon("pizza"),
```typst #fa-pizza-slice()```, fa-pizza-slice(), fa-pizza-slice(solid: true), fa-icon("pizza-slice"),
```typst #fa-place-of-worship()```, fa-place-of-worship(), fa-place-of-worship(solid: true), fa-icon("place-of-worship"),
```typst #fa-plane()```, fa-plane(), fa-plane(solid: true), fa-icon("plane"),
```typst #fa-plane-arrival()```, fa-plane-arrival(), fa-plane-arrival(solid: true), fa-icon("plane-arrival"),
```typst #fa-plane-circle-check()```, fa-plane-circle-check(), fa-plane-circle-check(solid: true), fa-icon("plane-circle-check"),
```typst #fa-plane-circle-exclamation()```, fa-plane-circle-exclamation(), fa-plane-circle-exclamation(solid: true), fa-icon("plane-circle-exclamation"),
```typst #fa-plane-circle-xmark()```, fa-plane-circle-xmark(), fa-plane-circle-xmark(solid: true), fa-icon("plane-circle-xmark"),
```typst #fa-plane-departure()```, fa-plane-departure(), fa-plane-departure(solid: true), fa-icon("plane-departure"),
```typst #fa-plane-engines()```, fa-plane-engines(), fa-plane-engines(solid: true), fa-icon("plane-engines"),
```typst #fa-plane-alt()```, fa-plane-alt(), fa-plane-alt(solid: true), fa-icon("plane-alt"),
```typst #fa-plane-lock()```, fa-plane-lock(), fa-plane-lock(solid: true), fa-icon("plane-lock"),
```typst #fa-plane-prop()```, fa-plane-prop(), fa-plane-prop(solid: true), fa-icon("plane-prop"),
```typst #fa-plane-slash()```, fa-plane-slash(), fa-plane-slash(solid: true), fa-icon("plane-slash"),
```typst #fa-plane-tail()```, fa-plane-tail(), fa-plane-tail(solid: true), fa-icon("plane-tail"),
```typst #fa-planet-moon()```, fa-planet-moon(), fa-planet-moon(solid: true), fa-icon("planet-moon"),
```typst #fa-planet-ringed()```, fa-planet-ringed(), fa-planet-ringed(solid: true), fa-icon("planet-ringed"),
```typst #fa-plane-up()```, fa-plane-up(), fa-plane-up(solid: true), fa-icon("plane-up"),
```typst #fa-plane-up-slash()```, fa-plane-up-slash(), fa-plane-up-slash(solid: true), fa-icon("plane-up-slash"),
```typst #fa-plant-wilt()```, fa-plant-wilt(), fa-plant-wilt(solid: true), fa-icon("plant-wilt"),
```typst #fa-plate-utensils()```, fa-plate-utensils(), fa-plate-utensils(solid: true), fa-icon("plate-utensils"),
```typst #fa-plate-wheat()```, fa-plate-wheat(), fa-plate-wheat(solid: true), fa-icon("plate-wheat"),
```typst #fa-play()```, fa-play(), fa-play(solid: true), fa-icon("play"),
```typst #fa-play-pause()```, fa-play-pause(), fa-play-pause(solid: true), fa-icon("play-pause"),
```typst #fa-playstation()```, fa-playstation(), fa-playstation(solid: true), fa-icon("playstation"),
```typst #fa-plug()```, fa-plug(), fa-plug(solid: true), fa-icon("plug"),
```typst #fa-plug-circle-bolt()```, fa-plug-circle-bolt(), fa-plug-circle-bolt(solid: true), fa-icon("plug-circle-bolt"),
```typst #fa-plug-circle-check()```, fa-plug-circle-check(), fa-plug-circle-check(solid: true), fa-icon("plug-circle-check"),
```typst #fa-plug-circle-exclamation()```, fa-plug-circle-exclamation(), fa-plug-circle-exclamation(solid: true), fa-icon("plug-circle-exclamation"),
```typst #fa-plug-circle-minus()```, fa-plug-circle-minus(), fa-plug-circle-minus(solid: true), fa-icon("plug-circle-minus"),
```typst #fa-plug-circle-plus()```, fa-plug-circle-plus(), fa-plug-circle-plus(solid: true), fa-icon("plug-circle-plus"),
```typst #fa-plug-circle-xmark()```, fa-plug-circle-xmark(), fa-plug-circle-xmark(solid: true), fa-icon("plug-circle-xmark"),
```typst #fa-plus()```, fa-plus(), fa-plus(solid: true), fa-icon("plus"),
```typst #fa-add()```, fa-add(), fa-add(solid: true), fa-icon("add"),
```typst #fa-plus-large()```, fa-plus-large(), fa-plus-large(solid: true), fa-icon("plus-large"),
```typst #fa-plus-minus()```, fa-plus-minus(), fa-plus-minus(solid: true), fa-icon("plus-minus"),
```typst #fa-podcast()```, fa-podcast(), fa-podcast(solid: true), fa-icon("podcast"),
```typst #fa-podium()```, fa-podium(), fa-podium(solid: true), fa-icon("podium"),
```typst #fa-podium-star()```, fa-podium-star(), fa-podium-star(solid: true), fa-icon("podium-star"),
```typst #fa-police-box()```, fa-police-box(), fa-police-box(solid: true), fa-icon("police-box"),
```typst #fa-poll-people()```, fa-poll-people(), fa-poll-people(solid: true), fa-icon("poll-people"),
```typst #fa-pompebled()```, fa-pompebled(), fa-pompebled(solid: true), fa-icon("pompebled"),
```typst #fa-poo()```, fa-poo(), fa-poo(solid: true), fa-icon("poo"),
```typst #fa-pool-8-ball()```, fa-pool-8-ball(), fa-pool-8-ball(solid: true), fa-icon("pool-8-ball"),
```typst #fa-poop()```, fa-poop(), fa-poop(solid: true), fa-icon("poop"),
```typst #fa-poo-storm()```, fa-poo-storm(), fa-poo-storm(solid: true), fa-icon("poo-storm"),
```typst #fa-poo-bolt()```, fa-poo-bolt(), fa-poo-bolt(solid: true), fa-icon("poo-bolt"),
```typst #fa-popcorn()```, fa-popcorn(), fa-popcorn(solid: true), fa-icon("popcorn"),
```typst #fa-popsicle()```, fa-popsicle(), fa-popsicle(solid: true), fa-icon("popsicle"),
```typst #fa-potato()```, fa-potato(), fa-potato(solid: true), fa-icon("potato"),
```typst #fa-pot-food()```, fa-pot-food(), fa-pot-food(solid: true), fa-icon("pot-food"),
```typst #fa-power-off()```, fa-power-off(), fa-power-off(solid: true), fa-icon("power-off"),
```typst #fa-prescription()```, fa-prescription(), fa-prescription(solid: true), fa-icon("prescription"),
```typst #fa-prescription-bottle()```, fa-prescription-bottle(), fa-prescription-bottle(solid: true), fa-icon("prescription-bottle"),
```typst #fa-prescription-bottle-medical()```, fa-prescription-bottle-medical(), fa-prescription-bottle-medical(solid: true), fa-icon("prescription-bottle-medical"),
```typst #fa-prescription-bottle-alt()```, fa-prescription-bottle-alt(), fa-prescription-bottle-alt(solid: true), fa-icon("prescription-bottle-alt"),
```typst #fa-prescription-bottle-pill()```, fa-prescription-bottle-pill(), fa-prescription-bottle-pill(solid: true), fa-icon("prescription-bottle-pill"),
```typst #fa-presentation-screen()```, fa-presentation-screen(), fa-presentation-screen(solid: true), fa-icon("presentation-screen"),
```typst #fa-presentation()```, fa-presentation(), fa-presentation(solid: true), fa-icon("presentation"),
```typst #fa-pretzel()```, fa-pretzel(), fa-pretzel(solid: true), fa-icon("pretzel"),
```typst #fa-print()```, fa-print(), fa-print(solid: true), fa-icon("print"),
```typst #fa-print-magnifying-glass()```, fa-print-magnifying-glass(), fa-print-magnifying-glass(solid: true), fa-icon("print-magnifying-glass"),
```typst #fa-print-search()```, fa-print-search(), fa-print-search(solid: true), fa-icon("print-search"),
```typst #fa-print-slash()```, fa-print-slash(), fa-print-slash(solid: true), fa-icon("print-slash"),
```typst #fa-product-hunt()```, fa-product-hunt(), fa-product-hunt(solid: true), fa-icon("product-hunt"),
```typst #fa-projector()```, fa-projector(), fa-projector(solid: true), fa-icon("projector"),
```typst #fa-pump()```, fa-pump(), fa-pump(solid: true), fa-icon("pump"),
```typst #fa-pumpkin()```, fa-pumpkin(), fa-pumpkin(solid: true), fa-icon("pumpkin"),
```typst #fa-pump-medical()```, fa-pump-medical(), fa-pump-medical(solid: true), fa-icon("pump-medical"),
```typst #fa-pump-soap()```, fa-pump-soap(), fa-pump-soap(solid: true), fa-icon("pump-soap"),
```typst #fa-pushed()```, fa-pushed(), fa-pushed(solid: true), fa-icon("pushed"),
```typst #fa-puzzle()```, fa-puzzle(), fa-puzzle(solid: true), fa-icon("puzzle"),
```typst #fa-puzzle-piece()```, fa-puzzle-piece(), fa-puzzle-piece(solid: true), fa-icon("puzzle-piece"),
```typst #fa-puzzle-piece-simple()```, fa-puzzle-piece-simple(), fa-puzzle-piece-simple(solid: true), fa-icon("puzzle-piece-simple"),
```typst #fa-puzzle-piece-alt()```, fa-puzzle-piece-alt(), fa-puzzle-piece-alt(solid: true), fa-icon("puzzle-piece-alt"),
```typst #fa-python()```, fa-python(), fa-python(solid: true), fa-icon("python"),
```typst #fa-q()```, fa-q(), fa-q(solid: true), fa-icon("q"),
```typst #fa-qq()```, fa-qq(), fa-qq(solid: true), fa-icon("qq"),
```typst #fa-qrcode()```, fa-qrcode(), fa-qrcode(solid: true), fa-icon("qrcode"),
```typst #fa-question()```, fa-question(), fa-question(solid: true), fa-icon("question"),
```typst #fa-quinscape()```, fa-quinscape(), fa-quinscape(solid: true), fa-icon("quinscape"),
```typst #fa-quora()```, fa-quora(), fa-quora(solid: true), fa-icon("quora"),
```typst #fa-quote-left()```, fa-quote-left(), fa-quote-left(solid: true), fa-icon("quote-left"),
```typst #fa-quote-left-alt()```, fa-quote-left-alt(), fa-quote-left-alt(solid: true), fa-icon("quote-left-alt"),
```typst #fa-quote-right()```, fa-quote-right(), fa-quote-right(solid: true), fa-icon("quote-right"),
```typst #fa-quote-right-alt()```, fa-quote-right-alt(), fa-quote-right-alt(solid: true), fa-icon("quote-right-alt"),
```typst #fa-quotes()```, fa-quotes(), fa-quotes(solid: true), fa-icon("quotes"),
```typst #fa-r()```, fa-r(), fa-r(solid: true), fa-icon("r"),
```typst #fa-rabbit()```, fa-rabbit(), fa-rabbit(solid: true), fa-icon("rabbit"),
```typst #fa-rabbit-running()```, fa-rabbit-running(), fa-rabbit-running(solid: true), fa-icon("rabbit-running"),
```typst #fa-rabbit-fast()```, fa-rabbit-fast(), fa-rabbit-fast(solid: true), fa-icon("rabbit-fast"),
```typst #fa-raccoon()```, fa-raccoon(), fa-raccoon(solid: true), fa-icon("raccoon"),
```typst #fa-racquet()```, fa-racquet(), fa-racquet(solid: true), fa-icon("racquet"),
```typst #fa-radar()```, fa-radar(), fa-radar(solid: true), fa-icon("radar"),
```typst #fa-radiation()```, fa-radiation(), fa-radiation(solid: true), fa-icon("radiation"),
```typst #fa-radio()```, fa-radio(), fa-radio(solid: true), fa-icon("radio"),
```typst #fa-radio-tuner()```, fa-radio-tuner(), fa-radio-tuner(solid: true), fa-icon("radio-tuner"),
```typst #fa-radio-alt()```, fa-radio-alt(), fa-radio-alt(solid: true), fa-icon("radio-alt"),
```typst #fa-rainbow()```, fa-rainbow(), fa-rainbow(solid: true), fa-icon("rainbow"),
```typst #fa-raindrops()```, fa-raindrops(), fa-raindrops(solid: true), fa-icon("raindrops"),
```typst #fa-ram()```, fa-ram(), fa-ram(solid: true), fa-icon("ram"),
```typst #fa-ramp-loading()```, fa-ramp-loading(), fa-ramp-loading(solid: true), fa-icon("ramp-loading"),
```typst #fa-ranking-star()```, fa-ranking-star(), fa-ranking-star(solid: true), fa-icon("ranking-star"),
```typst #fa-raspberry-pi()```, fa-raspberry-pi(), fa-raspberry-pi(solid: true), fa-icon("raspberry-pi"),
```typst #fa-ravelry()```, fa-ravelry(), fa-ravelry(solid: true), fa-icon("ravelry"),
```typst #fa-raygun()```, fa-raygun(), fa-raygun(solid: true), fa-icon("raygun"),
```typst #fa-react()```, fa-react(), fa-react(solid: true), fa-icon("react"),
```typst #fa-reacteurope()```, fa-reacteurope(), fa-reacteurope(solid: true), fa-icon("reacteurope"),
```typst #fa-readme()```, fa-readme(), fa-readme(solid: true), fa-icon("readme"),
```typst #fa-rebel()```, fa-rebel(), fa-rebel(solid: true), fa-icon("rebel"),
```typst #fa-receipt()```, fa-receipt(), fa-receipt(solid: true), fa-icon("receipt"),
```typst #fa-record-vinyl()```, fa-record-vinyl(), fa-record-vinyl(solid: true), fa-icon("record-vinyl"),
```typst #fa-rectangle()```, fa-rectangle(), fa-rectangle(solid: true), fa-icon("rectangle"),
```typst #fa-rectangle-landscape()```, fa-rectangle-landscape(), fa-rectangle-landscape(solid: true), fa-icon("rectangle-landscape"),
```typst #fa-rectangle-ad()```, fa-rectangle-ad(), fa-rectangle-ad(solid: true), fa-icon("rectangle-ad"),
```typst #fa-ad()```, fa-ad(), fa-ad(solid: true), fa-icon("ad"),
```typst #fa-rectangle-barcode()```, fa-rectangle-barcode(), fa-rectangle-barcode(solid: true), fa-icon("rectangle-barcode"),
```typst #fa-barcode-alt()```, fa-barcode-alt(), fa-barcode-alt(solid: true), fa-icon("barcode-alt"),
```typst #fa-rectangle-code()```, fa-rectangle-code(), fa-rectangle-code(solid: true), fa-icon("rectangle-code"),
```typst #fa-rectangle-history()```, fa-rectangle-history(), fa-rectangle-history(solid: true), fa-icon("rectangle-history"),
```typst #fa-rectangle-history-circle-plus()```, fa-rectangle-history-circle-plus(), fa-rectangle-history-circle-plus(solid: true), fa-icon("rectangle-history-circle-plus"),
```typst #fa-rectangle-history-circle-user()```, fa-rectangle-history-circle-user(), fa-rectangle-history-circle-user(solid: true), fa-icon("rectangle-history-circle-user"),
```typst #fa-rectangle-list()```, fa-rectangle-list(), fa-rectangle-list(solid: true), fa-icon("rectangle-list"),
```typst #fa-list-alt()```, fa-list-alt(), fa-list-alt(solid: true), fa-icon("list-alt"),
```typst #fa-rectangle-pro()```, fa-rectangle-pro(), fa-rectangle-pro(solid: true), fa-icon("rectangle-pro"),
```typst #fa-pro()```, fa-pro(), fa-pro(solid: true), fa-icon("pro"),
```typst #fa-rectangles-mixed()```, fa-rectangles-mixed(), fa-rectangles-mixed(solid: true), fa-icon("rectangles-mixed"),
```typst #fa-rectangle-terminal()```, fa-rectangle-terminal(), fa-rectangle-terminal(solid: true), fa-icon("rectangle-terminal"),
```typst #fa-rectangle-vertical()```, fa-rectangle-vertical(), fa-rectangle-vertical(solid: true), fa-icon("rectangle-vertical"),
```typst #fa-rectangle-portrait()```, fa-rectangle-portrait(), fa-rectangle-portrait(solid: true), fa-icon("rectangle-portrait"),
```typst #fa-rectangle-vertical-history()```, fa-rectangle-vertical-history(), fa-rectangle-vertical-history(solid: true), fa-icon("rectangle-vertical-history"),
```typst #fa-rectangle-wide()```, fa-rectangle-wide(), fa-rectangle-wide(solid: true), fa-icon("rectangle-wide"),
```typst #fa-rectangle-xmark()```, fa-rectangle-xmark(), fa-rectangle-xmark(solid: true), fa-icon("rectangle-xmark"),
```typst #fa-rectangle-times()```, fa-rectangle-times(), fa-rectangle-times(solid: true), fa-icon("rectangle-times"),
```typst #fa-times-rectangle()```, fa-times-rectangle(), fa-times-rectangle(solid: true), fa-icon("times-rectangle"),
```typst #fa-window-close()```, fa-window-close(), fa-window-close(solid: true), fa-icon("window-close"),
```typst #fa-recycle()```, fa-recycle(), fa-recycle(solid: true), fa-icon("recycle"),
```typst #fa-reddit()```, fa-reddit(), fa-reddit(solid: true), fa-icon("reddit"),
```typst #fa-reddit-alien()```, fa-reddit-alien(), fa-reddit-alien(solid: true), fa-icon("reddit-alien"),
```typst #fa-redhat()```, fa-redhat(), fa-redhat(solid: true), fa-icon("redhat"),
```typst #fa-red-river()```, fa-red-river(), fa-red-river(solid: true), fa-icon("red-river"),
```typst #fa-reel()```, fa-reel(), fa-reel(solid: true), fa-icon("reel"),
```typst #fa-reflect-both()```, fa-reflect-both(), fa-reflect-both(solid: true), fa-icon("reflect-both"),
```typst #fa-reflect-horizontal()```, fa-reflect-horizontal(), fa-reflect-horizontal(solid: true), fa-icon("reflect-horizontal"),
```typst #fa-reflect-vertical()```, fa-reflect-vertical(), fa-reflect-vertical(solid: true), fa-icon("reflect-vertical"),
```typst #fa-refrigerator()```, fa-refrigerator(), fa-refrigerator(solid: true), fa-icon("refrigerator"),
```typst #fa-registered()```, fa-registered(), fa-registered(solid: true), fa-icon("registered"),
```typst #fa-renren()```, fa-renren(), fa-renren(solid: true), fa-icon("renren"),
```typst #fa-repeat()```, fa-repeat(), fa-repeat(solid: true), fa-icon("repeat"),
```typst #fa-repeat-1()```, fa-repeat-1(), fa-repeat-1(solid: true), fa-icon("repeat-1"),
```typst #fa-reply()```, fa-reply(), fa-reply(solid: true), fa-icon("reply"),
```typst #fa-mail-reply()```, fa-mail-reply(), fa-mail-reply(solid: true), fa-icon("mail-reply"),
```typst #fa-reply-all()```, fa-reply-all(), fa-reply-all(solid: true), fa-icon("reply-all"),
```typst #fa-mail-reply-all()```, fa-mail-reply-all(), fa-mail-reply-all(solid: true), fa-icon("mail-reply-all"),
```typst #fa-reply-clock()```, fa-reply-clock(), fa-reply-clock(solid: true), fa-icon("reply-clock"),
```typst #fa-reply-time()```, fa-reply-time(), fa-reply-time(solid: true), fa-icon("reply-time"),
```typst #fa-replyd()```, fa-replyd(), fa-replyd(solid: true), fa-icon("replyd"),
```typst #fa-republican()```, fa-republican(), fa-republican(solid: true), fa-icon("republican"),
```typst #fa-researchgate()```, fa-researchgate(), fa-researchgate(solid: true), fa-icon("researchgate"),
```typst #fa-resolving()```, fa-resolving(), fa-resolving(solid: true), fa-icon("resolving"),
```typst #fa-restroom()```, fa-restroom(), fa-restroom(solid: true), fa-icon("restroom"),
```typst #fa-restroom-simple()```, fa-restroom-simple(), fa-restroom-simple(solid: true), fa-icon("restroom-simple"),
```typst #fa-retweet()```, fa-retweet(), fa-retweet(solid: true), fa-icon("retweet"),
```typst #fa-rev()```, fa-rev(), fa-rev(solid: true), fa-icon("rev"),
```typst #fa-rhombus()```, fa-rhombus(), fa-rhombus(solid: true), fa-icon("rhombus"),
```typst #fa-ribbon()```, fa-ribbon(), fa-ribbon(solid: true), fa-icon("ribbon"),
```typst #fa-right()```, fa-right(), fa-right(solid: true), fa-icon("right"),
```typst #fa-arrow-alt-right()```, fa-arrow-alt-right(), fa-arrow-alt-right(solid: true), fa-icon("arrow-alt-right"),
```typst #fa-right-from-bracket()```, fa-right-from-bracket(), fa-right-from-bracket(solid: true), fa-icon("right-from-bracket"),
```typst #fa-sign-out-alt()```, fa-sign-out-alt(), fa-sign-out-alt(solid: true), fa-icon("sign-out-alt"),
```typst #fa-right-from-line()```, fa-right-from-line(), fa-right-from-line(solid: true), fa-icon("right-from-line"),
```typst #fa-arrow-alt-from-left()```, fa-arrow-alt-from-left(), fa-arrow-alt-from-left(solid: true), fa-icon("arrow-alt-from-left"),
```typst #fa-right-left()```, fa-right-left(), fa-right-left(solid: true), fa-icon("right-left"),
```typst #fa-exchange-alt()```, fa-exchange-alt(), fa-exchange-alt(solid: true), fa-icon("exchange-alt"),
```typst #fa-right-left-large()```, fa-right-left-large(), fa-right-left-large(solid: true), fa-icon("right-left-large"),
```typst #fa-right-long()```, fa-right-long(), fa-right-long(solid: true), fa-icon("right-long"),
```typst #fa-long-arrow-alt-right()```, fa-long-arrow-alt-right(), fa-long-arrow-alt-right(solid: true), fa-icon("long-arrow-alt-right"),
```typst #fa-right-long-to-line()```, fa-right-long-to-line(), fa-right-long-to-line(solid: true), fa-icon("right-long-to-line"),
```typst #fa-right-to-bracket()```, fa-right-to-bracket(), fa-right-to-bracket(solid: true), fa-icon("right-to-bracket"),
```typst #fa-sign-in-alt()```, fa-sign-in-alt(), fa-sign-in-alt(solid: true), fa-icon("sign-in-alt"),
```typst #fa-right-to-line()```, fa-right-to-line(), fa-right-to-line(solid: true), fa-icon("right-to-line"),
```typst #fa-arrow-alt-to-right()```, fa-arrow-alt-to-right(), fa-arrow-alt-to-right(solid: true), fa-icon("arrow-alt-to-right"),
```typst #fa-ring()```, fa-ring(), fa-ring(solid: true), fa-icon("ring"),
```typst #fa-ring-diamond()```, fa-ring-diamond(), fa-ring-diamond(solid: true), fa-icon("ring-diamond"),
```typst #fa-rings-wedding()```, fa-rings-wedding(), fa-rings-wedding(solid: true), fa-icon("rings-wedding"),
```typst #fa-road()```, fa-road(), fa-road(solid: true), fa-icon("road"),
```typst #fa-road-barrier()```, fa-road-barrier(), fa-road-barrier(solid: true), fa-icon("road-barrier"),
```typst #fa-road-bridge()```, fa-road-bridge(), fa-road-bridge(solid: true), fa-icon("road-bridge"),
```typst #fa-road-circle-check()```, fa-road-circle-check(), fa-road-circle-check(solid: true), fa-icon("road-circle-check"),
```typst #fa-road-circle-exclamation()```, fa-road-circle-exclamation(), fa-road-circle-exclamation(solid: true), fa-icon("road-circle-exclamation"),
```typst #fa-road-circle-xmark()```, fa-road-circle-xmark(), fa-road-circle-xmark(solid: true), fa-icon("road-circle-xmark"),
```typst #fa-road-lock()```, fa-road-lock(), fa-road-lock(solid: true), fa-icon("road-lock"),
```typst #fa-road-spikes()```, fa-road-spikes(), fa-road-spikes(solid: true), fa-icon("road-spikes"),
```typst #fa-robot()```, fa-robot(), fa-robot(solid: true), fa-icon("robot"),
```typst #fa-robot-astromech()```, fa-robot-astromech(), fa-robot-astromech(solid: true), fa-icon("robot-astromech"),
```typst #fa-rocket()```, fa-rocket(), fa-rocket(solid: true), fa-icon("rocket"),
```typst #fa-rocketchat()```, fa-rocketchat(), fa-rocketchat(solid: true), fa-icon("rocketchat"),
```typst #fa-rocket-launch()```, fa-rocket-launch(), fa-rocket-launch(solid: true), fa-icon("rocket-launch"),
```typst #fa-rockrms()```, fa-rockrms(), fa-rockrms(solid: true), fa-icon("rockrms"),
```typst #fa-roller-coaster()```, fa-roller-coaster(), fa-roller-coaster(solid: true), fa-icon("roller-coaster"),
```typst #fa-rotate()```, fa-rotate(), fa-rotate(solid: true), fa-icon("rotate"),
```typst #fa-sync-alt()```, fa-sync-alt(), fa-sync-alt(solid: true), fa-icon("sync-alt"),
```typst #fa-rotate-exclamation()```, fa-rotate-exclamation(), fa-rotate-exclamation(solid: true), fa-icon("rotate-exclamation"),
```typst #fa-rotate-left()```, fa-rotate-left(), fa-rotate-left(solid: true), fa-icon("rotate-left"),
```typst #fa-rotate-back()```, fa-rotate-back(), fa-rotate-back(solid: true), fa-icon("rotate-back"),
```typst #fa-rotate-backward()```, fa-rotate-backward(), fa-rotate-backward(solid: true), fa-icon("rotate-backward"),
```typst #fa-undo-alt()```, fa-undo-alt(), fa-undo-alt(solid: true), fa-icon("undo-alt"),
```typst #fa-rotate-reverse()```, fa-rotate-reverse(), fa-rotate-reverse(solid: true), fa-icon("rotate-reverse"),
```typst #fa-rotate-right()```, fa-rotate-right(), fa-rotate-right(solid: true), fa-icon("rotate-right"),
```typst #fa-redo-alt()```, fa-redo-alt(), fa-redo-alt(solid: true), fa-icon("redo-alt"),
```typst #fa-rotate-forward()```, fa-rotate-forward(), fa-rotate-forward(solid: true), fa-icon("rotate-forward"),
```typst #fa-route()```, fa-route(), fa-route(solid: true), fa-icon("route"),
```typst #fa-route-highway()```, fa-route-highway(), fa-route-highway(solid: true), fa-icon("route-highway"),
```typst #fa-route-interstate()```, fa-route-interstate(), fa-route-interstate(solid: true), fa-icon("route-interstate"),
```typst #fa-router()```, fa-router(), fa-router(solid: true), fa-icon("router"),
```typst #fa-r-project()```, fa-r-project(), fa-r-project(solid: true), fa-icon("r-project"),
```typst #fa-rss()```, fa-rss(), fa-rss(solid: true), fa-icon("rss"),
```typst #fa-feed()```, fa-feed(), fa-feed(solid: true), fa-icon("feed"),
```typst #fa-ruble-sign()```, fa-ruble-sign(), fa-ruble-sign(solid: true), fa-icon("ruble-sign"),
```typst #fa-rouble()```, fa-rouble(), fa-rouble(solid: true), fa-icon("rouble"),
```typst #fa-rub()```, fa-rub(), fa-rub(solid: true), fa-icon("rub"),
```typst #fa-ruble()```, fa-ruble(), fa-ruble(solid: true), fa-icon("ruble"),
```typst #fa-rug()```, fa-rug(), fa-rug(solid: true), fa-icon("rug"),
```typst #fa-rugby-ball()```, fa-rugby-ball(), fa-rugby-ball(solid: true), fa-icon("rugby-ball"),
```typst #fa-ruler()```, fa-ruler(), fa-ruler(solid: true), fa-icon("ruler"),
```typst #fa-ruler-combined()```, fa-ruler-combined(), fa-ruler-combined(solid: true), fa-icon("ruler-combined"),
```typst #fa-ruler-horizontal()```, fa-ruler-horizontal(), fa-ruler-horizontal(solid: true), fa-icon("ruler-horizontal"),
```typst #fa-ruler-triangle()```, fa-ruler-triangle(), fa-ruler-triangle(solid: true), fa-icon("ruler-triangle"),
```typst #fa-ruler-vertical()```, fa-ruler-vertical(), fa-ruler-vertical(solid: true), fa-icon("ruler-vertical"),
```typst #fa-rupee-sign()```, fa-rupee-sign(), fa-rupee-sign(solid: true), fa-icon("rupee-sign"),
```typst #fa-rupee()```, fa-rupee(), fa-rupee(solid: true), fa-icon("rupee"),
```typst #fa-rupiah-sign()```, fa-rupiah-sign(), fa-rupiah-sign(solid: true), fa-icon("rupiah-sign"),
```typst #fa-rust()```, fa-rust(), fa-rust(solid: true), fa-icon("rust"),
```typst #fa-rv()```, fa-rv(), fa-rv(solid: true), fa-icon("rv"),
```typst #fa-s()```, fa-s(), fa-s(solid: true), fa-icon("s"),
```typst #fa-sack()```, fa-sack(), fa-sack(solid: true), fa-icon("sack"),
```typst #fa-sack-dollar()```, fa-sack-dollar(), fa-sack-dollar(solid: true), fa-icon("sack-dollar"),
```typst #fa-sack-xmark()```, fa-sack-xmark(), fa-sack-xmark(solid: true), fa-icon("sack-xmark"),
```typst #fa-safari()```, fa-safari(), fa-safari(solid: true), fa-icon("safari"),
```typst #fa-sailboat()```, fa-sailboat(), fa-sailboat(solid: true), fa-icon("sailboat"),
```typst #fa-salad()```, fa-salad(), fa-salad(solid: true), fa-icon("salad"),
```typst #fa-bowl-salad()```, fa-bowl-salad(), fa-bowl-salad(solid: true), fa-icon("bowl-salad"),
```typst #fa-salesforce()```, fa-salesforce(), fa-salesforce(solid: true), fa-icon("salesforce"),
```typst #fa-salt-shaker()```, fa-salt-shaker(), fa-salt-shaker(solid: true), fa-icon("salt-shaker"),
```typst #fa-sandwich()```, fa-sandwich(), fa-sandwich(solid: true), fa-icon("sandwich"),
```typst #fa-sass()```, fa-sass(), fa-sass(solid: true), fa-icon("sass"),
```typst #fa-satellite()```, fa-satellite(), fa-satellite(solid: true), fa-icon("satellite"),
```typst #fa-satellite-dish()```, fa-satellite-dish(), fa-satellite-dish(solid: true), fa-icon("satellite-dish"),
```typst #fa-sausage()```, fa-sausage(), fa-sausage(solid: true), fa-icon("sausage"),
```typst #fa-saxophone()```, fa-saxophone(), fa-saxophone(solid: true), fa-icon("saxophone"),
```typst #fa-saxophone-fire()```, fa-saxophone-fire(), fa-saxophone-fire(solid: true), fa-icon("saxophone-fire"),
```typst #fa-sax-hot()```, fa-sax-hot(), fa-sax-hot(solid: true), fa-icon("sax-hot"),
```typst #fa-scale-balanced()```, fa-scale-balanced(), fa-scale-balanced(solid: true), fa-icon("scale-balanced"),
```typst #fa-balance-scale()```, fa-balance-scale(), fa-balance-scale(solid: true), fa-icon("balance-scale"),
```typst #fa-scale-unbalanced()```, fa-scale-unbalanced(), fa-scale-unbalanced(solid: true), fa-icon("scale-unbalanced"),
```typst #fa-balance-scale-left()```, fa-balance-scale-left(), fa-balance-scale-left(solid: true), fa-icon("balance-scale-left"),
```typst #fa-scale-unbalanced-flip()```, fa-scale-unbalanced-flip(), fa-scale-unbalanced-flip(solid: true), fa-icon("scale-unbalanced-flip"),
```typst #fa-balance-scale-right()```, fa-balance-scale-right(), fa-balance-scale-right(solid: true), fa-icon("balance-scale-right"),
```typst #fa-scalpel()```, fa-scalpel(), fa-scalpel(solid: true), fa-icon("scalpel"),
```typst #fa-scalpel-line-dashed()```, fa-scalpel-line-dashed(), fa-scalpel-line-dashed(solid: true), fa-icon("scalpel-line-dashed"),
```typst #fa-scalpel-path()```, fa-scalpel-path(), fa-scalpel-path(solid: true), fa-icon("scalpel-path"),
```typst #fa-scanner-gun()```, fa-scanner-gun(), fa-scanner-gun(solid: true), fa-icon("scanner-gun"),
```typst #fa-scanner()```, fa-scanner(), fa-scanner(solid: true), fa-icon("scanner"),
```typst #fa-scanner-image()```, fa-scanner-image(), fa-scanner-image(solid: true), fa-icon("scanner-image"),
```typst #fa-scanner-keyboard()```, fa-scanner-keyboard(), fa-scanner-keyboard(solid: true), fa-icon("scanner-keyboard"),
```typst #fa-scanner-touchscreen()```, fa-scanner-touchscreen(), fa-scanner-touchscreen(solid: true), fa-icon("scanner-touchscreen"),
```typst #fa-scarecrow()```, fa-scarecrow(), fa-scarecrow(solid: true), fa-icon("scarecrow"),
```typst #fa-scarf()```, fa-scarf(), fa-scarf(solid: true), fa-icon("scarf"),
```typst #fa-schlix()```, fa-schlix(), fa-schlix(solid: true), fa-icon("schlix"),
```typst #fa-school()```, fa-school(), fa-school(solid: true), fa-icon("school"),
```typst #fa-school-circle-check()```, fa-school-circle-check(), fa-school-circle-check(solid: true), fa-icon("school-circle-check"),
```typst #fa-school-circle-exclamation()```, fa-school-circle-exclamation(), fa-school-circle-exclamation(solid: true), fa-icon("school-circle-exclamation"),
```typst #fa-school-circle-xmark()```, fa-school-circle-xmark(), fa-school-circle-xmark(solid: true), fa-icon("school-circle-xmark"),
```typst #fa-school-flag()```, fa-school-flag(), fa-school-flag(solid: true), fa-icon("school-flag"),
```typst #fa-school-lock()```, fa-school-lock(), fa-school-lock(solid: true), fa-icon("school-lock"),
```typst #fa-scissors()```, fa-scissors(), fa-scissors(solid: true), fa-icon("scissors"),
```typst #fa-cut()```, fa-cut(), fa-cut(solid: true), fa-icon("cut"),
```typst #fa-screencast()```, fa-screencast(), fa-screencast(solid: true), fa-icon("screencast"),
```typst #fa-screenpal()```, fa-screenpal(), fa-screenpal(solid: true), fa-icon("screenpal"),
```typst #fa-screen-users()```, fa-screen-users(), fa-screen-users(solid: true), fa-icon("screen-users"),
```typst #fa-users-class()```, fa-users-class(), fa-users-class(solid: true), fa-icon("users-class"),
```typst #fa-screwdriver()```, fa-screwdriver(), fa-screwdriver(solid: true), fa-icon("screwdriver"),
```typst #fa-screwdriver-wrench()```, fa-screwdriver-wrench(), fa-screwdriver-wrench(solid: true), fa-icon("screwdriver-wrench"),
```typst #fa-tools()```, fa-tools(), fa-tools(solid: true), fa-icon("tools"),
```typst #fa-scribble()```, fa-scribble(), fa-scribble(solid: true), fa-icon("scribble"),
```typst #fa-scribd()```, fa-scribd(), fa-scribd(solid: true), fa-icon("scribd"),
```typst #fa-scroll()```, fa-scroll(), fa-scroll(solid: true), fa-icon("scroll"),
```typst #fa-scroll-old()```, fa-scroll-old(), fa-scroll-old(solid: true), fa-icon("scroll-old"),
```typst #fa-scroll-torah()```, fa-scroll-torah(), fa-scroll-torah(solid: true), fa-icon("scroll-torah"),
```typst #fa-torah()```, fa-torah(), fa-torah(solid: true), fa-icon("torah"),
```typst #fa-scrubber()```, fa-scrubber(), fa-scrubber(solid: true), fa-icon("scrubber"),
```typst #fa-scythe()```, fa-scythe(), fa-scythe(solid: true), fa-icon("scythe"),
```typst #fa-sd-card()```, fa-sd-card(), fa-sd-card(solid: true), fa-icon("sd-card"),
```typst #fa-sd-cards()```, fa-sd-cards(), fa-sd-cards(solid: true), fa-icon("sd-cards"),
```typst #fa-seal()```, fa-seal(), fa-seal(solid: true), fa-icon("seal"),
```typst #fa-seal-exclamation()```, fa-seal-exclamation(), fa-seal-exclamation(solid: true), fa-icon("seal-exclamation"),
```typst #fa-seal-question()```, fa-seal-question(), fa-seal-question(solid: true), fa-icon("seal-question"),
```typst #fa-searchengin()```, fa-searchengin(), fa-searchengin(solid: true), fa-icon("searchengin"),
```typst #fa-seat-airline()```, fa-seat-airline(), fa-seat-airline(solid: true), fa-icon("seat-airline"),
```typst #fa-section()```, fa-section(), fa-section(solid: true), fa-icon("section"),
```typst #fa-seedling()```, fa-seedling(), fa-seedling(solid: true), fa-icon("seedling"),
```typst #fa-sprout()```, fa-sprout(), fa-sprout(solid: true), fa-icon("sprout"),
```typst #fa-sellcast()```, fa-sellcast(), fa-sellcast(solid: true), fa-icon("sellcast"),
```typst #fa-sellsy()```, fa-sellsy(), fa-sellsy(solid: true), fa-icon("sellsy"),
```typst #fa-semicolon()```, fa-semicolon(), fa-semicolon(solid: true), fa-icon("semicolon"),
```typst #fa-send-back()```, fa-send-back(), fa-send-back(solid: true), fa-icon("send-back"),
```typst #fa-send-backward()```, fa-send-backward(), fa-send-backward(solid: true), fa-icon("send-backward"),
```typst #fa-sensor()```, fa-sensor(), fa-sensor(solid: true), fa-icon("sensor"),
```typst #fa-sensor-cloud()```, fa-sensor-cloud(), fa-sensor-cloud(solid: true), fa-icon("sensor-cloud"),
```typst #fa-sensor-smoke()```, fa-sensor-smoke(), fa-sensor-smoke(solid: true), fa-icon("sensor-smoke"),
```typst #fa-sensor-fire()```, fa-sensor-fire(), fa-sensor-fire(solid: true), fa-icon("sensor-fire"),
```typst #fa-sensor-on()```, fa-sensor-on(), fa-sensor-on(solid: true), fa-icon("sensor-on"),
```typst #fa-sensor-triangle-exclamation()```, fa-sensor-triangle-exclamation(), fa-sensor-triangle-exclamation(solid: true), fa-icon("sensor-triangle-exclamation"),
```typst #fa-sensor-alert()```, fa-sensor-alert(), fa-sensor-alert(solid: true), fa-icon("sensor-alert"),
```typst #fa-server()```, fa-server(), fa-server(solid: true), fa-icon("server"),
```typst #fa-servicestack()```, fa-servicestack(), fa-servicestack(solid: true), fa-icon("servicestack"),
```typst #fa-shapes()```, fa-shapes(), fa-shapes(solid: true), fa-icon("shapes"),
```typst #fa-triangle-circle-square()```, fa-triangle-circle-square(), fa-triangle-circle-square(solid: true), fa-icon("triangle-circle-square"),
```typst #fa-share()```, fa-share(), fa-share(solid: true), fa-icon("share"),
```typst #fa-mail-forward()```, fa-mail-forward(), fa-mail-forward(solid: true), fa-icon("mail-forward"),
```typst #fa-share-all()```, fa-share-all(), fa-share-all(solid: true), fa-icon("share-all"),
```typst #fa-share-from-square()```, fa-share-from-square(), fa-share-from-square(solid: true), fa-icon("share-from-square"),
```typst #fa-share-square()```, fa-share-square(), fa-share-square(solid: true), fa-icon("share-square"),
```typst #fa-share-nodes()```, fa-share-nodes(), fa-share-nodes(solid: true), fa-icon("share-nodes"),
```typst #fa-share-alt()```, fa-share-alt(), fa-share-alt(solid: true), fa-icon("share-alt"),
```typst #fa-sheep()```, fa-sheep(), fa-sheep(solid: true), fa-icon("sheep"),
```typst #fa-sheet-plastic()```, fa-sheet-plastic(), fa-sheet-plastic(solid: true), fa-icon("sheet-plastic"),
```typst #fa-shekel-sign()```, fa-shekel-sign(), fa-shekel-sign(solid: true), fa-icon("shekel-sign"),
```typst #fa-ils()```, fa-ils(), fa-ils(solid: true), fa-icon("ils"),
```typst #fa-shekel()```, fa-shekel(), fa-shekel(solid: true), fa-icon("shekel"),
```typst #fa-sheqel()```, fa-sheqel(), fa-sheqel(solid: true), fa-icon("sheqel"),
```typst #fa-sheqel-sign()```, fa-sheqel-sign(), fa-sheqel-sign(solid: true), fa-icon("sheqel-sign"),
```typst #fa-shelves()```, fa-shelves(), fa-shelves(solid: true), fa-icon("shelves"),
```typst #fa-inventory()```, fa-inventory(), fa-inventory(solid: true), fa-icon("inventory"),
```typst #fa-shelves-empty()```, fa-shelves-empty(), fa-shelves-empty(solid: true), fa-icon("shelves-empty"),
```typst #fa-shield()```, fa-shield(), fa-shield(solid: true), fa-icon("shield"),
```typst #fa-shield-blank()```, fa-shield-blank(), fa-shield-blank(solid: true), fa-icon("shield-blank"),
```typst #fa-shield-cat()```, fa-shield-cat(), fa-shield-cat(solid: true), fa-icon("shield-cat"),
```typst #fa-shield-check()```, fa-shield-check(), fa-shield-check(solid: true), fa-icon("shield-check"),
```typst #fa-shield-cross()```, fa-shield-cross(), fa-shield-cross(solid: true), fa-icon("shield-cross"),
```typst #fa-shield-dog()```, fa-shield-dog(), fa-shield-dog(solid: true), fa-icon("shield-dog"),
```typst #fa-shield-exclamation()```, fa-shield-exclamation(), fa-shield-exclamation(solid: true), fa-icon("shield-exclamation"),
```typst #fa-shield-halved()```, fa-shield-halved(), fa-shield-halved(solid: true), fa-icon("shield-halved"),
```typst #fa-shield-alt()```, fa-shield-alt(), fa-shield-alt(solid: true), fa-icon("shield-alt"),
```typst #fa-shield-heart()```, fa-shield-heart(), fa-shield-heart(solid: true), fa-icon("shield-heart"),
```typst #fa-shield-keyhole()```, fa-shield-keyhole(), fa-shield-keyhole(solid: true), fa-icon("shield-keyhole"),
```typst #fa-shield-minus()```, fa-shield-minus(), fa-shield-minus(solid: true), fa-icon("shield-minus"),
```typst #fa-shield-plus()```, fa-shield-plus(), fa-shield-plus(solid: true), fa-icon("shield-plus"),
```typst #fa-shield-quartered()```, fa-shield-quartered(), fa-shield-quartered(solid: true), fa-icon("shield-quartered"),
```typst #fa-shield-slash()```, fa-shield-slash(), fa-shield-slash(solid: true), fa-icon("shield-slash"),
```typst #fa-shield-virus()```, fa-shield-virus(), fa-shield-virus(solid: true), fa-icon("shield-virus"),
```typst #fa-shield-xmark()```, fa-shield-xmark(), fa-shield-xmark(solid: true), fa-icon("shield-xmark"),
```typst #fa-shield-times()```, fa-shield-times(), fa-shield-times(solid: true), fa-icon("shield-times"),
```typst #fa-ship()```, fa-ship(), fa-ship(solid: true), fa-icon("ship"),
```typst #fa-shirt()```, fa-shirt(), fa-shirt(solid: true), fa-icon("shirt"),
```typst #fa-t-shirt()```, fa-t-shirt(), fa-t-shirt(solid: true), fa-icon("t-shirt"),
```typst #fa-tshirt()```, fa-tshirt(), fa-tshirt(solid: true), fa-icon("tshirt"),
```typst #fa-shirt-long-sleeve()```, fa-shirt-long-sleeve(), fa-shirt-long-sleeve(solid: true), fa-icon("shirt-long-sleeve"),
```typst #fa-shirt-running()```, fa-shirt-running(), fa-shirt-running(solid: true), fa-icon("shirt-running"),
```typst #fa-shirtsinbulk()```, fa-shirtsinbulk(), fa-shirtsinbulk(solid: true), fa-icon("shirtsinbulk"),
```typst #fa-shirt-tank-top()```, fa-shirt-tank-top(), fa-shirt-tank-top(solid: true), fa-icon("shirt-tank-top"),
```typst #fa-shish-kebab()```, fa-shish-kebab(), fa-shish-kebab(solid: true), fa-icon("shish-kebab"),
```typst #fa-shoelace()```, fa-shoelace(), fa-shoelace(solid: true), fa-icon("shoelace"),
```typst #fa-shoe-prints()```, fa-shoe-prints(), fa-shoe-prints(solid: true), fa-icon("shoe-prints"),
```typst #fa-shop()```, fa-shop(), fa-shop(solid: true), fa-icon("shop"),
```typst #fa-store-alt()```, fa-store-alt(), fa-store-alt(solid: true), fa-icon("store-alt"),
```typst #fa-shopify()```, fa-shopify(), fa-shopify(solid: true), fa-icon("shopify"),
```typst #fa-shop-lock()```, fa-shop-lock(), fa-shop-lock(solid: true), fa-icon("shop-lock"),
```typst #fa-shop-slash()```, fa-shop-slash(), fa-shop-slash(solid: true), fa-icon("shop-slash"),
```typst #fa-store-alt-slash()```, fa-store-alt-slash(), fa-store-alt-slash(solid: true), fa-icon("store-alt-slash"),
```typst #fa-shopware()```, fa-shopware(), fa-shopware(solid: true), fa-icon("shopware"),
```typst #fa-shovel()```, fa-shovel(), fa-shovel(solid: true), fa-icon("shovel"),
```typst #fa-shovel-snow()```, fa-shovel-snow(), fa-shovel-snow(solid: true), fa-icon("shovel-snow"),
```typst #fa-shower()```, fa-shower(), fa-shower(solid: true), fa-icon("shower"),
```typst #fa-shower-down()```, fa-shower-down(), fa-shower-down(solid: true), fa-icon("shower-down"),
```typst #fa-shower-alt()```, fa-shower-alt(), fa-shower-alt(solid: true), fa-icon("shower-alt"),
```typst #fa-shredder()```, fa-shredder(), fa-shredder(solid: true), fa-icon("shredder"),
```typst #fa-shrimp()```, fa-shrimp(), fa-shrimp(solid: true), fa-icon("shrimp"),
```typst #fa-shuffle()```, fa-shuffle(), fa-shuffle(solid: true), fa-icon("shuffle"),
```typst #fa-random()```, fa-random(), fa-random(solid: true), fa-icon("random"),
```typst #fa-shutters()```, fa-shutters(), fa-shutters(solid: true), fa-icon("shutters"),
```typst #fa-shuttlecock()```, fa-shuttlecock(), fa-shuttlecock(solid: true), fa-icon("shuttlecock"),
```typst #fa-shuttle-space()```, fa-shuttle-space(), fa-shuttle-space(solid: true), fa-icon("shuttle-space"),
```typst #fa-space-shuttle()```, fa-space-shuttle(), fa-space-shuttle(solid: true), fa-icon("space-shuttle"),
```typst #fa-sickle()```, fa-sickle(), fa-sickle(solid: true), fa-icon("sickle"),
```typst #fa-sidebar()```, fa-sidebar(), fa-sidebar(solid: true), fa-icon("sidebar"),
```typst #fa-sidebar-flip()```, fa-sidebar-flip(), fa-sidebar-flip(solid: true), fa-icon("sidebar-flip"),
```typst #fa-sigma()```, fa-sigma(), fa-sigma(solid: true), fa-icon("sigma"),
```typst #fa-signal()```, fa-signal(), fa-signal(solid: true), fa-icon("signal"),
```typst #fa-signal-5()```, fa-signal-5(), fa-signal-5(solid: true), fa-icon("signal-5"),
```typst #fa-signal-perfect()```, fa-signal-perfect(), fa-signal-perfect(solid: true), fa-icon("signal-perfect"),
```typst #fa-signal-bars()```, fa-signal-bars(), fa-signal-bars(solid: true), fa-icon("signal-bars"),
```typst #fa-signal-alt()```, fa-signal-alt(), fa-signal-alt(solid: true), fa-icon("signal-alt"),
```typst #fa-signal-alt-4()```, fa-signal-alt-4(), fa-signal-alt-4(solid: true), fa-icon("signal-alt-4"),
```typst #fa-signal-bars-strong()```, fa-signal-bars-strong(), fa-signal-bars-strong(solid: true), fa-icon("signal-bars-strong"),
```typst #fa-signal-bars-fair()```, fa-signal-bars-fair(), fa-signal-bars-fair(solid: true), fa-icon("signal-bars-fair"),
```typst #fa-signal-alt-2()```, fa-signal-alt-2(), fa-signal-alt-2(solid: true), fa-icon("signal-alt-2"),
```typst #fa-signal-bars-good()```, fa-signal-bars-good(), fa-signal-bars-good(solid: true), fa-icon("signal-bars-good"),
```typst #fa-signal-alt-3()```, fa-signal-alt-3(), fa-signal-alt-3(solid: true), fa-icon("signal-alt-3"),
```typst #fa-signal-bars-slash()```, fa-signal-bars-slash(), fa-signal-bars-slash(solid: true), fa-icon("signal-bars-slash"),
```typst #fa-signal-alt-slash()```, fa-signal-alt-slash(), fa-signal-alt-slash(solid: true), fa-icon("signal-alt-slash"),
```typst #fa-signal-bars-weak()```, fa-signal-bars-weak(), fa-signal-bars-weak(solid: true), fa-icon("signal-bars-weak"),
```typst #fa-signal-alt-1()```, fa-signal-alt-1(), fa-signal-alt-1(solid: true), fa-icon("signal-alt-1"),
```typst #fa-signal-fair()```, fa-signal-fair(), fa-signal-fair(solid: true), fa-icon("signal-fair"),
```typst #fa-signal-2()```, fa-signal-2(), fa-signal-2(solid: true), fa-icon("signal-2"),
```typst #fa-signal-good()```, fa-signal-good(), fa-signal-good(solid: true), fa-icon("signal-good"),
```typst #fa-signal-3()```, fa-signal-3(), fa-signal-3(solid: true), fa-icon("signal-3"),
```typst #fa-signal-messenger()```, fa-signal-messenger(), fa-signal-messenger(solid: true), fa-icon("signal-messenger"),
```typst #fa-signal-slash()```, fa-signal-slash(), fa-signal-slash(solid: true), fa-icon("signal-slash"),
```typst #fa-signal-stream()```, fa-signal-stream(), fa-signal-stream(solid: true), fa-icon("signal-stream"),
```typst #fa-signal-stream-slash()```, fa-signal-stream-slash(), fa-signal-stream-slash(solid: true), fa-icon("signal-stream-slash"),
```typst #fa-signal-strong()```, fa-signal-strong(), fa-signal-strong(solid: true), fa-icon("signal-strong"),
```typst #fa-signal-4()```, fa-signal-4(), fa-signal-4(solid: true), fa-icon("signal-4"),
```typst #fa-signal-weak()```, fa-signal-weak(), fa-signal-weak(solid: true), fa-icon("signal-weak"),
```typst #fa-signal-1()```, fa-signal-1(), fa-signal-1(solid: true), fa-icon("signal-1"),
```typst #fa-signature()```, fa-signature(), fa-signature(solid: true), fa-icon("signature"),
```typst #fa-signature-lock()```, fa-signature-lock(), fa-signature-lock(solid: true), fa-icon("signature-lock"),
```typst #fa-signature-slash()```, fa-signature-slash(), fa-signature-slash(solid: true), fa-icon("signature-slash"),
```typst #fa-sign-hanging()```, fa-sign-hanging(), fa-sign-hanging(solid: true), fa-icon("sign-hanging"),
```typst #fa-sign()```, fa-sign(), fa-sign(solid: true), fa-icon("sign"),
```typst #fa-sign-post()```, fa-sign-post(), fa-sign-post(solid: true), fa-icon("sign-post"),
```typst #fa-sign-posts()```, fa-sign-posts(), fa-sign-posts(solid: true), fa-icon("sign-posts"),
```typst #fa-sign-posts-wrench()```, fa-sign-posts-wrench(), fa-sign-posts-wrench(solid: true), fa-icon("sign-posts-wrench"),
```typst #fa-signs-post()```, fa-signs-post(), fa-signs-post(solid: true), fa-icon("signs-post"),
```typst #fa-map-signs()```, fa-map-signs(), fa-map-signs(solid: true), fa-icon("map-signs"),
```typst #fa-sim-card()```, fa-sim-card(), fa-sim-card(solid: true), fa-icon("sim-card"),
```typst #fa-sim-cards()```, fa-sim-cards(), fa-sim-cards(solid: true), fa-icon("sim-cards"),
```typst #fa-simplybuilt()```, fa-simplybuilt(), fa-simplybuilt(solid: true), fa-icon("simplybuilt"),
```typst #fa-sink()```, fa-sink(), fa-sink(solid: true), fa-icon("sink"),
```typst #fa-siren()```, fa-siren(), fa-siren(solid: true), fa-icon("siren"),
```typst #fa-siren-on()```, fa-siren-on(), fa-siren-on(solid: true), fa-icon("siren-on"),
```typst #fa-sistrix()```, fa-sistrix(), fa-sistrix(solid: true), fa-icon("sistrix"),
```typst #fa-sitemap()```, fa-sitemap(), fa-sitemap(solid: true), fa-icon("sitemap"),
```typst #fa-sith()```, fa-sith(), fa-sith(solid: true), fa-icon("sith"),
```typst #fa-sitrox()```, fa-sitrox(), fa-sitrox(solid: true), fa-icon("sitrox"),
```typst #fa-skeleton()```, fa-skeleton(), fa-skeleton(solid: true), fa-icon("skeleton"),
```typst #fa-skeleton-ribs()```, fa-skeleton-ribs(), fa-skeleton-ribs(solid: true), fa-icon("skeleton-ribs"),
```typst #fa-sketch()```, fa-sketch(), fa-sketch(solid: true), fa-icon("sketch"),
```typst #fa-ski-boot()```, fa-ski-boot(), fa-ski-boot(solid: true), fa-icon("ski-boot"),
```typst #fa-ski-boot-ski()```, fa-ski-boot-ski(), fa-ski-boot-ski(solid: true), fa-icon("ski-boot-ski"),
```typst #fa-skull()```, fa-skull(), fa-skull(solid: true), fa-icon("skull"),
```typst #fa-skull-cow()```, fa-skull-cow(), fa-skull-cow(solid: true), fa-icon("skull-cow"),
```typst #fa-skull-crossbones()```, fa-skull-crossbones(), fa-skull-crossbones(solid: true), fa-icon("skull-crossbones"),
```typst #fa-skyatlas()```, fa-skyatlas(), fa-skyatlas(solid: true), fa-icon("skyatlas"),
```typst #fa-skype()```, fa-skype(), fa-skype(solid: true), fa-icon("skype"),
```typst #fa-slack()```, fa-slack(), fa-slack(solid: true), fa-icon("slack"),
```typst #fa-slack-hash()```, fa-slack-hash(), fa-slack-hash(solid: true), fa-icon("slack-hash"),
```typst #fa-slash()```, fa-slash(), fa-slash(solid: true), fa-icon("slash"),
```typst #fa-slash-back()```, fa-slash-back(), fa-slash-back(solid: true), fa-icon("slash-back"),
```typst #fa-slash-forward()```, fa-slash-forward(), fa-slash-forward(solid: true), fa-icon("slash-forward"),
```typst #fa-sleigh()```, fa-sleigh(), fa-sleigh(solid: true), fa-icon("sleigh"),
```typst #fa-slider()```, fa-slider(), fa-slider(solid: true), fa-icon("slider"),
```typst #fa-sliders()```, fa-sliders(), fa-sliders(solid: true), fa-icon("sliders"),
```typst #fa-sliders-h()```, fa-sliders-h(), fa-sliders-h(solid: true), fa-icon("sliders-h"),
```typst #fa-sliders-simple()```, fa-sliders-simple(), fa-sliders-simple(solid: true), fa-icon("sliders-simple"),
```typst #fa-sliders-up()```, fa-sliders-up(), fa-sliders-up(solid: true), fa-icon("sliders-up"),
```typst #fa-sliders-v()```, fa-sliders-v(), fa-sliders-v(solid: true), fa-icon("sliders-v"),
```typst #fa-slideshare()```, fa-slideshare(), fa-slideshare(solid: true), fa-icon("slideshare"),
```typst #fa-slot-machine()```, fa-slot-machine(), fa-slot-machine(solid: true), fa-icon("slot-machine"),
```typst #fa-smog()```, fa-smog(), fa-smog(solid: true), fa-icon("smog"),
```typst #fa-smoke()```, fa-smoke(), fa-smoke(solid: true), fa-icon("smoke"),
```typst #fa-smoking()```, fa-smoking(), fa-smoking(solid: true), fa-icon("smoking"),
```typst #fa-snake()```, fa-snake(), fa-snake(solid: true), fa-icon("snake"),
```typst #fa-snapchat()```, fa-snapchat(), fa-snapchat(solid: true), fa-icon("snapchat"),
```typst #fa-snapchat-ghost()```, fa-snapchat-ghost(), fa-snapchat-ghost(solid: true), fa-icon("snapchat-ghost"),
```typst #fa-snooze()```, fa-snooze(), fa-snooze(solid: true), fa-icon("snooze"),
```typst #fa-zzz()```, fa-zzz(), fa-zzz(solid: true), fa-icon("zzz"),
```typst #fa-snow-blowing()```, fa-snow-blowing(), fa-snow-blowing(solid: true), fa-icon("snow-blowing"),
```typst #fa-snowflake()```, fa-snowflake(), fa-snowflake(solid: true), fa-icon("snowflake"),
```typst #fa-snowflake-droplets()```, fa-snowflake-droplets(), fa-snowflake-droplets(solid: true), fa-icon("snowflake-droplets"),
```typst #fa-snowflakes()```, fa-snowflakes(), fa-snowflakes(solid: true), fa-icon("snowflakes"),
```typst #fa-snowman()```, fa-snowman(), fa-snowman(solid: true), fa-icon("snowman"),
```typst #fa-snowman-head()```, fa-snowman-head(), fa-snowman-head(solid: true), fa-icon("snowman-head"),
```typst #fa-frosty-head()```, fa-frosty-head(), fa-frosty-head(solid: true), fa-icon("frosty-head"),
```typst #fa-snowplow()```, fa-snowplow(), fa-snowplow(solid: true), fa-icon("snowplow"),
```typst #fa-soap()```, fa-soap(), fa-soap(solid: true), fa-icon("soap"),
```typst #fa-socks()```, fa-socks(), fa-socks(solid: true), fa-icon("socks"),
```typst #fa-soft-serve()```, fa-soft-serve(), fa-soft-serve(solid: true), fa-icon("soft-serve"),
```typst #fa-creemee()```, fa-creemee(), fa-creemee(solid: true), fa-icon("creemee"),
```typst #fa-solar-panel()```, fa-solar-panel(), fa-solar-panel(solid: true), fa-icon("solar-panel"),
```typst #fa-solar-system()```, fa-solar-system(), fa-solar-system(solid: true), fa-icon("solar-system"),
```typst #fa-sort()```, fa-sort(), fa-sort(solid: true), fa-icon("sort"),
```typst #fa-unsorted()```, fa-unsorted(), fa-unsorted(solid: true), fa-icon("unsorted"),
```typst #fa-sort-down()```, fa-sort-down(), fa-sort-down(solid: true), fa-icon("sort-down"),
```typst #fa-sort-desc()```, fa-sort-desc(), fa-sort-desc(solid: true), fa-icon("sort-desc"),
```typst #fa-sort-up()```, fa-sort-up(), fa-sort-up(solid: true), fa-icon("sort-up"),
```typst #fa-sort-asc()```, fa-sort-asc(), fa-sort-asc(solid: true), fa-icon("sort-asc"),
```typst #fa-soundcloud()```, fa-soundcloud(), fa-soundcloud(solid: true), fa-icon("soundcloud"),
```typst #fa-sourcetree()```, fa-sourcetree(), fa-sourcetree(solid: true), fa-icon("sourcetree"),
```typst #fa-spa()```, fa-spa(), fa-spa(solid: true), fa-icon("spa"),
```typst #fa-space-awesome()```, fa-space-awesome(), fa-space-awesome(solid: true), fa-icon("space-awesome"),
```typst #fa-space-station-moon()```, fa-space-station-moon(), fa-space-station-moon(solid: true), fa-icon("space-station-moon"),
```typst #fa-space-station-moon-construction()```, fa-space-station-moon-construction(), fa-space-station-moon-construction(solid: true), fa-icon("space-station-moon-construction"),
```typst #fa-space-station-moon-alt()```, fa-space-station-moon-alt(), fa-space-station-moon-alt(solid: true), fa-icon("space-station-moon-alt"),
```typst #fa-spade()```, fa-spade(), fa-spade(solid: true), fa-icon("spade"),
```typst #fa-spaghetti-monster-flying()```, fa-spaghetti-monster-flying(), fa-spaghetti-monster-flying(solid: true), fa-icon("spaghetti-monster-flying"),
```typst #fa-pastafarianism()```, fa-pastafarianism(), fa-pastafarianism(solid: true), fa-icon("pastafarianism"),
```typst #fa-sparkle()```, fa-sparkle(), fa-sparkle(solid: true), fa-icon("sparkle"),
```typst #fa-sparkles()```, fa-sparkles(), fa-sparkles(solid: true), fa-icon("sparkles"),
```typst #fa-speakap()```, fa-speakap(), fa-speakap(solid: true), fa-icon("speakap"),
```typst #fa-speaker()```, fa-speaker(), fa-speaker(solid: true), fa-icon("speaker"),
```typst #fa-speaker-deck()```, fa-speaker-deck(), fa-speaker-deck(solid: true), fa-icon("speaker-deck"),
```typst #fa-speakers()```, fa-speakers(), fa-speakers(solid: true), fa-icon("speakers"),
```typst #fa-spell-check()```, fa-spell-check(), fa-spell-check(solid: true), fa-icon("spell-check"),
```typst #fa-spider()```, fa-spider(), fa-spider(solid: true), fa-icon("spider"),
```typst #fa-spider-black-widow()```, fa-spider-black-widow(), fa-spider-black-widow(solid: true), fa-icon("spider-black-widow"),
```typst #fa-spider-web()```, fa-spider-web(), fa-spider-web(solid: true), fa-icon("spider-web"),
```typst #fa-spinner()```, fa-spinner(), fa-spinner(solid: true), fa-icon("spinner"),
```typst #fa-spinner-scale()```, fa-spinner-scale(), fa-spinner-scale(solid: true), fa-icon("spinner-scale"),
```typst #fa-spinner-third()```, fa-spinner-third(), fa-spinner-third(solid: true), fa-icon("spinner-third"),
```typst #fa-split()```, fa-split(), fa-split(solid: true), fa-icon("split"),
```typst #fa-splotch()```, fa-splotch(), fa-splotch(solid: true), fa-icon("splotch"),
```typst #fa-spoon()```, fa-spoon(), fa-spoon(solid: true), fa-icon("spoon"),
```typst #fa-utensil-spoon()```, fa-utensil-spoon(), fa-utensil-spoon(solid: true), fa-icon("utensil-spoon"),
```typst #fa-sportsball()```, fa-sportsball(), fa-sportsball(solid: true), fa-icon("sportsball"),
```typst #fa-spotify()```, fa-spotify(), fa-spotify(solid: true), fa-icon("spotify"),
```typst #fa-spray-can()```, fa-spray-can(), fa-spray-can(solid: true), fa-icon("spray-can"),
```typst #fa-spray-can-sparkles()```, fa-spray-can-sparkles(), fa-spray-can-sparkles(solid: true), fa-icon("spray-can-sparkles"),
```typst #fa-air-freshener()```, fa-air-freshener(), fa-air-freshener(solid: true), fa-icon("air-freshener"),
```typst #fa-sprinkler()```, fa-sprinkler(), fa-sprinkler(solid: true), fa-icon("sprinkler"),
```typst #fa-sprinkler-ceiling()```, fa-sprinkler-ceiling(), fa-sprinkler-ceiling(solid: true), fa-icon("sprinkler-ceiling"),
```typst #fa-square()```, fa-square(), fa-square(solid: true), fa-icon("square"),
```typst #fa-square-0()```, fa-square-0(), fa-square-0(solid: true), fa-icon("square-0"),
```typst #fa-square-1()```, fa-square-1(), fa-square-1(solid: true), fa-icon("square-1"),
```typst #fa-square-2()```, fa-square-2(), fa-square-2(solid: true), fa-icon("square-2"),
```typst #fa-square-3()```, fa-square-3(), fa-square-3(solid: true), fa-icon("square-3"),
```typst #fa-square-4()```, fa-square-4(), fa-square-4(solid: true), fa-icon("square-4"),
```typst #fa-square-5()```, fa-square-5(), fa-square-5(solid: true), fa-icon("square-5"),
```typst #fa-square-6()```, fa-square-6(), fa-square-6(solid: true), fa-icon("square-6"),
```typst #fa-square-7()```, fa-square-7(), fa-square-7(solid: true), fa-icon("square-7"),
```typst #fa-square-8()```, fa-square-8(), fa-square-8(solid: true), fa-icon("square-8"),
```typst #fa-square-9()```, fa-square-9(), fa-square-9(solid: true), fa-icon("square-9"),
```typst #fa-square-a()```, fa-square-a(), fa-square-a(solid: true), fa-icon("square-a"),
```typst #fa-square-a-lock()```, fa-square-a-lock(), fa-square-a-lock(solid: true), fa-icon("square-a-lock"),
```typst #fa-square-ampersand()```, fa-square-ampersand(), fa-square-ampersand(solid: true), fa-icon("square-ampersand"),
```typst #fa-square-arrow-down()```, fa-square-arrow-down(), fa-square-arrow-down(solid: true), fa-icon("square-arrow-down"),
```typst #fa-arrow-square-down()```, fa-arrow-square-down(), fa-arrow-square-down(solid: true), fa-icon("arrow-square-down"),
```typst #fa-square-arrow-down-left()```, fa-square-arrow-down-left(), fa-square-arrow-down-left(solid: true), fa-icon("square-arrow-down-left"),
```typst #fa-square-arrow-down-right()```, fa-square-arrow-down-right(), fa-square-arrow-down-right(solid: true), fa-icon("square-arrow-down-right"),
```typst #fa-square-arrow-left()```, fa-square-arrow-left(), fa-square-arrow-left(solid: true), fa-icon("square-arrow-left"),
```typst #fa-arrow-square-left()```, fa-arrow-square-left(), fa-arrow-square-left(solid: true), fa-icon("arrow-square-left"),
```typst #fa-square-arrow-right()```, fa-square-arrow-right(), fa-square-arrow-right(solid: true), fa-icon("square-arrow-right"),
```typst #fa-arrow-square-right()```, fa-arrow-square-right(), fa-arrow-square-right(solid: true), fa-icon("arrow-square-right"),
```typst #fa-square-arrow-up()```, fa-square-arrow-up(), fa-square-arrow-up(solid: true), fa-icon("square-arrow-up"),
```typst #fa-arrow-square-up()```, fa-arrow-square-up(), fa-arrow-square-up(solid: true), fa-icon("arrow-square-up"),
```typst #fa-square-arrow-up-left()```, fa-square-arrow-up-left(), fa-square-arrow-up-left(solid: true), fa-icon("square-arrow-up-left"),
```typst #fa-square-arrow-up-right()```, fa-square-arrow-up-right(), fa-square-arrow-up-right(solid: true), fa-icon("square-arrow-up-right"),
```typst #fa-external-link-square()```, fa-external-link-square(), fa-external-link-square(solid: true), fa-icon("external-link-square"),
```typst #fa-square-b()```, fa-square-b(), fa-square-b(solid: true), fa-icon("square-b"),
```typst #fa-square-behance()```, fa-square-behance(), fa-square-behance(solid: true), fa-icon("square-behance"),
```typst #fa-behance-square()```, fa-behance-square(), fa-behance-square(solid: true), fa-icon("behance-square"),
```typst #fa-square-bolt()```, fa-square-bolt(), fa-square-bolt(solid: true), fa-icon("square-bolt"),
```typst #fa-square-c()```, fa-square-c(), fa-square-c(solid: true), fa-icon("square-c"),
```typst #fa-square-caret-down()```, fa-square-caret-down(), fa-square-caret-down(solid: true), fa-icon("square-caret-down"),
```typst #fa-caret-square-down()```, fa-caret-square-down(), fa-caret-square-down(solid: true), fa-icon("caret-square-down"),
```typst #fa-square-caret-left()```, fa-square-caret-left(), fa-square-caret-left(solid: true), fa-icon("square-caret-left"),
```typst #fa-caret-square-left()```, fa-caret-square-left(), fa-caret-square-left(solid: true), fa-icon("caret-square-left"),
```typst #fa-square-caret-right()```, fa-square-caret-right(), fa-square-caret-right(solid: true), fa-icon("square-caret-right"),
```typst #fa-caret-square-right()```, fa-caret-square-right(), fa-caret-square-right(solid: true), fa-icon("caret-square-right"),
```typst #fa-square-caret-up()```, fa-square-caret-up(), fa-square-caret-up(solid: true), fa-icon("square-caret-up"),
```typst #fa-caret-square-up()```, fa-caret-square-up(), fa-caret-square-up(solid: true), fa-icon("caret-square-up"),
```typst #fa-square-check()```, fa-square-check(), fa-square-check(solid: true), fa-icon("square-check"),
```typst #fa-check-square()```, fa-check-square(), fa-check-square(solid: true), fa-icon("check-square"),
```typst #fa-square-chevron-down()```, fa-square-chevron-down(), fa-square-chevron-down(solid: true), fa-icon("square-chevron-down"),
```typst #fa-chevron-square-down()```, fa-chevron-square-down(), fa-chevron-square-down(solid: true), fa-icon("chevron-square-down"),
```typst #fa-square-chevron-left()```, fa-square-chevron-left(), fa-square-chevron-left(solid: true), fa-icon("square-chevron-left"),
```typst #fa-chevron-square-left()```, fa-chevron-square-left(), fa-chevron-square-left(solid: true), fa-icon("chevron-square-left"),
```typst #fa-square-chevron-right()```, fa-square-chevron-right(), fa-square-chevron-right(solid: true), fa-icon("square-chevron-right"),
```typst #fa-chevron-square-right()```, fa-chevron-square-right(), fa-chevron-square-right(solid: true), fa-icon("chevron-square-right"),
```typst #fa-square-chevron-up()```, fa-square-chevron-up(), fa-square-chevron-up(solid: true), fa-icon("square-chevron-up"),
```typst #fa-chevron-square-up()```, fa-chevron-square-up(), fa-chevron-square-up(solid: true), fa-icon("chevron-square-up"),
```typst #fa-square-code()```, fa-square-code(), fa-square-code(solid: true), fa-icon("square-code"),
```typst #fa-square-d()```, fa-square-d(), fa-square-d(solid: true), fa-icon("square-d"),
```typst #fa-square-dashed()```, fa-square-dashed(), fa-square-dashed(solid: true), fa-icon("square-dashed"),
```typst #fa-square-dashed-circle-plus()```, fa-square-dashed-circle-plus(), fa-square-dashed-circle-plus(solid: true), fa-icon("square-dashed-circle-plus"),
```typst #fa-square-divide()```, fa-square-divide(), fa-square-divide(solid: true), fa-icon("square-divide"),
```typst #fa-square-dollar()```, fa-square-dollar(), fa-square-dollar(solid: true), fa-icon("square-dollar"),
```typst #fa-dollar-square()```, fa-dollar-square(), fa-dollar-square(solid: true), fa-icon("dollar-square"),
```typst #fa-usd-square()```, fa-usd-square(), fa-usd-square(solid: true), fa-icon("usd-square"),
```typst #fa-square-down()```, fa-square-down(), fa-square-down(solid: true), fa-icon("square-down"),
```typst #fa-arrow-alt-square-down()```, fa-arrow-alt-square-down(), fa-arrow-alt-square-down(solid: true), fa-icon("arrow-alt-square-down"),
```typst #fa-square-down-left()```, fa-square-down-left(), fa-square-down-left(solid: true), fa-icon("square-down-left"),
```typst #fa-square-down-right()```, fa-square-down-right(), fa-square-down-right(solid: true), fa-icon("square-down-right"),
```typst #fa-square-dribbble()```, fa-square-dribbble(), fa-square-dribbble(solid: true), fa-icon("square-dribbble"),
```typst #fa-dribbble-square()```, fa-dribbble-square(), fa-dribbble-square(solid: true), fa-icon("dribbble-square"),
```typst #fa-square-e()```, fa-square-e(), fa-square-e(solid: true), fa-icon("square-e"),
```typst #fa-square-ellipsis()```, fa-square-ellipsis(), fa-square-ellipsis(solid: true), fa-icon("square-ellipsis"),
```typst #fa-square-ellipsis-vertical()```, fa-square-ellipsis-vertical(), fa-square-ellipsis-vertical(solid: true), fa-icon("square-ellipsis-vertical"),
```typst #fa-square-envelope()```, fa-square-envelope(), fa-square-envelope(solid: true), fa-icon("square-envelope"),
```typst #fa-envelope-square()```, fa-envelope-square(), fa-envelope-square(solid: true), fa-icon("envelope-square"),
```typst #fa-square-exclamation()```, fa-square-exclamation(), fa-square-exclamation(solid: true), fa-icon("square-exclamation"),
```typst #fa-exclamation-square()```, fa-exclamation-square(), fa-exclamation-square(solid: true), fa-icon("exclamation-square"),
```typst #fa-square-f()```, fa-square-f(), fa-square-f(solid: true), fa-icon("square-f"),
```typst #fa-square-facebook()```, fa-square-facebook(), fa-square-facebook(solid: true), fa-icon("square-facebook"),
```typst #fa-facebook-square()```, fa-facebook-square(), fa-facebook-square(solid: true), fa-icon("facebook-square"),
```typst #fa-square-font-awesome()```, fa-square-font-awesome(), fa-square-font-awesome(solid: true), fa-icon("square-font-awesome"),
```typst #fa-square-font-awesome-stroke()```, fa-square-font-awesome-stroke(), fa-square-font-awesome-stroke(solid: true), fa-icon("square-font-awesome-stroke"),
```typst #fa-font-awesome-alt()```, fa-font-awesome-alt(), fa-font-awesome-alt(solid: true), fa-icon("font-awesome-alt"),
```typst #fa-square-fragile()```, fa-square-fragile(), fa-square-fragile(solid: true), fa-icon("square-fragile"),
```typst #fa-box-fragile()```, fa-box-fragile(), fa-box-fragile(solid: true), fa-icon("box-fragile"),
```typst #fa-square-wine-glass-crack()```, fa-square-wine-glass-crack(), fa-square-wine-glass-crack(solid: true), fa-icon("square-wine-glass-crack"),
```typst #fa-square-full()```, fa-square-full(), fa-square-full(solid: true), fa-icon("square-full"),
```typst #fa-square-g()```, fa-square-g(), fa-square-g(solid: true), fa-icon("square-g"),
```typst #fa-square-git()```, fa-square-git(), fa-square-git(solid: true), fa-icon("square-git"),
```typst #fa-git-square()```, fa-git-square(), fa-git-square(solid: true), fa-icon("git-square"),
```typst #fa-square-github()```, fa-square-github(), fa-square-github(solid: true), fa-icon("square-github"),
```typst #fa-github-square()```, fa-github-square(), fa-github-square(solid: true), fa-icon("github-square"),
```typst #fa-square-gitlab()```, fa-square-gitlab(), fa-square-gitlab(solid: true), fa-icon("square-gitlab"),
```typst #fa-gitlab-square()```, fa-gitlab-square(), fa-gitlab-square(solid: true), fa-icon("gitlab-square"),
```typst #fa-square-google-plus()```, fa-square-google-plus(), fa-square-google-plus(solid: true), fa-icon("square-google-plus"),
```typst #fa-google-plus-square()```, fa-google-plus-square(), fa-google-plus-square(solid: true), fa-icon("google-plus-square"),
```typst #fa-square-h()```, fa-square-h(), fa-square-h(solid: true), fa-icon("square-h"),
```typst #fa-h-square()```, fa-h-square(), fa-h-square(solid: true), fa-icon("h-square"),
```typst #fa-square-hacker-news()```, fa-square-hacker-news(), fa-square-hacker-news(solid: true), fa-icon("square-hacker-news"),
```typst #fa-hacker-news-square()```, fa-hacker-news-square(), fa-hacker-news-square(solid: true), fa-icon("hacker-news-square"),
```typst #fa-square-heart()```, fa-square-heart(), fa-square-heart(solid: true), fa-icon("square-heart"),
```typst #fa-heart-square()```, fa-heart-square(), fa-heart-square(solid: true), fa-icon("heart-square"),
```typst #fa-square-i()```, fa-square-i(), fa-square-i(solid: true), fa-icon("square-i"),
```typst #fa-square-info()```, fa-square-info(), fa-square-info(solid: true), fa-icon("square-info"),
```typst #fa-info-square()```, fa-info-square(), fa-info-square(solid: true), fa-icon("info-square"),
```typst #fa-square-instagram()```, fa-square-instagram(), fa-square-instagram(solid: true), fa-icon("square-instagram"),
```typst #fa-instagram-square()```, fa-instagram-square(), fa-instagram-square(solid: true), fa-icon("instagram-square"),
```typst #fa-square-j()```, fa-square-j(), fa-square-j(solid: true), fa-icon("square-j"),
```typst #fa-square-js()```, fa-square-js(), fa-square-js(solid: true), fa-icon("square-js"),
```typst #fa-js-square()```, fa-js-square(), fa-js-square(solid: true), fa-icon("js-square"),
```typst #fa-square-k()```, fa-square-k(), fa-square-k(solid: true), fa-icon("square-k"),
```typst #fa-square-kanban()```, fa-square-kanban(), fa-square-kanban(solid: true), fa-icon("square-kanban"),
```typst #fa-square-l()```, fa-square-l(), fa-square-l(solid: true), fa-icon("square-l"),
```typst #fa-square-lastfm()```, fa-square-lastfm(), fa-square-lastfm(solid: true), fa-icon("square-lastfm"),
```typst #fa-lastfm-square()```, fa-lastfm-square(), fa-lastfm-square(solid: true), fa-icon("lastfm-square"),
```typst #fa-square-left()```, fa-square-left(), fa-square-left(solid: true), fa-icon("square-left"),
```typst #fa-arrow-alt-square-left()```, fa-arrow-alt-square-left(), fa-arrow-alt-square-left(solid: true), fa-icon("arrow-alt-square-left"),
```typst #fa-square-letterboxd()```, fa-square-letterboxd(), fa-square-letterboxd(solid: true), fa-icon("square-letterboxd"),
```typst #fa-square-list()```, fa-square-list(), fa-square-list(solid: true), fa-icon("square-list"),
```typst #fa-square-m()```, fa-square-m(), fa-square-m(solid: true), fa-icon("square-m"),
```typst #fa-square-minus()```, fa-square-minus(), fa-square-minus(solid: true), fa-icon("square-minus"),
```typst #fa-minus-square()```, fa-minus-square(), fa-minus-square(solid: true), fa-icon("minus-square"),
```typst #fa-square-n()```, fa-square-n(), fa-square-n(solid: true), fa-icon("square-n"),
```typst #fa-square-nfi()```, fa-square-nfi(), fa-square-nfi(solid: true), fa-icon("square-nfi"),
```typst #fa-square-o()```, fa-square-o(), fa-square-o(solid: true), fa-icon("square-o"),
```typst #fa-square-odnoklassniki()```, fa-square-odnoklassniki(), fa-square-odnoklassniki(solid: true), fa-icon("square-odnoklassniki"),
```typst #fa-odnoklassniki-square()```, fa-odnoklassniki-square(), fa-odnoklassniki-square(solid: true), fa-icon("odnoklassniki-square"),
```typst #fa-square-p()```, fa-square-p(), fa-square-p(solid: true), fa-icon("square-p"),
```typst #fa-square-parking()```, fa-square-parking(), fa-square-parking(solid: true), fa-icon("square-parking"),
```typst #fa-parking()```, fa-parking(), fa-parking(solid: true), fa-icon("parking"),
```typst #fa-square-parking-slash()```, fa-square-parking-slash(), fa-square-parking-slash(solid: true), fa-icon("square-parking-slash"),
```typst #fa-parking-slash()```, fa-parking-slash(), fa-parking-slash(solid: true), fa-icon("parking-slash"),
```typst #fa-square-pen()```, fa-square-pen(), fa-square-pen(solid: true), fa-icon("square-pen"),
```typst #fa-pen-square()```, fa-pen-square(), fa-pen-square(solid: true), fa-icon("pen-square"),
```typst #fa-pencil-square()```, fa-pencil-square(), fa-pencil-square(solid: true), fa-icon("pencil-square"),
```typst #fa-square-person-confined()```, fa-square-person-confined(), fa-square-person-confined(solid: true), fa-icon("square-person-confined"),
```typst #fa-square-phone()```, fa-square-phone(), fa-square-phone(solid: true), fa-icon("square-phone"),
```typst #fa-phone-square()```, fa-phone-square(), fa-phone-square(solid: true), fa-icon("phone-square"),
```typst #fa-square-phone-flip()```, fa-square-phone-flip(), fa-square-phone-flip(solid: true), fa-icon("square-phone-flip"),
```typst #fa-phone-square-alt()```, fa-phone-square-alt(), fa-phone-square-alt(solid: true), fa-icon("phone-square-alt"),
```typst #fa-square-phone-hangup()```, fa-square-phone-hangup(), fa-square-phone-hangup(solid: true), fa-icon("square-phone-hangup"),
```typst #fa-phone-square-down()```, fa-phone-square-down(), fa-phone-square-down(solid: true), fa-icon("phone-square-down"),
```typst #fa-square-pied-piper()```, fa-square-pied-piper(), fa-square-pied-piper(solid: true), fa-icon("square-pied-piper"),
```typst #fa-pied-piper-square()```, fa-pied-piper-square(), fa-pied-piper-square(solid: true), fa-icon("pied-piper-square"),
```typst #fa-square-pinterest()```, fa-square-pinterest(), fa-square-pinterest(solid: true), fa-icon("square-pinterest"),
```typst #fa-pinterest-square()```, fa-pinterest-square(), fa-pinterest-square(solid: true), fa-icon("pinterest-square"),
```typst #fa-square-plus()```, fa-square-plus(), fa-square-plus(solid: true), fa-icon("square-plus"),
```typst #fa-plus-square()```, fa-plus-square(), fa-plus-square(solid: true), fa-icon("plus-square"),
```typst #fa-square-poll-horizontal()```, fa-square-poll-horizontal(), fa-square-poll-horizontal(solid: true), fa-icon("square-poll-horizontal"),
```typst #fa-poll-h()```, fa-poll-h(), fa-poll-h(solid: true), fa-icon("poll-h"),
```typst #fa-square-poll-vertical()```, fa-square-poll-vertical(), fa-square-poll-vertical(solid: true), fa-icon("square-poll-vertical"),
```typst #fa-poll()```, fa-poll(), fa-poll(solid: true), fa-icon("poll"),
```typst #fa-square-q()```, fa-square-q(), fa-square-q(solid: true), fa-icon("square-q"),
```typst #fa-square-quarters()```, fa-square-quarters(), fa-square-quarters(solid: true), fa-icon("square-quarters"),
```typst #fa-square-question()```, fa-square-question(), fa-square-question(solid: true), fa-icon("square-question"),
```typst #fa-question-square()```, fa-question-square(), fa-question-square(solid: true), fa-icon("question-square"),
```typst #fa-square-quote()```, fa-square-quote(), fa-square-quote(solid: true), fa-icon("square-quote"),
```typst #fa-square-r()```, fa-square-r(), fa-square-r(solid: true), fa-icon("square-r"),
```typst #fa-square-reddit()```, fa-square-reddit(), fa-square-reddit(solid: true), fa-icon("square-reddit"),
```typst #fa-reddit-square()```, fa-reddit-square(), fa-reddit-square(solid: true), fa-icon("reddit-square"),
```typst #fa-square-right()```, fa-square-right(), fa-square-right(solid: true), fa-icon("square-right"),
```typst #fa-arrow-alt-square-right()```, fa-arrow-alt-square-right(), fa-arrow-alt-square-right(solid: true), fa-icon("arrow-alt-square-right"),
```typst #fa-square-ring()```, fa-square-ring(), fa-square-ring(solid: true), fa-icon("square-ring"),
```typst #fa-square-root()```, fa-square-root(), fa-square-root(solid: true), fa-icon("square-root"),
```typst #fa-square-root-variable()```, fa-square-root-variable(), fa-square-root-variable(solid: true), fa-icon("square-root-variable"),
```typst #fa-square-root-alt()```, fa-square-root-alt(), fa-square-root-alt(solid: true), fa-icon("square-root-alt"),
```typst #fa-square-rss()```, fa-square-rss(), fa-square-rss(solid: true), fa-icon("square-rss"),
```typst #fa-rss-square()```, fa-rss-square(), fa-rss-square(solid: true), fa-icon("rss-square"),
```typst #fa-square-s()```, fa-square-s(), fa-square-s(solid: true), fa-icon("square-s"),
```typst #fa-square-share-nodes()```, fa-square-share-nodes(), fa-square-share-nodes(solid: true), fa-icon("square-share-nodes"),
```typst #fa-share-alt-square()```, fa-share-alt-square(), fa-share-alt-square(solid: true), fa-icon("share-alt-square"),
```typst #fa-square-sliders()```, fa-square-sliders(), fa-square-sliders(solid: true), fa-icon("square-sliders"),
```typst #fa-sliders-h-square()```, fa-sliders-h-square(), fa-sliders-h-square(solid: true), fa-icon("sliders-h-square"),
```typst #fa-square-sliders-vertical()```, fa-square-sliders-vertical(), fa-square-sliders-vertical(solid: true), fa-icon("square-sliders-vertical"),
```typst #fa-sliders-v-square()```, fa-sliders-v-square(), fa-sliders-v-square(solid: true), fa-icon("sliders-v-square"),
```typst #fa-square-small()```, fa-square-small(), fa-square-small(solid: true), fa-icon("square-small"),
```typst #fa-square-snapchat()```, fa-square-snapchat(), fa-square-snapchat(solid: true), fa-icon("square-snapchat"),
```typst #fa-snapchat-square()```, fa-snapchat-square(), fa-snapchat-square(solid: true), fa-icon("snapchat-square"),
```typst #fa-squarespace()```, fa-squarespace(), fa-squarespace(solid: true), fa-icon("squarespace"),
```typst #fa-square-star()```, fa-square-star(), fa-square-star(solid: true), fa-icon("square-star"),
```typst #fa-square-steam()```, fa-square-steam(), fa-square-steam(solid: true), fa-icon("square-steam"),
```typst #fa-steam-square()```, fa-steam-square(), fa-steam-square(solid: true), fa-icon("steam-square"),
```typst #fa-square-t()```, fa-square-t(), fa-square-t(solid: true), fa-icon("square-t"),
```typst #fa-square-terminal()```, fa-square-terminal(), fa-square-terminal(solid: true), fa-icon("square-terminal"),
```typst #fa-square-this-way-up()```, fa-square-this-way-up(), fa-square-this-way-up(solid: true), fa-icon("square-this-way-up"),
```typst #fa-box-up()```, fa-box-up(), fa-box-up(solid: true), fa-icon("box-up"),
```typst #fa-square-threads()```, fa-square-threads(), fa-square-threads(solid: true), fa-icon("square-threads"),
```typst #fa-square-tumblr()```, fa-square-tumblr(), fa-square-tumblr(solid: true), fa-icon("square-tumblr"),
```typst #fa-tumblr-square()```, fa-tumblr-square(), fa-tumblr-square(solid: true), fa-icon("tumblr-square"),
```typst #fa-square-twitter()```, fa-square-twitter(), fa-square-twitter(solid: true), fa-icon("square-twitter"),
```typst #fa-twitter-square()```, fa-twitter-square(), fa-twitter-square(solid: true), fa-icon("twitter-square"),
```typst #fa-square-u()```, fa-square-u(), fa-square-u(solid: true), fa-icon("square-u"),
```typst #fa-square-up()```, fa-square-up(), fa-square-up(solid: true), fa-icon("square-up"),
```typst #fa-arrow-alt-square-up()```, fa-arrow-alt-square-up(), fa-arrow-alt-square-up(solid: true), fa-icon("arrow-alt-square-up"),
```typst #fa-square-up-left()```, fa-square-up-left(), fa-square-up-left(solid: true), fa-icon("square-up-left"),
```typst #fa-square-up-right()```, fa-square-up-right(), fa-square-up-right(solid: true), fa-icon("square-up-right"),
```typst #fa-external-link-square-alt()```, fa-external-link-square-alt(), fa-external-link-square-alt(solid: true), fa-icon("external-link-square-alt"),
```typst #fa-square-upwork()```, fa-square-upwork(), fa-square-upwork(solid: true), fa-icon("square-upwork"),
```typst #fa-square-user()```, fa-square-user(), fa-square-user(solid: true), fa-icon("square-user"),
```typst #fa-square-v()```, fa-square-v(), fa-square-v(solid: true), fa-icon("square-v"),
```typst #fa-square-viadeo()```, fa-square-viadeo(), fa-square-viadeo(solid: true), fa-icon("square-viadeo"),
```typst #fa-viadeo-square()```, fa-viadeo-square(), fa-viadeo-square(solid: true), fa-icon("viadeo-square"),
```typst #fa-square-vimeo()```, fa-square-vimeo(), fa-square-vimeo(solid: true), fa-icon("square-vimeo"),
```typst #fa-vimeo-square()```, fa-vimeo-square(), fa-vimeo-square(solid: true), fa-icon("vimeo-square"),
```typst #fa-square-virus()```, fa-square-virus(), fa-square-virus(solid: true), fa-icon("square-virus"),
```typst #fa-square-w()```, fa-square-w(), fa-square-w(solid: true), fa-icon("square-w"),
```typst #fa-square-web-awesome()```, fa-square-web-awesome(), fa-square-web-awesome(solid: true), fa-icon("square-web-awesome"),
```typst #fa-square-web-awesome-stroke()```, fa-square-web-awesome-stroke(), fa-square-web-awesome-stroke(solid: true), fa-icon("square-web-awesome-stroke"),
```typst #fa-square-whatsapp()```, fa-square-whatsapp(), fa-square-whatsapp(solid: true), fa-icon("square-whatsapp"),
```typst #fa-whatsapp-square()```, fa-whatsapp-square(), fa-whatsapp-square(solid: true), fa-icon("whatsapp-square"),
```typst #fa-square-x()```, fa-square-x(), fa-square-x(solid: true), fa-icon("square-x"),
```typst #fa-square-xing()```, fa-square-xing(), fa-square-xing(solid: true), fa-icon("square-xing"),
```typst #fa-xing-square()```, fa-xing-square(), fa-xing-square(solid: true), fa-icon("xing-square"),
```typst #fa-square-xmark()```, fa-square-xmark(), fa-square-xmark(solid: true), fa-icon("square-xmark"),
```typst #fa-times-square()```, fa-times-square(), fa-times-square(solid: true), fa-icon("times-square"),
```typst #fa-xmark-square()```, fa-xmark-square(), fa-xmark-square(solid: true), fa-icon("xmark-square"),
```typst #fa-square-x-twitter()```, fa-square-x-twitter(), fa-square-x-twitter(solid: true), fa-icon("square-x-twitter"),
```typst #fa-square-y()```, fa-square-y(), fa-square-y(solid: true), fa-icon("square-y"),
```typst #fa-square-youtube()```, fa-square-youtube(), fa-square-youtube(solid: true), fa-icon("square-youtube"),
```typst #fa-youtube-square()```, fa-youtube-square(), fa-youtube-square(solid: true), fa-icon("youtube-square"),
```typst #fa-square-z()```, fa-square-z(), fa-square-z(solid: true), fa-icon("square-z"),
```typst #fa-squid()```, fa-squid(), fa-squid(solid: true), fa-icon("squid"),
```typst #fa-squirrel()```, fa-squirrel(), fa-squirrel(solid: true), fa-icon("squirrel"),
```typst #fa-stack-exchange()```, fa-stack-exchange(), fa-stack-exchange(solid: true), fa-icon("stack-exchange"),
```typst #fa-stack-overflow()```, fa-stack-overflow(), fa-stack-overflow(solid: true), fa-icon("stack-overflow"),
```typst #fa-stackpath()```, fa-stackpath(), fa-stackpath(solid: true), fa-icon("stackpath"),
```typst #fa-staff()```, fa-staff(), fa-staff(solid: true), fa-icon("staff"),
```typst #fa-staff-snake()```, fa-staff-snake(), fa-staff-snake(solid: true), fa-icon("staff-snake"),
```typst #fa-rod-asclepius()```, fa-rod-asclepius(), fa-rod-asclepius(solid: true), fa-icon("rod-asclepius"),
```typst #fa-rod-snake()```, fa-rod-snake(), fa-rod-snake(solid: true), fa-icon("rod-snake"),
```typst #fa-staff-aesculapius()```, fa-staff-aesculapius(), fa-staff-aesculapius(solid: true), fa-icon("staff-aesculapius"),
```typst #fa-stairs()```, fa-stairs(), fa-stairs(solid: true), fa-icon("stairs"),
```typst #fa-stamp()```, fa-stamp(), fa-stamp(solid: true), fa-icon("stamp"),
```typst #fa-standard-definition()```, fa-standard-definition(), fa-standard-definition(solid: true), fa-icon("standard-definition"),
```typst #fa-rectangle-sd()```, fa-rectangle-sd(), fa-rectangle-sd(solid: true), fa-icon("rectangle-sd"),
```typst #fa-stapler()```, fa-stapler(), fa-stapler(solid: true), fa-icon("stapler"),
```typst #fa-star()```, fa-star(), fa-star(solid: true), fa-icon("star"),
```typst #fa-star-and-crescent()```, fa-star-and-crescent(), fa-star-and-crescent(solid: true), fa-icon("star-and-crescent"),
```typst #fa-star-christmas()```, fa-star-christmas(), fa-star-christmas(solid: true), fa-icon("star-christmas"),
```typst #fa-star-exclamation()```, fa-star-exclamation(), fa-star-exclamation(solid: true), fa-icon("star-exclamation"),
```typst #fa-starfighter()```, fa-starfighter(), fa-starfighter(solid: true), fa-icon("starfighter"),
```typst #fa-starfighter-twin-ion-engine()```, fa-starfighter-twin-ion-engine(), fa-starfighter-twin-ion-engine(solid: true), fa-icon("starfighter-twin-ion-engine"),
```typst #fa-starfighter-alt()```, fa-starfighter-alt(), fa-starfighter-alt(solid: true), fa-icon("starfighter-alt"),
```typst #fa-starfighter-twin-ion-engine-advanced()```, fa-starfighter-twin-ion-engine-advanced(), fa-starfighter-twin-ion-engine-advanced(solid: true), fa-icon("starfighter-twin-ion-engine-advanced"),
```typst #fa-starfighter-alt-advanced()```, fa-starfighter-alt-advanced(), fa-starfighter-alt-advanced(solid: true), fa-icon("starfighter-alt-advanced"),
```typst #fa-star-half()```, fa-star-half(), fa-star-half(solid: true), fa-icon("star-half"),
```typst #fa-star-half-stroke()```, fa-star-half-stroke(), fa-star-half-stroke(solid: true), fa-icon("star-half-stroke"),
```typst #fa-star-half-alt()```, fa-star-half-alt(), fa-star-half-alt(solid: true), fa-icon("star-half-alt"),
```typst #fa-star-of-david()```, fa-star-of-david(), fa-star-of-david(solid: true), fa-icon("star-of-david"),
```typst #fa-star-of-life()```, fa-star-of-life(), fa-star-of-life(solid: true), fa-icon("star-of-life"),
```typst #fa-stars()```, fa-stars(), fa-stars(solid: true), fa-icon("stars"),
```typst #fa-star-sharp()```, fa-star-sharp(), fa-star-sharp(solid: true), fa-icon("star-sharp"),
```typst #fa-star-sharp-half()```, fa-star-sharp-half(), fa-star-sharp-half(solid: true), fa-icon("star-sharp-half"),
```typst #fa-star-sharp-half-stroke()```, fa-star-sharp-half-stroke(), fa-star-sharp-half-stroke(solid: true), fa-icon("star-sharp-half-stroke"),
```typst #fa-star-sharp-half-alt()```, fa-star-sharp-half-alt(), fa-star-sharp-half-alt(solid: true), fa-icon("star-sharp-half-alt"),
```typst #fa-starship()```, fa-starship(), fa-starship(solid: true), fa-icon("starship"),
```typst #fa-starship-freighter()```, fa-starship-freighter(), fa-starship-freighter(solid: true), fa-icon("starship-freighter"),
```typst #fa-star-shooting()```, fa-star-shooting(), fa-star-shooting(solid: true), fa-icon("star-shooting"),
```typst #fa-staylinked()```, fa-staylinked(), fa-staylinked(solid: true), fa-icon("staylinked"),
```typst #fa-steak()```, fa-steak(), fa-steak(solid: true), fa-icon("steak"),
```typst #fa-steam()```, fa-steam(), fa-steam(solid: true), fa-icon("steam"),
```typst #fa-steam-symbol()```, fa-steam-symbol(), fa-steam-symbol(solid: true), fa-icon("steam-symbol"),
```typst #fa-steering-wheel()```, fa-steering-wheel(), fa-steering-wheel(solid: true), fa-icon("steering-wheel"),
```typst #fa-sterling-sign()```, fa-sterling-sign(), fa-sterling-sign(solid: true), fa-icon("sterling-sign"),
```typst #fa-gbp()```, fa-gbp(), fa-gbp(solid: true), fa-icon("gbp"),
```typst #fa-pound-sign()```, fa-pound-sign(), fa-pound-sign(solid: true), fa-icon("pound-sign"),
```typst #fa-stethoscope()```, fa-stethoscope(), fa-stethoscope(solid: true), fa-icon("stethoscope"),
```typst #fa-sticker-mule()```, fa-sticker-mule(), fa-sticker-mule(solid: true), fa-icon("sticker-mule"),
```typst #fa-stocking()```, fa-stocking(), fa-stocking(solid: true), fa-icon("stocking"),
```typst #fa-stomach()```, fa-stomach(), fa-stomach(solid: true), fa-icon("stomach"),
```typst #fa-stop()```, fa-stop(), fa-stop(solid: true), fa-icon("stop"),
```typst #fa-stopwatch()```, fa-stopwatch(), fa-stopwatch(solid: true), fa-icon("stopwatch"),
```typst #fa-stopwatch-20()```, fa-stopwatch-20(), fa-stopwatch-20(solid: true), fa-icon("stopwatch-20"),
```typst #fa-store()```, fa-store(), fa-store(solid: true), fa-icon("store"),
```typst #fa-store-lock()```, fa-store-lock(), fa-store-lock(solid: true), fa-icon("store-lock"),
```typst #fa-store-slash()```, fa-store-slash(), fa-store-slash(solid: true), fa-icon("store-slash"),
```typst #fa-strava()```, fa-strava(), fa-strava(solid: true), fa-icon("strava"),
```typst #fa-strawberry()```, fa-strawberry(), fa-strawberry(solid: true), fa-icon("strawberry"),
```typst #fa-street-view()```, fa-street-view(), fa-street-view(solid: true), fa-icon("street-view"),
```typst #fa-stretcher()```, fa-stretcher(), fa-stretcher(solid: true), fa-icon("stretcher"),
```typst #fa-strikethrough()```, fa-strikethrough(), fa-strikethrough(solid: true), fa-icon("strikethrough"),
```typst #fa-stripe()```, fa-stripe(), fa-stripe(solid: true), fa-icon("stripe"),
```typst #fa-stripe-s()```, fa-stripe-s(), fa-stripe-s(solid: true), fa-icon("stripe-s"),
```typst #fa-stroopwafel()```, fa-stroopwafel(), fa-stroopwafel(solid: true), fa-icon("stroopwafel"),
```typst #fa-stubber()```, fa-stubber(), fa-stubber(solid: true), fa-icon("stubber"),
```typst #fa-studiovinari()```, fa-studiovinari(), fa-studiovinari(solid: true), fa-icon("studiovinari"),
```typst #fa-stumbleupon()```, fa-stumbleupon(), fa-stumbleupon(solid: true), fa-icon("stumbleupon"),
```typst #fa-stumbleupon-circle()```, fa-stumbleupon-circle(), fa-stumbleupon-circle(solid: true), fa-icon("stumbleupon-circle"),
```typst #fa-subscript()```, fa-subscript(), fa-subscript(solid: true), fa-icon("subscript"),
```typst #fa-subtitles()```, fa-subtitles(), fa-subtitles(solid: true), fa-icon("subtitles"),
```typst #fa-subtitles-slash()```, fa-subtitles-slash(), fa-subtitles-slash(solid: true), fa-icon("subtitles-slash"),
```typst #fa-suitcase()```, fa-suitcase(), fa-suitcase(solid: true), fa-icon("suitcase"),
```typst #fa-suitcase-medical()```, fa-suitcase-medical(), fa-suitcase-medical(solid: true), fa-icon("suitcase-medical"),
```typst #fa-medkit()```, fa-medkit(), fa-medkit(solid: true), fa-icon("medkit"),
```typst #fa-suitcase-rolling()```, fa-suitcase-rolling(), fa-suitcase-rolling(solid: true), fa-icon("suitcase-rolling"),
```typst #fa-sun()```, fa-sun(), fa-sun(solid: true), fa-icon("sun"),
```typst #fa-sun-bright()```, fa-sun-bright(), fa-sun-bright(solid: true), fa-icon("sun-bright"),
```typst #fa-sun-alt()```, fa-sun-alt(), fa-sun-alt(solid: true), fa-icon("sun-alt"),
```typst #fa-sun-cloud()```, fa-sun-cloud(), fa-sun-cloud(solid: true), fa-icon("sun-cloud"),
```typst #fa-sun-dust()```, fa-sun-dust(), fa-sun-dust(solid: true), fa-icon("sun-dust"),
```typst #fa-sunglasses()```, fa-sunglasses(), fa-sunglasses(solid: true), fa-icon("sunglasses"),
```typst #fa-sun-haze()```, fa-sun-haze(), fa-sun-haze(solid: true), fa-icon("sun-haze"),
```typst #fa-sun-plant-wilt()```, fa-sun-plant-wilt(), fa-sun-plant-wilt(solid: true), fa-icon("sun-plant-wilt"),
```typst #fa-sunrise()```, fa-sunrise(), fa-sunrise(solid: true), fa-icon("sunrise"),
```typst #fa-sunset()```, fa-sunset(), fa-sunset(solid: true), fa-icon("sunset"),
```typst #fa-superpowers()```, fa-superpowers(), fa-superpowers(solid: true), fa-icon("superpowers"),
```typst #fa-superscript()```, fa-superscript(), fa-superscript(solid: true), fa-icon("superscript"),
```typst #fa-supple()```, fa-supple(), fa-supple(solid: true), fa-icon("supple"),
```typst #fa-suse()```, fa-suse(), fa-suse(solid: true), fa-icon("suse"),
```typst #fa-sushi()```, fa-sushi(), fa-sushi(solid: true), fa-icon("sushi"),
```typst #fa-nigiri()```, fa-nigiri(), fa-nigiri(solid: true), fa-icon("nigiri"),
```typst #fa-sushi-roll()```, fa-sushi-roll(), fa-sushi-roll(solid: true), fa-icon("sushi-roll"),
```typst #fa-maki-roll()```, fa-maki-roll(), fa-maki-roll(solid: true), fa-icon("maki-roll"),
```typst #fa-makizushi()```, fa-makizushi(), fa-makizushi(solid: true), fa-icon("makizushi"),
```typst #fa-swap()```, fa-swap(), fa-swap(solid: true), fa-icon("swap"),
```typst #fa-swap-arrows()```, fa-swap-arrows(), fa-swap-arrows(solid: true), fa-icon("swap-arrows"),
```typst #fa-swatchbook()```, fa-swatchbook(), fa-swatchbook(solid: true), fa-icon("swatchbook"),
```typst #fa-swift()```, fa-swift(), fa-swift(solid: true), fa-icon("swift"),
```typst #fa-sword()```, fa-sword(), fa-sword(solid: true), fa-icon("sword"),
```typst #fa-sword-laser()```, fa-sword-laser(), fa-sword-laser(solid: true), fa-icon("sword-laser"),
```typst #fa-sword-laser-alt()```, fa-sword-laser-alt(), fa-sword-laser-alt(solid: true), fa-icon("sword-laser-alt"),
```typst #fa-swords()```, fa-swords(), fa-swords(solid: true), fa-icon("swords"),
```typst #fa-swords-laser()```, fa-swords-laser(), fa-swords-laser(solid: true), fa-icon("swords-laser"),
```typst #fa-symbols()```, fa-symbols(), fa-symbols(solid: true), fa-icon("symbols"),
```typst #fa-icons-alt()```, fa-icons-alt(), fa-icons-alt(solid: true), fa-icon("icons-alt"),
```typst #fa-symfony()```, fa-symfony(), fa-symfony(solid: true), fa-icon("symfony"),
```typst #fa-synagogue()```, fa-synagogue(), fa-synagogue(solid: true), fa-icon("synagogue"),
```typst #fa-syringe()```, fa-syringe(), fa-syringe(solid: true), fa-icon("syringe"),
```typst #fa-t()```, fa-t(), fa-t(solid: true), fa-icon("t"),
```typst #fa-table()```, fa-table(), fa-table(solid: true), fa-icon("table"),
```typst #fa-table-cells()```, fa-table-cells(), fa-table-cells(solid: true), fa-icon("table-cells"),
```typst #fa-th()```, fa-th(), fa-th(solid: true), fa-icon("th"),
```typst #fa-table-cells-column-lock()```, fa-table-cells-column-lock(), fa-table-cells-column-lock(solid: true), fa-icon("table-cells-column-lock"),
```typst #fa-table-cells-column-unlock()```, fa-table-cells-column-unlock(), fa-table-cells-column-unlock(solid: true), fa-icon("table-cells-column-unlock"),
```typst #fa-table-cells-large()```, fa-table-cells-large(), fa-table-cells-large(solid: true), fa-icon("table-cells-large"),
```typst #fa-th-large()```, fa-th-large(), fa-th-large(solid: true), fa-icon("th-large"),
```typst #fa-table-cells-lock()```, fa-table-cells-lock(), fa-table-cells-lock(solid: true), fa-icon("table-cells-lock"),
```typst #fa-table-cells-row-lock()```, fa-table-cells-row-lock(), fa-table-cells-row-lock(solid: true), fa-icon("table-cells-row-lock"),
```typst #fa-table-cells-row-unlock()```, fa-table-cells-row-unlock(), fa-table-cells-row-unlock(solid: true), fa-icon("table-cells-row-unlock"),
```typst #fa-table-cells-unlock()```, fa-table-cells-unlock(), fa-table-cells-unlock(solid: true), fa-icon("table-cells-unlock"),
```typst #fa-table-columns()```, fa-table-columns(), fa-table-columns(solid: true), fa-icon("table-columns"),
```typst #fa-columns()```, fa-columns(), fa-columns(solid: true), fa-icon("columns"),
```typst #fa-table-layout()```, fa-table-layout(), fa-table-layout(solid: true), fa-icon("table-layout"),
```typst #fa-table-list()```, fa-table-list(), fa-table-list(solid: true), fa-icon("table-list"),
```typst #fa-th-list()```, fa-th-list(), fa-th-list(solid: true), fa-icon("th-list"),
```typst #fa-table-picnic()```, fa-table-picnic(), fa-table-picnic(solid: true), fa-icon("table-picnic"),
```typst #fa-table-pivot()```, fa-table-pivot(), fa-table-pivot(solid: true), fa-icon("table-pivot"),
```typst #fa-table-rows()```, fa-table-rows(), fa-table-rows(solid: true), fa-icon("table-rows"),
```typst #fa-rows()```, fa-rows(), fa-rows(solid: true), fa-icon("rows"),
```typst #fa-tablet()```, fa-tablet(), fa-tablet(solid: true), fa-icon("tablet"),
```typst #fa-tablet-android()```, fa-tablet-android(), fa-tablet-android(solid: true), fa-icon("tablet-android"),
```typst #fa-tablet-button()```, fa-tablet-button(), fa-tablet-button(solid: true), fa-icon("tablet-button"),
```typst #fa-table-tennis-paddle-ball()```, fa-table-tennis-paddle-ball(), fa-table-tennis-paddle-ball(solid: true), fa-icon("table-tennis-paddle-ball"),
```typst #fa-ping-pong-paddle-ball()```, fa-ping-pong-paddle-ball(), fa-ping-pong-paddle-ball(solid: true), fa-icon("ping-pong-paddle-ball"),
```typst #fa-table-tennis()```, fa-table-tennis(), fa-table-tennis(solid: true), fa-icon("table-tennis"),
```typst #fa-table-tree()```, fa-table-tree(), fa-table-tree(solid: true), fa-icon("table-tree"),
```typst #fa-tablet-rugged()```, fa-tablet-rugged(), fa-tablet-rugged(solid: true), fa-icon("tablet-rugged"),
```typst #fa-tablets()```, fa-tablets(), fa-tablets(solid: true), fa-icon("tablets"),
```typst #fa-tablet-screen()```, fa-tablet-screen(), fa-tablet-screen(solid: true), fa-icon("tablet-screen"),
```typst #fa-tablet-android-alt()```, fa-tablet-android-alt(), fa-tablet-android-alt(solid: true), fa-icon("tablet-android-alt"),
```typst #fa-tablet-screen-button()```, fa-tablet-screen-button(), fa-tablet-screen-button(solid: true), fa-icon("tablet-screen-button"),
```typst #fa-tablet-alt()```, fa-tablet-alt(), fa-tablet-alt(solid: true), fa-icon("tablet-alt"),
```typst #fa-tachograph-digital()```, fa-tachograph-digital(), fa-tachograph-digital(solid: true), fa-icon("tachograph-digital"),
```typst #fa-digital-tachograph()```, fa-digital-tachograph(), fa-digital-tachograph(solid: true), fa-icon("digital-tachograph"),
```typst #fa-taco()```, fa-taco(), fa-taco(solid: true), fa-icon("taco"),
```typst #fa-tag()```, fa-tag(), fa-tag(solid: true), fa-icon("tag"),
```typst #fa-tags()```, fa-tags(), fa-tags(solid: true), fa-icon("tags"),
```typst #fa-tally()```, fa-tally(), fa-tally(solid: true), fa-icon("tally"),
```typst #fa-tally-5()```, fa-tally-5(), fa-tally-5(solid: true), fa-icon("tally-5"),
```typst #fa-tally-1()```, fa-tally-1(), fa-tally-1(solid: true), fa-icon("tally-1"),
```typst #fa-tally-2()```, fa-tally-2(), fa-tally-2(solid: true), fa-icon("tally-2"),
```typst #fa-tally-3()```, fa-tally-3(), fa-tally-3(solid: true), fa-icon("tally-3"),
```typst #fa-tally-4()```, fa-tally-4(), fa-tally-4(solid: true), fa-icon("tally-4"),
```typst #fa-tamale()```, fa-tamale(), fa-tamale(solid: true), fa-icon("tamale"),
```typst #fa-tank-water()```, fa-tank-water(), fa-tank-water(solid: true), fa-icon("tank-water"),
```typst #fa-tape()```, fa-tape(), fa-tape(solid: true), fa-icon("tape"),
```typst #fa-tarp()```, fa-tarp(), fa-tarp(solid: true), fa-icon("tarp"),
```typst #fa-tarp-droplet()```, fa-tarp-droplet(), fa-tarp-droplet(solid: true), fa-icon("tarp-droplet"),
```typst #fa-taxi()```, fa-taxi(), fa-taxi(solid: true), fa-icon("taxi"),
```typst #fa-cab()```, fa-cab(), fa-cab(solid: true), fa-icon("cab"),
```typst #fa-taxi-bus()```, fa-taxi-bus(), fa-taxi-bus(solid: true), fa-icon("taxi-bus"),
```typst #fa-teamspeak()```, fa-teamspeak(), fa-teamspeak(solid: true), fa-icon("teamspeak"),
```typst #fa-teddy-bear()```, fa-teddy-bear(), fa-teddy-bear(solid: true), fa-icon("teddy-bear"),
```typst #fa-teeth()```, fa-teeth(), fa-teeth(solid: true), fa-icon("teeth"),
```typst #fa-teeth-open()```, fa-teeth-open(), fa-teeth-open(solid: true), fa-icon("teeth-open"),
```typst #fa-telegram()```, fa-telegram(), fa-telegram(solid: true), fa-icon("telegram"),
```typst #fa-telegram-plane()```, fa-telegram-plane(), fa-telegram-plane(solid: true), fa-icon("telegram-plane"),
```typst #fa-telescope()```, fa-telescope(), fa-telescope(solid: true), fa-icon("telescope"),
```typst #fa-temperature-arrow-down()```, fa-temperature-arrow-down(), fa-temperature-arrow-down(solid: true), fa-icon("temperature-arrow-down"),
```typst #fa-temperature-down()```, fa-temperature-down(), fa-temperature-down(solid: true), fa-icon("temperature-down"),
```typst #fa-temperature-arrow-up()```, fa-temperature-arrow-up(), fa-temperature-arrow-up(solid: true), fa-icon("temperature-arrow-up"),
```typst #fa-temperature-up()```, fa-temperature-up(), fa-temperature-up(solid: true), fa-icon("temperature-up"),
```typst #fa-temperature-empty()```, fa-temperature-empty(), fa-temperature-empty(solid: true), fa-icon("temperature-empty"),
```typst #fa-temperature-0()```, fa-temperature-0(), fa-temperature-0(solid: true), fa-icon("temperature-0"),
```typst #fa-thermometer-0()```, fa-thermometer-0(), fa-thermometer-0(solid: true), fa-icon("thermometer-0"),
```typst #fa-thermometer-empty()```, fa-thermometer-empty(), fa-thermometer-empty(solid: true), fa-icon("thermometer-empty"),
```typst #fa-temperature-full()```, fa-temperature-full(), fa-temperature-full(solid: true), fa-icon("temperature-full"),
```typst #fa-temperature-4()```, fa-temperature-4(), fa-temperature-4(solid: true), fa-icon("temperature-4"),
```typst #fa-thermometer-4()```, fa-thermometer-4(), fa-thermometer-4(solid: true), fa-icon("thermometer-4"),
```typst #fa-thermometer-full()```, fa-thermometer-full(), fa-thermometer-full(solid: true), fa-icon("thermometer-full"),
```typst #fa-temperature-half()```, fa-temperature-half(), fa-temperature-half(solid: true), fa-icon("temperature-half"),
```typst #fa-temperature-2()```, fa-temperature-2(), fa-temperature-2(solid: true), fa-icon("temperature-2"),
```typst #fa-thermometer-2()```, fa-thermometer-2(), fa-thermometer-2(solid: true), fa-icon("thermometer-2"),
```typst #fa-thermometer-half()```, fa-thermometer-half(), fa-thermometer-half(solid: true), fa-icon("thermometer-half"),
```typst #fa-temperature-high()```, fa-temperature-high(), fa-temperature-high(solid: true), fa-icon("temperature-high"),
```typst #fa-temperature-list()```, fa-temperature-list(), fa-temperature-list(solid: true), fa-icon("temperature-list"),
```typst #fa-temperature-low()```, fa-temperature-low(), fa-temperature-low(solid: true), fa-icon("temperature-low"),
```typst #fa-temperature-quarter()```, fa-temperature-quarter(), fa-temperature-quarter(solid: true), fa-icon("temperature-quarter"),
```typst #fa-temperature-1()```, fa-temperature-1(), fa-temperature-1(solid: true), fa-icon("temperature-1"),
```typst #fa-thermometer-1()```, fa-thermometer-1(), fa-thermometer-1(solid: true), fa-icon("thermometer-1"),
```typst #fa-thermometer-quarter()```, fa-thermometer-quarter(), fa-thermometer-quarter(solid: true), fa-icon("thermometer-quarter"),
```typst #fa-temperature-snow()```, fa-temperature-snow(), fa-temperature-snow(solid: true), fa-icon("temperature-snow"),
```typst #fa-temperature-frigid()```, fa-temperature-frigid(), fa-temperature-frigid(solid: true), fa-icon("temperature-frigid"),
```typst #fa-temperature-sun()```, fa-temperature-sun(), fa-temperature-sun(solid: true), fa-icon("temperature-sun"),
```typst #fa-temperature-hot()```, fa-temperature-hot(), fa-temperature-hot(solid: true), fa-icon("temperature-hot"),
```typst #fa-temperature-three-quarters()```, fa-temperature-three-quarters(), fa-temperature-three-quarters(solid: true), fa-icon("temperature-three-quarters"),
```typst #fa-temperature-3()```, fa-temperature-3(), fa-temperature-3(solid: true), fa-icon("temperature-3"),
```typst #fa-thermometer-3()```, fa-thermometer-3(), fa-thermometer-3(solid: true), fa-icon("thermometer-3"),
```typst #fa-thermometer-three-quarters()```, fa-thermometer-three-quarters(), fa-thermometer-three-quarters(solid: true), fa-icon("thermometer-three-quarters"),
```typst #fa-tencent-weibo()```, fa-tencent-weibo(), fa-tencent-weibo(solid: true), fa-icon("tencent-weibo"),
```typst #fa-tenge-sign()```, fa-tenge-sign(), fa-tenge-sign(solid: true), fa-icon("tenge-sign"),
```typst #fa-tenge()```, fa-tenge(), fa-tenge(solid: true), fa-icon("tenge"),
```typst #fa-tennis-ball()```, fa-tennis-ball(), fa-tennis-ball(solid: true), fa-icon("tennis-ball"),
```typst #fa-tent()```, fa-tent(), fa-tent(solid: true), fa-icon("tent"),
```typst #fa-tent-arrow-down-to-line()```, fa-tent-arrow-down-to-line(), fa-tent-arrow-down-to-line(solid: true), fa-icon("tent-arrow-down-to-line"),
```typst #fa-tent-arrow-left-right()```, fa-tent-arrow-left-right(), fa-tent-arrow-left-right(solid: true), fa-icon("tent-arrow-left-right"),
```typst #fa-tent-arrows-down()```, fa-tent-arrows-down(), fa-tent-arrows-down(solid: true), fa-icon("tent-arrows-down"),
```typst #fa-tent-arrow-turn-left()```, fa-tent-arrow-turn-left(), fa-tent-arrow-turn-left(solid: true), fa-icon("tent-arrow-turn-left"),
```typst #fa-tent-double-peak()```, fa-tent-double-peak(), fa-tent-double-peak(solid: true), fa-icon("tent-double-peak"),
```typst #fa-tents()```, fa-tents(), fa-tents(solid: true), fa-icon("tents"),
```typst #fa-terminal()```, fa-terminal(), fa-terminal(solid: true), fa-icon("terminal"),
```typst #fa-text()```, fa-text(), fa-text(solid: true), fa-icon("text"),
```typst #fa-text-height()```, fa-text-height(), fa-text-height(solid: true), fa-icon("text-height"),
```typst #fa-text-size()```, fa-text-size(), fa-text-size(solid: true), fa-icon("text-size"),
```typst #fa-text-slash()```, fa-text-slash(), fa-text-slash(solid: true), fa-icon("text-slash"),
```typst #fa-remove-format()```, fa-remove-format(), fa-remove-format(solid: true), fa-icon("remove-format"),
```typst #fa-text-width()```, fa-text-width(), fa-text-width(solid: true), fa-icon("text-width"),
```typst #fa-themeco()```, fa-themeco(), fa-themeco(solid: true), fa-icon("themeco"),
```typst #fa-themeisle()```, fa-themeisle(), fa-themeisle(solid: true), fa-icon("themeisle"),
```typst #fa-the-red-yeti()```, fa-the-red-yeti(), fa-the-red-yeti(solid: true), fa-icon("the-red-yeti"),
```typst #fa-thermometer()```, fa-thermometer(), fa-thermometer(solid: true), fa-icon("thermometer"),
```typst #fa-theta()```, fa-theta(), fa-theta(solid: true), fa-icon("theta"),
```typst #fa-think-peaks()```, fa-think-peaks(), fa-think-peaks(solid: true), fa-icon("think-peaks"),
```typst #fa-thought-bubble()```, fa-thought-bubble(), fa-thought-bubble(solid: true), fa-icon("thought-bubble"),
```typst #fa-threads()```, fa-threads(), fa-threads(solid: true), fa-icon("threads"),
```typst #fa-thumbs-down()```, fa-thumbs-down(), fa-thumbs-down(solid: true), fa-icon("thumbs-down"),
```typst #fa-thumbs-up()```, fa-thumbs-up(), fa-thumbs-up(solid: true), fa-icon("thumbs-up"),
```typst #fa-thumbtack()```, fa-thumbtack(), fa-thumbtack(solid: true), fa-icon("thumbtack"),
```typst #fa-thumb-tack()```, fa-thumb-tack(), fa-thumb-tack(solid: true), fa-icon("thumb-tack"),
```typst #fa-thumbtack-slash()```, fa-thumbtack-slash(), fa-thumbtack-slash(solid: true), fa-icon("thumbtack-slash"),
```typst #fa-thumb-tack-slash()```, fa-thumb-tack-slash(), fa-thumb-tack-slash(solid: true), fa-icon("thumb-tack-slash"),
```typst #fa-tick()```, fa-tick(), fa-tick(solid: true), fa-icon("tick"),
```typst #fa-ticket()```, fa-ticket(), fa-ticket(solid: true), fa-icon("ticket"),
```typst #fa-ticket-airline()```, fa-ticket-airline(), fa-ticket-airline(solid: true), fa-icon("ticket-airline"),
```typst #fa-ticket-perforated-plane()```, fa-ticket-perforated-plane(), fa-ticket-perforated-plane(solid: true), fa-icon("ticket-perforated-plane"),
```typst #fa-ticket-plane()```, fa-ticket-plane(), fa-ticket-plane(solid: true), fa-icon("ticket-plane"),
```typst #fa-ticket-perforated()```, fa-ticket-perforated(), fa-ticket-perforated(solid: true), fa-icon("ticket-perforated"),
```typst #fa-tickets()```, fa-tickets(), fa-tickets(solid: true), fa-icon("tickets"),
```typst #fa-tickets-airline()```, fa-tickets-airline(), fa-tickets-airline(solid: true), fa-icon("tickets-airline"),
```typst #fa-tickets-perforated-plane()```, fa-tickets-perforated-plane(), fa-tickets-perforated-plane(solid: true), fa-icon("tickets-perforated-plane"),
```typst #fa-tickets-plane()```, fa-tickets-plane(), fa-tickets-plane(solid: true), fa-icon("tickets-plane"),
```typst #fa-ticket-simple()```, fa-ticket-simple(), fa-ticket-simple(solid: true), fa-icon("ticket-simple"),
```typst #fa-ticket-alt()```, fa-ticket-alt(), fa-ticket-alt(solid: true), fa-icon("ticket-alt"),
```typst #fa-tickets-perforated()```, fa-tickets-perforated(), fa-tickets-perforated(solid: true), fa-icon("tickets-perforated"),
```typst #fa-tickets-simple()```, fa-tickets-simple(), fa-tickets-simple(solid: true), fa-icon("tickets-simple"),
```typst #fa-tiktok()```, fa-tiktok(), fa-tiktok(solid: true), fa-icon("tiktok"),
```typst #fa-tilde()```, fa-tilde(), fa-tilde(solid: true), fa-icon("tilde"),
```typst #fa-timeline()```, fa-timeline(), fa-timeline(solid: true), fa-icon("timeline"),
```typst #fa-timeline-arrow()```, fa-timeline-arrow(), fa-timeline-arrow(solid: true), fa-icon("timeline-arrow"),
```typst #fa-timer()```, fa-timer(), fa-timer(solid: true), fa-icon("timer"),
```typst #fa-tire()```, fa-tire(), fa-tire(solid: true), fa-icon("tire"),
```typst #fa-tire-flat()```, fa-tire-flat(), fa-tire-flat(solid: true), fa-icon("tire-flat"),
```typst #fa-tire-pressure-warning()```, fa-tire-pressure-warning(), fa-tire-pressure-warning(solid: true), fa-icon("tire-pressure-warning"),
```typst #fa-tire-rugged()```, fa-tire-rugged(), fa-tire-rugged(solid: true), fa-icon("tire-rugged"),
```typst #fa-toggle-large-off()```, fa-toggle-large-off(), fa-toggle-large-off(solid: true), fa-icon("toggle-large-off"),
```typst #fa-toggle-large-on()```, fa-toggle-large-on(), fa-toggle-large-on(solid: true), fa-icon("toggle-large-on"),
```typst #fa-toggle-off()```, fa-toggle-off(), fa-toggle-off(solid: true), fa-icon("toggle-off"),
```typst #fa-toggle-on()```, fa-toggle-on(), fa-toggle-on(solid: true), fa-icon("toggle-on"),
```typst #fa-toilet()```, fa-toilet(), fa-toilet(solid: true), fa-icon("toilet"),
```typst #fa-toilet-paper()```, fa-toilet-paper(), fa-toilet-paper(solid: true), fa-icon("toilet-paper"),
```typst #fa-toilet-paper-blank()```, fa-toilet-paper-blank(), fa-toilet-paper-blank(solid: true), fa-icon("toilet-paper-blank"),
```typst #fa-toilet-paper-alt()```, fa-toilet-paper-alt(), fa-toilet-paper-alt(solid: true), fa-icon("toilet-paper-alt"),
```typst #fa-toilet-paper-blank-under()```, fa-toilet-paper-blank-under(), fa-toilet-paper-blank-under(solid: true), fa-icon("toilet-paper-blank-under"),
```typst #fa-toilet-paper-reverse-alt()```, fa-toilet-paper-reverse-alt(), fa-toilet-paper-reverse-alt(solid: true), fa-icon("toilet-paper-reverse-alt"),
```typst #fa-toilet-paper-check()```, fa-toilet-paper-check(), fa-toilet-paper-check(solid: true), fa-icon("toilet-paper-check"),
```typst #fa-toilet-paper-slash()```, fa-toilet-paper-slash(), fa-toilet-paper-slash(solid: true), fa-icon("toilet-paper-slash"),
```typst #fa-toilet-paper-under()```, fa-toilet-paper-under(), fa-toilet-paper-under(solid: true), fa-icon("toilet-paper-under"),
```typst #fa-toilet-paper-reverse()```, fa-toilet-paper-reverse(), fa-toilet-paper-reverse(solid: true), fa-icon("toilet-paper-reverse"),
```typst #fa-toilet-paper-under-slash()```, fa-toilet-paper-under-slash(), fa-toilet-paper-under-slash(solid: true), fa-icon("toilet-paper-under-slash"),
```typst #fa-toilet-paper-reverse-slash()```, fa-toilet-paper-reverse-slash(), fa-toilet-paper-reverse-slash(solid: true), fa-icon("toilet-paper-reverse-slash"),
```typst #fa-toilet-paper-xmark()```, fa-toilet-paper-xmark(), fa-toilet-paper-xmark(solid: true), fa-icon("toilet-paper-xmark"),
```typst #fa-toilet-portable()```, fa-toilet-portable(), fa-toilet-portable(solid: true), fa-icon("toilet-portable"),
```typst #fa-toilets-portable()```, fa-toilets-portable(), fa-toilets-portable(solid: true), fa-icon("toilets-portable"),
```typst #fa-tomato()```, fa-tomato(), fa-tomato(solid: true), fa-icon("tomato"),
```typst #fa-tombstone()```, fa-tombstone(), fa-tombstone(solid: true), fa-icon("tombstone"),
```typst #fa-tombstone-blank()```, fa-tombstone-blank(), fa-tombstone-blank(solid: true), fa-icon("tombstone-blank"),
```typst #fa-tombstone-alt()```, fa-tombstone-alt(), fa-tombstone-alt(solid: true), fa-icon("tombstone-alt"),
```typst #fa-toolbox()```, fa-toolbox(), fa-toolbox(solid: true), fa-icon("toolbox"),
```typst #fa-tooth()```, fa-tooth(), fa-tooth(solid: true), fa-icon("tooth"),
```typst #fa-toothbrush()```, fa-toothbrush(), fa-toothbrush(solid: true), fa-icon("toothbrush"),
```typst #fa-torii-gate()```, fa-torii-gate(), fa-torii-gate(solid: true), fa-icon("torii-gate"),
```typst #fa-tornado()```, fa-tornado(), fa-tornado(solid: true), fa-icon("tornado"),
```typst #fa-tower-broadcast()```, fa-tower-broadcast(), fa-tower-broadcast(solid: true), fa-icon("tower-broadcast"),
```typst #fa-broadcast-tower()```, fa-broadcast-tower(), fa-broadcast-tower(solid: true), fa-icon("broadcast-tower"),
```typst #fa-tower-cell()```, fa-tower-cell(), fa-tower-cell(solid: true), fa-icon("tower-cell"),
```typst #fa-tower-control()```, fa-tower-control(), fa-tower-control(solid: true), fa-icon("tower-control"),
```typst #fa-tower-observation()```, fa-tower-observation(), fa-tower-observation(solid: true), fa-icon("tower-observation"),
```typst #fa-tractor()```, fa-tractor(), fa-tractor(solid: true), fa-icon("tractor"),
```typst #fa-trade-federation()```, fa-trade-federation(), fa-trade-federation(solid: true), fa-icon("trade-federation"),
```typst #fa-trademark()```, fa-trademark(), fa-trademark(solid: true), fa-icon("trademark"),
```typst #fa-traffic-cone()```, fa-traffic-cone(), fa-traffic-cone(solid: true), fa-icon("traffic-cone"),
```typst #fa-traffic-light()```, fa-traffic-light(), fa-traffic-light(solid: true), fa-icon("traffic-light"),
```typst #fa-traffic-light-go()```, fa-traffic-light-go(), fa-traffic-light-go(solid: true), fa-icon("traffic-light-go"),
```typst #fa-traffic-light-slow()```, fa-traffic-light-slow(), fa-traffic-light-slow(solid: true), fa-icon("traffic-light-slow"),
```typst #fa-traffic-light-stop()```, fa-traffic-light-stop(), fa-traffic-light-stop(solid: true), fa-icon("traffic-light-stop"),
```typst #fa-trailer()```, fa-trailer(), fa-trailer(solid: true), fa-icon("trailer"),
```typst #fa-train()```, fa-train(), fa-train(solid: true), fa-icon("train"),
```typst #fa-train-subway()```, fa-train-subway(), fa-train-subway(solid: true), fa-icon("train-subway"),
```typst #fa-subway()```, fa-subway(), fa-subway(solid: true), fa-icon("subway"),
```typst #fa-train-subway-tunnel()```, fa-train-subway-tunnel(), fa-train-subway-tunnel(solid: true), fa-icon("train-subway-tunnel"),
```typst #fa-subway-tunnel()```, fa-subway-tunnel(), fa-subway-tunnel(solid: true), fa-icon("subway-tunnel"),
```typst #fa-train-track()```, fa-train-track(), fa-train-track(solid: true), fa-icon("train-track"),
```typst #fa-train-tram()```, fa-train-tram(), fa-train-tram(solid: true), fa-icon("train-tram"),
```typst #fa-train-tunnel()```, fa-train-tunnel(), fa-train-tunnel(solid: true), fa-icon("train-tunnel"),
```typst #fa-transformer-bolt()```, fa-transformer-bolt(), fa-transformer-bolt(solid: true), fa-icon("transformer-bolt"),
```typst #fa-transgender()```, fa-transgender(), fa-transgender(solid: true), fa-icon("transgender"),
```typst #fa-transgender-alt()```, fa-transgender-alt(), fa-transgender-alt(solid: true), fa-icon("transgender-alt"),
```typst #fa-transporter()```, fa-transporter(), fa-transporter(solid: true), fa-icon("transporter"),
```typst #fa-transporter-1()```, fa-transporter-1(), fa-transporter-1(solid: true), fa-icon("transporter-1"),
```typst #fa-transporter-2()```, fa-transporter-2(), fa-transporter-2(solid: true), fa-icon("transporter-2"),
```typst #fa-transporter-3()```, fa-transporter-3(), fa-transporter-3(solid: true), fa-icon("transporter-3"),
```typst #fa-transporter-4()```, fa-transporter-4(), fa-transporter-4(solid: true), fa-icon("transporter-4"),
```typst #fa-transporter-5()```, fa-transporter-5(), fa-transporter-5(solid: true), fa-icon("transporter-5"),
```typst #fa-transporter-6()```, fa-transporter-6(), fa-transporter-6(solid: true), fa-icon("transporter-6"),
```typst #fa-transporter-7()```, fa-transporter-7(), fa-transporter-7(solid: true), fa-icon("transporter-7"),
```typst #fa-transporter-empty()```, fa-transporter-empty(), fa-transporter-empty(solid: true), fa-icon("transporter-empty"),
```typst #fa-trash()```, fa-trash(), fa-trash(solid: true), fa-icon("trash"),
```typst #fa-trash-arrow-up()```, fa-trash-arrow-up(), fa-trash-arrow-up(solid: true), fa-icon("trash-arrow-up"),
```typst #fa-trash-restore()```, fa-trash-restore(), fa-trash-restore(solid: true), fa-icon("trash-restore"),
```typst #fa-trash-can()```, fa-trash-can(), fa-trash-can(solid: true), fa-icon("trash-can"),
```typst #fa-trash-alt()```, fa-trash-alt(), fa-trash-alt(solid: true), fa-icon("trash-alt"),
```typst #fa-trash-can-arrow-up()```, fa-trash-can-arrow-up(), fa-trash-can-arrow-up(solid: true), fa-icon("trash-can-arrow-up"),
```typst #fa-trash-restore-alt()```, fa-trash-restore-alt(), fa-trash-restore-alt(solid: true), fa-icon("trash-restore-alt"),
```typst #fa-trash-can-check()```, fa-trash-can-check(), fa-trash-can-check(solid: true), fa-icon("trash-can-check"),
```typst #fa-trash-can-clock()```, fa-trash-can-clock(), fa-trash-can-clock(solid: true), fa-icon("trash-can-clock"),
```typst #fa-trash-can-list()```, fa-trash-can-list(), fa-trash-can-list(solid: true), fa-icon("trash-can-list"),
```typst #fa-trash-can-plus()```, fa-trash-can-plus(), fa-trash-can-plus(solid: true), fa-icon("trash-can-plus"),
```typst #fa-trash-can-slash()```, fa-trash-can-slash(), fa-trash-can-slash(solid: true), fa-icon("trash-can-slash"),
```typst #fa-trash-alt-slash()```, fa-trash-alt-slash(), fa-trash-alt-slash(solid: true), fa-icon("trash-alt-slash"),
```typst #fa-trash-can-undo()```, fa-trash-can-undo(), fa-trash-can-undo(solid: true), fa-icon("trash-can-undo"),
```typst #fa-trash-can-arrow-turn-left()```, fa-trash-can-arrow-turn-left(), fa-trash-can-arrow-turn-left(solid: true), fa-icon("trash-can-arrow-turn-left"),
```typst #fa-trash-undo-alt()```, fa-trash-undo-alt(), fa-trash-undo-alt(solid: true), fa-icon("trash-undo-alt"),
```typst #fa-trash-can-xmark()```, fa-trash-can-xmark(), fa-trash-can-xmark(solid: true), fa-icon("trash-can-xmark"),
```typst #fa-trash-check()```, fa-trash-check(), fa-trash-check(solid: true), fa-icon("trash-check"),
```typst #fa-trash-clock()```, fa-trash-clock(), fa-trash-clock(solid: true), fa-icon("trash-clock"),
```typst #fa-trash-list()```, fa-trash-list(), fa-trash-list(solid: true), fa-icon("trash-list"),
```typst #fa-trash-plus()```, fa-trash-plus(), fa-trash-plus(solid: true), fa-icon("trash-plus"),
```typst #fa-trash-slash()```, fa-trash-slash(), fa-trash-slash(solid: true), fa-icon("trash-slash"),
```typst #fa-trash-undo()```, fa-trash-undo(), fa-trash-undo(solid: true), fa-icon("trash-undo"),
```typst #fa-trash-arrow-turn-left()```, fa-trash-arrow-turn-left(), fa-trash-arrow-turn-left(solid: true), fa-icon("trash-arrow-turn-left"),
```typst #fa-trash-xmark()```, fa-trash-xmark(), fa-trash-xmark(solid: true), fa-icon("trash-xmark"),
```typst #fa-treasure-chest()```, fa-treasure-chest(), fa-treasure-chest(solid: true), fa-icon("treasure-chest"),
```typst #fa-tree()```, fa-tree(), fa-tree(solid: true), fa-icon("tree"),
```typst #fa-tree-christmas()```, fa-tree-christmas(), fa-tree-christmas(solid: true), fa-icon("tree-christmas"),
```typst #fa-tree-city()```, fa-tree-city(), fa-tree-city(solid: true), fa-icon("tree-city"),
```typst #fa-tree-deciduous()```, fa-tree-deciduous(), fa-tree-deciduous(solid: true), fa-icon("tree-deciduous"),
```typst #fa-tree-alt()```, fa-tree-alt(), fa-tree-alt(solid: true), fa-icon("tree-alt"),
```typst #fa-tree-decorated()```, fa-tree-decorated(), fa-tree-decorated(solid: true), fa-icon("tree-decorated"),
```typst #fa-tree-large()```, fa-tree-large(), fa-tree-large(solid: true), fa-icon("tree-large"),
```typst #fa-tree-palm()```, fa-tree-palm(), fa-tree-palm(solid: true), fa-icon("tree-palm"),
```typst #fa-trees()```, fa-trees(), fa-trees(solid: true), fa-icon("trees"),
```typst #fa-trello()```, fa-trello(), fa-trello(solid: true), fa-icon("trello"),
```typst #fa-t-rex()```, fa-t-rex(), fa-t-rex(solid: true), fa-icon("t-rex"),
```typst #fa-triangle()```, fa-triangle(), fa-triangle(solid: true), fa-icon("triangle"),
```typst #fa-triangle-exclamation()```, fa-triangle-exclamation(), fa-triangle-exclamation(solid: true), fa-icon("triangle-exclamation"),
```typst #fa-exclamation-triangle()```, fa-exclamation-triangle(), fa-exclamation-triangle(solid: true), fa-icon("exclamation-triangle"),
```typst #fa-warning()```, fa-warning(), fa-warning(solid: true), fa-icon("warning"),
```typst #fa-triangle-instrument()```, fa-triangle-instrument(), fa-triangle-instrument(solid: true), fa-icon("triangle-instrument"),
```typst #fa-triangle-music()```, fa-triangle-music(), fa-triangle-music(solid: true), fa-icon("triangle-music"),
```typst #fa-triangle-person-digging()```, fa-triangle-person-digging(), fa-triangle-person-digging(solid: true), fa-icon("triangle-person-digging"),
```typst #fa-construction()```, fa-construction(), fa-construction(solid: true), fa-icon("construction"),
```typst #fa-tricycle()```, fa-tricycle(), fa-tricycle(solid: true), fa-icon("tricycle"),
```typst #fa-tricycle-adult()```, fa-tricycle-adult(), fa-tricycle-adult(solid: true), fa-icon("tricycle-adult"),
```typst #fa-trillium()```, fa-trillium(), fa-trillium(solid: true), fa-icon("trillium"),
```typst #fa-trophy()```, fa-trophy(), fa-trophy(solid: true), fa-icon("trophy"),
```typst #fa-trophy-star()```, fa-trophy-star(), fa-trophy-star(solid: true), fa-icon("trophy-star"),
```typst #fa-trophy-alt()```, fa-trophy-alt(), fa-trophy-alt(solid: true), fa-icon("trophy-alt"),
```typst #fa-trowel()```, fa-trowel(), fa-trowel(solid: true), fa-icon("trowel"),
```typst #fa-trowel-bricks()```, fa-trowel-bricks(), fa-trowel-bricks(solid: true), fa-icon("trowel-bricks"),
```typst #fa-truck()```, fa-truck(), fa-truck(solid: true), fa-icon("truck"),
```typst #fa-truck-arrow-right()```, fa-truck-arrow-right(), fa-truck-arrow-right(solid: true), fa-icon("truck-arrow-right"),
```typst #fa-truck-bolt()```, fa-truck-bolt(), fa-truck-bolt(solid: true), fa-icon("truck-bolt"),
```typst #fa-truck-clock()```, fa-truck-clock(), fa-truck-clock(solid: true), fa-icon("truck-clock"),
```typst #fa-shipping-timed()```, fa-shipping-timed(), fa-shipping-timed(solid: true), fa-icon("shipping-timed"),
```typst #fa-truck-container()```, fa-truck-container(), fa-truck-container(solid: true), fa-icon("truck-container"),
```typst #fa-truck-container-empty()```, fa-truck-container-empty(), fa-truck-container-empty(solid: true), fa-icon("truck-container-empty"),
```typst #fa-truck-droplet()```, fa-truck-droplet(), fa-truck-droplet(solid: true), fa-icon("truck-droplet"),
```typst #fa-truck-fast()```, fa-truck-fast(), fa-truck-fast(solid: true), fa-icon("truck-fast"),
```typst #fa-shipping-fast()```, fa-shipping-fast(), fa-shipping-fast(solid: true), fa-icon("shipping-fast"),
```typst #fa-truck-field()```, fa-truck-field(), fa-truck-field(solid: true), fa-icon("truck-field"),
```typst #fa-truck-field-un()```, fa-truck-field-un(), fa-truck-field-un(solid: true), fa-icon("truck-field-un"),
```typst #fa-truck-fire()```, fa-truck-fire(), fa-truck-fire(solid: true), fa-icon("truck-fire"),
```typst #fa-truck-flatbed()```, fa-truck-flatbed(), fa-truck-flatbed(solid: true), fa-icon("truck-flatbed"),
```typst #fa-truck-front()```, fa-truck-front(), fa-truck-front(solid: true), fa-icon("truck-front"),
```typst #fa-truck-ladder()```, fa-truck-ladder(), fa-truck-ladder(solid: true), fa-icon("truck-ladder"),
```typst #fa-truck-medical()```, fa-truck-medical(), fa-truck-medical(solid: true), fa-icon("truck-medical"),
```typst #fa-ambulance()```, fa-ambulance(), fa-ambulance(solid: true), fa-icon("ambulance"),
```typst #fa-truck-monster()```, fa-truck-monster(), fa-truck-monster(solid: true), fa-icon("truck-monster"),
```typst #fa-truck-moving()```, fa-truck-moving(), fa-truck-moving(solid: true), fa-icon("truck-moving"),
```typst #fa-truck-pickup()```, fa-truck-pickup(), fa-truck-pickup(solid: true), fa-icon("truck-pickup"),
```typst #fa-truck-plane()```, fa-truck-plane(), fa-truck-plane(solid: true), fa-icon("truck-plane"),
```typst #fa-truck-plow()```, fa-truck-plow(), fa-truck-plow(solid: true), fa-icon("truck-plow"),
```typst #fa-truck-ramp()```, fa-truck-ramp(), fa-truck-ramp(solid: true), fa-icon("truck-ramp"),
```typst #fa-truck-ramp-box()```, fa-truck-ramp-box(), fa-truck-ramp-box(solid: true), fa-icon("truck-ramp-box"),
```typst #fa-truck-loading()```, fa-truck-loading(), fa-truck-loading(solid: true), fa-icon("truck-loading"),
```typst #fa-truck-ramp-couch()```, fa-truck-ramp-couch(), fa-truck-ramp-couch(solid: true), fa-icon("truck-ramp-couch"),
```typst #fa-truck-couch()```, fa-truck-couch(), fa-truck-couch(solid: true), fa-icon("truck-couch"),
```typst #fa-truck-tow()```, fa-truck-tow(), fa-truck-tow(solid: true), fa-icon("truck-tow"),
```typst #fa-truck-utensils()```, fa-truck-utensils(), fa-truck-utensils(solid: true), fa-icon("truck-utensils"),
```typst #fa-trumpet()```, fa-trumpet(), fa-trumpet(solid: true), fa-icon("trumpet"),
```typst #fa-tty()```, fa-tty(), fa-tty(solid: true), fa-icon("tty"),
```typst #fa-teletype()```, fa-teletype(), fa-teletype(solid: true), fa-icon("teletype"),
```typst #fa-tty-answer()```, fa-tty-answer(), fa-tty-answer(solid: true), fa-icon("tty-answer"),
```typst #fa-teletype-answer()```, fa-teletype-answer(), fa-teletype-answer(solid: true), fa-icon("teletype-answer"),
```typst #fa-tugrik-sign()```, fa-tugrik-sign(), fa-tugrik-sign(solid: true), fa-icon("tugrik-sign"),
```typst #fa-tumblr()```, fa-tumblr(), fa-tumblr(solid: true), fa-icon("tumblr"),
```typst #fa-turkey()```, fa-turkey(), fa-turkey(solid: true), fa-icon("turkey"),
```typst #fa-turkish-lira-sign()```, fa-turkish-lira-sign(), fa-turkish-lira-sign(solid: true), fa-icon("turkish-lira-sign"),
```typst #fa-try()```, fa-try(), fa-try(solid: true), fa-icon("try"),
```typst #fa-turkish-lira()```, fa-turkish-lira(), fa-turkish-lira(solid: true), fa-icon("turkish-lira"),
```typst #fa-turn-down()```, fa-turn-down(), fa-turn-down(solid: true), fa-icon("turn-down"),
```typst #fa-level-down-alt()```, fa-level-down-alt(), fa-level-down-alt(solid: true), fa-icon("level-down-alt"),
```typst #fa-turn-down-left()```, fa-turn-down-left(), fa-turn-down-left(solid: true), fa-icon("turn-down-left"),
```typst #fa-turn-down-right()```, fa-turn-down-right(), fa-turn-down-right(solid: true), fa-icon("turn-down-right"),
```typst #fa-turn-left()```, fa-turn-left(), fa-turn-left(solid: true), fa-icon("turn-left"),
```typst #fa-turn-left-down()```, fa-turn-left-down(), fa-turn-left-down(solid: true), fa-icon("turn-left-down"),
```typst #fa-turn-left-up()```, fa-turn-left-up(), fa-turn-left-up(solid: true), fa-icon("turn-left-up"),
```typst #fa-turn-right()```, fa-turn-right(), fa-turn-right(solid: true), fa-icon("turn-right"),
```typst #fa-turntable()```, fa-turntable(), fa-turntable(solid: true), fa-icon("turntable"),
```typst #fa-turn-up()```, fa-turn-up(), fa-turn-up(solid: true), fa-icon("turn-up"),
```typst #fa-level-up-alt()```, fa-level-up-alt(), fa-level-up-alt(solid: true), fa-icon("level-up-alt"),
```typst #fa-turtle()```, fa-turtle(), fa-turtle(solid: true), fa-icon("turtle"),
```typst #fa-tv()```, fa-tv(), fa-tv(solid: true), fa-icon("tv"),
```typst #fa-television()```, fa-television(), fa-television(solid: true), fa-icon("television"),
```typst #fa-tv-alt()```, fa-tv-alt(), fa-tv-alt(solid: true), fa-icon("tv-alt"),
```typst #fa-tv-music()```, fa-tv-music(), fa-tv-music(solid: true), fa-icon("tv-music"),
```typst #fa-tv-retro()```, fa-tv-retro(), fa-tv-retro(solid: true), fa-icon("tv-retro"),
```typst #fa-twitch()```, fa-twitch(), fa-twitch(solid: true), fa-icon("twitch"),
```typst #fa-twitter()```, fa-twitter(), fa-twitter(solid: true), fa-icon("twitter"),
```typst #fa-typewriter()```, fa-typewriter(), fa-typewriter(solid: true), fa-icon("typewriter"),
```typst #fa-typo3()```, fa-typo3(), fa-typo3(solid: true), fa-icon("typo3"),
```typst #fa-u()```, fa-u(), fa-u(solid: true), fa-icon("u"),
```typst #fa-uber()```, fa-uber(), fa-uber(solid: true), fa-icon("uber"),
```typst #fa-ubuntu()```, fa-ubuntu(), fa-ubuntu(solid: true), fa-icon("ubuntu"),
```typst #fa-ufo()```, fa-ufo(), fa-ufo(solid: true), fa-icon("ufo"),
```typst #fa-ufo-beam()```, fa-ufo-beam(), fa-ufo-beam(solid: true), fa-icon("ufo-beam"),
```typst #fa-uikit()```, fa-uikit(), fa-uikit(solid: true), fa-icon("uikit"),
```typst #fa-umbraco()```, fa-umbraco(), fa-umbraco(solid: true), fa-icon("umbraco"),
```typst #fa-umbrella()```, fa-umbrella(), fa-umbrella(solid: true), fa-icon("umbrella"),
```typst #fa-umbrella-beach()```, fa-umbrella-beach(), fa-umbrella-beach(solid: true), fa-icon("umbrella-beach"),
```typst #fa-umbrella-simple()```, fa-umbrella-simple(), fa-umbrella-simple(solid: true), fa-icon("umbrella-simple"),
```typst #fa-umbrella-alt()```, fa-umbrella-alt(), fa-umbrella-alt(solid: true), fa-icon("umbrella-alt"),
```typst #fa-uncharted()```, fa-uncharted(), fa-uncharted(solid: true), fa-icon("uncharted"),
```typst #fa-underline()```, fa-underline(), fa-underline(solid: true), fa-icon("underline"),
```typst #fa-unicorn()```, fa-unicorn(), fa-unicorn(solid: true), fa-icon("unicorn"),
```typst #fa-uniform-martial-arts()```, fa-uniform-martial-arts(), fa-uniform-martial-arts(solid: true), fa-icon("uniform-martial-arts"),
```typst #fa-union()```, fa-union(), fa-union(solid: true), fa-icon("union"),
```typst #fa-uniregistry()```, fa-uniregistry(), fa-uniregistry(solid: true), fa-icon("uniregistry"),
```typst #fa-unity()```, fa-unity(), fa-unity(solid: true), fa-icon("unity"),
```typst #fa-universal-access()```, fa-universal-access(), fa-universal-access(solid: true), fa-icon("universal-access"),
```typst #fa-unlock()```, fa-unlock(), fa-unlock(solid: true), fa-icon("unlock"),
```typst #fa-unlock-keyhole()```, fa-unlock-keyhole(), fa-unlock-keyhole(solid: true), fa-icon("unlock-keyhole"),
```typst #fa-unlock-alt()```, fa-unlock-alt(), fa-unlock-alt(solid: true), fa-icon("unlock-alt"),
```typst #fa-unsplash()```, fa-unsplash(), fa-unsplash(solid: true), fa-icon("unsplash"),
```typst #fa-untappd()```, fa-untappd(), fa-untappd(solid: true), fa-icon("untappd"),
```typst #fa-up()```, fa-up(), fa-up(solid: true), fa-icon("up"),
```typst #fa-arrow-alt-up()```, fa-arrow-alt-up(), fa-arrow-alt-up(solid: true), fa-icon("arrow-alt-up"),
```typst #fa-up-down()```, fa-up-down(), fa-up-down(solid: true), fa-icon("up-down"),
```typst #fa-arrows-alt-v()```, fa-arrows-alt-v(), fa-arrows-alt-v(solid: true), fa-icon("arrows-alt-v"),
```typst #fa-up-down-left-right()```, fa-up-down-left-right(), fa-up-down-left-right(solid: true), fa-icon("up-down-left-right"),
```typst #fa-arrows-alt()```, fa-arrows-alt(), fa-arrows-alt(solid: true), fa-icon("arrows-alt"),
```typst #fa-up-from-bracket()```, fa-up-from-bracket(), fa-up-from-bracket(solid: true), fa-icon("up-from-bracket"),
```typst #fa-up-from-dotted-line()```, fa-up-from-dotted-line(), fa-up-from-dotted-line(solid: true), fa-icon("up-from-dotted-line"),
```typst #fa-up-from-line()```, fa-up-from-line(), fa-up-from-line(solid: true), fa-icon("up-from-line"),
```typst #fa-arrow-alt-from-bottom()```, fa-arrow-alt-from-bottom(), fa-arrow-alt-from-bottom(solid: true), fa-icon("arrow-alt-from-bottom"),
```typst #fa-up-left()```, fa-up-left(), fa-up-left(solid: true), fa-icon("up-left"),
```typst #fa-upload()```, fa-upload(), fa-upload(solid: true), fa-icon("upload"),
```typst #fa-up-long()```, fa-up-long(), fa-up-long(solid: true), fa-icon("up-long"),
```typst #fa-long-arrow-alt-up()```, fa-long-arrow-alt-up(), fa-long-arrow-alt-up(solid: true), fa-icon("long-arrow-alt-up"),
```typst #fa-up-right()```, fa-up-right(), fa-up-right(solid: true), fa-icon("up-right"),
```typst #fa-up-right-and-down-left-from-center()```, fa-up-right-and-down-left-from-center(), fa-up-right-and-down-left-from-center(solid: true), fa-icon("up-right-and-down-left-from-center"),
```typst #fa-expand-alt()```, fa-expand-alt(), fa-expand-alt(solid: true), fa-icon("expand-alt"),
```typst #fa-up-right-from-square()```, fa-up-right-from-square(), fa-up-right-from-square(solid: true), fa-icon("up-right-from-square"),
```typst #fa-external-link-alt()```, fa-external-link-alt(), fa-external-link-alt(solid: true), fa-icon("external-link-alt"),
```typst #fa-ups()```, fa-ups(), fa-ups(solid: true), fa-icon("ups"),
```typst #fa-up-to-bracket()```, fa-up-to-bracket(), fa-up-to-bracket(solid: true), fa-icon("up-to-bracket"),
```typst #fa-up-to-dotted-line()```, fa-up-to-dotted-line(), fa-up-to-dotted-line(solid: true), fa-icon("up-to-dotted-line"),
```typst #fa-up-to-line()```, fa-up-to-line(), fa-up-to-line(solid: true), fa-icon("up-to-line"),
```typst #fa-arrow-alt-to-top()```, fa-arrow-alt-to-top(), fa-arrow-alt-to-top(solid: true), fa-icon("arrow-alt-to-top"),
```typst #fa-upwork()```, fa-upwork(), fa-upwork(solid: true), fa-icon("upwork"),
```typst #fa-usb()```, fa-usb(), fa-usb(solid: true), fa-icon("usb"),
```typst #fa-usb-drive()```, fa-usb-drive(), fa-usb-drive(solid: true), fa-icon("usb-drive"),
```typst #fa-user()```, fa-user(), fa-user(solid: true), fa-icon("user"),
```typst #fa-user-alien()```, fa-user-alien(), fa-user-alien(solid: true), fa-icon("user-alien"),
```typst #fa-user-astronaut()```, fa-user-astronaut(), fa-user-astronaut(solid: true), fa-icon("user-astronaut"),
```typst #fa-user-beard-bolt()```, fa-user-beard-bolt(), fa-user-beard-bolt(solid: true), fa-icon("user-beard-bolt"),
```typst #fa-user-bounty-hunter()```, fa-user-bounty-hunter(), fa-user-bounty-hunter(solid: true), fa-icon("user-bounty-hunter"),
```typst #fa-user-check()```, fa-user-check(), fa-user-check(solid: true), fa-icon("user-check"),
```typst #fa-user-chef()```, fa-user-chef(), fa-user-chef(solid: true), fa-icon("user-chef"),
```typst #fa-user-clock()```, fa-user-clock(), fa-user-clock(solid: true), fa-icon("user-clock"),
```typst #fa-user-cowboy()```, fa-user-cowboy(), fa-user-cowboy(solid: true), fa-icon("user-cowboy"),
```typst #fa-user-crown()```, fa-user-crown(), fa-user-crown(solid: true), fa-icon("user-crown"),
```typst #fa-user-doctor()```, fa-user-doctor(), fa-user-doctor(solid: true), fa-icon("user-doctor"),
```typst #fa-user-md()```, fa-user-md(), fa-user-md(solid: true), fa-icon("user-md"),
```typst #fa-user-doctor-hair()```, fa-user-doctor-hair(), fa-user-doctor-hair(solid: true), fa-icon("user-doctor-hair"),
```typst #fa-user-doctor-hair-long()```, fa-user-doctor-hair-long(), fa-user-doctor-hair-long(solid: true), fa-icon("user-doctor-hair-long"),
```typst #fa-user-doctor-message()```, fa-user-doctor-message(), fa-user-doctor-message(solid: true), fa-icon("user-doctor-message"),
```typst #fa-user-md-chat()```, fa-user-md-chat(), fa-user-md-chat(solid: true), fa-icon("user-md-chat"),
```typst #fa-user-gear()```, fa-user-gear(), fa-user-gear(solid: true), fa-icon("user-gear"),
```typst #fa-user-cog()```, fa-user-cog(), fa-user-cog(solid: true), fa-icon("user-cog"),
```typst #fa-user-graduate()```, fa-user-graduate(), fa-user-graduate(solid: true), fa-icon("user-graduate"),
```typst #fa-user-group()```, fa-user-group(), fa-user-group(solid: true), fa-icon("user-group"),
```typst #fa-user-friends()```, fa-user-friends(), fa-user-friends(solid: true), fa-icon("user-friends"),
```typst #fa-user-group-crown()```, fa-user-group-crown(), fa-user-group-crown(solid: true), fa-icon("user-group-crown"),
```typst #fa-users-crown()```, fa-users-crown(), fa-users-crown(solid: true), fa-icon("users-crown"),
```typst #fa-user-group-simple()```, fa-user-group-simple(), fa-user-group-simple(solid: true), fa-icon("user-group-simple"),
```typst #fa-user-hair()```, fa-user-hair(), fa-user-hair(solid: true), fa-icon("user-hair"),
```typst #fa-user-hair-buns()```, fa-user-hair-buns(), fa-user-hair-buns(solid: true), fa-icon("user-hair-buns"),
```typst #fa-user-hair-long()```, fa-user-hair-long(), fa-user-hair-long(solid: true), fa-icon("user-hair-long"),
```typst #fa-user-hair-mullet()```, fa-user-hair-mullet(), fa-user-hair-mullet(solid: true), fa-icon("user-hair-mullet"),
```typst #fa-business-front()```, fa-business-front(), fa-business-front(solid: true), fa-icon("business-front"),
```typst #fa-party-back()```, fa-party-back(), fa-party-back(solid: true), fa-icon("party-back"),
```typst #fa-trian-balbot()```, fa-trian-balbot(), fa-trian-balbot(solid: true), fa-icon("trian-balbot"),
```typst #fa-user-headset()```, fa-user-headset(), fa-user-headset(solid: true), fa-icon("user-headset"),
```typst #fa-user-helmet-safety()```, fa-user-helmet-safety(), fa-user-helmet-safety(solid: true), fa-icon("user-helmet-safety"),
```typst #fa-user-construction()```, fa-user-construction(), fa-user-construction(solid: true), fa-icon("user-construction"),
```typst #fa-user-hard-hat()```, fa-user-hard-hat(), fa-user-hard-hat(solid: true), fa-icon("user-hard-hat"),
```typst #fa-user-hoodie()```, fa-user-hoodie(), fa-user-hoodie(solid: true), fa-icon("user-hoodie"),
```typst #fa-user-injured()```, fa-user-injured(), fa-user-injured(solid: true), fa-icon("user-injured"),
```typst #fa-user-large()```, fa-user-large(), fa-user-large(solid: true), fa-icon("user-large"),
```typst #fa-user-alt()```, fa-user-alt(), fa-user-alt(solid: true), fa-icon("user-alt"),
```typst #fa-user-large-slash()```, fa-user-large-slash(), fa-user-large-slash(solid: true), fa-icon("user-large-slash"),
```typst #fa-user-alt-slash()```, fa-user-alt-slash(), fa-user-alt-slash(solid: true), fa-icon("user-alt-slash"),
```typst #fa-user-lock()```, fa-user-lock(), fa-user-lock(solid: true), fa-icon("user-lock"),
```typst #fa-user-magnifying-glass()```, fa-user-magnifying-glass(), fa-user-magnifying-glass(solid: true), fa-icon("user-magnifying-glass"),
```typst #fa-user-minus()```, fa-user-minus(), fa-user-minus(solid: true), fa-icon("user-minus"),
```typst #fa-user-music()```, fa-user-music(), fa-user-music(solid: true), fa-icon("user-music"),
```typst #fa-user-ninja()```, fa-user-ninja(), fa-user-ninja(solid: true), fa-icon("user-ninja"),
```typst #fa-user-nurse()```, fa-user-nurse(), fa-user-nurse(solid: true), fa-icon("user-nurse"),
```typst #fa-user-nurse-hair()```, fa-user-nurse-hair(), fa-user-nurse-hair(solid: true), fa-icon("user-nurse-hair"),
```typst #fa-user-nurse-hair-long()```, fa-user-nurse-hair-long(), fa-user-nurse-hair-long(solid: true), fa-icon("user-nurse-hair-long"),
```typst #fa-user-pen()```, fa-user-pen(), fa-user-pen(solid: true), fa-icon("user-pen"),
```typst #fa-user-edit()```, fa-user-edit(), fa-user-edit(solid: true), fa-icon("user-edit"),
```typst #fa-user-pilot()```, fa-user-pilot(), fa-user-pilot(solid: true), fa-icon("user-pilot"),
```typst #fa-user-pilot-tie()```, fa-user-pilot-tie(), fa-user-pilot-tie(solid: true), fa-icon("user-pilot-tie"),
```typst #fa-user-plus()```, fa-user-plus(), fa-user-plus(solid: true), fa-icon("user-plus"),
```typst #fa-user-police()```, fa-user-police(), fa-user-police(solid: true), fa-icon("user-police"),
```typst #fa-user-police-tie()```, fa-user-police-tie(), fa-user-police-tie(solid: true), fa-icon("user-police-tie"),
```typst #fa-user-robot()```, fa-user-robot(), fa-user-robot(solid: true), fa-icon("user-robot"),
```typst #fa-user-robot-xmarks()```, fa-user-robot-xmarks(), fa-user-robot-xmarks(solid: true), fa-icon("user-robot-xmarks"),
```typst #fa-users()```, fa-users(), fa-users(solid: true), fa-icon("users"),
```typst #fa-users-between-lines()```, fa-users-between-lines(), fa-users-between-lines(solid: true), fa-icon("users-between-lines"),
```typst #fa-user-secret()```, fa-user-secret(), fa-user-secret(solid: true), fa-icon("user-secret"),
```typst #fa-users-gear()```, fa-users-gear(), fa-users-gear(solid: true), fa-icon("users-gear"),
```typst #fa-users-cog()```, fa-users-cog(), fa-users-cog(solid: true), fa-icon("users-cog"),
```typst #fa-user-shakespeare()```, fa-user-shakespeare(), fa-user-shakespeare(solid: true), fa-icon("user-shakespeare"),
```typst #fa-user-shield()```, fa-user-shield(), fa-user-shield(solid: true), fa-icon("user-shield"),
```typst #fa-user-slash()```, fa-user-slash(), fa-user-slash(solid: true), fa-icon("user-slash"),
```typst #fa-users-line()```, fa-users-line(), fa-users-line(solid: true), fa-icon("users-line"),
```typst #fa-users-medical()```, fa-users-medical(), fa-users-medical(solid: true), fa-icon("users-medical"),
```typst #fa-users-rays()```, fa-users-rays(), fa-users-rays(solid: true), fa-icon("users-rays"),
```typst #fa-users-rectangle()```, fa-users-rectangle(), fa-users-rectangle(solid: true), fa-icon("users-rectangle"),
```typst #fa-users-slash()```, fa-users-slash(), fa-users-slash(solid: true), fa-icon("users-slash"),
```typst #fa-users-viewfinder()```, fa-users-viewfinder(), fa-users-viewfinder(solid: true), fa-icon("users-viewfinder"),
```typst #fa-user-tag()```, fa-user-tag(), fa-user-tag(solid: true), fa-icon("user-tag"),
```typst #fa-user-tie()```, fa-user-tie(), fa-user-tie(solid: true), fa-icon("user-tie"),
```typst #fa-user-tie-hair()```, fa-user-tie-hair(), fa-user-tie-hair(solid: true), fa-icon("user-tie-hair"),
```typst #fa-user-tie-hair-long()```, fa-user-tie-hair-long(), fa-user-tie-hair-long(solid: true), fa-icon("user-tie-hair-long"),
```typst #fa-user-unlock()```, fa-user-unlock(), fa-user-unlock(solid: true), fa-icon("user-unlock"),
```typst #fa-user-visor()```, fa-user-visor(), fa-user-visor(solid: true), fa-icon("user-visor"),
```typst #fa-user-vneck()```, fa-user-vneck(), fa-user-vneck(solid: true), fa-icon("user-vneck"),
```typst #fa-user-vneck-hair()```, fa-user-vneck-hair(), fa-user-vneck-hair(solid: true), fa-icon("user-vneck-hair"),
```typst #fa-user-vneck-hair-long()```, fa-user-vneck-hair-long(), fa-user-vneck-hair-long(solid: true), fa-icon("user-vneck-hair-long"),
```typst #fa-user-xmark()```, fa-user-xmark(), fa-user-xmark(solid: true), fa-icon("user-xmark"),
```typst #fa-user-times()```, fa-user-times(), fa-user-times(solid: true), fa-icon("user-times"),
```typst #fa-usps()```, fa-usps(), fa-usps(solid: true), fa-icon("usps"),
```typst #fa-ussunnah()```, fa-ussunnah(), fa-ussunnah(solid: true), fa-icon("ussunnah"),
```typst #fa-utensils()```, fa-utensils(), fa-utensils(solid: true), fa-icon("utensils"),
```typst #fa-cutlery()```, fa-cutlery(), fa-cutlery(solid: true), fa-icon("cutlery"),
```typst #fa-utensils-slash()```, fa-utensils-slash(), fa-utensils-slash(solid: true), fa-icon("utensils-slash"),
```typst #fa-utility-pole()```, fa-utility-pole(), fa-utility-pole(solid: true), fa-icon("utility-pole"),
```typst #fa-utility-pole-double()```, fa-utility-pole-double(), fa-utility-pole-double(solid: true), fa-icon("utility-pole-double"),
```typst #fa-v()```, fa-v(), fa-v(solid: true), fa-icon("v"),
```typst #fa-vaadin()```, fa-vaadin(), fa-vaadin(solid: true), fa-icon("vaadin"),
```typst #fa-vacuum()```, fa-vacuum(), fa-vacuum(solid: true), fa-icon("vacuum"),
```typst #fa-vacuum-robot()```, fa-vacuum-robot(), fa-vacuum-robot(solid: true), fa-icon("vacuum-robot"),
```typst #fa-value-absolute()```, fa-value-absolute(), fa-value-absolute(solid: true), fa-icon("value-absolute"),
```typst #fa-van-shuttle()```, fa-van-shuttle(), fa-van-shuttle(solid: true), fa-icon("van-shuttle"),
```typst #fa-shuttle-van()```, fa-shuttle-van(), fa-shuttle-van(solid: true), fa-icon("shuttle-van"),
```typst #fa-vault()```, fa-vault(), fa-vault(solid: true), fa-icon("vault"),
```typst #fa-vector-circle()```, fa-vector-circle(), fa-vector-circle(solid: true), fa-icon("vector-circle"),
```typst #fa-vector-polygon()```, fa-vector-polygon(), fa-vector-polygon(solid: true), fa-icon("vector-polygon"),
```typst #fa-vector-square()```, fa-vector-square(), fa-vector-square(solid: true), fa-icon("vector-square"),
```typst #fa-vent-damper()```, fa-vent-damper(), fa-vent-damper(solid: true), fa-icon("vent-damper"),
```typst #fa-venus()```, fa-venus(), fa-venus(solid: true), fa-icon("venus"),
```typst #fa-venus-double()```, fa-venus-double(), fa-venus-double(solid: true), fa-icon("venus-double"),
```typst #fa-venus-mars()```, fa-venus-mars(), fa-venus-mars(solid: true), fa-icon("venus-mars"),
```typst #fa-vest()```, fa-vest(), fa-vest(solid: true), fa-icon("vest"),
```typst #fa-vest-patches()```, fa-vest-patches(), fa-vest-patches(solid: true), fa-icon("vest-patches"),
```typst #fa-viacoin()```, fa-viacoin(), fa-viacoin(solid: true), fa-icon("viacoin"),
```typst #fa-viadeo()```, fa-viadeo(), fa-viadeo(solid: true), fa-icon("viadeo"),
```typst #fa-vial()```, fa-vial(), fa-vial(solid: true), fa-icon("vial"),
```typst #fa-vial-circle-check()```, fa-vial-circle-check(), fa-vial-circle-check(solid: true), fa-icon("vial-circle-check"),
```typst #fa-vials()```, fa-vials(), fa-vials(solid: true), fa-icon("vials"),
```typst #fa-vial-virus()```, fa-vial-virus(), fa-vial-virus(solid: true), fa-icon("vial-virus"),
```typst #fa-viber()```, fa-viber(), fa-viber(solid: true), fa-icon("viber"),
```typst #fa-video()```, fa-video(), fa-video(solid: true), fa-icon("video"),
```typst #fa-video-camera()```, fa-video-camera(), fa-video-camera(solid: true), fa-icon("video-camera"),
```typst #fa-video-arrow-down-left()```, fa-video-arrow-down-left(), fa-video-arrow-down-left(solid: true), fa-icon("video-arrow-down-left"),
```typst #fa-video-arrow-up-right()```, fa-video-arrow-up-right(), fa-video-arrow-up-right(solid: true), fa-icon("video-arrow-up-right"),
```typst #fa-video-plus()```, fa-video-plus(), fa-video-plus(solid: true), fa-icon("video-plus"),
```typst #fa-video-slash()```, fa-video-slash(), fa-video-slash(solid: true), fa-icon("video-slash"),
```typst #fa-vihara()```, fa-vihara(), fa-vihara(solid: true), fa-icon("vihara"),
```typst #fa-vimeo()```, fa-vimeo(), fa-vimeo(solid: true), fa-icon("vimeo"),
```typst #fa-vimeo-v()```, fa-vimeo-v(), fa-vimeo-v(solid: true), fa-icon("vimeo-v"),
```typst #fa-vine()```, fa-vine(), fa-vine(solid: true), fa-icon("vine"),
```typst #fa-violin()```, fa-violin(), fa-violin(solid: true), fa-icon("violin"),
```typst #fa-virus()```, fa-virus(), fa-virus(solid: true), fa-icon("virus"),
```typst #fa-virus-covid()```, fa-virus-covid(), fa-virus-covid(solid: true), fa-icon("virus-covid"),
```typst #fa-virus-covid-slash()```, fa-virus-covid-slash(), fa-virus-covid-slash(solid: true), fa-icon("virus-covid-slash"),
```typst #fa-viruses()```, fa-viruses(), fa-viruses(solid: true), fa-icon("viruses"),
```typst #fa-virus-slash()```, fa-virus-slash(), fa-virus-slash(solid: true), fa-icon("virus-slash"),
```typst #fa-vk()```, fa-vk(), fa-vk(solid: true), fa-icon("vk"),
```typst #fa-vnv()```, fa-vnv(), fa-vnv(solid: true), fa-icon("vnv"),
```typst #fa-voicemail()```, fa-voicemail(), fa-voicemail(solid: true), fa-icon("voicemail"),
```typst #fa-volcano()```, fa-volcano(), fa-volcano(solid: true), fa-icon("volcano"),
```typst #fa-volleyball()```, fa-volleyball(), fa-volleyball(solid: true), fa-icon("volleyball"),
```typst #fa-volleyball-ball()```, fa-volleyball-ball(), fa-volleyball-ball(solid: true), fa-icon("volleyball-ball"),
```typst #fa-volume()```, fa-volume(), fa-volume(solid: true), fa-icon("volume"),
```typst #fa-volume-medium()```, fa-volume-medium(), fa-volume-medium(solid: true), fa-icon("volume-medium"),
```typst #fa-volume-high()```, fa-volume-high(), fa-volume-high(solid: true), fa-icon("volume-high"),
```typst #fa-volume-up()```, fa-volume-up(), fa-volume-up(solid: true), fa-icon("volume-up"),
```typst #fa-volume-low()```, fa-volume-low(), fa-volume-low(solid: true), fa-icon("volume-low"),
```typst #fa-volume-down()```, fa-volume-down(), fa-volume-down(solid: true), fa-icon("volume-down"),
```typst #fa-volume-off()```, fa-volume-off(), fa-volume-off(solid: true), fa-icon("volume-off"),
```typst #fa-volume-slash()```, fa-volume-slash(), fa-volume-slash(solid: true), fa-icon("volume-slash"),
```typst #fa-volume-xmark()```, fa-volume-xmark(), fa-volume-xmark(solid: true), fa-icon("volume-xmark"),
```typst #fa-volume-mute()```, fa-volume-mute(), fa-volume-mute(solid: true), fa-icon("volume-mute"),
```typst #fa-volume-times()```, fa-volume-times(), fa-volume-times(solid: true), fa-icon("volume-times"),
```typst #fa-vr-cardboard()```, fa-vr-cardboard(), fa-vr-cardboard(solid: true), fa-icon("vr-cardboard"),
```typst #fa-vuejs()```, fa-vuejs(), fa-vuejs(solid: true), fa-icon("vuejs"),
```typst #fa-w()```, fa-w(), fa-w(solid: true), fa-icon("w"),
```typst #fa-waffle()```, fa-waffle(), fa-waffle(solid: true), fa-icon("waffle"),
```typst #fa-wagon-covered()```, fa-wagon-covered(), fa-wagon-covered(solid: true), fa-icon("wagon-covered"),
```typst #fa-walker()```, fa-walker(), fa-walker(solid: true), fa-icon("walker"),
```typst #fa-walkie-talkie()```, fa-walkie-talkie(), fa-walkie-talkie(solid: true), fa-icon("walkie-talkie"),
```typst #fa-wallet()```, fa-wallet(), fa-wallet(solid: true), fa-icon("wallet"),
```typst #fa-wand()```, fa-wand(), fa-wand(solid: true), fa-icon("wand"),
```typst #fa-wand-magic()```, fa-wand-magic(), fa-wand-magic(solid: true), fa-icon("wand-magic"),
```typst #fa-magic()```, fa-magic(), fa-magic(solid: true), fa-icon("magic"),
```typst #fa-wand-magic-sparkles()```, fa-wand-magic-sparkles(), fa-wand-magic-sparkles(solid: true), fa-icon("wand-magic-sparkles"),
```typst #fa-magic-wand-sparkles()```, fa-magic-wand-sparkles(), fa-magic-wand-sparkles(solid: true), fa-icon("magic-wand-sparkles"),
```typst #fa-wand-sparkles()```, fa-wand-sparkles(), fa-wand-sparkles(solid: true), fa-icon("wand-sparkles"),
```typst #fa-warehouse()```, fa-warehouse(), fa-warehouse(solid: true), fa-icon("warehouse"),
```typst #fa-warehouse-full()```, fa-warehouse-full(), fa-warehouse-full(solid: true), fa-icon("warehouse-full"),
```typst #fa-warehouse-alt()```, fa-warehouse-alt(), fa-warehouse-alt(solid: true), fa-icon("warehouse-alt"),
```typst #fa-washing-machine()```, fa-washing-machine(), fa-washing-machine(solid: true), fa-icon("washing-machine"),
```typst #fa-washer()```, fa-washer(), fa-washer(solid: true), fa-icon("washer"),
```typst #fa-watch()```, fa-watch(), fa-watch(solid: true), fa-icon("watch"),
```typst #fa-watch-apple()```, fa-watch-apple(), fa-watch-apple(solid: true), fa-icon("watch-apple"),
```typst #fa-watch-calculator()```, fa-watch-calculator(), fa-watch-calculator(solid: true), fa-icon("watch-calculator"),
```typst #fa-watch-fitness()```, fa-watch-fitness(), fa-watch-fitness(solid: true), fa-icon("watch-fitness"),
```typst #fa-watchman-monitoring()```, fa-watchman-monitoring(), fa-watchman-monitoring(solid: true), fa-icon("watchman-monitoring"),
```typst #fa-watch-smart()```, fa-watch-smart(), fa-watch-smart(solid: true), fa-icon("watch-smart"),
```typst #fa-water()```, fa-water(), fa-water(solid: true), fa-icon("water"),
```typst #fa-water-arrow-down()```, fa-water-arrow-down(), fa-water-arrow-down(solid: true), fa-icon("water-arrow-down"),
```typst #fa-water-lower()```, fa-water-lower(), fa-water-lower(solid: true), fa-icon("water-lower"),
```typst #fa-water-arrow-up()```, fa-water-arrow-up(), fa-water-arrow-up(solid: true), fa-icon("water-arrow-up"),
```typst #fa-water-rise()```, fa-water-rise(), fa-water-rise(solid: true), fa-icon("water-rise"),
```typst #fa-water-ladder()```, fa-water-ladder(), fa-water-ladder(solid: true), fa-icon("water-ladder"),
```typst #fa-ladder-water()```, fa-ladder-water(), fa-ladder-water(solid: true), fa-icon("ladder-water"),
```typst #fa-swimming-pool()```, fa-swimming-pool(), fa-swimming-pool(solid: true), fa-icon("swimming-pool"),
```typst #fa-watermelon-slice()```, fa-watermelon-slice(), fa-watermelon-slice(solid: true), fa-icon("watermelon-slice"),
```typst #fa-wave()```, fa-wave(), fa-wave(solid: true), fa-icon("wave"),
```typst #fa-waveform()```, fa-waveform(), fa-waveform(solid: true), fa-icon("waveform"),
```typst #fa-waveform-lines()```, fa-waveform-lines(), fa-waveform-lines(solid: true), fa-icon("waveform-lines"),
```typst #fa-waveform-path()```, fa-waveform-path(), fa-waveform-path(solid: true), fa-icon("waveform-path"),
```typst #fa-wave-pulse()```, fa-wave-pulse(), fa-wave-pulse(solid: true), fa-icon("wave-pulse"),
```typst #fa-heart-rate()```, fa-heart-rate(), fa-heart-rate(solid: true), fa-icon("heart-rate"),
```typst #fa-wave-sine()```, fa-wave-sine(), fa-wave-sine(solid: true), fa-icon("wave-sine"),
```typst #fa-wave-square()```, fa-wave-square(), fa-wave-square(solid: true), fa-icon("wave-square"),
```typst #fa-waves-sine()```, fa-waves-sine(), fa-waves-sine(solid: true), fa-icon("waves-sine"),
```typst #fa-wave-triangle()```, fa-wave-triangle(), fa-wave-triangle(solid: true), fa-icon("wave-triangle"),
```typst #fa-waze()```, fa-waze(), fa-waze(solid: true), fa-icon("waze"),
```typst #fa-web-awesome()```, fa-web-awesome(), fa-web-awesome(solid: true), fa-icon("web-awesome"),
```typst #fa-webflow()```, fa-webflow(), fa-webflow(solid: true), fa-icon("webflow"),
```typst #fa-webhook()```, fa-webhook(), fa-webhook(solid: true), fa-icon("webhook"),
```typst #fa-weebly()```, fa-weebly(), fa-weebly(solid: true), fa-icon("weebly"),
```typst #fa-weibo()```, fa-weibo(), fa-weibo(solid: true), fa-icon("weibo"),
```typst #fa-weight-hanging()```, fa-weight-hanging(), fa-weight-hanging(solid: true), fa-icon("weight-hanging"),
```typst #fa-weight-scale()```, fa-weight-scale(), fa-weight-scale(solid: true), fa-icon("weight-scale"),
```typst #fa-weight()```, fa-weight(), fa-weight(solid: true), fa-icon("weight"),
```typst #fa-weixin()```, fa-weixin(), fa-weixin(solid: true), fa-icon("weixin"),
```typst #fa-whale()```, fa-whale(), fa-whale(solid: true), fa-icon("whale"),
```typst #fa-whatsapp()```, fa-whatsapp(), fa-whatsapp(solid: true), fa-icon("whatsapp"),
```typst #fa-wheat()```, fa-wheat(), fa-wheat(solid: true), fa-icon("wheat"),
```typst #fa-wheat-awn()```, fa-wheat-awn(), fa-wheat-awn(solid: true), fa-icon("wheat-awn"),
```typst #fa-wheat-alt()```, fa-wheat-alt(), fa-wheat-alt(solid: true), fa-icon("wheat-alt"),
```typst #fa-wheat-awn-circle-exclamation()```, fa-wheat-awn-circle-exclamation(), fa-wheat-awn-circle-exclamation(solid: true), fa-icon("wheat-awn-circle-exclamation"),
```typst #fa-wheat-awn-slash()```, fa-wheat-awn-slash(), fa-wheat-awn-slash(solid: true), fa-icon("wheat-awn-slash"),
```typst #fa-wheat-slash()```, fa-wheat-slash(), fa-wheat-slash(solid: true), fa-icon("wheat-slash"),
```typst #fa-wheelchair()```, fa-wheelchair(), fa-wheelchair(solid: true), fa-icon("wheelchair"),
```typst #fa-wheelchair-move()```, fa-wheelchair-move(), fa-wheelchair-move(solid: true), fa-icon("wheelchair-move"),
```typst #fa-wheelchair-alt()```, fa-wheelchair-alt(), fa-wheelchair-alt(solid: true), fa-icon("wheelchair-alt"),
```typst #fa-whiskey-glass()```, fa-whiskey-glass(), fa-whiskey-glass(solid: true), fa-icon("whiskey-glass"),
```typst #fa-glass-whiskey()```, fa-glass-whiskey(), fa-glass-whiskey(solid: true), fa-icon("glass-whiskey"),
```typst #fa-whiskey-glass-ice()```, fa-whiskey-glass-ice(), fa-whiskey-glass-ice(solid: true), fa-icon("whiskey-glass-ice"),
```typst #fa-glass-whiskey-rocks()```, fa-glass-whiskey-rocks(), fa-glass-whiskey-rocks(solid: true), fa-icon("glass-whiskey-rocks"),
```typst #fa-whistle()```, fa-whistle(), fa-whistle(solid: true), fa-icon("whistle"),
```typst #fa-whmcs()```, fa-whmcs(), fa-whmcs(solid: true), fa-icon("whmcs"),
```typst #fa-wifi()```, fa-wifi(), fa-wifi(solid: true), fa-icon("wifi"),
```typst #fa-wifi-3()```, fa-wifi-3(), fa-wifi-3(solid: true), fa-icon("wifi-3"),
```typst #fa-wifi-strong()```, fa-wifi-strong(), fa-wifi-strong(solid: true), fa-icon("wifi-strong"),
```typst #fa-wifi-exclamation()```, fa-wifi-exclamation(), fa-wifi-exclamation(solid: true), fa-icon("wifi-exclamation"),
```typst #fa-wifi-fair()```, fa-wifi-fair(), fa-wifi-fair(solid: true), fa-icon("wifi-fair"),
```typst #fa-wifi-2()```, fa-wifi-2(), fa-wifi-2(solid: true), fa-icon("wifi-2"),
```typst #fa-wifi-slash()```, fa-wifi-slash(), fa-wifi-slash(solid: true), fa-icon("wifi-slash"),
```typst #fa-wifi-weak()```, fa-wifi-weak(), fa-wifi-weak(solid: true), fa-icon("wifi-weak"),
```typst #fa-wifi-1()```, fa-wifi-1(), fa-wifi-1(solid: true), fa-icon("wifi-1"),
```typst #fa-wikipedia-w()```, fa-wikipedia-w(), fa-wikipedia-w(solid: true), fa-icon("wikipedia-w"),
```typst #fa-wind()```, fa-wind(), fa-wind(solid: true), fa-icon("wind"),
```typst #fa-window()```, fa-window(), fa-window(solid: true), fa-icon("window"),
```typst #fa-window-flip()```, fa-window-flip(), fa-window-flip(solid: true), fa-icon("window-flip"),
```typst #fa-window-alt()```, fa-window-alt(), fa-window-alt(solid: true), fa-icon("window-alt"),
```typst #fa-window-frame()```, fa-window-frame(), fa-window-frame(solid: true), fa-icon("window-frame"),
```typst #fa-window-frame-open()```, fa-window-frame-open(), fa-window-frame-open(solid: true), fa-icon("window-frame-open"),
```typst #fa-window-maximize()```, fa-window-maximize(), fa-window-maximize(solid: true), fa-icon("window-maximize"),
```typst #fa-window-minimize()```, fa-window-minimize(), fa-window-minimize(solid: true), fa-icon("window-minimize"),
```typst #fa-window-restore()```, fa-window-restore(), fa-window-restore(solid: true), fa-icon("window-restore"),
```typst #fa-windows()```, fa-windows(), fa-windows(solid: true), fa-icon("windows"),
```typst #fa-windsock()```, fa-windsock(), fa-windsock(solid: true), fa-icon("windsock"),
```typst #fa-wind-turbine()```, fa-wind-turbine(), fa-wind-turbine(solid: true), fa-icon("wind-turbine"),
```typst #fa-wind-warning()```, fa-wind-warning(), fa-wind-warning(solid: true), fa-icon("wind-warning"),
```typst #fa-wind-circle-exclamation()```, fa-wind-circle-exclamation(), fa-wind-circle-exclamation(solid: true), fa-icon("wind-circle-exclamation"),
```typst #fa-wine-bottle()```, fa-wine-bottle(), fa-wine-bottle(solid: true), fa-icon("wine-bottle"),
```typst #fa-wine-glass()```, fa-wine-glass(), fa-wine-glass(solid: true), fa-icon("wine-glass"),
```typst #fa-wine-glass-crack()```, fa-wine-glass-crack(), fa-wine-glass-crack(solid: true), fa-icon("wine-glass-crack"),
```typst #fa-fragile()```, fa-fragile(), fa-fragile(solid: true), fa-icon("fragile"),
```typst #fa-wine-glass-empty()```, fa-wine-glass-empty(), fa-wine-glass-empty(solid: true), fa-icon("wine-glass-empty"),
```typst #fa-wine-glass-alt()```, fa-wine-glass-alt(), fa-wine-glass-alt(solid: true), fa-icon("wine-glass-alt"),
```typst #fa-wirsindhandwerk()```, fa-wirsindhandwerk(), fa-wirsindhandwerk(solid: true), fa-icon("wirsindhandwerk"),
```typst #fa-wsh()```, fa-wsh(), fa-wsh(solid: true), fa-icon("wsh"),
```typst #fa-wix()```, fa-wix(), fa-wix(solid: true), fa-icon("wix"),
```typst #fa-wizards-of-the-coast()```, fa-wizards-of-the-coast(), fa-wizards-of-the-coast(solid: true), fa-icon("wizards-of-the-coast"),
```typst #fa-wodu()```, fa-wodu(), fa-wodu(solid: true), fa-icon("wodu"),
```typst #fa-wolf-pack-battalion()```, fa-wolf-pack-battalion(), fa-wolf-pack-battalion(solid: true), fa-icon("wolf-pack-battalion"),
```typst #fa-won-sign()```, fa-won-sign(), fa-won-sign(solid: true), fa-icon("won-sign"),
```typst #fa-krw()```, fa-krw(), fa-krw(solid: true), fa-icon("krw"),
```typst #fa-won()```, fa-won(), fa-won(solid: true), fa-icon("won"),
```typst #fa-wordpress()```, fa-wordpress(), fa-wordpress(solid: true), fa-icon("wordpress"),
```typst #fa-wordpress-simple()```, fa-wordpress-simple(), fa-wordpress-simple(solid: true), fa-icon("wordpress-simple"),
```typst #fa-worm()```, fa-worm(), fa-worm(solid: true), fa-icon("worm"),
```typst #fa-wpbeginner()```, fa-wpbeginner(), fa-wpbeginner(solid: true), fa-icon("wpbeginner"),
```typst #fa-wpexplorer()```, fa-wpexplorer(), fa-wpexplorer(solid: true), fa-icon("wpexplorer"),
```typst #fa-wpforms()```, fa-wpforms(), fa-wpforms(solid: true), fa-icon("wpforms"),
```typst #fa-wpressr()```, fa-wpressr(), fa-wpressr(solid: true), fa-icon("wpressr"),
```typst #fa-rendact()```, fa-rendact(), fa-rendact(solid: true), fa-icon("rendact"),
```typst #fa-wreath()```, fa-wreath(), fa-wreath(solid: true), fa-icon("wreath"),
```typst #fa-wreath-laurel()```, fa-wreath-laurel(), fa-wreath-laurel(solid: true), fa-icon("wreath-laurel"),
```typst #fa-wrench()```, fa-wrench(), fa-wrench(solid: true), fa-icon("wrench"),
```typst #fa-wrench-simple()```, fa-wrench-simple(), fa-wrench-simple(solid: true), fa-icon("wrench-simple"),
```typst #fa-x()```, fa-x(), fa-x(solid: true), fa-icon("x"),
```typst #fa-xbox()```, fa-xbox(), fa-xbox(solid: true), fa-icon("xbox"),
```typst #fa-xing()```, fa-xing(), fa-xing(solid: true), fa-icon("xing"),
```typst #fa-xmark()```, fa-xmark(), fa-xmark(solid: true), fa-icon("xmark"),
```typst #fa-close()```, fa-close(), fa-close(solid: true), fa-icon("close"),
```typst #fa-multiply()```, fa-multiply(), fa-multiply(solid: true), fa-icon("multiply"),
```typst #fa-remove()```, fa-remove(), fa-remove(solid: true), fa-icon("remove"),
```typst #fa-times()```, fa-times(), fa-times(solid: true), fa-icon("times"),
```typst #fa-xmark-large()```, fa-xmark-large(), fa-xmark-large(solid: true), fa-icon("xmark-large"),
```typst #fa-xmarks-lines()```, fa-xmarks-lines(), fa-xmarks-lines(solid: true), fa-icon("xmarks-lines"),
```typst #fa-xmark-to-slot()```, fa-xmark-to-slot(), fa-xmark-to-slot(solid: true), fa-icon("xmark-to-slot"),
```typst #fa-times-to-slot()```, fa-times-to-slot(), fa-times-to-slot(solid: true), fa-icon("times-to-slot"),
```typst #fa-vote-nay()```, fa-vote-nay(), fa-vote-nay(solid: true), fa-icon("vote-nay"),
```typst #fa-x-ray()```, fa-x-ray(), fa-x-ray(solid: true), fa-icon("x-ray"),
```typst #fa-x-twitter()```, fa-x-twitter(), fa-x-twitter(solid: true), fa-icon("x-twitter"),
```typst #fa-y()```, fa-y(), fa-y(solid: true), fa-icon("y"),
```typst #fa-yahoo()```, fa-yahoo(), fa-yahoo(solid: true), fa-icon("yahoo"),
```typst #fa-yammer()```, fa-yammer(), fa-yammer(solid: true), fa-icon("yammer"),
```typst #fa-yandex()```, fa-yandex(), fa-yandex(solid: true), fa-icon("yandex"),
```typst #fa-yandex-international()```, fa-yandex-international(), fa-yandex-international(solid: true), fa-icon("yandex-international"),
```typst #fa-yarn()```, fa-yarn(), fa-yarn(solid: true), fa-icon("yarn"),
```typst #fa-y-combinator()```, fa-y-combinator(), fa-y-combinator(solid: true), fa-icon("y-combinator"),
```typst #fa-yelp()```, fa-yelp(), fa-yelp(solid: true), fa-icon("yelp"),
```typst #fa-yen-sign()```, fa-yen-sign(), fa-yen-sign(solid: true), fa-icon("yen-sign"),
```typst #fa-cny()```, fa-cny(), fa-cny(solid: true), fa-icon("cny"),
```typst #fa-jpy()```, fa-jpy(), fa-jpy(solid: true), fa-icon("jpy"),
```typst #fa-rmb()```, fa-rmb(), fa-rmb(solid: true), fa-icon("rmb"),
```typst #fa-yen()```, fa-yen(), fa-yen(solid: true), fa-icon("yen"),
```typst #fa-yin-yang()```, fa-yin-yang(), fa-yin-yang(solid: true), fa-icon("yin-yang"),
```typst #fa-yoast()```, fa-yoast(), fa-yoast(solid: true), fa-icon("yoast"),
```typst #fa-youtube()```, fa-youtube(), fa-youtube(solid: true), fa-icon("youtube"),
```typst #fa-z()```, fa-z(), fa-z(solid: true), fa-icon("z"),
```typst #fa-zhihu()```, fa-zhihu(), fa-zhihu(solid: true), fa-icon("zhihu"),
) |
https://github.com/Lslightly/TypstTemplates | https://raw.githubusercontent.com/Lslightly/TypstTemplates/main/templates/font.typ | typst | MIT License | #let 字体 = (
宋体: ("Times New Roman", "SimSun"),
黑体: ("Times New Roman", "SimHei"),
楷体: ("Times New Roman", "STKaiti"),
代码: ("New Computer Modern Mono", "Times New Roman", "SimSun"),
)
|
https://github.com/CodingThrust/QECNotes | https://raw.githubusercontent.com/CodingThrust/QECNotes/main/nzy20241021/nzy20241020.typ | typst | #import "@preview/cetz:0.2.2": canvas, draw, tree
#import "@preview/suiji:0.3.0": *
#show link: set text(blue)
#set math.equation(numbering: "(1)")
#let today = datetime.today()
// The ASM template also provides a theorem function.
#let definition(title, body, numbered: true) = figure(
body,
kind: "theorem",
supplement: [Definition (#title)],
numbering: if numbered { "1" },
)
#align(center, text(20pt)[Weekly Quantum Error Correction Research Highlights])
#align(center)[#today.display(), Zhongyi Ni] // use the default format: year-month-day
= Non-Clifford and parallelizable fault-tolerant logical gates on constant and almost-constant rate homological quantum LDPC codes via higher symmetries @Zhu_Sikander_Portnoy_Cross_Brown_2023
*Abstract*: We study parallel fault-tolerant quantum computing for families of homological quantum low-density parity-check (LDPC) codes defined on 3-manifolds with constant or almost-constant encoding rate. We derive generic formula for a transversal T gate of color codes on general 3-manifolds, which acts as collective non-Clifford logical CCZ gates on any triplet of logical qubits with their logical-X membranes having a ℤ2 triple intersection at a single point. The triple intersection number is a topological invariant, which also arises in the path integral of the emergent higher symmetry operator in a topological quantum field theory: the ℤ32 gauge theory. Moreover, the transversal S gate of the color code corresponds to a higher-form symmetry supported on a codimension-1 submanifold, giving rise to exponentially many addressable and parallelizable logical CZ gates. We have developed a generic formalism to compute the triple intersection invariants for 3-manifolds and also study the scaling of the Betti number and systoles with volume for various 3-manifolds, which translates to the encoding rate and distance. We further develop three types of LDPC codes supporting such logical gates: (1) A quasi-hyperbolic code from the product of 2D hyperbolic surface and a circle, with almost-constant rate k/n=O(1/log(n)) and O(log(n)) distance; (2) A homological fibre bundle code with O(1/log12(n)) rate and O(log12(n)) distance; (3) A specific family of 3D hyperbolic codes: the Torelli mapping torus code, constructed from mapping tori of a pseudo-Anosov element in the Torelli subgroup, which has constant rate while the distance scaling is currently unknown. We then show a generic constant-overhead scheme for applying a parallelizable universal gate set with the aid of logical-X measurements.
*Highlights*
This paper studies the method of implementing fault-tolerant quantum computation on constant or near-constant rate homological quantum low-density parity-check (LDPC) codes. The authors propose a universal formula that can implement non-Clifford collective logical CCZ gates on color codes of arbitrary 3D manifolds.
The authors also propose three LDPC codes that support such logical gates:
- A quasi-hyperbolic code, derived from the product of a 2D hyperbolic surface and a circle, $[[n,Theta(n/log(n)),Theta(log(n))]]$
- A homological fiber bundle code, with $[[n,Theta(n/sqrt(log(n))),Theta(sqrt(log(n)))]]$
- A special 3D hyperbolic code: the Torelli mapping rotation code, constructed from pseudo-Anosov elements in the Torelli subgroup, with a constant encoding rate, but the scaling of the distance is still unclear.
Finally, the authors propose a universal constant-overhead scheme using logical X measurements to implement a universal gate set in parallel.
= Lowering Connectivity Requirements For Bivariate Bicycle Codes Using Morphing Circuits @Shaw_Terhal_2024
*Abstract*: In Ref. @Bravyi_Cross_Gambetta_Maslov_Rall_Yoder_2024, Bravyi et al. found examples of Bivariate Bicycle (BB) codes with similar logical performance to the surface code but with an improved encoding rate. In this work, we generalize a novel parity-check circuit design principle called morphing circuits and apply it to BB codes. We define a new family of BB codes whose parity check circuits require a qubit connectivity of degree five instead of six while maintaining their numerical performance. Logical input/output to an ancillary surface code is also possible in a biplanar layout. Finally, we develop a general framework for designing morphing circuits and present a sufficient condition for its applicability to two-block group algebra codes.
Talk on bb code: https://www.youtube.com/watch?v=ZbeeoJrGXPE
*Highlights*
The key contribution is the development of "morphing circuits" that can reduce the qubit connectivity requirements for implementing BB codes from six to five qubits per qubit, while maintaining the same numerical performance.
= Complexity and order in approximate quantum error-correcting codes @Yi_Ye_Gottesman_Liu_2024
*Abstract*:
Some form of quantum error correction is necessary to produce large-scale fault-tolerant quantum computers and finds broad relevance in physics. Most studies customarily assume exact correction. However, codes that may only enable approximate quantum error correction (AQEC) could be useful and intrinsically important in many practical and physical contexts. Here we establish rigorous connections between quantum circuit complexity and AQEC capability. Our analysis covers systems with both all-to-all connectivity and geometric scenarios like lattice systems. To this end, we introduce a type of code parameter that we call subsystem variance, which is closely related to the optimal AQEC precision. For a code encoding k logical qubits in n physical qubits, we find that if the subsystem variance is below an O(k/n) threshold, then any state in the code subspace must obey certain circuit complexity lower bounds, which identify non-trivial phases of codes. This theory of AQEC provides a versatile framework for understanding quantum complexity and order in many-body quantum systems, generating new insights for wide-ranging important physical scenarios such as topological order and critical quantum systems. Our results suggest that O(1/n) represents a common, physically profound scaling threshold of subsystem variance for features associated with non-trivial quantum order.
Talk on this paper: https://www.youtube.com/watch?v=s7uVJCXAqOI
*Highlights*
Why necessary:
1. practical deviations: imperfects system preparation,defect, disorder...
2. physical: codes from physical systems can have inexactness that fundamentally originates from their physics.
3.Fundamental incompatibility with sysmmetry.
#bibliography("refs.bib") |
|
https://github.com/typst-community/setup-typst | https://raw.githubusercontent.com/typst-community/setup-typst/main/test/test.typ | typst | MIT License | #import "@preview/example:0.1.0": *
= Introduction
In this report, we will explore the
various factors that influence _fluid
dynamics_ in glaciers and how they
contribute to the formation and
behavior of these natural structures.
|
https://github.com/choglost/LessElegantNote | https://raw.githubusercontent.com/choglost/LessElegantNote/main/README.md | markdown | MIT License | # LessElegantNote
## 项目简介
一个Typst笔记模板。
## 学习资源
* [Typst官方文档](https://typst.app/docs)
## 使用指南
1. 下载本项目并解压。
2. 在vscode中打开项目文件夹。
3. 安装vscode插件Tinymist Typst。
4. 参考/example/less-elegant-note.pdf,创建你自己的笔记。
## 致谢
- 本项目是在[南京大学学位论文 Typst 模板 modern-nju-thesis ](https://github.com/nju-lug/modern-nju-thesis)的基础上修改而成的。
- 灵感来源于[ElegantBook: 优美的 LaTeX 书籍模板](https://github.com/ElegantLaTeX/ElegantBook)。
感谢他们的工作。
## 更新计划
1. 完善参考文档。
2. ~~数学环境支持,如定理、证明、例题。~~
3. 格式的自定义,如主题颜色自定义、提供更多风格的封面、标题格式的自定义。
4. 增加其他页面,如前言、参考文献。
|
https://github.com/jamesrswift/typst-chem-par | https://raw.githubusercontent.com/jamesrswift/typst-chem-par/main/src/rules/deuterated.typ | typst | MIT License | #import "../stateful.typ": *
#import "../constants.typ"
#let deuterated(body) = {
show regex("(\w-d\d+)"): (it) => context {
if-state-enabled( it , {
//show "-": "–"
show regex("\d"): sub
it
})
}
body
} |
https://github.com/TycheTellsTales/typst-pho | https://raw.githubusercontent.com/TycheTellsTales/typst-pho/main/tests/pageEnd/test.typ | typst | #import "../../private.typ": pageEnd
#let count = state("test", 0)
== 1-2
#context pageEnd(1, 2, count)
== 3-5
#context pageEnd(3, 5, count)
== 1-15
#context pageEnd(1, 15, count)
== 7-15
#context pageEnd(7, 15, count)
|
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/book/summary.typ | typst | Apache License 2.0 |
#let summary(content) = {
set page(width: 300pt, margin: (left: 10pt, right: 10pt, rest: 0pt))
content
}
#let book-meta(summary: none) = {
metadata((
kind: "book",
content: summary,
))
}
#let chapter(link, title, section: none) = metadata((
kind: "chapter",
link: link,
section: section,
title: (
kind: "plain-text",
content: title.text,
),
))
#let post-chapter( title) = metadata((
kind: "chapter",
link: link,
title: (
kind: "plain-text",
content: title.text,
),
))
#let divider = metadata((
kind: "divider"
))
#show: summary
#book-meta(
summary: [
= Introduction
- #chapter("installation.typ", section: "1.1")[Installation]
- #chapter("get-started.typ", section: "1.2")[Get Started]
- #chapter(none, section: "1.2.1")[Drafting chapter]
]
)
#let convert-sugar(node) = {
if metadata == node.func() {
let node = node.value
if node.at("kind") == "book" {
let content = node.at("content")
node.insert("content", convert-sugar(content))
}
return node
}
if heading == node.func() {
return (
kind: "part",
level: node.level,
title: (
kind: "plain-text",
content: node.body.text,
),
)
}
if list.item == node.func() {
let maybe-children = convert-sugar(node.body)
if type(maybe-children) == "array" {
if maybe-children.len() <= 0 {
panic("invalid list-item, no maybe-children")
}
let first = maybe-children.at(0)
let rest = maybe-children.slice(1)
first.insert("sub", rest)
return first
} else {
return maybe-children
}
}
if [].func() == node.func() {
return node.children.map(convert-sugar).filter(it => it != none)
}
none
}
#let sidebar-gen(node) = {
node
}
#locate(loc => {
let data = query(metadata, loc).at(0)
let converted = convert-sugar(data)
[
#metadata(converted) <typst-book-book-meta>
#sidebar-gen(converted)
]
})
|
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/SK/zalmy/Z090.typ | typst | Kto pod ochranou Najvyššieho prebýva \* a v tôni Všemohúceho sa zdržiava,
povie Pánovi: „Ty si moje útočište a pevnosť moja; \* v tebe mám dôveru, Bože môj.“
Veď on sám ťa vyslobodí z osídel lovcov \* a zo zhubného moru.
Svojimi krídlami ťa zacloní a uchýliš sa pod jeho perute. \* Jeho pravda je štítom a pancierom,
nebudeš sa báť nočnej hrôzy, \* ani šípu letiaceho vo dne,
ani moru, čo sa tmou zakráda, \* ani nákazy, čo pustoší na poludnie.
I keď po tvojom boku padnú tisíce a desaťtisíce po tvojej pravici, \* teba nezasiahne.
Budeš sa môcť dívať vlastnými očami \* a uvidíš, ako sa odpláca hriešnikom.
Lebo tvojím útočišťom je Pán, \* za ochrancu si si zvolil Najvyššieho.
Nestihne ťa nijaké nešťastie \* a k tvojmu stanu sa nepriblíži pohroma,
lebo svojim anjelom dá príkaz o tebe, \* aby ťa strážili na všetkých tvojich cestách.
Na rukách ťa budú nosiť, \* aby si si neuderil nohu o kameň.
Budeš si kráčať po vretenici a po zmiji, \* leva i draka rozšliapeš.
Pretože sa ku mne pritúlil, vyslobodím ho, \* ujmem sa ho, lebo pozná moje meno.
Keď ku mne zavolá, ja ho vyslyším \* a budem pri ňom v súžení, zachránim ho i oslávim.
Obdarím ho dlhým životom \* a ukážem mu svoju spásu. |
|
https://github.com/ckunte/ra | https://raw.githubusercontent.com/ckunte/ra/master/README.md | markdown | # Rental agreement template in Typst
See generated example under [Releases][r].
[r]: https://github.com/ckunte/ra/releases
|
|
https://github.com/maxtremblay/cv | https://raw.githubusercontent.com/maxtremblay/cv/main/sources/demo.typ | typst | #import "template.typ": cv, date_items
#set text(lang: "fr")
#show: doc => cv(doc)
= First section
#date_items(
(
(start: [Jan 2023], title: lorem(2), subtitle: lorem(5), body: lorem(20)),
(start: [Jul 2021], end: [Dec 2022], title: lorem(2), subtitle: lorem(5), body: lorem(20)),
(start: [Jul 2021], end: [Dec 2022], title: lorem(2), subtitle: lorem(5), body: lorem(20)),
)
) |
|
https://github.com/Alkon-2024-contest-editorial/hello-alkon | https://raw.githubusercontent.com/Alkon-2024-contest-editorial/hello-alkon/main/template.typ | typst | // The project function defines how your document looks.
// It takes your content and some metadata and formats it.
// Go ahead and customize it to your liking!
// 그래프를 그릴 수 있습니다.
//#import "@preview/gviz:0.1.0": *
#let maintitle(title, subtitle) = {
align(
center + horizon,
text(size: 60pt, weight: "black")[#title]
)
v(2fr)
align(
center + horizon,
text(size: 20pt, weight: "black", fill: gray)[#subtitle]
)
}
#let project(title: "", authors: (), logo: none, body) = {
// Set the document's basic properties.
set text(font: "Pretendard", lang: "ko")
set document(author: authors, title: title)
set page(numbering: "1", number-align: bottom + right, flipped: true, footer: align(center, "AlKon 2024 🎈"))
maintitle("Hello, AlKon!", "AlKon 월간 모의대회 해설집")
v(10fr)
// Author information.
grid(columns: (50%, 50%),
pad(
top: 0.7em,
right: 20%,
grid(
columns: (1fr,) * calc.min(3, authors.len()),
gutter: 1em,
..authors.map(author => align(start, author)),
),
),
)
v(2.4fr)
pagebreak()
set page(background: none)
// Main body.
set par(justify: true)
show raw.where(lang: "render"): it => render-image(it.text)
body
} |
|
https://github.com/LDemetrios/Typst4Gradle | https://raw.githubusercontent.com/LDemetrios/Typst4Gradle/master/README.md | markdown | # Typst4Gradle* — gradle plugin for Typst projects
* Draft name
## Examples
This plugin allows you to automatically compile typst files within your project in different themes.
```kotlin
typst4gradle {
executable = "typst" // Default
// sourceFolder = "src"
// outputFolder = "out"
themes {
// folder = "sty"
default = "dev"
theme("dev") {
background = Color.black.t
foreground = Color.white.t
page.height = TAuto
}
theme("dark") {
background = Color(0x21, 0x21, 0x21).t
foreground = Color(0xf0, 0xf0, 0xf0).t
}
theme("regular") {
background = Color.white.t
foreground = Color.black.t
}
theme("sepia") {
background = Color(0xeb, 0xd5, 0xb3).t
foreground = Color.black.t
}
}
compile {
format {
"$theme/$path/$file.$format"
}
ignore(Regex(".*header.typ"))
}
}
```
Download third party libraries:
```kotlin
typst4gradle {
libraries {
library {
url = "https://github.com/LDemetrios/ldemetrios-typst-commons.git"
version = "0.1.0"
alias = "ldemetrios-commons"
onChange = OnChange.DISCARD
}
preview("cetz:0.2.2", asModule = true)
preview("tablex:0.0.8")
}
}
```
This will download a library from github repository and generate file `lib/all.typ`:
```typst
#import "ldemetrios-commons/0.1.0/src/lib.typ": *
#import "@preview/cetz:0.2.2"
#import "@preview/tablex:0.0.8": *
```
... And that's all yet.
Be careful: there might be not tested edge cases. Besides that, error handling in library downloading is very drafty.
Manual is coming.
## Installation & Usage
Plugin relies on [Typst4k](https://github.com/LDemetrios/Typst4k), you need to install it first
Plugin is not published in gradle portal, therefore you have to install it locally:
```bash
git clone https://github.com/LDemetrios/Typst4Gradle.git
cd Typst4Gradle
gradle publish
```
Then in your project, in `settings.gradle.kts` write:
```kotlin
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
```
then in `build.gradle.kts`:
```kotlin
buildscript {
repositories {
mavenLocal()
}
dependencies {
classpath("org.ldemetrios:typst4gradle:0.3.0")
}
}
apply<org.ldemetrios.typst4gradle.Typst4GradlePlugin>()
```
## Changelog
See [file](Changelog.md)
## Plans
- [x] Add support of downloading third-party libraries
- [ ] Make theme customization more straightforward
## Contacts
If you experience bugs or have proposal for improvements, feel free to open issues.
PRs are also welcome, feel free to ask questions about internal structure of the project.
tg: @LDemetrios
|
|
https://github.com/almarzn/portfolio | https://raw.githubusercontent.com/almarzn/portfolio/main/templates/typst/.template/maxds.typ | typst | #let primary = rgb(240, 101, 41)
#let background = rgb("#e7fbfa") |
|
https://github.com/thornoar/lambda-calculus-course | https://raw.githubusercontent.com/thornoar/lambda-calculus-course/master/main-lectures/final-test-1.typ | typst | #import "@local/common:0.0.0": *
#import "@local/theorem:0.0.0": *
#show: theorem
#import "./template.lib.typ": *
#show: formatting
#set heading(numbering: none)
#set text(size: 13pt)
#set page(background: image("pictures/troubles-faded.jpg", width: 100%, height: 100%, fit: "stretch"))
#head([ Итоговая работа, I вариант ])
== На 3:
+ Дайте определение множеств всех, свободных и связанных переменных для л-выражения $M$ ($TV(M), FV(M), BV(M)$). Правда ли, что
$ TV(M) = FV(M) union BV(M) $
для любого $M in #L$?
+ Определите _результат подстановки,_ $M[x := N]$, для л-выражений $M, N$ и переменной $x in.not BV(M)$.
+ Определите комбинаторы $#I$, $#K$, $#KK$, $#S$. Покажите, что $#K#I = #KK$ и $#S#K#K = #I$.
+ Дайте определение _нормальной формы._ Покажите, что, если $M$ --- нормальная форма, то для любого $N in #L$ редукция $M ->> N$ влечёт $M equiv N$.
== На 4:
+ Докажите _лемму о подстановке:_ если $M, N, L in #L$, $x equiv.not y$ и $x in.not FV(L)$, то тогда #h(1fr)
$
(M[x := N])[y := L] equiv (M[y := L])[x := N[y := L]]
$
+ Докажите _теорему о неподвижной точке:_ $forall F in #L: hs exists X in #L: hs X = F X$. Дайте определение _комбинатора неподвижной точки._
+ Рассмотрим бинарное отношение $arr$, заданное рекурсивно следующими соотношениями:
+ $M arr M$;
+ $M arr M' ==> @x.. M arr @x.. M'$;
+ $M arr M',, N arr N' ==> M N arr M'N'$;
+ $M arr M',, N arr N' ==> (@x.. M)N arr M'[x := N']$.
Покажите, что $Refl(->_beta) subset arr$. Докажите, если $M arr M'$ и $N arr N'$, то\ $M[x := N] arr M'[x := N']$.
== На 5:
+ Правда ли, что всякая произвольная комбинация выражений $#S$ и $#K$ (например, $#S (#K#S#K) #S #K$) будет иметь нормальную форму?
+ Докажите, что
$
(forall N in #L: hs N =_(beta eta) M ==> x in FV(N)) <==> (forall N in #L: hs M ->>_(beta eta) N ==> x in FV(N)).
$
+ Покажите, что для любого $M in #L$ существует нормальная форма $N in #L$, такая, что $N #I ->> M$.
|
|
https://github.com/qujihan/typst-book-template | https://raw.githubusercontent.com/qujihan/typst-book-template/main/template/parts/outline.typ | typst | #import "../params.typ": *
#let show-outline(show-depth) = [
#set page(
header: none,
footer: none,
background: none,
)
#let title-block = block()[
#text(size: 2em, strong("目录"))
#v(2em)
]
#show outline.entry.where(level: 1): it => {
text(size: 1em, weight: "semibold", it)
}
#show outline.entry.where(level: 2): it => {
text(size: 1em, weight: "medium", it)
}
#show outline.entry.where(level: 3): it => {
text(size: 1em, weight: "regular", it)
}
#set align(center)
#outline(indent: auto, depth: show-depth, title: title-block)
] |
|
https://github.com/HEIGVD-Experience/docs | https://raw.githubusercontent.com/HEIGVD-Experience/docs/main/S4/ARO/docs/4-Decode/decode.typ | typst | #import "/_settings/typst/template-note.typ": conf
#show: doc => conf(
title: [
Decode
],
lesson: "ARO",
chapter: "3 - Decode",
definition: "Le décodage dans un processeur traduit les instructions binaires en signaux de contrôle pour les opérations nécessaires. Une banque de registres stocke des données temporaires, entourée d'un décodeur en entrée et d'un multiplexeur en sortie. Dans un processeur ARM, différents registres ont des objectifs spécifiques comme le Stack Pointer (SP) pour la gestion de la pile. Les instructions ARM telles que MOV et ADD permettent de manipuler les données et d'effectuer des opérations arithmétiques.",
col: 1,
doc,
)
= Opération DECODE
L'opération de décodage dans un processeur consiste à interpréter les instructions binaires reçues depuis la mémoire et à les traduire en signaux de contrôle. Ces signaux dirigent les différentes opérations nécessaires pour exécuter l'instruction, comme les accès aux registres, les opérations arithmétiques ou logiques, et la gestion des flux de données.
= Banque de registres
Une banque de registre s'articule autour de plusieurs registres, chacun stockant une valeur. Ces registres sont utilisés pour stocker des données temporaires, des adresses mémoire, des résultats intermédiaires, ou des valeurs de contrôle.
Ces registres sont entourés d'un décodeur en entrée et d'un multiplexeur en sortie. Le décodeur permet de définir dans quel registre nous allons écrire tandis que le multiplexeur permet de choisir quel registre nous allons lire.
#image("/_src/img/docs/image copy 16.png")
== Traitement de plusieurs valeur en parallèle
Dans un processeur, les registres sont souvent utilisés pour traiter plusieurs valeurs en parallèle. Pour cela il est nécessaire de pouvoir lire au même coup d'horloge des valeurs de plusieurs registres. Pour cela on utilise un multiplexeur supplémentaire qui permet de lire dans un registre de plus.
#image("/_src/img/docs/image copy 17.png")
= Fonctionnement ARM
Dans un processeur ARM nous avons un total de 37 registres physiques. Il y en a 16 (+2) qui sont utilisé en fonction du mode.
#table(
columns: (0.5fr, 1fr),
[*Registre*], [*Objectif*],
"R13", "Stack Pointer (SP) " + sym.arrow + " Stocke la position dans la pile de stockage (interruptions chaînées)",
"R14", "Link Register (LR) " + sym.arrow + "Garde l’adresse de retour (appel de fct, interruption)",
"R15", "Program Counter (PC) " + sym.arrow + "Stocke l’adresse de la prochaine instruction",
)
== Différence ARM / THUMB
- ARM : C'est l'ensemble d'instructions original, utilisant des instructions de 32 bits pour des performances maximales. Il est adapté aux tâches nécessitant une puissance de calcul élevée, comme les smartphones haut de gamme ou les serveurs.
- Thumb : C'est une version compacte de l'ensemble d'instructions ARM, avec des instructions de 16 bits. Il est utilisé pour économiser de l'espace mémoire et de l'énergie, adapté aux appareils embarqués ou mobiles à basse puissance.
En résumé, ARM est performant mais utilise plus d'espace mémoire, tandis que Thumb est plus compact et économe en énergie, adapté aux appareils avec des contraintes de mémoire ou de puissance.
#image("/_src/img/docs/image copy 19.png")
= CSPR (Current Program Status Register)
Le registre CSPR est un registre de 32 bits qui contient des informations sur l'état courant du processeur. Il contient des informations sur les drapeaux de statut, les modes d'exécution, et les niveaux de priorité des interruptions.
Il est composé des bits suivants:
- Bits de condition (N Z C V)
- Bits de masquage des interruptions (I F)
- Jeu d'instructions (T)
- Mode du processeur (mode)
#image("/_src/img/docs/image copy 18.png")
= Instruction ARM
== Move
L'instruction `MOV` permet de déplacer une valeur d'un registre à un autre. Elle prend en entrée un registre source et un registre destination, et copie la valeur du registre source dans le registre destination.
#image("/_src/img/docs/image copy 20.png")
- syntaxe : ```shell MOV <Rd>, <Rs>```
- charge la valeur de Rs dans Rd
- flag = 1, Opcode = 0
- offset3 = 000
== Add
L'instruction `ADD` permet d'additionner deux valeurs et de stocker le résultat dans un registre. Elle prend en entrée deux registres source et un registre destination, et ajoute les valeurs des deux registres source pour stocker le résultat dans le registre destination.
#image("/_src/img/docs/image copy 21.png")
- syntaxe : ```shell ADD <Rd>, <Rs>, #<immed_3>```
- ajoute la valeur immédiate (3 bits non-signé) à la valeur du registre Rs et écrit le résultat dans Rd
*OU*
- syntaxe : ```shell ADD <Rd>, <Rs>, <Rn>```
- ajoute la valeur de Rs à celle de Rn et écrit le résultat dans Rd |
|
https://github.com/r8vnhill/apunte-bibliotecas-de-software | https://raw.githubusercontent.com/r8vnhill/apunte-bibliotecas-de-software/main/Unit3/BuildSystems.typ | typst | #import "@preview/ctheorems:1.1.2": *
#show: thmrules
#let definition = thmbox("definition", "Definición", inset: (x: 1.2em, top: 1em))
== Usos Comunes
1. *Configuración Reutilizable*: Permite definir el proceso de compilación una sola vez y reutilizar
esa configuración en múltiples proyectos, lo que ahorra tiempo y asegura consistencia a través de
diferentes entornos de desarrollo y producción.
2. *Gestión de Dependencias*: Automatiza la resolución y actualización de librerías y otros paquetes
necesarios para el desarrollo del proyecto. Esto incluye la descarga de las versiones correctas de
cada dependencia y asegurar que todas sean compatibles entre sí.
3. *Automatización de Pruebas*: Integra y ejecuta automáticamente suites de pruebas para verificar
que el software funcione correctamente antes de ser desplegado, mejorando la calidad y seguridad
del software.
4. *Integración y Despliegue Continuos*: Facilita la implementación de prácticas de integración
continua (CI) y despliegue continuo (CD), permitiendo que los cambios en el código sean
automáticamente compilados, probados y desplegados.
== Ejemplos de Build Systems
- *Make*: Uno de los primeros sistemas de compilación, ampliamente usado en proyectos de C y C++.
- *Maven y Gradle*: Muy utilizados en proyectos Java y Android por su poderosa gestión de
dependencias y facilidades para la construcción de proyectos.
- *Apache Ant*: Utilizado en Java, se centra en ser flexible y extensible.
- *Webpack y Babel*: Populares en el desarrollo de aplicaciones web modernas, manejan la
transformación y empaquetado de módulos JavaScript.
== Gradle
Gradle es una herramienta poderosa y flexible utilizada para automatizar el proceso de construcción
de software, incluyendo compilación, prueba, despliegue y empaquetado. Su diseño modular y su
capacidad de personalización lo hacen adecuado para una amplia variedad de proyectos, desde
aplicaciones móviles hasta grandes sistemas empresariales.
=== Características Principales
1. *DSL Basado en Groovy y Kotlin*: Gradle utiliza lenguajes de configuración específicos del
dominio (DSL) basado en Groovy y Kotlin. Esto permite a los desarrolladores escribir scripts de
construcción expresivos y mantenibles.
2. *Personalización y Extensibilidad*: Uno de los puntos fuertes de Gradle es su capacidad para
ser personalizado y extendido. Los desarrolladores pueden crear tareas personalizadas y añadir
funcionalidades específicas al proceso de construcción utilizando su API extensa.
3. *Compatibilidad con Entornos de Desarrollo*: Gradle es compatible con los principales entornos
de desarrollo integrado (IDE) como Eclipse, IntelliJ IDEA y Android Studio, lo que permite una
integración sin fisuras y un flujo de trabajo eficiente para los desarrolladores.
4. *Integración con Herramientas de CI/CD*: Se integra perfectamente con sistemas de integración
continua y despliegue continuo como Jenkins, facilitando la automatización del ciclo de vida del
desarrollo de software.
5. *Gestión de Dependencias Avanzada*: Ofrece un robusto sistema de gestión de dependencias que
simplifica el manejo de librerías y módulos necesarios para el desarrollo de proyectos.
=== A Taste of Gradle
```kotlin
// build.gradle.kts
plugins {
kotlin("jvm") version "1.9.23"
}
group = "cl.ravenhill"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}
```
=== `gradle.properties`
El archivo `gradle.properties` es un archivo de configuración para Gradle que utiliza el formato `clave=valor` para definir las propiedades. Este archivo permite definir propiedades que actúan como variables de entorno durante la compilación. Es una buena práctica almacenar valores como las versiones de las librerías utilizadas en el proyecto en este archivo.
```properties
kotlin.code.style=official
kotlin.version=2.0.0
build-systems-kt.version=1.0.0
org.gradle.parallel=true
org.gradle.caching=true
detekt.version=1.23.1
dokka.version=1.9.10
kotest.version=5.9.0
kotlinx.datetime.version=0.4.1
```
- `kotlin.code.style=official`:
- Define el estilo de código de Kotlin a utilizar, en este caso, el estilo oficial recomendado por Kotlin.
- `kotlin.version=2.0.0`:
- Especifica la versión de Kotlin a utilizar en el proyecto.
- `build-systems-kt.version=1.0.0`:
- Define la versión del proyecto.
- `org.gradle.parallel=true`:
- Habilita la construcción en paralelo para mejorar el rendimiento.
- `org.gradle.caching=true`:
- Habilita la caché de Gradle para acelerar la construcción reutilizando los resultados de compilaciones anteriores.
- `detekt.version=1.23.1`:
- Especifica la versión de Detekt, una herramienta de análisis estático de código para Kotlin.
- `dokka.version=1.9.10`:
- Define la versión de Dokka, una herramienta de documentación para Kotlin.
- `kotest.version=5.9.0`:
- Especifica la versión de Kotest, un framework de pruebas para Kotlin.
- `kotlinx.datetime.version=0.4.1`:
- Define la versión de `kotlinx-datetime`, una librería de fecha y hora para Kotlin.
=== Configuración de Repositorios en Gradle
En Gradle, los repositorios especifican las ubicaciones de las librerías necesarias para un
proyecto. La configuración de los repositorios determina el orden en que Gradle buscará las
dependencias requeridas, procediendo de arriba hacia abajo en el script.
Aquí se muestra cómo configurar varios tipos de repositorios en un archivo `build.gradle.kts`:
```kotlin
repositories {
mavenCentral() // (1)
google() // (2)
maven { // (3)
url = uri("https://your.company.com/maven")
credentials { // (4)
username = System.getenv("MAVEN_USERNAME") ?: "defaultUser"
password = System.<PASSWORD>("<PASSWORD>") ?: "<PASSWORD>"
}
}
flatDir { // (5)
dirs("lib")
}
}
```
1. *Maven Central*: Este es el repositorio central de Sonatype, utilizado por defecto por
proyectos Maven y Gradle en todo el mundo. Contiene una vasta cantidad de librerías para Java,
Kotlin y Scala.
1. *Google*: Especialmente importante para proyectos Android, el repositorio de Google alberga
librerías y herramientas específicas necesarias para el desarrollo en Android.
1. *Repositorio Maven Personalizado*: Utilizado para alojar artefactos privados o de terceros no
disponibles en repositorios públicos. Es ideal para empresas que necesitan un control más estricto
sobre las librerías utilizadas en sus proyectos.
1. *Seguridad de Credenciales*: Es vital no "hardcodear" credenciales directamente en los archivos
de configuración. Utiliza variables de entorno para gestionar las credenciales de forma segura,
como se muestra en el ejemplo. Esto ayuda a prevenir la exposición de información sensible.
1. *Flat Directory Repository*: Un repositorio de directorio plano se usa para incluir librerías que
se encuentran directamente en el sistema de archivos local del proyecto, sin un repositorio Maven
o Ivy. Es útil para librerías que no están disponibles en ningún repositorio remoto o para desarrollo y pruebas rápidas.
*Consejos y Mejores Prácticas*
- *Orden de Repositorios*: El orden en la que declaras los repositorios es importante, ya que
Gradle buscará las dependencias en el orden en que aparecen. Si una dependencia está disponible en
más de un repositorio, Gradle descargará la versión del primero que encuentre.
- *Uso de Repositorios Seguros*: Asegúrate de usar URLs seguras (`https`), especialmente cuando
configures repositorios personalizados para garantizar que las transferencias de datos sean
cifradas.
=== Dependencias
#definition("Dependencia")[
Las dependencias son componentes externos o bibliotecas que un proyecto requiere para compilar y
ejecutarse correctamente.
]
Gradle facilita la automatización de la descarga e integración de estas dependencias desde
repositorios configurados, ya sean locales o remotos.
```kotlin
dependencies {
implementation(kotlin("reflect"))
testImplementation("group:name:version")
implementation(group = "group", name = "name", version = "version")
}
```
En el siguiente ejemplo de configuración de Gradle, definimos algunas dependencias que se utilizarán
en el curso, incluyendo la librería de reflexión de Kotlin y varias librerías de Kotest para pruebas:
```kotlin
val kotestVersion = extra["kotest.version"] as String
dependencies {
implementation(kotlin("reflect"))
testImplementation("io.kotest:kotest-property:$kotestVersion")
testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")
testImplementation("io.kotest:kotest-framework-datatest:$kotestVersion")
}
```
=== `settings.gradle.kts`
El archivo `settings.gradle.kts` se utiliza para configurar y gestionar los ajustes de configuración de un proyecto Gradle. Este archivo define la estructura de módulos del proyecto y puede incluir configuraciones adicionales para la gestión de plugins.
```kotlin
// El nombre del proyecto raíz
rootProject.name = "build-systems-kt"
// Incluye los subproyectos del proyecto raíz
include(
":subproject1",
":subproject2",
":subproject3"
)
```
A continuación, un ejemplo más completo que incluye la configuración de la gestión de plugins:
```kotlin
// Define el nombre del proyecto raíz
rootProject.name = "build-systems-kt"
// Incluye los subproyectos
include(":subproject1", ":subproject2", ":subproject3")
pluginManagement {
// Define los repositorios para la resolución de plugins
repositories {
gradlePluginPortal()
}
// Configura los plugins con sus respectivas versiones
plugins {
kotlin("jvm") version extra["kotlin.version"] as String
id("io.gitlab.arturbosch.detekt") version extra["detekt.version"] as String
}
}
```
- `rootProject.name = "build-systems-kt"`:
- Define el nombre del proyecto raíz, que es el identificador principal del proyecto en Gradle.
- `include(":subproject1", ":subproject2", ":subproject3")`:
- Incluye los subproyectos en el proyecto raíz. Cada subproyecto puede tener su propia configuración y código independiente.
- `pluginManagement`:
- Configura la gestión de plugins para el proyecto. Esto incluye la definición de los repositorios y las versiones de los plugins necesarios.
- `repositories { gradlePluginPortal() }`:
- Define el repositorio `gradlePluginPortal` para resolver y descargar los plugins utilizados en el proyecto.
- `plugins`:
- Especifica los plugins y sus versiones que serán utilizados en el proyecto. En este ejemplo, se utilizan los plugins de Kotlin JVM y Detekt con versiones definidas en el archivo `gradle.properties`.
Aquí tienes la versión mejorada usando la sintaxis de Typst:
=== `build.gradle.kts`
El archivo `build.gradle.kts` es el script principal de Gradle que define las tareas y configuraciones de construcción del proyecto. En este archivo se especifican las dependencias, plugins, tareas personalizadas y otros ajustes necesarios para compilar y ejecutar el proyecto.
```kotlin
// Define los plugins que se aplicarán al proyecto raíz
plugins {
kotlin("jvm")
}
// Configura el grupo y la versión para todos los proyectos
allprojects {
group = "build-systems-kt"
version = extra["build-systems-kt.version"] as String
}
// Define el repositorio de Maven Central como fuente para las dependencias de los subproyectos
subprojects {
repositories {
mavenCentral()
}
}
```
- *plugins*:
- Define los plugins que se aplicarán al proyecto raíz.
- En este caso, se aplica el plugin de Kotlin para JVM.
- *allprojects*:
- Configura el grupo y la versión para todos los proyectos.
- El grupo se establece como "build-systems-kt" y la versión se obtiene de las propiedades extra.
- *subprojects*:
- Define el repositorio de Maven Central como fuente para las dependencias de los subproyectos.
- Esto asegura que todas las dependencias necesarias para los subproyectos se puedan resolver desde Maven Central.
==== `subproject1/build.gradle.kts`
```kotlin
val kotestVersion = extra["kotest.version"] as String
val kotlinxDatetimeVersion = extra["kotlinx.datetime.version"] as String
plugins {
id("io.gitlab.arturbosch.detekt")
kotlin("jvm")
}
dependencies {
implementation(kotlin("reflect"))
implementation("org.jetbrains.kotlinx:kotlinx-datetime:$kotlinxDatetimeVersion")
testImplementation("io.kotest:kotest-property:$kotestVersion")
testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")
testImplementation("io.kotest:kotest-framework-datatest:$kotestVersion")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}
```
- *kotestVersion* y *kotlinxDatetimeVersion*:
- Obtiene las versiones de Kotest y kotlinx-datetime de las propiedades extra.
- *plugins*:
- Aplica el plugin de Detekt para análisis estático y el plugin de Kotlin para JVM.
- *dependencies*:
- Define las dependencias necesarias para el subproyecto:
- `implementation(kotlin("reflect"))`: Añade la dependencia de reflexión de Kotlin.
- `implementation("org.jetbrains.kotlinx:kotlinx-datetime:$kotlinxDatetimeVersion")`: Añade la dependencia de kotlinx-datetime con la versión especificada.
- `testImplementation("io.kotest:kotest-property:$kotestVersion")`: Añade la dependencia de Kotest para pruebas de propiedades.
- `testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")`: Añade la dependencia de Kotest para JUnit5.
- `testImplementation("io.kotest:kotest-framework-datatest:$kotestVersion")`: Añade la dependencia de Kotest para pruebas basadas en datos.
- *tasks.test*:
- Configura las pruebas para usar JUnit Platform.
- *kotlin*:
- Configura el toolchain de JVM para usar la versión 17.
=== Construyendo el proyecto
```powershell
# Windows
.\gradlew.bat :subproject1:build
.\gradlew.bat build
```
```bash
# Unix
./gradlew :subproject1:build
./gradlew build
``` |
|
https://github.com/jonatchoum/typst-thesis-template | https://raw.githubusercontent.com/jonatchoum/typst-thesis-template/main/template/fake_confidentialité.typ | typst | = page 1 confi
#pagebreak()
= page 2 confi
#pagebreak() |
|
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/layout/grid-2.typ | typst | Apache License 2.0 | // Test using the `grid` function to create a finance table.
---
#set page(width: 11cm, height: 2.5cm)
#grid(
columns: 5,
column-gutter: (2fr, 1fr, 1fr),
row-gutter: 6pt,
[*Quarter*],
[Expenditure],
[External Revenue],
[Financial ROI],
[_total_],
[*Q1*],
[173,472.57 \$],
[472,860.91 \$],
[51,286.84 \$],
[_350,675.18 \$_],
[*Q2*],
[93,382.12 \$],
[439,382.85 \$],
[-1,134.30 \$],
[_344,866.43 \$_],
[*Q3*],
[96,421.49 \$],
[238,583.54 \$],
[3,497.12 \$],
[_145,659.17 \$_],
)
|
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/list-attach-02.typ | typst | Other | // Test non-attached list followed by attached list,
// separated by only word.
Hello
- A
World
- B
|
https://github.com/sdsc-ordes/modos-poster | https://raw.githubusercontent.com/sdsc-ordes/modos-poster/main/src/themes/boxes.typ | typst | Creative Commons Attribution 4.0 International |
/*
MIT License
Copyright (c) 2024 <NAME>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#import "../utils/scripts.typ": *
#let focus-box(
color: none,
body
) = {
locate(loc =>
{
let primary-color = color-primary.get()
show heading: set text(white)
show heading: set align(center+horizon)
show heading: set block(width: 108.696%,
height: 1.2em,
fill: primary-color)
if color != none [
// Overwrite the color if provided
#let focus-color = color
#box(
width: 100%,
stroke: primary-color+.2em,
fill: color,
inset: 0%,
[
#box(
inset: (top: 0%, left: 4%, right: 4%, bottom: 4%),
body
)
]
)
] else [
#let focus-color = color-accent.get()
#box(
width: 100%,
stroke: none,//primary-color+.2em,
fill: focus-color,
inset: 0%,
[
#box(
inset: (top: 0%, left: 4%, right: 4%, bottom: 4%),
body
)
]
)
]
})
}
#let normal-box(
color: none,
body
) = {
locate(loc =>
{
let primary-color = color-primary.get()
show heading: set text(white)
show heading: set align(center+horizon)
show heading: set block(width: 108.696%,
height: 1.8em,
// stroke: primary-color,
fill: primary-color,
)
if color != none [
// Overwrite the default if provided
#let focus-color = color
#box(
width: 100%,
stroke: primary-color+.2em,
fill: focus-color,
inset: 0%,
outset: 0%,
[
#box(
inset: (top: 0%, left: 4%, right: 4%, bottom: 6%),
body
)
]
)
] else [
#let focus-color = color
#box(
stroke: none,//primary-color+.2em,
fill: color,
inset: 0%,
[
#box(
inset: (top: 0%, left: 4%, right: 4%, bottom: 4%),
body
)
]
)
]
})
}
#let poster-content(
col: 3,
body
)={
locate(loc =>
{
let primary-color = color-primary.get()
let bg-color = color-background.get()
let titletext-color = color-titletext.get()
let titletext-size = size-titletext.get()
let current-title = context title-content.get()
let current-subtitle = context subtitle-content.get()
let current-author = context author-content.get()
let current-affiliation = context affiliation-content.get()
let current-logo-1 = context logo-1-content.get()
let current-logo-2 = context logo-2-content.get()
let current-footer = context footer-content.get()
// Table captions go above
// TO DO: Numbering is not working properly
show figure.where(kind:table) : set figure.caption(position:top)
show figure.caption: it => [
// #context it.counter.display(it.numbering)
#it.body
]
// First, need body (hidden) to update header and footer
block(height: 0pt, hide[#body])
v(0pt, weak: true)
grid(
columns: 1,
rows: (16%, 80%, 4%),
// Top = title row
[
#box(
stroke: none,
fill: primary-color,
height: 100%,
width: 100%,
inset: 4%,
grid(
columns: (75%, 10%, 5%, 10%),
rows: 100%,
stroke: none,
// Left
[
#place(horizon)[
#set text(size: titletext-size,
fill: titletext-color,
)
*#current-title* #current-subtitle \
#set text(size: 0.5em)
#current-author \
#current-affiliation
]
],
// Center
[
#place(horizon+left)[#current-logo-2]
],
// Extra gap for spacing logos
[],
// Right
[
#place(horizon+right)[#current-logo-1]
]
)
)
],
// Middle = body
[
#box(
height: 100%,
inset: 4%,
fill: bg-color,
columns(col)[#body]
)
],
// Bottom = footer
[
#box(
stroke: none,
fill: bg-color,
height: 100%,
width: 100%,
inset: 4%,
align(right)[#current-footer]
)
]
)
})
}
|
https://github.com/ramojus/typst-template-VU-thesis | https://raw.githubusercontent.com/ramojus/typst-template-VU-thesis/main/thesis.typ | typst | #import "template.typ": vu_thesis
#show: vu_thesis.with(
authors: (
"<NAME>",
),
supervisor: "<NAME>",
reviewer: "<NAME>",
// title: "Darbo tema",
// work_type: "Darbo tipas",
// university: "Vilniaus Universitetas",
// faculty: "Matematikos ir Informatikos",
// institute: "Informatikos",
// department: "Informatikos",
done_by: "4 kurso 1 grupės studentas",
// city: "Vilnius",
// date: datetime.today(),
)
#set heading(numbering: none)
= Įvadas
#lorem(50)
#lorem(50)
#set heading(numbering: "1.")
= Pirmas skyrius
Anyone caught using formulas such as $sqrt(x+y)=sqrt(x)+sqrt(y)$
or $1/(x+y) = 1/x + 1/y$ will fail
The binomial theorem is @binomial.
$ (x+y)^n=sum_(k=0)^n binom(n, k) x^k y^(n-k). $ <binomial>
A favorite sum of most mathematicians is
$ sum_(n=1)^oo 1/n^2 = pi^2 / 6. $
Likewise a popular integral is
$ integral_(-oo)^oo e^(-x^2) dif x = sqrt(pi) $
== Pirmo skyriaus poskyris
Literatūros nuorodos: @LTArticle, @onlineArticle
=== Lentelės
Galima naudoti lenteles kaip @solids lentelė.
#figure(
table(
columns: (1fr, auto, auto),
align: horizon,
[], [*Area*], [*Parameters*],
[*Cylinder*],
$ pi h (D^2 - d^2) / 4 $,
[$h$: height \
$D$: outer radius \
$d$: inner radius],
[*Tetrahedron*],
$ sqrt(2) / 12 a^3 $,
[$a$: edge length]
),
caption: "Solids",
) <solids>
=== Paveiksliukai
@vu-logo paveiksliuke vaizduojamas VU logotipas.
#figure(
image("vu_logo.png", width: 30%),
caption: "VU logotipas",
) <vu-logo>
#set heading(numbering: none)
= Išvados
Išveskime
#pagebreak()
#bibliography(title: "Literatūros sąrašas", "refs.bib")
// #pagebreak()
// = Priedas Nr. 1
// #set text(10pt) // priedų šriftas turi būti 10pt
|
|
https://github.com/Nerixyz/icu-typ | https://raw.githubusercontent.com/Nerixyz/icu-typ/main/docs/docs/fmt-datetime.md | markdown | MIT License | # `fmt-datetime`
```typst-code
let fmt-datetime(
dt,
locale: "en",
date-length: "long",
time-length: "short"
)
```
Formats a date and time in some [`locale`](#locale). Dates are assumed to be ISO dates.
## Arguments
### `dt`
The date and time to format. This can be a [`datetime`][datetime] or a dictionary with `year`, `month`, `day`, `hour`, `minute`, and `second`.
example{
```typst +preview
#fmt-datetime(datetime(
year: 2024,
month: 5,
day: 31,
hour: 18,
minute: 2,
second: 23,
)) \
#fmt-datetime(( // (1)!
year: 1974,
month: 8,
day: 20,
hour: 10,
minute: 40,
second: 38,
), locale: "mt")
```
1. Datetime passed as a dictionary
}example
### `locale`
The locale to use when formatting the datetime. A [Unicode Locale Identifier]. As with [dates](./fmt-date.md#locale), `ca` can be set to a [bcp47 calendar name](https://github.com/unicode-org/cldr/blob/main/common/bcp47/calendar.xml).
example{
```typst +preview
#let dt = datetime(
year: 2024,
month: 5,
day: 31,
hour: 18,
minute: 2,
second: 23,
)
- #fmt-datetime(dt, locale: "en")
- #fmt-datetime(dt, locale: "ko")
- #fmt-datetime(dt, locale: "ar-u-ca-islamic")
- #fmt-datetime(dt, locale: "mk")
- #fmt-datetime(dt, locale: "so")
- #fmt-datetime(dt, locale: "fo")
- #fmt-datetime(dt, locale: "vi")
- #fmt-datetime(dt, locale: "vi-u-ca-buddhist")
```
}example
### `date-length`
The length of the formatted date part (`#!typst-code "full"`, `#!typst-code "long"` (default), `#!typst-code "medium"`, or `#!typst-code "short"`).
example{
```typst +preview(vertical)
#let dt = datetime(
year: 2024,
month: 5,
day: 31,
hour: 18,
minute: 2,
second: 23,
)
*Full*
- #fmt-datetime(dt, date-length: "full")
- #fmt-datetime(dt, date-length: "full", locale: "tr")
- #fmt-datetime(dt, date-length: "full", locale: "nl")
*Long*
- #fmt-datetime(dt, date-length: "long")
- #fmt-datetime(dt, date-length: "long", locale: "hi")
- #fmt-datetime(dt, date-length: "long", locale: "da")
*Medium*
- #fmt-datetime(dt, date-length: "medium")
- #fmt-datetime(dt, date-length: "medium", locale: "ja")
- #fmt-datetime(dt, date-length: "medium", locale: "pt")
*Short*
- #fmt-datetime(dt, date-length: "short")
- #fmt-datetime(dt, date-length: "short", locale: "bn")
- #fmt-datetime(dt, date-length: "short", locale: "az")
```
}example
### `time-length`
The length of the formatted time part (`#!typst-code "medium"` or `#!typst-code "short"` (default)).
example{
```typst +preview
#let dt = datetime(
year: 2024,
month: 5,
day: 31,
hour: 18,
minute: 2,
second: 23,
)
#fmt-datetime(dt, time-length: "medium") \
#fmt-datetime(dt, time-length: "medium", locale: "fy") \
#fmt-datetime(dt, time-length: "short") \
#fmt-datetime(dt, time-length: "short", locale: "mt")
```
}example
[datetime]: https://typst.app/docs/reference/foundations/datetime/
[Unicode Locale Identifier]: https://unicode.org/reports/tr35/tr35.html#Unicode_locale_identifier
|
https://github.com/gongke6642/tuling | https://raw.githubusercontent.com/gongke6642/tuling/main/高级样式/main.typ | typst | = 高级样式
在本教程的前两章中,您已经学习了如何使用 Typst 编写文档以及如何更改其格式。你在最后两章写的报告得到了全A,你的主管想以此为基础写一篇会议论文!当然,报告必须符合会议的风格指南。让我们看看如何实现这一目标。
在开始之前,让我们创建一个团队,邀请您的主管并将他们添加到团队中。为此,您可以使用编辑器左上角的四圆图标返回应用程序仪表板。然后,选择左侧工具栏中的加号图标并创建一个团队。最后,单击新团队,然后单击团队名称旁边的“管理团队”进入其设置。现在,您可以通过电子邮件邀请您的主管。
#image("3-advanced-team-settings.png")
接下来,将您的项目移动到团队中:打开它,通过选择左侧工具栏中的齿轮图标并从所有者下拉列表中选择您的新团队来进入其设置。不要忘记保存您的更改!
现在,您的主管也可以编辑项目,并且你们都可以实时查看更改。您可以加入我们的 Discord 服务器以查找其他用户并尝试与他们合作!
== 会议指引
布局指南可在会议网站上找到。让我们看看它们:
- 字体应该是 11pt serif 字体
- 标题应为 17 磅且粗体
- 论文包含单栏摘要和两栏正文
- 摘要应居中
- 正文应合理
- 一级章节标题应为 13 磅、居中并以小写字母呈现
- 二级标题是插入语,斜体,大小与正文相同
- 最后,页面应为美国信函大小,在页脚中心编号,每页的右上角应包含论文标题
我们已经知道如何做其中许多事情,但对于其中一些事情,我们需要学习一些新技巧。
== 编写正确的规则
让我们首先为文档编写一些设定规则。
#image("2.png")
您已经熟悉这里发生的大部分内容。我们将文本大小设置为 Linux Libertine,将字体设置为 Linux Libertine。我们还启用段落对齐并将页面大小设置为美式字母。11pt
这个论点是新的:有了它,我们可以提供内容来填充每个页面的上边距。在标题中,我们根据会议风格指南的要求指定了论文的标题。我们使用该函数将文本向右对齐。headeralign
最后但并非最不重要的一点是论点。在这里,我们可以提供一种编号模式来定义如何对页面进行编号。通过设置为 ,Typst 仅显示裸页码。将其设置为将显示当前页面和括号括起来的总页数。我们甚至可以在这里提供一个完全自定义的功能来根据我们的喜好格式化内容。*numbering"1""(1/1)"*
== 创建标题和摘要
现在,让我们添加一个标题和一个摘要。我们将从标题开始。我们居中对齐它,并通过将其封闭在 中来增加其字体粗细。`*stars*`
#image("4.png")
\
\
\
这看起来是对的。我们使用该函数在本地覆盖了之前的文本集规则,将函数参数的大小增加到 17pt。让我们也添加作者列表:由于我们是和我们的导师一起写这篇论文的,我们将添加我们自己的和他们的名字。text
#image("5.png")
\
\
\
两个创作块彼此相邻布置。我们使用grid函数来创建此布局。使用网格,我们可以精确控制每列的大小以及哪些内容进入哪个单元格。该参数采用相对长度或分数的数组。在本例中,我们给它传递了两个相等的小数大小,告诉它将可用空间分成两列相等的列。然后,我们将两个内容参数传递给 grid 函数。第一个是我们自己的细节,第二个是我们的主管。我们再次使用该函数将内容置于列的中心。网格采用任意数量的内容参数来指定单元格。行是自动添加的,但也可以使用参数手动调整行的大小。columnsalignrows
现在,让我们添加摘要。请记住,会议希望摘要设置得参差不齐且居中。
#image("6.png")
\
\
\
\
\
干的好!值得注意的一点是,我们在 content 参数中使用了一个集合规则来关闭摘要的合理性。这不会影响文档的其余部分,即使它是在第一个设置规则之后指定的,因为内容会阻止范围样式。在内容块中设置的任何内容都只会影响该块中的内容。align
另一个调整可能是将论文标题保存在一个变量中,这样我们就不必为标题和标题键入两次。我们可以使用关键字来做到这一点:let
#image("7.png")
将内容绑定到变量后,我们可以在函数中使用它,也可以在标记中使用它(以 ,为前缀,如函数)。这样,如果我们决定使用另一个标题,我们可以轻松地在一个地方更改它。`title#`
== 添加列和标题
不幸的是,上面的纸看起来像一堵铅墙。为了解决这个问题,让我们添加一些标题,并将我们的论文切换到两列布局。columns 函数采用数字和内容,并将内容布局为指定数量的列。由于我们希望摘要后面的所有内容都放在两列中,因此我们需要将列函数应用于整个文档。
我们可以使用“everything”显示规则,而不是将整个文档包装在一个巨大的函数调用中。要编写这样的 show 规则,请在 show 关键字的正后方加一个冒号,然后提供一个函数。此函数作为参数提供给文档的其余部分。我们在这里调用了该参数,但您可以自由选择任何名称。然后,该函数可以对此内容执行任何操作。在我们的例子中,它将其传递给函数。restcolumns
#image("8.png")
现在只剩下一件事要做:设置标题样式。我们需要让它们居中并使用#link("小写.typ")[小写]字母。由于该函数没有提供任何设置方法,因此我们需要编写自己的标题显示规则。heading
#image("9.png")
这看起来很棒!我们使用了适用于所有标题的显示规则。我们给它一个函数,该函数将标题作为参数传递。该参数可以用作内容,但它也有一些字段,如 、 和 ,我们可以从中构建自定义外观。在这里,我们是居中对齐的,将字体粗细设置为因为标题默认为粗体,并使用小写函数以小写字母呈现标题的标题。titlenumberslevel"regular"
唯一剩下的问题是所有标题现在看起来都一样。“动机”和“问题陈述”小节应该在标题中以斜体形式运行,但现在,它们看起来与部分标题没有区别。我们可以通过使用设置规则上的选择器来解决这个问题:这是一种我们可以调用标题(和其他元素)的方法,它允许我们按它们的级别过滤它们。我们可以用它来区分章节和小节标题:where
#image("10.png")
这看起来很棒!我们编写了两条显示规则,每条规则都有选择地应用于第一级和第二级标题。我们使用一个选择器来按标题的级别过滤标题。然后,我们将小节标题呈现为磨合。我们还会自动在小节标题的末尾添加句点。where
让我们回顾一下会议的风格指南:
- 字体应该是 11pt 衬线字体 ✓
- 标题应为 17pt 和粗体 ✓
- 论文包含单栏摘要和两栏正文✓
- 摘要应该居中✓
- 正文应该对齐✓
- 第一级章节标题应居中,以小写字母和 13pt ✓ 呈现
- 第二级标题是斜体,与正文大小相同 ✓
- 最后,页面应为美制字母大小,中间编号,每页的右上角应包含论文标题✓
我们现在符合所有这些风格,可以将论文提交给会议!完成的论文如下所示:
#image("11.png")
== 回顾
您现在已经学习了如何创建页眉和页脚,如何使用函数和范围在本地覆盖样式,如何使用网格函数创建更复杂的布局,以及如何为各个函数编写显示规则,以及整个文档。您还学习了如何使用 where 选择器按标题级别筛选标题。
这篇论文取得了巨大的成功!你在会议上遇到了很多志同道合的研究人员,并正在计划一个项目,你希望明年在同一地点发表。不过,您需要使用相同的风格指南撰写新论文,所以也许现在您想为您和您的团队创建一个节省时间的模板?
在下一节中,我们将学习如何创建可在多个文档中重复使用的模板。这是一个更高级的话题,所以如果你现在觉得不合适,请随时回来讨论。 |
|
https://github.com/JvandeLocht/assignment-template-typst-hfh | https://raw.githubusercontent.com/JvandeLocht/assignment-template-typst-hfh/main/layout/feedbacklog_template.typ | typst | MIT License | #let feedbacklog(
titleEnglish: "",
supervisor: "",
advisors: (),
author: "",
presentationDate: datetime,
feedbacklogSubmissionDate: datetime,
body,
) = {
// Set the document's basic properties.
set page(
margin: (left: 30mm, right: 30mm, top: 40mm, bottom: 40mm),
numbering: "1",
number-align: center,
)
// Save heading and body font families in variables.
let body-font = "New Computer Modern"
let sans-font = "New Computer Modern Sans"
// Set body font family.
set text(
font: body-font,
size: 12pt,
lang: "en"
)
align(center, text(font: "sans-font", 1.7em, weight: 700, "Presentation Feedbacklog" + linebreak() + titleEnglish))
v(7.5mm)
align(center, text(font: "sans-font", 1.2em, weight: 400, feedbacklogSubmissionDate.display("[day]. [month repr:long] [year]")))
v(7.5mm)
line(length: 100%, stroke: 0.5pt)
align(
center,
box(
align(
left,
grid(
columns: 2,
gutter: 1em,
strong("Author: "), author,
strong("Supervisor: "), supervisor,
strong("Advisors: "), advisors.join(",\n"),
strong("Presentation Date: "), presentationDate.display("[day].[month].[year]"),
)
)
)
)
line(length: 100%, stroke: 0.5pt)
body
}
|
https://github.com/TechOctopus/typst-fiit-template | https://raw.githubusercontent.com/TechOctopus/typst-fiit-template/main/template.typ | typst | Creative Commons Attribution 4.0 International | #let project(
title: "",
subtitle: "",
author: [],
date: none,
logo: none,
affiliation: (),
academic-year: [],
assignment: (
subject: "",
practitioners: "",
exercise_time: "",
),
body,
) = {
set document(
author: author.name,
title: title,
date: if date != none [date] else {datetime.today()}
)
set page(
numbering: "1",
number-align: right,
)
set text(font: "New Computer Modern", lang: "sk")
show par: set block(above: 0.75em, below: 0.75em)
set heading(numbering: "1.1")
set par(leading: 0.58em)
set align(center)
text(1.2em, weight: "bold", affiliation.faculty)
v(1pt)
text(1.2em, affiliation.university)
v(1fr)
if logo != none {
align(center, image(logo, width: 25%))
}
v(1fr)
text(1.6em, subtitle)
v(0pt)
text(1.8em, weight: 700, title)
v(1fr)
align(
center,
block(
width: 90%,
[
#grid(
columns: 2,
align: left,
gutter: 8em,
text[
*Autor:* #author.name \
*Email:* #author.email \
*ID*: #author.id \
],
text[
*Predmet:* #assignment.subject \
*Cvičiaci:* #assignment.practitioners \
*Cvičenie:* #assignment.exercise_time \
]
)
]
)
)
v(1fr)
text(1.2em, [
Akademický rok
#academic-year
])
pagebreak()
set page(
header: [
#set text(8pt)
#smallcaps[#author.name]
#h(1fr)
#smallcaps[#title]
]
)
set par(
justify: true,
)
set align(start)
set align(alignment.top)
outline(
title: "Obsah",
)
pagebreak()
body
} |
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/06-features-2/anchor/chaining.typ | typst | Other | #import "/template/template.typ": web-page-template
#import "/template/components.typ": note
#import "/template/lang.typ": arabic
#import "/lib/glossary.typ": tr
#show: web-page-template
// ### Contextual and chaining contextual positioning
=== #tr[chaining]#tr[positioning]
// These two lookup types operate in exactly the same way as their substitution cousins, except with the use of the `pos` command instead of `sub`. You provide (optional) backtrack, input marked with apostrophe, and (optional) lookahead as usual.
剩下两种#tr[lookup]类型的工作方式和它们在#tr[substitution]规则中类似,唯一的差别是需要把`sub`命令换成`pos`命令。其他的关于可选的前瞻、回溯,以及用撇号标识操作主体的语法都和之前一样。
// In a contextual positioning rule, your intersperse the input glyphs with value records. For example, you can create not just kern *pairs* but kern *triplets* (or more):
在#tr[contextual]#tr[positioning]规则中,可以在#tr[glyph]之间插入数值记录。比如你可以创建#tr[kern]的升级版,调整三个#tr[glyph]间的间距:
```fea
position @number' -25 colon' -25 @number';
```
// This rule reduces the space around a colon when it is surrounded by numbers.
这条规则在冒号两边都是数字时缩减了间距。
// As with a chained contextual substitution rule, in a chained contextual positioning rule, you can intersperse the input glyphs with other positioning lookups. This is where things get *very* clever. Let's take an example from the Amiri font. Suppose we have the sequence lam, beh, yeh barree (لبے). Amiri wants to wrap the yeh barree underneath the glyph sequence and to move the nukta of the beh out of the way for a more calligraphic feel.
正如#tr[chaining]#tr[contextual]#tr[substitution]一样,在#tr[chaining]#tr[contextual]#tr[positioning]时你可以调用其他#tr[positioning]#tr[lookup]来处理输入#tr[glyph]。这是字体让变得智能起来的重要功能,我们来看 Amiri 字体中的一个例子。假设现在输入序列是`lam beh yeh barree`(#arabic[لبے]),Amiri字体为了展现一种更加书法化的样式,希望将`beh`中的`nauka`符号脱落,并且让`yeh barree`穿过整个#tr[glyph]:
#figure(
placement: none,
)[#include "amiri-kern.typ"]
// It does this with a chained contextual substitution:
它使用#tr[chaining]#tr[contextual]#tr[substitution]实现这一目的:
```fea
lookup ToothYaaBariFina {
sub @aBaa.medi by @aBaa.medi_YaaBari; # nukta 脱落
# ...
sub @aYaaBari.fina by @aYaaBari.fina_PostToothFina; # 延长 yeh
} ToothYaaBariFina;
feature calt {
# ...
sub [@aBaa.medi]' lookup ToothYaaBariFina
[@aYaaBari.fina]' lookup ToothYaaBariFina;
}
```
// This almost works. The problem is that the barree of the yeh is now sticking out too far to the right for a narrow glyph like lam, and poking its nose into the words to the right of it. What we need to do is add some advance width to the lam in *this particular situation*. Let's reword that: if we have a narrow initial letter, followed by a beh in yeh-barree form, then we need to adjust the advance width of the initial letter. But we can't say exactly how much we need to adjust it by at this stage, because it depends on what the initial letter is; so we need to turn that into a lookup.
这基本上是可行的。但是`yah barree`现在拖得太长了,以至于如果词首是像`lam`之类的窄#tr[glyph]的话,这条尾巴就会伸进它右边的单词里了。我们需要做的是,在这种特殊场景下为`lam`增加一些#tr[advance width]。我们来整理一下:如果词首是一个比较窄的字母,然后跟着`beh`和`yah-barree`,那么我们就需要调整词首字母的#tr[advance width]。但我们没法直接给出到底要调整多少,因为它取决于词首字母是什么。所以我们将这个调整写成另一个#tr[lookup]。
// We can translate that description above into feature code. First, we set up the context for the positioning lookup:
我们逐步将上面的描述转换为特性代码。首先,我们写一个控制在何时启用#tr[advance]调整的上下文#tr[lookup]:
```fea
@narrowInit = [@aAyn.init @aFaa.init @aHeh.init @aLam.init @aMem.init @aSen.init @aTaa.init uni06BE.init]
feature kern {
pos @narrowInit' lookup AvoidYehBaree @aBaa.medi_YaaBari;
}
```
// Next we write a lookup which adjusts the advance width of each of the "narrow" initial characters appropriately to stop the yeh baree poking out:
然后再写具体如何调整#tr[advance width]的#tr[lookup],其中每个词首窄#tr[character]都按照`yeh baree`伸出多少来进行调整:
```fea
lookup AvoidYehBaree {
pos @aAyn.init <0 0 215 0>;
#...
pos @aLam.init <0 0 466 0>;
#...
} AvoidYehBaree;
```
// And here's the result of those two features - the contextual alternate, and the kerning feature - working together:
把`calt`(#tr[contextual]替代)和`kern`两个特性同时开启,就得到下面的效果:
#figure(
placement: none,
)[#include "amiri-kern-2.typ"]
// That, thankfully, is probably as complicated as it's going to get.
不用太担心,这几乎就是最复杂的场景了。
|
https://github.com/dyc3/senior-design | https://raw.githubusercontent.com/dyc3/senior-design/main/harness-requirements.typ | typst | = Test Harness Requirements
For the test harness to be effective, it must cover as much code of the Balancer as possible. To do so, typical unit tests are insufficient for complex cases like network fragmentation, adding and removing Monoliths, etc.
== Requirements
#import "lib/requirements.typ": *
#figure(
table(
columns: 1,
[#req("Must be able to generate simulated traffic for fuzz testing.", shouldHave)],
[#req("Must be able to cover as much of the load balancer as possible. (Code coverage)", mustHave)],
[#req("Must be able to emulate the behavior of Monoliths and Clients.", mustHave)],
[#req("Should be able to test multiple instances of the balancer at once.", wouldBeNiceToHave)],
[#req("Should have the option to run tests using a real Monolith", wouldBeNiceToHave)],
[#req("Must be able to specify tests that emit traffic in a specific order. (Sequential tests)", mustHave)],
[#req("Should minimize the amount of code that needs to be written to create a test.", shouldHave)],
[#req("Must be runnable in a CI environment.", mustHave)],
[#req("Must be able to generate enough traffic to stress test the balancer.", shouldHave)],
[#req("Must be able to detect when the Balancer panics or otherwise crashes when a test is executing.", mustHave)],
[#req("Should be able to run tests in parallel.", shouldHave)]
),
caption: [Harness Requirements]
)
== Example Tests
In this section, we will go over some example tests that the test harness should be able to run. In each figure below, the dotted line originating from each named example client represents the appropriate destination.
=== Test: Balancer should route traffic to the correct Monolith
Scenario setup: There should be 2 Monoliths, both with 1 room each. There should be 2 clients connected to the Balancer trying to connect to the respective rooms. (@Figure::2m2r2c)
#figure(
image("figures/harness/test-scenarios/2m2r2c.svg", width: 50%),
caption: [Routing Users To Correct Monolith]
) <Figure::2m2r2c>
Desired sequence:
+ Client Alice connects to room Foo
+ Client Bob connects to room Bar
+ Client Alice sends a chat message to room Foo
+ Assert that Monolith 1 received the message from Alice
+ Client Bob sends a chat message to room Bar
+ Assert that Monolith 2 received the message from Bob
In the instance where multiple Monoliths are active, when a client connects through the Balancer it should route them first to the appropriate Monolith, and then to the appropriate room. If a client chooses to send a message after successfully joining the message should broadcast to the entire room, but not outside of the given room or Monolith.
=== Test: Balancer should route traffic to the correct clients
Scenario setup: There should be 1 Monolith with 2 rooms. There should be 3 clients, 2 connected to the same room and 1 connected to the other room. (@Figure::1m2r3c)
#figure(
image("figures/harness/test-scenarios/1m2r3c.svg", width: 50%),
caption: [Routing Users To Correct Room]
) <Figure::1m2r3c>
Desired sequence:
+ Client Alice connects to room Foo
+ Client Bob connects to room Foo
+ Client Carol connects to room Bar
+ Client Alice sends a chat message to room Foo
+ Assert that Client Bob received the message from Alice
+ Assert that Carol did not receive the message from Alice
When multiple clients connect through the Balancer to a monolith containing multiple rooms, they should all first be routed to the Monolith, and then to the appropriate room. Clients should only receive messages from users in the same room.
=== Test: Balancer should handle losing a Monolith gracefully
Scenario setup: There should be 2 Monoliths, both with 1 room each. There should be 2 clients connected to the Balancer trying to connect to the respective rooms. (@Figure::2m2r2c)
#figure(
image("figures/harness/test-scenarios/2m2r2c.svg", width: 50%),
caption: [Routing Users When Monolith Goes Offline]
)
Desired sequence:
+ Client Alice connects to room Foo
+ Client Bob connects to room Bar
+ Monolith 2 goes offline
+ Balancer kicks Bob
+ Bob reconnects to room Bar
+ Balancer routes traffic to Monolith 1
+ Monolith 1 creates a new room Bar
+ Assert that Bob is in the new room Bar
In the case of multiple Monoliths, when one goes offline all clients connected at the time of the crash are kicked from their rooms. When a client attempts reconnection, if the given Monolith is still offline the client should be routed to a Monolith that's still online, and the room they were in before disconnecting should be reloaded within the new Monolith.
|
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/030%20-%20Amonkhet/001_Impact.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Impact",
set_name: "Amonkhet",
story_date: datetime(day: 29, month: 03, year: 2017),
author: "<NAME>",
doc
)
#figure(image("001_Impact/01.png", width: 100%), caption: [], supplement: none, numbering: none)
#emph[Deciding that a proactive approach is best, most of the Gatewatch has gone after Nicol Bolas on Amonkhet to attack him head-on before he can set more of his schemes in motion. With no plan and no information, five planeswalkers set off to take down an elder dragon on a mysterious and unfamiliar plane.]
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
#emph[A scalding wind danced across the dunes, its invisible talons etching cryptic lines in the endless sand. It cast sprays of dust and grit airborne in empty tantrums, heated into a burning fury by the twin suns overhead. As dawn broke into morning, the first sun scorched its path across the sky, while the second remained fixed in its point on the horizon. Below, the wind flitted along the vast expanses of desert, picking up speed and ferocity, growing into a growling, tumbling sandstorm. Soon, its howl drowned out all else, fangs bared as stinging sand swirled and slashed at anything in its path. It gnawed at stony outcroppings, the remnants of monuments both natural and designed, and bit at the exposed flesh of wild beasts too slow to flee before it.]
#emph[At the height of its fury, near its wild and blustery heart, a sudden shimmer of light, a blurring of the air, a ripple of shadow, a spark of flame, and a flash of green danced within the sandstorm. Five figures stood where none were moments ago, caught by surprise in the blinding sands.]
#emph[The wind carried on, oblivious to their presence.]
#figure(image("001_Impact/02.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
#emph[Earlier, on Kaladesh . . .]
= JACE
I watched as Ajani stalked away from us, pulling his cloak closer and vanishing in a flash of light. My mind followed after him briefly as he disappeared from my reach, his thoughts fading within the impenetrable Blind Eternities. Behind me, Gideon cleared his throat, and I turned and gave him a quick nod. "We're in the clear."
"Let's move quickly then," Gideon replied. "And you're sure you know of the place we are to meet him after, Liliana?"
Liliana raised an eyebrow, a languid hand drifting up to tuck a stray strand of hair behind her ear. "My dear Gideon, I've traveled to countless worlds in the Multiverse in the centuries #emph[before] you were born. I know many places, and I know the place Ajani spoke of especially well."
"We'll trust you to navigate, then. Both to Amonkhet and to our rendezvous after." Gideon flashed what I'm sure he intended as a warm smile at Liliana.
Liliana gave an exaggerated bow back. "I'm flattered and honored by your trust."
I cringed. #emph[He's trying, Liliana. You could cut him some slack.] Liliana's eyes darted in my direction, and she gave me a wink. I suppressed the urge to roll my eyes.
"What is our plan once we get to Amonkhet?" Nissa's question cut through the lingering silence.
"Pop in, find a dragon, roast a dragon." Chandra sat on the short wall at the edge of the rooftop, adjusting her gloves. Gideon frowned, but nodded.
"More or less. Liliana leads us there. We go to Amonkhet and learn what we can of <NAME>'s plans, then neutralize the threat he poses—either by stopping his schemes, or, if necessary, taking him out."
"Don't expect that to be easy," I warned. "We don't know if Tezzeret has already found him and warned him about us, or how much he knows, or if he is prepared for potential interplanar threats—"
"Blah, blah, blah." Chandra waved her hands, as if trying to disperse my train of thought midair. She hopped off her perch and walked toward us. "We're burning daylight and our chance at surprise. Let's do this."
The five of us gathered in a circle. I looked around at my companions and, not for the first time, marveled at the oddity of our little gathering. Beyond us, Ghirapur slowly stirred to life, the sounds of the street and the denizens below rising with the sun. Little did they know, just above them, an indestructible soldier, a necromancer, an elven druid, a pyromancer, and a mind mage prepared to venture to another plane of existence.
#emph[What strange friends I've made.]
#emph[A second thought crept from the corners of my mind, one I tried pushed away.]
#emph[How strange it is to have friends.]
"See you all in Amonkhet." Liliana began to shimmer as she started to planeswalk.
I watched as the others around me began to shift as well, each form vanishing in a slightly different manner. How other mages cast spells—especially how they planeswalk—has always tugged at my curiosity. Perhaps I'd ask the others, when we all had more time.
Whenever that would be.
I raised my hands, concentrated on the invisible strands of mana around me, and gently pulled.
The world of Kaladesh blurred and wavered, then melted into smears of color, much as an illusion wipes away when its magical threads are unwoven. I felt the now-familiar (yet ever-alien) press of the Blind Eternities around me, the crackle of energy and aether leaving the taste and tingle of fresh rain and lightning on my tongue. We traveled infinitely far yet not at all, standing still yet moving at blinding speeds. Time and space and dimensions folded and unfolded, and I followed behind Liliana (#emph[or was it below—or within?] ) as we pushed through the nothingness between worlds, leaving strange trails and inverted wakes of energy behind us. I #emph[felt] as they arrived, and with a final tug, the colors around me slid back into place, the vague electric taste of illusion and dreams solidifying into reality.
A scorching, gritty reality.
I coughed as the wind swept a fistful of sand into my mouth. The heat crushed down on me, a suffocating and instantaneous weight around my shoulders. A pungent smell of decay crawled up my nose and stayed there, so thick I could almost taste it. I squinted against the blinding sands all around. Closest by, Gideon rippled with golden light, the stinging sandstorm triggering his magical shields as it pelted against him. Nissa hunched low, face cast down, stumbling in the sand. Even Liliana looked slightly wilted as she stood a short distance away, hand held up against the pelting winds, her usual flawlessness marred by the oppressive storm. Chandra alone looked mostly unfazed, hair dancing wildly and one hand scratching at her shoulder armor.
I did not envy those of us in plate mail one bit.
As though on a mission, sand relentlessly poured into my boots and the folds of my shirt. A gust threw my cloak into my face. I pushed the fabric away best I could, taking uneasy steps on the dune. Gideon was shouting something about finding shelter. Through the storm, I saw Nissa attempting to cast a spell. I reached out myself, seeking mana, and found only the dry taste of sand and wastes at my fingertips. Didn't look like shelter would happen—
A jet of white hot flame seared across the sand. Chandra walked forward, focusing her fire on the dune ahead. I took a step back as even greater waves of heat roiled from her and her target. "I got this!" she shouted above the roar of the wind.
= CHANDRA
Man, who woulda guessed Amonkhet would be nothing but a giant pit of wasteland and sand and sun? Wait, make that #emph[suns] , there's #emph[two] of them, what the heck, no wonder it's so hot. Well I mean hot in like a relative sense because Kaladesh had this stifling humidity thing happening sometimes and really everywhere isn't all #emph[that] hot after the lava pits of Regatha, but yeesh everyone else looks like they're melting into watery rice pudding in this dry sandy heat. How miserable can this be?
Then again, I guess this #emph[is] the home of a giant evil dragon who sends evil henchmen out to destroy all that's good on other worlds with their . . . evilness. So never mind. This place makes total sense.
#figure(image("001_Impact/03.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
I turn up the heat, focusing my fire into a white-hot beam. I'd seen craftsmen in Ghirapur do this before, when I was a kid, though they had an aetherkiln and some special powders and stuff. I imagine the idea is the same though. I feel the sand #emph[melting] and grasp the air with my hand, commanding and sculpting the rivulets of molten slag. Those Ghirapur artisans made elegant figurines and fancy parts for ships with delicate, complex, spindly bits. My goal is much simpler. I step forward and shape the still-liquid glass into a simple, crude dome. Just big enough to fit four regular-size people and one Gideon-size people. The glass takes shape, hardening into a semi-clear bubble as grains of sand pepper into its still-soft surface. I drag my hand across one part, fingers not quite touching the surface, creating a small doorway.
"Come in. It's cool. Er, cooling. Er, it shouldn't light your clothes on fire if you accidentally touch it," I yell.
Liliana leads the way, and the rest join her, and soon we're all standing inside, looking out at the blur of sand and dust creating a constant sound like a thousand mothers shushing their children at some kind of weird place where there'd be a thousand mothers and their children gathered, only the thousand mothers is just tens of thousands of grains of sand washing over our little dome in this crazy storm. We all kind of just watch for a bit, and I'm not sure if the others are watching because there's a sort of primal beauty and awe-inducing aspect to the chaotic melee dancing through the air, or if they just didn't want to make eye contact after we came to kick dragon butt and ended up nearly drowning in sand.
"Right. So. What's next?" I ask.
We all sort of look at Gideon, but Jace speaks up. "Liliana, are you sure this is the right place?"
Liliana looks mildly offended. But then, she almost always looks mildly offended, that or bored, or if she thinks no one is looking, contemplative and a little sad. "Of course. I don't forget how to 'walk somewhere if I've been there once."
"Where might we find Bolas on this world, then?" Gideon stands in front of the doorway, blocking the worst of the sand and wind trying to sneak in. Liliana gives him a shrug.
"Unsure. My visit here last time was . . . brief. And some time ago. I didn't exactly get a tour of the place. Much could have changed."
"Nissa. Jace. Can you sense anything that could guide us in the right direction?"
Nissa closes her eyes, and Jace's glow blue. A short moment passes, and Jace shakes his head. "Nothing with minds nearby."
Nissa takes longer, her brows knitting into a tangle of concentration. Finally, she too shakes her head as she opens her eyes. "The mana on this world feels . . . strange. I'm having trouble finding the leylines. They're there, but weak—like the pulse of a sick animal."
Jace nods. "I suppose that makes sense, if Bolas created this world."
"Or if he killed a living one to claim it as his own," Liliana cheerfully offers.
"No ideas on where we may find him, or if there's any life on this plane? Any leads at all?" Gideon does the Gideon thing where he stays focused on the task at hand. I do the Chandra thing where I am mostly listening but also mostly looking outside the nearest window. Which in this case is the entire dome we're in. Because glass.
That's when I see it.
"I think I know where to go."
Everybody turns to look at me. I point outside.
"Ah," says Nissa.
"Well then," says Jace.
"He's not subtle," muses Liliana.
"How . . . did we miss that?" asks Gideon.
Visible even through the sandstorm, against the murky red-orange of the horizon, the massive shadow of two horns pierces the sky—a perfect match for the image of Bolas that Jace had shared with us back on Kaladesh the night before.
"Looks like we're definitely in the right place, at least," I offer.
#figure(image("001_Impact/04.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
= NISSA
We decided to wait out the storm. Gideon stayed by the entrance, a human shield against the elements. Across from him, Chandra sat, her legs crossed, eyes closed in quiet meditation. For a moment, I followed the rhythm of her breath, seeking borrowed solace in her journey. A quiet pride buzzed in my chest at her progress—a warm happiness that the small tools I had shared with her helped her find calm. Indeed, she alone seemed most comfortable here. The oppressive heat drained my energy, and the rest of us looked worse for the wear already. I wondered, not for the first time, how we would thwart or destroy an ancient dragon. <NAME> Liliana spoke constantly of <NAME>'s power and cunning. We would need to be at our full strength to face him. And yet, here we were . . .
I closed my eyes and slowed my breath, pushing away the sand and heat. #emph[I need to trust my companions. My friends.] I inhaled, sending my thoughts through my body, isolating tensions and releasing where I could. I hesitated for a moment, then pictured a flowing river—borrowing the imagery I lent Chandra in her meditation back on Kaladesh. Perhaps a journey downstream would help to quench some of the endless heat buzzing in my head.
It was strange, to lean upon others, to share my burdens and shoulder the worries of those outside myself. It came easier with some in our group than others—but all of it still felt foreign. Yet we were undeniably stronger together, the bonds of trust perhaps as powerful a force as an animist's connection to the land. #emph[Trust. Understanding. I am working on both.]
I breathed in, drawing air and mana in equal measure, my heart and thoughts reaching out to this strange world, seeking the tendrils of life and vitality, the familiar strands of leylines that crisscross all worlds.
Again, all I felt at first was a yawning darkness, an endless maw of decay and rot.
I had faced worlds devastated by monstrosities in the past. On Zendikar, the unnatural, chalky #emph[emptiness] left in the wake of the Eldrazi titans. On Innistrad, corrupted leylines wild and toxic, impossible to channel or control. Yet this felt different. Most worlds, regardless of outside corruption or influence, harbored a balance of death and life magic, wrapped up in an intricate web with its leylines, interweaving into a complex spiral made of knitted nodes of power. Yet here on Amonkhet, the shadow of death dominated all I could reach, as if the world itself favored the silence of the dead.
I focused on the weak strands of life energy I could find—more ghosts of leylines than leylines proper. I traced along their tenuous strands, and my mind left my body behind. My breath fell in tune with the weak pulse of the world, gaining speed as I flew over the dunes, finally bursting out on the other side of this storm, to see—
"Nissa. We're moving out."
I opened my eyes, and Chandra swam into view. She knelt next to me, her face scrunched in mild concern. Behind her, Gideon, Jace, and Liliana had already left the glass dome and stood waiting at the top of a dune. The sandstorm seemed to have passed, dwindling into remnant gusts of wind sweeping the sands in wide arcs.
"I think I've found something. In the direction of the horns."
Chandra's frown broke into a grin, her freckles a mirror of the now-past storm. "Oh good—glad my plan of 'walk toward the big thing in the distance' has some backup."
She stood and held out her hand. I hesitated for just a moment, then reached out, and she helped pull me up. #emph[Trust. Understanding.]
"Let's go kick some dragon butt." Chandra marched ahead toward the others, and I followed.
That's when the sand dune #emph[came alive.]
= LILIANA
The first ones attacked Jace. Because that's the sort of luck that boy has. One moment, we were standing, waiting for Chandra and Nissa. The next, rotting hands burst forth from the sand, grabbed Jace by the legs, and pulled him under. Jace let out an undignified little yelp as he sank up to his waist. Only Beefslab's reflexes saved Jace as the larger man turned and grabbed Jace's arm with one hand, keeping him from slipping under. I let loose a barrage of necrotic energy, withering the already-desecrated limbs grasping at Jace into dust. Around my feet, the sand broiled as more hands reached up, grasping hungrily at the air. I stepped back, cloaking myself in an aura of decay that withered all flesh that came near me.
#figure(image("001_Impact/05.jpg", width: 100%), caption: [Art by Daarken], supplement: none, numbering: none)
Panicked yells and the unfortunate stench of charred rot floated up toward me from back down the dune. I looked over to see Chandra and Nissa just outside the little glass dome, surrounded by a seemingly endless mass of undead, dried and desiccated by the heat and sands, with more rising from the shifting ground near them. Nissa had drawn a sword from her staff (a cute little trick) and cut down the charging zombies nearest to her while Chandra sent streams of flame scorching temporary openings across the hordes. Yet as fast as she could burn them, more mummified dead rose from the sands to replenish their ranks.
I smiled.
The Multiverse was filled with planes, each with their own wonders and horrors and infinite curiosities. But one thing was always the same: things died.
And those that were dead belonged to me.
I raised my hands and dark tendrils billowed forward, subtly ensnaring the undead corpses closest to me. I felt my magic touch and bind with their core, and I spoke a single word.
"#emph[Obey.] "
One by one, the undead I claimed halted in their approach. I dropped my aura of decay, focusing my powers on seizing command of the rising dead. A sudden spray of sand burst mere steps from my feet as a jackal-headed figure erupted from the ground, springing forth and swinging wildly with a curved sword. I stumbled back, cursing my carelessness—just as the wet sound of steel through flesh sloshed against my ears and a spray of ichor jetted across the sand. I watched the top half of the jackal figure's torso slide off the rest of his body as the strange, flexible blades of Gideon's sural danced back to his side. Jace stood back to back with Gideon throwing up illusions that did little to distract the pressing horde of undead assaulting the pair.
"You all right?" Gideon shouted.
"I could've used that one, Beefslab," I called back, letting bored disappointment seep into my words. His face soured, and I suppressed a grin. It's so simple provoking Gideon's frustration. Yes, his intervention covered for my moment of vulnerability. Yes, his usefulness was undeniable. No, I'd never need to let him know that.
Still, I should help him and Jace out. Play the role of helpful teammate and all. I willed my small squadron of undead forward.
"#emph[Assist.] "
They launched themselves against the undead attacking Gideon, and I watched as he shifted his own assaults to seamlessly support my minions. His sural struck with surgical precision, covering the exposed flanks of the undead under my command, cutting down foes that threatened to overwhelm. His effectiveness has undeniably improved, even just from the last time he fought alongside my raised ones, back on Innistrad.
Yes. Definitely useful.
I turned my attention back toward the hordes pressing in against Chandra and Nissa, just in time to watch one mummy land a solid swipe on Nissa's shoulder, and another bite into Chandra's armored forearm before she ignited it into a charred cinder. #emph[No time to gain full control.] Instead, I cast a much shallower link to a greater number, touching as many as I could before issuing one simple command:
"#emph[Flee.] "
#figure(image("001_Impact/06.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
Swaths of undead turned away, shambling off in different directions. Some ran pell-mell over the dunes; some burrowed back into the sands. The thinned numbers still pressing their assault fell quickly to sword and flame as Nissa and Chandra struck with impressive synchronicity.
As I watched them cut down the straggling numbers, my fingers brushed against the Chain Veil hanging at my side. What a luxury, to not need to draw on its powers, when I now had other planeswalkers to do the heavy lifting for me! Sure, directing #emph[their] focus was significantly more . . . #emph[challenging] than using the veil or commanding my undead servants. But I had gotten them to come to Amonkhet. And if I played my hand well, they would probably help me accomplish the real reason why I came—and best of all, do it of their own volition.
I looked around. Gideon stood awkwardly eying the remnants of my squadron, having dispatched the rest of the undead. Chandra and Nissa now walked up the hill, catching their breath from the fight. Jace . . . was conspicuously missing.
I frowned. Knowing him, he probably vanished from sight during the fight to "gain a better vantage point." Also known as turning invisible when things went poorly. He had a knack for disappearing when a situation turned sour, and I knew he wasn't much help in this fight. When you're a mind mage, the undead are a weakness. No brains means nothing for your powers to manipulate. As the two of us had determined many times throughout our numerous . . . encounters.
But maybe he vanished because a zombie managed to drag him under after all.
I sighed, and began reaching out to the corpses under the sand, just to make sure I wouldn't find a squirming, struggling Jace in the clammy embrace of some desert dead. My focus was distracted, and I didn't hear what exactly Nissa shouted as she suddenly began sprinting toward us.
Then all went dark.
= JACE
#emph[I hate this plane.]
Over my shoulder, I watched Gideon smash his fist into another undead, crushing its skull with a sickening crunch. Another zombie (must be one of Liliana's) leapt in front of the one charging me, dragging it to the ground, the duo kicking up sprays of sand as they tore at each other's limbs. I took the opportunity to vanish, throwing up a quick invisibility spell, and ran for the top of the dune.
#emph[Find a clear vantage point. Formulate a plan from this chaos.]
I already had my fill of <NAME>'s little hellscape of sand and heat and endless dead. We needed to get out of this desert and figure out a better angle of approach. Even Nissa—quiet and shy Nissa—had spoken up asking for a plan before we left. I knew I wasn't helpful in this fight, but I could try to think ahead.
As I crested the top of the hill, I turned to watch the melee. Chandra and Nissa struggled against a throng of undead, but already Liliana seemed to seize the upper hand, gaining control over swaths of them, sending waves fleeing back into the desert. Meanwhile, Gideon . . . was Gideon. A blunt force instrument, albeit an efficient one. And one working in effective tandem with the zombies newly under Liliana's control.
It was strange seeing the two of them working well together and strange to witness Liliana play nice with others in a fight. Perhaps she truly was changing. Perhaps she meant her oath and believed in the purpose of the Gatewatch, and despite her antagonism of Gideon, truly cared about our mission.
#emph[Perhaps I really should know better.]
My years of . . . #emph[entanglement] with Liliana left me feeling like I knew less of her now than when I started. The more I learned, the more unsolvable she became. Almost as unreadable as her zombies, she never ceased to surprise me—for better, or more often, for much, much worse. And yet, even now, she drew me in. So often, I found myself defending her to the others, even as I reminded myself to take caution around her.
I shook my head. I wouldn't unravel the mystery of Liliana here, standing on top of this pile of sand. Instead, I turned my attention toward the horns in the distance.
#emph[What do we know? What's <NAME>'s plan? What's our best next step?]
This was an inhospitable plane. Nissa mentioned the world felt more dead than alive. Zombies apparently just lurked casually in hills, waiting to pop out and devour passers-by.
Why would Bolas make a world like this his base of operations?
What secrets hid beneath the sands? Was this truly a dead world? And what purpose did those grandiose horns in the distance serve? Sure, it was easy to think <NAME>'s ego was such that he'd build a mighty monument to himself just because he could. Yet Bolas wasn't one for wasteful, narcissistic grand gestures. No, his gestures always served hidden purposes several layers deep #emph[and] were excessively narcissistic and grandiose.
I considered the possibility of planeswalking away then walking back in an attempt to arrive at a location closer to the horns, but quickly discarded that line of thought. Traveling to specific locations, even on a very familiar world, was immensely challenging. To do so on a foreign plane would require getting very lucky. Plus, if Bolas did have guards or alarms set against interplanar intervention on his world, I didn't want to potentially trip them more than once, giving him more opportunities to realize we have found him.
No. We needed to push on. However, our arrival on this plane so far has resulted in landing in a sandstorm and stepping into a zombie ambush. Our next steps had to minimize randomness and chance and maximize our strengths. We needed to gain our footing here and press on toward the horns, fully on our guard. No more surprises—
Nissa's yell yanked me out of my thoughts and back to the battlefield below.
. . . #emph[Did she just say—]
= NISSA
"SAND WURM!"
#figure(image("001_Impact/07.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
I shouted out at Liliana, but my warning came too late. The tremors I felt underground erupted in a geyser of sand right beneath her, and I watched in horror she disappeared into the gullet of an enormous wurm. A short distance away, a second wurm breached the sands with a bellowing roar that shook the thick desert air. I grasped at what little mana I could find, drawing desperately at energies that weren't there for spells I knew deep down I couldn't cast in this dry wasteland.
"Take it down!" Gideon roared, charging forward—but the undead previously under Liliana's control turned and tackled him, and he disappeared under a pile of monstrosities.
#emph[Her zombies turned—Liliana is dead.]
The thought clung stubbornly to my brain even as I tried desperately to pull it out of the way so something useful could take its place—a plan, an idea, anything.
Underfoot, other tremors deep in the sand reverberated up my spine, rumbling as they grew closer. Fear and doubt seeped into my heart and overflowed across my tongue, bitter and acrid.
#emph[Breathe. Act.]
#emph[Trust.]
"Chandra, stop that wurm! More are coming!" I charged forward, blade gripped tightly in my hand. I couldn't draw the mana I needed for the spell I wanted, but I #emph[could] cut down the undead now besieging Gideon. I #emph[could] trust that Chandra would stop the wurms. I #emph[could] believe that Jace would think of a plan, wherever he was. With a cry, I slid under the wurm now crashing toward me, spraying sand and tucking into a roll. My feet landed beneath me and I leaped, closing the final distance between myself and the mass of undead, my blade cutting into rotting flesh as I sliced my way toward Gideon.
= CHANDRA
HOLY FIERY RIVERS OF REGATHA WHAT IN THE WORLD IS THAT THING AND DID IT JUST EAT LILIANA NO WAY WHAT THE HELL DIE IN A PILLAR OF FLAME YOU BIG FAT STUPID WAIT DID NISSA JUST SAY THERE WERE MORE COMING OH GEEZ YUP THERE THEY ARE GET OUT OF THE WAY I'LL ROAST YOU ALL GIVE BACK LILIANA YOU STUPID SONS OF INBRED BANDARS—
= GIDEON
Endless teeth. Hands that ended in talon-like claws. The press of putrid flesh all around me. I strained to bring my sural to bear, but the sheer number of them held me down. My defenses shimmered, the familiar golden glow dancing before my eyes as they chewed and grasped, pressing my face into the sand and tearing at my limbs, trying to rip me asunder.
#figure(image("001_Impact/08.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
With great effort, I managed to pull my left leg under my body, and pushed upward with all my might, shoving a few of them off and rising to half-standing. At the same moment, the whistle of metal slicing through air whizzed near my ear, and I turned to see the blur of Nissa's sword. Suddenly the limbs of the zombie holding my right arm were no longer attached to its torso. A triumphant laugh escaped my lips as I pushed mana into my sural. With a flick of my hand, the thin, ribbon-like blades whipped around, their curving, glowing arcs cutting down a swath of the zombies. Within moments, Nissa and I completed our deadly bladed dance, her elegant flips and precise cuts weaving seamlessly within the concentric paths of my sural. We ran past the ground now littered with severed parts of the mummified dead, once again laid back to rest, and sped toward Chandra, who had drawn the wurms away with her jets of fire.
"Four?" I yelled to Nissa as we ran.
"Six. Two more coming," Nissa corrected.
My insides clenched, but I pushed on, my next question more urgent than my apprehension at those numbers.
"Liliana—is she—"
Nissa pointed at one of the wurms trying to flank Chandra. I ran faster.
Nicol Bolas's realm held far more horrors than we could have imagined.
= LILIANA
.
.
.
#figure(image("001_Impact/09.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
= CHANDRA
"Raaaaaargh!" The yell tears out of my throat as I channel power into the inferno, engulfing one of the wurms in a billowing pyre. It finally falls, torched and charred, sand spraying wide.
My breath heaves heavy and ragged. "Who's next?" I shout, more for my own benefit than the wurms because they're wurms and probably don't speak any words and what do they know anyway. A blur of motion to my right and a bellowing roar—I leap out of the way as one of the wurms dives at me. How the hell does a giant wurm sneak up on a person?
I nearly jump out of my skin as I turn and see a behemoth of a blue, glowing scorpion appear out of thin air, looming in front of me. I jump again as Jace pops into sight a second later by my side. He grabs my hand and puts a finger to his lips and we both vanish just as the scorpion illusion goes skittering across the sand, drawing one of the wurms chasing after it, diving through the dunes as if they were cresting waves of water and not, you know, fairly solid sand.
"Their favorite food," an invisible Jace mutters, his hand still clenching my own. I can feel his pulse frenzied and wild and I resist asking what else giant wurm monsters thought about.
I see Gideon and Nissa racing toward us, with Gideon waving his sural and yelling, trying to draw the attention of the wurms. The two remaining (wait, four, when did two more show up?!) turn and wind their way with unexpected speed toward Gideon, the sound of scales on sand cutting across the dry, dead air. My eyes follow one of them and I pull free of Jace's hand to sprint after the wurm. I throw twin bolts of fire at it, and they glance harmlessly off its body, but it peels off from the others to circle back toward me. Behind me Jace is yelling something probably dumb. I clench my fists, focusing points of white hot flame between my fingers.
#figure(image("001_Impact/10.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
But before I can unleash my blast, the wurm skids to a halt. I'm caught off guard and the fires in my hands flicker as I lose focus. I watch as the wurm rears back and begins convulsing. I back away because when I see humans do this it usually is followed by projectile vomiting, and I do #emph[not] want sand wurm vomit on me no thank you.
This wurm doesn't vomit. Instead, its chest #emph[caves in,] then #emph[crumbles to dust.] I watch, horrified, as Liliana steps forward out of the wurm, guts and stomach acid and viscera sizzling off her, a weird chain thingy floating in front of her face all aglow with purple light. She steps onto the sand, and the wurm wobbles then collapses to one side beside her, its innards oozing out of the gaping Liliana-sized hole, its outer shell a gray, dead color. Liliana takes a few more steps across the sand as though in a trance. Markings on her skin glow with the same purple light as the chain, and her eyes are blank and expressionless. I stare as wounds across her body seem to knit shut and wurm slime continues to dissipate as though burned off by some heat, but I feel nothing from her. If anything she seems colder and more distant than ever, an inverted star searing across the sand.
"Liliana?" I take a step forward, and the purple glow from her #emph[everything] fades, and she collapses in a heap.
= JACE
#emph[This is not good. This is seriously, seriously, not good.]
= GIDEON
The first sand wurm dove at me, its mouth agape, ready to swallow me whole.
Perfect.
I ran forward and leaped into its open maw, punching my hand forward and sending my sural spinning and slashing spirals down the wurm's throat. The blades sliced through its soft innards, and the burn and suffocating press of its throat muscles gave way to daylight again as I eviscerated my way back out its neck in a spray of blood and fluid.
One down.
The wurm fell with a #emph[wumph!] onto the sands, and I went sprawling to one side. I barely picked myself up when the tail of a second wurm caught me in the chest with the force of a charging rhox, and I went flying backward, crashing into another dune before rolling to a stop.
I laid on my back and squeezed my eyes shut, trying to catch my breath.
I probably needed a different approach for the remaining wurms.
#emph[Gideon. We need to leave and regroup.] I sit up with a start. Never going to get used to Jace's voice just #emph[appearing] in my mind. A quick glance around had me springing to my feet just as one of the remaining wurms barreled my way.
#emph[I think we can handle this, Jace.] I readied my sural, trying to split my attention between the wurm and Jace's voice in my head. #emph[Is Liliana—]
#emph[Alive. But she's in bad shape.]
I grimaced. The wurm lunged at me, its mouth closed, its head a battering ram of force. I rolled out of the way and felt a cascade of sand pour over me, displaced from the wurm's mighty blow. I watched the distended sand churn as the wurm burrowed around, charging at me again from underground.
#emph[Hang on. Nissa and I are coming.] I crouched down, and as the wurm struck, I leapt back, bringing my sural sweeping over my head, raking along the wurm's underbelly as it rose into the air. Metal cut through softer scales and the wurm let out an enraged shriek. I rolled sideways to my right as the wurm fell, writhing in the sand, injured but not quite dead.
A short distance away, I saw Nissa charge #emph[toward] a wurm as it emerged from beneath the sands, landing nimbly on its head. The wurm writhed to throw her off, but she moved too quick—in a blink, she drove her sword with both hands down, piercing its skull with a squish, and rode the wurm as it crashed back down to the ground.
"Nissa!" I called out. "Liliana needs—"
"Jace told me." Nissa pulled her blade from the wurm's skull, and in a flash of green light it resumed the shape of her staff. We fell into lock step as we ran toward Jace and Chandra, the two kneeling over a crumpled figure that must've been Liliana, the corpse of a wurm inert behind them.
Jace looked our way as we ran, his eyes aglow. #emph[We should retreat. Back to Kaladesh. Come up with a better plan, a different approach.]
#emph[Hang on, Jace.] I frowned at the worry echoing from his thoughts, and tried to evaluate the situation. The surprise of the attacks inarguably got the better of us, but we survived and managed to neutralize the threats. Liliana was badly injured, but alive. Nissa could see to her wounds, and we could press on. Leaving now, just to return later to potentially more trouble, hardly seemed the best course of—
That's when I noticed the wurm behind Jace stirring.
= NISSA
I felt it before I understood what it was—a sudden shift in the air, like the quiet pressure right before the bursting of a rainstorm. Only this shift was a magical one, a surge in ethereal tensions, a pull on the pulse and shadow of the world's leylines. Some power—ancient, deep to this world—stirred. I slowed in my running, distracted and curious, looking around for what changed. Gideon's shouts of alarm drew my attention back to Jace, and that's when I finally noticed, too late.
#figure(image("001_Impact/11.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
The dead wurm behind them lurched up, a massive hole still visible in its chest. With unnatural speed, it lashed its tail out, sending Chandra and Jace sprawling. I watched in horror as they both bounced across the sand like pebbles skipped on a lake, landing in still heaps.
#emph[The dead are cursed to walk in] #strong[undeath.]
The truth of the land seemed to boom from the plane itself—echo from the sickly leylines and soul of the world. The strange sickness. The constant presence of rotting decay I felt since our arrival.
This world suffered an ancient, powerful curse. One that inverted and subsumed the cycle of life and death itself.
Dread poured over me, a sudden icy downpour sending shivers down my spine, as I turned back to the other slain wurms.
= GIDEON
I doubled my speed, charging toward the undead wurm now bearing down on the unconscious form of Liliana when the chilling roar and rumble of sand behind me pulled my attention back. Two zombified wurms erupted from the sand. I watched as Nissa managed to dive out of the way of the first one, only to have the second coil its massive body around her. "No!" I shouted as Nissa disappeared from my sight, the wurm's scales flexing as it squeezed tight.
Time slowed.
Horror took grip of my heart.
My eyes flitted between two impossible choices.
#emph[Save Nissa from the crushing grip.]
#emph[Save Liliana from looming death.]
#emph[Either way, another friend will die, once again, due to my hubris.]
I stood, suspended, for a fraction of a second, fully aware that not making a choice meant choosing death for them both.
I took a step, pulled by instinct more than conscious thought.
Suddenly, a dazzling light burst from the horizon.
I threw up an arm and shielded my eyes on reflex as a force knocked me flying back through the air. The next instant, my mind had to catch up with what it saw.
A massive arrow, blazing with burning white light, pierced the wurm that loomed over Liliana's unconscious form. I watched, stunned, as the wurm withered away, its body turned to ash. The arrow vanished, as though a sunbeam glancing off the reflective sands, as the remnants of the wurm blew away in the wind.
The remaining wurms, both undead and living, roared and began to flee. The one that held Nissa left her unconscious form unceremoniously behind, and I ran to her. Before I even reached her, a giant blur of gold and red charged across the sands, moving with such speed and zeal that I could barely follow its movements. Only when it caught up to the wurms did I see its form.
#figure(image("001_Impact/12.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
She towered above me, standing at the height of a dozen men, golden headdress gleaming in the sun, a massive, two-pronged staff piercing one of the undead wurms. Her body glowed with radiant power, human-like in all her features save her head, which bore a resemblance to a jackal. Silver, fathomless eyes regarded me, and I felt her gaze pierce through me. She withdrew her weapon from the wurm, and like the one shot by the unseen archer, this wurm also turned to dust. The remaining undead wurm burrowed beneath the sand, but with otherworldly speed, she leapt forward and drove her staff into the ground. The earth rumbled, a muffled dying squeal reverberated through the dunes, then all was still.
The lonely howl of the wind was the only sound as the figure stood. I started walking toward her, and she turned her full gaze my direction. I felt my heart fill with a golden fire, my steps faltering as her mere presence washed over me, robbing me of breath. Then, with the subtlest of nods, she broke away and dashed toward the horizon in the direction of the looming horns before disappearing behind a massive ridge of sand in the distance.
I slumped to my knees, surrounded by my scattered, unconscious friends, my mind as weary as my body.
#emph[There are gods on Amonkhet.]
Of everything I've seen on this world—unrelenting sandstorms, undead hordes, giant sand wurms, the dead returning to life—this was the least expected and the most strange.
My mind and heart were torn in infinite directions. I was a small boy on Theros again, hearing tales of powerful gods and vengeful deities. A rebellious teenager, seeing the chaos sown by their fearsome strength and cruel vanities of those gods. A young man, standing in their exhalation and suffering their unforgiving wrath, witnessing their casual meddling in human affairs and careless disregard for mortal life. My faith and fear and hopes in them weaved and tightened into a knot I had not thought about in years, out of neglect and purposeful avoidance.
Yet they were here on Amonkhet.
They were here on the world of <NAME>.
And my friends were all alive because of them.
And she burned with an undeniable righteousness. Golden light, a smiting staff, aided by the arrows of another unseen presence, scorching away undeath and darkness.
I don't know how long I kneeled in the sand. Slowly, my thoughts returned to my body, to my broken friends, and I willed myself to stand. Slowly, I roused and gathered my friends. Slowly, we nursed our injuries, healed ourselves the best we could.
I tried to explain what happened. What I bore witness to. They didn't fully understand. I could see Jace's skepticism, Liliana's contempt, Chandra's confusion. Nissa alone stood apart, stating she thought she felt a presence before she lost consciousness, but her belief in my words stemmed more from mere curiosity than faith.
Arguments erupted over our next course of action, but I knew we needed to press on.
We still had a mission to fulfill, as the Gatewatch.
And I needed to know.
#emph[How can a world supposedly ruled by an evil, ancient dragon, also be home to the divine?]
When we had rested best we could, we gathered ourselves and continued our march toward the horns, alert and on guard. We encountered a few more marauding undead, but Liliana turned those aside with ease. Wild beasts and hyenas largely fled before us, or did so when encouraged by Chandra's flames. Soon, we walked up the ridge where I had seen Her disappear. And when we reached the top, we all gasped.
#figure(image("001_Impact/13.jpg", width: 100%), caption: [Art by <NAME>], supplement: none, numbering: none)
Before us, the endless sands gave way to a gleaming, fertile land. Lush plant life lined a mighty river that flowed into the distance. The first sun burned high overhead, its light reflecting off the water, while the second sun seemed not to have moved at all since our arrival, smoldering from its position near the great horns in the far distance.
Much closer than the horns were other gleaming monuments and towering structures, all of which formed a sprawling city that spanned as far as we could see. The vertical lines of obelisks and towers ran perpendicular to expansive, geometric temples. Boats dotted the river, and the cry of birds and the sounds of a bustling metropolis floated back up toward us.
#emph[There were people down there.]
Jace was the first to point out the shimmer of magic all around the city. Upon closer look, a translucent barrier covered the entire area, stopping the sands of untamed desert at its edges, even refracting the clouds above. Birds within the dome skirted their trajectories, unwilling or unable to cross.
Nissa spoke first, wonder in her voice. "What is this place?"
I cleared my throat. "Liliana, do you . . . ?"
Liliana shook her head. "I saw little of Amonkhet when I came last. I had no idea this existed."
Jace frowned. "What is this place? What's going on here?"
None of us could answer. Finally, Chandra shrugged. "Only one way to find out." With that, she started the descent toward the city and the barrier.
We all followed behind, minds abuzz with more questions than answers.
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
#emph[As the five descended the across the sand, the whisper of the lonely wind brushed where they walked, shifting the sands behind them, erasing their footprints, carving new dunes and sweeping flat new expanses. Overhead, the first sun slid toward its zenith in the sky, while the second held steady at its position on the horizon, its fiery stare fixed on the world below. Within minutes, the desert was as it ever had been, with only the two suns bearing witness to the silent eternal.]
#emph[The wind carried on, oblivious to all that came before.]
#figure(image("001_Impact/14.jpg", width: 100%), caption: [Art by Min Yum], supplement: none, numbering: none)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.